2015-09-28 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / ada / namet.ads
blob4a21ef5b87cebc923df2ebf16013e206c3cd81bb
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- N A M E T --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 1992-2015, 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 3, 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. --
17 -- --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
21 -- --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
26 -- --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
29 -- --
30 ------------------------------------------------------------------------------
32 with Alloc;
33 with Table;
34 with Hostparm; use Hostparm;
35 with System; use System;
36 with Types; use Types;
38 package Namet is
40 -- WARNING: There is a C version of this package. Any changes to this
41 -- source file must be properly reflected in the C header file namet.h
42 -- which is created manually from namet.ads and namet.adb.
44 -- This package contains routines for handling the names table. The table
45 -- is used to store character strings for identifiers and operator symbols,
46 -- as well as other string values such as unit names and file names.
48 -- The forms of the entries are as follows:
50 -- Identifiers Stored with upper case letters folded to lower case.
51 -- Upper half (16#80# bit set) and wide characters are
52 -- stored in an encoded form (Uhh for upper half char,
53 -- Whhhh for wide characters, WWhhhhhhhh as provided by
54 -- the routine Store_Encoded_Character, where hh are hex
55 -- digits for the character code using lower case a-f).
56 -- Normally the use of U or W in other internal names is
57 -- avoided, but these letters may be used in internal
58 -- names (without this special meaning), if they appear
59 -- as the last character of the name, or they are
60 -- followed by an upper case letter (other than the WW
61 -- sequence), or an underscore.
63 -- Operator symbols Stored with an initial letter O, and the remainder
64 -- of the name is the lower case characters XXX where
65 -- the name is Name_Op_XXX, see Snames spec for a full
66 -- list of the operator names. Normally the use of O
67 -- in other internal names is avoided, but it may be
68 -- used in internal names (without this special meaning)
69 -- if it is the last character of the name, or if it is
70 -- followed by an upper case letter or an underscore.
72 -- Character literals Character literals have names that are used only for
73 -- debugging and error message purposes. The form is an
74 -- upper case Q followed by a single lower case letter,
75 -- or by a Uxx/Wxxxx/WWxxxxxxx encoding as described for
76 -- identifiers. The Set_Character_Literal_Name procedure
77 -- should be used to construct these encodings. Normally
78 -- the use of O in other internal names is avoided, but
79 -- it may be used in internal names (without this special
80 -- meaning) if it is the last character of the name, or
81 -- if it is followed by an upper case letter or an
82 -- underscore.
84 -- Unit names Stored with upper case letters folded to lower case,
85 -- using Uhh/Whhhh/WWhhhhhhhh encoding as described for
86 -- identifiers, and a %s or %b suffix for specs/bodies.
87 -- See package Uname for further details.
89 -- File names Are stored in the form provided by Osint. Typically
90 -- they may include wide character escape sequences and
91 -- upper case characters (in non-encoded form). Casing
92 -- is also derived from the external environment. Note
93 -- that file names provided by Osint must generally be
94 -- consistent with the names from Fname.Get_File_Name.
96 -- Other strings The names table is also used as a convenient storage
97 -- location for other variable length strings such as
98 -- error messages etc. There are no restrictions on what
99 -- characters may appear for such entries.
101 -- Note: the encodings Uhh (upper half characters), Whhhh (wide characters),
102 -- WWhhhhhhhh (wide wide characters) and Qx (character literal names) are
103 -- described in the spec, since they are visible throughout the system (e.g.
104 -- in debugging output). However, no code should depend on these particular
105 -- encodings, so it should be possible to change the encodings by making
106 -- changes only to the Namet specification (to change these comments) and the
107 -- body (which actually implements the encodings).
109 -- The names are hashed so that a given name appears only once in the table,
110 -- except that names entered with Name_Enter as opposed to Name_Find are
111 -- omitted from the hash table.
113 -- The first 26 entries in the names table (with Name_Id values in the range
114 -- First_Name_Id .. First_Name_Id + 25) represent names which are the one
115 -- character lower case letters in the range a-z, and these names are created
116 -- and initialized by the Initialize procedure.
118 -- Five values, one of type Int, one of type Byte, and three of type Boolean,
119 -- are stored with each names table entry and subprograms are provided for
120 -- setting and retrieving these associated values. The usage of these values
121 -- is up to the client:
123 -- In the compiler we have the following uses:
125 -- The Int field is used to point to a chain of potentially visible
126 -- entities (see Sem.Ch8 for details).
128 -- The Byte field is used to hold the Token_Type value for reserved words
129 -- (see Sem for details).
131 -- The Boolean1 field is used to mark address clauses to optimize the
132 -- performance of the Exp_Util.Following_Address_Clause function.
134 -- The Boolean2 field is used to mark simple names that appear in
135 -- Restriction[_Warning]s pragmas for No_Use_Of_Entity. This avoids most
136 -- unnecessary searches of the No_Use_Of_Entity table.
138 -- The Boolean3 field is set for names of pragmas that are to be ignored
139 -- because of the occurrence of a corresponding pragma Ignore_Pragma.
141 -- In the binder, we have the following uses:
143 -- The Int field is used in various ways depending on the name involved,
144 -- see binder documentation for details.
146 -- The Byte and Boolean fields are unused.
148 -- Note that the value of the Int and Byte fields are initialized to zero,
149 -- and the Boolean field is initialized to False, when a new Name table entry
150 -- is created.
152 Name_Buffer : String (1 .. 4 * Max_Line_Length);
153 -- This buffer is used to set the name to be stored in the table for the
154 -- Name_Find call, and to retrieve the name for the Get_Name_String call.
155 -- The limit here is intended to be an infinite value that ensures that we
156 -- never overflow the buffer (names this long are too absurd to worry).
158 Name_Len : Natural := 0;
159 -- Length of name stored in Name_Buffer. Used as an input parameter for
160 -- Name_Find, and as an output value by Get_Name_String, or Write_Name.
161 -- Note: in normal usage, all users of Name_Buffer/Name_Len are expected
162 -- to initialize Name_Len appropriately. The reason we preinitialize to
163 -- zero here is that some circuitry (e.g. Osint.Write_Program_Name) does
164 -- a save/restore on Name_Len and Name_Buffer (1 .. Name_Len), and we do
165 -- not want some arbitrary junk value to result in saving an arbitrarily
166 -- long slice which would waste time and blow the stack.
168 -----------------------------
169 -- Types for Namet Package --
170 -----------------------------
172 -- Name_Id values are used to identify entries in the names table. Except
173 -- for the special values No_Name and Error_Name, they are subscript values
174 -- for the Names table defined in this package.
176 -- Note that with only a few exceptions, which are clearly documented, the
177 -- type Name_Id should be regarded as a private type. In particular it is
178 -- never appropriate to perform arithmetic operations using this type.
180 type Name_Id is range Names_Low_Bound .. Names_High_Bound;
181 for Name_Id'Size use 32;
182 -- Type used to identify entries in the names table
184 No_Name : constant Name_Id := Names_Low_Bound;
185 -- The special Name_Id value No_Name is used in the parser to indicate
186 -- a situation where no name is present (e.g. on a loop or block).
188 Error_Name : constant Name_Id := Names_Low_Bound + 1;
189 -- The special Name_Id value Error_Name is used in the parser to
190 -- indicate that some kind of error was encountered in scanning out
191 -- the relevant name, so it does not have a representable label.
193 subtype Error_Name_Or_No_Name is Name_Id range No_Name .. Error_Name;
194 -- Used to test for either error name or no name
196 First_Name_Id : constant Name_Id := Names_Low_Bound + 2;
197 -- Subscript of first entry in names table
199 ------------------------------
200 -- Name_Id Membership Tests --
201 ------------------------------
203 -- The following functions allow a convenient notation for testing whether
204 -- a Name_Id value matches any one of a list of possible values. In each
205 -- case True is returned if the given T argument is equal to any of the V
206 -- arguments. These essentially duplicate the Ada 2012 membership tests,
207 -- but we cannot use the latter (yet) in the compiler front end, because
208 -- of bootstrap considerations
210 function Nam_In
211 (T : Name_Id;
212 V1 : Name_Id;
213 V2 : Name_Id) return Boolean;
215 function Nam_In
216 (T : Name_Id;
217 V1 : Name_Id;
218 V2 : Name_Id;
219 V3 : Name_Id) return Boolean;
221 function Nam_In
222 (T : Name_Id;
223 V1 : Name_Id;
224 V2 : Name_Id;
225 V3 : Name_Id;
226 V4 : Name_Id) return Boolean;
228 function Nam_In
229 (T : Name_Id;
230 V1 : Name_Id;
231 V2 : Name_Id;
232 V3 : Name_Id;
233 V4 : Name_Id;
234 V5 : Name_Id) return Boolean;
236 function Nam_In
237 (T : Name_Id;
238 V1 : Name_Id;
239 V2 : Name_Id;
240 V3 : Name_Id;
241 V4 : Name_Id;
242 V5 : Name_Id;
243 V6 : Name_Id) return Boolean;
245 function Nam_In
246 (T : Name_Id;
247 V1 : Name_Id;
248 V2 : Name_Id;
249 V3 : Name_Id;
250 V4 : Name_Id;
251 V5 : Name_Id;
252 V6 : Name_Id;
253 V7 : Name_Id) return Boolean;
255 function Nam_In
256 (T : Name_Id;
257 V1 : Name_Id;
258 V2 : Name_Id;
259 V3 : Name_Id;
260 V4 : Name_Id;
261 V5 : Name_Id;
262 V6 : Name_Id;
263 V7 : Name_Id;
264 V8 : Name_Id) return Boolean;
266 function Nam_In
267 (T : Name_Id;
268 V1 : Name_Id;
269 V2 : Name_Id;
270 V3 : Name_Id;
271 V4 : Name_Id;
272 V5 : Name_Id;
273 V6 : Name_Id;
274 V7 : Name_Id;
275 V8 : Name_Id;
276 V9 : Name_Id) return Boolean;
278 function Nam_In
279 (T : Name_Id;
280 V1 : Name_Id;
281 V2 : Name_Id;
282 V3 : Name_Id;
283 V4 : Name_Id;
284 V5 : Name_Id;
285 V6 : Name_Id;
286 V7 : Name_Id;
287 V8 : Name_Id;
288 V9 : Name_Id;
289 V10 : Name_Id) return Boolean;
291 function Nam_In
292 (T : Name_Id;
293 V1 : Name_Id;
294 V2 : Name_Id;
295 V3 : Name_Id;
296 V4 : Name_Id;
297 V5 : Name_Id;
298 V6 : Name_Id;
299 V7 : Name_Id;
300 V8 : Name_Id;
301 V9 : Name_Id;
302 V10 : Name_Id;
303 V11 : Name_Id) return Boolean;
305 pragma Inline (Nam_In);
306 -- Inline all above functions
308 -----------------
309 -- Subprograms --
310 -----------------
312 procedure Finalize;
313 -- Called at the end of a use of the Namet package (before a subsequent
314 -- call to Initialize). Currently this routine is only used to generate
315 -- debugging output.
317 procedure Get_Name_String (Id : Name_Id);
318 -- Get_Name_String is used to retrieve the string associated with an entry
319 -- in the names table. The resulting string is stored in Name_Buffer and
320 -- Name_Len is set. It is an error to call Get_Name_String with one of the
321 -- special name Id values (No_Name or Error_Name).
323 function Get_Name_String (Id : Name_Id) return String;
324 -- This functional form returns the result as a string without affecting
325 -- the contents of either Name_Buffer or Name_Len. The lower bound is 1.
327 procedure Get_Unqualified_Name_String (Id : Name_Id);
328 -- Similar to the above except that qualification (as defined in unit
329 -- Exp_Dbug) is removed (including both preceding __ delimited names, and
330 -- also the suffixes used to indicate package body entities and to
331 -- distinguish between overloaded entities). Note that names are not
332 -- qualified until just before the call to gigi, so this routine is only
333 -- needed by processing that occurs after gigi has been called. This
334 -- includes all ASIS processing, since ASIS works on the tree written
335 -- after gigi has been called.
337 procedure Get_Name_String_And_Append (Id : Name_Id);
338 -- Like Get_Name_String but the resulting characters are appended to the
339 -- current contents of the entry stored in Name_Buffer, and Name_Len is
340 -- incremented to include the added characters.
342 procedure Get_Decoded_Name_String (Id : Name_Id);
343 -- Same calling sequence an interface as Get_Name_String, except that the
344 -- result is decoded, so that upper half characters and wide characters
345 -- appear as originally found in the source program text, operators have
346 -- their source forms (special characters and enclosed in quotes), and
347 -- character literals appear surrounded by apostrophes.
349 procedure Get_Unqualified_Decoded_Name_String (Id : Name_Id);
350 -- Similar to the above except that qualification (as defined in unit
351 -- Exp_Dbug) is removed (including both preceding __ delimited names, and
352 -- also the suffix used to indicate package body entities). Note that
353 -- names are not qualified until just before the call to gigi, so this
354 -- routine is only needed by processing that occurs after gigi has been
355 -- called. This includes all ASIS processing, since ASIS works on the tree
356 -- written after gigi has been called.
358 procedure Get_Decoded_Name_String_With_Brackets (Id : Name_Id);
359 -- This routine is similar to Decoded_Name, except that the brackets
360 -- notation (Uhh replaced by ["hh"], Whhhh replaced by ["hhhh"],
361 -- WWhhhhhhhh replaced by ["hhhhhhhh"]) is used for all non-lower half
362 -- characters, regardless of how Opt.Wide_Character_Encoding_Method is
363 -- set, and also in that characters in the range 16#80# .. 16#FF# are
364 -- converted to brackets notation in all cases. This routine can be used
365 -- when there is a requirement for a canonical representation not affected
366 -- by the character set options (e.g. in the binder generation of
367 -- symbols).
369 function Get_Name_Table_Byte (Id : Name_Id) return Byte;
370 pragma Inline (Get_Name_Table_Byte);
371 -- Fetches the Byte value associated with the given name
373 function Get_Name_Table_Int (Id : Name_Id) return Int;
374 pragma Inline (Get_Name_Table_Int);
375 -- Fetches the Int value associated with the given name
377 function Get_Name_Table_Boolean1 (Id : Name_Id) return Boolean;
378 function Get_Name_Table_Boolean2 (Id : Name_Id) return Boolean;
379 function Get_Name_Table_Boolean3 (Id : Name_Id) return Boolean;
380 -- Fetches the Boolean values associated with the given name
382 function Is_Operator_Name (Id : Name_Id) return Boolean;
383 -- Returns True if name given is of the form of an operator (that
384 -- is, it starts with an upper case O).
386 procedure Initialize;
387 -- This is a dummy procedure. It is retained for easy compatibility with
388 -- clients who used to call Initialize when this call was required. Now
389 -- initialization is performed automatically during package elaboration.
390 -- Note that this change fixes problems which existed prior to the change
391 -- of Initialize being called more than once. See also Reinitialize which
392 -- allows reinitialization of the tables.
394 procedure Lock;
395 -- Lock name tables before calling back end. We reserve some extra space
396 -- before locking to avoid unnecessary inefficiencies when we unlock.
398 procedure Reinitialize;
399 -- Clears the name tables and removes all existing entries from the table.
401 procedure Unlock;
402 -- Unlocks the name table to allow use of the extra space reserved by the
403 -- call to Lock. See gnat1drv for details of the need for this.
405 function Length_Of_Name (Id : Name_Id) return Nat;
406 pragma Inline (Length_Of_Name);
407 -- Returns length of given name in characters. This is the length of the
408 -- encoded name, as stored in the names table, the result is equivalent to
409 -- calling Get_Name_String and reading Name_Len, except that a call to
410 -- Length_Of_Name does not affect the contents of Name_Len and Name_Buffer.
412 function Name_Chars_Address return System.Address;
413 -- Return starting address of name characters table (used in Back_End call
414 -- to Gigi).
416 function Name_Find return Name_Id;
417 -- Name_Find is called with a string stored in Name_Buffer whose length is
418 -- in Name_Len (i.e. the characters of the name are in subscript positions
419 -- 1 to Name_Len in Name_Buffer). It searches the names table to see if the
420 -- string has already been stored. If so the Id of the existing entry is
421 -- returned. Otherwise a new entry is created with its Name_Table_Int
422 -- fields set to zero/false. The contents of Name_Buffer and Name_Len are
423 -- not modified by this call. Note that it is permissible for Name_Len to
424 -- be set to zero to lookup the null name string.
426 function Name_Find_Str (S : String) return Name_Id;
427 -- Similar to Name_Find, except that the string is provided as an argument.
428 -- This call destroys the contents of Name_Buffer and Name_Len (by storing
429 -- the given string there.
431 function Name_Enter return Name_Id;
432 -- Name_Enter has the same calling interface as Name_Find. The difference
433 -- is that it does not search the table for an existing match, and also
434 -- subsequent Name_Find calls using the same name will not locate the
435 -- entry created by this call. Thus multiple calls to Name_Enter with the
436 -- same name will create multiple entries in the name table with different
437 -- Name_Id values. This is useful in the case of created names, which are
438 -- never expected to be looked up. Note: Name_Enter should never be used
439 -- for one character names, since these are efficiently located without
440 -- hashing by Name_Find in any case.
442 function Name_Entries_Address return System.Address;
443 -- Return starting address of Names table (used in Back_End call to Gigi)
445 function Name_Entries_Count return Nat;
446 -- Return current number of entries in the names table
448 function Is_OK_Internal_Letter (C : Character) return Boolean;
449 pragma Inline (Is_OK_Internal_Letter);
450 -- Returns true if C is a suitable character for using as a prefix or a
451 -- suffix of an internally generated name, i.e. it is an upper case letter
452 -- other than one of the ones used for encoding source names (currently
453 -- the set of reserved letters is O, Q, U, W) and also returns False for
454 -- the letter X, which is reserved for debug output (see Exp_Dbug).
456 function Is_Internal_Name (Id : Name_Id) return Boolean;
457 -- Returns True if the name is an internal name (i.e. contains a character
458 -- for which Is_OK_Internal_Letter is true, or if the name starts or ends
459 -- with an underscore. This call destroys the value of Name_Len and
460 -- Name_Buffer (it loads these as for Get_Name_String).
462 -- Note: if the name is qualified (has a double underscore), then only the
463 -- final entity name is considered, not the qualifying names. Consider for
464 -- example that the name:
466 -- pkg__B_1__xyz
468 -- is not an internal name, because the B comes from the internal name of
469 -- a qualifying block, but the xyz means that this was indeed a declared
470 -- identifier called "xyz" within this block and there is nothing internal
471 -- about that name.
473 function Is_Internal_Name return Boolean;
474 -- Like the form with an Id argument, except that the name to be tested is
475 -- passed in Name_Buffer and Name_Len (which are not affected by the call).
476 -- Name_Buffer (it loads these as for Get_Name_String).
478 function Is_Valid_Name (Id : Name_Id) return Boolean;
479 -- True if Id is a valid name -- points to a valid entry in the
480 -- Name_Entries table.
482 procedure Reset_Name_Table;
483 -- This procedure is used when there are multiple source files to reset
484 -- the name table info entries associated with current entries in the
485 -- names table. There is no harm in keeping the names entries themselves
486 -- from one compilation to another, but we can't keep the entity info,
487 -- since this refers to tree nodes, which are destroyed between each main
488 -- source file.
490 procedure Add_Char_To_Name_Buffer (C : Character);
491 pragma Inline (Add_Char_To_Name_Buffer);
492 -- Add given character to the end of the string currently stored in the
493 -- Name_Buffer, incrementing Name_Len.
495 procedure Add_Nat_To_Name_Buffer (V : Nat);
496 -- Add decimal representation of given value to the end of the string
497 -- currently stored in Name_Buffer, incrementing Name_Len as required.
499 procedure Add_Str_To_Name_Buffer (S : String);
500 -- Add characters of string S to the end of the string currently stored
501 -- in the Name_Buffer, incrementing Name_Len by the length of the string.
503 procedure Insert_Str_In_Name_Buffer (S : String; Index : Positive);
504 -- Inserts given string in name buffer, starting at Index. Any existing
505 -- characters at or past this location get moved beyond the inserted string
506 -- and Name_Len is incremented by the length of the string.
508 procedure Set_Character_Literal_Name (C : Char_Code);
509 -- This procedure sets the proper encoded name for the character literal
510 -- for the given character code. On return Name_Buffer and Name_Len are
511 -- set to reflect the stored name.
513 procedure Set_Name_Table_Int (Id : Name_Id; Val : Int);
514 pragma Inline (Set_Name_Table_Int);
515 -- Sets the Int value associated with the given name
517 procedure Set_Name_Table_Byte (Id : Name_Id; Val : Byte);
518 pragma Inline (Set_Name_Table_Byte);
519 -- Sets the Byte value associated with the given name
521 procedure Set_Name_Table_Boolean1 (Id : Name_Id; Val : Boolean);
522 procedure Set_Name_Table_Boolean2 (Id : Name_Id; Val : Boolean);
523 procedure Set_Name_Table_Boolean3 (Id : Name_Id; Val : Boolean);
524 -- Sets the Boolean value associated with the given name
526 procedure Store_Encoded_Character (C : Char_Code);
527 -- Stores given character code at the end of Name_Buffer, updating the
528 -- value in Name_Len appropriately. Lower case letters and digits are
529 -- stored unchanged. Other 8-bit characters are stored using the Uhh
530 -- encoding (hh = hex code), other 16-bit wide character values are stored
531 -- using the Whhhh (hhhh = hex code) encoding, and other 32-bit wide wide
532 -- character values are stored using the WWhhhhhhhh (hhhhhhhh = hex code).
533 -- Note that this procedure does not fold upper case letters (they are
534 -- stored using the Uhh encoding). If folding is required, it must be done
535 -- by the caller prior to the call.
537 procedure Tree_Read;
538 -- Initializes internal tables from current tree file using the relevant
539 -- Table.Tree_Read routines. Note that Initialize should not be called if
540 -- Tree_Read is used. Tree_Read includes all necessary initialization.
542 procedure Tree_Write;
543 -- Writes out internal tables to current tree file using the relevant
544 -- Table.Tree_Write routines.
546 procedure Get_Last_Two_Chars (N : Name_Id; C1, C2 : out Character);
547 -- Obtains last two characters of a name. C1 is last but one character
548 -- and C2 is last character. If name is less than two characters long,
549 -- then both C1 and C2 are set to ASCII.NUL on return.
551 procedure Write_Name (Id : Name_Id);
552 -- Write_Name writes the characters of the specified name using the
553 -- standard output procedures in package Output. No end of line is
554 -- written, just the characters of the name. On return Name_Buffer and
555 -- Name_Len are set as for a call to Get_Name_String. The name is written
556 -- in encoded form (i.e. including Uhh, Whhh, Qx, _op as they appear in
557 -- the name table). If Id is Error_Name, or No_Name, no text is output.
559 procedure Write_Name_Decoded (Id : Name_Id);
560 -- Like Write_Name, except that the name written is the decoded name, as
561 -- described for Get_Decoded_Name_String, and the resulting value stored
562 -- in Name_Len and Name_Buffer is the decoded name.
564 ------------------------------
565 -- File and Unit Name Types --
566 ------------------------------
568 -- These are defined here in Namet rather than Fname and Uname to avoid
569 -- problems with dependencies, and to avoid dragging in Fname and Uname
570 -- into many more files, but it would be cleaner to move to Fname/Uname.
572 type File_Name_Type is new Name_Id;
573 -- File names are stored in the names table and this type is used to
574 -- indicate that a Name_Id value is being used to hold a simple file name
575 -- (which does not include any directory information).
577 No_File : constant File_Name_Type := File_Name_Type (No_Name);
578 -- Constant used to indicate no file is present (this is used for example
579 -- when a search for a file indicates that no file of the name exists).
581 Error_File_Name : constant File_Name_Type := File_Name_Type (Error_Name);
582 -- The special File_Name_Type value Error_File_Name is used to indicate
583 -- a unit name where some previous processing has found an error.
585 subtype Error_File_Name_Or_No_File is
586 File_Name_Type range No_File .. Error_File_Name;
587 -- Used to test for either error file name or no file
589 type Path_Name_Type is new Name_Id;
590 -- Path names are stored in the names table and this type is used to
591 -- indicate that a Name_Id value is being used to hold a path name (that
592 -- may contain directory information).
594 No_Path : constant Path_Name_Type := Path_Name_Type (No_Name);
595 -- Constant used to indicate no path name is present
597 type Unit_Name_Type is new Name_Id;
598 -- Unit names are stored in the names table and this type is used to
599 -- indicate that a Name_Id value is being used to hold a unit name, which
600 -- terminates in %b for a body or %s for a spec.
602 No_Unit_Name : constant Unit_Name_Type := Unit_Name_Type (No_Name);
603 -- Constant used to indicate no file name present
605 Error_Unit_Name : constant Unit_Name_Type := Unit_Name_Type (Error_Name);
606 -- The special Unit_Name_Type value Error_Unit_Name is used to indicate
607 -- a unit name where some previous processing has found an error.
609 subtype Error_Unit_Name_Or_No_Unit_Name is
610 Unit_Name_Type range No_Unit_Name .. Error_Unit_Name;
612 ------------------------
613 -- Debugging Routines --
614 ------------------------
616 procedure wn (Id : Name_Id);
617 pragma Export (Ada, wn);
618 -- This routine is intended for debugging use only (i.e. it is intended to
619 -- be called from the debugger). It writes the characters of the specified
620 -- name using the standard output procedures in package Output, followed by
621 -- a new line. The name is written in encoded form (i.e. including Uhh,
622 -- Whhh, Qx, _op as they appear in the name table). If Id is Error_Name,
623 -- No_Name, or invalid an appropriate string is written (<Error_Name>,
624 -- <No_Name>, <invalid name>). Unlike Write_Name, this call does not affect
625 -- the contents of Name_Buffer or Name_Len.
627 ---------------------------
628 -- Table Data Structures --
629 ---------------------------
631 -- The following declarations define the data structures used to store
632 -- names. The definitions are in the private part of the package spec,
633 -- rather than the body, since they are referenced directly by gigi.
635 private
637 -- This table stores the actual string names. Although logically there is
638 -- no need for a terminating character (since the length is stored in the
639 -- name entry table), we still store a NUL character at the end of every
640 -- name (for convenience in interfacing to the C world).
642 package Name_Chars is new Table.Table (
643 Table_Component_Type => Character,
644 Table_Index_Type => Int,
645 Table_Low_Bound => 0,
646 Table_Initial => Alloc.Name_Chars_Initial,
647 Table_Increment => Alloc.Name_Chars_Increment,
648 Table_Name => "Name_Chars");
650 type Name_Entry is record
651 Name_Chars_Index : Int;
652 -- Starting location of characters in the Name_Chars table minus one
653 -- (i.e. pointer to character just before first character). The reason
654 -- for the bias of one is that indexes in Name_Buffer are one's origin,
655 -- so this avoids unnecessary adds and subtracts of 1.
657 Name_Len : Short;
658 -- Length of this name in characters
660 Byte_Info : Byte;
661 -- Byte value associated with this name
663 Boolean1_Info : Boolean;
664 Boolean2_Info : Boolean;
665 Boolean3_Info : Boolean;
666 -- Boolean values associated with the name
668 Name_Has_No_Encodings : Boolean;
669 -- This flag is set True if the name entry is known not to contain any
670 -- special character encodings. This is used to speed up repeated calls
671 -- to Get_Decoded_Name_String. A value of False means that it is not
672 -- known whether the name contains any such encodings.
674 Hash_Link : Name_Id;
675 -- Link to next entry in names table for same hash code
677 Int_Info : Int;
678 -- Int Value associated with this name
680 end record;
682 for Name_Entry use record
683 Name_Chars_Index at 0 range 0 .. 31;
684 Name_Len at 4 range 0 .. 15;
685 Byte_Info at 6 range 0 .. 7;
686 Boolean1_Info at 7 range 0 .. 0;
687 Boolean2_Info at 7 range 1 .. 1;
688 Boolean3_Info at 7 range 2 .. 2;
689 Name_Has_No_Encodings at 7 range 3 .. 7;
690 Hash_Link at 8 range 0 .. 31;
691 Int_Info at 12 range 0 .. 31;
692 end record;
694 for Name_Entry'Size use 16 * 8;
695 -- This ensures that we did not leave out any fields
697 -- This is the table that is referenced by Name_Id entries.
698 -- It contains one entry for each unique name in the table.
700 package Name_Entries is new Table.Table (
701 Table_Component_Type => Name_Entry,
702 Table_Index_Type => Name_Id'Base,
703 Table_Low_Bound => First_Name_Id,
704 Table_Initial => Alloc.Names_Initial,
705 Table_Increment => Alloc.Names_Increment,
706 Table_Name => "Name_Entries");
708 end Namet;