diff options
author | Tristan Gingold <tgingold@free.fr> | 2018-09-20 08:03:36 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2018-09-20 08:03:36 +0200 |
commit | 37d78c4c050e8cca88283b0c1369f2c4edd48ec3 (patch) | |
tree | 616cdfa7da0c66094a00ea05004b9ba4ecb4ad22 /src/vhdl/sem_expr.ads | |
parent | 0594a0c145e8c23500be3be298f70d6059cdb0d6 (diff) | |
download | ghdl-37d78c4c050e8cca88283b0c1369f2c4edd48ec3.tar.gz ghdl-37d78c4c050e8cca88283b0c1369f2c4edd48ec3.tar.bz2 ghdl-37d78c4c050e8cca88283b0c1369f2c4edd48ec3.zip |
sem_expr: refactoring for choices, add reorder_choices.
Diffstat (limited to 'src/vhdl/sem_expr.ads')
-rw-r--r-- | src/vhdl/sem_expr.ads | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/vhdl/sem_expr.ads b/src/vhdl/sem_expr.ads index 4f1a9d70e..5c976ac72 100644 --- a/src/vhdl/sem_expr.ads +++ b/src/vhdl/sem_expr.ads @@ -191,27 +191,27 @@ package Sem_Expr is -- TODO: -- * be smarter if only positional choices (do not create the list). -- * smarter messages. - procedure Sem_Choices_Range - (Choice_Chain : in out Iir; - Sub_Type : Iir; - Is_Sub_Range : Boolean; - Is_Case_Stmt : Boolean; - Loc : Location_Type; - Low : out Iir; - High : out Iir); + procedure Sem_Choices_Range (Choice_Chain : in out Iir; + Choice_Type : Iir; + Low : out Iir; + High : out Iir; + Loc : Location_Type; + Is_Sub_Range : Boolean; + Is_Case_Stmt : Boolean); -- Check that the values of CHOICE_CHAIN are a continuous range, and -- extract the lower LOW and upper HIGH bound (useful to create the -- corresponding subtype). The values must be of type SUB_TYPE, and if -- IS_SUB_RANGE True, they must be within SUB_TYPE. -- The choices must be locally static. - procedure Sem_Check_Continuous_Choices - (Choice_Chain : Iir; - Sub_Type : Iir; - Is_Sub_Range : Boolean; - Loc : Location_Type; - Low : out Iir; - High : out Iir); + -- If REORDER_CHOICES is true, CHOICE_CHAIN is ordered. + procedure Sem_Check_Continuous_Choices (Choice_Chain : in out Iir; + Choice_Type : Iir; + Low : out Iir; + High : out Iir; + Loc : Location_Type; + Is_Sub_Range : Boolean; + Reorder_Choices : Boolean); -- Analyze CHOICE_LIST when the choice expression SEL is of a -- one-dimensional character array type. |