summaryrefslogtreecommitdiffstats
path: root/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Eot/CParser4/CListener.py
blob: 4c62459638668e2963983b244660a71951299c14 (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
# Generated from C.g4 by ANTLR 4.7.1
from antlr4 import *
if __name__ is not None and "." in __name__:
    from .CParser import CParser
else:
    from CParser import CParser

## @file
# The file defines the parser for C source files.
#
# THIS FILE IS AUTO-GENENERATED. PLEASE DON NOT MODIFY THIS FILE.
# This file is generated by running:
# java org.antlr.Tool C.g
#
# Copyright (c) 2009 - 2010, Intel Corporation  All rights reserved.
#
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
##

import Ecc.CodeFragment as CodeFragment
import Ecc.FileProfile as FileProfile


# This class defines a complete listener for a parse tree produced by CParser.
class CListener(ParseTreeListener):

    # Enter a parse tree produced by CParser#translation_unit.
    # @param  ctx Type: CParser.Translation_unitContext
    def enterTranslation_unit(self,ctx):
        pass

    # Exit a parse tree produced by CParser#translation_unit.
    # @param  ctx Type: CParser.Translation_unitContext
    def exitTranslation_unit(self,ctx):
        pass


    # Enter a parse tree produced by CParser#external_declaration.
    # @param  ctx Type: CParser.External_declarationContext
    def enterExternal_declaration(self,ctx):
        pass

    # Exit a parse tree produced by CParser#external_declaration.
    # @param  ctx Type: CParser.External_declarationContext
    def exitExternal_declaration(self,ctx):
        pass


    # Enter a parse tree produced by CParser#function_definition.
    # @param  ctx Type: CParser.Function_definitionContext
    def enterFunction_definition(self,ctx):
        pass

    # Exit a parse tree produced by CParser#function_definition.
    # @param  ctx Type: CParser.Function_definitionContext
    def exitFunction_definition(self,ctx):
        pass


    # Enter a parse tree produced by CParser#declaration_specifiers.
    # @param  ctx Type: CParser.Declaration_specifiersContext
    def enterDeclaration_specifiers(self,ctx):
        pass

    # Exit a parse tree produced by CParser#declaration_specifiers.
    # @param  ctx Type: CParser.Declaration_specifiersContext
    def exitDeclaration_specifiers(self,ctx):
        pass


    # Enter a parse tree produced by CParser#declaration.
    # @param  ctx Type: CParser.DeclarationContext
    def enterDeclaration(self,ctx):
        pass

    # Exit a parse tree produced by CParser#declaration.
    # @param  ctx Type: CParser.DeclarationContext
    def exitDeclaration(self,ctx):
        pass


    # Enter a parse tree produced by CParser#init_declarator_list.
    # @param  ctx Type: CParser.Init_declarator_listContext
    def enterInit_declarator_list(self,ctx):
        pass

    # Exit a parse tree produced by CParser#init_declarator_list.
    # @param  ctx Type: CParser.Init_declarator_listContext
    def exitInit_declarator_list(self,ctx):
        pass


    # Enter a parse tree produced by CParser#init_declarator.
    # @param  ctx Type: CParser.Init_declaratorContext
    def enterInit_declarator(self,ctx):
        pass

    # Exit a parse tree produced by CParser#init_declarator.
    # @param  ctx Type: CParser.Init_declaratorContext
    def exitInit_declarator(self,ctx):
        pass


    # Enter a parse tree produced by CParser#storage_class_specifier.
    # @param  ctx Type: CParser.Storage_class_specifierContext
    def enterStorage_class_specifier(self,ctx):
        pass

    # Exit a parse tree produced by CParser#storage_class_specifier.
    # @param  ctx Type: CParser.Storage_class_specifierContext
    def exitStorage_class_specifier(self,ctx):
        pass


    # Enter a parse tree produced by CParser#type_specifier.
    # @param  ctx Type: CParser.Type_specifierContext
    def enterType_specifier(self,ctx):
        pass

    # Exit a parse tree produced by CParser#type_specifier.
    # @param  ctx Type: CParser.Type_specifierContext
    def exitType_specifier(self,ctx):
        pass


    # Enter a parse tree produced by CParser#type_id.
    # @param  ctx Type: CParser.Type_idContext
    def enterType_id(self,ctx):
        pass

    # Exit a parse tree produced by CParser#type_id.
    # @param  ctx Type: CParser.Type_idContext
    def exitType_id(self,ctx):
        pass


    # Enter a parse tree produced by CParser#struct_or_union_specifier.
    # @param  ctx Type: CParser.Struct_or_union_specifierContext
    def enterStruct_or_union_specifier(self,ctx):
        pass

    # Exit a parse tree produced by CParser#struct_or_union_specifier.
    # @param  ctx Type: CParser.Struct_or_union_specifierContext
    def exitStruct_or_union_specifier(self,ctx):
        pass


    # Enter a parse tree produced by CParser#struct_or_union.
    # @param  ctx Type: CParser.Struct_or_unionContext
    def enterStruct_or_union(self,ctx):
        pass

    # Exit a parse tree produced by CParser#struct_or_union.
    # @param  ctx Type: CParser.Struct_or_unionContext
    def exitStruct_or_union(self,ctx):
        pass


    # Enter a parse tree produced by CParser#struct_declaration_list.
    # @param  ctx Type: CParser.Struct_declaration_listContext
    def enterStruct_declaration_list(self,ctx):
        pass

    # Exit a parse tree produced by CParser#struct_declaration_list.
    # @param  ctx Type: CParser.Struct_declaration_listContext
    def exitStruct_declaration_list(self,ctx):
        pass


    # Enter a parse tree produced by CParser#struct_declaration.
    # @param  ctx Type: CParser.Struct_declarationContext
    def enterStruct_declaration(self,ctx):
        pass

    # Exit a parse tree produced by CParser#struct_declaration.
    # @param  ctx Type: CParser.Struct_declarationContext
    def exitStruct_declaration(self,ctx):
        pass


    # Enter a parse tree produced by CParser#specifier_qualifier_list.
    # @param  ctx Type: CParser.Specifier_qualifier_listContext
    def enterSpecifier_qualifier_list(self,ctx):
        pass

    # Exit a parse tree produced by CParser#specifier_qualifier_list.
    # @param  ctx Type: CParser.Specifier_qualifier_listContext
    def exitSpecifier_qualifier_list(self,ctx):
        pass


    # Enter a parse tree produced by CParser#struct_declarator_list.
    # @param  ctx Type: CParser.Struct_declarator_listContext
    def enterStruct_declarator_list(self,ctx):
        pass

    # Exit a parse tree produced by CParser#struct_declarator_list.
    # @param  ctx Type: CParser.Struct_declarator_listContext
    def exitStruct_declarator_list(self,ctx):
        pass


    # Enter a parse tree produced by CParser#struct_declarator.
    # @param  ctx Type: CParser.Struct_declaratorContext
    def enterStruct_declarator(self,ctx):
        pass

    # Exit a parse tree produced by CParser#struct_declarator.
    # @param  ctx Type: CParser.Struct_declaratorContext
    def exitStruct_declarator(self,ctx):
        pass


    # Enter a parse tree produced by CParser#enum_specifier.
    # @param  ctx Type: CParser.Enum_specifierContext
    def enterEnum_specifier(self,ctx):
        pass

    # Exit a parse tree produced by CParser#enum_specifier.
    # @param  ctx Type: CParser.Enum_specifierContext
    def exitEnum_specifier(self,ctx):
        pass


    # Enter a parse tree produced by CParser#enumerator_list.
    # @param  ctx Type: CParser.Enumerator_listContext
    def enterEnumerator_list(self,ctx):
        pass

    # Exit a parse tree produced by CParser#enumerator_list.
    # @param  ctx Type: CParser.Enumerator_listContext
    def exitEnumerator_list(self,ctx):
        pass


    # Enter a parse tree produced by CParser#enumerator.
    # @param  ctx Type: CParser.EnumeratorContext
    def enterEnumerator(self,ctx):
        pass

    # Exit a parse tree produced by CParser#enumerator.
    # @param  ctx Type: CParser.EnumeratorContext
    def exitEnumerator(self,ctx):
        pass


    # Enter a parse tree produced by CParser#type_qualifier.
    # @param  ctx Type: CParser.Type_qualifierContext
    def enterType_qualifier(self,ctx):
        pass

    # Exit a parse tree produced by CParser#type_qualifier.
    # @param  ctx Type: CParser.Type_qualifierContext
    def exitType_qualifier(self,ctx):
        pass


    # Enter a parse tree produced by CParser#declarator.
    # @param  ctx Type: CParser.DeclaratorContext
    def enterDeclarator(self,ctx):
        pass

    # Exit a parse tree produced by CParser#declarator.
    # @param  ctx Type: CParser.DeclaratorContext
    def exitDeclarator(self,ctx):
        pass


    # Enter a parse tree produced by CParser#direct_declarator.
    # @param  ctx Type: CParser.Direct_declaratorContext
    def enterDirect_declarator(self,ctx):
        pass

    # Exit a parse tree produced by CParser#direct_declarator.
    # @param  ctx Type: CParser.Direct_declaratorContext
    def exitDirect_declarator(self,ctx):
        pass


    # Enter a parse tree produced by CParser#declarator_suffix.
    # @param  ctx Type: CParser.Declarator_suffixContext
    def enterDeclarator_suffix(self,ctx):
        pass

    # Exit a parse tree produced by CParser#declarator_suffix.
    # @param  ctx Type: CParser.Declarator_suffixContext
    def exitDeclarator_suffix(self,ctx):
        pass


    # Enter a parse tree produced by CParser#pointer.
    # @param  ctx Type: CParser.PointerContext
    def enterPointer(self,ctx):
        pass

    # Exit a parse tree produced by CParser#pointer.
    # @param  ctx Type: CParser.PointerContext
    def exitPointer(self,ctx):
        pass


    # Enter a parse tree produced by CParser#parameter_type_list.
    # @param  ctx Type: CParser.Parameter_type_listContext
    def enterParameter_type_list(self,ctx):
        pass

    # Exit a parse tree produced by CParser#parameter_type_list.
    # @param  ctx Type: CParser.Parameter_type_listContext
    def exitParameter_type_list(self,ctx):
        pass


    # Enter a parse tree produced by CParser#parameter_list.
    # @param  ctx Type: CParser.Parameter_listContext
    def enterParameter_list(self,ctx):
        pass

    # Exit a parse tree produced by CParser#parameter_list.
    # @param  ctx Type: CParser.Parameter_listContext
    def exitParameter_list(self,ctx):
        pass


    # Enter a parse tree produced by CParser#parameter_declaration.
    # @param  ctx Type: CParser.Parameter_declarationContext
    def enterParameter_declaration(self,ctx):
        pass

    # Exit a parse tree produced by CParser#parameter_declaration.
    # @param  ctx Type: CParser.Parameter_declarationContext
    def exitParameter_declaration(self,ctx):
        pass


    # Enter a parse tree produced by CParser#identifier_list.
    # @param  ctx Type: CParser.Identifier_listContext
    def enterIdentifier_list(self,ctx):
        pass

    # Exit a parse tree produced by CParser#identifier_list.
    # @param  ctx Type: CParser.Identifier_listContext
    def exitIdentifier_list(self,ctx):
        pass


    # Enter a parse tree produced by CParser#type_name.
    # @param  ctx Type: CParser.Type_nameContext
    def enterType_name(self,ctx):
        pass

    # Exit a parse tree produced by CParser#type_name.
    # @param  ctx Type: CParser.Type_nameContext
    def exitType_name(self,ctx):
        pass


    # Enter a parse tree produced by CParser#abstract_declarator.
    # @param  ctx Type: CParser.Abstract_declaratorContext
    def enterAbstract_declarator(self,ctx):
        pass

    # Exit a parse tree produced by CParser#abstract_declarator.
    # @param  ctx Type: CParser.Abstract_declaratorContext
    def exitAbstract_declarator(self,ctx):
        pass


    # Enter a parse tree produced by CParser#direct_abstract_declarator.
    # @param  ctx Type: CParser.Direct_abstract_declaratorContext
    def enterDirect_abstract_declarator(self,ctx):
        pass

    # Exit a parse tree produced by CParser#direct_abstract_declarator.
    # @param  ctx Type: CParser.Direct_abstract_declaratorContext
    def exitDirect_abstract_declarator(self,ctx):
        pass


    # Enter a parse tree produced by CParser#abstract_declarator_suffix.
    # @param  ctx Type: CParser.Abstract_declarator_suffixContext
    def enterAbstract_declarator_suffix(self,ctx):
        pass

    # Exit a parse tree produced by CParser#abstract_declarator_suffix.
    # @param  ctx Type: CParser.Abstract_declarator_suffixContext
    def exitAbstract_declarator_suffix(self,ctx):
        pass


    # Enter a parse tree produced by CParser#initializer.
    # @param  ctx Type: CParser.InitializerContext
    def enterInitializer(self,ctx):
        pass

    # Exit a parse tree produced by CParser#initializer.
    # @param  ctx Type: CParser.InitializerContext
    def exitInitializer(self,ctx):
        pass


    # Enter a parse tree produced by CParser#initializer_list.
    # @param  ctx Type: CParser.Initializer_listContext
    def enterInitializer_list(self,ctx):
        pass

    # Exit a parse tree produced by CParser#initializer_list.
    # @param  ctx Type: CParser.Initializer_listContext
    def exitInitializer_list(self,ctx):
        pass


    # Enter a parse tree produced by CParser#argument_expression_list.
    # @param  ctx Type: CParser.Argument_expression_listContext
    def enterArgument_expression_list(self,ctx):
        pass

    # Exit a parse tree produced by CParser#argument_expression_list.
    # @param  ctx Type: CParser.Argument_expression_listContext
    def exitArgument_expression_list(self,ctx):
        pass


    # Enter a parse tree produced by CParser#additive_expression.
    # @param  ctx Type: CParser.Additive_expressionContext
    def enterAdditive_expression(self,ctx):
        pass

    # Exit a parse tree produced by CParser#additive_expression.
    # @param  ctx Type: CParser.Additive_expressionContext
    def exitAdditive_expression(self,ctx):
        pass


    # Enter a parse tree produced by CParser#multiplicative_expression.
    # @param  ctx Type: CParser.Multiplicative_expressionContext
    def enterMultiplicative_expression(self,ctx):
        pass

    # Exit a parse tree produced by CParser#multiplicative_expression.
    # @param  ctx Type: CParser.Multiplicative_expressionContext
    def exitMultiplicative_expression(self,ctx):
        pass


    # Enter a parse tree produced by CParser#cast_expression.
    # @param  ctx Type: CParser.Cast_expressionContext
    def enterCast_expression(self,ctx):
        pass

    # Exit a parse tree produced by CParser#cast_expression.
    # @param  ctx Type: CParser.Cast_expressionContext
    def exitCast_expression(self,ctx):
        pass


    # Enter a parse tree produced by CParser#unary_expression.
    # @param  ctx Type: CParser.Unary_expressionContext
    def enterUnary_expression(self,ctx):
        pass

    # Exit a parse tree produced by CParser#unary_expression.
    # @param  ctx Type: CParser.Unary_expressionContext
    def exitUnary_expression(self,ctx):
        pass


    # Enter a parse tree produced by CParser#postfix_expression.
    # @param  ctx Type: CParser.Postfix_expressionContext
    def enterPostfix_expression(self,ctx):
        pass

    # Exit a parse tree produced by CParser#postfix_expression.
    # @param  ctx Type: CParser.Postfix_expressionContext
    def exitPostfix_expression(self,ctx):
        pass


    # Enter a parse tree produced by CParser#macro_parameter_list.
    # @param  ctx Type: CParser.Macro_parameter_listContext
    def enterMacro_parameter_list(self,ctx):
        pass

    # Exit a parse tree produced by CParser#macro_parameter_list.
    # @param  ctx Type: CParser.Macro_parameter_listContext
    def exitMacro_parameter_list(self,ctx):
        pass


    # Enter a parse tree produced by CParser#unary_operator.
    # @param  ctx Type: CParser.Unary_operatorContext
    def enterUnary_operator(self,ctx):
        pass

    # Exit a parse tree produced by CParser#unary_operator.
    # @param  ctx Type: CParser.Unary_operatorContext
    def exitUnary_operator(self,ctx):
        pass


    # Enter a parse tree produced by CParser#primary_expression.
    # @param  ctx Type: CParser.Primary_expressionContext
    def enterPrimary_expression(self,ctx):
        pass

    # Exit a parse tree produced by CParser#primary_expression.
    # @param  ctx Type: CParser.Primary_expressionContext
    def exitPrimary_expression(self,ctx):
        pass


    # Enter a parse tree produced by CParser#constant.
    # @param  ctx Type: CParser.ConstantContext
    def enterConstant(self,ctx):
        pass

    # Exit a parse tree produced by CParser#constant.
    # @param  ctx Type: CParser.ConstantContext
    def exitConstant(self,ctx):
        pass


    # Enter a parse tree produced by CParser#expression.
    # @param  ctx Type: CParser.ExpressionContext
    def enterExpression(self,ctx):
        pass

    # Exit a parse tree produced by CParser#expression.
    # @param  ctx Type: CParser.ExpressionContext
    def exitExpression(self,ctx):
        pass


    # Enter a parse tree produced by CParser#constant_expression.
    # @param  ctx Type: CParser.Constant_expressionContext
    def enterConstant_expression(self,ctx):
        pass

    # Exit a parse tree produced by CParser#constant_expression.
    # @param  ctx Type: CParser.Constant_expressionContext
    def exitConstant_expression(self,ctx):
        pass


    # Enter a parse tree produced by CParser#assignment_expression.
    # @param  ctx Type: CParser.Assignment_expressionContext
    def enterAssignment_expression(self,ctx):
        pass

    # Exit a parse tree produced by CParser#assignment_expression.
    # @param  ctx Type: CParser.Assignment_expressionContext
    def exitAssignment_expression(self,ctx):
        pass


    # Enter a parse tree produced by CParser#lvalue.
    # @param  ctx Type: CParser.LvalueContext
    def enterLvalue(self,ctx):
        pass

    # Exit a parse tree produced by CParser#lvalue.
    # @param  ctx Type: CParser.LvalueContext
    def exitLvalue(self,ctx):
        pass


    # Enter a parse tree produced by CParser#assignment_operator.
    # @param  ctx Type: CParser.Assignment_operatorContext
    def enterAssignment_operator(self,ctx):
        pass

    # Exit a parse tree produced by CParser#assignment_operator.
    # @param  ctx Type: CParser.Assignment_operatorContext
    def exitAssignment_operator(self,ctx):
        pass


    # Enter a parse tree produced by CParser#conditional_expression.
    # @param  ctx Type: CParser.Conditional_expressionContext
    def enterConditional_expression(self,ctx):
        pass

    # Exit a parse tree produced by CParser#conditional_expression.
    # @param  ctx Type: CParser.Conditional_expressionContext
    def exitConditional_expression(self,ctx):
        pass


    # Enter a parse tree produced by CParser#logical_or_expression.
    # @param  ctx Type: CParser.Logical_or_expressionContext
    def enterLogical_or_expression(self,ctx):
        pass

    # Exit a parse tree produced by CParser#logical_or_expression.
    # @param  ctx Type: CParser.Logical_or_expressionContext
    def exitLogical_or_expression(self,ctx):
        pass


    # Enter a parse tree produced by CParser#logical_and_expression.
    # @param  ctx Type: CParser.Logical_and_expressionContext
    def enterLogical_and_expression(self,ctx):
        pass

    # Exit a parse tree produced by CParser#logical_and_expression.
    # @param  ctx Type: CParser.Logical_and_expressionContext
    def exitLogical_and_expression(self,ctx):
        pass


    # Enter a parse tree produced by CParser#inclusive_or_expression.
    # @param  ctx Type: CParser.Inclusive_or_expressionContext
    def enterInclusive_or_expression(self,ctx):
        pass

    # Exit a parse tree produced by CParser#inclusive_or_expression.
    # @param  ctx Type: CParser.Inclusive_or_expressionContext
    def exitInclusive_or_expression(self,ctx):
        pass


    # Enter a parse tree produced by CParser#exclusive_or_expression.
    # @param  ctx Type: CParser.Exclusive_or_expressionContext
    def enterExclusive_or_expression(self,ctx):
        pass

    # Exit a parse tree produced by CParser#exclusive_or_expression.
    # @param  ctx Type: CParser.Exclusive_or_expressionContext
    def exitExclusive_or_expression(self,ctx):
        pass


    # Enter a parse tree produced by CParser#and_expression.
    # @param  ctx Type: CParser.And_expressionContext
    def enterAnd_expression(self,ctx):
        pass

    # Exit a parse tree produced by CParser#and_expression.
    # @param  ctx Type: CParser.And_expressionContext
    def exitAnd_expression(self,ctx):
        pass


    # Enter a parse tree produced by CParser#equality_expression.
    # @param  ctx Type: CParser.Equality_expressionContext
    def enterEquality_expression(self,ctx):
        pass

    # Exit a parse tree produced by CParser#equality_expression.
    # @param  ctx Type: CParser.Equality_expressionContext
    def exitEquality_expression(self,ctx):
        pass


    # Enter a parse tree produced by CParser#relational_expression.
    # @param  ctx Type: CParser.Relational_expressionContext
    def enterRelational_expression(self,ctx):
        pass

    # Exit a parse tree produced by CParser#relational_expression.
    # @param  ctx Type: CParser.Relational_expressionContext
    def exitRelational_expression(self,ctx):
        pass


    # Enter a parse tree produced by CParser#shift_expression.
    # @param  ctx Type: CParser.Shift_expressionContext
    def enterShift_expression(self,ctx):
        pass

    # Exit a parse tree produced by CParser#shift_expression.
    # @param  ctx Type: CParser.Shift_expressionContext
    def exitShift_expression(self,ctx):
        pass


    # Enter a parse tree produced by CParser#statement.
    # @param  ctx Type: CParser.StatementContext
    def enterStatement(self,ctx):
        pass

    # Exit a parse tree produced by CParser#statement.
    # @param  ctx Type: CParser.StatementContext
    def exitStatement(self,ctx):
        pass


    # Enter a parse tree produced by CParser#asm2_statement.
    # @param  ctx Type: CParser.Asm2_statementContext
    def enterAsm2_statement(self,ctx):
        pass

    # Exit a parse tree produced by CParser#asm2_statement.
    # @param  ctx Type: CParser.Asm2_statementContext
    def exitAsm2_statement(self,ctx):
        pass


    # Enter a parse tree produced by CParser#asm1_statement.
    # @param  ctx Type: CParser.Asm1_statementContext
    def enterAsm1_statement(self,ctx):
        pass

    # Exit a parse tree produced by CParser#asm1_statement.
    # @param  ctx Type: CParser.Asm1_statementContext
    def exitAsm1_statement(self,ctx):
        pass


    # Enter a parse tree produced by CParser#asm_statement.
    # @param  ctx Type: CParser.Asm_statementContext
    def enterAsm_statement(self,ctx):
        pass

    # Exit a parse tree produced by CParser#asm_statement.
    # @param  ctx Type: CParser.Asm_statementContext
    def exitAsm_statement(self,ctx):
        pass


    # Enter a parse tree produced by CParser#macro_statement.
    # @param  ctx Type: CParser.Macro_statementContext
    def enterMacro_statement(self,ctx):
        pass

    # Exit a parse tree produced by CParser#macro_statement.
    # @param  ctx Type: CParser.Macro_statementContext
    def exitMacro_statement(self,ctx):
        pass


    # Enter a parse tree produced by CParser#labeled_statement.
    # @param  ctx Type: CParser.Labeled_statementContext
    def enterLabeled_statement(self,ctx):
        pass

    # Exit a parse tree produced by CParser#labeled_statement.
    # @param  ctx Type: CParser.Labeled_statementContext
    def exitLabeled_statement(self,ctx):
        pass


    # Enter a parse tree produced by CParser#compound_statement.
    # @param  ctx Type: CParser.Compound_statementContext
    def enterCompound_statement(self,ctx):
        pass

    # Exit a parse tree produced by CParser#compound_statement.
    # @param  ctx Type: CParser.Compound_statementContext
    def exitCompound_statement(self,ctx):
        pass


    # Enter a parse tree produced by CParser#statement_list.
    # @param  ctx Type: CParser.Statement_listContext
    def enterStatement_list(self,ctx):
        pass

    # Exit a parse tree produced by CParser#statement_list.
    # @param  ctx Type: CParser.Statement_listContext
    def exitStatement_list(self,ctx):
        pass


    # Enter a parse tree produced by CParser#expression_statement.
    # @param  ctx Type: CParser.Expression_statementContext
    def enterExpression_statement(self,ctx):
        pass

    # Exit a parse tree produced by CParser#expression_statement.
    # @param  ctx Type: CParser.Expression_statementContext
    def exitExpression_statement(self,ctx):
        pass


    # Enter a parse tree produced by CParser#selection_statement.
    # @param  ctx Type: CParser.Selection_statementContext
    def enterSelection_statement(self,ctx):
        pass

    # Exit a parse tree produced by CParser#selection_statement.
    # @param  ctx Type: CParser.Selection_statementContext
    def exitSelection_statement(self,ctx):
        pass


    # Enter a parse tree produced by CParser#iteration_statement.
    # @param  ctx Type: CParser.Iteration_statementContext
    def enterIteration_statement(self,ctx):
        pass

    # Exit a parse tree produced by CParser#iteration_statement.
    # @param  ctx Type: CParser.Iteration_statementContext
    def exitIteration_statement(self,ctx):
        pass


    # Enter a parse tree produced by CParser#jump_statement.
    # @param  ctx Type: CParser.Jump_statementContext
    def enterJump_statement(self,ctx):
        pass

    # Exit a parse tree produced by CParser#jump_statement.
    # @param  ctx Type: CParser.Jump_statementContext
    def exitJump_statement(self,ctx):
        pass