From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.3 required=5.0 tests=BAYES_00, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!mx02.eternal-september.org!.POSTED!not-for-mail From: Georg Bauhaus Newsgroups: comp.lang.ada Subject: Re: community-based compiler (was Re: What exactly is the licensing situation with GNAT?) Date: Tue, 18 Nov 2014 10:25:40 +0100 Organization: A noiseless patient Spider Message-ID: References: <87389olqie.fsf@ixod.org> <3516753b-5304-408d-99c8-67f544fdc185@googlegroups.com> <20141114085046.4cb00404@atmarama.ddns.net> <8392b6bd-61ab-43f9-aa6d-92a4b3f17f0d@googlegroups.com> <835808234437691990.804817laguest-archeia.com@nntp.aioe.org> <464563264437706207.500344laguest-archeia.com@nntp.aioe.org> <790775817437972682.294390laguest-archeia.com@nntp.aioe.org> Reply-To: nonlegitur@futureapps.de Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Injection-Date: Tue, 18 Nov 2014 09:25:28 +0000 (UTC) Injection-Info: mx02.eternal-september.org; posting-host="33633a1abe2226e6a86bc3125489a568"; logging-data="24775"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18Ws8Eaxk4FJCVNd7bPjSS6cIkBXdJW+b0=" User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 In-Reply-To: <790775817437972682.294390laguest-archeia.com@nntp.aioe.org> Cancel-Lock: sha1:RSRQhnE0d1of/C9iY4jRCWU4oVo= Xref: news.eternal-september.org comp.lang.ada:23513 Date: 2014-11-18T10:25:40+01:00 List-Id: On 18.11.14 04:06, Luke A. Guest wrote: > Given the various input sizes of source you cannot statically define the > runtime data. Computer memory is statically sized, so in a sense a compiler can never adapt to all input sizes, if that's good enough for an excuse. SNOBOL-4 (its incarnation CSNOBOL4) uses a switch for increasing "dynamic storage" for program code and data. Generalizing the reverse, a statically sized storage can prevent the compiler from using memory swapped to disk, and then terminate after a very slow run. Which is a feature of gcc when it creates larger data objects that it finds declared in the source text.