| 1 |
706 |
jeremybenn |
------------------------------------------------------------------------------
|
| 2 |
|
|
-- --
|
| 3 |
|
|
-- GNAT COMPILER COMPONENTS --
|
| 4 |
|
|
-- --
|
| 5 |
|
|
-- S N A M E S --
|
| 6 |
|
|
-- --
|
| 7 |
|
|
-- T e m p l a t e --
|
| 8 |
|
|
-- --
|
| 9 |
|
|
-- Copyright (C) 1992-2012, 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 |
|
|
-- . --
|
| 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 |
|
|
------------------------------------------------------------------------------
|
| 31 |
|
|
|
| 32 |
|
|
with Namet; use Namet;
|
| 33 |
|
|
|
| 34 |
|
|
package Snames is
|
| 35 |
|
|
|
| 36 |
|
|
-- This package contains definitions of standard names (i.e. entries in the
|
| 37 |
|
|
-- Names table) that are used throughout the GNAT compiler. It also contains
|
| 38 |
|
|
-- the definitions of some enumeration types whose definitions are tied to the
|
| 39 |
|
|
-- order of these preset names.
|
| 40 |
|
|
|
| 41 |
|
|
------------------
|
| 42 |
|
|
-- Preset Names --
|
| 43 |
|
|
------------------
|
| 44 |
|
|
|
| 45 |
|
|
-- The following are preset entries in the names table, which are entered
|
| 46 |
|
|
-- at the start of every compilation for easy access. Note that the order
|
| 47 |
|
|
-- of initialization of these names in the body must be coordinated with
|
| 48 |
|
|
-- the order of names in this table.
|
| 49 |
|
|
|
| 50 |
|
|
-- Note: a name may not appear more than once in the following list. If
|
| 51 |
|
|
-- additional pragmas or attributes are introduced which might otherwise
|
| 52 |
|
|
-- cause a duplicate, then list it only once in this table, and adjust the
|
| 53 |
|
|
-- definition of the functions for testing for pragma names and attribute
|
| 54 |
|
|
-- names, and returning their ID values. Of course everything is simpler if
|
| 55 |
|
|
-- no such duplications occur!
|
| 56 |
|
|
|
| 57 |
|
|
-- First we have the one character names used to optimize the lookup
|
| 58 |
|
|
-- process for one character identifiers (to avoid the hashing in this
|
| 59 |
|
|
-- case) There are a full 256 of these, but only the entries for lower case
|
| 60 |
|
|
-- and upper case letters have identifiers
|
| 61 |
|
|
|
| 62 |
|
|
-- The lower case letter entries are used for one character identifiers
|
| 63 |
|
|
-- appearing in the source, for example in pragma Interface (C).
|
| 64 |
|
|
|
| 65 |
|
|
Name_A : constant Name_Id := First_Name_Id + Character'Pos ('a');
|
| 66 |
|
|
Name_B : constant Name_Id := First_Name_Id + Character'Pos ('b');
|
| 67 |
|
|
Name_C : constant Name_Id := First_Name_Id + Character'Pos ('c');
|
| 68 |
|
|
Name_D : constant Name_Id := First_Name_Id + Character'Pos ('d');
|
| 69 |
|
|
Name_E : constant Name_Id := First_Name_Id + Character'Pos ('e');
|
| 70 |
|
|
Name_F : constant Name_Id := First_Name_Id + Character'Pos ('f');
|
| 71 |
|
|
Name_G : constant Name_Id := First_Name_Id + Character'Pos ('g');
|
| 72 |
|
|
Name_H : constant Name_Id := First_Name_Id + Character'Pos ('h');
|
| 73 |
|
|
Name_I : constant Name_Id := First_Name_Id + Character'Pos ('i');
|
| 74 |
|
|
Name_J : constant Name_Id := First_Name_Id + Character'Pos ('j');
|
| 75 |
|
|
Name_K : constant Name_Id := First_Name_Id + Character'Pos ('k');
|
| 76 |
|
|
Name_L : constant Name_Id := First_Name_Id + Character'Pos ('l');
|
| 77 |
|
|
Name_M : constant Name_Id := First_Name_Id + Character'Pos ('m');
|
| 78 |
|
|
Name_N : constant Name_Id := First_Name_Id + Character'Pos ('n');
|
| 79 |
|
|
Name_O : constant Name_Id := First_Name_Id + Character'Pos ('o');
|
| 80 |
|
|
Name_P : constant Name_Id := First_Name_Id + Character'Pos ('p');
|
| 81 |
|
|
Name_Q : constant Name_Id := First_Name_Id + Character'Pos ('q');
|
| 82 |
|
|
Name_R : constant Name_Id := First_Name_Id + Character'Pos ('r');
|
| 83 |
|
|
Name_S : constant Name_Id := First_Name_Id + Character'Pos ('s');
|
| 84 |
|
|
Name_T : constant Name_Id := First_Name_Id + Character'Pos ('t');
|
| 85 |
|
|
Name_U : constant Name_Id := First_Name_Id + Character'Pos ('u');
|
| 86 |
|
|
Name_V : constant Name_Id := First_Name_Id + Character'Pos ('v');
|
| 87 |
|
|
Name_W : constant Name_Id := First_Name_Id + Character'Pos ('w');
|
| 88 |
|
|
Name_X : constant Name_Id := First_Name_Id + Character'Pos ('x');
|
| 89 |
|
|
Name_Y : constant Name_Id := First_Name_Id + Character'Pos ('y');
|
| 90 |
|
|
Name_Z : constant Name_Id := First_Name_Id + Character'Pos ('z');
|
| 91 |
|
|
|
| 92 |
|
|
-- The upper case letter entries are used by expander code for local
|
| 93 |
|
|
-- variables that do not require unique names (e.g. formal parameter names
|
| 94 |
|
|
-- in constructed procedures).
|
| 95 |
|
|
|
| 96 |
|
|
Name_uA : constant Name_Id := First_Name_Id + Character'Pos ('A');
|
| 97 |
|
|
Name_uB : constant Name_Id := First_Name_Id + Character'Pos ('B');
|
| 98 |
|
|
Name_uC : constant Name_Id := First_Name_Id + Character'Pos ('C');
|
| 99 |
|
|
Name_uD : constant Name_Id := First_Name_Id + Character'Pos ('D');
|
| 100 |
|
|
Name_uE : constant Name_Id := First_Name_Id + Character'Pos ('E');
|
| 101 |
|
|
Name_uF : constant Name_Id := First_Name_Id + Character'Pos ('F');
|
| 102 |
|
|
Name_uG : constant Name_Id := First_Name_Id + Character'Pos ('G');
|
| 103 |
|
|
Name_uH : constant Name_Id := First_Name_Id + Character'Pos ('H');
|
| 104 |
|
|
Name_uI : constant Name_Id := First_Name_Id + Character'Pos ('I');
|
| 105 |
|
|
Name_uJ : constant Name_Id := First_Name_Id + Character'Pos ('J');
|
| 106 |
|
|
Name_uK : constant Name_Id := First_Name_Id + Character'Pos ('K');
|
| 107 |
|
|
Name_uL : constant Name_Id := First_Name_Id + Character'Pos ('L');
|
| 108 |
|
|
Name_uM : constant Name_Id := First_Name_Id + Character'Pos ('M');
|
| 109 |
|
|
Name_uN : constant Name_Id := First_Name_Id + Character'Pos ('N');
|
| 110 |
|
|
Name_uO : constant Name_Id := First_Name_Id + Character'Pos ('O');
|
| 111 |
|
|
Name_uP : constant Name_Id := First_Name_Id + Character'Pos ('P');
|
| 112 |
|
|
Name_uQ : constant Name_Id := First_Name_Id + Character'Pos ('Q');
|
| 113 |
|
|
Name_uR : constant Name_Id := First_Name_Id + Character'Pos ('R');
|
| 114 |
|
|
Name_uS : constant Name_Id := First_Name_Id + Character'Pos ('S');
|
| 115 |
|
|
Name_uT : constant Name_Id := First_Name_Id + Character'Pos ('T');
|
| 116 |
|
|
Name_uU : constant Name_Id := First_Name_Id + Character'Pos ('U');
|
| 117 |
|
|
Name_uV : constant Name_Id := First_Name_Id + Character'Pos ('V');
|
| 118 |
|
|
Name_uW : constant Name_Id := First_Name_Id + Character'Pos ('W');
|
| 119 |
|
|
Name_uX : constant Name_Id := First_Name_Id + Character'Pos ('X');
|
| 120 |
|
|
Name_uY : constant Name_Id := First_Name_Id + Character'Pos ('Y');
|
| 121 |
|
|
Name_uZ : constant Name_Id := First_Name_Id + Character'Pos ('Z');
|
| 122 |
|
|
|
| 123 |
|
|
-- Note: the following table is read by the utility program XSNAMES and
|
| 124 |
|
|
-- its format should not be changed without coordinating with this program.
|
| 125 |
|
|
|
| 126 |
|
|
N : constant Name_Id := First_Name_Id + 256;
|
| 127 |
|
|
-- Synonym used in standard name definitions
|
| 128 |
|
|
|
| 129 |
|
|
-- Names referenced in snames.h
|
| 130 |
|
|
|
| 131 |
|
|
Name_uParent : constant Name_Id := N + $;
|
| 132 |
|
|
Name_uTag : constant Name_Id := N + $;
|
| 133 |
|
|
Name_Off : constant Name_Id := N + $;
|
| 134 |
|
|
Name_Space : constant Name_Id := N + $;
|
| 135 |
|
|
Name_Time : constant Name_Id := N + $;
|
| 136 |
|
|
|
| 137 |
|
|
-- Names of aspects for which there are no matching pragmas or attributes
|
| 138 |
|
|
-- so that they need to be included for aspect specification use.
|
| 139 |
|
|
|
| 140 |
|
|
Name_Default_Value : constant Name_Id := N + $;
|
| 141 |
|
|
Name_Default_Component_Value : constant Name_Id := N + $;
|
| 142 |
|
|
Name_Dimension : constant Name_Id := N + $;
|
| 143 |
|
|
Name_Dimension_System : constant Name_Id := N + $;
|
| 144 |
|
|
Name_Dynamic_Predicate : constant Name_Id := N + $;
|
| 145 |
|
|
Name_Post : constant Name_Id := N + $;
|
| 146 |
|
|
Name_Pre : constant Name_Id := N + $;
|
| 147 |
|
|
Name_Static_Predicate : constant Name_Id := N + $;
|
| 148 |
|
|
Name_Synchronization : constant Name_Id := N + $;
|
| 149 |
|
|
Name_Type_Invariant : constant Name_Id := N + $;
|
| 150 |
|
|
|
| 151 |
|
|
-- Some special names used by the expander. Note that the lower case u's
|
| 152 |
|
|
-- at the start of these names get translated to extra underscores. These
|
| 153 |
|
|
-- names are only referenced internally by expander generated code.
|
| 154 |
|
|
|
| 155 |
|
|
Name_uAbort_Signal : constant Name_Id := N + $;
|
| 156 |
|
|
Name_uAlignment : constant Name_Id := N + $;
|
| 157 |
|
|
Name_uAssign : constant Name_Id := N + $;
|
| 158 |
|
|
Name_uATCB : constant Name_Id := N + $;
|
| 159 |
|
|
Name_uChain : constant Name_Id := N + $;
|
| 160 |
|
|
Name_uController : constant Name_Id := N + $;
|
| 161 |
|
|
Name_uCPU : constant Name_Id := N + $;
|
| 162 |
|
|
Name_uDispatching_Domain : constant Name_Id := N + $;
|
| 163 |
|
|
Name_uEntry_Bodies : constant Name_Id := N + $;
|
| 164 |
|
|
Name_uExpunge : constant Name_Id := N + $;
|
| 165 |
|
|
Name_uFinalizer : constant Name_Id := N + $;
|
| 166 |
|
|
Name_uIdepth : constant Name_Id := N + $;
|
| 167 |
|
|
Name_uInit : constant Name_Id := N + $;
|
| 168 |
|
|
Name_uMaster : constant Name_Id := N + $;
|
| 169 |
|
|
Name_uObject : constant Name_Id := N + $;
|
| 170 |
|
|
Name_uPostconditions : constant Name_Id := N + $;
|
| 171 |
|
|
Name_uPriority : constant Name_Id := N + $;
|
| 172 |
|
|
Name_uProcess_ATSD : constant Name_Id := N + $;
|
| 173 |
|
|
Name_uRelative_Deadline : constant Name_Id := N + $;
|
| 174 |
|
|
Name_uResult : constant Name_Id := N + $;
|
| 175 |
|
|
Name_uSecondary_Stack : constant Name_Id := N + $;
|
| 176 |
|
|
Name_uService : constant Name_Id := N + $;
|
| 177 |
|
|
Name_uSize : constant Name_Id := N + $;
|
| 178 |
|
|
Name_uStack : constant Name_Id := N + $;
|
| 179 |
|
|
Name_uTags : constant Name_Id := N + $;
|
| 180 |
|
|
Name_uTask : constant Name_Id := N + $;
|
| 181 |
|
|
Name_uTask_Id : constant Name_Id := N + $;
|
| 182 |
|
|
Name_uTask_Info : constant Name_Id := N + $;
|
| 183 |
|
|
Name_uTask_Name : constant Name_Id := N + $;
|
| 184 |
|
|
Name_uTrace_Sp : constant Name_Id := N + $;
|
| 185 |
|
|
|
| 186 |
|
|
-- Names of predefined primitives used in the expansion of dispatching
|
| 187 |
|
|
-- requeue and select statements, Abort, 'Callable and 'Terminated.
|
| 188 |
|
|
|
| 189 |
|
|
Name_uDisp_Asynchronous_Select : constant Name_Id := N + $;
|
| 190 |
|
|
Name_uDisp_Conditional_Select : constant Name_Id := N + $;
|
| 191 |
|
|
Name_uDisp_Get_Prim_Op_Kind : constant Name_Id := N + $;
|
| 192 |
|
|
Name_uDisp_Get_Task_Id : constant Name_Id := N + $;
|
| 193 |
|
|
Name_uDisp_Requeue : constant Name_Id := N + $;
|
| 194 |
|
|
Name_uDisp_Timed_Select : constant Name_Id := N + $;
|
| 195 |
|
|
|
| 196 |
|
|
-- Names of routines and fields in Ada.Finalization, needed by expander
|
| 197 |
|
|
|
| 198 |
|
|
Name_Initialize : constant Name_Id := N + $;
|
| 199 |
|
|
Name_Adjust : constant Name_Id := N + $;
|
| 200 |
|
|
Name_Finalize : constant Name_Id := N + $;
|
| 201 |
|
|
Name_Finalize_Address : constant Name_Id := N + $;
|
| 202 |
|
|
Name_Next : constant Name_Id := N + $;
|
| 203 |
|
|
Name_Prev : constant Name_Id := N + $;
|
| 204 |
|
|
|
| 205 |
|
|
-- Names of allocation routines, also needed by expander
|
| 206 |
|
|
|
| 207 |
|
|
Name_Allocate : constant Name_Id := N + $;
|
| 208 |
|
|
Name_Deallocate : constant Name_Id := N + $;
|
| 209 |
|
|
Name_Dereference : constant Name_Id := N + $;
|
| 210 |
|
|
|
| 211 |
|
|
-- Names of Text_IO generic subpackages (see Rtsfind.Text_IO_Kludge)
|
| 212 |
|
|
|
| 213 |
|
|
First_Text_IO_Package : constant Name_Id := N + $;
|
| 214 |
|
|
Name_Decimal_IO : constant Name_Id := N + $;
|
| 215 |
|
|
Name_Enumeration_IO : constant Name_Id := N + $;
|
| 216 |
|
|
Name_Fixed_IO : constant Name_Id := N + $;
|
| 217 |
|
|
Name_Float_IO : constant Name_Id := N + $;
|
| 218 |
|
|
Name_Integer_IO : constant Name_Id := N + $;
|
| 219 |
|
|
Name_Modular_IO : constant Name_Id := N + $;
|
| 220 |
|
|
Last_Text_IO_Package : constant Name_Id := N + $;
|
| 221 |
|
|
|
| 222 |
|
|
subtype Text_IO_Package_Name is Name_Id
|
| 223 |
|
|
range First_Text_IO_Package .. Last_Text_IO_Package;
|
| 224 |
|
|
|
| 225 |
|
|
-- Names used by the analyzer and expander for aspect Dimension and
|
| 226 |
|
|
-- Dimension_System to deal with Sqrt and IO routines.
|
| 227 |
|
|
|
| 228 |
|
|
Name_Item : constant Name_Id := N + $; -- Ada 12
|
| 229 |
|
|
Name_Sqrt : constant Name_Id := N + $; -- Ada 12
|
| 230 |
|
|
Name_Symbols : constant Name_Id := N + $; -- Ada 12
|
| 231 |
|
|
|
| 232 |
|
|
-- Some miscellaneous names used for error detection/recovery
|
| 233 |
|
|
|
| 234 |
|
|
Name_Const : constant Name_Id := N + $;
|
| 235 |
|
|
Name_Error : constant Name_Id := N + $;
|
| 236 |
|
|
Name_Go : constant Name_Id := N + $;
|
| 237 |
|
|
Name_Put : constant Name_Id := N + $;
|
| 238 |
|
|
Name_Put_Line : constant Name_Id := N + $;
|
| 239 |
|
|
Name_To : constant Name_Id := N + $;
|
| 240 |
|
|
|
| 241 |
|
|
-- Name used by the integrated preprocessor
|
| 242 |
|
|
|
| 243 |
|
|
Name_Defined : constant Name_Id := N + $;
|
| 244 |
|
|
|
| 245 |
|
|
-- Names for packages that are treated specially by the compiler
|
| 246 |
|
|
|
| 247 |
|
|
Name_Exception_Traces : constant Name_Id := N + $;
|
| 248 |
|
|
Name_Finalization : constant Name_Id := N + $;
|
| 249 |
|
|
Name_Interfaces : constant Name_Id := N + $;
|
| 250 |
|
|
Name_Most_Recent_Exception : constant Name_Id := N + $;
|
| 251 |
|
|
Name_Standard : constant Name_Id := N + $;
|
| 252 |
|
|
Name_System : constant Name_Id := N + $;
|
| 253 |
|
|
Name_Text_IO : constant Name_Id := N + $;
|
| 254 |
|
|
Name_Wide_Text_IO : constant Name_Id := N + $;
|
| 255 |
|
|
Name_Wide_Wide_Text_IO : constant Name_Id := N + $;
|
| 256 |
|
|
|
| 257 |
|
|
-- Names of implementations of the distributed systems annex
|
| 258 |
|
|
|
| 259 |
|
|
First_PCS_Name : constant Name_Id := N + $;
|
| 260 |
|
|
Name_No_DSA : constant Name_Id := N + $;
|
| 261 |
|
|
Name_GARLIC_DSA : constant Name_Id := N + $;
|
| 262 |
|
|
Name_PolyORB_DSA : constant Name_Id := N + $;
|
| 263 |
|
|
Last_PCS_Name : constant Name_Id := N + $;
|
| 264 |
|
|
|
| 265 |
|
|
subtype PCS_Names is Name_Id
|
| 266 |
|
|
range First_PCS_Name .. Last_PCS_Name;
|
| 267 |
|
|
|
| 268 |
|
|
-- Names of identifiers used in expanding distribution stubs
|
| 269 |
|
|
|
| 270 |
|
|
Name_Addr : constant Name_Id := N + $;
|
| 271 |
|
|
Name_Async : constant Name_Id := N + $;
|
| 272 |
|
|
Name_Get_Active_Partition_ID : constant Name_Id := N + $;
|
| 273 |
|
|
Name_Get_RCI_Package_Receiver : constant Name_Id := N + $;
|
| 274 |
|
|
Name_Get_RCI_Package_Ref : constant Name_Id := N + $;
|
| 275 |
|
|
Name_Origin : constant Name_Id := N + $;
|
| 276 |
|
|
Name_Params : constant Name_Id := N + $;
|
| 277 |
|
|
Name_Partition : constant Name_Id := N + $;
|
| 278 |
|
|
Name_Partition_Interface : constant Name_Id := N + $;
|
| 279 |
|
|
Name_Ras : constant Name_Id := N + $;
|
| 280 |
|
|
Name_uCall : constant Name_Id := N + $;
|
| 281 |
|
|
Name_RCI_Name : constant Name_Id := N + $;
|
| 282 |
|
|
Name_Receiver : constant Name_Id := N + $;
|
| 283 |
|
|
Name_Rpc : constant Name_Id := N + $;
|
| 284 |
|
|
Name_Subp_Id : constant Name_Id := N + $;
|
| 285 |
|
|
Name_Operation : constant Name_Id := N + $;
|
| 286 |
|
|
Name_Argument : constant Name_Id := N + $;
|
| 287 |
|
|
Name_Arg_Modes : constant Name_Id := N + $;
|
| 288 |
|
|
Name_Handler : constant Name_Id := N + $;
|
| 289 |
|
|
Name_Target : constant Name_Id := N + $;
|
| 290 |
|
|
Name_Req : constant Name_Id := N + $;
|
| 291 |
|
|
Name_Obj_TypeCode : constant Name_Id := N + $;
|
| 292 |
|
|
Name_Stub : constant Name_Id := N + $;
|
| 293 |
|
|
|
| 294 |
|
|
-- Operator Symbol entries. The actual names have an upper case O at the
|
| 295 |
|
|
-- start in place of the Op_ prefix (e.g. the actual name that corresponds
|
| 296 |
|
|
-- to Name_Op_Abs is "Oabs".
|
| 297 |
|
|
|
| 298 |
|
|
First_Operator_Name : constant Name_Id := N + $;
|
| 299 |
|
|
Name_Op_Abs : constant Name_Id := N + $; -- "abs"
|
| 300 |
|
|
Name_Op_And : constant Name_Id := N + $; -- "and"
|
| 301 |
|
|
Name_Op_Mod : constant Name_Id := N + $; -- "mod"
|
| 302 |
|
|
Name_Op_Not : constant Name_Id := N + $; -- "not"
|
| 303 |
|
|
Name_Op_Or : constant Name_Id := N + $; -- "or"
|
| 304 |
|
|
Name_Op_Rem : constant Name_Id := N + $; -- "rem"
|
| 305 |
|
|
Name_Op_Xor : constant Name_Id := N + $; -- "xor"
|
| 306 |
|
|
Name_Op_Eq : constant Name_Id := N + $; -- "="
|
| 307 |
|
|
Name_Op_Ne : constant Name_Id := N + $; -- "/="
|
| 308 |
|
|
Name_Op_Lt : constant Name_Id := N + $; -- "<"
|
| 309 |
|
|
Name_Op_Le : constant Name_Id := N + $; -- "<="
|
| 310 |
|
|
Name_Op_Gt : constant Name_Id := N + $; -- ">"
|
| 311 |
|
|
Name_Op_Ge : constant Name_Id := N + $; -- ">="
|
| 312 |
|
|
Name_Op_Add : constant Name_Id := N + $; -- "+"
|
| 313 |
|
|
Name_Op_Subtract : constant Name_Id := N + $; -- "-"
|
| 314 |
|
|
Name_Op_Concat : constant Name_Id := N + $; -- "&"
|
| 315 |
|
|
Name_Op_Multiply : constant Name_Id := N + $; -- "*"
|
| 316 |
|
|
Name_Op_Divide : constant Name_Id := N + $; -- "/"
|
| 317 |
|
|
Name_Op_Expon : constant Name_Id := N + $; -- "**"
|
| 318 |
|
|
Last_Operator_Name : constant Name_Id := N + $;
|
| 319 |
|
|
|
| 320 |
|
|
-- Names for all pragmas recognized by GNAT. The entries with the comment
|
| 321 |
|
|
-- "Ada 83" are pragmas that are defined in Ada 83, but not in Ada 95.
|
| 322 |
|
|
-- These pragmas are fully implemented in all modes (Ada 83, Ada 95, and
|
| 323 |
|
|
-- Ada 2005). In Ada 95 and Ada 2005 modes, they are technically considered
|
| 324 |
|
|
-- to be implementation dependent pragmas.
|
| 325 |
|
|
|
| 326 |
|
|
-- The entries marked GNAT are pragmas that are defined by GNAT and that
|
| 327 |
|
|
-- are implemented in all modes (Ada 83, Ada 95, and Ada 2005) Complete
|
| 328 |
|
|
-- descriptions of the syntax of these implementation dependent pragmas may
|
| 329 |
|
|
-- be found in the appropriate section in unit Sem_Prag in file
|
| 330 |
|
|
-- sem-prag.adb, and they are documented in the GNAT reference manual.
|
| 331 |
|
|
|
| 332 |
|
|
-- The entries marked Ada 05 are Ada 2005 pragmas. They are implemented in
|
| 333 |
|
|
-- Ada 83 and Ada 95 mode as well, where they are technically considered to
|
| 334 |
|
|
-- be implementation dependent pragmas.
|
| 335 |
|
|
|
| 336 |
|
|
-- The entries marked Ada 12 are Ada 2012 pragmas. They are implemented in
|
| 337 |
|
|
-- Ada 83, Ada 95, and Ada 2005 mode as well, where they are technically
|
| 338 |
|
|
-- considered to be implementation dependent pragmas.
|
| 339 |
|
|
|
| 340 |
|
|
-- The entries marked VMS are VMS specific pragmas that are recognized only
|
| 341 |
|
|
-- in OpenVMS versions of GNAT. They are ignored in other versions with an
|
| 342 |
|
|
-- appropriate warning.
|
| 343 |
|
|
|
| 344 |
|
|
-- The entries marked AAMP are AAMP specific pragmas that are recognized
|
| 345 |
|
|
-- only in GNAT for the AAMP. They are ignored in other versions with
|
| 346 |
|
|
-- appropriate warnings.
|
| 347 |
|
|
|
| 348 |
|
|
First_Pragma_Name : constant Name_Id := N + $;
|
| 349 |
|
|
|
| 350 |
|
|
-- Configuration pragmas are grouped at start. Note that there is a list
|
| 351 |
|
|
-- of these names in the GNAT Users guide, be sure to update this list if
|
| 352 |
|
|
-- a new configuration pragma is added.
|
| 353 |
|
|
|
| 354 |
|
|
Name_Ada_83 : constant Name_Id := N + $; -- GNAT
|
| 355 |
|
|
Name_Ada_95 : constant Name_Id := N + $; -- GNAT
|
| 356 |
|
|
Name_Ada_05 : constant Name_Id := N + $; -- GNAT
|
| 357 |
|
|
Name_Ada_2005 : constant Name_Id := N + $; -- GNAT
|
| 358 |
|
|
Name_Ada_12 : constant Name_Id := N + $; -- GNAT
|
| 359 |
|
|
Name_Ada_2012 : constant Name_Id := N + $; -- GNAT
|
| 360 |
|
|
Name_Annotate : constant Name_Id := N + $; -- GNAT
|
| 361 |
|
|
Name_Assertion_Policy : constant Name_Id := N + $; -- Ada 05
|
| 362 |
|
|
Name_Assume_No_Invalid_Values : constant Name_Id := N + $; -- GNAT
|
| 363 |
|
|
Name_C_Pass_By_Copy : constant Name_Id := N + $; -- GNAT
|
| 364 |
|
|
Name_Check_Name : constant Name_Id := N + $; -- GNAT
|
| 365 |
|
|
Name_Check_Policy : constant Name_Id := N + $; -- GNAT
|
| 366 |
|
|
Name_Compile_Time_Error : constant Name_Id := N + $; -- GNAT
|
| 367 |
|
|
Name_Compile_Time_Warning : constant Name_Id := N + $; -- GNAT
|
| 368 |
|
|
Name_Compiler_Unit : constant Name_Id := N + $; -- GNAT
|
| 369 |
|
|
Name_Component_Alignment : constant Name_Id := N + $; -- GNAT
|
| 370 |
|
|
Name_Convention_Identifier : constant Name_Id := N + $; -- GNAT
|
| 371 |
|
|
Name_Debug_Policy : constant Name_Id := N + $; -- GNAT
|
| 372 |
|
|
Name_Detect_Blocking : constant Name_Id := N + $; -- Ada 05
|
| 373 |
|
|
Name_Default_Storage_Pool : constant Name_Id := N + $; -- Ada 12
|
| 374 |
|
|
Name_Disable_Atomic_Synchronization : constant Name_Id := N + $; -- GNAT
|
| 375 |
|
|
Name_Discard_Names : constant Name_Id := N + $;
|
| 376 |
|
|
Name_Dispatching_Domain : constant Name_Id := N + $; -- Ada 12
|
| 377 |
|
|
Name_Elaboration_Checks : constant Name_Id := N + $; -- GNAT
|
| 378 |
|
|
Name_Eliminate : constant Name_Id := N + $; -- GNAT
|
| 379 |
|
|
Name_Enable_Atomic_Synchronization : constant Name_Id := N + $; -- GNAT
|
| 380 |
|
|
Name_Extend_System : constant Name_Id := N + $; -- GNAT
|
| 381 |
|
|
Name_Extensions_Allowed : constant Name_Id := N + $; -- GNAT
|
| 382 |
|
|
Name_External_Name_Casing : constant Name_Id := N + $; -- GNAT
|
| 383 |
|
|
|
| 384 |
|
|
-- Note: Fast_Math is not in this list because its name matches the name of
|
| 385 |
|
|
-- the corresponding attribute. However, it is included in the definition
|
| 386 |
|
|
-- of the type Pragma_Id, and the functions Get_Pragma_Id,
|
| 387 |
|
|
-- Is_[Configuration_]Pragma_Id, and correctly recognize and process
|
| 388 |
|
|
-- Fast_Math.
|
| 389 |
|
|
|
| 390 |
|
|
Name_Favor_Top_Level : constant Name_Id := N + $; -- GNAT
|
| 391 |
|
|
Name_Float_Representation : constant Name_Id := N + $; -- GNAT
|
| 392 |
|
|
Name_Implicit_Packing : constant Name_Id := N + $; -- GNAT
|
| 393 |
|
|
Name_Initialize_Scalars : constant Name_Id := N + $; -- GNAT
|
| 394 |
|
|
Name_Interrupt_State : constant Name_Id := N + $; -- GNAT
|
| 395 |
|
|
Name_License : constant Name_Id := N + $; -- GNAT
|
| 396 |
|
|
Name_Locking_Policy : constant Name_Id := N + $;
|
| 397 |
|
|
Name_Long_Float : constant Name_Id := N + $; -- VMS
|
| 398 |
|
|
Name_No_Run_Time : constant Name_Id := N + $; -- GNAT
|
| 399 |
|
|
Name_No_Strict_Aliasing : constant Name_Id := N + $; -- GNAT
|
| 400 |
|
|
Name_Normalize_Scalars : constant Name_Id := N + $;
|
| 401 |
|
|
Name_Optimize_Alignment : constant Name_Id := N + $; -- GNAT
|
| 402 |
|
|
Name_Persistent_BSS : constant Name_Id := N + $; -- GNAT
|
| 403 |
|
|
Name_Polling : constant Name_Id := N + $; -- GNAT
|
| 404 |
|
|
Name_Priority_Specific_Dispatching : constant Name_Id := N + $; -- Ada 05
|
| 405 |
|
|
Name_Profile : constant Name_Id := N + $; -- Ada 05
|
| 406 |
|
|
Name_Profile_Warnings : constant Name_Id := N + $; -- GNAT
|
| 407 |
|
|
Name_Propagate_Exceptions : constant Name_Id := N + $; -- GNAT
|
| 408 |
|
|
Name_Queuing_Policy : constant Name_Id := N + $;
|
| 409 |
|
|
Name_Ravenscar : constant Name_Id := N + $; -- GNAT
|
| 410 |
|
|
Name_Restricted_Run_Time : constant Name_Id := N + $; -- GNAT
|
| 411 |
|
|
Name_Restrictions : constant Name_Id := N + $;
|
| 412 |
|
|
Name_Restriction_Warnings : constant Name_Id := N + $; -- GNAT
|
| 413 |
|
|
Name_Reviewable : constant Name_Id := N + $;
|
| 414 |
|
|
Name_Short_Circuit_And_Or : constant Name_Id := N + $; -- GNAT
|
| 415 |
|
|
Name_Short_Descriptors : constant Name_Id := N + $; -- GNAT
|
| 416 |
|
|
Name_Source_File_Name : constant Name_Id := N + $; -- GNAT
|
| 417 |
|
|
Name_Source_File_Name_Project : constant Name_Id := N + $; -- GNAT
|
| 418 |
|
|
Name_Style_Checks : constant Name_Id := N + $; -- GNAT
|
| 419 |
|
|
Name_Suppress : constant Name_Id := N + $;
|
| 420 |
|
|
Name_Suppress_Exception_Locations : constant Name_Id := N + $; -- GNAT
|
| 421 |
|
|
Name_Task_Dispatching_Policy : constant Name_Id := N + $;
|
| 422 |
|
|
Name_Universal_Data : constant Name_Id := N + $; -- AAMP
|
| 423 |
|
|
Name_Unsuppress : constant Name_Id := N + $; -- Ada 05
|
| 424 |
|
|
Name_Use_VADS_Size : constant Name_Id := N + $; -- GNAT
|
| 425 |
|
|
Name_Validity_Checks : constant Name_Id := N + $; -- GNAT
|
| 426 |
|
|
Name_Warnings : constant Name_Id := N + $; -- GNAT
|
| 427 |
|
|
Name_Wide_Character_Encoding : constant Name_Id := N + $; -- GNAT
|
| 428 |
|
|
Last_Configuration_Pragma_Name : constant Name_Id := N + $;
|
| 429 |
|
|
|
| 430 |
|
|
-- Remaining pragma names
|
| 431 |
|
|
|
| 432 |
|
|
Name_Abort_Defer : constant Name_Id := N + $; -- GNAT
|
| 433 |
|
|
Name_All_Calls_Remote : constant Name_Id := N + $;
|
| 434 |
|
|
|
| 435 |
|
|
-- Note: AST_Entry is not in this list because its name matches the name of
|
| 436 |
|
|
-- the corresponding attribute. However, it is included in the definition
|
| 437 |
|
|
-- of the type Pragma_Id, and the functions Get_Pragma_Id and Is_Pragma_Id
|
| 438 |
|
|
-- correctly recognize and process Name_AST_Entry.
|
| 439 |
|
|
|
| 440 |
|
|
Name_Assert : constant Name_Id := N + $; -- Ada 05
|
| 441 |
|
|
Name_Asynchronous : constant Name_Id := N + $;
|
| 442 |
|
|
Name_Atomic : constant Name_Id := N + $;
|
| 443 |
|
|
Name_Atomic_Components : constant Name_Id := N + $;
|
| 444 |
|
|
Name_Attach_Handler : constant Name_Id := N + $;
|
| 445 |
|
|
Name_Check : constant Name_Id := N + $; -- GNAT
|
| 446 |
|
|
Name_CIL_Constructor : constant Name_Id := N + $; -- GNAT
|
| 447 |
|
|
Name_Comment : constant Name_Id := N + $; -- GNAT
|
| 448 |
|
|
Name_Common_Object : constant Name_Id := N + $; -- GNAT
|
| 449 |
|
|
Name_Complete_Representation : constant Name_Id := N + $; -- GNAT
|
| 450 |
|
|
Name_Complex_Representation : constant Name_Id := N + $; -- GNAT
|
| 451 |
|
|
Name_Controlled : constant Name_Id := N + $;
|
| 452 |
|
|
Name_Convention : constant Name_Id := N + $;
|
| 453 |
|
|
Name_CPP_Class : constant Name_Id := N + $; -- GNAT
|
| 454 |
|
|
Name_CPP_Constructor : constant Name_Id := N + $; -- GNAT
|
| 455 |
|
|
Name_CPP_Virtual : constant Name_Id := N + $; -- GNAT
|
| 456 |
|
|
Name_CPP_Vtable : constant Name_Id := N + $; -- GNAT
|
| 457 |
|
|
Name_CPU : constant Name_Id := N + $; -- Ada 12
|
| 458 |
|
|
Name_Debug : constant Name_Id := N + $; -- GNAT
|
| 459 |
|
|
Name_Elaborate : constant Name_Id := N + $; -- Ada 83
|
| 460 |
|
|
Name_Elaborate_All : constant Name_Id := N + $;
|
| 461 |
|
|
Name_Elaborate_Body : constant Name_Id := N + $;
|
| 462 |
|
|
Name_Export : constant Name_Id := N + $;
|
| 463 |
|
|
Name_Export_Exception : constant Name_Id := N + $; -- VMS
|
| 464 |
|
|
Name_Export_Function : constant Name_Id := N + $; -- GNAT
|
| 465 |
|
|
Name_Export_Object : constant Name_Id := N + $; -- GNAT
|
| 466 |
|
|
Name_Export_Procedure : constant Name_Id := N + $; -- GNAT
|
| 467 |
|
|
Name_Export_Value : constant Name_Id := N + $; -- GNAT
|
| 468 |
|
|
Name_Export_Valued_Procedure : constant Name_Id := N + $; -- GNAT
|
| 469 |
|
|
Name_External : constant Name_Id := N + $; -- GNAT
|
| 470 |
|
|
Name_Finalize_Storage_Only : constant Name_Id := N + $; -- GNAT
|
| 471 |
|
|
Name_Ident : constant Name_Id := N + $; -- VMS
|
| 472 |
|
|
Name_Implementation_Defined : constant Name_Id := N + $; -- GNAT
|
| 473 |
|
|
Name_Implemented : constant Name_Id := N + $; -- Ada 12
|
| 474 |
|
|
Name_Import : constant Name_Id := N + $;
|
| 475 |
|
|
Name_Import_Exception : constant Name_Id := N + $; -- VMS
|
| 476 |
|
|
Name_Import_Function : constant Name_Id := N + $; -- GNAT
|
| 477 |
|
|
Name_Import_Object : constant Name_Id := N + $; -- GNAT
|
| 478 |
|
|
Name_Import_Procedure : constant Name_Id := N + $; -- GNAT
|
| 479 |
|
|
Name_Import_Valued_Procedure : constant Name_Id := N + $; -- GNAT
|
| 480 |
|
|
Name_Independent : constant Name_Id := N + $; -- Ada 12
|
| 481 |
|
|
Name_Independent_Components : constant Name_Id := N + $; -- Ada 12
|
| 482 |
|
|
Name_Inline : constant Name_Id := N + $;
|
| 483 |
|
|
Name_Inline_Always : constant Name_Id := N + $; -- GNAT
|
| 484 |
|
|
Name_Inline_Generic : constant Name_Id := N + $; -- GNAT
|
| 485 |
|
|
Name_Inspection_Point : constant Name_Id := N + $;
|
| 486 |
|
|
|
| 487 |
|
|
-- Note: Interface is not in this list because its name matches an Ada 05
|
| 488 |
|
|
-- keyword. However it is included in the definition of the type
|
| 489 |
|
|
-- Attribute_Id, and the functions Get_Pragma_Id and Is_Pragma_Id correctly
|
| 490 |
|
|
-- recognize and process Name_Storage_Size.
|
| 491 |
|
|
|
| 492 |
|
|
Name_Interface_Name : constant Name_Id := N + $; -- GNAT
|
| 493 |
|
|
Name_Interrupt_Handler : constant Name_Id := N + $;
|
| 494 |
|
|
Name_Interrupt_Priority : constant Name_Id := N + $;
|
| 495 |
|
|
Name_Invariant : constant Name_Id := N + $; -- GNAT
|
| 496 |
|
|
Name_Java_Constructor : constant Name_Id := N + $; -- GNAT
|
| 497 |
|
|
Name_Java_Interface : constant Name_Id := N + $; -- GNAT
|
| 498 |
|
|
Name_Keep_Names : constant Name_Id := N + $; -- GNAT
|
| 499 |
|
|
Name_Link_With : constant Name_Id := N + $; -- GNAT
|
| 500 |
|
|
Name_Linker_Alias : constant Name_Id := N + $; -- GNAT
|
| 501 |
|
|
Name_Linker_Constructor : constant Name_Id := N + $; -- GNAT
|
| 502 |
|
|
Name_Linker_Destructor : constant Name_Id := N + $; -- GNAT
|
| 503 |
|
|
Name_Linker_Options : constant Name_Id := N + $;
|
| 504 |
|
|
Name_Linker_Section : constant Name_Id := N + $; -- GNAT
|
| 505 |
|
|
Name_List : constant Name_Id := N + $;
|
| 506 |
|
|
Name_Machine_Attribute : constant Name_Id := N + $; -- GNAT
|
| 507 |
|
|
Name_Main : constant Name_Id := N + $; -- GNAT
|
| 508 |
|
|
Name_Main_Storage : constant Name_Id := N + $; -- GNAT
|
| 509 |
|
|
Name_Memory_Size : constant Name_Id := N + $; -- Ada 83
|
| 510 |
|
|
Name_No_Body : constant Name_Id := N + $; -- GNAT
|
| 511 |
|
|
Name_No_Return : constant Name_Id := N + $; -- Ada 05
|
| 512 |
|
|
Name_Obsolescent : constant Name_Id := N + $; -- GNAT
|
| 513 |
|
|
Name_Optimize : constant Name_Id := N + $;
|
| 514 |
|
|
Name_Ordered : constant Name_Id := N + $; -- GNAT
|
| 515 |
|
|
Name_Pack : constant Name_Id := N + $;
|
| 516 |
|
|
Name_Page : constant Name_Id := N + $;
|
| 517 |
|
|
Name_Passive : constant Name_Id := N + $; -- GNAT
|
| 518 |
|
|
Name_Postcondition : constant Name_Id := N + $; -- GNAT
|
| 519 |
|
|
Name_Precondition : constant Name_Id := N + $; -- GNAT
|
| 520 |
|
|
Name_Predicate : constant Name_Id := N + $; -- GNAT
|
| 521 |
|
|
Name_Preelaborable_Initialization : constant Name_Id := N + $; -- Ada 05
|
| 522 |
|
|
Name_Preelaborate : constant Name_Id := N + $;
|
| 523 |
|
|
Name_Preelaborate_05 : constant Name_Id := N + $; -- GNAT
|
| 524 |
|
|
|
| 525 |
|
|
-- Note: Priority is not in this list because its name matches the name of
|
| 526 |
|
|
-- the corresponding attribute. However, it is included in the definition
|
| 527 |
|
|
-- of the type Pragma_Id, and the functions Get_Pragma_Id and Is_Pragma_Id
|
| 528 |
|
|
-- correctly recognize and process Priority. Priority is a standard Ada 95
|
| 529 |
|
|
-- pragma.
|
| 530 |
|
|
|
| 531 |
|
|
Name_Psect_Object : constant Name_Id := N + $; -- VMS
|
| 532 |
|
|
Name_Pure : constant Name_Id := N + $;
|
| 533 |
|
|
Name_Pure_05 : constant Name_Id := N + $; -- GNAT
|
| 534 |
|
|
Name_Pure_12 : constant Name_Id := N + $; -- GNAT
|
| 535 |
|
|
Name_Pure_Function : constant Name_Id := N + $; -- GNAT
|
| 536 |
|
|
Name_Relative_Deadline : constant Name_Id := N + $; -- Ada 05
|
| 537 |
|
|
Name_Remote_Access_Type : constant Name_Id := N + $; -- GNAT
|
| 538 |
|
|
Name_Remote_Call_Interface : constant Name_Id := N + $;
|
| 539 |
|
|
Name_Remote_Types : constant Name_Id := N + $;
|
| 540 |
|
|
Name_Share_Generic : constant Name_Id := N + $; -- GNAT
|
| 541 |
|
|
Name_Shared : constant Name_Id := N + $; -- Ada 83
|
| 542 |
|
|
Name_Shared_Passive : constant Name_Id := N + $;
|
| 543 |
|
|
Name_Simple_Storage_Pool_Type : constant Name_Id := N + $; -- GNAT
|
| 544 |
|
|
|
| 545 |
|
|
-- Note: Storage_Size is not in this list because its name matches the name
|
| 546 |
|
|
-- of the corresponding attribute. However, it is included in the
|
| 547 |
|
|
-- definition of the type Attribute_Id, and the functions Get_Pragma_Id and
|
| 548 |
|
|
-- Is_Pragma_Id correctly recognize and process Name_Storage_Size.
|
| 549 |
|
|
|
| 550 |
|
|
-- Note: Storage_Unit is also omitted from the list because of a clash with
|
| 551 |
|
|
-- an attribute name, and is treated similarly.
|
| 552 |
|
|
|
| 553 |
|
|
Name_Source_Reference : constant Name_Id := N + $; -- GNAT
|
| 554 |
|
|
Name_Static_Elaboration_Desired : constant Name_Id := N + $; -- GNAT
|
| 555 |
|
|
Name_Stream_Convert : constant Name_Id := N + $; -- GNAT
|
| 556 |
|
|
Name_Subtitle : constant Name_Id := N + $; -- GNAT
|
| 557 |
|
|
Name_Suppress_All : constant Name_Id := N + $; -- GNAT
|
| 558 |
|
|
Name_Suppress_Debug_Info : constant Name_Id := N + $; -- GNAT
|
| 559 |
|
|
Name_Suppress_Initialization : constant Name_Id := N + $; -- GNAT
|
| 560 |
|
|
Name_System_Name : constant Name_Id := N + $; -- Ada 83
|
| 561 |
|
|
Name_Test_Case : constant Name_Id := N + $; -- GNAT
|
| 562 |
|
|
Name_Task_Info : constant Name_Id := N + $; -- GNAT
|
| 563 |
|
|
Name_Task_Name : constant Name_Id := N + $; -- GNAT
|
| 564 |
|
|
Name_Task_Storage : constant Name_Id := N + $; -- VMS
|
| 565 |
|
|
Name_Thread_Local_Storage : constant Name_Id := N + $; -- GNAT
|
| 566 |
|
|
Name_Time_Slice : constant Name_Id := N + $; -- GNAT
|
| 567 |
|
|
Name_Title : constant Name_Id := N + $; -- GNAT
|
| 568 |
|
|
Name_Unchecked_Union : constant Name_Id := N + $; -- Ada 05
|
| 569 |
|
|
Name_Unimplemented_Unit : constant Name_Id := N + $; -- GNAT
|
| 570 |
|
|
Name_Universal_Aliasing : constant Name_Id := N + $; -- GNAT
|
| 571 |
|
|
Name_Unmodified : constant Name_Id := N + $; -- GNAT
|
| 572 |
|
|
Name_Unreferenced : constant Name_Id := N + $; -- GNAT
|
| 573 |
|
|
Name_Unreferenced_Objects : constant Name_Id := N + $; -- GNAT
|
| 574 |
|
|
Name_Unreserve_All_Interrupts : constant Name_Id := N + $; -- GNAT
|
| 575 |
|
|
Name_Volatile : constant Name_Id := N + $;
|
| 576 |
|
|
Name_Volatile_Components : constant Name_Id := N + $;
|
| 577 |
|
|
Name_Weak_External : constant Name_Id := N + $; -- GNAT
|
| 578 |
|
|
Last_Pragma_Name : constant Name_Id := N + $;
|
| 579 |
|
|
|
| 580 |
|
|
-- Language convention names for pragma Convention/Export/Import/Interface
|
| 581 |
|
|
-- Note that Name_C is not included in this list, since it was already
|
| 582 |
|
|
-- declared earlier in the context of one-character identifier names (where
|
| 583 |
|
|
-- the order is critical to the fast look up process).
|
| 584 |
|
|
|
| 585 |
|
|
-- Note: there are no convention names corresponding to the conventions
|
| 586 |
|
|
-- Entry and Protected, this is because these conventions cannot be
|
| 587 |
|
|
-- specified by a pragma.
|
| 588 |
|
|
|
| 589 |
|
|
First_Convention_Name : constant Name_Id := N + $;
|
| 590 |
|
|
Name_Ada : constant Name_Id := N + $;
|
| 591 |
|
|
Name_Ada_Pass_By_Copy : constant Name_Id := N + $;
|
| 592 |
|
|
Name_Ada_Pass_By_Reference : constant Name_Id := N + $;
|
| 593 |
|
|
Name_Assembler : constant Name_Id := N + $;
|
| 594 |
|
|
Name_CIL : constant Name_Id := N + $;
|
| 595 |
|
|
Name_COBOL : constant Name_Id := N + $;
|
| 596 |
|
|
Name_CPP : constant Name_Id := N + $;
|
| 597 |
|
|
Name_Fortran : constant Name_Id := N + $;
|
| 598 |
|
|
Name_Intrinsic : constant Name_Id := N + $;
|
| 599 |
|
|
Name_Java : constant Name_Id := N + $;
|
| 600 |
|
|
Name_Stdcall : constant Name_Id := N + $;
|
| 601 |
|
|
Name_Stubbed : constant Name_Id := N + $;
|
| 602 |
|
|
Last_Convention_Name : constant Name_Id := N + $;
|
| 603 |
|
|
|
| 604 |
|
|
-- The following names are preset as synonyms for Assembler
|
| 605 |
|
|
|
| 606 |
|
|
Name_Asm : constant Name_Id := N + $;
|
| 607 |
|
|
Name_Assembly : constant Name_Id := N + $;
|
| 608 |
|
|
|
| 609 |
|
|
-- The following names are preset as synonyms for C
|
| 610 |
|
|
|
| 611 |
|
|
Name_Default : constant Name_Id := N + $;
|
| 612 |
|
|
-- Name_External (previously defined as pragma)
|
| 613 |
|
|
|
| 614 |
|
|
-- The following names are preset as synonyms for CPP
|
| 615 |
|
|
|
| 616 |
|
|
Name_C_Plus_Plus : constant Name_Id := N + $;
|
| 617 |
|
|
|
| 618 |
|
|
-- The following names are present as synonyms for Stdcall
|
| 619 |
|
|
|
| 620 |
|
|
Name_DLL : constant Name_Id := N + $;
|
| 621 |
|
|
Name_Win32 : constant Name_Id := N + $;
|
| 622 |
|
|
|
| 623 |
|
|
-- Other special names used in processing pragmas
|
| 624 |
|
|
|
| 625 |
|
|
Name_As_Is : constant Name_Id := N + $;
|
| 626 |
|
|
Name_Assertion : constant Name_Id := N + $;
|
| 627 |
|
|
Name_Attribute_Name : constant Name_Id := N + $;
|
| 628 |
|
|
Name_Body_File_Name : constant Name_Id := N + $;
|
| 629 |
|
|
Name_Boolean_Entry_Barriers : constant Name_Id := N + $;
|
| 630 |
|
|
Name_By_Any : constant Name_Id := N + $;
|
| 631 |
|
|
Name_By_Entry : constant Name_Id := N + $;
|
| 632 |
|
|
Name_By_Protected_Procedure : constant Name_Id := N + $;
|
| 633 |
|
|
Name_Casing : constant Name_Id := N + $;
|
| 634 |
|
|
Name_Code : constant Name_Id := N + $;
|
| 635 |
|
|
Name_Component : constant Name_Id := N + $;
|
| 636 |
|
|
Name_Component_Size_4 : constant Name_Id := N + $;
|
| 637 |
|
|
Name_Copy : constant Name_Id := N + $;
|
| 638 |
|
|
Name_D_Float : constant Name_Id := N + $;
|
| 639 |
|
|
Name_Descriptor : constant Name_Id := N + $;
|
| 640 |
|
|
Name_Disable : constant Name_Id := N + $;
|
| 641 |
|
|
Name_Dot_Replacement : constant Name_Id := N + $;
|
| 642 |
|
|
Name_Dynamic : constant Name_Id := N + $;
|
| 643 |
|
|
Name_Ensures : constant Name_Id := N + $;
|
| 644 |
|
|
Name_Entity : constant Name_Id := N + $;
|
| 645 |
|
|
Name_Entry_Count : constant Name_Id := N + $;
|
| 646 |
|
|
Name_External_Name : constant Name_Id := N + $;
|
| 647 |
|
|
Name_First_Optional_Parameter : constant Name_Id := N + $;
|
| 648 |
|
|
Name_Force : constant Name_Id := N + $;
|
| 649 |
|
|
Name_Form : constant Name_Id := N + $;
|
| 650 |
|
|
Name_G_Float : constant Name_Id := N + $;
|
| 651 |
|
|
Name_Gcc : constant Name_Id := N + $;
|
| 652 |
|
|
Name_Gnat : constant Name_Id := N + $;
|
| 653 |
|
|
Name_GPL : constant Name_Id := N + $;
|
| 654 |
|
|
Name_IEEE_Float : constant Name_Id := N + $;
|
| 655 |
|
|
Name_Ignore : constant Name_Id := N + $;
|
| 656 |
|
|
Name_Info : constant Name_Id := N + $;
|
| 657 |
|
|
Name_Internal : constant Name_Id := N + $;
|
| 658 |
|
|
Name_Link_Name : constant Name_Id := N + $;
|
| 659 |
|
|
Name_Lowercase : constant Name_Id := N + $;
|
| 660 |
|
|
Name_Max_Entry_Queue_Depth : constant Name_Id := N + $;
|
| 661 |
|
|
Name_Max_Entry_Queue_Length : constant Name_Id := N + $;
|
| 662 |
|
|
Name_Max_Size : constant Name_Id := N + $;
|
| 663 |
|
|
Name_Mechanism : constant Name_Id := N + $;
|
| 664 |
|
|
Name_Message : constant Name_Id := N + $;
|
| 665 |
|
|
Name_Mixedcase : constant Name_Id := N + $;
|
| 666 |
|
|
Name_Mode : constant Name_Id := N + $;
|
| 667 |
|
|
Name_Modified_GPL : constant Name_Id := N + $;
|
| 668 |
|
|
Name_Name : constant Name_Id := N + $;
|
| 669 |
|
|
Name_NCA : constant Name_Id := N + $;
|
| 670 |
|
|
Name_No : constant Name_Id := N + $;
|
| 671 |
|
|
Name_No_Dependence : constant Name_Id := N + $;
|
| 672 |
|
|
Name_No_Dynamic_Attachment : constant Name_Id := N + $;
|
| 673 |
|
|
Name_No_Dynamic_Interrupts : constant Name_Id := N + $;
|
| 674 |
|
|
Name_No_Implementation_Extensions : constant Name_Id := N + $;
|
| 675 |
|
|
Name_No_Requeue : constant Name_Id := N + $;
|
| 676 |
|
|
Name_No_Requeue_Statements : constant Name_Id := N + $;
|
| 677 |
|
|
Name_No_Specification_Of_Aspect : constant Name_Id := N + $;
|
| 678 |
|
|
Name_No_Task_Attributes : constant Name_Id := N + $;
|
| 679 |
|
|
Name_No_Task_Attributes_Package : constant Name_Id := N + $;
|
| 680 |
|
|
Name_Nominal : constant Name_Id := N + $;
|
| 681 |
|
|
Name_On : constant Name_Id := N + $;
|
| 682 |
|
|
Name_Optional : constant Name_Id := N + $;
|
| 683 |
|
|
Name_Policy : constant Name_Id := N + $;
|
| 684 |
|
|
Name_Parameter_Types : constant Name_Id := N + $;
|
| 685 |
|
|
Name_Reference : constant Name_Id := N + $;
|
| 686 |
|
|
Name_Requires : constant Name_Id := N + $;
|
| 687 |
|
|
Name_Restricted : constant Name_Id := N + $;
|
| 688 |
|
|
Name_Result_Mechanism : constant Name_Id := N + $;
|
| 689 |
|
|
Name_Result_Type : constant Name_Id := N + $;
|
| 690 |
|
|
Name_Robustness : constant Name_Id := N + $;
|
| 691 |
|
|
Name_Runtime : constant Name_Id := N + $;
|
| 692 |
|
|
Name_SB : constant Name_Id := N + $;
|
| 693 |
|
|
Name_Secondary_Stack_Size : constant Name_Id := N + $;
|
| 694 |
|
|
Name_Section : constant Name_Id := N + $;
|
| 695 |
|
|
Name_Semaphore : constant Name_Id := N + $;
|
| 696 |
|
|
Name_Short_Descriptor : constant Name_Id := N + $;
|
| 697 |
|
|
Name_Simple_Barriers : constant Name_Id := N + $;
|
| 698 |
|
|
Name_Spec_File_Name : constant Name_Id := N + $;
|
| 699 |
|
|
Name_State : constant Name_Id := N + $;
|
| 700 |
|
|
Name_Static : constant Name_Id := N + $;
|
| 701 |
|
|
Name_Stack_Size : constant Name_Id := N + $;
|
| 702 |
|
|
Name_Subunit_File_Name : constant Name_Id := N + $;
|
| 703 |
|
|
Name_Task_Stack_Size_Default : constant Name_Id := N + $;
|
| 704 |
|
|
Name_Task_Type : constant Name_Id := N + $;
|
| 705 |
|
|
Name_Time_Slicing_Enabled : constant Name_Id := N + $;
|
| 706 |
|
|
Name_Top_Guard : constant Name_Id := N + $;
|
| 707 |
|
|
Name_UBA : constant Name_Id := N + $;
|
| 708 |
|
|
Name_UBS : constant Name_Id := N + $;
|
| 709 |
|
|
Name_UBSB : constant Name_Id := N + $;
|
| 710 |
|
|
Name_Unit_Name : constant Name_Id := N + $;
|
| 711 |
|
|
Name_Unknown : constant Name_Id := N + $;
|
| 712 |
|
|
Name_Unrestricted : constant Name_Id := N + $;
|
| 713 |
|
|
Name_Uppercase : constant Name_Id := N + $;
|
| 714 |
|
|
Name_User : constant Name_Id := N + $;
|
| 715 |
|
|
Name_VAX_Float : constant Name_Id := N + $;
|
| 716 |
|
|
Name_VMS : constant Name_Id := N + $;
|
| 717 |
|
|
Name_Vtable_Ptr : constant Name_Id := N + $;
|
| 718 |
|
|
Name_Working_Storage : constant Name_Id := N + $;
|
| 719 |
|
|
|
| 720 |
|
|
-- Names of recognized attributes. The entries with the comment "Ada 83"
|
| 721 |
|
|
-- are attributes that are defined in Ada 83, but not in Ada 95. These
|
| 722 |
|
|
-- attributes are implemented in both Ada 83 and Ada 95 modes in GNAT.
|
| 723 |
|
|
|
| 724 |
|
|
-- The entries marked GNAT are attributes that are defined by GNAT and
|
| 725 |
|
|
-- implemented in both Ada 83 and Ada 95 modes. Full descriptions of these
|
| 726 |
|
|
-- implementation dependent attributes may be found in the appropriate
|
| 727 |
|
|
-- section in Sem_Attr.
|
| 728 |
|
|
|
| 729 |
|
|
-- The entries marked VMS are recognized only in OpenVMS implementations
|
| 730 |
|
|
-- of GNAT, and are treated as illegal in all other contexts.
|
| 731 |
|
|
|
| 732 |
|
|
First_Attribute_Name : constant Name_Id := N + $;
|
| 733 |
|
|
Name_Abort_Signal : constant Name_Id := N + $; -- GNAT
|
| 734 |
|
|
Name_Access : constant Name_Id := N + $;
|
| 735 |
|
|
Name_Address : constant Name_Id := N + $;
|
| 736 |
|
|
Name_Address_Size : constant Name_Id := N + $; -- GNAT
|
| 737 |
|
|
Name_Aft : constant Name_Id := N + $;
|
| 738 |
|
|
Name_Alignment : constant Name_Id := N + $;
|
| 739 |
|
|
Name_Asm_Input : constant Name_Id := N + $; -- GNAT
|
| 740 |
|
|
Name_Asm_Output : constant Name_Id := N + $; -- GNAT
|
| 741 |
|
|
Name_AST_Entry : constant Name_Id := N + $; -- VMS
|
| 742 |
|
|
Name_Bit : constant Name_Id := N + $; -- GNAT
|
| 743 |
|
|
Name_Bit_Order : constant Name_Id := N + $;
|
| 744 |
|
|
Name_Bit_Position : constant Name_Id := N + $; -- GNAT
|
| 745 |
|
|
Name_Body_Version : constant Name_Id := N + $;
|
| 746 |
|
|
Name_Callable : constant Name_Id := N + $;
|
| 747 |
|
|
Name_Caller : constant Name_Id := N + $;
|
| 748 |
|
|
Name_Code_Address : constant Name_Id := N + $; -- GNAT
|
| 749 |
|
|
Name_Compiler_Version : constant Name_Id := N + $; -- GNAT
|
| 750 |
|
|
Name_Component_Size : constant Name_Id := N + $;
|
| 751 |
|
|
Name_Compose : constant Name_Id := N + $;
|
| 752 |
|
|
Name_Constant_Indexing : constant Name_Id := N + $; -- GNAT
|
| 753 |
|
|
Name_Constrained : constant Name_Id := N + $;
|
| 754 |
|
|
Name_Count : constant Name_Id := N + $;
|
| 755 |
|
|
Name_Default_Bit_Order : constant Name_Id := N + $; -- GNAT
|
| 756 |
|
|
Name_Default_Iterator : constant Name_Id := N + $; -- GNAT
|
| 757 |
|
|
Name_Definite : constant Name_Id := N + $;
|
| 758 |
|
|
Name_Delta : constant Name_Id := N + $;
|
| 759 |
|
|
Name_Denorm : constant Name_Id := N + $;
|
| 760 |
|
|
Name_Descriptor_Size : constant Name_Id := N + $;
|
| 761 |
|
|
Name_Digits : constant Name_Id := N + $;
|
| 762 |
|
|
Name_Elaborated : constant Name_Id := N + $; -- GNAT
|
| 763 |
|
|
Name_Emax : constant Name_Id := N + $; -- Ada 83
|
| 764 |
|
|
Name_Enabled : constant Name_Id := N + $; -- GNAT
|
| 765 |
|
|
Name_Enum_Rep : constant Name_Id := N + $; -- GNAT
|
| 766 |
|
|
Name_Enum_Val : constant Name_Id := N + $; -- GNAT
|
| 767 |
|
|
Name_Epsilon : constant Name_Id := N + $; -- Ada 83
|
| 768 |
|
|
Name_Exponent : constant Name_Id := N + $;
|
| 769 |
|
|
Name_External_Tag : constant Name_Id := N + $;
|
| 770 |
|
|
Name_Fast_Math : constant Name_Id := N + $; -- GNAT
|
| 771 |
|
|
Name_First : constant Name_Id := N + $;
|
| 772 |
|
|
Name_First_Bit : constant Name_Id := N + $;
|
| 773 |
|
|
Name_Fixed_Value : constant Name_Id := N + $; -- GNAT
|
| 774 |
|
|
Name_Fore : constant Name_Id := N + $;
|
| 775 |
|
|
Name_Has_Access_Values : constant Name_Id := N + $; -- GNAT
|
| 776 |
|
|
Name_Has_Discriminants : constant Name_Id := N + $; -- GNAT
|
| 777 |
|
|
Name_Has_Tagged_Values : constant Name_Id := N + $; -- GNAT
|
| 778 |
|
|
Name_Identity : constant Name_Id := N + $;
|
| 779 |
|
|
Name_Img : constant Name_Id := N + $; -- GNAT
|
| 780 |
|
|
Name_Implicit_Dereference : constant Name_Id := N + $; -- GNAT
|
| 781 |
|
|
Name_Integer_Value : constant Name_Id := N + $; -- GNAT
|
| 782 |
|
|
Name_Invalid_Value : constant Name_Id := N + $; -- GNAT
|
| 783 |
|
|
Name_Iterator_Element : constant Name_Id := N + $; -- GNAT
|
| 784 |
|
|
Name_Large : constant Name_Id := N + $; -- Ada 83
|
| 785 |
|
|
Name_Last : constant Name_Id := N + $;
|
| 786 |
|
|
Name_Last_Bit : constant Name_Id := N + $;
|
| 787 |
|
|
Name_Leading_Part : constant Name_Id := N + $;
|
| 788 |
|
|
Name_Length : constant Name_Id := N + $;
|
| 789 |
|
|
Name_Machine_Emax : constant Name_Id := N + $;
|
| 790 |
|
|
Name_Machine_Emin : constant Name_Id := N + $;
|
| 791 |
|
|
Name_Machine_Mantissa : constant Name_Id := N + $;
|
| 792 |
|
|
Name_Machine_Overflows : constant Name_Id := N + $;
|
| 793 |
|
|
Name_Machine_Radix : constant Name_Id := N + $;
|
| 794 |
|
|
Name_Machine_Rounding : constant Name_Id := N + $; -- Ada 05
|
| 795 |
|
|
Name_Machine_Rounds : constant Name_Id := N + $;
|
| 796 |
|
|
Name_Machine_Size : constant Name_Id := N + $; -- GNAT
|
| 797 |
|
|
Name_Mantissa : constant Name_Id := N + $; -- Ada 83
|
| 798 |
|
|
Name_Max_Alignment_For_Allocation : constant Name_Id := N + $; -- Ada 12
|
| 799 |
|
|
Name_Max_Size_In_Storage_Elements : constant Name_Id := N + $;
|
| 800 |
|
|
Name_Maximum_Alignment : constant Name_Id := N + $; -- GNAT
|
| 801 |
|
|
Name_Mechanism_Code : constant Name_Id := N + $; -- GNAT
|
| 802 |
|
|
Name_Mod : constant Name_Id := N + $; -- Ada 05
|
| 803 |
|
|
Name_Model_Emin : constant Name_Id := N + $;
|
| 804 |
|
|
Name_Model_Epsilon : constant Name_Id := N + $;
|
| 805 |
|
|
Name_Model_Mantissa : constant Name_Id := N + $;
|
| 806 |
|
|
Name_Model_Small : constant Name_Id := N + $;
|
| 807 |
|
|
Name_Modulus : constant Name_Id := N + $;
|
| 808 |
|
|
Name_Null_Parameter : constant Name_Id := N + $; -- GNAT
|
| 809 |
|
|
Name_Object_Size : constant Name_Id := N + $; -- GNAT
|
| 810 |
|
|
Name_Old : constant Name_Id := N + $; -- GNAT
|
| 811 |
|
|
Name_Overlaps_Storage : constant Name_Id := N + $; -- GNAT
|
| 812 |
|
|
Name_Partition_ID : constant Name_Id := N + $;
|
| 813 |
|
|
Name_Passed_By_Reference : constant Name_Id := N + $; -- GNAT
|
| 814 |
|
|
Name_Pool_Address : constant Name_Id := N + $;
|
| 815 |
|
|
Name_Pos : constant Name_Id := N + $;
|
| 816 |
|
|
Name_Position : constant Name_Id := N + $;
|
| 817 |
|
|
Name_Priority : constant Name_Id := N + $; -- Ada 05
|
| 818 |
|
|
Name_Range : constant Name_Id := N + $;
|
| 819 |
|
|
Name_Range_Length : constant Name_Id := N + $; -- GNAT
|
| 820 |
|
|
Name_Ref : constant Name_Id := N + $; -- GNAT
|
| 821 |
|
|
Name_Result : constant Name_Id := N + $; -- GNAT
|
| 822 |
|
|
Name_Round : constant Name_Id := N + $;
|
| 823 |
|
|
Name_Safe_Emax : constant Name_Id := N + $; -- Ada 83
|
| 824 |
|
|
Name_Safe_First : constant Name_Id := N + $;
|
| 825 |
|
|
Name_Safe_Large : constant Name_Id := N + $; -- Ada 83
|
| 826 |
|
|
Name_Safe_Last : constant Name_Id := N + $;
|
| 827 |
|
|
Name_Safe_Small : constant Name_Id := N + $; -- Ada 83
|
| 828 |
|
|
Name_Same_Storage : constant Name_Id := N + $; -- Ada 12
|
| 829 |
|
|
Name_Scale : constant Name_Id := N + $;
|
| 830 |
|
|
Name_Scaling : constant Name_Id := N + $;
|
| 831 |
|
|
Name_Signed_Zeros : constant Name_Id := N + $;
|
| 832 |
|
|
Name_Size : constant Name_Id := N + $;
|
| 833 |
|
|
Name_Small : constant Name_Id := N + $;
|
| 834 |
|
|
Name_Storage_Size : constant Name_Id := N + $;
|
| 835 |
|
|
Name_Storage_Unit : constant Name_Id := N + $; -- GNAT
|
| 836 |
|
|
Name_Stream_Size : constant Name_Id := N + $; -- Ada 05
|
| 837 |
|
|
Name_System_Allocator_Alignment : constant Name_Id := N + $; -- GNAT
|
| 838 |
|
|
Name_Tag : constant Name_Id := N + $;
|
| 839 |
|
|
Name_Target_Name : constant Name_Id := N + $; -- GNAT
|
| 840 |
|
|
Name_Terminated : constant Name_Id := N + $;
|
| 841 |
|
|
Name_To_Address : constant Name_Id := N + $; -- GNAT
|
| 842 |
|
|
Name_Type_Class : constant Name_Id := N + $; -- GNAT
|
| 843 |
|
|
Name_Type_Key : constant Name_Id := N + $; -- GNAT
|
| 844 |
|
|
Name_UET_Address : constant Name_Id := N + $; -- GNAT
|
| 845 |
|
|
Name_Unbiased_Rounding : constant Name_Id := N + $;
|
| 846 |
|
|
Name_Unchecked_Access : constant Name_Id := N + $;
|
| 847 |
|
|
Name_Unconstrained_Array : constant Name_Id := N + $;
|
| 848 |
|
|
Name_Universal_Literal_String : constant Name_Id := N + $; -- GNAT
|
| 849 |
|
|
Name_Unrestricted_Access : constant Name_Id := N + $; -- GNAT
|
| 850 |
|
|
Name_VADS_Size : constant Name_Id := N + $; -- GNAT
|
| 851 |
|
|
Name_Val : constant Name_Id := N + $;
|
| 852 |
|
|
Name_Valid : constant Name_Id := N + $;
|
| 853 |
|
|
Name_Value_Size : constant Name_Id := N + $; -- GNAT
|
| 854 |
|
|
Name_Variable_Indexing : constant Name_Id := N + $; -- GNAT
|
| 855 |
|
|
Name_Version : constant Name_Id := N + $;
|
| 856 |
|
|
Name_Wchar_T_Size : constant Name_Id := N + $; -- GNAT
|
| 857 |
|
|
Name_Wide_Wide_Width : constant Name_Id := N + $; -- Ada 05
|
| 858 |
|
|
Name_Wide_Width : constant Name_Id := N + $;
|
| 859 |
|
|
Name_Width : constant Name_Id := N + $;
|
| 860 |
|
|
Name_Word_Size : constant Name_Id := N + $; -- GNAT
|
| 861 |
|
|
|
| 862 |
|
|
-- Attributes that designate attributes returning renamable functions,
|
| 863 |
|
|
-- i.e. functions that return other than a universal value and that
|
| 864 |
|
|
-- have non-universal arguments.
|
| 865 |
|
|
|
| 866 |
|
|
First_Renamable_Function_Attribute : constant Name_Id := N + $;
|
| 867 |
|
|
Name_Adjacent : constant Name_Id := N + $;
|
| 868 |
|
|
Name_Ceiling : constant Name_Id := N + $;
|
| 869 |
|
|
Name_Copy_Sign : constant Name_Id := N + $;
|
| 870 |
|
|
Name_Floor : constant Name_Id := N + $;
|
| 871 |
|
|
Name_Fraction : constant Name_Id := N + $;
|
| 872 |
|
|
Name_From_Any : constant Name_Id := N + $; -- GNAT
|
| 873 |
|
|
Name_Image : constant Name_Id := N + $;
|
| 874 |
|
|
Name_Input : constant Name_Id := N + $;
|
| 875 |
|
|
Name_Machine : constant Name_Id := N + $;
|
| 876 |
|
|
Name_Max : constant Name_Id := N + $;
|
| 877 |
|
|
Name_Min : constant Name_Id := N + $;
|
| 878 |
|
|
Name_Model : constant Name_Id := N + $;
|
| 879 |
|
|
Name_Pred : constant Name_Id := N + $;
|
| 880 |
|
|
Name_Remainder : constant Name_Id := N + $;
|
| 881 |
|
|
Name_Rounding : constant Name_Id := N + $;
|
| 882 |
|
|
Name_Succ : constant Name_Id := N + $;
|
| 883 |
|
|
Name_To_Any : constant Name_Id := N + $; -- GNAT
|
| 884 |
|
|
Name_Truncation : constant Name_Id := N + $;
|
| 885 |
|
|
Name_TypeCode : constant Name_Id := N + $; -- GNAT
|
| 886 |
|
|
Name_Value : constant Name_Id := N + $;
|
| 887 |
|
|
Name_Wide_Image : constant Name_Id := N + $;
|
| 888 |
|
|
Name_Wide_Wide_Image : constant Name_Id := N + $;
|
| 889 |
|
|
Name_Wide_Value : constant Name_Id := N + $;
|
| 890 |
|
|
Name_Wide_Wide_Value : constant Name_Id := N + $;
|
| 891 |
|
|
Last_Renamable_Function_Attribute : constant Name_Id := N + $;
|
| 892 |
|
|
|
| 893 |
|
|
-- Attributes that designate procedures
|
| 894 |
|
|
|
| 895 |
|
|
First_Procedure_Attribute : constant Name_Id := N + $;
|
| 896 |
|
|
Name_Output : constant Name_Id := N + $;
|
| 897 |
|
|
Name_Read : constant Name_Id := N + $;
|
| 898 |
|
|
Name_Write : constant Name_Id := N + $;
|
| 899 |
|
|
Last_Procedure_Attribute : constant Name_Id := N + $;
|
| 900 |
|
|
|
| 901 |
|
|
-- Remaining attributes are ones that return entities
|
| 902 |
|
|
|
| 903 |
|
|
-- Note that Elab_Subp_Body is not considered to be a valid attribute name
|
| 904 |
|
|
-- unless we are operating in CodePeer mode.
|
| 905 |
|
|
|
| 906 |
|
|
First_Entity_Attribute_Name : constant Name_Id := N + $;
|
| 907 |
|
|
Name_Elab_Body : constant Name_Id := N + $; -- GNAT
|
| 908 |
|
|
Name_Elab_Spec : constant Name_Id := N + $; -- GNAT
|
| 909 |
|
|
Name_Elab_Subp_Body : constant Name_Id := N + $; -- GNAT
|
| 910 |
|
|
Name_Simple_Storage_Pool : constant Name_Id := N + $; -- GNAT
|
| 911 |
|
|
Name_Storage_Pool : constant Name_Id := N + $;
|
| 912 |
|
|
|
| 913 |
|
|
-- These attributes are the ones that return types
|
| 914 |
|
|
|
| 915 |
|
|
First_Type_Attribute_Name : constant Name_Id := N + $;
|
| 916 |
|
|
Name_Base : constant Name_Id := N + $;
|
| 917 |
|
|
Name_Class : constant Name_Id := N + $;
|
| 918 |
|
|
Name_Stub_Type : constant Name_Id := N + $;
|
| 919 |
|
|
Last_Type_Attribute_Name : constant Name_Id := N + $;
|
| 920 |
|
|
Last_Entity_Attribute_Name : constant Name_Id := N + $;
|
| 921 |
|
|
Last_Attribute_Name : constant Name_Id := N + $;
|
| 922 |
|
|
|
| 923 |
|
|
-- Names of recognized locking policy identifiers
|
| 924 |
|
|
|
| 925 |
|
|
First_Locking_Policy_Name : constant Name_Id := N + $;
|
| 926 |
|
|
Name_Ceiling_Locking : constant Name_Id := N + $;
|
| 927 |
|
|
Name_Inheritance_Locking : constant Name_Id := N + $;
|
| 928 |
|
|
Name_Concurrent_Readers_Locking : constant Name_Id := N + $; -- GNAT
|
| 929 |
|
|
Last_Locking_Policy_Name : constant Name_Id := N + $;
|
| 930 |
|
|
|
| 931 |
|
|
-- Names of recognized queuing policy identifiers
|
| 932 |
|
|
|
| 933 |
|
|
-- Note: policies are identified by the first character of the name (e.g. F
|
| 934 |
|
|
-- for FIFO_Queuing). If new policy names are added, the first character
|
| 935 |
|
|
-- must be distinct.
|
| 936 |
|
|
|
| 937 |
|
|
First_Queuing_Policy_Name : constant Name_Id := N + $;
|
| 938 |
|
|
Name_FIFO_Queuing : constant Name_Id := N + $;
|
| 939 |
|
|
Name_Priority_Queuing : constant Name_Id := N + $;
|
| 940 |
|
|
Last_Queuing_Policy_Name : constant Name_Id := N + $;
|
| 941 |
|
|
|
| 942 |
|
|
-- Names of recognized task dispatching policy identifiers
|
| 943 |
|
|
|
| 944 |
|
|
-- Note: policies are identified by the first character of the name (e.g. F
|
| 945 |
|
|
-- for FIFO_Within_Priorities). If new policy names are added, the first
|
| 946 |
|
|
-- character must be distinct.
|
| 947 |
|
|
|
| 948 |
|
|
First_Task_Dispatching_Policy_Name : constant Name_Id := N + $;
|
| 949 |
|
|
Name_EDF_Across_Priorities : constant Name_Id := N + $;
|
| 950 |
|
|
Name_FIFO_Within_Priorities : constant Name_Id := N + $;
|
| 951 |
|
|
Name_Non_Preemptive_Within_Priorities : constant Name_Id := N + $;
|
| 952 |
|
|
Name_Round_Robin_Within_Priorities : constant Name_Id := N + $;
|
| 953 |
|
|
Last_Task_Dispatching_Policy_Name : constant Name_Id := N + $;
|
| 954 |
|
|
|
| 955 |
|
|
-- Names of recognized checks for pragma Suppress
|
| 956 |
|
|
|
| 957 |
|
|
-- Note: the name Atomic_Synchronization can only be specified internally
|
| 958 |
|
|
-- as a result of using pragma Enable/Disable_Atomic_Synchronization.
|
| 959 |
|
|
|
| 960 |
|
|
First_Check_Name : constant Name_Id := N + $;
|
| 961 |
|
|
Name_Access_Check : constant Name_Id := N + $;
|
| 962 |
|
|
Name_Accessibility_Check : constant Name_Id := N + $;
|
| 963 |
|
|
Name_Alignment_Check : constant Name_Id := N + $; -- GNAT
|
| 964 |
|
|
Name_Atomic_Synchronization : constant Name_Id := N + $; -- GNAT
|
| 965 |
|
|
Name_Discriminant_Check : constant Name_Id := N + $;
|
| 966 |
|
|
Name_Division_Check : constant Name_Id := N + $;
|
| 967 |
|
|
Name_Elaboration_Check : constant Name_Id := N + $;
|
| 968 |
|
|
Name_Index_Check : constant Name_Id := N + $;
|
| 969 |
|
|
Name_Length_Check : constant Name_Id := N + $;
|
| 970 |
|
|
Name_Overflow_Check : constant Name_Id := N + $;
|
| 971 |
|
|
Name_Range_Check : constant Name_Id := N + $;
|
| 972 |
|
|
Name_Storage_Check : constant Name_Id := N + $;
|
| 973 |
|
|
Name_Tag_Check : constant Name_Id := N + $;
|
| 974 |
|
|
Name_Validity_Check : constant Name_Id := N + $; -- GNAT
|
| 975 |
|
|
Name_All_Checks : constant Name_Id := N + $;
|
| 976 |
|
|
Last_Check_Name : constant Name_Id := N + $;
|
| 977 |
|
|
|
| 978 |
|
|
-- Ada 83 reserved words, excluding those already declared in the attribute
|
| 979 |
|
|
-- list (Access, Delta, Digits, Mod, Range).
|
| 980 |
|
|
|
| 981 |
|
|
Name_Abort : constant Name_Id := N + $;
|
| 982 |
|
|
Name_Abs : constant Name_Id := N + $;
|
| 983 |
|
|
Name_Accept : constant Name_Id := N + $;
|
| 984 |
|
|
Name_And : constant Name_Id := N + $;
|
| 985 |
|
|
Name_All : constant Name_Id := N + $;
|
| 986 |
|
|
Name_Array : constant Name_Id := N + $;
|
| 987 |
|
|
Name_At : constant Name_Id := N + $;
|
| 988 |
|
|
Name_Begin : constant Name_Id := N + $;
|
| 989 |
|
|
Name_Body : constant Name_Id := N + $;
|
| 990 |
|
|
Name_Case : constant Name_Id := N + $;
|
| 991 |
|
|
Name_Constant : constant Name_Id := N + $;
|
| 992 |
|
|
Name_Declare : constant Name_Id := N + $;
|
| 993 |
|
|
Name_Delay : constant Name_Id := N + $;
|
| 994 |
|
|
Name_Do : constant Name_Id := N + $;
|
| 995 |
|
|
Name_Else : constant Name_Id := N + $;
|
| 996 |
|
|
Name_Elsif : constant Name_Id := N + $;
|
| 997 |
|
|
Name_End : constant Name_Id := N + $;
|
| 998 |
|
|
Name_Entry : constant Name_Id := N + $;
|
| 999 |
|
|
Name_Exception : constant Name_Id := N + $;
|
| 1000 |
|
|
Name_Exit : constant Name_Id := N + $;
|
| 1001 |
|
|
Name_For : constant Name_Id := N + $;
|
| 1002 |
|
|
Name_Function : constant Name_Id := N + $;
|
| 1003 |
|
|
Name_Generic : constant Name_Id := N + $;
|
| 1004 |
|
|
Name_Goto : constant Name_Id := N + $;
|
| 1005 |
|
|
Name_If : constant Name_Id := N + $;
|
| 1006 |
|
|
Name_In : constant Name_Id := N + $;
|
| 1007 |
|
|
Name_Is : constant Name_Id := N + $;
|
| 1008 |
|
|
Name_Limited : constant Name_Id := N + $;
|
| 1009 |
|
|
Name_Loop : constant Name_Id := N + $;
|
| 1010 |
|
|
Name_New : constant Name_Id := N + $;
|
| 1011 |
|
|
Name_Not : constant Name_Id := N + $;
|
| 1012 |
|
|
Name_Null : constant Name_Id := N + $;
|
| 1013 |
|
|
Name_Of : constant Name_Id := N + $;
|
| 1014 |
|
|
Name_Or : constant Name_Id := N + $;
|
| 1015 |
|
|
Name_Others : constant Name_Id := N + $;
|
| 1016 |
|
|
Name_Out : constant Name_Id := N + $;
|
| 1017 |
|
|
Name_Package : constant Name_Id := N + $;
|
| 1018 |
|
|
Name_Pragma : constant Name_Id := N + $;
|
| 1019 |
|
|
Name_Private : constant Name_Id := N + $;
|
| 1020 |
|
|
Name_Procedure : constant Name_Id := N + $;
|
| 1021 |
|
|
Name_Raise : constant Name_Id := N + $;
|
| 1022 |
|
|
Name_Record : constant Name_Id := N + $;
|
| 1023 |
|
|
Name_Rem : constant Name_Id := N + $;
|
| 1024 |
|
|
Name_Renames : constant Name_Id := N + $;
|
| 1025 |
|
|
Name_Return : constant Name_Id := N + $;
|
| 1026 |
|
|
Name_Reverse : constant Name_Id := N + $;
|
| 1027 |
|
|
Name_Select : constant Name_Id := N + $;
|
| 1028 |
|
|
Name_Separate : constant Name_Id := N + $;
|
| 1029 |
|
|
Name_Subtype : constant Name_Id := N + $;
|
| 1030 |
|
|
Name_Task : constant Name_Id := N + $;
|
| 1031 |
|
|
Name_Terminate : constant Name_Id := N + $;
|
| 1032 |
|
|
Name_Then : constant Name_Id := N + $;
|
| 1033 |
|
|
Name_Type : constant Name_Id := N + $;
|
| 1034 |
|
|
Name_Use : constant Name_Id := N + $;
|
| 1035 |
|
|
Name_When : constant Name_Id := N + $;
|
| 1036 |
|
|
Name_While : constant Name_Id := N + $;
|
| 1037 |
|
|
Name_With : constant Name_Id := N + $;
|
| 1038 |
|
|
Name_Xor : constant Name_Id := N + $;
|
| 1039 |
|
|
|
| 1040 |
|
|
-- Names of intrinsic subprograms
|
| 1041 |
|
|
|
| 1042 |
|
|
-- Note: Asm is missing from this list, since Asm is a legitimate
|
| 1043 |
|
|
-- convention name. So is To_Address, which is a GNAT attribute.
|
| 1044 |
|
|
|
| 1045 |
|
|
First_Intrinsic_Name : constant Name_Id := N + $;
|
| 1046 |
|
|
Name_Divide : constant Name_Id := N + $;
|
| 1047 |
|
|
Name_Enclosing_Entity : constant Name_Id := N + $;
|
| 1048 |
|
|
Name_Exception_Information : constant Name_Id := N + $;
|
| 1049 |
|
|
Name_Exception_Message : constant Name_Id := N + $;
|
| 1050 |
|
|
Name_Exception_Name : constant Name_Id := N + $;
|
| 1051 |
|
|
Name_File : constant Name_Id := N + $;
|
| 1052 |
|
|
Name_Generic_Dispatching_Constructor : constant Name_Id := N + $;
|
| 1053 |
|
|
Name_Import_Address : constant Name_Id := N + $;
|
| 1054 |
|
|
Name_Import_Largest_Value : constant Name_Id := N + $;
|
| 1055 |
|
|
Name_Import_Value : constant Name_Id := N + $;
|
| 1056 |
|
|
Name_Is_Negative : constant Name_Id := N + $;
|
| 1057 |
|
|
Name_Line : constant Name_Id := N + $;
|
| 1058 |
|
|
Name_Rotate_Left : constant Name_Id := N + $;
|
| 1059 |
|
|
Name_Rotate_Right : constant Name_Id := N + $;
|
| 1060 |
|
|
Name_Shift_Left : constant Name_Id := N + $;
|
| 1061 |
|
|
Name_Shift_Right : constant Name_Id := N + $;
|
| 1062 |
|
|
Name_Shift_Right_Arithmetic : constant Name_Id := N + $;
|
| 1063 |
|
|
Name_Source_Location : constant Name_Id := N + $;
|
| 1064 |
|
|
Name_Unchecked_Conversion : constant Name_Id := N + $;
|
| 1065 |
|
|
Name_Unchecked_Deallocation : constant Name_Id := N + $;
|
| 1066 |
|
|
Name_To_Pointer : constant Name_Id := N + $;
|
| 1067 |
|
|
Last_Intrinsic_Name : constant Name_Id := N + $;
|
| 1068 |
|
|
|
| 1069 |
|
|
-- Names used in processing intrinsic calls
|
| 1070 |
|
|
|
| 1071 |
|
|
Name_Free : constant Name_Id := N + $;
|
| 1072 |
|
|
|
| 1073 |
|
|
-- Ada 95 reserved words
|
| 1074 |
|
|
|
| 1075 |
|
|
First_95_Reserved_Word : constant Name_Id := N + $;
|
| 1076 |
|
|
Name_Abstract : constant Name_Id := N + $;
|
| 1077 |
|
|
Name_Aliased : constant Name_Id := N + $;
|
| 1078 |
|
|
Name_Protected : constant Name_Id := N + $;
|
| 1079 |
|
|
Name_Until : constant Name_Id := N + $;
|
| 1080 |
|
|
Name_Requeue : constant Name_Id := N + $;
|
| 1081 |
|
|
Name_Tagged : constant Name_Id := N + $;
|
| 1082 |
|
|
Last_95_Reserved_Word : constant Name_Id := N + $;
|
| 1083 |
|
|
|
| 1084 |
|
|
subtype Ada_95_Reserved_Words is
|
| 1085 |
|
|
Name_Id range First_95_Reserved_Word .. Last_95_Reserved_Word;
|
| 1086 |
|
|
|
| 1087 |
|
|
-- Miscellaneous names used in semantic checking
|
| 1088 |
|
|
|
| 1089 |
|
|
Name_Raise_Exception : constant Name_Id := N + $;
|
| 1090 |
|
|
|
| 1091 |
|
|
-- Additional reserved words and identifiers used in GNAT Project Files
|
| 1092 |
|
|
-- Note that Name_External is already previously declared.
|
| 1093 |
|
|
|
| 1094 |
|
|
-- The names with the -- GB annotation are only used in gprbuild.
|
| 1095 |
|
|
|
| 1096 |
|
|
Name_Aggregate : constant Name_Id := N + $;
|
| 1097 |
|
|
Name_Archive_Builder : constant Name_Id := N + $;
|
| 1098 |
|
|
Name_Archive_Builder_Append_Option : constant Name_Id := N + $;
|
| 1099 |
|
|
Name_Archive_Indexer : constant Name_Id := N + $;
|
| 1100 |
|
|
Name_Archive_Suffix : constant Name_Id := N + $;
|
| 1101 |
|
|
Name_Binder : constant Name_Id := N + $;
|
| 1102 |
|
|
Name_Body_Suffix : constant Name_Id := N + $;
|
| 1103 |
|
|
Name_Builder : constant Name_Id := N + $;
|
| 1104 |
|
|
Name_Compiler : constant Name_Id := N + $;
|
| 1105 |
|
|
Name_Compiler_Command : constant Name_Id := N + $; -- GB
|
| 1106 |
|
|
Name_Config_Body_File_Name : constant Name_Id := N + $;
|
| 1107 |
|
|
Name_Config_Body_File_Name_Index : constant Name_Id := N + $;
|
| 1108 |
|
|
Name_Config_Body_File_Name_Pattern : constant Name_Id := N + $;
|
| 1109 |
|
|
Name_Config_File_Switches : constant Name_Id := N + $;
|
| 1110 |
|
|
Name_Config_File_Unique : constant Name_Id := N + $;
|
| 1111 |
|
|
Name_Config_Spec_File_Name : constant Name_Id := N + $;
|
| 1112 |
|
|
Name_Config_Spec_File_Name_Index : constant Name_Id := N + $;
|
| 1113 |
|
|
Name_Config_Spec_File_Name_Pattern : constant Name_Id := N + $;
|
| 1114 |
|
|
Name_Configuration : constant Name_Id := N + $;
|
| 1115 |
|
|
Name_Cross_Reference : constant Name_Id := N + $;
|
| 1116 |
|
|
Name_Default_Language : constant Name_Id := N + $;
|
| 1117 |
|
|
Name_Default_Switches : constant Name_Id := N + $;
|
| 1118 |
|
|
Name_Dependency_Driver : constant Name_Id := N + $;
|
| 1119 |
|
|
Name_Dependency_Kind : constant Name_Id := N + $;
|
| 1120 |
|
|
Name_Dependency_Switches : constant Name_Id := N + $;
|
| 1121 |
|
|
Name_Driver : constant Name_Id := N + $;
|
| 1122 |
|
|
Name_Excluded_Source_Dirs : constant Name_Id := N + $;
|
| 1123 |
|
|
Name_Excluded_Source_Files : constant Name_Id := N + $;
|
| 1124 |
|
|
Name_Excluded_Source_List_File : constant Name_Id := N + $;
|
| 1125 |
|
|
Name_Exec_Dir : constant Name_Id := N + $;
|
| 1126 |
|
|
Name_Executable : constant Name_Id := N + $;
|
| 1127 |
|
|
Name_Executable_Suffix : constant Name_Id := N + $;
|
| 1128 |
|
|
Name_Extends : constant Name_Id := N + $;
|
| 1129 |
|
|
Name_External_As_List : constant Name_Id := N + $;
|
| 1130 |
|
|
Name_Externally_Built : constant Name_Id := N + $;
|
| 1131 |
|
|
Name_Finder : constant Name_Id := N + $;
|
| 1132 |
|
|
Name_Global_Compilation_Switches : constant Name_Id := N + $;
|
| 1133 |
|
|
Name_Global_Configuration_Pragmas : constant Name_Id := N + $;
|
| 1134 |
|
|
Name_Global_Config_File : constant Name_Id := N + $; -- GB
|
| 1135 |
|
|
Name_Gnatls : constant Name_Id := N + $;
|
| 1136 |
|
|
Name_Gnatstub : constant Name_Id := N + $;
|
| 1137 |
|
|
Name_Gnu : constant Name_Id := N + $;
|
| 1138 |
|
|
Name_Ide : constant Name_Id := N + $;
|
| 1139 |
|
|
Name_Ignore_Source_Sub_Dirs : constant Name_Id := N + $;
|
| 1140 |
|
|
Name_Implementation : constant Name_Id := N + $;
|
| 1141 |
|
|
Name_Implementation_Exceptions : constant Name_Id := N + $;
|
| 1142 |
|
|
Name_Implementation_Suffix : constant Name_Id := N + $;
|
| 1143 |
|
|
Name_Include_Switches : constant Name_Id := N + $;
|
| 1144 |
|
|
Name_Include_Path : constant Name_Id := N + $;
|
| 1145 |
|
|
Name_Include_Path_File : constant Name_Id := N + $;
|
| 1146 |
|
|
Name_Inherit_Source_Path : constant Name_Id := N + $;
|
| 1147 |
|
|
Name_Languages : constant Name_Id := N + $;
|
| 1148 |
|
|
Name_Language_Kind : constant Name_Id := N + $;
|
| 1149 |
|
|
Name_Leading_Library_Options : constant Name_Id := N + $;
|
| 1150 |
|
|
Name_Leading_Required_Switches : constant Name_Id := N + $;
|
| 1151 |
|
|
Name_Leading_Switches : constant Name_Id := N + $;
|
| 1152 |
|
|
Name_Library : constant Name_Id := N + $;
|
| 1153 |
|
|
Name_Library_Ali_Dir : constant Name_Id := N + $;
|
| 1154 |
|
|
Name_Library_Auto_Init : constant Name_Id := N + $;
|
| 1155 |
|
|
Name_Library_Auto_Init_Supported : constant Name_Id := N + $;
|
| 1156 |
|
|
Name_Library_Builder : constant Name_Id := N + $;
|
| 1157 |
|
|
Name_Library_Dir : constant Name_Id := N + $;
|
| 1158 |
|
|
Name_Library_GCC : constant Name_Id := N + $;
|
| 1159 |
|
|
Name_Library_Install_Name_Option : constant Name_Id := N + $;
|
| 1160 |
|
|
Name_Library_Interface : constant Name_Id := N + $;
|
| 1161 |
|
|
Name_Library_Kind : constant Name_Id := N + $;
|
| 1162 |
|
|
Name_Library_Name : constant Name_Id := N + $;
|
| 1163 |
|
|
Name_Library_Major_Minor_Id_Supported : constant Name_Id := N + $;
|
| 1164 |
|
|
Name_Library_Options : constant Name_Id := N + $;
|
| 1165 |
|
|
Name_Library_Partial_Linker : constant Name_Id := N + $;
|
| 1166 |
|
|
Name_Library_Reference_Symbol_File : constant Name_Id := N + $;
|
| 1167 |
|
|
Name_Library_Standalone : constant Name_Id := N + $;
|
| 1168 |
|
|
Name_Library_Encapsulated_Options : constant Name_Id := N + $; -- GB
|
| 1169 |
|
|
Name_Library_Encapsulated_Supported : constant Name_Id := N + $; -- GB
|
| 1170 |
|
|
Name_Library_Src_Dir : constant Name_Id := N + $;
|
| 1171 |
|
|
Name_Library_Support : constant Name_Id := N + $;
|
| 1172 |
|
|
Name_Library_Symbol_File : constant Name_Id := N + $;
|
| 1173 |
|
|
Name_Library_Symbol_Policy : constant Name_Id := N + $;
|
| 1174 |
|
|
Name_Library_Version : constant Name_Id := N + $;
|
| 1175 |
|
|
Name_Library_Version_Switches : constant Name_Id := N + $;
|
| 1176 |
|
|
Name_Linker : constant Name_Id := N + $;
|
| 1177 |
|
|
Name_Linker_Executable_Option : constant Name_Id := N + $;
|
| 1178 |
|
|
Name_Linker_Lib_Dir_Option : constant Name_Id := N + $;
|
| 1179 |
|
|
Name_Linker_Lib_Name_Option : constant Name_Id := N + $;
|
| 1180 |
|
|
Name_Local_Config_File : constant Name_Id := N + $; -- GB
|
| 1181 |
|
|
Name_Local_Configuration_Pragmas : constant Name_Id := N + $;
|
| 1182 |
|
|
Name_Locally_Removed_Files : constant Name_Id := N + $;
|
| 1183 |
|
|
Name_Map_File_Option : constant Name_Id := N + $;
|
| 1184 |
|
|
Name_Mapping_File_Switches : constant Name_Id := N + $;
|
| 1185 |
|
|
Name_Mapping_Spec_Suffix : constant Name_Id := N + $;
|
| 1186 |
|
|
Name_Mapping_Body_Suffix : constant Name_Id := N + $;
|
| 1187 |
|
|
Name_Max_Command_Line_Length : constant Name_Id := N + $;
|
| 1188 |
|
|
Name_Metrics : constant Name_Id := N + $;
|
| 1189 |
|
|
Name_Multi_Unit_Object_Separator : constant Name_Id := N + $;
|
| 1190 |
|
|
Name_Multi_Unit_Switches : constant Name_Id := N + $;
|
| 1191 |
|
|
Name_Naming : constant Name_Id := N + $;
|
| 1192 |
|
|
Name_None : constant Name_Id := N + $;
|
| 1193 |
|
|
Name_Object_File_Suffix : constant Name_Id := N + $;
|
| 1194 |
|
|
Name_Object_File_Switches : constant Name_Id := N + $;
|
| 1195 |
|
|
Name_Object_Generated : constant Name_Id := N + $;
|
| 1196 |
|
|
Name_Object_List : constant Name_Id := N + $;
|
| 1197 |
|
|
Name_Objects_Linked : constant Name_Id := N + $;
|
| 1198 |
|
|
Name_Objects_Path : constant Name_Id := N + $;
|
| 1199 |
|
|
Name_Objects_Path_File : constant Name_Id := N + $;
|
| 1200 |
|
|
Name_Object_Dir : constant Name_Id := N + $;
|
| 1201 |
|
|
Name_Option_List : constant Name_Id := N + $;
|
| 1202 |
|
|
Name_Path_Syntax : constant Name_Id := N + $;
|
| 1203 |
|
|
Name_Pic_Option : constant Name_Id := N + $;
|
| 1204 |
|
|
Name_Pretty_Printer : constant Name_Id := N + $;
|
| 1205 |
|
|
Name_Prefix : constant Name_Id := N + $;
|
| 1206 |
|
|
Name_Project : constant Name_Id := N + $;
|
| 1207 |
|
|
Name_Project_Dir : constant Name_Id := N + $;
|
| 1208 |
|
|
Name_Project_Files : constant Name_Id := N + $;
|
| 1209 |
|
|
Name_Project_Path : constant Name_Id := N + $;
|
| 1210 |
|
|
Name_Response_File_Format : constant Name_Id := N + $;
|
| 1211 |
|
|
Name_Response_File_Switches : constant Name_Id := N + $;
|
| 1212 |
|
|
Name_Roots : constant Name_Id := N + $; -- GB
|
| 1213 |
|
|
Name_Required_Switches : constant Name_Id := N + $;
|
| 1214 |
|
|
Name_Run_Path_Option : constant Name_Id := N + $;
|
| 1215 |
|
|
Name_Run_Path_Origin : constant Name_Id := N + $;
|
| 1216 |
|
|
Name_Separate_Run_Path_Options : constant Name_Id := N + $;
|
| 1217 |
|
|
Name_Shared_Library_Minimum_Switches : constant Name_Id := N + $;
|
| 1218 |
|
|
Name_Shared_Library_Prefix : constant Name_Id := N + $;
|
| 1219 |
|
|
Name_Shared_Library_Suffix : constant Name_Id := N + $;
|
| 1220 |
|
|
Name_Separate_Suffix : constant Name_Id := N + $;
|
| 1221 |
|
|
Name_Source_Dirs : constant Name_Id := N + $;
|
| 1222 |
|
|
Name_Source_File_Switches : constant Name_Id := N + $;
|
| 1223 |
|
|
Name_Source_Files : constant Name_Id := N + $;
|
| 1224 |
|
|
Name_Source_List_File : constant Name_Id := N + $;
|
| 1225 |
|
|
Name_Spec : constant Name_Id := N + $;
|
| 1226 |
|
|
Name_Spec_Suffix : constant Name_Id := N + $;
|
| 1227 |
|
|
Name_Specification : constant Name_Id := N + $;
|
| 1228 |
|
|
Name_Specification_Exceptions : constant Name_Id := N + $;
|
| 1229 |
|
|
Name_Specification_Suffix : constant Name_Id := N + $;
|
| 1230 |
|
|
Name_Stack : constant Name_Id := N + $;
|
| 1231 |
|
|
Name_Switches : constant Name_Id := N + $;
|
| 1232 |
|
|
Name_Symbolic_Link_Supported : constant Name_Id := N + $;
|
| 1233 |
|
|
Name_Synchronize : constant Name_Id := N + $;
|
| 1234 |
|
|
Name_Toolchain_Description : constant Name_Id := N + $;
|
| 1235 |
|
|
Name_Toolchain_Version : constant Name_Id := N + $;
|
| 1236 |
|
|
Name_Trailing_Required_Switches : constant Name_Id := N + $;
|
| 1237 |
|
|
Name_Runtime_Library_Dir : constant Name_Id := N + $;
|
| 1238 |
|
|
Name_Runtime_Source_Dir : constant Name_Id := N + $;
|
| 1239 |
|
|
|
| 1240 |
|
|
-- Other miscellaneous names used in front end
|
| 1241 |
|
|
|
| 1242 |
|
|
Name_Unaligned_Valid : constant Name_Id := N + $;
|
| 1243 |
|
|
|
| 1244 |
|
|
-- Names used to implement iterators over predefined containers
|
| 1245 |
|
|
|
| 1246 |
|
|
Name_Cursor : constant Name_Id := N + $;
|
| 1247 |
|
|
Name_Element : constant Name_Id := N + $;
|
| 1248 |
|
|
Name_Element_Type : constant Name_Id := N + $;
|
| 1249 |
|
|
Name_Has_Element : constant Name_Id := N + $;
|
| 1250 |
|
|
Name_No_Element : constant Name_Id := N + $;
|
| 1251 |
|
|
Name_Forward_Iterator : constant Name_Id := N + $;
|
| 1252 |
|
|
Name_Reversible_Iterator : constant Name_Id := N + $;
|
| 1253 |
|
|
Name_Previous : constant Name_Id := N + $;
|
| 1254 |
|
|
|
| 1255 |
|
|
-- Ada 2005 reserved words
|
| 1256 |
|
|
|
| 1257 |
|
|
First_2005_Reserved_Word : constant Name_Id := N + $;
|
| 1258 |
|
|
Name_Interface : constant Name_Id := N + $;
|
| 1259 |
|
|
Name_Overriding : constant Name_Id := N + $;
|
| 1260 |
|
|
Name_Synchronized : constant Name_Id := N + $;
|
| 1261 |
|
|
Last_2005_Reserved_Word : constant Name_Id := N + $;
|
| 1262 |
|
|
|
| 1263 |
|
|
subtype Ada_2005_Reserved_Words is
|
| 1264 |
|
|
Name_Id range First_2005_Reserved_Word .. Last_2005_Reserved_Word;
|
| 1265 |
|
|
|
| 1266 |
|
|
-- Ada 2012 reserved words
|
| 1267 |
|
|
|
| 1268 |
|
|
First_2012_Reserved_Word : constant Name_Id := N + $;
|
| 1269 |
|
|
Name_Some : constant Name_Id := N + $;
|
| 1270 |
|
|
Last_2012_Reserved_Word : constant Name_Id := N + $;
|
| 1271 |
|
|
|
| 1272 |
|
|
subtype Ada_2012_Reserved_Words is
|
| 1273 |
|
|
Name_Id range First_2012_Reserved_Word .. Last_2012_Reserved_Word;
|
| 1274 |
|
|
|
| 1275 |
|
|
-- Mark last defined name for consistency check in Snames body
|
| 1276 |
|
|
|
| 1277 |
|
|
Last_Predefined_Name : constant Name_Id := N + $;
|
| 1278 |
|
|
|
| 1279 |
|
|
---------------------------------------
|
| 1280 |
|
|
-- Subtypes Defining Name Categories --
|
| 1281 |
|
|
---------------------------------------
|
| 1282 |
|
|
|
| 1283 |
|
|
subtype Any_Operator_Name is Name_Id range
|
| 1284 |
|
|
First_Operator_Name .. Last_Operator_Name;
|
| 1285 |
|
|
|
| 1286 |
|
|
subtype Configuration_Pragma_Names is Name_Id range
|
| 1287 |
|
|
First_Pragma_Name .. Last_Configuration_Pragma_Name;
|
| 1288 |
|
|
|
| 1289 |
|
|
------------------------------
|
| 1290 |
|
|
-- Attribute ID Definitions --
|
| 1291 |
|
|
------------------------------
|
| 1292 |
|
|
|
| 1293 |
|
|
type Attribute_Id is (
|
| 1294 |
|
|
Attribute_Abort_Signal,
|
| 1295 |
|
|
Attribute_Access,
|
| 1296 |
|
|
Attribute_Address,
|
| 1297 |
|
|
Attribute_Address_Size,
|
| 1298 |
|
|
Attribute_Aft,
|
| 1299 |
|
|
Attribute_Alignment,
|
| 1300 |
|
|
Attribute_Asm_Input,
|
| 1301 |
|
|
Attribute_Asm_Output,
|
| 1302 |
|
|
Attribute_AST_Entry,
|
| 1303 |
|
|
Attribute_Bit,
|
| 1304 |
|
|
Attribute_Bit_Order,
|
| 1305 |
|
|
Attribute_Bit_Position,
|
| 1306 |
|
|
Attribute_Body_Version,
|
| 1307 |
|
|
Attribute_Callable,
|
| 1308 |
|
|
Attribute_Caller,
|
| 1309 |
|
|
Attribute_Code_Address,
|
| 1310 |
|
|
Attribute_Compiler_Version,
|
| 1311 |
|
|
Attribute_Component_Size,
|
| 1312 |
|
|
Attribute_Compose,
|
| 1313 |
|
|
Attribute_Constant_Indexing,
|
| 1314 |
|
|
Attribute_Constrained,
|
| 1315 |
|
|
Attribute_Count,
|
| 1316 |
|
|
Attribute_Default_Bit_Order,
|
| 1317 |
|
|
Attribute_Default_Iterator,
|
| 1318 |
|
|
Attribute_Definite,
|
| 1319 |
|
|
Attribute_Delta,
|
| 1320 |
|
|
Attribute_Denorm,
|
| 1321 |
|
|
Attribute_Descriptor_Size,
|
| 1322 |
|
|
Attribute_Digits,
|
| 1323 |
|
|
Attribute_Elaborated,
|
| 1324 |
|
|
Attribute_Emax,
|
| 1325 |
|
|
Attribute_Enabled,
|
| 1326 |
|
|
Attribute_Enum_Rep,
|
| 1327 |
|
|
Attribute_Enum_Val,
|
| 1328 |
|
|
Attribute_Epsilon,
|
| 1329 |
|
|
Attribute_Exponent,
|
| 1330 |
|
|
Attribute_External_Tag,
|
| 1331 |
|
|
Attribute_Fast_Math,
|
| 1332 |
|
|
Attribute_First,
|
| 1333 |
|
|
Attribute_First_Bit,
|
| 1334 |
|
|
Attribute_Fixed_Value,
|
| 1335 |
|
|
Attribute_Fore,
|
| 1336 |
|
|
Attribute_Has_Access_Values,
|
| 1337 |
|
|
Attribute_Has_Discriminants,
|
| 1338 |
|
|
Attribute_Has_Tagged_Values,
|
| 1339 |
|
|
Attribute_Identity,
|
| 1340 |
|
|
Attribute_Img,
|
| 1341 |
|
|
Attribute_Implicit_Dereference,
|
| 1342 |
|
|
Attribute_Integer_Value,
|
| 1343 |
|
|
Attribute_Invalid_Value,
|
| 1344 |
|
|
Attribute_Iterator_Element,
|
| 1345 |
|
|
Attribute_Large,
|
| 1346 |
|
|
Attribute_Last,
|
| 1347 |
|
|
Attribute_Last_Bit,
|
| 1348 |
|
|
Attribute_Leading_Part,
|
| 1349 |
|
|
Attribute_Length,
|
| 1350 |
|
|
Attribute_Machine_Emax,
|
| 1351 |
|
|
Attribute_Machine_Emin,
|
| 1352 |
|
|
Attribute_Machine_Mantissa,
|
| 1353 |
|
|
Attribute_Machine_Overflows,
|
| 1354 |
|
|
Attribute_Machine_Radix,
|
| 1355 |
|
|
Attribute_Machine_Rounding,
|
| 1356 |
|
|
Attribute_Machine_Rounds,
|
| 1357 |
|
|
Attribute_Machine_Size,
|
| 1358 |
|
|
Attribute_Mantissa,
|
| 1359 |
|
|
Attribute_Max_Alignment_For_Allocation,
|
| 1360 |
|
|
Attribute_Max_Size_In_Storage_Elements,
|
| 1361 |
|
|
Attribute_Maximum_Alignment,
|
| 1362 |
|
|
Attribute_Mechanism_Code,
|
| 1363 |
|
|
Attribute_Mod,
|
| 1364 |
|
|
Attribute_Model_Emin,
|
| 1365 |
|
|
Attribute_Model_Epsilon,
|
| 1366 |
|
|
Attribute_Model_Mantissa,
|
| 1367 |
|
|
Attribute_Model_Small,
|
| 1368 |
|
|
Attribute_Modulus,
|
| 1369 |
|
|
Attribute_Null_Parameter,
|
| 1370 |
|
|
Attribute_Object_Size,
|
| 1371 |
|
|
Attribute_Old,
|
| 1372 |
|
|
Attribute_Overlaps_Storage,
|
| 1373 |
|
|
Attribute_Partition_ID,
|
| 1374 |
|
|
Attribute_Passed_By_Reference,
|
| 1375 |
|
|
Attribute_Pool_Address,
|
| 1376 |
|
|
Attribute_Pos,
|
| 1377 |
|
|
Attribute_Position,
|
| 1378 |
|
|
Attribute_Priority,
|
| 1379 |
|
|
Attribute_Range,
|
| 1380 |
|
|
Attribute_Range_Length,
|
| 1381 |
|
|
Attribute_Ref,
|
| 1382 |
|
|
Attribute_Result,
|
| 1383 |
|
|
Attribute_Round,
|
| 1384 |
|
|
Attribute_Safe_Emax,
|
| 1385 |
|
|
Attribute_Safe_First,
|
| 1386 |
|
|
Attribute_Safe_Large,
|
| 1387 |
|
|
Attribute_Safe_Last,
|
| 1388 |
|
|
Attribute_Safe_Small,
|
| 1389 |
|
|
Attribute_Same_Storage,
|
| 1390 |
|
|
Attribute_Scale,
|
| 1391 |
|
|
Attribute_Scaling,
|
| 1392 |
|
|
Attribute_Signed_Zeros,
|
| 1393 |
|
|
Attribute_Size,
|
| 1394 |
|
|
Attribute_Small,
|
| 1395 |
|
|
Attribute_Storage_Size,
|
| 1396 |
|
|
Attribute_Storage_Unit,
|
| 1397 |
|
|
Attribute_Stream_Size,
|
| 1398 |
|
|
Attribute_System_Allocator_Alignment,
|
| 1399 |
|
|
Attribute_Tag,
|
| 1400 |
|
|
Attribute_Target_Name,
|
| 1401 |
|
|
Attribute_Terminated,
|
| 1402 |
|
|
Attribute_To_Address,
|
| 1403 |
|
|
Attribute_Type_Class,
|
| 1404 |
|
|
Attribute_Type_Key,
|
| 1405 |
|
|
Attribute_UET_Address,
|
| 1406 |
|
|
Attribute_Unbiased_Rounding,
|
| 1407 |
|
|
Attribute_Unchecked_Access,
|
| 1408 |
|
|
Attribute_Unconstrained_Array,
|
| 1409 |
|
|
Attribute_Universal_Literal_String,
|
| 1410 |
|
|
Attribute_Unrestricted_Access,
|
| 1411 |
|
|
Attribute_VADS_Size,
|
| 1412 |
|
|
Attribute_Val,
|
| 1413 |
|
|
Attribute_Valid,
|
| 1414 |
|
|
Attribute_Value_Size,
|
| 1415 |
|
|
Attribute_Variable_Indexing,
|
| 1416 |
|
|
Attribute_Version,
|
| 1417 |
|
|
Attribute_Wchar_T_Size,
|
| 1418 |
|
|
Attribute_Wide_Wide_Width,
|
| 1419 |
|
|
Attribute_Wide_Width,
|
| 1420 |
|
|
Attribute_Width,
|
| 1421 |
|
|
Attribute_Word_Size,
|
| 1422 |
|
|
|
| 1423 |
|
|
-- Attributes designating renamable functions
|
| 1424 |
|
|
|
| 1425 |
|
|
Attribute_Adjacent,
|
| 1426 |
|
|
Attribute_Ceiling,
|
| 1427 |
|
|
Attribute_Copy_Sign,
|
| 1428 |
|
|
Attribute_Floor,
|
| 1429 |
|
|
Attribute_Fraction,
|
| 1430 |
|
|
Attribute_From_Any,
|
| 1431 |
|
|
Attribute_Image,
|
| 1432 |
|
|
Attribute_Input,
|
| 1433 |
|
|
Attribute_Machine,
|
| 1434 |
|
|
Attribute_Max,
|
| 1435 |
|
|
Attribute_Min,
|
| 1436 |
|
|
Attribute_Model,
|
| 1437 |
|
|
Attribute_Pred,
|
| 1438 |
|
|
Attribute_Remainder,
|
| 1439 |
|
|
Attribute_Rounding,
|
| 1440 |
|
|
Attribute_Succ,
|
| 1441 |
|
|
Attribute_To_Any,
|
| 1442 |
|
|
Attribute_Truncation,
|
| 1443 |
|
|
Attribute_TypeCode,
|
| 1444 |
|
|
Attribute_Value,
|
| 1445 |
|
|
Attribute_Wide_Image,
|
| 1446 |
|
|
Attribute_Wide_Wide_Image,
|
| 1447 |
|
|
Attribute_Wide_Value,
|
| 1448 |
|
|
Attribute_Wide_Wide_Value,
|
| 1449 |
|
|
|
| 1450 |
|
|
-- Attributes designating procedures
|
| 1451 |
|
|
|
| 1452 |
|
|
Attribute_Output,
|
| 1453 |
|
|
Attribute_Read,
|
| 1454 |
|
|
Attribute_Write,
|
| 1455 |
|
|
|
| 1456 |
|
|
-- Entity attributes (includes type attributes)
|
| 1457 |
|
|
|
| 1458 |
|
|
Attribute_Elab_Body,
|
| 1459 |
|
|
Attribute_Elab_Spec,
|
| 1460 |
|
|
Attribute_Elab_Subp_Body,
|
| 1461 |
|
|
Attribute_Simple_Storage_Pool,
|
| 1462 |
|
|
Attribute_Storage_Pool,
|
| 1463 |
|
|
|
| 1464 |
|
|
-- Type attributes
|
| 1465 |
|
|
|
| 1466 |
|
|
Attribute_Base,
|
| 1467 |
|
|
Attribute_Class,
|
| 1468 |
|
|
Attribute_Stub_Type);
|
| 1469 |
|
|
|
| 1470 |
|
|
type Attribute_Class_Array is array (Attribute_Id) of Boolean;
|
| 1471 |
|
|
-- Type used to build attribute classification flag arrays
|
| 1472 |
|
|
|
| 1473 |
|
|
------------------------------------
|
| 1474 |
|
|
-- Convention Name ID Definitions --
|
| 1475 |
|
|
------------------------------------
|
| 1476 |
|
|
|
| 1477 |
|
|
type Convention_Id is (
|
| 1478 |
|
|
|
| 1479 |
|
|
-- The native-to-Ada (non-foreign) conventions come first. These include
|
| 1480 |
|
|
-- the ones defined in the RM, plus Stubbed.
|
| 1481 |
|
|
|
| 1482 |
|
|
Convention_Ada,
|
| 1483 |
|
|
Convention_Intrinsic,
|
| 1484 |
|
|
Convention_Entry,
|
| 1485 |
|
|
Convention_Protected,
|
| 1486 |
|
|
Convention_Stubbed,
|
| 1487 |
|
|
|
| 1488 |
|
|
-- The following conventions are equivalent to Ada for all purposes
|
| 1489 |
|
|
-- except controlling the way parameters are passed.
|
| 1490 |
|
|
|
| 1491 |
|
|
Convention_Ada_Pass_By_Copy,
|
| 1492 |
|
|
Convention_Ada_Pass_By_Reference,
|
| 1493 |
|
|
|
| 1494 |
|
|
-- The remaining conventions are foreign language conventions
|
| 1495 |
|
|
|
| 1496 |
|
|
Convention_Assembler, -- also Asm, Assembly
|
| 1497 |
|
|
Convention_C, -- also Default, External
|
| 1498 |
|
|
Convention_CIL,
|
| 1499 |
|
|
Convention_COBOL,
|
| 1500 |
|
|
Convention_CPP,
|
| 1501 |
|
|
Convention_Fortran,
|
| 1502 |
|
|
Convention_Java,
|
| 1503 |
|
|
Convention_Stdcall); -- also DLL, Win32
|
| 1504 |
|
|
|
| 1505 |
|
|
-- Note: Convention C_Pass_By_Copy is allowed only for record types
|
| 1506 |
|
|
-- (where it is treated like C except that the appropriate flag is set
|
| 1507 |
|
|
-- in the record type). Recognizing this convention is specially handled
|
| 1508 |
|
|
-- in Sem_Prag.
|
| 1509 |
|
|
|
| 1510 |
|
|
for Convention_Id'Size use 8;
|
| 1511 |
|
|
-- Plenty of space for expansion
|
| 1512 |
|
|
|
| 1513 |
|
|
subtype Foreign_Convention is
|
| 1514 |
|
|
Convention_Id range Convention_Assembler .. Convention_Id'Last;
|
| 1515 |
|
|
|
| 1516 |
|
|
-----------------------------------
|
| 1517 |
|
|
-- Locking Policy ID Definitions --
|
| 1518 |
|
|
-----------------------------------
|
| 1519 |
|
|
|
| 1520 |
|
|
type Locking_Policy_Id is (
|
| 1521 |
|
|
Locking_Policy_Inheritance_Locking,
|
| 1522 |
|
|
Locking_Policy_Ceiling_Locking,
|
| 1523 |
|
|
Locking_Policy_Concurrent_Readers_Locking);
|
| 1524 |
|
|
|
| 1525 |
|
|
---------------------------
|
| 1526 |
|
|
-- Pragma ID Definitions --
|
| 1527 |
|
|
---------------------------
|
| 1528 |
|
|
|
| 1529 |
|
|
type Pragma_Id is (
|
| 1530 |
|
|
|
| 1531 |
|
|
-- Configuration pragmas
|
| 1532 |
|
|
|
| 1533 |
|
|
-- Note: This list is in the GNAT users guide, so be sure that if any
|
| 1534 |
|
|
-- additions or deletions are made to the following list, they are
|
| 1535 |
|
|
-- properly reflected in the users guide.
|
| 1536 |
|
|
|
| 1537 |
|
|
Pragma_Ada_83,
|
| 1538 |
|
|
Pragma_Ada_95,
|
| 1539 |
|
|
Pragma_Ada_05,
|
| 1540 |
|
|
Pragma_Ada_2005,
|
| 1541 |
|
|
Pragma_Ada_12,
|
| 1542 |
|
|
Pragma_Ada_2012,
|
| 1543 |
|
|
Pragma_Annotate,
|
| 1544 |
|
|
Pragma_Assertion_Policy,
|
| 1545 |
|
|
Pragma_Assume_No_Invalid_Values,
|
| 1546 |
|
|
Pragma_C_Pass_By_Copy,
|
| 1547 |
|
|
Pragma_Check_Name,
|
| 1548 |
|
|
Pragma_Check_Policy,
|
| 1549 |
|
|
Pragma_Compile_Time_Error,
|
| 1550 |
|
|
Pragma_Compile_Time_Warning,
|
| 1551 |
|
|
Pragma_Compiler_Unit,
|
| 1552 |
|
|
Pragma_Component_Alignment,
|
| 1553 |
|
|
Pragma_Convention_Identifier,
|
| 1554 |
|
|
Pragma_Debug_Policy,
|
| 1555 |
|
|
Pragma_Detect_Blocking,
|
| 1556 |
|
|
Pragma_Default_Storage_Pool,
|
| 1557 |
|
|
Pragma_Disable_Atomic_Synchronization,
|
| 1558 |
|
|
Pragma_Discard_Names,
|
| 1559 |
|
|
Pragma_Dispatching_Domain,
|
| 1560 |
|
|
Pragma_Elaboration_Checks,
|
| 1561 |
|
|
Pragma_Eliminate,
|
| 1562 |
|
|
Pragma_Enable_Atomic_Synchronization,
|
| 1563 |
|
|
Pragma_Extend_System,
|
| 1564 |
|
|
Pragma_Extensions_Allowed,
|
| 1565 |
|
|
Pragma_External_Name_Casing,
|
| 1566 |
|
|
Pragma_Favor_Top_Level,
|
| 1567 |
|
|
Pragma_Float_Representation,
|
| 1568 |
|
|
Pragma_Implicit_Packing,
|
| 1569 |
|
|
Pragma_Initialize_Scalars,
|
| 1570 |
|
|
Pragma_Interrupt_State,
|
| 1571 |
|
|
Pragma_License,
|
| 1572 |
|
|
Pragma_Locking_Policy,
|
| 1573 |
|
|
Pragma_Long_Float,
|
| 1574 |
|
|
Pragma_No_Run_Time,
|
| 1575 |
|
|
Pragma_No_Strict_Aliasing,
|
| 1576 |
|
|
Pragma_Normalize_Scalars,
|
| 1577 |
|
|
Pragma_Optimize_Alignment,
|
| 1578 |
|
|
Pragma_Persistent_BSS,
|
| 1579 |
|
|
Pragma_Polling,
|
| 1580 |
|
|
Pragma_Priority_Specific_Dispatching,
|
| 1581 |
|
|
Pragma_Profile,
|
| 1582 |
|
|
Pragma_Profile_Warnings,
|
| 1583 |
|
|
Pragma_Propagate_Exceptions,
|
| 1584 |
|
|
Pragma_Queuing_Policy,
|
| 1585 |
|
|
Pragma_Ravenscar,
|
| 1586 |
|
|
Pragma_Restricted_Run_Time,
|
| 1587 |
|
|
Pragma_Restrictions,
|
| 1588 |
|
|
Pragma_Restriction_Warnings,
|
| 1589 |
|
|
Pragma_Reviewable,
|
| 1590 |
|
|
Pragma_Short_Circuit_And_Or,
|
| 1591 |
|
|
Pragma_Short_Descriptors,
|
| 1592 |
|
|
Pragma_Source_File_Name,
|
| 1593 |
|
|
Pragma_Source_File_Name_Project,
|
| 1594 |
|
|
Pragma_Style_Checks,
|
| 1595 |
|
|
Pragma_Suppress,
|
| 1596 |
|
|
Pragma_Suppress_Exception_Locations,
|
| 1597 |
|
|
Pragma_Task_Dispatching_Policy,
|
| 1598 |
|
|
Pragma_Universal_Data,
|
| 1599 |
|
|
Pragma_Unsuppress,
|
| 1600 |
|
|
Pragma_Use_VADS_Size,
|
| 1601 |
|
|
Pragma_Validity_Checks,
|
| 1602 |
|
|
Pragma_Warnings,
|
| 1603 |
|
|
Pragma_Wide_Character_Encoding,
|
| 1604 |
|
|
|
| 1605 |
|
|
-- Remaining (non-configuration) pragmas
|
| 1606 |
|
|
|
| 1607 |
|
|
Pragma_Abort_Defer,
|
| 1608 |
|
|
Pragma_All_Calls_Remote,
|
| 1609 |
|
|
Pragma_Assert,
|
| 1610 |
|
|
Pragma_Asynchronous,
|
| 1611 |
|
|
Pragma_Atomic,
|
| 1612 |
|
|
Pragma_Atomic_Components,
|
| 1613 |
|
|
Pragma_Attach_Handler,
|
| 1614 |
|
|
Pragma_Check,
|
| 1615 |
|
|
Pragma_CIL_Constructor,
|
| 1616 |
|
|
Pragma_Comment,
|
| 1617 |
|
|
Pragma_Common_Object,
|
| 1618 |
|
|
Pragma_Complete_Representation,
|
| 1619 |
|
|
Pragma_Complex_Representation,
|
| 1620 |
|
|
Pragma_Controlled,
|
| 1621 |
|
|
Pragma_Convention,
|
| 1622 |
|
|
Pragma_CPP_Class,
|
| 1623 |
|
|
Pragma_CPP_Constructor,
|
| 1624 |
|
|
Pragma_CPP_Virtual,
|
| 1625 |
|
|
Pragma_CPP_Vtable,
|
| 1626 |
|
|
Pragma_CPU,
|
| 1627 |
|
|
Pragma_Debug,
|
| 1628 |
|
|
Pragma_Elaborate,
|
| 1629 |
|
|
Pragma_Elaborate_All,
|
| 1630 |
|
|
Pragma_Elaborate_Body,
|
| 1631 |
|
|
Pragma_Export,
|
| 1632 |
|
|
Pragma_Export_Exception,
|
| 1633 |
|
|
Pragma_Export_Function,
|
| 1634 |
|
|
Pragma_Export_Object,
|
| 1635 |
|
|
Pragma_Export_Procedure,
|
| 1636 |
|
|
Pragma_Export_Value,
|
| 1637 |
|
|
Pragma_Export_Valued_Procedure,
|
| 1638 |
|
|
Pragma_External,
|
| 1639 |
|
|
Pragma_Finalize_Storage_Only,
|
| 1640 |
|
|
Pragma_Ident,
|
| 1641 |
|
|
Pragma_Implementation_Defined,
|
| 1642 |
|
|
Pragma_Implemented,
|
| 1643 |
|
|
Pragma_Import,
|
| 1644 |
|
|
Pragma_Import_Exception,
|
| 1645 |
|
|
Pragma_Import_Function,
|
| 1646 |
|
|
Pragma_Import_Object,
|
| 1647 |
|
|
Pragma_Import_Procedure,
|
| 1648 |
|
|
Pragma_Import_Valued_Procedure,
|
| 1649 |
|
|
Pragma_Independent,
|
| 1650 |
|
|
Pragma_Independent_Components,
|
| 1651 |
|
|
Pragma_Inline,
|
| 1652 |
|
|
Pragma_Inline_Always,
|
| 1653 |
|
|
Pragma_Inline_Generic,
|
| 1654 |
|
|
Pragma_Inspection_Point,
|
| 1655 |
|
|
Pragma_Interface_Name,
|
| 1656 |
|
|
Pragma_Interrupt_Handler,
|
| 1657 |
|
|
Pragma_Interrupt_Priority,
|
| 1658 |
|
|
Pragma_Invariant,
|
| 1659 |
|
|
Pragma_Java_Constructor,
|
| 1660 |
|
|
Pragma_Java_Interface,
|
| 1661 |
|
|
Pragma_Keep_Names,
|
| 1662 |
|
|
Pragma_Link_With,
|
| 1663 |
|
|
Pragma_Linker_Alias,
|
| 1664 |
|
|
Pragma_Linker_Constructor,
|
| 1665 |
|
|
Pragma_Linker_Destructor,
|
| 1666 |
|
|
Pragma_Linker_Options,
|
| 1667 |
|
|
Pragma_Linker_Section,
|
| 1668 |
|
|
Pragma_List,
|
| 1669 |
|
|
Pragma_Machine_Attribute,
|
| 1670 |
|
|
Pragma_Main,
|
| 1671 |
|
|
Pragma_Main_Storage,
|
| 1672 |
|
|
Pragma_Memory_Size,
|
| 1673 |
|
|
Pragma_No_Body,
|
| 1674 |
|
|
Pragma_No_Return,
|
| 1675 |
|
|
Pragma_Obsolescent,
|
| 1676 |
|
|
Pragma_Optimize,
|
| 1677 |
|
|
Pragma_Ordered,
|
| 1678 |
|
|
Pragma_Pack,
|
| 1679 |
|
|
Pragma_Page,
|
| 1680 |
|
|
Pragma_Passive,
|
| 1681 |
|
|
Pragma_Postcondition,
|
| 1682 |
|
|
Pragma_Precondition,
|
| 1683 |
|
|
Pragma_Predicate,
|
| 1684 |
|
|
Pragma_Preelaborable_Initialization,
|
| 1685 |
|
|
Pragma_Preelaborate,
|
| 1686 |
|
|
Pragma_Preelaborate_05,
|
| 1687 |
|
|
Pragma_Psect_Object,
|
| 1688 |
|
|
Pragma_Pure,
|
| 1689 |
|
|
Pragma_Pure_05,
|
| 1690 |
|
|
Pragma_Pure_12,
|
| 1691 |
|
|
Pragma_Pure_Function,
|
| 1692 |
|
|
Pragma_Relative_Deadline,
|
| 1693 |
|
|
Pragma_Remote_Access_Type,
|
| 1694 |
|
|
Pragma_Remote_Call_Interface,
|
| 1695 |
|
|
Pragma_Remote_Types,
|
| 1696 |
|
|
Pragma_Share_Generic,
|
| 1697 |
|
|
Pragma_Shared,
|
| 1698 |
|
|
Pragma_Shared_Passive,
|
| 1699 |
|
|
Pragma_Simple_Storage_Pool_Type,
|
| 1700 |
|
|
Pragma_Source_Reference,
|
| 1701 |
|
|
Pragma_Static_Elaboration_Desired,
|
| 1702 |
|
|
Pragma_Stream_Convert,
|
| 1703 |
|
|
Pragma_Subtitle,
|
| 1704 |
|
|
Pragma_Suppress_All,
|
| 1705 |
|
|
Pragma_Suppress_Debug_Info,
|
| 1706 |
|
|
Pragma_Suppress_Initialization,
|
| 1707 |
|
|
Pragma_System_Name,
|
| 1708 |
|
|
Pragma_Test_Case,
|
| 1709 |
|
|
Pragma_Task_Info,
|
| 1710 |
|
|
Pragma_Task_Name,
|
| 1711 |
|
|
Pragma_Task_Storage,
|
| 1712 |
|
|
Pragma_Thread_Local_Storage,
|
| 1713 |
|
|
Pragma_Time_Slice,
|
| 1714 |
|
|
Pragma_Title,
|
| 1715 |
|
|
Pragma_Unchecked_Union,
|
| 1716 |
|
|
Pragma_Unimplemented_Unit,
|
| 1717 |
|
|
Pragma_Universal_Aliasing,
|
| 1718 |
|
|
Pragma_Unmodified,
|
| 1719 |
|
|
Pragma_Unreferenced,
|
| 1720 |
|
|
Pragma_Unreferenced_Objects,
|
| 1721 |
|
|
Pragma_Unreserve_All_Interrupts,
|
| 1722 |
|
|
Pragma_Volatile,
|
| 1723 |
|
|
Pragma_Volatile_Components,
|
| 1724 |
|
|
Pragma_Weak_External,
|
| 1725 |
|
|
|
| 1726 |
|
|
-- The following pragmas are on their own, out of order, because of the
|
| 1727 |
|
|
-- special processing required to deal with the fact that their names
|
| 1728 |
|
|
-- match existing attribute names.
|
| 1729 |
|
|
|
| 1730 |
|
|
Pragma_AST_Entry,
|
| 1731 |
|
|
Pragma_Fast_Math,
|
| 1732 |
|
|
Pragma_Interface,
|
| 1733 |
|
|
Pragma_Priority,
|
| 1734 |
|
|
Pragma_Storage_Size,
|
| 1735 |
|
|
Pragma_Storage_Unit,
|
| 1736 |
|
|
|
| 1737 |
|
|
-- The value to represent an unknown or unrecognized pragma
|
| 1738 |
|
|
|
| 1739 |
|
|
Unknown_Pragma);
|
| 1740 |
|
|
|
| 1741 |
|
|
-----------------------------------
|
| 1742 |
|
|
-- Queuing Policy ID definitions --
|
| 1743 |
|
|
-----------------------------------
|
| 1744 |
|
|
|
| 1745 |
|
|
type Queuing_Policy_Id is (
|
| 1746 |
|
|
Queuing_Policy_FIFO_Queuing,
|
| 1747 |
|
|
Queuing_Policy_Priority_Queuing);
|
| 1748 |
|
|
|
| 1749 |
|
|
--------------------------------------------
|
| 1750 |
|
|
-- Task Dispatching Policy ID definitions --
|
| 1751 |
|
|
--------------------------------------------
|
| 1752 |
|
|
|
| 1753 |
|
|
type Task_Dispatching_Policy_Id is (
|
| 1754 |
|
|
Task_Dispatching_FIFO_Within_Priorities);
|
| 1755 |
|
|
-- Id values used to identify task dispatching policies
|
| 1756 |
|
|
|
| 1757 |
|
|
-----------------
|
| 1758 |
|
|
-- Subprograms --
|
| 1759 |
|
|
-----------------
|
| 1760 |
|
|
|
| 1761 |
|
|
procedure Initialize;
|
| 1762 |
|
|
-- Called to initialize the preset names in the names table
|
| 1763 |
|
|
|
| 1764 |
|
|
function Is_Attribute_Name (N : Name_Id) return Boolean;
|
| 1765 |
|
|
-- Test to see if the name N is the name of a recognized attribute. Note
|
| 1766 |
|
|
-- that Name_Elab_Subp_Body returns False if not operating in CodePeer
|
| 1767 |
|
|
-- mode. This is the mechanism for considering this pragma illegal in
|
| 1768 |
|
|
-- normal GNAT programs.
|
| 1769 |
|
|
|
| 1770 |
|
|
function Is_Entity_Attribute_Name (N : Name_Id) return Boolean;
|
| 1771 |
|
|
-- Test to see if the name N is the name of a recognized entity attribute,
|
| 1772 |
|
|
-- i.e. an attribute reference that returns an entity.
|
| 1773 |
|
|
|
| 1774 |
|
|
function Is_Procedure_Attribute_Name (N : Name_Id) return Boolean;
|
| 1775 |
|
|
-- Test to see if the name N is the name of a recognized attribute that
|
| 1776 |
|
|
-- designates a procedure (and can therefore appear as a statement).
|
| 1777 |
|
|
|
| 1778 |
|
|
function Is_Function_Attribute_Name (N : Name_Id) return Boolean;
|
| 1779 |
|
|
-- Test to see if the name N is the name of a recognized attribute
|
| 1780 |
|
|
-- that designates a renameable function, and can therefore appear in
|
| 1781 |
|
|
-- a renaming statement. Note that not all attributes designating
|
| 1782 |
|
|
-- functions are renamable, in particular, those returning a universal
|
| 1783 |
|
|
-- value cannot be renamed.
|
| 1784 |
|
|
|
| 1785 |
|
|
function Is_Type_Attribute_Name (N : Name_Id) return Boolean;
|
| 1786 |
|
|
-- Test to see if the name N is the name of a recognized type attribute,
|
| 1787 |
|
|
-- i.e. an attribute reference that returns a type
|
| 1788 |
|
|
|
| 1789 |
|
|
function Is_Convention_Name (N : Name_Id) return Boolean;
|
| 1790 |
|
|
-- Test to see if the name N is the name of one of the recognized
|
| 1791 |
|
|
-- language conventions, as required by pragma Convention, Import,
|
| 1792 |
|
|
-- Export, Interface. Returns True if so. Also returns True for a
|
| 1793 |
|
|
-- name that has been specified by a Convention_Identifier pragma.
|
| 1794 |
|
|
-- If neither case holds, returns False.
|
| 1795 |
|
|
|
| 1796 |
|
|
function Is_Keyword_Name (N : Name_Id) return Boolean;
|
| 1797 |
|
|
-- Test to see if the name N is one of the (reserved) keyword names. This
|
| 1798 |
|
|
-- includes all the keywords defined in the Ada standard (taking into
|
| 1799 |
|
|
-- effect the Ada version). It also includes additional keywords in
|
| 1800 |
|
|
-- contexts where additional keywords have been added. For example, in the
|
| 1801 |
|
|
-- context of parsing project files, keywords such as PROJECT are included.
|
| 1802 |
|
|
|
| 1803 |
|
|
function Is_Locking_Policy_Name (N : Name_Id) return Boolean;
|
| 1804 |
|
|
-- Test to see if the name N is the name of a recognized locking policy
|
| 1805 |
|
|
|
| 1806 |
|
|
function Is_Operator_Symbol_Name (N : Name_Id) return Boolean;
|
| 1807 |
|
|
-- Test to see if the name N is the name of an operator symbol
|
| 1808 |
|
|
|
| 1809 |
|
|
function Is_Pragma_Name (N : Name_Id) return Boolean;
|
| 1810 |
|
|
-- Test to see if the name N is the name of a recognized pragma. Note that
|
| 1811 |
|
|
-- pragmas AST_Entry, Fast_Math, Priority, Storage_Size, and Storage_Unit
|
| 1812 |
|
|
-- are recognized as pragmas by this function even though their names are
|
| 1813 |
|
|
-- separate from the other pragma names. For this reason, clients should
|
| 1814 |
|
|
-- always use this function, rather than do range tests on Name_Id values.
|
| 1815 |
|
|
|
| 1816 |
|
|
function Is_Configuration_Pragma_Name (N : Name_Id) return Boolean;
|
| 1817 |
|
|
-- Test to see if the name N is the name of a recognized configuration
|
| 1818 |
|
|
-- pragma. Note that pragma Fast_Math is recognized as a configuration
|
| 1819 |
|
|
-- pragma by this function even though its name is separate from other
|
| 1820 |
|
|
-- configuration pragma names. For this reason, clients should always
|
| 1821 |
|
|
-- use this function, rather than do range tests on Name_Id values.
|
| 1822 |
|
|
|
| 1823 |
|
|
function Is_Queuing_Policy_Name (N : Name_Id) return Boolean;
|
| 1824 |
|
|
-- Test to see if the name N is the name of a recognized queuing policy
|
| 1825 |
|
|
|
| 1826 |
|
|
function Is_Task_Dispatching_Policy_Name (N : Name_Id) return Boolean;
|
| 1827 |
|
|
-- Test to see if the name N is the name of a recognized task
|
| 1828 |
|
|
-- dispatching policy.
|
| 1829 |
|
|
|
| 1830 |
|
|
function Get_Attribute_Id (N : Name_Id) return Attribute_Id;
|
| 1831 |
|
|
-- Returns Id of attribute corresponding to given name. It is an error to
|
| 1832 |
|
|
-- call this function with a name that is not the name of a attribute.
|
| 1833 |
|
|
|
| 1834 |
|
|
function Get_Convention_Id (N : Name_Id) return Convention_Id;
|
| 1835 |
|
|
-- Returns Id of language convention corresponding to given name. It is
|
| 1836 |
|
|
-- an error to call this function with a name that is not the name of a
|
| 1837 |
|
|
-- convention, or one that has been previously recorded using a call to
|
| 1838 |
|
|
-- Record_Convention_Identifier.
|
| 1839 |
|
|
|
| 1840 |
|
|
function Get_Convention_Name (C : Convention_Id) return Name_Id;
|
| 1841 |
|
|
-- Returns the name of language convention corresponding to given
|
| 1842 |
|
|
-- convention id.
|
| 1843 |
|
|
|
| 1844 |
|
|
function Get_Locking_Policy_Id (N : Name_Id) return Locking_Policy_Id;
|
| 1845 |
|
|
-- Returns Id of locking policy corresponding to given name. It is an error
|
| 1846 |
|
|
-- to call this function with a name that is not the name of a check.
|
| 1847 |
|
|
|
| 1848 |
|
|
function Get_Pragma_Id (N : Name_Id) return Pragma_Id;
|
| 1849 |
|
|
-- Returns Id of pragma corresponding to given name. Returns Unknown_Pragma
|
| 1850 |
|
|
-- if N is not a name of a known (Ada defined or GNAT-specific) pragma.
|
| 1851 |
|
|
-- Note that the function also works correctly for names of pragmas that
|
| 1852 |
|
|
-- are not included in the main list of pragma Names (AST_Entry, Priority,
|
| 1853 |
|
|
-- Storage_Size, and Storage_Unit (e.g. Name_Storage_Size returns
|
| 1854 |
|
|
-- Pragma_Storage_Size).
|
| 1855 |
|
|
|
| 1856 |
|
|
function Get_Queuing_Policy_Id (N : Name_Id) return Queuing_Policy_Id;
|
| 1857 |
|
|
-- Returns Id of queuing policy corresponding to given name. It is an error
|
| 1858 |
|
|
-- to call this function with a name that is not the name of a check.
|
| 1859 |
|
|
|
| 1860 |
|
|
function Get_Task_Dispatching_Policy_Id
|
| 1861 |
|
|
(N : Name_Id) return Task_Dispatching_Policy_Id;
|
| 1862 |
|
|
-- Returns Id of task dispatching policy corresponding to given name. It
|
| 1863 |
|
|
-- is an error to call this function with a name that is not the name of
|
| 1864 |
|
|
-- a defined check.
|
| 1865 |
|
|
|
| 1866 |
|
|
procedure Record_Convention_Identifier
|
| 1867 |
|
|
(Id : Name_Id;
|
| 1868 |
|
|
Convention : Convention_Id);
|
| 1869 |
|
|
-- A call to this procedure, resulting from an occurrence of a pragma
|
| 1870 |
|
|
-- Convention_Identifier, records that from now on an occurrence of Id
|
| 1871 |
|
|
-- will be recognized as a name for the specified convention.
|
| 1872 |
|
|
|
| 1873 |
|
|
private
|
| 1874 |
|
|
pragma Inline (Is_Attribute_Name);
|
| 1875 |
|
|
pragma Inline (Is_Entity_Attribute_Name);
|
| 1876 |
|
|
pragma Inline (Is_Type_Attribute_Name);
|
| 1877 |
|
|
pragma Inline (Is_Locking_Policy_Name);
|
| 1878 |
|
|
pragma Inline (Is_Operator_Symbol_Name);
|
| 1879 |
|
|
pragma Inline (Is_Queuing_Policy_Name);
|
| 1880 |
|
|
pragma Inline (Is_Pragma_Name);
|
| 1881 |
|
|
pragma Inline (Is_Task_Dispatching_Policy_Name);
|
| 1882 |
|
|
|
| 1883 |
|
|
end Snames;
|