* g++.dg/template/using30.C: Move ...
[official-gcc.git] / gcc / ada / namet.ads
blobad52122c5860c667905da34b734e1e0e0d71b704
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- N A M E T --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 1992-2014, 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 -- Three values, one of type Int, one of type Byte, and one 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 Boolean field is used to mark address clauses to optimize the
132 -- performance of the Exp_Util.Following_Address_Clause function.
134 -- In the binder, we have the following uses:
136 -- The Int field is used in various ways depending on the name involved,
137 -- see binder documentation for details.
139 -- The Byte and Boolean fields are unused.
141 -- Note that the value of the Int and Byte fields are initialized to zero,
142 -- and the Boolean field is initialized to False, when a new Name table entry
143 -- is created.
145 Name_Buffer : String (1 .. 4 * Max_Line_Length);
146 -- This buffer is used to set the name to be stored in the table for the
147 -- Name_Find call, and to retrieve the name for the Get_Name_String call.
148 -- The limit here is intended to be an infinite value that ensures that we
149 -- never overflow the buffer (names this long are too absurd to worry).
151 Name_Len : Natural := 0;
152 -- Length of name stored in Name_Buffer. Used as an input parameter for
153 -- Name_Find, and as an output value by Get_Name_String, or Write_Name.
154 -- Note: in normal usage, all users of Name_Buffer/Name_Len are expected
155 -- to initialize Name_Len appropriately. The reason we preinitialize to
156 -- zero here is that some circuitry (e.g. Osint.Write_Program_Name) does
157 -- a save/restore on Name_Len and Name_Buffer (1 .. Name_Len), and we do
158 -- not want some arbitrary junk value to result in saving an arbitrarily
159 -- long slice which would waste time and blow the stack.
161 -----------------------------
162 -- Types for Namet Package --
163 -----------------------------
165 -- Name_Id values are used to identify entries in the names table. Except
166 -- for the special values No_Name and Error_Name, they are subscript values
167 -- for the Names table defined in this package.
169 -- Note that with only a few exceptions, which are clearly documented, the
170 -- type Name_Id should be regarded as a private type. In particular it is
171 -- never appropriate to perform arithmetic operations using this type.
173 type Name_Id is range Names_Low_Bound .. Names_High_Bound;
174 for Name_Id'Size use 32;
175 -- Type used to identify entries in the names table
177 No_Name : constant Name_Id := Names_Low_Bound;
178 -- The special Name_Id value No_Name is used in the parser to indicate
179 -- a situation where no name is present (e.g. on a loop or block).
181 Error_Name : constant Name_Id := Names_Low_Bound + 1;
182 -- The special Name_Id value Error_Name is used in the parser to
183 -- indicate that some kind of error was encountered in scanning out
184 -- the relevant name, so it does not have a representable label.
186 subtype Error_Name_Or_No_Name is Name_Id range No_Name .. Error_Name;
187 -- Used to test for either error name or no name
189 First_Name_Id : constant Name_Id := Names_Low_Bound + 2;
190 -- Subscript of first entry in names table
192 ------------------------------
193 -- Name_Id Membership Tests --
194 ------------------------------
196 -- The following functions allow a convenient notation for testing whether
197 -- a Name_Id value matches any one of a list of possible values. In each
198 -- case True is returned if the given T argument is equal to any of the V
199 -- arguments. These essentially duplicate the Ada 2012 membership tests,
200 -- but we cannot use the latter (yet) in the compiler front end, because
201 -- of bootstrap considerations
203 function Nam_In
204 (T : Name_Id;
205 V1 : Name_Id;
206 V2 : Name_Id) return Boolean;
208 function Nam_In
209 (T : Name_Id;
210 V1 : Name_Id;
211 V2 : Name_Id;
212 V3 : Name_Id) return Boolean;
214 function Nam_In
215 (T : Name_Id;
216 V1 : Name_Id;
217 V2 : Name_Id;
218 V3 : Name_Id;
219 V4 : 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;
227 V5 : Name_Id) return Boolean;
229 function Nam_In
230 (T : Name_Id;
231 V1 : Name_Id;
232 V2 : Name_Id;
233 V3 : Name_Id;
234 V4 : Name_Id;
235 V5 : Name_Id;
236 V6 : Name_Id) return Boolean;
238 function Nam_In
239 (T : Name_Id;
240 V1 : Name_Id;
241 V2 : Name_Id;
242 V3 : Name_Id;
243 V4 : Name_Id;
244 V5 : Name_Id;
245 V6 : Name_Id;
246 V7 : Name_Id) return Boolean;
248 function Nam_In
249 (T : Name_Id;
250 V1 : Name_Id;
251 V2 : Name_Id;
252 V3 : Name_Id;
253 V4 : Name_Id;
254 V5 : Name_Id;
255 V6 : Name_Id;
256 V7 : Name_Id;
257 V8 : Name_Id) return Boolean;
259 function Nam_In
260 (T : Name_Id;
261 V1 : Name_Id;
262 V2 : Name_Id;
263 V3 : Name_Id;
264 V4 : Name_Id;
265 V5 : Name_Id;
266 V6 : Name_Id;
267 V7 : Name_Id;
268 V8 : Name_Id;
269 V9 : Name_Id) return Boolean;
271 function Nam_In
272 (T : Name_Id;
273 V1 : Name_Id;
274 V2 : Name_Id;
275 V3 : Name_Id;
276 V4 : Name_Id;
277 V5 : Name_Id;
278 V6 : Name_Id;
279 V7 : Name_Id;
280 V8 : Name_Id;
281 V9 : Name_Id;
282 V10 : Name_Id) return Boolean;
284 function Nam_In
285 (T : Name_Id;
286 V1 : Name_Id;
287 V2 : Name_Id;
288 V3 : Name_Id;
289 V4 : Name_Id;
290 V5 : Name_Id;
291 V6 : Name_Id;
292 V7 : Name_Id;
293 V8 : Name_Id;
294 V9 : Name_Id;
295 V10 : Name_Id;
296 V11 : Name_Id) return Boolean;
298 pragma Inline (Nam_In);
299 -- Inline all above functions
301 -----------------
302 -- Subprograms --
303 -----------------
305 procedure Finalize;
306 -- Called at the end of a use of the Namet package (before a subsequent
307 -- call to Initialize). Currently this routine is only used to generate
308 -- debugging output.
310 procedure Get_Name_String (Id : Name_Id);
311 -- Get_Name_String is used to retrieve the string associated with an entry
312 -- in the names table. The resulting string is stored in Name_Buffer and
313 -- Name_Len is set. It is an error to call Get_Name_String with one of the
314 -- special name Id values (No_Name or Error_Name).
316 function Get_Name_String (Id : Name_Id) return String;
317 -- This functional form returns the result as a string without affecting
318 -- the contents of either Name_Buffer or Name_Len. The lower bound is 1.
320 procedure Get_Unqualified_Name_String (Id : Name_Id);
321 -- Similar to the above except that qualification (as defined in unit
322 -- Exp_Dbug) is removed (including both preceding __ delimited names, and
323 -- also the suffixes used to indicate package body entities and to
324 -- distinguish between overloaded entities). Note that names are not
325 -- qualified until just before the call to gigi, so this routine is only
326 -- needed by processing that occurs after gigi has been called. This
327 -- includes all ASIS processing, since ASIS works on the tree written
328 -- after gigi has been called.
330 procedure Get_Name_String_And_Append (Id : Name_Id);
331 -- Like Get_Name_String but the resulting characters are appended to the
332 -- current contents of the entry stored in Name_Buffer, and Name_Len is
333 -- incremented to include the added characters.
335 procedure Get_Decoded_Name_String (Id : Name_Id);
336 -- Same calling sequence an interface as Get_Name_String, except that the
337 -- result is decoded, so that upper half characters and wide characters
338 -- appear as originally found in the source program text, operators have
339 -- their source forms (special characters and enclosed in quotes), and
340 -- character literals appear surrounded by apostrophes.
342 procedure Get_Unqualified_Decoded_Name_String (Id : Name_Id);
343 -- Similar to the above except that qualification (as defined in unit
344 -- Exp_Dbug) is removed (including both preceding __ delimited names, and
345 -- also the suffix used to indicate package body entities). Note that
346 -- names are not qualified until just before the call to gigi, so this
347 -- routine is only needed by processing that occurs after gigi has been
348 -- called. This includes all ASIS processing, since ASIS works on the tree
349 -- written after gigi has been called.
351 procedure Get_Decoded_Name_String_With_Brackets (Id : Name_Id);
352 -- This routine is similar to Decoded_Name, except that the brackets
353 -- notation (Uhh replaced by ["hh"], Whhhh replaced by ["hhhh"],
354 -- WWhhhhhhhh replaced by ["hhhhhhhh"]) is used for all non-lower half
355 -- characters, regardless of how Opt.Wide_Character_Encoding_Method is
356 -- set, and also in that characters in the range 16#80# .. 16#FF# are
357 -- converted to brackets notation in all cases. This routine can be used
358 -- when there is a requirement for a canonical representation not affected
359 -- by the character set options (e.g. in the binder generation of
360 -- symbols).
362 function Get_Name_Table_Byte (Id : Name_Id) return Byte;
363 pragma Inline (Get_Name_Table_Byte);
364 -- Fetches the Byte value associated with the given name
366 function Get_Name_Table_Info (Id : Name_Id) return Int;
367 pragma Inline (Get_Name_Table_Info);
368 -- Fetches the Int value associated with the given name
370 function Get_Name_Table_Boolean (Id : Name_Id) return Boolean;
371 -- Fetches the Boolean value associated with the given name
373 function Is_Operator_Name (Id : Name_Id) return Boolean;
374 -- Returns True if name given is of the form of an operator (that
375 -- is, it starts with an upper case O).
377 procedure Initialize;
378 -- This is a dummy procedure. It is retained for easy compatibility with
379 -- clients who used to call Initialize when this call was required. Now
380 -- initialization is performed automatically during package elaboration.
381 -- Note that this change fixes problems which existed prior to the change
382 -- of Initialize being called more than once. See also Reinitialize which
383 -- allows reinitialization of the tables.
385 procedure Lock;
386 -- Lock name tables before calling back end. We reserve some extra space
387 -- before locking to avoid unnecessary inefficiencies when we unlock.
389 procedure Reinitialize;
390 -- Clears the name tables and removes all existing entries from the table.
392 procedure Unlock;
393 -- Unlocks the name table to allow use of the extra space reserved by the
394 -- call to Lock. See gnat1drv for details of the need for this.
396 function Length_Of_Name (Id : Name_Id) return Nat;
397 pragma Inline (Length_Of_Name);
398 -- Returns length of given name in characters. This is the length of the
399 -- encoded name, as stored in the names table, the result is equivalent to
400 -- calling Get_Name_String and reading Name_Len, except that a call to
401 -- Length_Of_Name does not affect the contents of Name_Len and Name_Buffer.
403 function Name_Chars_Address return System.Address;
404 -- Return starting address of name characters table (used in Back_End call
405 -- to Gigi).
407 function Name_Find return Name_Id;
408 -- Name_Find is called with a string stored in Name_Buffer whose length is
409 -- in Name_Len (i.e. the characters of the name are in subscript positions
410 -- 1 to Name_Len in Name_Buffer). It searches the names table to see if the
411 -- string has already been stored. If so the Id of the existing entry is
412 -- returned. Otherwise a new entry is created with its Name_Table_Info
413 -- fields set to zero/false. The contents of Name_Buffer and Name_Len are
414 -- not modified by this call. Note that it is permissible for Name_Len to
415 -- be set to zero to lookup the null name string.
417 function Name_Enter return Name_Id;
418 -- Name_Enter has the same calling interface as Name_Find. The difference
419 -- is that it does not search the table for an existing match, and also
420 -- subsequent Name_Find calls using the same name will not locate the
421 -- entry created by this call. Thus multiple calls to Name_Enter with the
422 -- same name will create multiple entries in the name table with different
423 -- Name_Id values. This is useful in the case of created names, which are
424 -- never expected to be looked up. Note: Name_Enter should never be used
425 -- for one character names, since these are efficiently located without
426 -- hashing by Name_Find in any case.
428 function Name_Entries_Address return System.Address;
429 -- Return starting address of Names table (used in Back_End call to Gigi)
431 function Name_Entries_Count return Nat;
432 -- Return current number of entries in the names table
434 function Is_OK_Internal_Letter (C : Character) return Boolean;
435 pragma Inline (Is_OK_Internal_Letter);
436 -- Returns true if C is a suitable character for using as a prefix or a
437 -- suffix of an internally generated name, i.e. it is an upper case letter
438 -- other than one of the ones used for encoding source names (currently
439 -- the set of reserved letters is O, Q, U, W) and also returns False for
440 -- the letter X, which is reserved for debug output (see Exp_Dbug).
442 function Is_Internal_Name (Id : Name_Id) return Boolean;
443 -- Returns True if the name is an internal name (i.e. contains a character
444 -- for which Is_OK_Internal_Letter is true, or if the name starts or ends
445 -- with an underscore. This call destroys the value of Name_Len and
446 -- Name_Buffer (it loads these as for Get_Name_String).
448 -- Note: if the name is qualified (has a double underscore), then only the
449 -- final entity name is considered, not the qualifying names. Consider for
450 -- example that the name:
452 -- pkg__B_1__xyz
454 -- is not an internal name, because the B comes from the internal name of
455 -- a qualifying block, but the xyz means that this was indeed a declared
456 -- identifier called "xyz" within this block and there is nothing internal
457 -- about that name.
459 function Is_Internal_Name return Boolean;
460 -- Like the form with an Id argument, except that the name to be tested is
461 -- passed in Name_Buffer and Name_Len (which are not affected by the call).
462 -- Name_Buffer (it loads these as for Get_Name_String).
464 function Is_Valid_Name (Id : Name_Id) return Boolean;
465 -- True if Id is a valid name -- points to a valid entry in the
466 -- Name_Entries table.
468 procedure Reset_Name_Table;
469 -- This procedure is used when there are multiple source files to reset
470 -- the name table info entries associated with current entries in the
471 -- names table. There is no harm in keeping the names entries themselves
472 -- from one compilation to another, but we can't keep the entity info,
473 -- since this refers to tree nodes, which are destroyed between each main
474 -- source file.
476 procedure Add_Char_To_Name_Buffer (C : Character);
477 pragma Inline (Add_Char_To_Name_Buffer);
478 -- Add given character to the end of the string currently stored in the
479 -- Name_Buffer, incrementing Name_Len.
481 procedure Add_Nat_To_Name_Buffer (V : Nat);
482 -- Add decimal representation of given value to the end of the string
483 -- currently stored in Name_Buffer, incrementing Name_Len as required.
485 procedure Add_Str_To_Name_Buffer (S : String);
486 -- Add characters of string S to the end of the string currently stored
487 -- in the Name_Buffer, incrementing Name_Len by the length of the string.
489 procedure Insert_Str_In_Name_Buffer (S : String; Index : Positive);
490 -- Inserts given string in name buffer, starting at Index. Any existing
491 -- characters at or past this location get moved beyond the inserted string
492 -- and Name_Len is incremented by the length of the string.
494 procedure Set_Character_Literal_Name (C : Char_Code);
495 -- This procedure sets the proper encoded name for the character literal
496 -- for the given character code. On return Name_Buffer and Name_Len are
497 -- set to reflect the stored name.
499 procedure Set_Name_Table_Info (Id : Name_Id; Val : Int);
500 pragma Inline (Set_Name_Table_Info);
501 -- Sets the Int value associated with the given name
503 procedure Set_Name_Table_Byte (Id : Name_Id; Val : Byte);
504 pragma Inline (Set_Name_Table_Byte);
505 -- Sets the Byte value associated with the given name
507 procedure Set_Name_Table_Boolean (Id : Name_Id; Val : Boolean);
508 -- Sets the Boolean value associated with the given name
510 procedure Store_Encoded_Character (C : Char_Code);
511 -- Stores given character code at the end of Name_Buffer, updating the
512 -- value in Name_Len appropriately. Lower case letters and digits are
513 -- stored unchanged. Other 8-bit characters are stored using the Uhh
514 -- encoding (hh = hex code), other 16-bit wide character values are stored
515 -- using the Whhhh (hhhh = hex code) encoding, and other 32-bit wide wide
516 -- character values are stored using the WWhhhhhhhh (hhhhhhhh = hex code).
517 -- Note that this procedure does not fold upper case letters (they are
518 -- stored using the Uhh encoding). If folding is required, it must be done
519 -- by the caller prior to the call.
521 procedure Tree_Read;
522 -- Initializes internal tables from current tree file using the relevant
523 -- Table.Tree_Read routines. Note that Initialize should not be called if
524 -- Tree_Read is used. Tree_Read includes all necessary initialization.
526 procedure Tree_Write;
527 -- Writes out internal tables to current tree file using the relevant
528 -- Table.Tree_Write routines.
530 procedure Get_Last_Two_Chars (N : Name_Id; C1, C2 : out Character);
531 -- Obtains last two characters of a name. C1 is last but one character
532 -- and C2 is last character. If name is less than two characters long,
533 -- then both C1 and C2 are set to ASCII.NUL on return.
535 procedure Write_Name (Id : Name_Id);
536 -- Write_Name writes the characters of the specified name using the
537 -- standard output procedures in package Output. No end of line is
538 -- written, just the characters of the name. On return Name_Buffer and
539 -- Name_Len are set as for a call to Get_Name_String. The name is written
540 -- in encoded form (i.e. including Uhh, Whhh, Qx, _op as they appear in
541 -- the name table). If Id is Error_Name, or No_Name, no text is output.
543 procedure Write_Name_Decoded (Id : Name_Id);
544 -- Like Write_Name, except that the name written is the decoded name, as
545 -- described for Get_Decoded_Name_String, and the resulting value stored
546 -- in Name_Len and Name_Buffer is the decoded name.
548 ------------------------------
549 -- File and Unit Name Types --
550 ------------------------------
552 -- These are defined here in Namet rather than Fname and Uname to avoid
553 -- problems with dependencies, and to avoid dragging in Fname and Uname
554 -- into many more files, but it would be cleaner to move to Fname/Uname.
556 type File_Name_Type is new Name_Id;
557 -- File names are stored in the names table and this type is used to
558 -- indicate that a Name_Id value is being used to hold a simple file name
559 -- (which does not include any directory information).
561 No_File : constant File_Name_Type := File_Name_Type (No_Name);
562 -- Constant used to indicate no file is present (this is used for example
563 -- when a search for a file indicates that no file of the name exists).
565 Error_File_Name : constant File_Name_Type := File_Name_Type (Error_Name);
566 -- The special File_Name_Type value Error_File_Name is used to indicate
567 -- a unit name where some previous processing has found an error.
569 subtype Error_File_Name_Or_No_File is
570 File_Name_Type range No_File .. Error_File_Name;
571 -- Used to test for either error file name or no file
573 type Path_Name_Type is new Name_Id;
574 -- Path names are stored in the names table and this type is used to
575 -- indicate that a Name_Id value is being used to hold a path name (that
576 -- may contain directory information).
578 No_Path : constant Path_Name_Type := Path_Name_Type (No_Name);
579 -- Constant used to indicate no path name is present
581 type Unit_Name_Type is new Name_Id;
582 -- Unit names are stored in the names table and this type is used to
583 -- indicate that a Name_Id value is being used to hold a unit name, which
584 -- terminates in %b for a body or %s for a spec.
586 No_Unit_Name : constant Unit_Name_Type := Unit_Name_Type (No_Name);
587 -- Constant used to indicate no file name present
589 Error_Unit_Name : constant Unit_Name_Type := Unit_Name_Type (Error_Name);
590 -- The special Unit_Name_Type value Error_Unit_Name is used to indicate
591 -- a unit name where some previous processing has found an error.
593 subtype Error_Unit_Name_Or_No_Unit_Name is
594 Unit_Name_Type range No_Unit_Name .. Error_Unit_Name;
596 ------------------------
597 -- Debugging Routines --
598 ------------------------
600 procedure wn (Id : Name_Id);
601 pragma Export (Ada, wn);
602 -- This routine is intended for debugging use only (i.e. it is intended to
603 -- be called from the debugger). It writes the characters of the specified
604 -- name using the standard output procedures in package Output, followed by
605 -- a new line. The name is written in encoded form (i.e. including Uhh,
606 -- Whhh, Qx, _op as they appear in the name table). If Id is Error_Name,
607 -- No_Name, or invalid an appropriate string is written (<Error_Name>,
608 -- <No_Name>, <invalid name>). Unlike Write_Name, this call does not affect
609 -- the contents of Name_Buffer or Name_Len.
611 ---------------------------
612 -- Table Data Structures --
613 ---------------------------
615 -- The following declarations define the data structures used to store
616 -- names. The definitions are in the private part of the package spec,
617 -- rather than the body, since they are referenced directly by gigi.
619 private
621 -- This table stores the actual string names. Although logically there is
622 -- no need for a terminating character (since the length is stored in the
623 -- name entry table), we still store a NUL character at the end of every
624 -- name (for convenience in interfacing to the C world).
626 package Name_Chars is new Table.Table (
627 Table_Component_Type => Character,
628 Table_Index_Type => Int,
629 Table_Low_Bound => 0,
630 Table_Initial => Alloc.Name_Chars_Initial,
631 Table_Increment => Alloc.Name_Chars_Increment,
632 Table_Name => "Name_Chars");
634 type Name_Entry is record
635 Name_Chars_Index : Int;
636 -- Starting location of characters in the Name_Chars table minus one
637 -- (i.e. pointer to character just before first character). The reason
638 -- for the bias of one is that indexes in Name_Buffer are one's origin,
639 -- so this avoids unnecessary adds and subtracts of 1.
641 Name_Len : Short;
642 -- Length of this name in characters
644 Byte_Info : Byte;
645 -- Byte value associated with this name
647 Boolean_Info : Boolean;
648 -- Boolean value associated with the name
650 Name_Has_No_Encodings : Boolean;
651 -- This flag is set True if the name entry is known not to contain any
652 -- special character encodings. This is used to speed up repeated calls
653 -- to Get_Decoded_Name_String. A value of False means that it is not
654 -- known whether the name contains any such encodings.
656 Hash_Link : Name_Id;
657 -- Link to next entry in names table for same hash code
659 Int_Info : Int;
660 -- Int Value associated with this name
662 end record;
664 for Name_Entry use record
665 Name_Chars_Index at 0 range 0 .. 31;
666 Name_Len at 4 range 0 .. 15;
667 Byte_Info at 6 range 0 .. 7;
668 Boolean_Info at 7 range 0 .. 0;
669 Name_Has_No_Encodings at 7 range 1 .. 7;
670 Hash_Link at 8 range 0 .. 31;
671 Int_Info at 12 range 0 .. 31;
672 end record;
674 for Name_Entry'Size use 16 * 8;
675 -- This ensures that we did not leave out any fields
677 -- This is the table that is referenced by Name_Id entries.
678 -- It contains one entry for each unique name in the table.
680 package Name_Entries is new Table.Table (
681 Table_Component_Type => Name_Entry,
682 Table_Index_Type => Name_Id'Base,
683 Table_Low_Bound => First_Name_Id,
684 Table_Initial => Alloc.Names_Initial,
685 Table_Increment => Alloc.Names_Increment,
686 Table_Name => "Name_Entries");
688 end Namet;