aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/libghdl/std_names.py
blob: 961a0d247b1e057f5b4d74dbf182ce831cf34d6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
# Auto generated Python source file from Ada sources
# Call 'make' in 'src/vhdl' to regenerate:
#
from pyTooling.Decorators import export


@export
class Name:
    First_Character = 1
    Last_Character = 256
    First_Keyword = 257
    Mod = 257
    Rem = 258
    Abs = 259
    Not = 260
    Access = 261
    After = 262
    Alias = 263
    All = 264
    Architecture = 265
    Array = 266
    Assert = 267
    Attribute = 268
    Begin = 269
    Block = 270
    Body = 271
    Buffer = 272
    Bus = 273
    Case = 274
    Component = 275
    Configuration = 276
    Constant = 277
    Disconnect = 278
    Downto = 279
    Else = 280
    Elsif = 281
    End = 282
    Entity = 283
    Exit = 284
    File = 285
    For = 286
    Function = 287
    Generate = 288
    Generic = 289
    Guarded = 290
    If = 291
    In = 292
    Inout = 293
    Is = 294
    Label = 295
    Library = 296
    Linkage = 297
    Loop = 298
    Map = 299
    New = 300
    Next = 301
    Null = 302
    Of = 303
    On = 304
    Open = 305
    Others = 306
    Out = 307
    Package = 308
    Port = 309
    Procedure = 310
    Process = 311
    Range = 312
    Record = 313
    Register = 314
    Report = 315
    Return = 316
    Select = 317
    Severity = 318
    Signal = 319
    Subtype = 320
    Then = 321
    To = 322
    Transport = 323
    Type = 324
    Units = 325
    Until = 326
    Use = 327
    Variable = 328
    Wait = 329
    When = 330
    While = 331
    With = 332
    And = 333
    Or = 334
    Xor = 335
    Nand = 336
    Nor = 337
    Last_Vhdl87 = 337
    Xnor = 338
    Group = 339
    Impure = 340
    Inertial = 341
    Literal = 342
    Postponed = 343
    Pure = 344
    Reject = 345
    Shared = 346
    Unaffected = 347
    Sll = 348
    Sla = 349
    Sra = 350
    Srl = 351
    Rol = 352
    Ror = 353
    Last_Vhdl93 = 353
    Protected = 354
    Last_Vhdl00 = 354
    Assume = 355
    Context = 356
    Cover = 357
    Default = 358
    Force = 359
    Parameter = 360
    Property = 361
    Release = 362
    Restrict = 363
    Restrict_Guarantee = 364
    Sequence = 365
    Inherit = 366
    Vmode = 367
    Vprop = 368
    Vunit = 369
    Last_Vhdl08 = 369
    First_Ams_Keyword = 370
    Across = 370
    Break = 371
    Limit = 372
    Nature = 373
    Noise = 374
    Procedural = 375
    Quantity = 376
    Reference = 377
    Spectrum = 378
    Subnature = 379
    Terminal = 380
    Through = 381
    Tolerance = 382
    Last_AMS_Vhdl = 382
    Last_Keyword = 382
    First_Verilog = 383
    Always = 383
    Assign = 384
    Buf = 385
    Bufif0 = 386
    Bufif1 = 387
    Casex = 388
    Casez = 389
    Cmos = 390
    Deassign = 391
    Defparam = 392
    Disable = 393
    Edge = 394
    Endcase = 395
    Endfunction = 396
    Endmodule = 397
    Endprimitive = 398
    Endspecify = 399
    Endtable = 400
    Endtask = 401
    Forever = 402
    Fork = 403
    Highz0 = 404
    Highz1 = 405
    Ifnone = 406
    Initial = 407
    Input = 408
    Join = 409
    Large = 410
    Macromodule = 411
    Medium = 412
    Module = 413
    Negedge = 414
    Nmos = 415
    Notif0 = 416
    Notif1 = 417
    Output = 418
    Pmos = 419
    Posedge = 420
    Primitive = 421
    Pull0 = 422
    Pull1 = 423
    Pulldown = 424
    Pullup = 425
    Realtime = 426
    Reg = 427
    Repeat = 428
    Rcmos = 429
    Rnmos = 430
    Rpmos = 431
    Rtran = 432
    Rtranif0 = 433
    Rtranif1 = 434
    Scalared = 435
    Small = 436
    Specify = 437
    Specparam = 438
    Strong0 = 439
    Strong1 = 440
    Supply0 = 441
    Supply1 = 442
    Tablex = 443
    Task = 444
    Tran = 445
    Tranif0 = 446
    Tranif1 = 447
    Tri = 448
    Tri0 = 449
    Tri1 = 450
    Triand = 451
    Trior = 452
    Trireg = 453
    Vectored = 454
    Wand = 455
    Weak0 = 456
    Weak1 = 457
    Wire = 458
    Wor = 459
    Last_Verilog = 459
    First_V2001 = 460
    Automatic = 460
    Endgenerate = 461
    Genvar = 462
    Localparam = 463
    Unsigned = 464
    Signed = 465
    Last_V2001 = 465
    Uwire = 466
    First_SV3_0 = 467
    Always_Comb = 467
    Always_Ff = 468
    Always_Latch = 469
    Bit = 470
    Byte = 471
    Changed = 472
    Char = 473
    Const = 474
    Continue = 475
    Do = 476
    Endinterface = 477
    Endtransition = 478
    Enum = 479
    Export = 480
    Extern = 481
    Forkjoin = 482
    Iff = 483
    Import = 484
    Int = 485
    Interface = 486
    Logic = 487
    Longint = 488
    Longreal = 489
    Modport = 490
    Packed = 491
    Priority = 492
    Shortint = 493
    Shortreal = 494
    Static = 495
    Struct = 496
    Timeprecision = 497
    Timeunit = 498
    Transition = 499
    Typedef = 500
    Union = 501
    Unique = 502
    Unique0 = 503
    Void = 504
    Last_SV3_0 = 504
    First_SV3_1 = 505
    Chandle = 505
    Class = 506
    Clocking = 507
    Constraint = 508
    Dist = 509
    Endclass = 510
    Endclocking = 511
    Endprogram = 512
    Endproperty = 513
    Endsequence = 514
    Extends = 515
    Final = 516
    First_Match = 517
    Inside = 518
    Intersect = 519
    Join_Any = 520
    Join_None = 521
    Local = 522
    Program = 523
    Rand = 524
    Randc = 525
    Ref = 526
    Solve = 527
    String = 528
    Super = 529
    This = 530
    Throughout = 531
    Var = 532
    Virtual = 533
    Wait_Order = 534
    Last_SV3_1 = 534
    First_SV3_1a = 535
    Covergroup = 535
    Coverpoint = 536
    Endgroup = 537
    Endpackage = 538
    Expect = 539
    Foreach = 540
    Ignore_Bins = 541
    Illegal_Bins = 542
    Matches = 543
    Randcase = 544
    Randsequence = 545
    Tagged = 546
    Wildcard = 547
    Last_SV3_1a = 547
    First_SV2009 = 548
    Implies = 548
    S_Until = 549
    S_Until_With = 550
    Until_With = 551
    Last_SV2009 = 551
    First_Operator = 552
    Op_Equality = 552
    Op_Inequality = 553
    Op_Less = 554
    Op_Less_Equal = 555
    Op_Greater = 556
    Op_Greater_Equal = 557
    Op_Plus = 558
    Op_Minus = 559
    Op_Mul = 560
    Op_Div = 561
    Op_Exp = 562
    Op_Concatenation = 563
    Op_Condition = 564
    Op_Match_Equality = 565
    Op_Match_Inequality = 566
    Op_Match_Less = 567
    Op_Match_Less_Equal = 568
    Op_Match_Greater = 569
    Op_Match_Greater_Equal = 570
    Last_Operator = 570
    First_Attribute = 571
    Base = 571
    Left = 572
    Right = 573
    High = 574
    Low = 575
    Pos = 576
    Val = 577
    Succ = 578
    Pred = 579
    Leftof = 580
    Rightof = 581
    Reverse_Range = 582
    Length = 583
    Delayed = 584
    Stable = 585
    Quiet = 586
    Transaction = 587
    Event = 588
    Active = 589
    Last_Event = 590
    Last_Active = 591
    Last_Value = 592
    Last_Attribute = 592
    First_Vhdl87_Attribute = 593
    Behavior = 593
    Structure = 594
    Last_Vhdl87_Attribute = 594
    First_Vhdl93_Attribute = 595
    Ascending = 595
    Image = 596
    Value = 597
    Driving = 598
    Driving_Value = 599
    Simple_Name = 600
    Instance_Name = 601
    Path_Name = 602
    Last_Vhdl93_Attribute = 602
    First_Vhdl08_Attribute = 603
    Element = 603
    Last_Vhdl08_Attribute = 603
    First_AMS_Attribute = 604
    Contribution = 604
    Dot = 605
    Integ = 606
    Above = 607
    Zoh = 608
    Ltf = 609
    Ztf = 610
    Ramp = 611
    Slew = 612
    Last_AMS_Attribute = 612
    First_Standard = 613
    Std = 613
    Standard = 614
    Boolean = 615
    NFalse = 616
    NTrue = 617
    Character = 618
    Severity_Level = 619
    Note = 620
    Warning = 621
    Error = 622
    Failure = 623
    Universal_Integer = 624
    Universal_Real = 625
    Convertible_Integer = 626
    Convertible_Real = 627
    Integer = 628
    Real = 629
    Time = 630
    Fs = 631
    Ps = 632
    Ns = 633
    Us = 634
    Ms = 635
    Sec = 636
    Min = 637
    Hr = 638
    Max = 639
    Delay_Length = 640
    Now = 641
    Natural = 642
    Positive = 643
    Bit_Vector = 644
    File_Open_Kind = 645
    Read_Mode = 646
    Write_Mode = 647
    Append_Mode = 648
    File_Open_Status = 649
    Open_Ok = 650
    Status_Error = 651
    Name_Error = 652
    Mode_Error = 653
    Foreign = 654
    Boolean_Vector = 655
    To_Bstring = 656
    To_Binary_String = 657
    To_Ostring = 658
    To_Octal_String = 659
    To_Hstring = 660
    To_Hex_String = 661
    Integer_Vector = 662
    Real_Vector = 663
    Time_Vector = 664
    Digits = 665
    Format = 666
    Unit = 667
    Domain_Type = 668
    Quiescent_Domain = 669
    Time_Domain = 670
    Frequency_Domain = 671
    Domain = 672
    Frequency = 673
    First_Env = 674
    Env = 674
    Stop = 675
    Finish = 676
    Resolution_Limit = 677
    First_Charname = 678
    Nul = 678
    Soh = 679
    Stx = 680
    Etx = 681
    Eot = 682
    Enq = 683
    Ack = 684
    Bel = 685
    Bs = 686
    Ht = 687
    Lf = 688
    Vt = 689
    Ff = 690
    Cr = 691
    So = 692
    Si = 693
    Dle = 694
    Dc1 = 695
    Dc2 = 696
    Dc3 = 697
    Dc4 = 698
    Nak = 699
    Syn = 700
    Etb = 701
    Can = 702
    Em = 703
    Sub = 704
    Esc = 705
    Fsp = 706
    Gsp = 707
    Rsp = 708
    Usp = 709
    Del = 710
    C128 = 711
    C129 = 712
    C130 = 713
    C131 = 714
    C132 = 715
    C133 = 716
    C134 = 717
    C135 = 718
    C136 = 719
    C137 = 720
    C138 = 721
    C139 = 722
    C140 = 723
    C141 = 724
    C142 = 725
    C143 = 726
    C144 = 727
    C145 = 728
    C146 = 729
    C147 = 730
    C148 = 731
    C149 = 732
    C150 = 733
    C151 = 734
    C152 = 735
    C153 = 736
    C154 = 737
    C155 = 738
    C156 = 739
    C157 = 740
    C158 = 741
    C159 = 742
    Last_Charname = 742
    First_Misc = 743
    Guard = 743
    Deallocate = 744
    File_Open = 745
    File_Close = 746
    Read = 747
    Write = 748
    Flush = 749
    Endfile = 750
    I = 751
    J = 752
    F = 753
    L = 754
    P = 755
    R = 756
    S = 757
    V = 758
    External_Name = 759
    Open_Kind = 760
    First = 761
    Last = 762
    Textio = 763
    Work = 764
    Text = 765
    To_String = 766
    Minimum = 767
    Maximum = 768
    Untruncated_Text_Read = 769
    Textio_Read_Real = 770
    Textio_Write_Real = 771
    Get_Resolution_Limit = 772
    Control_Simulation = 773
    Step = 774
    Index = 775
    Item = 776
    Uu_File_Uu = 777
    Uu_Line_Uu = 778
    Label_Applies_To = 779
    Return_Port_Name = 780
    Map_To_Operator = 781
    Type_Function = 782
    Built_In = 783
    NNone = 784
    Last_Misc = 784
    First_Ieee_Pkg = 785
    Ieee = 785
    Std_Logic_1164 = 786
    VITAL_Timing = 787
    VITAL_Primitives = 788
    Numeric_Std = 789
    Numeric_Bit = 790
    Numeric_Std_Unsigned = 791
    Std_Logic_Arith = 792
    Std_Logic_Signed = 793
    Std_Logic_Unsigned = 794
    Std_Logic_Textio = 795
    Std_Logic_Misc = 796
    Math_Real = 797
    Last_Ieee_Pkg = 797
    First_Ieee_Name = 798
    Std_Ulogic = 798
    Std_Ulogic_Vector = 799
    Std_Logic = 800
    Std_Logic_Vector = 801
    Rising_Edge = 802
    Falling_Edge = 803
    VITAL_Level0 = 804
    VITAL_Level1 = 805
    Unresolved_Unsigned = 806
    Unresolved_Signed = 807
    To_Integer = 808
    To_Unsigned = 809
    To_Signed = 810
    Resize = 811
    Std_Match = 812
    Shift_Left = 813
    Shift_Right = 814
    Rotate_Left = 815
    Rotate_Right = 816
    To_Bit = 817
    To_Bitvector = 818
    To_Stdulogic = 819
    To_Stdlogicvector = 820
    To_Stdulogicvector = 821
    Is_X = 822
    To_01 = 823
    To_X01 = 824
    To_X01Z = 825
    To_UX01 = 826
    Conv_Signed = 827
    Conv_Unsigned = 828
    Conv_Integer = 829
    Conv_Std_Logic_Vector = 830
    And_Reduce = 831
    Nand_Reduce = 832
    Or_Reduce = 833
    Nor_Reduce = 834
    Xor_Reduce = 835
    Xnor_Reduce = 836
    Ceil = 837
    Floor = 838
    Round = 839
    Log2 = 840
    Sin = 841
    Cos = 842
    Arctan = 843
    Shl = 844
    Shr = 845
    Ext = 846
    Sxt = 847
    Find_Leftmost = 848
    Find_Rightmost = 849
    Last_Ieee_Name = 849
    First_Synthesis = 850
    Allconst = 850
    Allseq = 851
    Anyconst = 852
    Anyseq = 853
    Gclk = 854
    Loc = 855
    Keep = 856
    Syn_Black_Box = 857
    Last_Synthesis = 857
    First_Directive = 858
    Define = 858
    Endif = 859
    Ifdef = 860
    Ifndef = 861
    Include = 862
    Timescale = 863
    Undef = 864
    Protect = 865
    Begin_Protected = 866
    End_Protected = 867
    Key_Block = 868
    Data_Block = 869
    Line = 870
    Celldefine = 871
    Endcelldefine = 872
    Default_Nettype = 873
    Resetall = 874
    Last_Directive = 874
    First_Systask = 875
    Bits = 875
    D_Root = 876
    D_Unit = 877
    Last_Systask = 877
    First_SV_Method = 878
    Size = 878
    Insert = 879
    Delete = 880
    Pop_Front = 881
    Pop_Back = 882
    Push_Front = 883
    Push_Back = 884
    Name = 885
    Len = 886
    Substr = 887
    Exists = 888
    Atoi = 889
    Itoa = 890
    Find = 891
    Find_Index = 892
    Find_First = 893
    Find_First_Index = 894
    Find_Last = 895
    Find_Last_Index = 896
    Num = 897
    Randomize = 898
    Pre_Randomize = 899
    Post_Randomize = 900
    Srandom = 901
    Get_Randstate = 902
    Set_Randstate = 903
    Seed = 904
    State = 905
    Last_SV_Method = 905
    First_BSV = 906
    uAction = 906
    uActionValue = 907
    BVI = 908
    uC = 909
    uCF = 910
    uE = 911
    uSB = 912
    uSBR = 913
    Action = 914
    Endaction = 915
    Actionvalue = 916
    Endactionvalue = 917
    Ancestor = 918
    Clocked_By = 919
    Default_Clock = 920
    Default_Reset = 921
    Dependencies = 922
    Deriving = 923
    Determines = 924
    Enable = 925
    Ifc_Inout = 926
    Input_Clock = 927
    Input_Reset = 928
    Instance = 929
    Endinstance = 930
    Let = 931
    Match = 932
    Method = 933
    Endmethod = 934
    Numeric = 935
    Output_Clock = 936
    Output_Reset = 937
    Par = 938
    Endpar = 939
    Path = 940
    Provisos = 941
    Ready = 942
    Reset_By = 943
    Rule = 944
    Endrule = 945
    Rules = 946
    Endrules = 947
    Same_Family = 948
    Schedule = 949
    Seq = 950
    Endseq = 951
    Typeclass = 952
    Endtypeclass = 953
    Valueof = 954
    uValueof = 955
    Last_BSV = 955
    First_Comment = 956
    Psl = 956
    Pragma = 957
    Synthesis = 958
    Synopsys = 959
    Translate_Off = 960
    Translate_On = 961
    Translate = 962
    Synthesis_Off = 963
    Synthesis_On = 964
    Off = 965
    Full_Case = 966
    Parallel_Case = 967
    Last_Comment = 967
    First_PSL = 968
    A = 968
    Af = 969
    Ag = 970
    Ax = 971
    Abort = 972
    Assume_Guarantee = 973
    Async_Abort = 974
    Before = 975
    Clock = 976
    E = 977
    Ef = 978
    Eg = 979
    Ex = 980
    Endpoint = 981
    Eventually = 982
    Fairness = 983
    Fell = 984
    Forall = 985
    G = 986
    Inf = 987
    Never = 988
    Next_A = 989
    Next_E = 990
    Next_Event = 991
    Next_Event_A = 992
    Next_Event_E = 993
    Onehot = 994
    Onehot0 = 995
    Prev = 996
    Rose = 997
    Strong = 998
    Sync_Abort = 999
    W = 1000
    Whilenot = 1001
    Within = 1002
    X = 1003
    Last_PSL = 1003
    First_Edif = 1004
    Celltype = 1014
    View = 1015
    Viewtype = 1016
    Direction = 1017
    Contents = 1018
    Net = 1019
    Viewref = 1020
    Cellref = 1021
    Libraryref = 1022
    Portinstance = 1023
    Joined = 1024
    Portref = 1025
    Instanceref = 1026
    Design = 1027
    Designator = 1028
    Owner = 1029
    Member = 1030
    Number = 1031
    Rename = 1032
    Userdata = 1033
    Last_Edif = 1033