diff options
Diffstat (limited to 'python/libghdl/thin/vhdl/nodes.py')
-rw-r--r-- | python/libghdl/thin/vhdl/nodes.py | 917 |
1 files changed, 450 insertions, 467 deletions
diff --git a/python/libghdl/thin/vhdl/nodes.py b/python/libghdl/thin/vhdl/nodes.py index 4509627ca..7179c9b23 100644 --- a/python/libghdl/thin/vhdl/nodes.py +++ b/python/libghdl/thin/vhdl/nodes.py @@ -10,6 +10,7 @@ Iir_Flist_Others = 1 Iir_Flist_All = 2 + class Iir_Kind: Unused = 0 Error = 1 @@ -123,207 +124,209 @@ class Iir_Kind: Procedure_Declaration = 109 Function_Body = 110 Procedure_Body = 111 - Terminal_Declaration = 112 - Object_Alias_Declaration = 113 - Free_Quantity_Declaration = 114 - Spectrum_Quantity_Declaration = 115 - Noise_Quantity_Declaration = 116 - Across_Quantity_Declaration = 117 - Through_Quantity_Declaration = 118 - File_Declaration = 119 - Guard_Signal_Declaration = 120 - Signal_Declaration = 121 - Variable_Declaration = 122 - Constant_Declaration = 123 - Iterator_Declaration = 124 - Interface_Constant_Declaration = 125 - Interface_Variable_Declaration = 126 - Interface_Signal_Declaration = 127 - Interface_File_Declaration = 128 - Interface_Quantity_Declaration = 129 - Interface_Terminal_Declaration = 130 - Interface_Type_Declaration = 131 - Interface_Package_Declaration = 132 - Interface_Function_Declaration = 133 - Interface_Procedure_Declaration = 134 - Anonymous_Signal_Declaration = 135 - Signal_Attribute_Declaration = 136 - Identity_Operator = 137 - Negation_Operator = 138 - Absolute_Operator = 139 - Not_Operator = 140 - Implicit_Condition_Operator = 141 - Condition_Operator = 142 - Reduction_And_Operator = 143 - Reduction_Or_Operator = 144 - Reduction_Nand_Operator = 145 - Reduction_Nor_Operator = 146 - Reduction_Xor_Operator = 147 - Reduction_Xnor_Operator = 148 - And_Operator = 149 - Or_Operator = 150 - Nand_Operator = 151 - Nor_Operator = 152 - Xor_Operator = 153 - Xnor_Operator = 154 - Equality_Operator = 155 - Inequality_Operator = 156 - Less_Than_Operator = 157 - Less_Than_Or_Equal_Operator = 158 - Greater_Than_Operator = 159 - Greater_Than_Or_Equal_Operator = 160 - Match_Equality_Operator = 161 - Match_Inequality_Operator = 162 - Match_Less_Than_Operator = 163 - Match_Less_Than_Or_Equal_Operator = 164 - Match_Greater_Than_Operator = 165 - Match_Greater_Than_Or_Equal_Operator = 166 - Sll_Operator = 167 - Sla_Operator = 168 - Srl_Operator = 169 - Sra_Operator = 170 - Rol_Operator = 171 - Ror_Operator = 172 - Addition_Operator = 173 - Substraction_Operator = 174 - Concatenation_Operator = 175 - Multiplication_Operator = 176 - Division_Operator = 177 - Modulus_Operator = 178 - Remainder_Operator = 179 - Exponentiation_Operator = 180 - Function_Call = 181 - Aggregate = 182 - Parenthesis_Expression = 183 - Qualified_Expression = 184 - Type_Conversion = 185 - Allocator_By_Expression = 186 - Allocator_By_Subtype = 187 - Selected_Element = 188 - Dereference = 189 - Implicit_Dereference = 190 - Slice_Name = 191 - Indexed_Name = 192 - Psl_Prev = 193 - Psl_Stable = 194 - Psl_Rose = 195 - Psl_Fell = 196 - Psl_Expression = 197 - Sensitized_Process_Statement = 198 - Process_Statement = 199 - Concurrent_Simple_Signal_Assignment = 200 - Concurrent_Conditional_Signal_Assignment = 201 - Concurrent_Selected_Signal_Assignment = 202 - Concurrent_Assertion_Statement = 203 - Concurrent_Procedure_Call_Statement = 204 - Concurrent_Break_Statement = 205 - Psl_Assert_Directive = 206 - Psl_Assume_Directive = 207 - Psl_Cover_Directive = 208 - Psl_Restrict_Directive = 209 - Block_Statement = 210 - If_Generate_Statement = 211 - Case_Generate_Statement = 212 - For_Generate_Statement = 213 - Component_Instantiation_Statement = 214 - Psl_Default_Clock = 215 - Generate_Statement_Body = 216 - If_Generate_Else_Clause = 217 - Simple_Simultaneous_Statement = 218 - Simultaneous_Null_Statement = 219 - Simultaneous_Procedural_Statement = 220 - Simultaneous_Case_Statement = 221 - Simultaneous_If_Statement = 222 - Simultaneous_Elsif = 223 - Simple_Signal_Assignment_Statement = 224 - Conditional_Signal_Assignment_Statement = 225 - Selected_Waveform_Assignment_Statement = 226 - Signal_Force_Assignment_Statement = 227 - Signal_Release_Assignment_Statement = 228 - Null_Statement = 229 - Assertion_Statement = 230 - Report_Statement = 231 - Wait_Statement = 232 - Variable_Assignment_Statement = 233 - Conditional_Variable_Assignment_Statement = 234 - Return_Statement = 235 - For_Loop_Statement = 236 - While_Loop_Statement = 237 - Next_Statement = 238 - Exit_Statement = 239 - Case_Statement = 240 - Procedure_Call_Statement = 241 - Break_Statement = 242 - If_Statement = 243 - Elsif = 244 - Character_Literal = 245 - Simple_Name = 246 - Selected_Name = 247 - Operator_Symbol = 248 - Reference_Name = 249 - External_Constant_Name = 250 - External_Signal_Name = 251 - External_Variable_Name = 252 - Selected_By_All_Name = 253 - Parenthesis_Name = 254 - Package_Pathname = 255 - Absolute_Pathname = 256 - Relative_Pathname = 257 - Pathname_Element = 258 - Base_Attribute = 259 - Subtype_Attribute = 260 - Element_Attribute = 261 - Across_Attribute = 262 - Through_Attribute = 263 - Nature_Reference_Attribute = 264 - Left_Type_Attribute = 265 - Right_Type_Attribute = 266 - High_Type_Attribute = 267 - Low_Type_Attribute = 268 - Ascending_Type_Attribute = 269 - Image_Attribute = 270 - Value_Attribute = 271 - Pos_Attribute = 272 - Val_Attribute = 273 - Succ_Attribute = 274 - Pred_Attribute = 275 - Leftof_Attribute = 276 - Rightof_Attribute = 277 - Signal_Slew_Attribute = 278 - Quantity_Slew_Attribute = 279 - Ramp_Attribute = 280 - Zoh_Attribute = 281 - Ltf_Attribute = 282 - Ztf_Attribute = 283 - Dot_Attribute = 284 - Integ_Attribute = 285 - Above_Attribute = 286 - Quantity_Delayed_Attribute = 287 - Delayed_Attribute = 288 - Stable_Attribute = 289 - Quiet_Attribute = 290 - Transaction_Attribute = 291 - Event_Attribute = 292 - Active_Attribute = 293 - Last_Event_Attribute = 294 - Last_Active_Attribute = 295 - Last_Value_Attribute = 296 - Driving_Attribute = 297 - Driving_Value_Attribute = 298 - Behavior_Attribute = 299 - Structure_Attribute = 300 - Simple_Name_Attribute = 301 - Instance_Name_Attribute = 302 - Path_Name_Attribute = 303 - Left_Array_Attribute = 304 - Right_Array_Attribute = 305 - High_Array_Attribute = 306 - Low_Array_Attribute = 307 - Length_Array_Attribute = 308 - Ascending_Array_Attribute = 309 - Range_Array_Attribute = 310 - Reverse_Range_Array_Attribute = 311 - Attribute_Name = 312 + Function_Instantiation_Declaration = 112 + Procedure_Instantiation_Declaration = 113 + Terminal_Declaration = 114 + Object_Alias_Declaration = 115 + Free_Quantity_Declaration = 116 + Spectrum_Quantity_Declaration = 117 + Noise_Quantity_Declaration = 118 + Across_Quantity_Declaration = 119 + Through_Quantity_Declaration = 120 + File_Declaration = 121 + Guard_Signal_Declaration = 122 + Signal_Declaration = 123 + Variable_Declaration = 124 + Constant_Declaration = 125 + Iterator_Declaration = 126 + Interface_Constant_Declaration = 127 + Interface_Variable_Declaration = 128 + Interface_Signal_Declaration = 129 + Interface_File_Declaration = 130 + Interface_Quantity_Declaration = 131 + Interface_Terminal_Declaration = 132 + Interface_Type_Declaration = 133 + Interface_Package_Declaration = 134 + Interface_Function_Declaration = 135 + Interface_Procedure_Declaration = 136 + Anonymous_Signal_Declaration = 137 + Signal_Attribute_Declaration = 138 + Identity_Operator = 139 + Negation_Operator = 140 + Absolute_Operator = 141 + Not_Operator = 142 + Implicit_Condition_Operator = 143 + Condition_Operator = 144 + Reduction_And_Operator = 145 + Reduction_Or_Operator = 146 + Reduction_Nand_Operator = 147 + Reduction_Nor_Operator = 148 + Reduction_Xor_Operator = 149 + Reduction_Xnor_Operator = 150 + And_Operator = 151 + Or_Operator = 152 + Nand_Operator = 153 + Nor_Operator = 154 + Xor_Operator = 155 + Xnor_Operator = 156 + Equality_Operator = 157 + Inequality_Operator = 158 + Less_Than_Operator = 159 + Less_Than_Or_Equal_Operator = 160 + Greater_Than_Operator = 161 + Greater_Than_Or_Equal_Operator = 162 + Match_Equality_Operator = 163 + Match_Inequality_Operator = 164 + Match_Less_Than_Operator = 165 + Match_Less_Than_Or_Equal_Operator = 166 + Match_Greater_Than_Operator = 167 + Match_Greater_Than_Or_Equal_Operator = 168 + Sll_Operator = 169 + Sla_Operator = 170 + Srl_Operator = 171 + Sra_Operator = 172 + Rol_Operator = 173 + Ror_Operator = 174 + Addition_Operator = 175 + Substraction_Operator = 176 + Concatenation_Operator = 177 + Multiplication_Operator = 178 + Division_Operator = 179 + Modulus_Operator = 180 + Remainder_Operator = 181 + Exponentiation_Operator = 182 + Function_Call = 183 + Aggregate = 184 + Parenthesis_Expression = 185 + Qualified_Expression = 186 + Type_Conversion = 187 + Allocator_By_Expression = 188 + Allocator_By_Subtype = 189 + Selected_Element = 190 + Dereference = 191 + Implicit_Dereference = 192 + Slice_Name = 193 + Indexed_Name = 194 + Psl_Prev = 195 + Psl_Stable = 196 + Psl_Rose = 197 + Psl_Fell = 198 + Psl_Expression = 199 + Sensitized_Process_Statement = 200 + Process_Statement = 201 + Concurrent_Simple_Signal_Assignment = 202 + Concurrent_Conditional_Signal_Assignment = 203 + Concurrent_Selected_Signal_Assignment = 204 + Concurrent_Assertion_Statement = 205 + Concurrent_Procedure_Call_Statement = 206 + Concurrent_Break_Statement = 207 + Psl_Assert_Directive = 208 + Psl_Assume_Directive = 209 + Psl_Cover_Directive = 210 + Psl_Restrict_Directive = 211 + Block_Statement = 212 + If_Generate_Statement = 213 + Case_Generate_Statement = 214 + For_Generate_Statement = 215 + Component_Instantiation_Statement = 216 + Psl_Default_Clock = 217 + Generate_Statement_Body = 218 + If_Generate_Else_Clause = 219 + Simple_Simultaneous_Statement = 220 + Simultaneous_Null_Statement = 221 + Simultaneous_Procedural_Statement = 222 + Simultaneous_Case_Statement = 223 + Simultaneous_If_Statement = 224 + Simultaneous_Elsif = 225 + Simple_Signal_Assignment_Statement = 226 + Conditional_Signal_Assignment_Statement = 227 + Selected_Waveform_Assignment_Statement = 228 + Signal_Force_Assignment_Statement = 229 + Signal_Release_Assignment_Statement = 230 + Null_Statement = 231 + Assertion_Statement = 232 + Report_Statement = 233 + Wait_Statement = 234 + Variable_Assignment_Statement = 235 + Conditional_Variable_Assignment_Statement = 236 + Return_Statement = 237 + For_Loop_Statement = 238 + While_Loop_Statement = 239 + Next_Statement = 240 + Exit_Statement = 241 + Case_Statement = 242 + Procedure_Call_Statement = 243 + Break_Statement = 244 + If_Statement = 245 + Elsif = 246 + Character_Literal = 247 + Simple_Name = 248 + Selected_Name = 249 + Operator_Symbol = 250 + Reference_Name = 251 + External_Constant_Name = 252 + External_Signal_Name = 253 + External_Variable_Name = 254 + Selected_By_All_Name = 255 + Parenthesis_Name = 256 + Package_Pathname = 257 + Absolute_Pathname = 258 + Relative_Pathname = 259 + Pathname_Element = 260 + Base_Attribute = 261 + Subtype_Attribute = 262 + Element_Attribute = 263 + Across_Attribute = 264 + Through_Attribute = 265 + Nature_Reference_Attribute = 266 + Left_Type_Attribute = 267 + Right_Type_Attribute = 268 + High_Type_Attribute = 269 + Low_Type_Attribute = 270 + Ascending_Type_Attribute = 271 + Image_Attribute = 272 + Value_Attribute = 273 + Pos_Attribute = 274 + Val_Attribute = 275 + Succ_Attribute = 276 + Pred_Attribute = 277 + Leftof_Attribute = 278 + Rightof_Attribute = 279 + Signal_Slew_Attribute = 280 + Quantity_Slew_Attribute = 281 + Ramp_Attribute = 282 + Zoh_Attribute = 283 + Ltf_Attribute = 284 + Ztf_Attribute = 285 + Dot_Attribute = 286 + Integ_Attribute = 287 + Above_Attribute = 288 + Quantity_Delayed_Attribute = 289 + Delayed_Attribute = 290 + Stable_Attribute = 291 + Quiet_Attribute = 292 + Transaction_Attribute = 293 + Event_Attribute = 294 + Active_Attribute = 295 + Last_Event_Attribute = 296 + Last_Active_Attribute = 297 + Last_Value_Attribute = 298 + Driving_Attribute = 299 + Driving_Value_Attribute = 300 + Behavior_Attribute = 301 + Structure_Attribute = 302 + Simple_Name_Attribute = 303 + Instance_Name_Attribute = 304 + Path_Name_Attribute = 305 + Left_Array_Attribute = 306 + Right_Array_Attribute = 307 + High_Array_Attribute = 308 + Low_Array_Attribute = 309 + Length_Array_Attribute = 310 + Ascending_Array_Attribute = 311 + Range_Array_Attribute = 312 + Reverse_Range_Array_Attribute = 313 + Attribute_Name = 314 class Iir_Kinds: @@ -1027,6 +1030,7 @@ class Iir_Kinds: ] + class Iir_Mode: Unknown_Mode = 0 Linkage_Mode = 1 @@ -1476,230 +1480,233 @@ class Iir_Predefined: Ieee_Numeric_Std_Nor_Uns = 411 Ieee_Numeric_Std_Xor_Uns = 412 Ieee_Numeric_Std_Xnor_Uns = 413 - Ieee_Numeric_Std_Match_Log = 414 - Ieee_Numeric_Std_Match_Uns = 415 - Ieee_Numeric_Std_Match_Sgn = 416 - Ieee_Numeric_Std_Match_Slv = 417 - Ieee_Numeric_Std_Match_Suv = 418 - Ieee_Numeric_Std_To_01_Uns = 419 - Ieee_Numeric_Std_To_01_Sgn = 420 - Ieee_Math_Real_Ceil = 421 - Ieee_Math_Real_Floor = 422 - Ieee_Math_Real_Round = 423 - Ieee_Math_Real_Log2 = 424 - Ieee_Math_Real_Sin = 425 - Ieee_Math_Real_Cos = 426 - Ieee_Std_Logic_Unsigned_Add_Slv_Slv = 427 - Ieee_Std_Logic_Unsigned_Add_Slv_Int = 428 - Ieee_Std_Logic_Unsigned_Add_Int_Slv = 429 - Ieee_Std_Logic_Unsigned_Add_Slv_Log = 430 - Ieee_Std_Logic_Unsigned_Add_Log_Slv = 431 - Ieee_Std_Logic_Unsigned_Sub_Slv_Slv = 432 - Ieee_Std_Logic_Unsigned_Sub_Slv_Int = 433 - Ieee_Std_Logic_Unsigned_Sub_Int_Slv = 434 - Ieee_Std_Logic_Unsigned_Sub_Slv_Log = 435 - Ieee_Std_Logic_Unsigned_Sub_Log_Slv = 436 - Ieee_Std_Logic_Unsigned_Id_Slv = 437 - Ieee_Std_Logic_Unsigned_Mul_Slv_Slv = 438 - Ieee_Std_Logic_Unsigned_Lt_Slv_Slv = 439 - Ieee_Std_Logic_Unsigned_Lt_Slv_Int = 440 - Ieee_Std_Logic_Unsigned_Lt_Int_Slv = 441 - Ieee_Std_Logic_Unsigned_Le_Slv_Slv = 442 - Ieee_Std_Logic_Unsigned_Le_Slv_Int = 443 - Ieee_Std_Logic_Unsigned_Le_Int_Slv = 444 - Ieee_Std_Logic_Unsigned_Gt_Slv_Slv = 445 - Ieee_Std_Logic_Unsigned_Gt_Slv_Int = 446 - Ieee_Std_Logic_Unsigned_Gt_Int_Slv = 447 - Ieee_Std_Logic_Unsigned_Ge_Slv_Slv = 448 - Ieee_Std_Logic_Unsigned_Ge_Slv_Int = 449 - Ieee_Std_Logic_Unsigned_Ge_Int_Slv = 450 - Ieee_Std_Logic_Unsigned_Eq_Slv_Slv = 451 - Ieee_Std_Logic_Unsigned_Eq_Slv_Int = 452 - Ieee_Std_Logic_Unsigned_Eq_Int_Slv = 453 - Ieee_Std_Logic_Unsigned_Ne_Slv_Slv = 454 - Ieee_Std_Logic_Unsigned_Ne_Slv_Int = 455 - Ieee_Std_Logic_Unsigned_Ne_Int_Slv = 456 - Ieee_Std_Logic_Unsigned_Conv_Integer = 457 - Ieee_Std_Logic_Unsigned_Shl = 458 - Ieee_Std_Logic_Unsigned_Shr = 459 - Ieee_Std_Logic_Signed_Add_Slv_Slv = 460 - Ieee_Std_Logic_Signed_Add_Slv_Int = 461 - Ieee_Std_Logic_Signed_Add_Int_Slv = 462 - Ieee_Std_Logic_Signed_Add_Slv_Log = 463 - Ieee_Std_Logic_Signed_Add_Log_Slv = 464 - Ieee_Std_Logic_Signed_Sub_Slv_Slv = 465 - Ieee_Std_Logic_Signed_Sub_Slv_Int = 466 - Ieee_Std_Logic_Signed_Sub_Int_Slv = 467 - Ieee_Std_Logic_Signed_Sub_Slv_Log = 468 - Ieee_Std_Logic_Signed_Sub_Log_Slv = 469 - Ieee_Std_Logic_Signed_Id_Slv = 470 - Ieee_Std_Logic_Signed_Neg_Slv = 471 - Ieee_Std_Logic_Signed_Abs_Slv = 472 - Ieee_Std_Logic_Signed_Mul_Slv_Slv = 473 - Ieee_Std_Logic_Signed_Lt_Slv_Slv = 474 - Ieee_Std_Logic_Signed_Lt_Slv_Int = 475 - Ieee_Std_Logic_Signed_Lt_Int_Slv = 476 - Ieee_Std_Logic_Signed_Le_Slv_Slv = 477 - Ieee_Std_Logic_Signed_Le_Slv_Int = 478 - Ieee_Std_Logic_Signed_Le_Int_Slv = 479 - Ieee_Std_Logic_Signed_Gt_Slv_Slv = 480 - Ieee_Std_Logic_Signed_Gt_Slv_Int = 481 - Ieee_Std_Logic_Signed_Gt_Int_Slv = 482 - Ieee_Std_Logic_Signed_Ge_Slv_Slv = 483 - Ieee_Std_Logic_Signed_Ge_Slv_Int = 484 - Ieee_Std_Logic_Signed_Ge_Int_Slv = 485 - Ieee_Std_Logic_Signed_Eq_Slv_Slv = 486 - Ieee_Std_Logic_Signed_Eq_Slv_Int = 487 - Ieee_Std_Logic_Signed_Eq_Int_Slv = 488 - Ieee_Std_Logic_Signed_Ne_Slv_Slv = 489 - Ieee_Std_Logic_Signed_Ne_Slv_Int = 490 - Ieee_Std_Logic_Signed_Ne_Int_Slv = 491 - Ieee_Std_Logic_Signed_Conv_Integer = 492 - Ieee_Std_Logic_Signed_Shl = 493 - Ieee_Std_Logic_Signed_Shr = 494 - Ieee_Std_Logic_Arith_Conv_Unsigned_Int = 495 - Ieee_Std_Logic_Arith_Conv_Unsigned_Uns = 496 - Ieee_Std_Logic_Arith_Conv_Unsigned_Sgn = 497 - Ieee_Std_Logic_Arith_Conv_Unsigned_Log = 498 - Ieee_Std_Logic_Arith_Conv_Integer_Int = 499 - Ieee_Std_Logic_Arith_Conv_Integer_Uns = 500 - Ieee_Std_Logic_Arith_Conv_Integer_Sgn = 501 - Ieee_Std_Logic_Arith_Conv_Integer_Log = 502 - Ieee_Std_Logic_Arith_Conv_Vector_Int = 503 - Ieee_Std_Logic_Arith_Conv_Vector_Uns = 504 - Ieee_Std_Logic_Arith_Conv_Vector_Sgn = 505 - Ieee_Std_Logic_Arith_Conv_Vector_Log = 506 - Ieee_Std_Logic_Arith_Ext = 507 - Ieee_Std_Logic_Arith_Sxt = 508 - Ieee_Std_Logic_Arith_Id_Uns_Uns = 509 - Ieee_Std_Logic_Arith_Id_Sgn_Sgn = 510 - Ieee_Std_Logic_Arith_Neg_Sgn_Sgn = 511 - Ieee_Std_Logic_Arith_Abs_Sgn_Sgn = 512 - Ieee_Std_Logic_Arith_Shl_Uns = 513 - Ieee_Std_Logic_Arith_Shl_Sgn = 514 - Ieee_Std_Logic_Arith_Shr_Uns = 515 - Ieee_Std_Logic_Arith_Shr_Sgn = 516 - Ieee_Std_Logic_Arith_Id_Uns_Slv = 517 - Ieee_Std_Logic_Arith_Id_Sgn_Slv = 518 - Ieee_Std_Logic_Arith_Neg_Sgn_Slv = 519 - Ieee_Std_Logic_Arith_Abs_Sgn_Slv = 520 - Ieee_Std_Logic_Arith_Mul_Uns_Uns_Uns = 521 - Ieee_Std_Logic_Arith_Mul_Sgn_Sgn_Sgn = 522 - Ieee_Std_Logic_Arith_Mul_Sgn_Uns_Sgn = 523 - Ieee_Std_Logic_Arith_Mul_Uns_Sgn_Sgn = 524 - Ieee_Std_Logic_Arith_Mul_Uns_Uns_Slv = 525 - Ieee_Std_Logic_Arith_Mul_Sgn_Sgn_Slv = 526 - Ieee_Std_Logic_Arith_Mul_Sgn_Uns_Slv = 527 - Ieee_Std_Logic_Arith_Mul_Uns_Sgn_Slv = 528 - Ieee_Std_Logic_Arith_Add_Uns_Uns_Uns = 529 - Ieee_Std_Logic_Arith_Add_Sgn_Sgn_Sgn = 530 - Ieee_Std_Logic_Arith_Add_Uns_Sgn_Sgn = 531 - Ieee_Std_Logic_Arith_Add_Sgn_Uns_Sgn = 532 - Ieee_Std_Logic_Arith_Add_Uns_Int_Uns = 533 - Ieee_Std_Logic_Arith_Add_Int_Uns_Uns = 534 - Ieee_Std_Logic_Arith_Add_Sgn_Int_Sgn = 535 - Ieee_Std_Logic_Arith_Add_Int_Sgn_Sgn = 536 - Ieee_Std_Logic_Arith_Add_Uns_Log_Uns = 537 - Ieee_Std_Logic_Arith_Add_Log_Uns_Uns = 538 - Ieee_Std_Logic_Arith_Add_Sgn_Log_Sgn = 539 - Ieee_Std_Logic_Arith_Add_Log_Sgn_Sgn = 540 - Ieee_Std_Logic_Arith_Add_Uns_Uns_Slv = 541 - Ieee_Std_Logic_Arith_Add_Sgn_Sgn_Slv = 542 - Ieee_Std_Logic_Arith_Add_Uns_Sgn_Slv = 543 - Ieee_Std_Logic_Arith_Add_Sgn_Uns_Slv = 544 - Ieee_Std_Logic_Arith_Add_Uns_Int_Slv = 545 - Ieee_Std_Logic_Arith_Add_Int_Uns_Slv = 546 - Ieee_Std_Logic_Arith_Add_Sgn_Int_Slv = 547 - Ieee_Std_Logic_Arith_Add_Int_Sgn_Slv = 548 - Ieee_Std_Logic_Arith_Add_Uns_Log_Slv = 549 - Ieee_Std_Logic_Arith_Add_Log_Uns_Slv = 550 - Ieee_Std_Logic_Arith_Add_Sgn_Log_Slv = 551 - Ieee_Std_Logic_Arith_Add_Log_Sgn_Slv = 552 - Ieee_Std_Logic_Arith_Sub_Uns_Uns_Uns = 553 - Ieee_Std_Logic_Arith_Sub_Sgn_Sgn_Sgn = 554 - Ieee_Std_Logic_Arith_Sub_Uns_Sgn_Sgn = 555 - Ieee_Std_Logic_Arith_Sub_Sgn_Uns_Sgn = 556 - Ieee_Std_Logic_Arith_Sub_Uns_Int_Uns = 557 - Ieee_Std_Logic_Arith_Sub_Int_Uns_Uns = 558 - Ieee_Std_Logic_Arith_Sub_Sgn_Int_Sgn = 559 - Ieee_Std_Logic_Arith_Sub_Int_Sgn_Sgn = 560 - Ieee_Std_Logic_Arith_Sub_Uns_Log_Uns = 561 - Ieee_Std_Logic_Arith_Sub_Log_Uns_Uns = 562 - Ieee_Std_Logic_Arith_Sub_Sgn_Log_Sgn = 563 - Ieee_Std_Logic_Arith_Sub_Log_Sgn_Sgn = 564 - Ieee_Std_Logic_Arith_Sub_Uns_Uns_Slv = 565 - Ieee_Std_Logic_Arith_Sub_Sgn_Sgn_Slv = 566 - Ieee_Std_Logic_Arith_Sub_Uns_Sgn_Slv = 567 - Ieee_Std_Logic_Arith_Sub_Sgn_Uns_Slv = 568 - Ieee_Std_Logic_Arith_Sub_Uns_Int_Slv = 569 - Ieee_Std_Logic_Arith_Sub_Int_Uns_Slv = 570 - Ieee_Std_Logic_Arith_Sub_Sgn_Int_Slv = 571 - Ieee_Std_Logic_Arith_Sub_Int_Sgn_Slv = 572 - Ieee_Std_Logic_Arith_Sub_Uns_Log_Slv = 573 - Ieee_Std_Logic_Arith_Sub_Log_Uns_Slv = 574 - Ieee_Std_Logic_Arith_Sub_Sgn_Log_Slv = 575 - Ieee_Std_Logic_Arith_Sub_Log_Sgn_Slv = 576 - Ieee_Std_Logic_Arith_Lt_Uns_Uns = 577 - Ieee_Std_Logic_Arith_Lt_Sgn_Sgn = 578 - Ieee_Std_Logic_Arith_Lt_Uns_Sgn = 579 - Ieee_Std_Logic_Arith_Lt_Sgn_Uns = 580 - Ieee_Std_Logic_Arith_Lt_Uns_Int = 581 - Ieee_Std_Logic_Arith_Lt_Int_Uns = 582 - Ieee_Std_Logic_Arith_Lt_Sgn_Int = 583 - Ieee_Std_Logic_Arith_Lt_Int_Sgn = 584 - Ieee_Std_Logic_Arith_Le_Uns_Uns = 585 - Ieee_Std_Logic_Arith_Le_Sgn_Sgn = 586 - Ieee_Std_Logic_Arith_Le_Uns_Sgn = 587 - Ieee_Std_Logic_Arith_Le_Sgn_Uns = 588 - Ieee_Std_Logic_Arith_Le_Uns_Int = 589 - Ieee_Std_Logic_Arith_Le_Int_Uns = 590 - Ieee_Std_Logic_Arith_Le_Sgn_Int = 591 - Ieee_Std_Logic_Arith_Le_Int_Sgn = 592 - Ieee_Std_Logic_Arith_Gt_Uns_Uns = 593 - Ieee_Std_Logic_Arith_Gt_Sgn_Sgn = 594 - Ieee_Std_Logic_Arith_Gt_Uns_Sgn = 595 - Ieee_Std_Logic_Arith_Gt_Sgn_Uns = 596 - Ieee_Std_Logic_Arith_Gt_Uns_Int = 597 - Ieee_Std_Logic_Arith_Gt_Int_Uns = 598 - Ieee_Std_Logic_Arith_Gt_Sgn_Int = 599 - Ieee_Std_Logic_Arith_Gt_Int_Sgn = 600 - Ieee_Std_Logic_Arith_Ge_Uns_Uns = 601 - Ieee_Std_Logic_Arith_Ge_Sgn_Sgn = 602 - Ieee_Std_Logic_Arith_Ge_Uns_Sgn = 603 - Ieee_Std_Logic_Arith_Ge_Sgn_Uns = 604 - Ieee_Std_Logic_Arith_Ge_Uns_Int = 605 - Ieee_Std_Logic_Arith_Ge_Int_Uns = 606 - Ieee_Std_Logic_Arith_Ge_Sgn_Int = 607 - Ieee_Std_Logic_Arith_Ge_Int_Sgn = 608 - Ieee_Std_Logic_Arith_Eq_Uns_Uns = 609 - Ieee_Std_Logic_Arith_Eq_Sgn_Sgn = 610 - Ieee_Std_Logic_Arith_Eq_Uns_Sgn = 611 - Ieee_Std_Logic_Arith_Eq_Sgn_Uns = 612 - Ieee_Std_Logic_Arith_Eq_Uns_Int = 613 - Ieee_Std_Logic_Arith_Eq_Int_Uns = 614 - Ieee_Std_Logic_Arith_Eq_Sgn_Int = 615 - Ieee_Std_Logic_Arith_Eq_Int_Sgn = 616 - Ieee_Std_Logic_Arith_Ne_Uns_Uns = 617 - Ieee_Std_Logic_Arith_Ne_Sgn_Sgn = 618 - Ieee_Std_Logic_Arith_Ne_Uns_Sgn = 619 - Ieee_Std_Logic_Arith_Ne_Sgn_Uns = 620 - Ieee_Std_Logic_Arith_Ne_Uns_Int = 621 - Ieee_Std_Logic_Arith_Ne_Int_Uns = 622 - Ieee_Std_Logic_Arith_Ne_Sgn_Int = 623 - Ieee_Std_Logic_Arith_Ne_Int_Sgn = 624 - Ieee_Std_Logic_Misc_And_Reduce_Slv = 625 - Ieee_Std_Logic_Misc_And_Reduce_Suv = 626 - Ieee_Std_Logic_Misc_Nand_Reduce_Slv = 627 - Ieee_Std_Logic_Misc_Nand_Reduce_Suv = 628 - Ieee_Std_Logic_Misc_Or_Reduce_Slv = 629 - Ieee_Std_Logic_Misc_Or_Reduce_Suv = 630 - Ieee_Std_Logic_Misc_Nor_Reduce_Slv = 631 - Ieee_Std_Logic_Misc_Nor_Reduce_Suv = 632 - Ieee_Std_Logic_Misc_Xor_Reduce_Slv = 633 - Ieee_Std_Logic_Misc_Xor_Reduce_Suv = 634 - Ieee_Std_Logic_Misc_Xnor_Reduce_Slv = 635 - Ieee_Std_Logic_Misc_Xnor_Reduce_Suv = 636 - + Ieee_Numeric_Std_Find_Leftmost_Uns = 414 + Ieee_Numeric_Std_Find_Rightmost_Uns = 415 + Ieee_Numeric_Std_Find_Leftmost_Sgn = 416 + Ieee_Numeric_Std_Find_Rightmost_Sgn = 417 + Ieee_Numeric_Std_Match_Log = 418 + Ieee_Numeric_Std_Match_Uns = 419 + Ieee_Numeric_Std_Match_Sgn = 420 + Ieee_Numeric_Std_Match_Slv = 421 + Ieee_Numeric_Std_Match_Suv = 422 + Ieee_Numeric_Std_To_01_Uns = 423 + Ieee_Numeric_Std_To_01_Sgn = 424 + Ieee_Math_Real_Ceil = 425 + Ieee_Math_Real_Floor = 426 + Ieee_Math_Real_Round = 427 + Ieee_Math_Real_Log2 = 428 + Ieee_Math_Real_Sin = 429 + Ieee_Math_Real_Cos = 430 + Ieee_Std_Logic_Unsigned_Add_Slv_Slv = 431 + Ieee_Std_Logic_Unsigned_Add_Slv_Int = 432 + Ieee_Std_Logic_Unsigned_Add_Int_Slv = 433 + Ieee_Std_Logic_Unsigned_Add_Slv_Log = 434 + Ieee_Std_Logic_Unsigned_Add_Log_Slv = 435 + Ieee_Std_Logic_Unsigned_Sub_Slv_Slv = 436 + Ieee_Std_Logic_Unsigned_Sub_Slv_Int = 437 + Ieee_Std_Logic_Unsigned_Sub_Int_Slv = 438 + Ieee_Std_Logic_Unsigned_Sub_Slv_Log = 439 + Ieee_Std_Logic_Unsigned_Sub_Log_Slv = 440 + Ieee_Std_Logic_Unsigned_Id_Slv = 441 + Ieee_Std_Logic_Unsigned_Mul_Slv_Slv = 442 + Ieee_Std_Logic_Unsigned_Lt_Slv_Slv = 443 + Ieee_Std_Logic_Unsigned_Lt_Slv_Int = 444 + Ieee_Std_Logic_Unsigned_Lt_Int_Slv = 445 + Ieee_Std_Logic_Unsigned_Le_Slv_Slv = 446 + Ieee_Std_Logic_Unsigned_Le_Slv_Int = 447 + Ieee_Std_Logic_Unsigned_Le_Int_Slv = 448 + Ieee_Std_Logic_Unsigned_Gt_Slv_Slv = 449 + Ieee_Std_Logic_Unsigned_Gt_Slv_Int = 450 + Ieee_Std_Logic_Unsigned_Gt_Int_Slv = 451 + Ieee_Std_Logic_Unsigned_Ge_Slv_Slv = 452 + Ieee_Std_Logic_Unsigned_Ge_Slv_Int = 453 + Ieee_Std_Logic_Unsigned_Ge_Int_Slv = 454 + Ieee_Std_Logic_Unsigned_Eq_Slv_Slv = 455 + Ieee_Std_Logic_Unsigned_Eq_Slv_Int = 456 + Ieee_Std_Logic_Unsigned_Eq_Int_Slv = 457 + Ieee_Std_Logic_Unsigned_Ne_Slv_Slv = 458 + Ieee_Std_Logic_Unsigned_Ne_Slv_Int = 459 + Ieee_Std_Logic_Unsigned_Ne_Int_Slv = 460 + Ieee_Std_Logic_Unsigned_Conv_Integer = 461 + Ieee_Std_Logic_Unsigned_Shl = 462 + Ieee_Std_Logic_Unsigned_Shr = 463 + Ieee_Std_Logic_Signed_Add_Slv_Slv = 464 + Ieee_Std_Logic_Signed_Add_Slv_Int = 465 + Ieee_Std_Logic_Signed_Add_Int_Slv = 466 + Ieee_Std_Logic_Signed_Add_Slv_Log = 467 + Ieee_Std_Logic_Signed_Add_Log_Slv = 468 + Ieee_Std_Logic_Signed_Sub_Slv_Slv = 469 + Ieee_Std_Logic_Signed_Sub_Slv_Int = 470 + Ieee_Std_Logic_Signed_Sub_Int_Slv = 471 + Ieee_Std_Logic_Signed_Sub_Slv_Log = 472 + Ieee_Std_Logic_Signed_Sub_Log_Slv = 473 + Ieee_Std_Logic_Signed_Id_Slv = 474 + Ieee_Std_Logic_Signed_Neg_Slv = 475 + Ieee_Std_Logic_Signed_Abs_Slv = 476 + Ieee_Std_Logic_Signed_Mul_Slv_Slv = 477 + Ieee_Std_Logic_Signed_Lt_Slv_Slv = 478 + Ieee_Std_Logic_Signed_Lt_Slv_Int = 479 + Ieee_Std_Logic_Signed_Lt_Int_Slv = 480 + Ieee_Std_Logic_Signed_Le_Slv_Slv = 481 + Ieee_Std_Logic_Signed_Le_Slv_Int = 482 + Ieee_Std_Logic_Signed_Le_Int_Slv = 483 + Ieee_Std_Logic_Signed_Gt_Slv_Slv = 484 + Ieee_Std_Logic_Signed_Gt_Slv_Int = 485 + Ieee_Std_Logic_Signed_Gt_Int_Slv = 486 + Ieee_Std_Logic_Signed_Ge_Slv_Slv = 487 + Ieee_Std_Logic_Signed_Ge_Slv_Int = 488 + Ieee_Std_Logic_Signed_Ge_Int_Slv = 489 + Ieee_Std_Logic_Signed_Eq_Slv_Slv = 490 + Ieee_Std_Logic_Signed_Eq_Slv_Int = 491 + Ieee_Std_Logic_Signed_Eq_Int_Slv = 492 + Ieee_Std_Logic_Signed_Ne_Slv_Slv = 493 + Ieee_Std_Logic_Signed_Ne_Slv_Int = 494 + Ieee_Std_Logic_Signed_Ne_Int_Slv = 495 + Ieee_Std_Logic_Signed_Conv_Integer = 496 + Ieee_Std_Logic_Signed_Shl = 497 + Ieee_Std_Logic_Signed_Shr = 498 + Ieee_Std_Logic_Arith_Conv_Unsigned_Int = 499 + Ieee_Std_Logic_Arith_Conv_Unsigned_Uns = 500 + Ieee_Std_Logic_Arith_Conv_Unsigned_Sgn = 501 + Ieee_Std_Logic_Arith_Conv_Unsigned_Log = 502 + Ieee_Std_Logic_Arith_Conv_Integer_Int = 503 + Ieee_Std_Logic_Arith_Conv_Integer_Uns = 504 + Ieee_Std_Logic_Arith_Conv_Integer_Sgn = 505 + Ieee_Std_Logic_Arith_Conv_Integer_Log = 506 + Ieee_Std_Logic_Arith_Conv_Vector_Int = 507 + Ieee_Std_Logic_Arith_Conv_Vector_Uns = 508 + Ieee_Std_Logic_Arith_Conv_Vector_Sgn = 509 + Ieee_Std_Logic_Arith_Conv_Vector_Log = 510 + Ieee_Std_Logic_Arith_Ext = 511 + Ieee_Std_Logic_Arith_Sxt = 512 + Ieee_Std_Logic_Arith_Id_Uns_Uns = 513 + Ieee_Std_Logic_Arith_Id_Sgn_Sgn = 514 + Ieee_Std_Logic_Arith_Neg_Sgn_Sgn = 515 + Ieee_Std_Logic_Arith_Abs_Sgn_Sgn = 516 + Ieee_Std_Logic_Arith_Shl_Uns = 517 + Ieee_Std_Logic_Arith_Shl_Sgn = 518 + Ieee_Std_Logic_Arith_Shr_Uns = 519 + Ieee_Std_Logic_Arith_Shr_Sgn = 520 + Ieee_Std_Logic_Arith_Id_Uns_Slv = 521 + Ieee_Std_Logic_Arith_Id_Sgn_Slv = 522 + Ieee_Std_Logic_Arith_Neg_Sgn_Slv = 523 + Ieee_Std_Logic_Arith_Abs_Sgn_Slv = 524 + Ieee_Std_Logic_Arith_Mul_Uns_Uns_Uns = 525 + Ieee_Std_Logic_Arith_Mul_Sgn_Sgn_Sgn = 526 + Ieee_Std_Logic_Arith_Mul_Sgn_Uns_Sgn = 527 + Ieee_Std_Logic_Arith_Mul_Uns_Sgn_Sgn = 528 + Ieee_Std_Logic_Arith_Mul_Uns_Uns_Slv = 529 + Ieee_Std_Logic_Arith_Mul_Sgn_Sgn_Slv = 530 + Ieee_Std_Logic_Arith_Mul_Sgn_Uns_Slv = 531 + Ieee_Std_Logic_Arith_Mul_Uns_Sgn_Slv = 532 + Ieee_Std_Logic_Arith_Add_Uns_Uns_Uns = 533 + Ieee_Std_Logic_Arith_Add_Sgn_Sgn_Sgn = 534 + Ieee_Std_Logic_Arith_Add_Uns_Sgn_Sgn = 535 + Ieee_Std_Logic_Arith_Add_Sgn_Uns_Sgn = 536 + Ieee_Std_Logic_Arith_Add_Uns_Int_Uns = 537 + Ieee_Std_Logic_Arith_Add_Int_Uns_Uns = 538 + Ieee_Std_Logic_Arith_Add_Sgn_Int_Sgn = 539 + Ieee_Std_Logic_Arith_Add_Int_Sgn_Sgn = 540 + Ieee_Std_Logic_Arith_Add_Uns_Log_Uns = 541 + Ieee_Std_Logic_Arith_Add_Log_Uns_Uns = 542 + Ieee_Std_Logic_Arith_Add_Sgn_Log_Sgn = 543 + Ieee_Std_Logic_Arith_Add_Log_Sgn_Sgn = 544 + Ieee_Std_Logic_Arith_Add_Uns_Uns_Slv = 545 + Ieee_Std_Logic_Arith_Add_Sgn_Sgn_Slv = 546 + Ieee_Std_Logic_Arith_Add_Uns_Sgn_Slv = 547 + Ieee_Std_Logic_Arith_Add_Sgn_Uns_Slv = 548 + Ieee_Std_Logic_Arith_Add_Uns_Int_Slv = 549 + Ieee_Std_Logic_Arith_Add_Int_Uns_Slv = 550 + Ieee_Std_Logic_Arith_Add_Sgn_Int_Slv = 551 + Ieee_Std_Logic_Arith_Add_Int_Sgn_Slv = 552 + Ieee_Std_Logic_Arith_Add_Uns_Log_Slv = 553 + Ieee_Std_Logic_Arith_Add_Log_Uns_Slv = 554 + Ieee_Std_Logic_Arith_Add_Sgn_Log_Slv = 555 + Ieee_Std_Logic_Arith_Add_Log_Sgn_Slv = 556 + Ieee_Std_Logic_Arith_Sub_Uns_Uns_Uns = 557 + Ieee_Std_Logic_Arith_Sub_Sgn_Sgn_Sgn = 558 + Ieee_Std_Logic_Arith_Sub_Uns_Sgn_Sgn = 559 + Ieee_Std_Logic_Arith_Sub_Sgn_Uns_Sgn = 560 + Ieee_Std_Logic_Arith_Sub_Uns_Int_Uns = 561 + Ieee_Std_Logic_Arith_Sub_Int_Uns_Uns = 562 + Ieee_Std_Logic_Arith_Sub_Sgn_Int_Sgn = 563 + Ieee_Std_Logic_Arith_Sub_Int_Sgn_Sgn = 564 + Ieee_Std_Logic_Arith_Sub_Uns_Log_Uns = 565 + Ieee_Std_Logic_Arith_Sub_Log_Uns_Uns = 566 + Ieee_Std_Logic_Arith_Sub_Sgn_Log_Sgn = 567 + Ieee_Std_Logic_Arith_Sub_Log_Sgn_Sgn = 568 + Ieee_Std_Logic_Arith_Sub_Uns_Uns_Slv = 569 + Ieee_Std_Logic_Arith_Sub_Sgn_Sgn_Slv = 570 + Ieee_Std_Logic_Arith_Sub_Uns_Sgn_Slv = 571 + Ieee_Std_Logic_Arith_Sub_Sgn_Uns_Slv = 572 + Ieee_Std_Logic_Arith_Sub_Uns_Int_Slv = 573 + Ieee_Std_Logic_Arith_Sub_Int_Uns_Slv = 574 + Ieee_Std_Logic_Arith_Sub_Sgn_Int_Slv = 575 + Ieee_Std_Logic_Arith_Sub_Int_Sgn_Slv = 576 + Ieee_Std_Logic_Arith_Sub_Uns_Log_Slv = 577 + Ieee_Std_Logic_Arith_Sub_Log_Uns_Slv = 578 + Ieee_Std_Logic_Arith_Sub_Sgn_Log_Slv = 579 + Ieee_Std_Logic_Arith_Sub_Log_Sgn_Slv = 580 + Ieee_Std_Logic_Arith_Lt_Uns_Uns = 581 + Ieee_Std_Logic_Arith_Lt_Sgn_Sgn = 582 + Ieee_Std_Logic_Arith_Lt_Uns_Sgn = 583 + Ieee_Std_Logic_Arith_Lt_Sgn_Uns = 584 + Ieee_Std_Logic_Arith_Lt_Uns_Int = 585 + Ieee_Std_Logic_Arith_Lt_Int_Uns = 586 + Ieee_Std_Logic_Arith_Lt_Sgn_Int = 587 + Ieee_Std_Logic_Arith_Lt_Int_Sgn = 588 + Ieee_Std_Logic_Arith_Le_Uns_Uns = 589 + Ieee_Std_Logic_Arith_Le_Sgn_Sgn = 590 + Ieee_Std_Logic_Arith_Le_Uns_Sgn = 591 + Ieee_Std_Logic_Arith_Le_Sgn_Uns = 592 + Ieee_Std_Logic_Arith_Le_Uns_Int = 593 + Ieee_Std_Logic_Arith_Le_Int_Uns = 594 + Ieee_Std_Logic_Arith_Le_Sgn_Int = 595 + Ieee_Std_Logic_Arith_Le_Int_Sgn = 596 + Ieee_Std_Logic_Arith_Gt_Uns_Uns = 597 + Ieee_Std_Logic_Arith_Gt_Sgn_Sgn = 598 + Ieee_Std_Logic_Arith_Gt_Uns_Sgn = 599 + Ieee_Std_Logic_Arith_Gt_Sgn_Uns = 600 + Ieee_Std_Logic_Arith_Gt_Uns_Int = 601 + Ieee_Std_Logic_Arith_Gt_Int_Uns = 602 + Ieee_Std_Logic_Arith_Gt_Sgn_Int = 603 + Ieee_Std_Logic_Arith_Gt_Int_Sgn = 604 + Ieee_Std_Logic_Arith_Ge_Uns_Uns = 605 + Ieee_Std_Logic_Arith_Ge_Sgn_Sgn = 606 + Ieee_Std_Logic_Arith_Ge_Uns_Sgn = 607 + Ieee_Std_Logic_Arith_Ge_Sgn_Uns = 608 + Ieee_Std_Logic_Arith_Ge_Uns_Int = 609 + Ieee_Std_Logic_Arith_Ge_Int_Uns = 610 + Ieee_Std_Logic_Arith_Ge_Sgn_Int = 611 + Ieee_Std_Logic_Arith_Ge_Int_Sgn = 612 + Ieee_Std_Logic_Arith_Eq_Uns_Uns = 613 + Ieee_Std_Logic_Arith_Eq_Sgn_Sgn = 614 + Ieee_Std_Logic_Arith_Eq_Uns_Sgn = 615 + Ieee_Std_Logic_Arith_Eq_Sgn_Uns = 616 + Ieee_Std_Logic_Arith_Eq_Uns_Int = 617 + Ieee_Std_Logic_Arith_Eq_Int_Uns = 618 + Ieee_Std_Logic_Arith_Eq_Sgn_Int = 619 + Ieee_Std_Logic_Arith_Eq_Int_Sgn = 620 + Ieee_Std_Logic_Arith_Ne_Uns_Uns = 621 + Ieee_Std_Logic_Arith_Ne_Sgn_Sgn = 622 + Ieee_Std_Logic_Arith_Ne_Uns_Sgn = 623 + Ieee_Std_Logic_Arith_Ne_Sgn_Uns = 624 + Ieee_Std_Logic_Arith_Ne_Uns_Int = 625 + Ieee_Std_Logic_Arith_Ne_Int_Uns = 626 + Ieee_Std_Logic_Arith_Ne_Sgn_Int = 627 + Ieee_Std_Logic_Arith_Ne_Int_Sgn = 628 + Ieee_Std_Logic_Misc_And_Reduce_Slv = 629 + Ieee_Std_Logic_Misc_And_Reduce_Suv = 630 + Ieee_Std_Logic_Misc_Nand_Reduce_Slv = 631 + Ieee_Std_Logic_Misc_Nand_Reduce_Suv = 632 + Ieee_Std_Logic_Misc_Or_Reduce_Slv = 633 + Ieee_Std_Logic_Misc_Or_Reduce_Suv = 634 + Ieee_Std_Logic_Misc_Nor_Reduce_Slv = 635 + Ieee_Std_Logic_Misc_Nor_Reduce_Suv = 636 + Ieee_Std_Logic_Misc_Xor_Reduce_Slv = 637 + Ieee_Std_Logic_Misc_Xor_Reduce_Suv = 638 + Ieee_Std_Logic_Misc_Xnor_Reduce_Slv = 639 + Ieee_Std_Logic_Misc_Xnor_Reduce_Suv = 640 Get_Kind = libghdl.vhdl__nodes__get_kind Get_Location = libghdl.vhdl__nodes__get_location @@ -1876,13 +1883,9 @@ Get_Attribute_Designator = libghdl.vhdl__nodes__get_attribute_designator Set_Attribute_Designator = libghdl.vhdl__nodes__set_attribute_designator -Get_Attribute_Specification_Chain = ( - libghdl.vhdl__nodes__get_attribute_specification_chain -) +Get_Attribute_Specification_Chain = libghdl.vhdl__nodes__get_attribute_specification_chain -Set_Attribute_Specification_Chain = ( - libghdl.vhdl__nodes__set_attribute_specification_chain -) +Set_Attribute_Specification_Chain = libghdl.vhdl__nodes__set_attribute_specification_chain Get_Attribute_Specification = libghdl.vhdl__nodes__get_attribute_specification @@ -2052,13 +2055,9 @@ Get_Bound_Vunit_Chain = libghdl.vhdl__nodes__get_bound_vunit_chain Set_Bound_Vunit_Chain = libghdl.vhdl__nodes__set_bound_vunit_chain -Get_Verification_Block_Configuration = ( - libghdl.vhdl__nodes__get_verification_block_configuration -) +Get_Verification_Block_Configuration = libghdl.vhdl__nodes__get_verification_block_configuration -Set_Verification_Block_Configuration = ( - libghdl.vhdl__nodes__set_verification_block_configuration -) +Set_Verification_Block_Configuration = libghdl.vhdl__nodes__set_verification_block_configuration Get_Block_Configuration = libghdl.vhdl__nodes__get_block_configuration @@ -2180,6 +2179,10 @@ Get_Implicit_Definition = libghdl.vhdl__nodes__get_implicit_definition Set_Implicit_Definition = libghdl.vhdl__nodes__set_implicit_definition +Get_Uninstantiated_Subprogram_Name = libghdl.vhdl__nodes__get_uninstantiated_subprogram_name + +Set_Uninstantiated_Subprogram_Name = libghdl.vhdl__nodes__set_uninstantiated_subprogram_name + Get_Default_Value = libghdl.vhdl__nodes__get_default_value Set_Default_Value = libghdl.vhdl__nodes__set_default_value @@ -2324,13 +2327,9 @@ Get_Resolution_Indication = libghdl.vhdl__nodes__get_resolution_indication Set_Resolution_Indication = libghdl.vhdl__nodes__set_resolution_indication -Get_Record_Element_Resolution_Chain = ( - libghdl.vhdl__nodes__get_record_element_resolution_chain -) +Get_Record_Element_Resolution_Chain = libghdl.vhdl__nodes__get_record_element_resolution_chain -Set_Record_Element_Resolution_Chain = ( - libghdl.vhdl__nodes__set_record_element_resolution_chain -) +Set_Record_Element_Resolution_Chain = libghdl.vhdl__nodes__set_record_element_resolution_chain Get_Tolerance = libghdl.vhdl__nodes__get_tolerance @@ -2400,13 +2399,9 @@ Get_Index_Subtype_List = libghdl.vhdl__nodes__get_index_subtype_list Set_Index_Subtype_List = libghdl.vhdl__nodes__set_index_subtype_list -Get_Index_Subtype_Definition_List = ( - libghdl.vhdl__nodes__get_index_subtype_definition_list -) +Get_Index_Subtype_Definition_List = libghdl.vhdl__nodes__get_index_subtype_definition_list -Set_Index_Subtype_Definition_List = ( - libghdl.vhdl__nodes__set_index_subtype_definition_list -) +Set_Index_Subtype_Definition_List = libghdl.vhdl__nodes__set_index_subtype_definition_list Get_Element_Subtype_Indication = libghdl.vhdl__nodes__get_element_subtype_indication @@ -2444,13 +2439,9 @@ Get_Designated_Type = libghdl.vhdl__nodes__get_designated_type Set_Designated_Type = libghdl.vhdl__nodes__set_designated_type -Get_Designated_Subtype_Indication = ( - libghdl.vhdl__nodes__get_designated_subtype_indication -) +Get_Designated_Subtype_Indication = libghdl.vhdl__nodes__get_designated_subtype_indication -Set_Designated_Subtype_Indication = ( - libghdl.vhdl__nodes__set_designated_subtype_indication -) +Set_Designated_Subtype_Indication = libghdl.vhdl__nodes__set_designated_subtype_indication Get_Index_List = libghdl.vhdl__nodes__get_index_list @@ -2664,13 +2655,9 @@ Get_Default_Binding_Indication = libghdl.vhdl__nodes__get_default_binding_indica Set_Default_Binding_Indication = libghdl.vhdl__nodes__set_default_binding_indication -Get_Default_Configuration_Declaration = ( - libghdl.vhdl__nodes__get_default_configuration_declaration -) +Get_Default_Configuration_Declaration = libghdl.vhdl__nodes__get_default_configuration_declaration -Set_Default_Configuration_Declaration = ( - libghdl.vhdl__nodes__set_default_configuration_declaration -) +Set_Default_Configuration_Declaration = libghdl.vhdl__nodes__set_default_configuration_declaration Get_Expression = libghdl.vhdl__nodes__get_expression @@ -2968,13 +2955,9 @@ Get_Association_Choices_Chain = libghdl.vhdl__nodes__get_association_choices_cha Set_Association_Choices_Chain = libghdl.vhdl__nodes__set_association_choices_chain -Get_Case_Statement_Alternative_Chain = ( - libghdl.vhdl__nodes__get_case_statement_alternative_chain -) +Get_Case_Statement_Alternative_Chain = libghdl.vhdl__nodes__get_case_statement_alternative_chain -Set_Case_Statement_Alternative_Chain = ( - libghdl.vhdl__nodes__set_case_statement_alternative_chain -) +Set_Case_Statement_Alternative_Chain = libghdl.vhdl__nodes__set_case_statement_alternative_chain Get_Choice_Staticness = libghdl.vhdl__nodes__get_choice_staticness |