diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-08-15 09:15:10 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-08-15 16:54:37 +0200 |
commit | 988eebde6d076261da5e94344b38445e6ed764f0 (patch) | |
tree | e4bf9fcbd2a16b786721cefe0cbf40dfe12dfa8d /pyGHDL/libghdl | |
parent | da59184128af74905eb378b43df3e2047c86a9ec (diff) | |
download | ghdl-988eebde6d076261da5e94344b38445e6ed764f0.tar.gz ghdl-988eebde6d076261da5e94344b38445e6ed764f0.tar.bz2 ghdl-988eebde6d076261da5e94344b38445e6ed764f0.zip |
vhdl: add iir_kind_psl_boolean_parameter node. For #2178
Diffstat (limited to 'pyGHDL/libghdl')
-rw-r--r-- | pyGHDL/libghdl/vhdl/nodes.py | 425 |
1 files changed, 213 insertions, 212 deletions
diff --git a/pyGHDL/libghdl/vhdl/nodes.py b/pyGHDL/libghdl/vhdl/nodes.py index 181dd4525..40492a9e2 100644 --- a/pyGHDL/libghdl/vhdl/nodes.py +++ b/pyGHDL/libghdl/vhdl/nodes.py @@ -155,218 +155,219 @@ class Iir_Kind(IntEnum): Nature_Element_Declaration = 108 Non_Object_Alias_Declaration = 109 Psl_Declaration = 110 - Psl_Endpoint_Declaration = 111 - Enumeration_Literal = 112 - Function_Declaration = 113 - Procedure_Declaration = 114 - Function_Body = 115 - Procedure_Body = 116 - Function_Instantiation_Declaration = 117 - Procedure_Instantiation_Declaration = 118 - Terminal_Declaration = 119 - Object_Alias_Declaration = 120 - Free_Quantity_Declaration = 121 - Spectrum_Quantity_Declaration = 122 - Noise_Quantity_Declaration = 123 - Across_Quantity_Declaration = 124 - Through_Quantity_Declaration = 125 - File_Declaration = 126 - Guard_Signal_Declaration = 127 - Signal_Declaration = 128 - Variable_Declaration = 129 - Constant_Declaration = 130 - Iterator_Declaration = 131 - Interface_Constant_Declaration = 132 - Interface_Variable_Declaration = 133 - Interface_Signal_Declaration = 134 - Interface_File_Declaration = 135 - Interface_Quantity_Declaration = 136 - Interface_Terminal_Declaration = 137 - Interface_Type_Declaration = 138 - Interface_Package_Declaration = 139 - Interface_Function_Declaration = 140 - Interface_Procedure_Declaration = 141 - Attribute_Implicit_Declaration = 142 - Suspend_State_Declaration = 143 - Identity_Operator = 144 - Negation_Operator = 145 - Absolute_Operator = 146 - Not_Operator = 147 - Implicit_Condition_Operator = 148 - Condition_Operator = 149 - Reduction_And_Operator = 150 - Reduction_Or_Operator = 151 - Reduction_Nand_Operator = 152 - Reduction_Nor_Operator = 153 - Reduction_Xor_Operator = 154 - Reduction_Xnor_Operator = 155 - And_Operator = 156 - Or_Operator = 157 - Nand_Operator = 158 - Nor_Operator = 159 - Xor_Operator = 160 - Xnor_Operator = 161 - Equality_Operator = 162 - Inequality_Operator = 163 - Less_Than_Operator = 164 - Less_Than_Or_Equal_Operator = 165 - Greater_Than_Operator = 166 - Greater_Than_Or_Equal_Operator = 167 - Match_Equality_Operator = 168 - Match_Inequality_Operator = 169 - Match_Less_Than_Operator = 170 - Match_Less_Than_Or_Equal_Operator = 171 - Match_Greater_Than_Operator = 172 - Match_Greater_Than_Or_Equal_Operator = 173 - Sll_Operator = 174 - Sla_Operator = 175 - Srl_Operator = 176 - Sra_Operator = 177 - Rol_Operator = 178 - Ror_Operator = 179 - Addition_Operator = 180 - Substraction_Operator = 181 - Concatenation_Operator = 182 - Multiplication_Operator = 183 - Division_Operator = 184 - Modulus_Operator = 185 - Remainder_Operator = 186 - Exponentiation_Operator = 187 - Function_Call = 188 - Aggregate = 189 - Parenthesis_Expression = 190 - Qualified_Expression = 191 - Type_Conversion = 192 - Allocator_By_Expression = 193 - Allocator_By_Subtype = 194 - Selected_Element = 195 - Dereference = 196 - Implicit_Dereference = 197 - Slice_Name = 198 - Indexed_Name = 199 - Psl_Prev = 200 - Psl_Stable = 201 - Psl_Rose = 202 - Psl_Fell = 203 - Psl_Onehot = 204 - Psl_Onehot0 = 205 - Psl_Expression = 206 - Sensitized_Process_Statement = 207 - Process_Statement = 208 - Concurrent_Simple_Signal_Assignment = 209 - Concurrent_Conditional_Signal_Assignment = 210 - Concurrent_Selected_Signal_Assignment = 211 - Concurrent_Assertion_Statement = 212 - Concurrent_Procedure_Call_Statement = 213 - Concurrent_Break_Statement = 214 - Psl_Assert_Directive = 215 - Psl_Assume_Directive = 216 - Psl_Cover_Directive = 217 - Psl_Restrict_Directive = 218 - Block_Statement = 219 - If_Generate_Statement = 220 - Case_Generate_Statement = 221 - For_Generate_Statement = 222 - Component_Instantiation_Statement = 223 - Psl_Default_Clock = 224 - Generate_Statement_Body = 225 - If_Generate_Else_Clause = 226 - Simple_Simultaneous_Statement = 227 - Simultaneous_Null_Statement = 228 - Simultaneous_Procedural_Statement = 229 - Simultaneous_Case_Statement = 230 - Simultaneous_If_Statement = 231 - Simultaneous_Elsif = 232 - Simple_Signal_Assignment_Statement = 233 - Conditional_Signal_Assignment_Statement = 234 - Selected_Waveform_Assignment_Statement = 235 - Signal_Force_Assignment_Statement = 236 - Signal_Release_Assignment_Statement = 237 - Null_Statement = 238 - Assertion_Statement = 239 - Report_Statement = 240 - Wait_Statement = 241 - Variable_Assignment_Statement = 242 - Conditional_Variable_Assignment_Statement = 243 - Return_Statement = 244 - For_Loop_Statement = 245 - While_Loop_Statement = 246 - Next_Statement = 247 - Exit_Statement = 248 - Case_Statement = 249 - Procedure_Call_Statement = 250 - Break_Statement = 251 - If_Statement = 252 - Suspend_State_Statement = 253 - Elsif = 254 - Character_Literal = 255 - Simple_Name = 256 - Selected_Name = 257 - Operator_Symbol = 258 - Reference_Name = 259 - External_Constant_Name = 260 - External_Signal_Name = 261 - External_Variable_Name = 262 - Selected_By_All_Name = 263 - Parenthesis_Name = 264 - Package_Pathname = 265 - Absolute_Pathname = 266 - Relative_Pathname = 267 - Pathname_Element = 268 - Base_Attribute = 269 - Subtype_Attribute = 270 - Element_Attribute = 271 - Across_Attribute = 272 - Through_Attribute = 273 - Nature_Reference_Attribute = 274 - Left_Type_Attribute = 275 - Right_Type_Attribute = 276 - High_Type_Attribute = 277 - Low_Type_Attribute = 278 - Ascending_Type_Attribute = 279 - Image_Attribute = 280 - Value_Attribute = 281 - Pos_Attribute = 282 - Val_Attribute = 283 - Succ_Attribute = 284 - Pred_Attribute = 285 - Leftof_Attribute = 286 - Rightof_Attribute = 287 - Signal_Slew_Attribute = 288 - Quantity_Slew_Attribute = 289 - Ramp_Attribute = 290 - Zoh_Attribute = 291 - Ltf_Attribute = 292 - Ztf_Attribute = 293 - Dot_Attribute = 294 - Integ_Attribute = 295 - Quantity_Delayed_Attribute = 296 - Above_Attribute = 297 - Delayed_Attribute = 298 - Stable_Attribute = 299 - Quiet_Attribute = 300 - Transaction_Attribute = 301 - Event_Attribute = 302 - Active_Attribute = 303 - Last_Event_Attribute = 304 - Last_Active_Attribute = 305 - Last_Value_Attribute = 306 - Driving_Attribute = 307 - Driving_Value_Attribute = 308 - Behavior_Attribute = 309 - Structure_Attribute = 310 - Simple_Name_Attribute = 311 - Instance_Name_Attribute = 312 - Path_Name_Attribute = 313 - Left_Array_Attribute = 314 - Right_Array_Attribute = 315 - High_Array_Attribute = 316 - Low_Array_Attribute = 317 - Length_Array_Attribute = 318 - Ascending_Array_Attribute = 319 - Range_Array_Attribute = 320 - Reverse_Range_Array_Attribute = 321 - Attribute_Name = 322 + Psl_Boolean_Parameter = 111 + Psl_Endpoint_Declaration = 112 + Enumeration_Literal = 113 + Function_Declaration = 114 + Procedure_Declaration = 115 + Function_Body = 116 + Procedure_Body = 117 + Function_Instantiation_Declaration = 118 + Procedure_Instantiation_Declaration = 119 + Terminal_Declaration = 120 + Object_Alias_Declaration = 121 + Free_Quantity_Declaration = 122 + Spectrum_Quantity_Declaration = 123 + Noise_Quantity_Declaration = 124 + Across_Quantity_Declaration = 125 + Through_Quantity_Declaration = 126 + File_Declaration = 127 + Guard_Signal_Declaration = 128 + Signal_Declaration = 129 + Variable_Declaration = 130 + Constant_Declaration = 131 + Iterator_Declaration = 132 + Interface_Constant_Declaration = 133 + Interface_Variable_Declaration = 134 + Interface_Signal_Declaration = 135 + Interface_File_Declaration = 136 + Interface_Quantity_Declaration = 137 + Interface_Terminal_Declaration = 138 + Interface_Type_Declaration = 139 + Interface_Package_Declaration = 140 + Interface_Function_Declaration = 141 + Interface_Procedure_Declaration = 142 + Attribute_Implicit_Declaration = 143 + Suspend_State_Declaration = 144 + Identity_Operator = 145 + Negation_Operator = 146 + Absolute_Operator = 147 + Not_Operator = 148 + Implicit_Condition_Operator = 149 + Condition_Operator = 150 + Reduction_And_Operator = 151 + Reduction_Or_Operator = 152 + Reduction_Nand_Operator = 153 + Reduction_Nor_Operator = 154 + Reduction_Xor_Operator = 155 + Reduction_Xnor_Operator = 156 + And_Operator = 157 + Or_Operator = 158 + Nand_Operator = 159 + Nor_Operator = 160 + Xor_Operator = 161 + Xnor_Operator = 162 + Equality_Operator = 163 + Inequality_Operator = 164 + Less_Than_Operator = 165 + Less_Than_Or_Equal_Operator = 166 + Greater_Than_Operator = 167 + Greater_Than_Or_Equal_Operator = 168 + Match_Equality_Operator = 169 + Match_Inequality_Operator = 170 + Match_Less_Than_Operator = 171 + Match_Less_Than_Or_Equal_Operator = 172 + Match_Greater_Than_Operator = 173 + Match_Greater_Than_Or_Equal_Operator = 174 + Sll_Operator = 175 + Sla_Operator = 176 + Srl_Operator = 177 + Sra_Operator = 178 + Rol_Operator = 179 + Ror_Operator = 180 + Addition_Operator = 181 + Substraction_Operator = 182 + Concatenation_Operator = 183 + Multiplication_Operator = 184 + Division_Operator = 185 + Modulus_Operator = 186 + Remainder_Operator = 187 + Exponentiation_Operator = 188 + Function_Call = 189 + Aggregate = 190 + Parenthesis_Expression = 191 + Qualified_Expression = 192 + Type_Conversion = 193 + Allocator_By_Expression = 194 + Allocator_By_Subtype = 195 + Selected_Element = 196 + Dereference = 197 + Implicit_Dereference = 198 + Slice_Name = 199 + Indexed_Name = 200 + Psl_Prev = 201 + Psl_Stable = 202 + Psl_Rose = 203 + Psl_Fell = 204 + Psl_Onehot = 205 + Psl_Onehot0 = 206 + Psl_Expression = 207 + Sensitized_Process_Statement = 208 + Process_Statement = 209 + Concurrent_Simple_Signal_Assignment = 210 + Concurrent_Conditional_Signal_Assignment = 211 + Concurrent_Selected_Signal_Assignment = 212 + Concurrent_Assertion_Statement = 213 + Concurrent_Procedure_Call_Statement = 214 + Concurrent_Break_Statement = 215 + Psl_Assert_Directive = 216 + Psl_Assume_Directive = 217 + Psl_Cover_Directive = 218 + Psl_Restrict_Directive = 219 + Block_Statement = 220 + If_Generate_Statement = 221 + Case_Generate_Statement = 222 + For_Generate_Statement = 223 + Component_Instantiation_Statement = 224 + Psl_Default_Clock = 225 + Generate_Statement_Body = 226 + If_Generate_Else_Clause = 227 + Simple_Simultaneous_Statement = 228 + Simultaneous_Null_Statement = 229 + Simultaneous_Procedural_Statement = 230 + Simultaneous_Case_Statement = 231 + Simultaneous_If_Statement = 232 + Simultaneous_Elsif = 233 + Simple_Signal_Assignment_Statement = 234 + Conditional_Signal_Assignment_Statement = 235 + Selected_Waveform_Assignment_Statement = 236 + Signal_Force_Assignment_Statement = 237 + Signal_Release_Assignment_Statement = 238 + Null_Statement = 239 + Assertion_Statement = 240 + Report_Statement = 241 + Wait_Statement = 242 + Variable_Assignment_Statement = 243 + Conditional_Variable_Assignment_Statement = 244 + Return_Statement = 245 + For_Loop_Statement = 246 + While_Loop_Statement = 247 + Next_Statement = 248 + Exit_Statement = 249 + Case_Statement = 250 + Procedure_Call_Statement = 251 + Break_Statement = 252 + If_Statement = 253 + Suspend_State_Statement = 254 + Elsif = 255 + Character_Literal = 256 + Simple_Name = 257 + Selected_Name = 258 + Operator_Symbol = 259 + Reference_Name = 260 + External_Constant_Name = 261 + External_Signal_Name = 262 + External_Variable_Name = 263 + Selected_By_All_Name = 264 + Parenthesis_Name = 265 + Package_Pathname = 266 + Absolute_Pathname = 267 + Relative_Pathname = 268 + Pathname_Element = 269 + Base_Attribute = 270 + Subtype_Attribute = 271 + Element_Attribute = 272 + Across_Attribute = 273 + Through_Attribute = 274 + Nature_Reference_Attribute = 275 + Left_Type_Attribute = 276 + Right_Type_Attribute = 277 + High_Type_Attribute = 278 + Low_Type_Attribute = 279 + Ascending_Type_Attribute = 280 + Image_Attribute = 281 + Value_Attribute = 282 + Pos_Attribute = 283 + Val_Attribute = 284 + Succ_Attribute = 285 + Pred_Attribute = 286 + Leftof_Attribute = 287 + Rightof_Attribute = 288 + Signal_Slew_Attribute = 289 + Quantity_Slew_Attribute = 290 + Ramp_Attribute = 291 + Zoh_Attribute = 292 + Ltf_Attribute = 293 + Ztf_Attribute = 294 + Dot_Attribute = 295 + Integ_Attribute = 296 + Quantity_Delayed_Attribute = 297 + Above_Attribute = 298 + Delayed_Attribute = 299 + Stable_Attribute = 300 + Quiet_Attribute = 301 + Transaction_Attribute = 302 + Event_Attribute = 303 + Active_Attribute = 304 + Last_Event_Attribute = 305 + Last_Active_Attribute = 306 + Last_Value_Attribute = 307 + Driving_Attribute = 308 + Driving_Value_Attribute = 309 + Behavior_Attribute = 310 + Structure_Attribute = 311 + Simple_Name_Attribute = 312 + Instance_Name_Attribute = 313 + Path_Name_Attribute = 314 + Left_Array_Attribute = 315 + Right_Array_Attribute = 316 + High_Array_Attribute = 317 + Low_Array_Attribute = 318 + Length_Array_Attribute = 319 + Ascending_Array_Attribute = 320 + Range_Array_Attribute = 321 + Reverse_Range_Array_Attribute = 322 + Attribute_Name = 323 @export |