OSDN Git Service

* (c-decl.c, c-semantics.c, calls.c, cgraph.c, cgraphunit.c,
[pf3gnuchains/gcc-fork.git] / gcc / ada / usage.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                               U S A G E                                  --
6 --                                                                          --
7 --                                B o d y                                   --
8 --                                                                          --
9 --          Copyright (C) 1992-2004, Free Software Foundation, Inc.         --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
19 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
20 -- MA 02111-1307, USA.                                                      --
21 --                                                                          --
22 -- GNAT was originally developed  by the GNAT team at  New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
24 --                                                                          --
25 ------------------------------------------------------------------------------
26
27 with Hostparm;
28 with Namet;          use Namet;
29 with Osint;          use Osint;
30 with Output;         use Output;
31 with System.WCh_Con; use System.WCh_Con;
32
33 procedure Usage is
34
35    procedure Write_Switch_Char (Sw : String; Prefix : String := "gnat");
36    --  Output two spaces followed by the switch character minus followed
37    --  Prefix, followed by the string given as the argument, and then
38    --  enough blanks to tab to column 13, i.e. assuming Sw is not longer
39    --  than 5 characters, the maximum allowed, Write_Switch_Char will
40    --  always output exactly 12 characters.
41
42    procedure Write_Switch_Char (Sw : String; Prefix : String := "gnat") is
43    begin
44       Write_Str ("  -");
45       Write_Str (Prefix);
46       Write_Str (Sw);
47
48       for J in 1 .. 12 - 3 - Prefix'Length - Sw'Length loop
49          Write_Char (' ');
50       end loop;
51    end Write_Switch_Char;
52
53 --  Start of processing for Usage
54
55 begin
56    Find_Program_Name;
57
58    --  For gnatmake, we are appending this information to the end of
59    --  the normal gnatmake output, so generate appropriate header
60
61    if Name_Len >= 8
62      and then (Name_Buffer (Name_Len - 7 .. Name_Len) = "gnatmake"
63                  or else
64                Name_Buffer (Name_Len - 7 .. Name_Len) = "GNATMAKE")
65    then
66       Write_Eol;
67       Write_Line ("Compiler switches (passed to the compiler by gnatmake):");
68
69    else
70       --  Usage line
71
72       Write_Str ("Usage: ");
73       Write_Program_Name;
74       Write_Char (' ');
75       Write_Str ("switches sfile");
76       Write_Eol;
77       Write_Eol;
78
79       --  Line for sfile
80
81       Write_Line ("  sfile     Source file name");
82    end if;
83
84    Write_Eol;
85
86    --  Common GCC switches not available in JGNAT
87
88    if not Hostparm.Java_VM then
89       Write_Switch_Char ("fstack-check ", "");
90       Write_Line ("Generate stack checking code");
91
92       Write_Switch_Char ("fno-inline   ", "");
93       Write_Line ("Inhibit all inlining (makes executable smaller)");
94    end if;
95
96    --  Common switches available to both GCC and JGNAT
97
98    Write_Switch_Char ("g            ", "");
99    Write_Line ("Generate debugging information");
100
101    Write_Switch_Char ("Idir         ", "");
102    Write_Line ("Specify source files search path");
103
104    Write_Switch_Char ("I-           ", "");
105    Write_Line ("Do not look for sources in current directory");
106
107    Write_Switch_Char ("O[0123]      ", "");
108    Write_Line ("Control the optimization level");
109
110    Write_Eol;
111
112    --  Individual lines for switches. Write_Switch_Char outputs fourteen
113    --  characters, so the remaining message is allowed to be a maximum
114    --  of 65 characters to be comfortable on an 80 character device.
115    --  If the Write_Str fits on one line, it is short enough!
116
117    --  Line for -gnata switch
118
119    Write_Switch_Char ("a");
120    Write_Line ("Assertions enabled. Pragma Assert/Debug to be activated");
121
122    --  Line for -gnatA switch
123
124    Write_Switch_Char ("A");
125    Write_Line ("Avoid processing gnat.adc, if present file will be ignored");
126
127    --  Line for -gnatb switch
128
129    Write_Switch_Char ("b");
130    Write_Line ("Generate brief messages to stderr even if verbose mode set");
131
132    --  Line for -gnatc switch
133
134    Write_Switch_Char ("c");
135    Write_Line ("Check syntax and semantics only (no code generation)");
136
137    --  Line for -gnatd switch
138
139    Write_Switch_Char ("d?");
140    Write_Line ("Compiler debug option ? ([.]a-z,A-Z,0-9), see debug.adb");
141
142    --  Line for -gnatD switch
143
144    Write_Switch_Char ("D");
145    Write_Line ("Debug expanded generated code rather than source code");
146
147    --  Line for -gnatec switch
148
149    Write_Switch_Char ("ec=?");
150    Write_Line ("Specify configuration pragmas file, e.g. -gnatec=/x/f.adc");
151
152    --  Line for -gnateD switch
153
154    Write_Switch_Char ("eD?");
155    Write_Line ("Define or redefine preprocessing symbol, e.g. -gnateDsym=val");
156
157    --  Line for -gnatef switch
158
159    Write_Switch_Char ("ef");
160    Write_Line ("Full source path in brief error messages");
161
162    --  Line for -gnatem switch
163
164    Write_Switch_Char ("em=?");
165    Write_Line ("Specify mapping file, e.g. -gnatem=mapping");
166
167    --  Line for -gnatep switch
168
169    Write_Switch_Char ("ep=?");
170    Write_Line ("Specify preprocessing data file, e.g. -gnatep=prep.data");
171
172    --  Line for -gnatE switch
173
174    Write_Switch_Char ("E");
175    Write_Line ("Dynamic elaboration checking mode enabled");
176
177    --  Line for -gnatf switch
178
179    Write_Switch_Char ("f");
180    Write_Line ("Full errors. Verbose details, all undefined references");
181
182    --  Line for -gnatF switch
183
184    Write_Switch_Char ("F");
185    Write_Line ("Force all import/export external names to all uppercase");
186
187    --  Line for -gnatg switch
188
189    Write_Switch_Char ("g");
190    Write_Line ("GNAT implementation mode (used for compiling GNAT units)");
191
192    --  Line for -gnatG switch
193
194    Write_Switch_Char ("G");
195    Write_Line ("Output generated expanded code in source form");
196
197    --  Line for -gnath switch
198
199    Write_Switch_Char ("h");
200    Write_Line ("Output this usage (help) information");
201
202    --  Line for -gnati switch
203
204    Write_Switch_Char ("i?");
205    Write_Line ("Identifier char set (?=1/2/3/4/5/8/9/p/f/n/w)");
206
207    --  Line for -gnatk switch
208
209    Write_Switch_Char ("k");
210    Write_Line ("Limit file names to nnn characters (k = krunch)");
211
212    --  Line for -gnatl switch
213
214    Write_Switch_Char ("l");
215    Write_Line ("Output full source listing with embedded error messages");
216
217    --  Line for -gnatL switch
218
219    Write_Switch_Char ("L");
220    Write_Line ("Use longjmp/setjmp for exception handling");
221
222    --  Line for -gnatm switch
223
224    Write_Switch_Char ("mnnn");
225    Write_Line ("Limit number of detected errors to nnn (1-999999)");
226
227    --  Line for -gnatn switch
228
229    Write_Switch_Char ("n");
230    Write_Line ("Inlining of subprograms (apply pragma Inline across units)");
231
232    --  Line for -gnatN switch
233
234    Write_Switch_Char ("N");
235    Write_Line ("Full (frontend) inlining of subprograms");
236
237    --  Line for -gnato switch
238
239    Write_Switch_Char ("o");
240    Write_Line ("Enable overflow checking (off by default)");
241
242    --  Line for -gnatO switch
243
244    Write_Switch_Char ("O nm ");
245    Write_Line ("Set name of output ali file (internal switch)");
246
247    --  Line for -gnatp switch
248
249    Write_Switch_Char ("p");
250    Write_Line ("Suppress all checks");
251
252    --  Line for -gnatP switch
253
254    Write_Switch_Char ("P");
255    Write_Line ("Generate periodic calls to System.Polling.Poll");
256
257    --  Line for -gnatq switch
258
259    Write_Switch_Char ("q");
260    Write_Line ("Don't quit, try semantics, even if parse errors");
261
262    --  Line for -gnatQ switch
263
264    Write_Switch_Char ("Q");
265    Write_Line ("Don't quit, write ali/tree file even if compile errors");
266
267    --  Line for -gnatR switch
268
269    Write_Switch_Char ("R?");
270    Write_Line ("List rep inf (?=0/1/2/3 for none/types/all/variable)");
271
272    --  Lines for -gnats switch
273
274    Write_Switch_Char ("s");
275    Write_Line ("Syntax check only");
276
277    --  Lines for -gnatS switch
278
279    Write_Switch_Char ("S");
280    Write_Line ("Print listing of package Standard");
281
282    --  Lines for -gnatt switch
283
284    Write_Switch_Char ("t");
285    Write_Line ("Tree output file to be generated");
286
287    --  Line for -gnatT switch
288
289    Write_Switch_Char ("Tnnn");
290    Write_Line ("All compiler tables start at nnn times usual starting size");
291
292    --  Line for -gnatu switch
293
294    Write_Switch_Char ("u");
295    Write_Line ("List units for this compilation");
296
297    --  Line for -gnatU switch
298
299    Write_Switch_Char ("U");
300    Write_Line ("Enable unique tag for error messages");
301
302    --  Line for -gnatv switch
303
304    Write_Switch_Char ("v");
305    Write_Line ("Verbose mode. Full error output with source lines to stdout");
306
307    --  Line for -gnatV switch
308
309    Write_Switch_Char ("Vxx");
310    Write_Line
311      ("Enable selected validity checking mode, xx = list of parameters:");
312    Write_Line ("        a    turn on all validity checking options");
313    Write_Line ("        c    turn on checking for copies");
314    Write_Line ("        C    turn off checking for copies");
315    Write_Line ("        d    turn on default (RM) checking");
316    Write_Line ("        D    turn off default (RM) checking");
317    Write_Line ("        f    turn on checking for floating-point");
318    Write_Line ("        F    turn off checking for floating-point");
319    Write_Line ("        i    turn on checking for in params");
320    Write_Line ("        I    turn off checking for in params");
321    Write_Line ("        m    turn on checking for in out params");
322    Write_Line ("        M    turn off checking for in out params");
323    Write_Line ("        o    turn on checking for operators/attributes");
324    Write_Line ("        O    turn off checking for operators/attributes");
325    Write_Line ("        p    turn on checking for parameters");
326    Write_Line ("        P    turn off checking for parameters");
327    Write_Line ("        r    turn on checking for returns");
328    Write_Line ("        R    turn off checking for returns");
329    Write_Line ("        s    turn on checking for subscripts");
330    Write_Line ("        S    turn off checking for subscripts");
331    Write_Line ("        t    turn on checking for tests");
332    Write_Line ("        T    turn off checking for tests");
333    Write_Line ("        n    turn off all validity checks (including RM)");
334
335    --  Lines for -gnatw switch
336
337    Write_Switch_Char ("wxx");
338    Write_Line ("Enable selected warning modes, xx = list of parameters:");
339    Write_Line ("        a    turn on all optional warnings (except d,h,l)");
340    Write_Line ("        A    turn off all optional warnings");
341    Write_Line ("        c    turn on warnings for constant conditional");
342    Write_Line ("        C*   turn off warnings for constant conditional");
343    Write_Line ("        d    turn on warnings for implicit dereference");
344    Write_Line ("        D*   turn off warnings for implicit dereference");
345    Write_Line ("        e    treat all warnings as errors");
346    Write_Line ("        f    turn on warnings for unreferenced formal");
347    Write_Line ("        F*   turn off warnings for unreferenced formal");
348    Write_Line ("        g*   turn on warnings for unrecognized pragma");
349    Write_Line ("        G    turn off warnings for unrecognized pragma");
350    Write_Line ("        h    turn on warnings for hiding variable ");
351    Write_Line ("        H*   turn off warnings for hiding variable");
352    Write_Line ("        i*   turn on warnings for implementation unit");
353    Write_Line ("        I    turn off warnings for implementation unit");
354    Write_Line ("        j    turn on warnings for obsolescent " &
355                                                   "(annex J) feature");
356    Write_Line ("        J*   turn off warnings for obsolescent " &
357                                                   "(annex J) feature");
358    Write_Line ("        k    turn on warnings on constant variable");
359    Write_Line ("        K*   turn off warnings on constant variable");
360    Write_Line ("        l    turn on warnings for missing " &
361                                                   "elaboration pragma");
362    Write_Line ("        L*   turn off warnings for missing " &
363                                                   "elaboration pragma");
364    Write_Line ("        m    turn on warnings for variable assigned " &
365                                                   "but not read");
366    Write_Line ("        M*   turn off warnings for variable assigned " &
367                                                   "but not read");
368    Write_Line ("        n*   normal warning mode (cancels -gnatws/-gnatwe)");
369    Write_Line ("        o*   turn on warnings for address clause overlay");
370    Write_Line ("        O    turn off warnings for address clause overlay");
371    Write_Line ("        p    turn on warnings for ineffective pragma inline");
372    Write_Line ("        P*   turn off warnings for ineffective pragma inline");
373    Write_Line ("        r    turn on warnings for redundant construct");
374    Write_Line ("        R*   turn off warnings for redundant construct");
375    Write_Line ("        s    suppress all warnings");
376    Write_Line ("        u    turn on warnings for unused entity");
377    Write_Line ("        U*   turn off warnings for unused entity");
378    Write_Line ("        v*   turn on warnings for unassigned variable");
379    Write_Line ("        V    turn off warnings for unassigned variable");
380    Write_Line ("        x*   turn on warnings for export/import");
381    Write_Line ("        X*   turn off warnings for export/import");
382    Write_Line ("        z*   turn on size/align warnings for " &
383                                                   "unchecked conversion");
384    Write_Line ("        Z    turn off size/align warnings for " &
385                                                   "unchecked conversion");
386    Write_Line ("        *    indicates default in above list");
387
388    --  Line for -gnatW switch
389
390    Write_Switch_Char ("W");
391    Write_Str ("Wide character encoding method (");
392
393    for J in WC_Encoding_Method loop
394       Write_Char (WC_Encoding_Letters (J));
395
396       if J = WC_Encoding_Method'Last then
397          Write_Char (')');
398       else
399          Write_Char ('/');
400       end if;
401    end loop;
402
403    Write_Eol;
404
405    --  Line for -gnatx switch
406
407    Write_Switch_Char ("x");
408    Write_Line ("Suppress output of cross-reference information");
409
410    --  Line for -gnatX switch
411
412    Write_Switch_Char ("X");
413    Write_Line ("Language extensions permitted");
414
415    --  Lines for -gnaty switch
416
417    Write_Switch_Char ("y");
418    Write_Line ("Enable all style checks except 'o', indent=3");
419
420    Write_Switch_Char ("yxx");
421    Write_Line ("Enable selected style checks xx = list of parameters:");
422    Write_Line ("        1-9  check indentation");
423    Write_Line ("        a    check attribute casing");
424    Write_Line ("        b    check no blanks at end of lines");
425    Write_Line ("        c    check comment format");
426    Write_Line ("        e    check end/exit labels present");
427    Write_Line ("        f    check no form feeds/vertical tabs in source");
428    Write_Line ("        h    check no horizontal tabs in source");
429    Write_Line ("        i    check if-then layout");
430    Write_Line ("        k    check casing rules for keywords");
431    Write_Line ("        l    check reference manual layout");
432    Write_Line ("        m    check line length <= 79 characters");
433    Write_Line ("        n    check casing of package Standard identifiers");
434    Write_Line ("        Mnnn check line length <= nnn characters");
435    Write_Line ("        o    check subprogram bodies in alphabetical order");
436    Write_Line ("        p    check pragma casing");
437    Write_Line ("        r    check casing for identifier references");
438    Write_Line ("        s    check separate subprogram specs present");
439    Write_Line ("        t    check token separation rules");
440
441    --  Lines for -gnatyN switch
442
443    Write_Switch_Char ("yN");
444    Write_Line ("Cancel all previously set style checks");
445
446    --  Lines for -gnatz switch
447
448    Write_Switch_Char ("z");
449    Write_Line ("Distribution stub generation (r/c for receiver/caller stubs)");
450
451    --  Line for -gnatZ switch
452
453    Write_Switch_Char ("Z");
454    Write_Line ("Use zero cost exception handling");
455
456    --  Line for -gnat83 switch
457
458    Write_Switch_Char ("83");
459    Write_Line ("Enforce Ada 83 restrictions");
460
461 end Usage;