* gimplify.c (find_single_pointer_decl_1): New static function.
[official-gcc.git] / gcc / ada / exp_dbug.ads
blob9100d9c2fab727992a384dfdc534c270d15c5d5a
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- E X P _ D B U G --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 1996-2005 Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 2, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
20 -- Boston, MA 02110-1301, USA. --
21 -- --
22 -- GNAT was originally developed by the GNAT team at New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 -- --
25 ------------------------------------------------------------------------------
27 -- Expand routines for generation of special declarations used by the
28 -- debugger. In accordance with the Dwarf 2.2 specification, certain
29 -- type names are encoded to provide information to the debugger.
31 with Types; use Types;
32 with Uintp; use Uintp;
34 package Exp_Dbug is
36 -----------------------------------------------------
37 -- Encoding and Qualification of Names of Entities --
38 -----------------------------------------------------
40 -- This section describes how the names of entities are encoded in
41 -- the generated debugging information.
43 -- An entity in Ada has a name of the form X.Y.Z ... E where X,Y,Z
44 -- are the enclosing scopes (not including Standard at the start).
46 -- The encoding of the name follows this basic qualified naming scheme,
47 -- where the encoding of individual entity names is as described in
48 -- Namet (i.e. in particular names present in the original source are
49 -- folded to all lower case, with upper half and wide characters encoded
50 -- as described in Namet). Upper case letters are used only for entities
51 -- generated by the compiler.
53 -- There are two cases, global entities, and local entities. In more
54 -- formal terms, local entities are those which have a dynamic enclosing
55 -- scope, and global entities are at the library level, except that we
56 -- always consider procedures to be global entities, even if they are
57 -- nested (that's because at the debugger level a procedure name refers
58 -- to the code, and the code is indeed a global entity, including the
59 -- case of nested procedures.) In addition, we also consider all types
60 -- to be global entities, even if they are defined within a procedure.
62 -- The reason for treating all type names as global entities is that
63 -- a number of our type encodings work by having related type names,
64 -- and we need the full qualification to keep this unique.
66 -- For global entities, the encoded name includes all components of the
67 -- fully expanded name (but omitting Standard at the start). For example,
68 -- if a library level child package P.Q has an embedded package R, and
69 -- there is an entity in this embdded package whose name is S, the encoded
70 -- name will include the components p.q.r.s.
72 -- For local entities, the encoded name only includes the components
73 -- up to the enclosing dynamic scope (other than a block). At run time,
74 -- such a dynamic scope is a subprogram, and the debugging formats know
75 -- about local variables of procedures, so it is not necessary to have
76 -- full qualification for such entities. In particular this means that
77 -- direct local variables of a procedure are not qualified.
79 -- As an example of the local name convention, consider a procedure V.W
80 -- with a local variable X, and a nested block Y containing an entity
81 -- Z. The fully qualified names of the entities X and Z are:
83 -- V.W.X
84 -- V.W.Y.Z
86 -- but since V.W is a subprogram, the encoded names will end up
87 -- encoding only
89 -- x
90 -- y.z
92 -- The separating dots are translated into double underscores
94 -----------------------------
95 -- Handling of Overloading --
96 -----------------------------
98 -- The above scheme is incomplete with respect to overloaded
99 -- subprograms, since overloading can legitimately result in a
100 -- case of two entities with exactly the same fully qualified names.
101 -- To distinguish between entries in a set of overloaded subprograms,
102 -- the encoded names are serialized by adding the suffix:
104 -- __nn (two underscores)
106 -- where nn is a serial number (2 for the second overloaded function,
107 -- 3 for the third, etc.). A suffix of __1 is always omitted (i.e. no
108 -- suffix implies the first instance).
110 -- These names are prefixed by the normal full qualification. So
111 -- for example, the third instance of the subprogram qrs in package
112 -- yz would have the name:
114 -- yz__qrs__3
116 -- A more subtle case arises with entities declared within overloaded
117 -- subprograms. If we have two overloaded subprograms, and both declare
118 -- an entity xyz, then the fully expanded name of the two xyz's is the
119 -- same. To distinguish these, we add the same __n suffix at the end of
120 -- the inner entity names.
122 -- In more complex cases, we can have multiple levels of overloading,
123 -- and we must make sure to distinguish which final declarative region
124 -- we are talking about. For this purpose, we use a more complex suffix
125 -- which has the form:
127 -- __nn_nn_nn ...
129 -- where the nn values are the homonym numbers as needed for any of
130 -- the qualifying entities, separated by a single underscore. If all
131 -- the nn values are 1, the suffix is omitted, Otherwise the suffix
132 -- is present (including any values of 1). The following example
133 -- shows how this suffixing works.
135 -- package body Yz is
136 -- procedure Qrs is -- Name is yz__qrs
137 -- procedure Tuv is ... end; -- Name is yz__qrs__tuv
138 -- begin ... end Qrs;
140 -- procedure Qrs (X: Int) is -- Name is yz__qrs__2
141 -- procedure Tuv is ... end; -- Name is yz__qrs__tuv__2_1
142 -- procedure Tuv (X: Int) is -- Name is yz__qrs__tuv__2_2
143 -- begin ... end Tuv;
145 -- procedure Tuv (X: Float) is -- Name is yz__qrs__tuv__2_3
146 -- type m is new float; -- Name is yz__qrs__tuv__m__2_3
147 -- begin ... end Tuv;
148 -- begin ... end Qrs;
149 -- end Yz;
151 --------------------
152 -- Operator Names --
153 --------------------
155 -- The above rules applied to operator names would result in names
156 -- with quotation marks, which are not typically allowed by assemblers
157 -- and linkers, and even if allowed would be odd and hard to deal with.
158 -- To avoid this problem, operator names are encoded as follows:
160 -- Oabs abs
161 -- Oand and
162 -- Omod mod
163 -- Onot not
164 -- Oor or
165 -- Orem rem
166 -- Oxor xor
167 -- Oeq =
168 -- One /=
169 -- Olt <
170 -- Ole <=
171 -- Ogt >
172 -- Oge >=
173 -- Oadd +
174 -- Osubtract -
175 -- Oconcat &
176 -- Omultiply *
177 -- Odivide /
178 -- Oexpon **
180 -- These names are prefixed by the normal full qualification, and
181 -- suffixed by the overloading identification. So for example, the
182 -- second operator "=" defined in package Extra.Messages would
183 -- have the name:
185 -- extra__messages__Oeq__2
187 ----------------------------------
188 -- Resolving Other Name Clashes --
189 ----------------------------------
191 -- It might be thought that the above scheme is complete, but in Ada 95,
192 -- full qualification is insufficient to uniquely identify an entity
193 -- in the program, even if it is not an overloaded subprogram. There
194 -- are two possible confusions:
196 -- a.b
198 -- interpretation 1: entity b in body of package a
199 -- interpretation 2: child procedure b of package a
201 -- a.b.c
203 -- interpretation 1: entity c in child package a.b
204 -- interpretation 2: entity c in nested package b in body of a
206 -- It is perfectly legal in both cases for both interpretations to
207 -- be valid within a single program. This is a bit of a surprise since
208 -- certainly in Ada 83, full qualification was sufficient, but not in
209 -- Ada 95. The result is that the above scheme can result in duplicate
210 -- names. This would not be so bad if the effect were just restricted
211 -- to debugging information, but in fact in both the above cases, it
212 -- is possible for both symbols to be external names, and so we have
213 -- a real problem of name clashes.
215 -- To deal with this situation, we provide two additional encoding
216 -- rules for names
218 -- First: all library subprogram names are preceded by the string
219 -- _ada_ (which causes no duplications, since normal Ada names can
220 -- never start with an underscore. This not only solves the first
221 -- case of duplication, but also solves another pragmatic problem
222 -- which is that otherwise Ada procedures can generate names that
223 -- clash with existing system function names. Most notably, we can
224 -- have clashes in the case of procedure Main with the C main that
225 -- in some systems is always present.
227 -- Second, for the case where nested packages declared in package
228 -- bodies can cause trouble, we add a suffix which shows which
229 -- entities in the list are body-nested packages, i.e. packages
230 -- whose spec is within a package body. The rules are as follows,
231 -- given a list of names in a qualified name name1.name2....
233 -- If none are body-nested package entities, then there is no suffix
235 -- If at least one is a body-nested package entity, then the suffix
236 -- is X followed by a string of b's and n's (b = body-nested package
237 -- entity, n = not a body-nested package).
239 -- There is one element in this string for each entity in the encoded
240 -- expanded name except the first (the rules are such that the first
241 -- entity of the encoded expanded name can never be a body-nested'
242 -- package. Trailing n's are omitted, as is the last b (there must
243 -- be at least one b, or we would not be generating a suffix at all).
245 -- For example, suppose we have
247 -- package x is
248 -- pragma Elaborate_Body;
249 -- m1 : integer; -- #1
250 -- end x;
252 -- package body x is
253 -- package y is m2 : integer; end y; -- #2
254 -- package body y is
255 -- package z is r : integer; end z; -- #3
256 -- end;
257 -- m3 : integer; -- #4
258 -- end x;
260 -- package x.y is
261 -- pragma Elaborate_Body;
262 -- m2 : integer; -- #5
263 -- end x.y;
265 -- package body x.y is
266 -- m3 : integer; -- #6
267 -- procedure j is -- #7
268 -- package k is
269 -- z : integer; -- #8
270 -- end k;
271 -- begin
272 -- null;
273 -- end j;
274 -- end x.y;
276 -- procedure x.m3 is begin null; end; -- #9
278 -- Then the encodings would be:
280 -- #1. x__m1 (no BNPE's in sight)
281 -- #2. x__y__m2X (y is a BNPE)
282 -- #3. x__y__z__rXb (y is a BNPE, so is z)
283 -- #4. x__m3 (no BNPE's in sight)
284 -- #5. x__y__m2 (no BNPE's in sight)
285 -- #6. x__y__m3 (no BNPE's in signt)
286 -- #7. x__y__j (no BNPE's in sight)
287 -- #8. k__z (no BNPE's, only up to procedure)
288 -- #9 _ada_x__m3 (library level subprogram)
290 -- Note that we have instances here of both kind of potential name
291 -- clashes, and the above examples show how the encodings avoid the
292 -- clash as follows:
294 -- Lines #4 and #9 both refer to the entity x.m3, but #9 is a library
295 -- level subprogram, so it is preceded by the string _ada_ which acts
296 -- to distinguish it from the package body entity.
298 -- Lines #2 and #5 both refer to the entity x.y.m2, but the first
299 -- instance is inside the body-nested package y, so there is an X
300 -- suffix to distinguish it from the child library entity.
302 -- Note that enumeration literals never need Xb type suffixes, since
303 -- they are never referenced using global external names.
305 ---------------------
306 -- Interface Names --
307 ---------------------
309 -- Note: if an interface name is present, then the external name
310 -- is taken from the specified interface name. Given the current
311 -- limitations of the gcc backend, this means that the debugging
312 -- name is also set to the interface name, but conceptually, it
313 -- would be possible (and indeed desirable) to have the debugging
314 -- information still use the Ada name as qualified above, so we
315 -- still fully qualify the name in the front end.
317 -------------------------------------
318 -- Encodings Related to Task Types --
319 -------------------------------------
321 -- Each task object defined by a single task declaration is associated
322 -- with a prefix that is used to qualify procedures defined in that
323 -- task. Given
325 -- package body P is
326 -- task body TaskObj is
327 -- procedure F1 is ... end;
328 -- begin
329 -- B;
330 -- end TaskObj;
331 -- end P;
333 -- The name of subprogram TaskObj.F1 is encoded as p__taskobjTK__f1,
334 -- The body, B, is contained in a subprogram whose name is
335 -- p__taskobjTKB.
337 ------------------------------------------
338 -- Encodings Related to Protected Types --
339 ------------------------------------------
341 -- Each protected type has an associated record type, that describes
342 -- the actual layout of the private data. In addition to the private
343 -- components of the type, the Corresponding_Record_Type includes one
344 -- component of type Protection, which is the actual lock structure.
345 -- The run-time size of the protected type is the size of the corres-
346 -- ponding record.
348 -- For a protected type prot, the Corresponding_Record_Type is encoded
349 -- as protV.
351 -- The operations of a protected type are encoded as follows: each
352 -- operation results in two subprograms, a locking one that is called
353 -- from outside of the object, and a non-locking one that is used for
354 -- calls from other operations on the same object. The locking operation
355 -- simply acquires the lock, and then calls the non-locking version.
356 -- The names of all of these have a prefix constructed from the name of
357 -- the type, and a suffix which is P or N, depending on whether this is
358 -- the protected/non-locking version of the operation.
360 -- Operations generated for protected entries follow the same encoding.
361 -- Each entry results in two suprograms: a procedure that holds the
362 -- entry body, and a function that holds the evaluation of the barrier.
363 -- The names of these subprograms include the prefix 'E' or 'B' res-
364 -- pectively. The names also include a numeric suffix to render them
365 -- unique in the presence of overloaded entries.
367 -- Given the declaration:
369 -- protected type Lock is
370 -- function Get return Integer;
371 -- procedure Set (X: Integer);
372 -- entry Update (Val : Integer);
373 -- private
374 -- Value : Integer := 0;
375 -- end Lock;
377 -- the following operations are created:
379 -- lock_getN
380 -- lock_getP,
382 -- lock_setN
383 -- lock_setP
385 -- lock_update1sE
386 -- lock_udpate2sB
388 -- If the protected type implements at least one interface, the
389 -- following additional operations are created:
391 -- lock_get
393 -- lock_set
395 -- These operations are used to ensure overriding of interface level
396 -- subprograms and proper dispatching on interface class-wide objects.
397 -- The bodies of these operations contain calls to their respective
398 -- protected versions:
400 -- function lock_get return Integer is
401 -- begin
402 -- return lock_getP;
403 -- end lock_get;
405 -- procedure lock_set (X : Integer) is
406 -- begin
407 -- lock_setP (X);
408 -- end lock_set;
410 ----------------------------------------------------
411 -- Conversion between Entities and External Names --
412 ----------------------------------------------------
414 No_Dollar_In_Label : constant Boolean := True;
415 -- True iff the target does not allow dollar signs ("$") in external names
416 -- ??? We want to migrate all platforms to use the same convention.
417 -- As a first step, we force this constant to always be True. This
418 -- constant will eventually be deleted after we have verified that
419 -- the migration does not cause any unforseen adverse impact.
420 -- We chose "__" because it is supported on all platforms, which is
421 -- not the case of "$".
423 procedure Get_External_Name
424 (Entity : Entity_Id;
425 Has_Suffix : Boolean);
426 -- Set Name_Buffer and Name_Len to the external name of entity E.
427 -- The external name is the Interface_Name, if specified, unless
428 -- the entity has an address clause or a suffix.
430 -- If the Interface is not present, or not used, the external name
431 -- is the concatenation of:
433 -- - the string "_ada_", if the entity is a library subprogram,
434 -- - the names of any enclosing scopes, each followed by "__",
435 -- or "X_" if the next entity is a subunit)
436 -- - the name of the entity
437 -- - the string "$" (or "__" if target does not allow "$"), followed
438 -- by homonym suffix, if the entity is an overloaded subprogram
439 -- or is defined within an overloaded subprogram.
441 procedure Get_External_Name_With_Suffix
442 (Entity : Entity_Id;
443 Suffix : String);
444 -- Set Name_Buffer and Name_Len to the external name of entity E.
445 -- If Suffix is the empty string the external name is as above,
446 -- otherwise the external name is the concatenation of:
448 -- - the string "_ada_", if the entity is a library subprogram,
449 -- - the names of any enclosing scopes, each followed by "__",
450 -- or "X_" if the next entity is a subunit)
451 -- - the name of the entity
452 -- - the string "$" (or "__" if target does not allow "$"), followed
453 -- by homonym suffix, if the entity is an overloaded subprogram
454 -- or is defined within an overloaded subprogram.
455 -- - the string "___" followed by Suffix
457 -- Note that a call to this procedure has no effect if we are not
458 -- generating code, since the necessary information for computing the
459 -- proper encoded name is not available in this case.
461 --------------------------------------------
462 -- Subprograms for Handling Qualification --
463 --------------------------------------------
465 procedure Qualify_Entity_Names (N : Node_Id);
466 -- Given a node N, that represents a block, subprogram body, or package
467 -- body or spec, or protected or task type, sets a fully qualified name
468 -- for the defining entity of given construct, and also sets fully
469 -- qualified names for all enclosed entities of the construct (using
470 -- First_Entity/Next_Entity). Note that the actual modifications of the
471 -- names is postponed till a subsequent call to Qualify_All_Entity_Names.
472 -- Note: this routine does not deal with prepending _ada_ to library
473 -- subprogram names. The reason for this is that we only prepend _ada_
474 -- to the library entity itself, and not to names built from this name.
476 procedure Qualify_All_Entity_Names;
477 -- When Qualify_Entity_Names is called, no actual name changes are made,
478 -- i.e. the actual calls to Qualify_Entity_Name are deferred until a call
479 -- is made to this procedure. The reason for this deferral is that when
480 -- names are changed semantic processing may be affected. By deferring
481 -- the changes till just before gigi is called, we avoid any concerns
482 -- about such effects. Gigi itself does not use the names except for
483 -- output of names for debugging purposes (which is why we are doing
484 -- the name changes in the first place.
486 -- Note: the routines Get_Unqualified_[Decoded]_Name_String in Namet
487 -- are useful to remove qualification from a name qualified by the
488 -- call to Qualify_All_Entity_Names.
490 --------------------------------
491 -- Handling of Numeric Values --
492 --------------------------------
494 -- All numeric values here are encoded as strings of decimal digits.
495 -- Only integer values need to be encoded. A negative value is encoded
496 -- as the corresponding positive value followed by a lower case m for
497 -- minus to indicate that the value is negative (e.g. 2m for -2).
499 -------------------------
500 -- Type Name Encodings --
501 -------------------------
503 -- In the following typ is the name of the type as normally encoded by
504 -- the debugger rules, i.e. a non-qualified name, all in lower case,
505 -- with standard encoding of upper half and wide characters
507 ------------------------
508 -- Encapsulated Types --
509 ------------------------
511 -- In some cases, the compiler encapsulates a type by wrapping it in
512 -- a structure. For example, this is used when a size or alignment
513 -- specification requires a larger type. Consider:
515 -- type y is mod 2 ** 64;
516 -- for y'size use 256;
518 -- In this case the compile generates a structure type y___PAD, which
519 -- has a single field whose name is F. This single field is 64 bits
520 -- long and contains the actual value. This kind of padding is used
521 -- when the logical value to be stored is shorter than the object in
522 -- which it is allocated. For example if a size clause is used to set
523 -- a size of 256 for a signed integer value, then a typical choice is
524 -- to wrap a 64-bit integer in a 256 bit PAD structure.
526 -- A similar encapsulation is done for some packed array types,
527 -- in which case the structure type is y___JM and the field name
528 -- is OBJECT. This is used in the case of a packed array stored
529 -- in modular representation (see section on representation of
530 -- packed array objects). In this case the JM wrapping is used to
531 -- achieve correct positioning of the packed array value (left or
532 -- right justified in its field depending on endianness.
534 -- When the debugger sees an object of a type whose name has a
535 -- suffix of ___PAD or ___JM, the type will be a record containing
536 -- a single field, and the name of that field will be all upper case.
537 -- In this case, it should look inside to get the value of the inner
538 -- field, and neither the outer structure name, nor the field name
539 -- should appear when the value is printed.
541 -----------------------
542 -- Fixed-Point Types --
543 -----------------------
545 -- Fixed-point types are encoded using a suffix that indicates the
546 -- delta and small values. The actual type itself is a normal
547 -- integer type.
549 -- typ___XF_nn_dd
550 -- typ___XF_nn_dd_nn_dd
552 -- The first form is used when small = delta. The value of delta (and
553 -- small) is given by the rational nn/dd, where nn and dd are decimal
554 -- integers.
556 -- The second form is used if the small value is different from the
557 -- delta. In this case, the first nn/dd rational value is for delta,
558 -- and the second value is for small.
560 ------------------------------
561 -- VAX Floating-Point Types --
562 ------------------------------
564 -- Vax floating-point types are represented at run time as integer
565 -- types, which are treated specially by the code generator. Their
566 -- type names are encoded with the following suffix:
568 -- typ___XFF
569 -- typ___XFD
570 -- typ___XFG
572 -- representing the Vax F Float, D Float, and G Float types. The
573 -- debugger must treat these specially. In particular, printing
574 -- these values can be achieved using the debug procedures that
575 -- are provided in package System.Vax_Float_Operations:
577 -- procedure Debug_Output_D (Arg : D);
578 -- procedure Debug_Output_F (Arg : F);
579 -- procedure Debug_Output_G (Arg : G);
581 -- These three procedures take a Vax floating-point argument, and
582 -- output a corresponding decimal representation to standard output
583 -- with no terminating line return.
585 --------------------
586 -- Discrete Types --
587 --------------------
589 -- Discrete types are coded with a suffix indicating the range in
590 -- the case where one or both of the bounds are discriminants or
591 -- variable.
593 -- Note: at the current time, we also encode compile time known
594 -- bounds if they do not match the natural machine type bounds,
595 -- but this may be removed in the future, since it is redundant
596 -- for most debugging formats. However, we do not ever need XD
597 -- encoding for enumeration base types, since here it is always
598 -- clear what the bounds are from the total number of enumeration
599 -- literals, and of course we do not need to encode the dummy XR
600 -- types generated for renamings.
602 -- typ___XD
603 -- typ___XDL_lowerbound
604 -- typ___XDU_upperbound
605 -- typ___XDLU_lowerbound__upperbound
607 -- If a discrete type is a natural machine type (i.e. its bounds
608 -- correspond in a natural manner to its size), then it is left
609 -- unencoded. The above encoding forms are used when there is a
610 -- constrained range that does not correspond to the size or that
611 -- has discriminant references or other compile time known bounds.
613 -- The first form is used if both bounds are dynamic, in which case
614 -- two constant objects are present whose names are typ___L and
615 -- typ___U in the same scope as typ, and the values of these constants
616 -- indicate the bounds. As far as the debugger is concerned, these
617 -- are simply variables that can be accessed like any other variables.
618 -- In the enumeration case, these values correspond to the Enum_Rep
619 -- values for the lower and upper bounds.
621 -- The second form is used if the upper bound is dynamic, but the
622 -- lower bound is either constant or depends on a discriminant of
623 -- the record with which the type is associated. The upper bound
624 -- is stored in a constant object of name typ___U as previously
625 -- described, but the lower bound is encoded directly into the
626 -- name as either a decimal integer, or as the discriminant name.
628 -- The third form is similarly used if the lower bound is dynamic,
629 -- but the upper bound is compile time known or a discriminant
630 -- reference, in which case the lower bound is stored in a constant
631 -- object of name typ___L, and the upper bound is encoded directly
632 -- into the name as either a decimal integer, or as the discriminant
633 -- name.
635 -- The fourth form is used if both bounds are discriminant references
636 -- or compile time known values, with the encoding first for the lower
637 -- bound, then for the upper bound, as previously described.
639 -------------------
640 -- Modular Types --
641 -------------------
643 -- A type declared
645 -- type x is mod N;
647 -- Is encoded as a subrange of an unsigned base type with lower bound
648 -- 0 and upper bound N. That is, there is no name encoding. We use
649 -- the standard encodings provided by the debugging format. Thus
650 -- we give these types a non-standard interpretation: the standard
651 -- interpretation of our encoding would not, in general, imply that
652 -- arithmetic on type x was to be performed modulo N (especially not
653 -- when N is not a power of 2).
655 ------------------
656 -- Biased Types --
657 ------------------
659 -- Only discrete types can be biased, and the fact that they are
660 -- biased is indicated by a suffix of the form:
662 -- typ___XB_lowerbound__upperbound
664 -- Here lowerbound and upperbound are decimal integers, with the
665 -- usual (postfix "m") encoding for negative numbers. Biased
666 -- types are only possible where the bounds are compile time
667 -- known, and the values are represented as unsigned offsets
668 -- from the lower bound given. For example:
670 -- type Q is range 10 .. 15;
671 -- for Q'size use 3;
673 -- The size clause will force values of type Q in memory to be
674 -- stored in biased form (e.g. 11 will be represented by the
675 -- bit pattern 001).
677 ----------------------------------------------
678 -- Record Types with Variable-Length Fields --
679 ----------------------------------------------
681 -- The debugging formats do not fully support these types, and indeed
682 -- some formats simply generate no useful information at all for such
683 -- types. In order to provide information for the debugger, gigi creates
684 -- a parallel type in the same scope with one of the names
686 -- type___XVE
687 -- type___XVU
689 -- The former name is used for a record and the latter for the union
690 -- that is made for a variant record (see below) if that record or
691 -- union has a field of variable size or if the record or union itself
692 -- has a variable size. These encodings suffix any other encodings that
693 -- that might be suffixed to the type name.
695 -- The idea here is to provide all the needed information to interpret
696 -- objects of the original type in the form of a "fixed up" type, which
697 -- is representable using the normal debugging information.
699 -- There are three cases to be dealt with. First, some fields may have
700 -- variable positions because they appear after variable-length fields.
701 -- To deal with this, we encode *all* the field bit positions of the
702 -- special ___XV type in a non-standard manner.
704 -- The idea is to encode not the position, but rather information
705 -- that allows computing the position of a field from the position
706 -- of the previous field. The algorithm for computing the actual
707 -- positions of all fields and the length of the record is as
708 -- follows. In this description, let P represent the current
709 -- bit position in the record.
711 -- 1. Initialize P to 0
713 -- 2. For each field in the record:
715 -- 2a. If an alignment is given (see below), then round P
716 -- up, if needed, to the next multiple of that alignment.
718 -- 2b. If a bit position is given, then increment P by that
719 -- amount (that is, treat it as an offset from the end of the
720 -- preceding record).
722 -- 2c. Assign P as the actual position of the field
724 -- 2d. Compute the length, L, of the represented field (see below)
725 -- and compute P'=P+L. Unless the field represents a variant part
726 -- (see below and also Variant Record Encoding), set P to P'.
728 -- The alignment, if present, is encoded in the field name of the
729 -- record, which has a suffix:
731 -- fieldname___XVAnn
733 -- where the nn after the XVA indicates the alignment value in storage
734 -- units. This encoding is present only if an alignment is present.
736 -- The size of the record described by an XVE-encoded type (in bits)
737 -- is generally the maximum value attained by P' in step 2d above,
738 -- rounded up according to the record's alignment.
740 -- Second, the variable-length fields themselves are represented by
741 -- replacing the type by a special access type. The designated type
742 -- of this access type is the original variable-length type, and the
743 -- fact that this field has been transformed in this way is signalled
744 -- by encoding the field name as:
746 -- field___XVL
748 -- where field is the original field name. If a field is both
749 -- variable-length and also needs an alignment encoding, then the
750 -- encodings are combined using:
752 -- field___XVLnn
754 -- Note: the reason that we change the type is so that the resulting
755 -- type has no variable-length fields. At least some of the formats
756 -- used for debugging information simply cannot tolerate variable-
757 -- length fields, so the encoded information would get lost.
759 -- Third, in the case of a variant record, the special union
760 -- that contains the variants is replaced by a normal C union.
761 -- In this case, the positions are all zero.
763 -- Discriminants appear before any variable-length fields that depend
764 -- on them, with one exception. In some cases, a discriminant
765 -- governing the choice of a variant clause may appear in the list
766 -- of fields of an XVE type after the entry for the variant clause
767 -- itself (this can happen in the presence of a representation clause
768 -- for the record type in the source program). However, when this
769 -- happens, the discriminant's position may be determined by first
770 -- applying the rules described in this section, ignoring the variant
771 -- clause. As a result, discriminants can always be located
772 -- independently of the variable-length fields that depend on them.
774 -- The size of the ___XVE or ___XVU record or union is set to the
775 -- alignment (in bytes) of the original object so that the debugger
776 -- can calculate the size of the original type.
778 -- As an example of this encoding, consider the declarations:
780 -- type Q is array (1 .. V1) of Float; -- alignment 4
781 -- type R is array (1 .. V2) of Long_Float; -- alignment 8
783 -- type X is record
784 -- A : Character;
785 -- B : Float;
786 -- C : String (1 .. V3);
787 -- D : Float;
788 -- E : Q;
789 -- F : R;
790 -- G : Float;
791 -- end record;
793 -- The encoded type looks like:
795 -- type anonymousQ is access Q;
796 -- type anonymousR is access R;
798 -- type X___XVE is record
799 -- A : Character; -- position contains 0
800 -- B : Float; -- position contains 24
801 -- C___XVL : access String (1 .. V3); -- position contains 0
802 -- D___XVA4 : Float; -- position contains 0
803 -- E___XVL4 : anonymousQ; -- position contains 0
804 -- F___XVL8 : anonymousR; -- position contains 0
805 -- G : Float; -- position contains 0
806 -- end record;
808 -- Any bit sizes recorded for fields other than dynamic fields and
809 -- variants are honored as for ordinary records.
811 -- Notes:
813 -- 1) The B field could also have been encoded by using a position
814 -- of zero, and an alignment of 4, but in such a case, the coding by
815 -- position is preferred (since it takes up less space). We have used
816 -- the (illegal) notation access xxx as field types in the example
817 -- above.
819 -- 2) The E field does not actually need the alignment indication
820 -- but this may not be detected in this case by the conversion
821 -- routines.
823 -- 3) Our conventions do not cover all XVE-encoded records in which
824 -- some, but not all, fields have representation clauses. Such
825 -- records may, therefore, be displayed incorrectly by debuggers.
826 -- This situation is not common.
828 -----------------------
829 -- Base Record Types --
830 -----------------------
832 -- Under certain circumstances, debuggers need two descriptions
833 -- of a record type, one that gives the actual details of the
834 -- base type's structure (as described elsewhere in these
835 -- comments) and one that may be used to obtain information
836 -- about the particular subtype and the size of the objects
837 -- being typed. In such cases the compiler will substitute a
838 -- type whose name is typically compiler-generated and
839 -- irrelevant except as a key for obtaining the actual type.
840 -- Specifically, if this name is x, then we produce a record
841 -- type named x___XVS consisting of one field. The name of
842 -- this field is that of the actual type being encoded, which
843 -- we'll call y (the type of this single field is arbitrary).
844 -- Both x and y may have corresponding ___XVE types.
846 -- The size of the objects typed as x should be obtained from
847 -- the structure of x (and x___XVE, if applicable) as for
848 -- ordinary types unless there is a variable named x___XVZ, which,
849 -- if present, will hold the the size (in bits) of x.
851 -- The type x will either be a subtype of y (see also Subtypes
852 -- of Variant Records, below) or will contain no fields at
853 -- all. The layout, types, and positions of these fields will
854 -- be accurate, if present. (Currently, however, the GDB
855 -- debugger makes no use of x except to determine its size).
857 -- Among other uses, XVS types are sometimes used to encode
858 -- unconstrained types. For example, given
860 -- subtype Int is INTEGER range 0..10;
861 -- type T1 (N: Int := 0) is record
862 -- F1: String (1 .. N);
863 -- end record;
864 -- type AT1 is array (INTEGER range <>) of T1;
866 -- the element type for AT1 might have a type defined as if it had
867 -- been written:
869 -- type at1___C_PAD is record null; end record;
870 -- for at1___C_PAD'Size use 16 * 8;
872 -- and there would also be
874 -- type at1___C_PAD___XVS is record t1: Integer; end record;
875 -- type t1 is ...
877 -- Had the subtype Int been dynamic:
879 -- subtype Int is INTEGER range 0 .. M; -- M a variable
881 -- Then the compiler would also generate a declaration whose effect
882 -- would be
884 -- at1___C_PAD___XVZ: constant Integer := 32 + M * 8 + padding term;
886 -- Not all unconstrained types are so encoded; the XVS
887 -- convention may be unnecessary for unconstrained types of
888 -- fixed size. However, this encoding is always necessary when
889 -- a subcomponent type (array element's type or record field's
890 -- type) is an unconstrained record type some of whose
891 -- components depend on discriminant values.
893 -----------------
894 -- Array Types --
895 -----------------
897 -- Since there is no way for the debugger to obtain the index subtypes
898 -- for an array type, we produce a type that has the name of the
899 -- array type followed by "___XA" and is a record whose field names
900 -- are the names of the types for the bounds. The types of these
901 -- fields is an integer type which is meaningless.
903 -- To conserve space, we do not produce this type unless one of
904 -- the index types is either an enumeration type, has a variable
905 -- upper bound, has a lower bound different from the constant 1,
906 -- is a biased type, or is wider than "sizetype".
908 -- Given the full encoding of these types (see above description for
909 -- the encoding of discrete types), this means that all necessary
910 -- information for addressing arrays is available. In some
911 -- debugging formats, some or all of the bounds information may
912 -- be available redundantly, particularly in the fixed-point case,
913 -- but this information can in any case be ignored by the debugger.
915 ----------------------------
916 -- Note on Implicit Types --
917 ----------------------------
919 -- The compiler creates implicit type names in many situations where
920 -- a type is present semantically, but no specific name is present.
921 -- For example:
923 -- S : Integer range M .. N;
925 -- Here the subtype of S is not integer, but rather an anonymous
926 -- subtype of Integer. Where possible, the compiler generates names
927 -- for such anonymous types that are related to the type from which
928 -- the subtype is obtained as follows:
930 -- T name suffix
932 -- where name is the name from which the subtype is obtained, using
933 -- lower case letters and underscores, and suffix starts with an upper
934 -- case letter. For example, the name for the above declaration of S
935 -- might be:
937 -- TintegerS4b
939 -- If the debugger is asked to give the type of an entity and the type
940 -- has the form T name suffix, it is probably appropriate to just use
941 -- "name" in the response since this is what is meaningful to the
942 -- programmer.
944 -------------------------------------------------
945 -- Subprograms for Handling Encoded Type Names --
946 -------------------------------------------------
948 procedure Get_Encoded_Name (E : Entity_Id);
949 -- If the entity is a typename, store the external name of the entity as in
950 -- Get_External_Name, followed by three underscores plus the type encoding
951 -- in Name_Buffer with the length in Name_Len, and an ASCII.NUL character
952 -- stored following the name. Otherwise set Name_Buffer and Name_Len to
953 -- hold the entity name. Note that a call to this procedure has no effect
954 -- if we are not generating code, since the necessary information for
955 -- computing the proper encoded name is not available in this case.
957 --------------
958 -- Renaming --
959 --------------
961 -- Debugging information is generated for exception, object, package,
962 -- and subprogram renaming (generic renamings are not significant, since
963 -- generic templates are not relevant at debugging time).
965 -- Consider a renaming declaration of the form
967 -- x typ renames y;
969 -- There is one case in which no special debugging information is required,
970 -- namely the case of an object renaming where the backend allocates a
971 -- reference for the renamed variable, and the entity x is this reference.
972 -- The debugger can handle this case without any special processing or
973 -- encoding (it won't know it was a renaming, but that does not matter).
975 -- All other cases of renaming generate a dummy type definition for
976 -- an entity whose name is:
978 -- x___XR for an object renaming
979 -- x___XRE for an exception renaming
980 -- x___XRP for a package renaming
982 -- The name is fully qualified in the usual manner, i.e. qualified in
983 -- the same manner as the entity x would be. In the case of a package
984 -- renaming where x is a child unit, the qualification includes the
985 -- name of the parent unit, to disambiguate child units with the same
986 -- simple name and (of necessity) different parents.
988 -- Note: subprogram renamings are not encoded at the present time
990 -- The type is an enumeration type with a single enumeration literal
991 -- that is an identifier which describes the renamed variable.
993 -- For the simple entity case, where y is an entity name,
994 -- the enumeration is of the form:
996 -- (y___XE)
998 -- i.e. the enumeration type has a single field, whose name
999 -- matches the name y, with the XE suffix. The entity for this
1000 -- enumeration literal is fully qualified in the usual manner.
1001 -- All subprogram, exception, and package renamings fall into
1002 -- this category, as well as simple object renamings.
1004 -- For the object renaming case where y is a selected component or an
1005 -- indexed component, the literal name is suffixed by additional fields
1006 -- that give details of the components. The name starts as above with
1007 -- a y___XE entity indicating the outer level variable. Then a series
1008 -- of selections and indexing operations can be specified as follows:
1010 -- Indexed component
1012 -- A series of subscript values appear in sequence, the number
1013 -- corresponds to the number of dimensions of the array. The
1014 -- subscripts have one of the following two forms:
1016 -- XSnnn
1018 -- Here nnn is a constant value, encoded as a decimal
1019 -- integer (pos value for enumeration type case). Negative
1020 -- values have a trailing 'm' as usual.
1022 -- XSe
1024 -- Here e is the (unqualified) name of a constant entity in
1025 -- the same scope as the renaming which contains the subscript
1026 -- value.
1028 -- Slice
1030 -- For the slice case, we have two entries. The first is for
1031 -- the lower bound of the slice, and has the form
1033 -- XLnnn
1034 -- XLe
1036 -- Specifies the lower bound, using exactly the same encoding
1037 -- as for an XS subscript as described above.
1039 -- Then the upper bound appears in the usual XSnnn/XSe form
1041 -- Selected component
1043 -- For a selected component, we have a single entry
1045 -- XRf
1047 -- Here f is the field name for the selection
1049 -- For an explicit deference (.all), we have a single entry
1051 -- XA
1053 -- As an example, consider the declarations:
1055 -- package p is
1056 -- type q is record
1057 -- m : string (2 .. 5);
1058 -- end record;
1060 -- type r is array (1 .. 10, 1 .. 20) of q;
1062 -- g : r;
1064 -- z : string renames g (1,5).m(2 ..3)
1065 -- end p;
1067 -- The generated type definition would appear as
1069 -- type p__z___XR is
1070 -- (p__g___XEXS1XS5XRmXL2XS3);
1071 -- p__g___XE--------------------outer entity is g
1072 -- XS1-----------------first subscript for g
1073 -- XS5--------------second subscript for g
1074 -- XRm-----------select field m
1075 -- XL2--------lower bound of slice
1076 -- XS3-----upper bound of slice
1078 function Debug_Renaming_Declaration (N : Node_Id) return Node_Id;
1079 -- The argument N is a renaming declaration. The result is a type
1080 -- declaration as described in the above paragraphs. If not special
1081 -- debug declaration, than Empty is returned.
1083 ---------------------------
1084 -- Packed Array Encoding --
1085 ---------------------------
1087 -- For every packed array, two types are created, and both appear in
1088 -- the debugging output.
1090 -- The original declared array type is a perfectly normal array type,
1091 -- and its index bounds indicate the original bounds of the array.
1093 -- The corresponding packed array type, which may be a modular type, or
1094 -- may be an array of bytes type (see Exp_Pakd for full details). This
1095 -- is the type that is actually used in the generated code and for
1096 -- debugging information for all objects of the packed type.
1098 -- The name of the corresponding packed array type is:
1100 -- ttt___XPnnn
1102 -- where
1103 -- ttt is the name of the original declared array
1104 -- nnn is the component size in bits (1-31)
1106 -- When the debugger sees that an object is of a type that is encoded
1107 -- in this manner, it can use the original type to determine the bounds,
1108 -- and the component size to determine the packing details.
1110 -------------------------------------------
1111 -- Packed Array Representation in Memory --
1112 -------------------------------------------
1114 -- Packed arrays are represented in tightly packed form, with no extra
1115 -- bits between components. This is true even when the component size
1116 -- is not a factor of the storage unit size, so that as a result it is
1117 -- possible for components to cross storage unit boundaries.
1119 -- The layout in storage is identical, regardless of whether the
1120 -- implementation type is a modular type or an array-of-bytes type.
1121 -- See Exp_Pakd for details of how these implementation types are used,
1122 -- but for the purpose of the debugger, only the starting address of
1123 -- the object in memory is significant.
1125 -- The following example should show clearly how the packing works in
1126 -- the little-endian and big-endian cases:
1128 -- type B is range 0 .. 7;
1129 -- for B'Size use 3;
1131 -- type BA is array (0 .. 5) of B;
1132 -- pragma Pack (BA);
1134 -- BV : constant BA := (1,2,3,4,5,6);
1136 -- Little endian case
1138 -- BV'Address + 2 BV'Address + 1 BV'Address + 0
1139 -- +-----------------+-----------------+-----------------+
1140 -- | ? ? ? ? ? ? 1 1 | 0 1 0 1 1 0 0 0 | 1 1 0 1 0 0 0 1 |
1141 -- +-----------------+-----------------+-----------------+
1142 -- <---------> <-----> <---> <---> <-----> <---> <--->
1143 -- unused bits BV(5) BV(4) BV(3) BV(2) BV(1) BV(0)
1145 -- Big endian case
1147 -- BV'Address + 0 BV'Address + 1 BV'Address + 2
1148 -- +-----------------+-----------------+-----------------+
1149 -- | 0 0 1 0 1 0 0 1 | 1 1 0 0 1 0 1 1 | 1 0 ? ? ? ? ? ? |
1150 -- +-----------------+-----------------+-----------------+
1151 -- <---> <---> <-----> <---> <---> <-----> <--------->
1152 -- BV(0) BV(1) BV(2) BV(3) BV(4) BV(5) unused bits
1154 -- Note that if a modular type is used to represent the array, the
1155 -- allocation in memory is not the same as a normal modular type.
1156 -- The difference occurs when the allocated object is larger than
1157 -- the size of the array. For a normal modular type, we extend the
1158 -- value on the left with zeroes.
1160 -- For example, in the normal modular case, if we have a 6-bit
1161 -- modular type, declared as mod 2**6, and we allocate an 8-bit
1162 -- object for this type, then we extend the value with two bits
1163 -- on the most significant end, and in either the little-endian
1164 -- or big-endian case, the value 63 is represented as 00111111
1165 -- in binary in memory.
1167 -- For a modular type used to represent a packed array, the rule is
1168 -- different. In this case, if we have to extend the value, then we
1169 -- do it with undefined bits (which are not initialized and whose value
1170 -- is irrelevant to any generated code). Furthermore these bits are on
1171 -- the right (least significant bits) in the big-endian case, and on the
1172 -- left (most significant bits) in the little-endian case.
1174 -- For example, if we have a packed boolean array of 6 bits, all set
1175 -- to True, stored in an 8-bit object, then the value in memory in
1176 -- binary is ??111111 in the little-endian case, and 111111?? in the
1177 -- big-endian case.
1179 -- This is done so that the representation of packed arrays does not
1180 -- depend on whether we use a modular representation or array of bytes
1181 -- as previously described. This ensures that we can pass such values
1182 -- by reference in the case where a subprogram has to be able to handle
1183 -- values stored in either form.
1185 -- Note that when we extract the value of such a modular packed array,
1186 -- we expect to retrieve only the relevant bits, so in this same example,
1187 -- when we extract the value, we get 111111 in both cases, and the code
1188 -- generated by the front end assumes this, although it does not assume
1189 -- that any high order bits are defined.
1191 -- There are opportunities for optimization based on the knowledge that
1192 -- the unused bits are irrelevant for these type of packed arrays. For
1193 -- example if we have two such 6-bit-in-8-bit values and we do an
1194 -- assignment:
1196 -- a := b;
1198 -- Then logically, we extract the 6 bits and store only 6 bits in the
1199 -- result, but the back end is free to simply assign the entire 8-bits
1200 -- in this case, since we don't actually care about the undefined bits.
1201 -- However, in the equality case, it is important to ensure that the
1202 -- undefined bits do not participate in an equality test.
1204 -- If a modular packed array value is assigned to a register, then
1205 -- logically it could always be held right justified, to avoid any
1206 -- need to shift, e.g. when doing comparisons. But probably this is
1207 -- a bad choice, as it would mean that an assignment such as a := b
1208 -- above would require shifts when one value is in a register and the
1209 -- other value is in memory.
1211 ------------------------------------------------------
1212 -- Subprograms for Handling Packed Array Type Names --
1213 ------------------------------------------------------
1215 function Make_Packed_Array_Type_Name
1216 (Typ : Entity_Id;
1217 Csize : Uint)
1218 return Name_Id;
1219 -- This function is used in Exp_Pakd to create the name that is encoded
1220 -- as described above. The entity Typ provides the name ttt, and the
1221 -- value Csize is the component size that provides the nnn value.
1223 --------------------------------------
1224 -- Pointers to Unconstrained Arrays --
1225 --------------------------------------
1227 -- There are two kinds of pointers to arrays. The debugger can tell
1228 -- which format is in use by the form of the type of the pointer.
1230 -- Fat Pointers
1232 -- Fat pointers are represented as a struct with two fields. This
1233 -- struct has two distinguished field names:
1235 -- P_ARRAY is a pointer to the array type. The name of this
1236 -- type is the unconstrained type followed by "___XUA". This
1237 -- array will have bounds which are the discriminants, and
1238 -- hence are unparsable, but will give the number of
1239 -- subscripts and the component type.
1241 -- P_BOUNDS is a pointer to a struct, the name of whose type is the
1242 -- unconstrained array name followed by "___XUB" and which has
1243 -- fields of the form
1245 -- LBn (n a decimal integer) lower bound of n'th dimension
1246 -- UBn (n a decimal integer) upper bound of n'th dimension
1248 -- The bounds may be any integral type. In the case of an
1249 -- enumeration type, Enum_Rep values are used.
1251 -- The debugging information will sometimes reference an anonymous
1252 -- fat pointer type. Such types are given the name xxx___XUP, where
1253 -- xxx is the name of the designated type. If the debugger is asked
1254 -- to output such a type name, the appropriate form is "access xxx".
1256 -- Thin Pointers
1258 -- The value of a thin pointer is a pointer to the second field
1259 -- of a structure with two fields. The name of this structure's
1260 -- type is "arr___XUT", where "arr" is the name of the
1261 -- unconstrained array type. Even though it actually points into
1262 -- middle of this structure, the thin pointer's type in debugging
1263 -- information is pointer-to-arr___XUT.
1265 -- The first field of arr___XUT is named BOUNDS, and has a type
1266 -- named arr___XUB, with the structure described for such types
1267 -- in fat pointers, as described above.
1269 -- The second field of arr___XUT is named ARRAY, and contains
1270 -- the actual array. Because this array has a dynamic size,
1271 -- determined by the BOUNDS field that precedes it, all of the
1272 -- information about arr___XUT is encoded in a parallel type named
1273 -- arr___XUT___XVE, with fields BOUNDS and ARRAY___XVL. As for
1274 -- previously described ___XVE types, ARRAY___XVL has
1275 -- a pointer-to-array type. However, the array type in this case
1276 -- is named arr___XUA and only its element type is meaningful,
1277 -- just as described for fat pointers.
1279 --------------------------------------
1280 -- Tagged Types and Type Extensions --
1281 --------------------------------------
1283 -- A type C derived from a tagged type P has a field named "_parent"
1284 -- of type P that contains its inherited fields. The type of this
1285 -- field is usually P (encoded as usual if it has a dynamic size),
1286 -- but may be a more distant ancestor, if P is a null extension of
1287 -- that type.
1289 -- The type tag of a tagged type is a field named _tag, of type void*.
1290 -- If the type is derived from another tagged type, its _tag field is
1291 -- found in its _parent field.
1293 -----------------------------
1294 -- Variant Record Encoding --
1295 -----------------------------
1297 -- The variant part of a variant record is encoded as a single field
1298 -- in the enclosing record, whose name is:
1300 -- discrim___XVN
1302 -- where discrim is the unqualified name of the variant. This field name
1303 -- is built by gigi (not by code in this unit). In the case of an
1304 -- Unchecked_Union record, this discriminant will not appear in the
1305 -- record, and the debugger must proceed accordingly (basically it
1306 -- can treat this case as it would a C union).
1308 -- The type corresponding to this field has a name that is obtained
1309 -- by concatenating the type name with the above string and is similar
1310 -- to a C union, in which each member of the union corresponds to one
1311 -- variant. However, unlike a C union, the size of the type may be
1312 -- variable even if each of the components are fixed size, since it
1313 -- includes a computation of which variant is present. In that case,
1314 -- it will be encoded as above and a type with the suffix "___XVN___XVU"
1315 -- will be present.
1317 -- The name of the union member is encoded to indicate the choices, and
1318 -- is a string given by the following grammar:
1320 -- union_name ::= {choice} | others_choice
1321 -- choice ::= simple_choice | range_choice
1322 -- simple_choice ::= S number
1323 -- range_choice ::= R number T number
1324 -- number ::= {decimal_digit} [m]
1325 -- others_choice ::= O (upper case letter O)
1327 -- The m in a number indicates a negative value. As an example of this
1328 -- encoding scheme, the choice 1 .. 4 | 7 | -10 would be represented by
1330 -- R1T4S7S10m
1332 -- In the case of enumeration values, the values used are the
1333 -- actual representation values in the case where an enumeration type
1334 -- has an enumeration representation spec (i.e. they are values that
1335 -- correspond to the use of the Enum_Rep attribute).
1337 -- The type of the inner record is given by the name of the union
1338 -- type (as above) concatenated with the above string. Since that
1339 -- type may itself be variable-sized, it may also be encoded as above
1340 -- with a new type with a further suffix of "___XVU".
1342 -- As an example, consider:
1344 -- type Var (Disc : Boolean := True) is record
1345 -- M : Integer;
1347 -- case Disc is
1348 -- when True =>
1349 -- R : Integer;
1350 -- S : Integer;
1352 -- when False =>
1353 -- T : Integer;
1354 -- end case;
1355 -- end record;
1357 -- V1 : Var;
1359 -- In this case, the type var is represented as a struct with three
1360 -- fields, the first two are "disc" and "m", representing the values
1361 -- of these record components.
1363 -- The third field is a union of two types, with field names S1 and O.
1364 -- S1 is a struct with fields "r" and "s", and O is a struct with
1365 -- fields "t".
1367 ------------------------------------------------
1368 -- Subprograms for Handling Variant Encodings --
1369 ------------------------------------------------
1371 procedure Get_Variant_Encoding (V : Node_Id);
1372 -- This procedure is called by Gigi with V being the variant node.
1373 -- The corresponding encoding string is returned in Name_Buffer with
1374 -- the length of the string in Name_Len, and an ASCII.NUL character
1375 -- stored following the name.
1377 ---------------------------------
1378 -- Subtypes of Variant Records --
1379 ---------------------------------
1381 -- A subtype of a variant record is represented by a type in which the
1382 -- union field from the base type is replaced by one of the possible
1383 -- values. For example, if we have:
1385 -- type Var (Disc : Boolean := True) is record
1386 -- M : Integer;
1388 -- case Disc is
1389 -- when True =>
1390 -- R : Integer;
1391 -- S : Integer;
1393 -- when False =>
1394 -- T : Integer;
1395 -- end case;
1397 -- end record;
1398 -- V1 : Var;
1399 -- V2 : Var (True);
1400 -- V3 : Var (False);
1402 -- Here V2 for example is represented with a subtype whose name is
1403 -- something like TvarS3b, which is a struct with three fields. The
1404 -- first two fields are "disc" and "m" as for the base type, and
1405 -- the third field is S1, which contains the fields "r" and "s".
1407 -- The debugger should simply ignore structs with names of the form
1408 -- corresponding to variants, and consider the fields inside as
1409 -- belonging to the containing record.
1411 -------------------------------------------
1412 -- Character literals in Character Types --
1413 -------------------------------------------
1415 -- Character types are enumeration types at least one of whose
1416 -- enumeration literals is a character literal. Enumeration literals
1417 -- are usually simply represented using their identifier names. In
1418 -- the case where an enumeration literal is a character literal, the
1419 -- name aencoded as described in the following paragraph.
1421 -- A name QUhh, where each 'h' is a lower-case hexadecimal digit,
1422 -- stands for a character whose Unicode encoding is hh, and
1423 -- QWhhhh likewise stands for a wide character whose encoding
1424 -- is hhhh. The representation values are encoded as for ordinary
1425 -- enumeration literals (and have no necessary relationship to the
1426 -- values encoded in the names).
1428 -- For example, given the type declaration
1430 -- type x is (A, 'C', B);
1432 -- the second enumeration literal would be named QU43 and the
1433 -- value assigned to it would be 1.
1435 ----------------------------
1436 -- Effect of Optimization --
1437 ----------------------------
1439 -- If the program is compiled with optimization on (e.g. -O1 switch
1440 -- specified), then there may be variations in the output from the
1441 -- above specification. In particular, objects may disappear from
1442 -- the output. This includes not only constants and variables that
1443 -- the program declares at the source level, but also the x___L and
1444 -- x___U constants created to describe the lower and upper bounds of
1445 -- subtypes with dynamic bounds. This means for example, that array
1446 -- bounds may disappear if optimization is turned on. The debugger
1447 -- is expected to recognize that these constants are missing and
1448 -- deal as best as it can with the limited information available.
1450 end Exp_Dbug;