diff options
Diffstat (limited to 'compiler/aslcompiler.y')
-rw-r--r-- | compiler/aslcompiler.y | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/compiler/aslcompiler.y b/compiler/aslcompiler.y index 6c84f889c1b94..5574f88159506 100644 --- a/compiler/aslcompiler.y +++ b/compiler/aslcompiler.y @@ -392,6 +392,13 @@ AslLocalAllocate (unsigned int Size); %token <i> PARSEOP_XOR %token <i> PARSEOP_ZERO +/* + * Special functions. These should probably stay at the end of this + * table. + */ +%token <i> PARSEOP___DATE__ +%token <i> PARSEOP___FILE__ +%token <i> PARSEOP___LINE__ /* * Production names @@ -695,7 +702,6 @@ AslLocalAllocate (unsigned int Size); %type <n> OptionalReference %type <n> OptionalAccessSize - %type <n> TermArgItem %type <n> NameStringItem @@ -2317,6 +2323,9 @@ ConstExprTerm : PARSEOP_ZERO {$$ = TrCreateValuedLeafNode (PARSEOP_ZERO, 0);} | PARSEOP_ONE {$$ = TrCreateValuedLeafNode (PARSEOP_ONE, 1);} | PARSEOP_ONES {$$ = TrCreateValuedLeafNode (PARSEOP_ONES, ACPI_UINT64_MAX);} + | PARSEOP___DATE__ {$$ = TrCreateConstantLeafNode (PARSEOP___DATE__);} + | PARSEOP___FILE__ {$$ = TrCreateConstantLeafNode (PARSEOP___FILE__);} + | PARSEOP___LINE__ {$$ = TrCreateConstantLeafNode (PARSEOP___LINE__);} ; /* OptionalCount must appear before ByteList or an incorrect reduction will result */ @@ -3070,7 +3079,6 @@ NameStringItem | ',' error {$$ = AslDoError (); yyclearin;} ; - %% |