1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1996-2018, Free Software Foundation, Inc. --
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. 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 COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
26 with Atree
; use Atree
;
27 with Einfo
; use Einfo
;
28 with Errout
; use Errout
;
29 with Namet
; use Namet
;
30 with Nlists
; use Nlists
;
31 with Nmake
; use Nmake
;
34 with Sem_Aux
; use Sem_Aux
;
35 with Sem_Eval
; use Sem_Eval
;
36 with Sem_Res
; use Sem_Res
;
37 with Sem_Util
; use Sem_Util
;
38 with Sem_Type
; use Sem_Type
;
39 with Snames
; use Snames
;
40 with Stand
; use Stand
;
41 with Sinfo
; use Sinfo
;
42 with Tbuild
; use Tbuild
;
43 with Uintp
; use Uintp
;
45 with Ada
.Unchecked_Deallocation
;
47 with GNAT
.Heap_Sort_G
;
49 package body Sem_Case
is
51 type Choice_Bounds
is record
56 -- Represent one choice bounds entry with Lo and Hi values, Node points
57 -- to the choice node itself.
59 type Choice_Table_Type
is array (Nat
range <>) of Choice_Bounds
;
60 -- Table type used to sort the choices present in a case statement or
61 -- record variant. The actual entries are stored in 1 .. Last, but we
62 -- have a 0 entry for use in sorting.
64 -----------------------
65 -- Local Subprograms --
66 -----------------------
68 procedure Check_Choice_Set
69 (Choice_Table
: in out Choice_Table_Type
;
70 Bounds_Type
: Entity_Id
;
72 Others_Present
: Boolean;
74 -- This is the procedure which verifies that a set of case alternatives
75 -- or record variant choices has no duplicates, and covers the range
76 -- specified by Bounds_Type. Choice_Table contains the discrete choices
77 -- to check. These must start at position 1.
79 -- Furthermore Choice_Table (0) must exist. This element is used by
80 -- the sorting algorithm as a temporary. Others_Present is a flag
81 -- indicating whether or not an Others choice is present. Finally
82 -- Msg_Sloc gives the source location of the construct containing the
83 -- choices in the Choice_Table.
85 -- Bounds_Type is the type whose range must be covered by the alternatives
87 -- Subtyp is the subtype of the expression. If its bounds are non-static
88 -- the alternatives must cover its base type.
90 function Choice_Image
(Value
: Uint
; Ctype
: Entity_Id
) return Name_Id
;
91 -- Given a Pos value of enumeration type Ctype, returns the name
92 -- ID of an appropriate string to be used in error message output.
94 procedure Expand_Others_Choice
95 (Case_Table
: Choice_Table_Type
;
96 Others_Choice
: Node_Id
;
97 Choice_Type
: Entity_Id
);
98 -- The case table is the table generated by a call to Check_Choices
99 -- (with just 1 .. Last_Choice entries present). Others_Choice is a
100 -- pointer to the N_Others_Choice node (this routine is only called if
101 -- an others choice is present), and Choice_Type is the discrete type
102 -- of the bounds. The effect of this call is to analyze the cases and
103 -- determine the set of values covered by others. This choice list is
104 -- set in the Others_Discrete_Choices field of the N_Others_Choice node.
106 ----------------------
107 -- Check_Choice_Set --
108 ----------------------
110 procedure Check_Choice_Set
111 (Choice_Table
: in out Choice_Table_Type
;
112 Bounds_Type
: Entity_Id
;
114 Others_Present
: Boolean;
117 Predicate_Error
: Boolean := False;
118 -- Flag to prevent cascaded errors when a static predicate is known to
119 -- be violated by one choice.
121 Num_Choices
: constant Nat
:= Choice_Table
'Last;
123 procedure Check_Against_Predicate
124 (Pred
: in out Node_Id
;
125 Choice
: Choice_Bounds
;
126 Prev_Lo
: in out Uint
;
127 Prev_Hi
: in out Uint
;
128 Error
: in out Boolean);
129 -- Determine whether a choice covers legal values as defined by a static
130 -- predicate set. Pred is a static predicate range. Choice is the choice
131 -- to be examined. Prev_Lo and Prev_Hi are the bounds of the previous
132 -- choice that covered a predicate set. Error denotes whether the check
133 -- found an illegal intersection.
135 procedure Check_Duplicates
;
136 -- Check for duplicate choices, and call Dup_Choice if there are any
137 -- such errors. Note that predicates are irrelevant here.
139 procedure Dup_Choice
(Lo
, Hi
: Uint
; C
: Node_Id
);
140 -- Post message "duplication of choice value(s) bla bla at xx". Message
141 -- is posted at location C. Caller sets Error_Msg_Sloc for xx.
143 procedure Explain_Non_Static_Bound
;
144 -- Called when we find a non-static bound, requiring the base type to
145 -- be covered. Provides where possible a helpful explanation of why the
146 -- bounds are non-static, since this is not always obvious.
148 function Lt_Choice
(C1
, C2
: Natural) return Boolean;
149 -- Comparison routine for comparing Choice_Table entries. Use the lower
150 -- bound of each Choice as the key.
152 procedure Missing_Choice
(Value1
: Node_Id
; Value2
: Node_Id
);
153 procedure Missing_Choice
(Value1
: Node_Id
; Value2
: Uint
);
154 procedure Missing_Choice
(Value1
: Uint
; Value2
: Node_Id
);
155 procedure Missing_Choice
(Value1
: Uint
; Value2
: Uint
);
156 -- Issue an error message indicating that there are missing choices,
157 -- followed by the image of the missing choices themselves which lie
158 -- between Value1 and Value2 inclusive.
160 procedure Missing_Choices
(Pred
: Node_Id
; Prev_Hi
: Uint
);
161 -- Emit an error message for each non-covered static predicate set.
162 -- Prev_Hi denotes the upper bound of the last choice covering a set.
164 procedure Move_Choice
(From
: Natural; To
: Natural);
165 -- Move routine for sorting the Choice_Table
167 package Sorting
is new GNAT
.Heap_Sort_G
(Move_Choice
, Lt_Choice
);
169 -----------------------------
170 -- Check_Against_Predicate --
171 -----------------------------
173 procedure Check_Against_Predicate
174 (Pred
: in out Node_Id
;
175 Choice
: Choice_Bounds
;
176 Prev_Lo
: in out Uint
;
177 Prev_Hi
: in out Uint
;
178 Error
: in out Boolean)
180 procedure Illegal_Range
184 -- Emit an error message regarding a choice that clashes with the
185 -- legal static predicate sets. Loc is the location of the choice
186 -- that introduced the illegal range. Lo .. Hi is the range.
188 function Inside_Range
191 Val
: Uint
) return Boolean;
192 -- Determine whether position Val within a discrete type is within
193 -- the range Lo .. Hi inclusive.
199 procedure Illegal_Range
205 Error_Msg_Name_1
:= Chars
(Bounds_Type
);
210 if Is_Integer_Type
(Bounds_Type
) then
211 Error_Msg_Uint_1
:= Lo
;
212 Error_Msg
("static predicate on % excludes value ^!", Loc
);
214 Error_Msg_Name_2
:= Choice_Image
(Lo
, Bounds_Type
);
215 Error_Msg
("static predicate on % excludes value %!", Loc
);
221 if Is_Integer_Type
(Bounds_Type
) then
222 Error_Msg_Uint_1
:= Lo
;
223 Error_Msg_Uint_2
:= Hi
;
225 ("static predicate on % excludes range ^ .. ^!", Loc
);
227 Error_Msg_Name_2
:= Choice_Image
(Lo
, Bounds_Type
);
228 Error_Msg_Name_3
:= Choice_Image
(Hi
, Bounds_Type
);
230 ("static predicate on % excludes range % .. %!", Loc
);
239 function Inside_Range
242 Val
: Uint
) return Boolean
245 return Lo
<= Val
and then Val
<= Hi
;
250 Choice_Hi
: constant Uint
:= Expr_Value
(Choice
.Hi
);
251 Choice_Lo
: constant Uint
:= Expr_Value
(Choice
.Lo
);
259 -- Start of processing for Check_Against_Predicate
262 -- Find the proper error message location
264 if Present
(Choice
.Node
) then
272 if Present
(Pred
) then
273 Pred_Lo
:= Expr_Value
(Low_Bound
(Pred
));
274 Pred_Hi
:= Expr_Value
(High_Bound
(Pred
));
276 -- Previous choices managed to satisfy all static predicate sets
279 Illegal_Range
(Loc
, Choice_Lo
, Choice_Hi
);
284 -- Step 1: Ignore duplicate choices, other than to set the flag,
285 -- because these were already detected by Check_Duplicates.
287 if Inside_Range
(Choice_Lo
, Choice_Hi
, Prev_Lo
)
288 or else Inside_Range
(Choice_Lo
, Choice_Hi
, Prev_Hi
)
292 -- Step 2: Detect full coverage
294 -- Choice_Lo Choice_Hi
298 elsif Choice_Lo
= Pred_Lo
and then Choice_Hi
= Pred_Hi
then
299 Prev_Lo
:= Choice_Lo
;
300 Prev_Hi
:= Choice_Hi
;
303 -- Step 3: Detect all cases where a choice mentions values that are
304 -- not part of the static predicate sets.
306 -- Choice_Lo Choice_Hi Pred_Lo Pred_Hi
307 -- +-----------+ . . . . . +=========+
310 elsif Choice_Lo
< Pred_Lo
and then Choice_Hi
< Pred_Lo
then
311 Illegal_Range
(Loc
, Choice_Lo
, Choice_Hi
);
314 -- Choice_Lo Pred_Lo Choice_Hi Pred_Hi
315 -- +-----------+=========+===========+
318 elsif Choice_Lo
< Pred_Lo
319 and then Inside_Range
(Pred_Lo
, Pred_Hi
, Choice_Hi
)
321 Illegal_Range
(Loc
, Choice_Lo
, Pred_Lo
- 1);
324 -- Pred_Lo Pred_Hi Choice_Lo Choice_Hi
325 -- +=========+ . . . . +-----------+
328 elsif Pred_Lo
< Choice_Lo
and then Pred_Hi
< Choice_Lo
then
329 if Others_Present
then
331 -- Current predicate set is covered by others clause.
336 Missing_Choice
(Pred_Lo
, Pred_Hi
);
340 -- There may be several static predicate sets between the current
341 -- one and the choice. Inspect the next static predicate set.
344 Check_Against_Predicate
351 -- Pred_Lo Choice_Lo Pred_Hi Choice_Hi
352 -- +=========+===========+-----------+
355 elsif Pred_Hi
< Choice_Hi
356 and then Inside_Range
(Pred_Lo
, Pred_Hi
, Choice_Lo
)
360 -- The choice may fall in a static predicate set. If this is the
361 -- case, avoid mentioning legal values in the error message.
363 if Present
(Pred
) then
364 Next_Lo
:= Expr_Value
(Low_Bound
(Pred
));
365 Next_Hi
:= Expr_Value
(High_Bound
(Pred
));
367 -- The next static predicate set is to the right of the choice
369 if Choice_Hi
< Next_Lo
and then Choice_Hi
< Next_Hi
then
370 Illegal_Range
(Loc
, Pred_Hi
+ 1, Choice_Hi
);
372 Illegal_Range
(Loc
, Pred_Hi
+ 1, Next_Lo
- 1);
375 Illegal_Range
(Loc
, Pred_Hi
+ 1, Choice_Hi
);
380 -- Choice_Lo Pred_Lo Pred_Hi Choice_Hi
381 -- +-----------+=========+-----------+
382 -- ^ illegal ^ ^ illegal ^
384 -- Emit an error on the low gap, disregard the upper gap
386 elsif Choice_Lo
< Pred_Lo
and then Pred_Hi
< Choice_Hi
then
387 Illegal_Range
(Loc
, Choice_Lo
, Pred_Lo
- 1);
390 -- Step 4: Detect all cases of partial or missing coverage
392 -- Pred_Lo Choice_Lo Choice_Hi Pred_Hi
393 -- +=========+==========+===========+
397 -- An "others" choice covers all gaps
399 if Others_Present
then
400 Prev_Lo
:= Choice_Lo
;
401 Prev_Hi
:= Choice_Hi
;
403 -- Check whether predicate set is fully covered by choice
405 if Pred_Hi
= Choice_Hi
then
409 -- Choice_Lo Choice_Hi Pred_Hi
410 -- +===========+===========+
413 -- The upper gap may be covered by a subsequent choice
415 elsif Pred_Lo
= Choice_Lo
then
416 Prev_Lo
:= Choice_Lo
;
417 Prev_Hi
:= Choice_Hi
;
419 -- Pred_Lo Prev_Hi Choice_Lo Choice_Hi Pred_Hi
420 -- +===========+=========+===========+===========+
421 -- ^ covered ^ ^ gap ^
423 else pragma Assert
(Pred_Lo
< Choice_Lo
);
425 -- A previous choice covered the gap up to the current choice
427 if Prev_Hi
= Choice_Lo
- 1 then
428 Prev_Lo
:= Choice_Lo
;
429 Prev_Hi
:= Choice_Hi
;
431 if Choice_Hi
= Pred_Hi
then
435 -- The previous choice did not intersect with the current
436 -- static predicate set.
438 elsif Prev_Hi
< Pred_Lo
then
439 Missing_Choice
(Pred_Lo
, Choice_Lo
- 1);
442 -- The previous choice covered part of the static predicate set
443 -- but there is a gap after Prev_Hi.
446 Missing_Choice
(Prev_Hi
+ 1, Choice_Lo
- 1);
451 end Check_Against_Predicate
;
453 ----------------------
454 -- Check_Duplicates --
455 ----------------------
457 procedure Check_Duplicates
is
461 Prev_Choice
: Node_Id
;
462 pragma Warnings
(Off
, Prev_Choice
);
466 Prev_Hi
:= Expr_Value
(Choice_Table
(1).Hi
);
468 for Outer_Index
in 2 .. Num_Choices
loop
469 Choice_Lo
:= Expr_Value
(Choice_Table
(Outer_Index
).Lo
);
470 Choice_Hi
:= Expr_Value
(Choice_Table
(Outer_Index
).Hi
);
472 -- Choices overlap; this is an error
474 if Choice_Lo
<= Prev_Hi
then
475 Choice
:= Choice_Table
(Outer_Index
).Node
;
477 -- Find first previous choice that overlaps
479 for Inner_Index
in 1 .. Outer_Index
- 1 loop
481 Expr_Value
(Choice_Table
(Inner_Index
).Hi
)
483 Prev_Choice
:= Choice_Table
(Inner_Index
).Node
;
488 if Sloc
(Prev_Choice
) <= Sloc
(Choice
) then
489 Error_Msg_Sloc
:= Sloc
(Prev_Choice
);
490 Dup_Choice
(Choice_Lo
, UI_Min
(Choice_Hi
, Prev_Hi
), Choice
);
492 Error_Msg_Sloc
:= Sloc
(Choice
);
494 (Choice_Lo
, UI_Min
(Choice_Hi
, Prev_Hi
), Prev_Choice
);
498 if Choice_Hi
> Prev_Hi
then
499 Prev_Hi
:= Choice_Hi
;
502 end Check_Duplicates
;
508 procedure Dup_Choice
(Lo
, Hi
: Uint
; C
: Node_Id
) is
510 -- In some situations, we call this with a null range, and obviously
511 -- we don't want to complain in this case.
517 -- Case of only one value that is duplicated
523 if Is_Integer_Type
(Bounds_Type
) then
525 -- We have an integer value, Lo, but if the given choice
526 -- placement is a constant with that value, then use the
527 -- name of that constant instead in the message:
529 if Nkind
(C
) = N_Identifier
530 and then Compile_Time_Known_Value
(C
)
531 and then Expr_Value
(C
) = Lo
533 Error_Msg_N
("duplication of choice value: &#!", C
);
535 -- Not that special case, so just output the integer value
538 Error_Msg_Uint_1
:= Lo
;
539 Error_Msg_N
("duplication of choice value: ^#!", C
);
545 Error_Msg_Name_1
:= Choice_Image
(Lo
, Bounds_Type
);
546 Error_Msg_N
("duplication of choice value: %#!", C
);
549 -- More than one choice value, so print range of values
554 if Is_Integer_Type
(Bounds_Type
) then
556 -- Similar to the above, if C is a range of known values which
557 -- match Lo and Hi, then use the names. We have to go to the
558 -- original nodes, since the values will have been rewritten
559 -- to their integer values.
561 if Nkind
(C
) = N_Range
562 and then Nkind
(Original_Node
(Low_Bound
(C
))) = N_Identifier
563 and then Nkind
(Original_Node
(High_Bound
(C
))) = N_Identifier
564 and then Compile_Time_Known_Value
(Low_Bound
(C
))
565 and then Compile_Time_Known_Value
(High_Bound
(C
))
566 and then Expr_Value
(Low_Bound
(C
)) = Lo
567 and then Expr_Value
(High_Bound
(C
)) = Hi
569 Error_Msg_Node_2
:= Original_Node
(High_Bound
(C
));
571 ("duplication of choice values: & .. &#!",
572 Original_Node
(Low_Bound
(C
)));
574 -- Not that special case, output integer values
577 Error_Msg_Uint_1
:= Lo
;
578 Error_Msg_Uint_2
:= Hi
;
579 Error_Msg_N
("duplication of choice values: ^ .. ^#!", C
);
585 Error_Msg_Name_1
:= Choice_Image
(Lo
, Bounds_Type
);
586 Error_Msg_Name_2
:= Choice_Image
(Hi
, Bounds_Type
);
587 Error_Msg_N
("duplication of choice values: % .. %#!", C
);
592 ------------------------------
593 -- Explain_Non_Static_Bound --
594 ------------------------------
596 procedure Explain_Non_Static_Bound
is
600 if Nkind
(Case_Node
) = N_Variant_Part
then
601 Expr
:= Name
(Case_Node
);
603 Expr
:= Expression
(Case_Node
);
606 if Bounds_Type
/= Subtyp
then
608 -- If the case is a variant part, the expression is given by the
609 -- discriminant itself, and the bounds are the culprits.
611 if Nkind
(Case_Node
) = N_Variant_Part
then
613 ("bounds of & are not static, "
614 & "alternatives must cover base type!", Expr
, Expr
);
616 -- If this is a case statement, the expression may be non-static
617 -- or else the subtype may be at fault.
619 elsif Is_Entity_Name
(Expr
) then
621 ("bounds of & are not static, "
622 & "alternatives must cover base type!", Expr
, Expr
);
626 ("subtype of expression is not static, "
627 & "alternatives must cover base type!", Expr
);
630 -- Otherwise the expression is not static, even if the bounds of the
631 -- type are, or else there are missing alternatives. If both, the
632 -- additional information may be redundant but harmless. Examine
633 -- whether original node is an entity, because it may have been
634 -- constant-folded to a literal if value is known.
636 elsif not Is_Entity_Name
(Original_Node
(Expr
)) then
638 ("subtype of expression is not static, "
639 & "alternatives must cover base type!", Expr
);
641 end Explain_Non_Static_Bound
;
647 function Lt_Choice
(C1
, C2
: Natural) return Boolean is
650 Expr_Value
(Choice_Table
(Nat
(C1
)).Lo
)
652 Expr_Value
(Choice_Table
(Nat
(C2
)).Lo
);
659 procedure Missing_Choice
(Value1
: Node_Id
; Value2
: Node_Id
) is
661 Missing_Choice
(Expr_Value
(Value1
), Expr_Value
(Value2
));
664 procedure Missing_Choice
(Value1
: Node_Id
; Value2
: Uint
) is
666 Missing_Choice
(Expr_Value
(Value1
), Value2
);
669 procedure Missing_Choice
(Value1
: Uint
; Value2
: Node_Id
) is
671 Missing_Choice
(Value1
, Expr_Value
(Value2
));
678 procedure Missing_Choice
(Value1
: Uint
; Value2
: Uint
) is
679 Msg_Sloc
: constant Source_Ptr
:= Sloc
(Case_Node
);
682 -- AI05-0188 : within an instance the non-others choices do not have
683 -- to belong to the actual subtype.
685 if Ada_Version
>= Ada_2012
and then In_Instance
then
688 -- In some situations, we call this with a null range, and obviously
689 -- we don't want to complain in this case.
691 elsif Value1
> Value2
then
694 -- If predicate is already known to be violated, do no check for
695 -- coverage error, to prevent cascaded messages.
697 elsif Predicate_Error
then
701 -- Case of only one value that is missing
703 if Value1
= Value2
then
704 if Is_Integer_Type
(Bounds_Type
) then
705 Error_Msg_Uint_1
:= Value1
;
706 Error_Msg
("missing case value: ^!", Msg_Sloc
);
708 Error_Msg_Name_1
:= Choice_Image
(Value1
, Bounds_Type
);
709 Error_Msg
("missing case value: %!", Msg_Sloc
);
712 -- More than one choice value, so print range of values
715 if Is_Integer_Type
(Bounds_Type
) then
716 Error_Msg_Uint_1
:= Value1
;
717 Error_Msg_Uint_2
:= Value2
;
718 Error_Msg
("missing case values: ^ .. ^!", Msg_Sloc
);
720 Error_Msg_Name_1
:= Choice_Image
(Value1
, Bounds_Type
);
721 Error_Msg_Name_2
:= Choice_Image
(Value2
, Bounds_Type
);
722 Error_Msg
("missing case values: % .. %!", Msg_Sloc
);
727 ---------------------
728 -- Missing_Choices --
729 ---------------------
731 procedure Missing_Choices
(Pred
: Node_Id
; Prev_Hi
: Uint
) is
738 while Present
(Set
) loop
739 Lo
:= Expr_Value
(Low_Bound
(Set
));
740 Hi
:= Expr_Value
(High_Bound
(Set
));
742 -- A choice covered part of a static predicate set
744 if Lo
<= Prev_Hi
and then Prev_Hi
< Hi
then
745 Missing_Choice
(Prev_Hi
+ 1, Hi
);
748 Missing_Choice
(Lo
, Hi
);
759 procedure Move_Choice
(From
: Natural; To
: Natural) is
761 Choice_Table
(Nat
(To
)) := Choice_Table
(Nat
(From
));
766 Bounds_Hi
: constant Node_Id
:= Type_High_Bound
(Bounds_Type
);
767 Bounds_Lo
: constant Node_Id
:= Type_Low_Bound
(Bounds_Type
);
768 Has_Predicate
: constant Boolean :=
769 Is_OK_Static_Subtype
(Bounds_Type
)
770 and then Has_Static_Predicate
(Bounds_Type
);
778 -- Start of processing for Check_Choice_Set
781 -- If the case is part of a predicate aspect specification, do not
782 -- recheck it against itself.
784 if Present
(Parent
(Case_Node
))
785 and then Nkind
(Parent
(Case_Node
)) = N_Aspect_Specification
790 -- Choice_Table must start at 0 which is an unused location used by the
791 -- sorting algorithm. However the first valid position for a discrete
794 pragma Assert
(Choice_Table
'First = 0);
796 -- The choices do not cover the base range. Emit an error if "others" is
797 -- not available and return as there is no need for further processing.
799 if Num_Choices
= 0 then
800 if not Others_Present
then
801 Missing_Choice
(Bounds_Lo
, Bounds_Hi
);
807 Sorting
.Sort
(Positive (Choice_Table
'Last));
809 -- First check for duplicates. This involved the choices; predicates, if
810 -- any, are irrelevant.
814 -- Then check for overlaps
816 -- If the subtype has a static predicate, the predicate defines subsets
817 -- of legal values and requires finer-grained analysis.
819 -- Note that in GNAT the predicate is considered static if the predicate
820 -- expression is static, independently of whether the aspect mentions
821 -- Static explicitly.
823 if Has_Predicate
then
824 Pred
:= First
(Static_Discrete_Predicate
(Bounds_Type
));
826 -- Make initial value smaller than 'First of type, so that first
827 -- range comparison succeeds. This applies both to integer types
828 -- and to enumeration types.
830 Prev_Lo
:= Expr_Value
(Type_Low_Bound
(Bounds_Type
)) - 1;
834 Error
: Boolean := False;
836 for Index
in 1 .. Num_Choices
loop
837 Check_Against_Predicate
839 Choice
=> Choice_Table
(Index
),
844 -- The analysis detected an illegal intersection between a
845 -- choice and a static predicate set. Do not examine other
846 -- choices unless all errors are requested.
849 Predicate_Error
:= True;
851 if not All_Errors_Mode
then
858 if Predicate_Error
then
862 -- The choices may legally cover some of the static predicate sets,
863 -- but not all. Emit an error for each non-covered set.
865 if not Others_Present
then
866 Missing_Choices
(Pred
, Prev_Hi
);
872 Choice_Lo
:= Expr_Value
(Choice_Table
(1).Lo
);
873 Choice_Hi
:= Expr_Value
(Choice_Table
(1).Hi
);
874 Prev_Hi
:= Choice_Hi
;
876 if not Others_Present
and then Expr_Value
(Bounds_Lo
) < Choice_Lo
then
877 Missing_Choice
(Bounds_Lo
, Choice_Lo
- 1);
879 -- If values are missing outside of the subtype, add explanation.
880 -- No additional message if only one value is missing.
882 if Expr_Value
(Bounds_Lo
) < Choice_Lo
- 1 then
883 Explain_Non_Static_Bound
;
887 for Index
in 2 .. Num_Choices
loop
888 Choice_Lo
:= Expr_Value
(Choice_Table
(Index
).Lo
);
889 Choice_Hi
:= Expr_Value
(Choice_Table
(Index
).Hi
);
891 if Choice_Lo
> Prev_Hi
+ 1 and then not Others_Present
then
892 Missing_Choice
(Prev_Hi
+ 1, Choice_Lo
- 1);
895 if Choice_Hi
> Prev_Hi
then
896 Prev_Hi
:= Choice_Hi
;
900 if not Others_Present
and then Expr_Value
(Bounds_Hi
) > Prev_Hi
then
901 Missing_Choice
(Prev_Hi
+ 1, Bounds_Hi
);
903 if Expr_Value
(Bounds_Hi
) > Prev_Hi
+ 1 then
904 Explain_Non_Static_Bound
;
908 end Check_Choice_Set
;
914 function Choice_Image
(Value
: Uint
; Ctype
: Entity_Id
) return Name_Id
is
915 Rtp
: constant Entity_Id
:= Root_Type
(Ctype
);
920 -- For character, or wide [wide] character. If 7-bit ASCII graphic
921 -- range, then build and return appropriate character literal name
923 if Is_Standard_Character_Type
(Ctype
) then
924 C
:= UI_To_Int
(Value
);
926 if C
in 16#
20#
.. 16#
7E#
then
927 Set_Character_Literal_Name
(Char_Code
(UI_To_Int
(Value
)));
931 -- For user defined enumeration type, find enum/char literal
934 Lit
:= First_Literal
(Rtp
);
936 for J
in 1 .. UI_To_Int
(Value
) loop
940 -- If enumeration literal, just return its value
942 if Nkind
(Lit
) = N_Defining_Identifier
then
945 -- For character literal, get the name and use it if it is
946 -- for a 7-bit ASCII graphic character in 16#20#..16#7E#.
949 Get_Decoded_Name_String
(Chars
(Lit
));
952 and then Name_Buffer
(2) in
953 Character'Val (16#
20#
) .. Character'Val (16#
7E#
)
960 -- If we fall through, we have a character literal which is not in
961 -- the 7-bit ASCII graphic set. For such cases, we construct the
962 -- name "type'val(nnn)" where type is the choice type, and nnn is
963 -- the pos value passed as an argument to Choice_Image.
965 Get_Name_String
(Chars
(First_Subtype
(Ctype
)));
967 Add_Str_To_Name_Buffer
("'val(");
969 Add_Str_To_Name_Buffer
(UI_Image_Buffer
(1 .. UI_Image_Length
));
970 Add_Char_To_Name_Buffer
(')');
974 --------------------------
975 -- Expand_Others_Choice --
976 --------------------------
978 procedure Expand_Others_Choice
979 (Case_Table
: Choice_Table_Type
;
980 Others_Choice
: Node_Id
;
981 Choice_Type
: Entity_Id
)
983 Loc
: constant Source_Ptr
:= Sloc
(Others_Choice
);
984 Choice_List
: constant List_Id
:= New_List
;
992 function Build_Choice
(Value1
, Value2
: Uint
) return Node_Id
;
993 -- Builds a node representing the missing choices given by Value1 and
994 -- Value2. A N_Range node is built if there is more than one literal
995 -- value missing. Otherwise a single N_Integer_Literal, N_Identifier
996 -- or N_Character_Literal is built depending on what Choice_Type is.
998 function Lit_Of
(Value
: Uint
) return Node_Id
;
999 -- Returns the Node_Id for the enumeration literal corresponding to the
1000 -- position given by Value within the enumeration type Choice_Type.
1006 function Build_Choice
(Value1
, Value2
: Uint
) return Node_Id
is
1011 -- If there is only one choice value missing between Value1 and
1012 -- Value2, build an integer or enumeration literal to represent it.
1014 if (Value2
- Value1
) = 0 then
1015 if Is_Integer_Type
(Choice_Type
) then
1016 Lit_Node
:= Make_Integer_Literal
(Loc
, Value1
);
1017 Set_Etype
(Lit_Node
, Choice_Type
);
1019 Lit_Node
:= Lit_Of
(Value1
);
1022 -- Otherwise is more that one choice value that is missing between
1023 -- Value1 and Value2, therefore build a N_Range node of either
1024 -- integer or enumeration literals.
1027 if Is_Integer_Type
(Choice_Type
) then
1028 Lo
:= Make_Integer_Literal
(Loc
, Value1
);
1029 Set_Etype
(Lo
, Choice_Type
);
1030 Hi
:= Make_Integer_Literal
(Loc
, Value2
);
1031 Set_Etype
(Hi
, Choice_Type
);
1040 Low_Bound
=> Lit_Of
(Value1
),
1041 High_Bound
=> Lit_Of
(Value2
));
1052 function Lit_Of
(Value
: Uint
) return Node_Id
is
1056 -- In the case where the literal is of type Character, there needs
1057 -- to be some special handling since there is no explicit chain
1058 -- of literals to search. Instead, a N_Character_Literal node
1059 -- is created with the appropriate Char_Code and Chars fields.
1061 if Is_Standard_Character_Type
(Choice_Type
) then
1062 Set_Character_Literal_Name
(Char_Code
(UI_To_Int
(Value
)));
1063 Lit
:= New_Node
(N_Character_Literal
, Loc
);
1064 Set_Chars
(Lit
, Name_Find
);
1065 Set_Char_Literal_Value
(Lit
, Value
);
1066 Set_Etype
(Lit
, Choice_Type
);
1067 Set_Is_Static_Expression
(Lit
, True);
1070 -- Otherwise, iterate through the literals list of Choice_Type
1071 -- "Value" number of times until the desired literal is reached
1072 -- and then return an occurrence of it.
1075 Lit
:= First_Literal
(Choice_Type
);
1076 for J
in 1 .. UI_To_Int
(Value
) loop
1080 return New_Occurrence_Of
(Lit
, Loc
);
1084 -- Start of processing for Expand_Others_Choice
1087 if Case_Table
'Last = 0 then
1089 -- Special case: only an others case is present. The others case
1090 -- covers the full range of the type.
1092 if Is_OK_Static_Subtype
(Choice_Type
) then
1093 Choice
:= New_Occurrence_Of
(Choice_Type
, Loc
);
1095 Choice
:= New_Occurrence_Of
(Base_Type
(Choice_Type
), Loc
);
1098 Set_Others_Discrete_Choices
(Others_Choice
, New_List
(Choice
));
1102 -- Establish the bound values for the choice depending upon whether the
1103 -- type of the case statement is static or not.
1105 if Is_OK_Static_Subtype
(Choice_Type
) then
1106 Exp_Lo
:= Type_Low_Bound
(Choice_Type
);
1107 Exp_Hi
:= Type_High_Bound
(Choice_Type
);
1109 Exp_Lo
:= Type_Low_Bound
(Base_Type
(Choice_Type
));
1110 Exp_Hi
:= Type_High_Bound
(Base_Type
(Choice_Type
));
1113 Lo
:= Expr_Value
(Case_Table
(1).Lo
);
1114 Hi
:= Expr_Value
(Case_Table
(1).Hi
);
1115 Previous_Hi
:= Expr_Value
(Case_Table
(1).Hi
);
1117 -- Build the node for any missing choices that are smaller than any
1118 -- explicit choices given in the case.
1120 if Expr_Value
(Exp_Lo
) < Lo
then
1121 Append
(Build_Choice
(Expr_Value
(Exp_Lo
), Lo
- 1), Choice_List
);
1124 -- Build the nodes representing any missing choices that lie between
1125 -- the explicit ones given in the case.
1127 for J
in 2 .. Case_Table
'Last loop
1128 Lo
:= Expr_Value
(Case_Table
(J
).Lo
);
1129 Hi
:= Expr_Value
(Case_Table
(J
).Hi
);
1131 if Lo
/= (Previous_Hi
+ 1) then
1132 Append_To
(Choice_List
, Build_Choice
(Previous_Hi
+ 1, Lo
- 1));
1138 -- Build the node for any missing choices that are greater than any
1139 -- explicit choices given in the case.
1141 if Expr_Value
(Exp_Hi
) > Hi
then
1142 Append
(Build_Choice
(Hi
+ 1, Expr_Value
(Exp_Hi
)), Choice_List
);
1145 Set_Others_Discrete_Choices
(Others_Choice
, Choice_List
);
1147 -- Warn on null others list if warning option set
1149 if Warn_On_Redundant_Constructs
1150 and then Comes_From_Source
(Others_Choice
)
1151 and then Is_Empty_List
(Choice_List
)
1153 Error_Msg_N
("?r?OTHERS choice is redundant", Others_Choice
);
1154 Error_Msg_N
("\?r?previous choices cover all values", Others_Choice
);
1156 end Expand_Others_Choice
;
1162 procedure No_OP
(C
: Node_Id
) is
1164 if Nkind
(C
) = N_Range
and then Warn_On_Redundant_Constructs
then
1165 Error_Msg_N
("choice is an empty range?r?", C
);
1169 -----------------------------
1170 -- Generic_Analyze_Choices --
1171 -----------------------------
1173 package body Generic_Analyze_Choices
is
1175 -- The following type is used to gather the entries for the choice
1176 -- table, so that we can then allocate the right length.
1179 type Link_Ptr
is access all Link
;
1182 Val
: Choice_Bounds
;
1186 ---------------------
1187 -- Analyze_Choices --
1188 ---------------------
1190 procedure Analyze_Choices
1191 (Alternatives
: List_Id
;
1194 Choice_Type
: constant Entity_Id
:= Base_Type
(Subtyp
);
1195 -- The actual type against which the discrete choices are resolved.
1196 -- Note that this type is always the base type not the subtype of the
1197 -- ruling expression, index or discriminant.
1199 Expected_Type
: Entity_Id
;
1200 -- The expected type of each choice. Equal to Choice_Type, except if
1201 -- the expression is universal, in which case the choices can be of
1202 -- any integer type.
1205 -- A case statement alternative or a variant in a record type
1210 -- The node kind of the current Choice
1213 -- Set Expected type (= choice type except for universal integer,
1214 -- where we accept any integer type as a choice).
1216 if Choice_Type
= Universal_Integer
then
1217 Expected_Type
:= Any_Integer
;
1219 Expected_Type
:= Choice_Type
;
1222 -- Now loop through the case alternatives or record variants
1224 Alt
:= First
(Alternatives
);
1225 while Present
(Alt
) loop
1227 -- If pragma, just analyze it
1229 if Nkind
(Alt
) = N_Pragma
then
1232 -- Otherwise we have an alternative. In most cases the semantic
1233 -- processing leaves the list of choices unchanged
1235 -- Check each choice against its base type
1238 Choice
:= First
(Discrete_Choices
(Alt
));
1239 while Present
(Choice
) loop
1241 Kind
:= Nkind
(Choice
);
1243 -- Choice is a Range
1246 or else (Kind
= N_Attribute_Reference
1247 and then Attribute_Name
(Choice
) = Name_Range
)
1249 Resolve
(Choice
, Expected_Type
);
1251 -- Choice is a subtype name, nothing further to do now
1253 elsif Is_Entity_Name
(Choice
)
1254 and then Is_Type
(Entity
(Choice
))
1258 -- Choice is a subtype indication
1260 elsif Kind
= N_Subtype_Indication
then
1261 Resolve_Discrete_Subtype_Indication
1262 (Choice
, Expected_Type
);
1264 -- Others choice, no analysis needed
1266 elsif Kind
= N_Others_Choice
then
1269 -- Only other possibility is an expression
1272 Resolve
(Choice
, Expected_Type
);
1275 -- Move to next choice
1280 Process_Associated_Node
(Alt
);
1285 end Analyze_Choices
;
1287 end Generic_Analyze_Choices
;
1289 ---------------------------
1290 -- Generic_Check_Choices --
1291 ---------------------------
1293 package body Generic_Check_Choices
is
1295 -- The following type is used to gather the entries for the choice
1296 -- table, so that we can then allocate the right length.
1299 type Link_Ptr
is access all Link
;
1302 Val
: Choice_Bounds
;
1306 procedure Free
is new Ada
.Unchecked_Deallocation
(Link
, Link_Ptr
);
1312 procedure Check_Choices
1314 Alternatives
: List_Id
;
1316 Others_Present
: out Boolean)
1320 Raises_CE
: Boolean;
1321 -- Set True if one of the bounds of a choice raises CE
1324 -- This is where we post error messages for bounds out of range
1326 Choice_List
: Link_Ptr
:= null;
1327 -- Gather list of choices
1329 Num_Choices
: Nat
:= 0;
1330 -- Number of entries in Choice_List
1332 Choice_Type
: constant Entity_Id
:= Base_Type
(Subtyp
);
1333 -- The actual type against which the discrete choices are resolved.
1334 -- Note that this type is always the base type not the subtype of the
1335 -- ruling expression, index or discriminant.
1337 Bounds_Type
: Entity_Id
;
1338 -- The type from which are derived the bounds of the values covered
1339 -- by the discrete choices (see 3.8.1 (4)). If a discrete choice
1340 -- specifies a value outside of these bounds we have an error.
1344 -- The actual bounds of the above type
1346 Expected_Type
: Entity_Id
;
1347 -- The expected type of each choice. Equal to Choice_Type, except if
1348 -- the expression is universal, in which case the choices can be of
1349 -- any integer type.
1352 -- A case statement alternative or a variant in a record type
1357 -- The node kind of the current Choice
1359 Others_Choice
: Node_Id
:= Empty
;
1360 -- Remember others choice if it is present (empty otherwise)
1362 procedure Check
(Choice
: Node_Id
; Lo
, Hi
: Node_Id
);
1363 -- Checks the validity of the bounds of a choice. When the bounds
1364 -- are static and no error occurred the bounds are collected for
1365 -- later entry into the choices table so that they can be sorted
1368 procedure Handle_Static_Predicate
1372 -- If the type of the alternative has predicates, we must examine
1373 -- each subset of the predicate rather than the bounds of the type
1374 -- itself. This is relevant when the choice is a subtype mark or a
1375 -- subtype indication.
1381 procedure Check
(Choice
: Node_Id
; Lo
, Hi
: Node_Id
) is
1386 -- First check if an error was already detected on either bounds
1388 if Etype
(Lo
) = Any_Type
or else Etype
(Hi
) = Any_Type
then
1391 -- Do not insert non static choices in the table to be sorted
1393 elsif not Is_OK_Static_Expression
(Lo
)
1395 not Is_OK_Static_Expression
(Hi
)
1397 Process_Non_Static_Choice
(Choice
);
1400 -- Ignore range which raise constraint error
1402 elsif Raises_Constraint_Error
(Lo
)
1403 or else Raises_Constraint_Error
(Hi
)
1408 -- AI05-0188 : Within an instance the non-others choices do not
1409 -- have to belong to the actual subtype.
1411 elsif Ada_Version
>= Ada_2012
and then In_Instance
then
1414 -- Otherwise we have an OK static choice
1417 Lo_Val
:= Expr_Value
(Lo
);
1418 Hi_Val
:= Expr_Value
(Hi
);
1420 -- Do not insert null ranges in the choices table
1422 if Lo_Val
> Hi_Val
then
1423 Process_Empty_Choice
(Choice
);
1428 -- Check for low bound out of range
1430 if Lo_Val
< Bounds_Lo
then
1432 -- If the choice is an entity name, then it is a type, and we
1433 -- want to post the message on the reference to this entity.
1434 -- Otherwise post it on the lower bound of the range.
1436 if Is_Entity_Name
(Choice
) then
1442 -- Specialize message for integer/enum type
1444 if Is_Integer_Type
(Bounds_Type
) then
1445 Error_Msg_Uint_1
:= Bounds_Lo
;
1446 Error_Msg_N
("minimum allowed choice value is^", Enode
);
1448 Error_Msg_Name_1
:= Choice_Image
(Bounds_Lo
, Bounds_Type
);
1449 Error_Msg_N
("minimum allowed choice value is%", Enode
);
1453 -- Check for high bound out of range
1455 if Hi_Val
> Bounds_Hi
then
1457 -- If the choice is an entity name, then it is a type, and we
1458 -- want to post the message on the reference to this entity.
1459 -- Otherwise post it on the upper bound of the range.
1461 if Is_Entity_Name
(Choice
) then
1467 -- Specialize message for integer/enum type
1469 if Is_Integer_Type
(Bounds_Type
) then
1470 Error_Msg_Uint_1
:= Bounds_Hi
;
1471 Error_Msg_N
("maximum allowed choice value is^", Enode
);
1473 Error_Msg_Name_1
:= Choice_Image
(Bounds_Hi
, Bounds_Type
);
1474 Error_Msg_N
("maximum allowed choice value is%", Enode
);
1478 -- Collect bounds in the list
1480 -- Note: we still store the bounds, even if they are out of range,
1481 -- since this may prevent unnecessary cascaded errors for values
1482 -- that are covered by such an excessive range.
1485 new Link
'(Val => (Lo, Hi, Choice), Nxt => Choice_List);
1486 Num_Choices := Num_Choices + 1;
1489 -----------------------------
1490 -- Handle_Static_Predicate --
1491 -----------------------------
1493 procedure Handle_Static_Predicate
1502 -- Loop through entries in predicate list, checking each entry.
1503 -- Note that if the list is empty, corresponding to a False
1504 -- predicate, then no choices are checked. If the choice comes
1505 -- from a subtype indication, the given range may have bounds
1506 -- that narrow the predicate choices themselves, so we must
1507 -- consider only those entries within the range of the given
1508 -- subtype indication..
1510 P := First (Static_Discrete_Predicate (Typ));
1511 while Present (P) loop
1513 -- Check that part of the predicate choice is included in the
1516 if Expr_Value (High_Bound (P)) >= Expr_Value (Lo)
1517 and then Expr_Value (Low_Bound (P)) <= Expr_Value (Hi)
1520 Set_Sloc (C, Sloc (Choice));
1522 if Expr_Value (Low_Bound (C)) < Expr_Value (Lo) then
1523 Set_Low_Bound (C, Lo);
1526 if Expr_Value (High_Bound (C)) > Expr_Value (Hi) then
1527 Set_High_Bound (C, Hi);
1530 Check (C, Low_Bound (C), High_Bound (C));
1536 Set_Has_SP_Choice (Alt);
1537 end Handle_Static_Predicate;
1539 -- Start of processing for Check_Choices
1543 Others_Present := False;
1545 -- If Subtyp is not a discrete type or there was some other error,
1546 -- then don't try any semantic checking on the choices since we have
1549 if not Is_Discrete_Type (Subtyp) or else Subtyp = Any_Type then
1553 -- If Subtyp is not a static subtype Ada 95 requires then we use the
1554 -- bounds of its base type to determine the values covered by the
1555 -- discrete choices.
1557 -- In Ada 2012, if the subtype has a non-static predicate the full
1558 -- range of the base type must be covered as well.
1560 if Is_OK_Static_Subtype (Subtyp) then
1561 if not Has_Predicates (Subtyp)
1562 or else Has_Static_Predicate (Subtyp)
1564 Bounds_Type := Subtyp;
1566 Bounds_Type := Choice_Type;
1570 Bounds_Type := Choice_Type;
1573 -- Obtain static bounds of type, unless this is a generic formal
1574 -- discrete type for which all choices will be non-static.
1576 if not Is_Generic_Type (Root_Type (Bounds_Type))
1577 or else Ekind (Bounds_Type) /= E_Enumeration_Type
1579 Bounds_Lo := Expr_Value (Type_Low_Bound (Bounds_Type));
1580 Bounds_Hi := Expr_Value (Type_High_Bound (Bounds_Type));
1583 if Choice_Type = Universal_Integer then
1584 Expected_Type := Any_Integer;
1586 Expected_Type := Choice_Type;
1589 -- Now loop through the case alternatives or record variants
1591 Alt := First (Alternatives);
1592 while Present (Alt) loop
1594 -- If pragma, just analyze it
1596 if Nkind (Alt) = N_Pragma then
1599 -- Otherwise we have an alternative. In most cases the semantic
1600 -- processing leaves the list of choices unchanged
1602 -- Check each choice against its base type
1605 Choice := First (Discrete_Choices (Alt));
1606 while Present (Choice) loop
1607 Kind := Nkind (Choice);
1609 -- Choice is a Range
1612 or else (Kind = N_Attribute_Reference
1613 and then Attribute_Name (Choice) = Name_Range)
1615 Check (Choice, Low_Bound (Choice), High_Bound (Choice));
1617 -- Choice is a subtype name
1619 elsif Is_Entity_Name (Choice)
1620 and then Is_Type (Entity (Choice))
1622 -- Check for inappropriate type
1624 if not Covers (Expected_Type, Etype (Choice)) then
1625 Wrong_Type (Choice, Choice_Type);
1627 -- Type is OK, so check further
1630 E := Entity (Choice);
1632 -- Case of predicated subtype
1634 if Has_Predicates (E) then
1636 -- Use of non-static predicate is an error
1638 if not Is_Discrete_Type (E)
1639 or else not Has_Static_Predicate (E)
1640 or else Has_Dynamic_Predicate_Aspect (E)
1642 Bad_Predicated_Subtype_Use
1643 ("cannot use subtype& with non-static "
1644 & "predicate as case alternative",
1645 Choice, E, Suggest_Static => True);
1647 -- Static predicate case. The bounds are those of
1648 -- the given subtype.
1651 Handle_Static_Predicate (E,
1652 Type_Low_Bound (E), Type_High_Bound (E));
1655 -- Not predicated subtype case
1657 elsif not Is_OK_Static_Subtype (E) then
1658 Process_Non_Static_Choice (Choice);
1661 (Choice, Type_Low_Bound (E), Type_High_Bound (E));
1665 -- Choice is a subtype indication
1667 elsif Kind = N_Subtype_Indication then
1668 Resolve_Discrete_Subtype_Indication
1669 (Choice, Expected_Type);
1671 if Etype (Choice) /= Any_Type then
1673 C : constant Node_Id := Constraint (Choice);
1674 R : constant Node_Id := Range_Expression (C);
1675 L : constant Node_Id := Low_Bound (R);
1676 H : constant Node_Id := High_Bound (R);
1679 E := Entity (Subtype_Mark (Choice));
1681 if not Is_OK_Static_Subtype (E) then
1682 Process_Non_Static_Choice (Choice);
1685 if Is_OK_Static_Expression (L)
1687 Is_OK_Static_Expression (H)
1689 if Expr_Value (L) > Expr_Value (H) then
1690 Process_Empty_Choice (Choice);
1692 if Is_Out_Of_Range (L, E) then
1693 Apply_Compile_Time_Constraint_Error
1694 (L, "static value out of range",
1695 CE_Range_Check_Failed);
1698 if Is_Out_Of_Range (H, E) then
1699 Apply_Compile_Time_Constraint_Error
1700 (H, "static value out of range",
1701 CE_Range_Check_Failed);
1706 -- Check applicable predicate values within the
1707 -- bounds of the given range.
1709 if Has_Static_Predicate (E) then
1710 Handle_Static_Predicate (E, L, H);
1713 Check (Choice, L, H);
1719 -- The others choice is only allowed for the last
1720 -- alternative and as its only choice.
1722 elsif Kind = N_Others_Choice then
1723 if not (Choice = First (Discrete_Choices (Alt))
1724 and then Choice = Last (Discrete_Choices (Alt))
1725 and then Alt = Last (Alternatives))
1728 ("the choice OTHERS must appear alone and last",
1733 Others_Present := True;
1734 Others_Choice := Choice;
1736 -- Only other possibility is an expression
1739 Check (Choice, Choice, Choice);
1742 -- Move to next choice
1747 Process_Associated_Node (Alt);
1753 -- Now we can create the Choice_Table, since we know how long
1754 -- it needs to be so we can allocate exactly the right length.
1757 Choice_Table : Choice_Table_Type (0 .. Num_Choices);
1760 -- Now copy the items we collected in the linked list into this
1761 -- newly allocated table (leave entry 0 unused for sorting).
1766 for J in 1 .. Num_Choices loop
1768 Choice_List := T.Nxt;
1769 Choice_Table (J) := T.Val;
1778 Others_Present or else (Choice_Type = Universal_Integer),
1781 -- If no others choice we are all done, otherwise we have one more
1782 -- step, which is to set the Others_Discrete_Choices field of the
1783 -- others choice (to contain all otherwise unspecified choices).
1784 -- Skip this if CE is known to be raised.
1786 if Others_Present and not Raises_CE then
1787 Expand_Others_Choice
1788 (Case_Table => Choice_Table,
1789 Others_Choice => Others_Choice,
1790 Choice_Type => Bounds_Type);
1795 end Generic_Check_Choices;