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 X-Google-Thread: 103376,6e45fe936511d518 X-Google-Attributes: gid103376,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news4.google.com!news.germany.com!storethat.news.telefonica.de!telefonica.de!newsfeed.arcor.de!newsspool1.arcor-online.net!news.arcor.de.POSTED!not-for-mail Date: Fri, 15 Feb 2008 11:51:16 +0100 From: Georg Bauhaus Reply-To: rm.tsho+bauhaus@maps.futureapps.de User-Agent: Thunderbird 2.0.0.6 (X11/20071022) MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: GNAT - System.ads - System Implementation Parameters References: <74711a57-e7f2-4a11-90bc-865a3fd07d5d@z17g2000hsg.googlegroups.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-ID: <47b56ea5$0$4281$9b4e6d93@newsspool3.arcor-online.net> Organization: Arcor NNTP-Posting-Date: 15 Feb 2008 11:51:17 CET NNTP-Posting-Host: 2e808761.newsspool3.arcor-online.net X-Trace: DXC=CB>aFRL7SAZ?IPCY\c7>ejVHjlCLnbMfE3KMTF@6:V4LjM X-Complaints-To: usenet-abuse@arcor.de Xref: g2news1.google.com comp.lang.ada:19805 Date: 2008-02-15T11:51:17+01:00 List-Id: anon wrote: > Gnat uses the "System Implementation Parameters" as a Initialization > file > There is no documentation on these Boolean flags because they are use > by Adacore (GNAT creators) in house. Also some are slowly be removed > while others are becoming non-operational. As noted in package System, readers should consult the package Targparm. Indeed, it has quite a lot of documentation talking about these flags, AFAICS. The package Targparm is part of the publicly available compiler sources. (I'm not familiar with the innards of GNAT; however, is usually suffices to read the documentation comments near any declaration in GNAT sources in order to learn where to find more. One case is when declarations are grouped under a common description, such as this one: -------------------------------------- -- System Implementation Parameters -- -------------------------------------- -- These parameters provide information about the target that is used -- by the compiler. They are in the private part of System, where they -- can be accessed using the special circuitry in the Targparm unit -- whose source should be consulted for more detailed descriptions -- of the individual switch values. Backend_Divide_Checks : constant Boolean := False; Backend_Overflow_Checks : constant Boolean := False; Command_Line_Args : constant Boolean := True; Configurable_Run_Time : constant Boolean := False; ...)