aslkeywords.y (e5e1f58a87fc8cfe8597a1cf14ee4de2c7c16dd8) aslkeywords.y (a009b7dcabdc27aa3fdde1f2c6dd08d4fe5a3170)
1NoEcho('
2/******************************************************************************
3 *
4 * Module Name: aslkeywords.y - Rules for resource descriptor keywords
5 *
6 *****************************************************************************/
7
8/******************************************************************************

--- 188 unchanged lines hidden (view full) ---

197AddressKeyword
198 : PARSEOP_ADDRESSTYPE_MEMORY {$$ = TrCreateLeafOp (PARSEOP_ADDRESSTYPE_MEMORY);}
199 | PARSEOP_ADDRESSTYPE_RESERVED {$$ = TrCreateLeafOp (PARSEOP_ADDRESSTYPE_RESERVED);}
200 | PARSEOP_ADDRESSTYPE_NVS {$$ = TrCreateLeafOp (PARSEOP_ADDRESSTYPE_NVS);}
201 | PARSEOP_ADDRESSTYPE_ACPI {$$ = TrCreateLeafOp (PARSEOP_ADDRESSTYPE_ACPI);}
202 ;
203
204AddressSpaceKeyword
1NoEcho('
2/******************************************************************************
3 *
4 * Module Name: aslkeywords.y - Rules for resource descriptor keywords
5 *
6 *****************************************************************************/
7
8/******************************************************************************

--- 188 unchanged lines hidden (view full) ---

197AddressKeyword
198 : PARSEOP_ADDRESSTYPE_MEMORY {$$ = TrCreateLeafOp (PARSEOP_ADDRESSTYPE_MEMORY);}
199 | PARSEOP_ADDRESSTYPE_RESERVED {$$ = TrCreateLeafOp (PARSEOP_ADDRESSTYPE_RESERVED);}
200 | PARSEOP_ADDRESSTYPE_NVS {$$ = TrCreateLeafOp (PARSEOP_ADDRESSTYPE_NVS);}
201 | PARSEOP_ADDRESSTYPE_ACPI {$$ = TrCreateLeafOp (PARSEOP_ADDRESSTYPE_ACPI);}
202 ;
203
204AddressSpaceKeyword
205 : ByteConst {$$ = UtCheckIntegerRange ($1, 0x0A, 0xFF);}
205 : ByteConst {$$ = UtCheckIntegerRange ($1, ACPI_NUM_PREDEFINED_REGIONS, 0xFF);}
206 | RegionSpaceKeyword {}
207 ;
208
209BitsPerByteKeyword
210 : PARSEOP_BITSPERBYTE_FIVE {$$ = TrCreateLeafOp (PARSEOP_BITSPERBYTE_FIVE);}
211 | PARSEOP_BITSPERBYTE_SIX {$$ = TrCreateLeafOp (PARSEOP_BITSPERBYTE_SIX);}
212 | PARSEOP_BITSPERBYTE_SEVEN {$$ = TrCreateLeafOp (PARSEOP_BITSPERBYTE_SEVEN);}
213 | PARSEOP_BITSPERBYTE_EIGHT {$$ = TrCreateLeafOp (PARSEOP_BITSPERBYTE_EIGHT);}

--- 250 unchanged lines hidden ---
206 | RegionSpaceKeyword {}
207 ;
208
209BitsPerByteKeyword
210 : PARSEOP_BITSPERBYTE_FIVE {$$ = TrCreateLeafOp (PARSEOP_BITSPERBYTE_FIVE);}
211 | PARSEOP_BITSPERBYTE_SIX {$$ = TrCreateLeafOp (PARSEOP_BITSPERBYTE_SIX);}
212 | PARSEOP_BITSPERBYTE_SEVEN {$$ = TrCreateLeafOp (PARSEOP_BITSPERBYTE_SEVEN);}
213 | PARSEOP_BITSPERBYTE_EIGHT {$$ = TrCreateLeafOp (PARSEOP_BITSPERBYTE_EIGHT);}

--- 250 unchanged lines hidden ---