From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/7756 Path: news.gmane.org!not-for-mail From: Alexander Monakov Newsgroups: gmane.linux.lib.musl.general Subject: Re: ppc soft-float regression Date: Mon, 25 May 2015 16:40:46 +0300 (MSK) Message-ID: References: <20150518183929.GA6370@euler> <20150518201043.GX17573@brightrain.aerifal.cx> <20150518201422.GY17573@brightrain.aerifal.cx> <20150518220731.GA31132@euler> <20150522062346.GK17573@brightrain.aerifal.cx> <20150524030809.GA19134@brightrain.aerifal.cx> <20150525003648.GO17573@brightrain.aerifal.cx> <1432535489.2715.1.camel@inria.fr> <20150525065756.GR17573@brightrain.aerifal.cx> <1432539884.7942.1.camel@inria.fr> <20150525132631.GB20259@port70.net> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Trace: ger.gmane.org 1432561265 15700 80.91.229.3 (25 May 2015 13:41:05 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 25 May 2015 13:41:05 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-7768-gllmg-musl=m.gmane.org@lists.openwall.com Mon May 25 15:41:02 2015 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1Ywscn-0008Fg-2L for gllmg-musl@m.gmane.org; Mon, 25 May 2015 15:41:01 +0200 Original-Received: (qmail 13761 invoked by uid 550); 25 May 2015 13:40:59 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 13736 invoked from network); 25 May 2015 13:40:58 -0000 In-Reply-To: <20150525132631.GB20259@port70.net> User-Agent: Alpine 2.11 (LNX 23 2013-08-11) Xref: news.gmane.org gmane.linux.lib.musl.general:7756 Archived-At: On Mon, 25 May 2015, Szabolcs Nagy wrote: > * Jens Gustedt [2015-05-25 09:44:44 +0200]: > > Am Montag, den 25.05.2015, 02:57 -0400 schrieb Rich Felker: > > > 2. If cnt > > produce VLA of size 1 and pass a null pointer instead of a pointer > > > to the VLA. > > > > Ok, so we have a simple sanity check, great. > > > > btw the stack usage of libc should be documented > > currently a libc call always uses less than 10K stack(*) > but the guaranteed limit is not documented (16K limit is > fine i guess). Not true: fmt_fp consumes more that LDBL_MAX_EXP bytes, which is 16384 on x86 and aarch64. As I recall, there's another function with >16K static stack usage in the resolver, but I forget where exactly. Alexander