Symbol: TrCreateLeafOp
usr/src/cmd/acpi/iasl/aslcompiler.h
889
TrCreateLeafOp (
usr/src/cmd/acpi/iasl/aslcstyle.y
204
: PARSEOP_EXP_LOGICAL_NOT {$<n>$ = TrCreateLeafOp (PARSEOP_LNOT);}
usr/src/cmd/acpi/iasl/aslcstyle.y
206
| PARSEOP_EXP_NOT {$<n>$ = TrCreateLeafOp (PARSEOP_NOT);}
usr/src/cmd/acpi/iasl/aslcstyle.y
209
| SuperName PARSEOP_EXP_INCREMENT {$<n>$ = TrCreateLeafOp (PARSEOP_INCREMENT);}
usr/src/cmd/acpi/iasl/aslcstyle.y
211
| SuperName PARSEOP_EXP_DECREMENT {$<n>$ = TrCreateLeafOp (PARSEOP_DECREMENT);}
usr/src/cmd/acpi/iasl/aslcstyle.y
216
| TermArg PARSEOP_EXP_ADD {$<n>$ = TrCreateLeafOp (PARSEOP_ADD);}
usr/src/cmd/acpi/iasl/aslcstyle.y
218
| TermArg PARSEOP_EXP_DIVIDE {$<n>$ = TrCreateLeafOp (PARSEOP_DIVIDE);}
usr/src/cmd/acpi/iasl/aslcstyle.y
221
| TermArg PARSEOP_EXP_MODULO {$<n>$ = TrCreateLeafOp (PARSEOP_MOD);}
usr/src/cmd/acpi/iasl/aslcstyle.y
223
| TermArg PARSEOP_EXP_MULTIPLY {$<n>$ = TrCreateLeafOp (PARSEOP_MULTIPLY);}
usr/src/cmd/acpi/iasl/aslcstyle.y
225
| TermArg PARSEOP_EXP_SHIFT_LEFT {$<n>$ = TrCreateLeafOp (PARSEOP_SHIFTLEFT);}
usr/src/cmd/acpi/iasl/aslcstyle.y
227
| TermArg PARSEOP_EXP_SHIFT_RIGHT {$<n>$ = TrCreateLeafOp (PARSEOP_SHIFTRIGHT);}
usr/src/cmd/acpi/iasl/aslcstyle.y
229
| TermArg PARSEOP_EXP_SUBTRACT {$<n>$ = TrCreateLeafOp (PARSEOP_SUBTRACT);}
usr/src/cmd/acpi/iasl/aslcstyle.y
232
| TermArg PARSEOP_EXP_AND {$<n>$ = TrCreateLeafOp (PARSEOP_AND);}
usr/src/cmd/acpi/iasl/aslcstyle.y
234
| TermArg PARSEOP_EXP_OR {$<n>$ = TrCreateLeafOp (PARSEOP_OR);}
usr/src/cmd/acpi/iasl/aslcstyle.y
236
| TermArg PARSEOP_EXP_XOR {$<n>$ = TrCreateLeafOp (PARSEOP_XOR);}
usr/src/cmd/acpi/iasl/aslcstyle.y
239
| TermArg PARSEOP_EXP_GREATER {$<n>$ = TrCreateLeafOp (PARSEOP_LGREATER);}
usr/src/cmd/acpi/iasl/aslcstyle.y
241
| TermArg PARSEOP_EXP_GREATER_EQUAL {$<n>$ = TrCreateLeafOp (PARSEOP_LGREATEREQUAL);}
usr/src/cmd/acpi/iasl/aslcstyle.y
243
| TermArg PARSEOP_EXP_LESS {$<n>$ = TrCreateLeafOp (PARSEOP_LLESS);}
usr/src/cmd/acpi/iasl/aslcstyle.y
245
| TermArg PARSEOP_EXP_LESS_EQUAL {$<n>$ = TrCreateLeafOp (PARSEOP_LLESSEQUAL);}
usr/src/cmd/acpi/iasl/aslcstyle.y
248
| TermArg PARSEOP_EXP_EQUAL {$<n>$ = TrCreateLeafOp (PARSEOP_LEQUAL);}
usr/src/cmd/acpi/iasl/aslcstyle.y
250
| TermArg PARSEOP_EXP_NOT_EQUAL {$<n>$ = TrCreateLeafOp (PARSEOP_LNOTEQUAL);}
usr/src/cmd/acpi/iasl/aslcstyle.y
253
| TermArg PARSEOP_EXP_LOGICAL_AND {$<n>$ = TrCreateLeafOp (PARSEOP_LAND);}
usr/src/cmd/acpi/iasl/aslcstyle.y
255
| TermArg PARSEOP_EXP_LOGICAL_OR {$<n>$ = TrCreateLeafOp (PARSEOP_LOR);}
usr/src/cmd/acpi/iasl/aslcstyle.y
283
PARSEOP_EXP_INDEX_RIGHT {$$ = TrCreateLeafOp (PARSEOP_INDEX);
usr/src/cmd/acpi/iasl/aslcstyle.y
319
| TermArg PARSEOP_EXP_ADD_EQ {$<n>$ = TrCreateLeafOp (PARSEOP_ADD);}
usr/src/cmd/acpi/iasl/aslcstyle.y
323
| TermArg PARSEOP_EXP_DIV_EQ {$<n>$ = TrCreateLeafOp (PARSEOP_DIVIDE);}
usr/src/cmd/acpi/iasl/aslcstyle.y
327
| TermArg PARSEOP_EXP_MOD_EQ {$<n>$ = TrCreateLeafOp (PARSEOP_MOD);}
usr/src/cmd/acpi/iasl/aslcstyle.y
331
| TermArg PARSEOP_EXP_MUL_EQ {$<n>$ = TrCreateLeafOp (PARSEOP_MULTIPLY);}
usr/src/cmd/acpi/iasl/aslcstyle.y
335
| TermArg PARSEOP_EXP_SHL_EQ {$<n>$ = TrCreateLeafOp (PARSEOP_SHIFTLEFT);}
usr/src/cmd/acpi/iasl/aslcstyle.y
339
| TermArg PARSEOP_EXP_SHR_EQ {$<n>$ = TrCreateLeafOp (PARSEOP_SHIFTRIGHT);}
usr/src/cmd/acpi/iasl/aslcstyle.y
343
| TermArg PARSEOP_EXP_SUB_EQ {$<n>$ = TrCreateLeafOp (PARSEOP_SUBTRACT);}
usr/src/cmd/acpi/iasl/aslcstyle.y
347
| TermArg PARSEOP_EXP_AND_EQ {$<n>$ = TrCreateLeafOp (PARSEOP_AND);}
usr/src/cmd/acpi/iasl/aslcstyle.y
351
| TermArg PARSEOP_EXP_OR_EQ {$<n>$ = TrCreateLeafOp (PARSEOP_OR);}
usr/src/cmd/acpi/iasl/aslcstyle.y
355
| TermArg PARSEOP_EXP_XOR_EQ {$<n>$ = TrCreateLeafOp (PARSEOP_XOR);}
usr/src/cmd/acpi/iasl/aslhelpers.y
163
: ',' {$$ = TrCreateLeafOp (
usr/src/cmd/acpi/iasl/aslhelpers.y
165
| ',' PARSEOP_BUSMASTERTYPE_MASTER {$$ = TrCreateLeafOp (
usr/src/cmd/acpi/iasl/aslhelpers.y
167
| ',' PARSEOP_BUSMASTERTYPE_NOTMASTER {$$ = TrCreateLeafOp (
usr/src/cmd/acpi/iasl/aslhelpers.y
187
: {$$ = TrCreateLeafOp (
usr/src/cmd/acpi/iasl/aslhelpers.y
189
| ',' {$$ = TrCreateLeafOp (
usr/src/cmd/acpi/iasl/aslhelpers.y
264
: {$$ = TrCreateLeafOp (
usr/src/cmd/acpi/iasl/aslhelpers.y
266
| ',' {$$ = TrCreateLeafOp (
usr/src/cmd/acpi/iasl/aslhelpers.y
299
: {$$ = TrCreateLeafOp (
usr/src/cmd/acpi/iasl/aslhelpers.y
305
: {$$ = TrCreateLeafOp (
usr/src/cmd/acpi/iasl/aslhelpers.y
327
: {$$ = TrCreateLeafOp (
usr/src/cmd/acpi/iasl/aslhelpers.y
329
| PARSEOP_READWRITETYPE_BOTH {$$ = TrCreateLeafOp (
usr/src/cmd/acpi/iasl/aslhelpers.y
331
| PARSEOP_READWRITETYPE_READONLY {$$ = TrCreateLeafOp (
usr/src/cmd/acpi/iasl/aslhelpers.y
336
: {$$ = TrCreateLeafOp (
usr/src/cmd/acpi/iasl/aslhelpers.y
342
: {$$ = TrCreateLeafOp (
usr/src/cmd/acpi/iasl/aslhelpers.y
344
| ',' {$$ = TrCreateLeafOp (
usr/src/cmd/acpi/iasl/aslhelpers.y
351
: {$$ = TrCreateLeafOp (
usr/src/cmd/acpi/iasl/aslhelpers.y
353
| ',' {$$ = TrCreateLeafOp (
usr/src/cmd/acpi/iasl/aslhelpers.y
412
: {$$ = TrCreateLeafOp (
usr/src/cmd/acpi/iasl/aslhelpers.y
414
| ',' {$$ = TrCreateLeafOp (
usr/src/cmd/acpi/iasl/aslkeywords.y
162
: PARSEOP_ACCESSATTRIB_BLOCK {$$ = TrCreateLeafOp (PARSEOP_ACCESSATTRIB_BLOCK);}
usr/src/cmd/acpi/iasl/aslkeywords.y
163
| PARSEOP_ACCESSATTRIB_BLOCK_CALL {$$ = TrCreateLeafOp (PARSEOP_ACCESSATTRIB_BLOCK_CALL);}
usr/src/cmd/acpi/iasl/aslkeywords.y
164
| PARSEOP_ACCESSATTRIB_BYTE {$$ = TrCreateLeafOp (PARSEOP_ACCESSATTRIB_BYTE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
165
| PARSEOP_ACCESSATTRIB_QUICK {$$ = TrCreateLeafOp (PARSEOP_ACCESSATTRIB_QUICK );}
usr/src/cmd/acpi/iasl/aslkeywords.y
166
| PARSEOP_ACCESSATTRIB_SND_RCV {$$ = TrCreateLeafOp (PARSEOP_ACCESSATTRIB_SND_RCV);}
usr/src/cmd/acpi/iasl/aslkeywords.y
167
| PARSEOP_ACCESSATTRIB_WORD {$$ = TrCreateLeafOp (PARSEOP_ACCESSATTRIB_WORD);}
usr/src/cmd/acpi/iasl/aslkeywords.y
168
| PARSEOP_ACCESSATTRIB_WORD_CALL {$$ = TrCreateLeafOp (PARSEOP_ACCESSATTRIB_WORD_CALL);}
usr/src/cmd/acpi/iasl/aslkeywords.y
170
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_ACCESSATTRIB_MULTIBYTE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
174
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_ACCESSATTRIB_RAW_BYTES);}
usr/src/cmd/acpi/iasl/aslkeywords.y
178
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_ACCESSATTRIB_RAW_PROCESS);}
usr/src/cmd/acpi/iasl/aslkeywords.y
184
: PARSEOP_ACCESSTYPE_ANY {$$ = TrCreateLeafOp (PARSEOP_ACCESSTYPE_ANY);}
usr/src/cmd/acpi/iasl/aslkeywords.y
185
| PARSEOP_ACCESSTYPE_BYTE {$$ = TrCreateLeafOp (PARSEOP_ACCESSTYPE_BYTE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
186
| PARSEOP_ACCESSTYPE_WORD {$$ = TrCreateLeafOp (PARSEOP_ACCESSTYPE_WORD);}
usr/src/cmd/acpi/iasl/aslkeywords.y
187
| PARSEOP_ACCESSTYPE_DWORD {$$ = TrCreateLeafOp (PARSEOP_ACCESSTYPE_DWORD);}
usr/src/cmd/acpi/iasl/aslkeywords.y
188
| PARSEOP_ACCESSTYPE_QWORD {$$ = TrCreateLeafOp (PARSEOP_ACCESSTYPE_QWORD);}
usr/src/cmd/acpi/iasl/aslkeywords.y
189
| PARSEOP_ACCESSTYPE_BUF {$$ = TrCreateLeafOp (PARSEOP_ACCESSTYPE_BUF);}
usr/src/cmd/acpi/iasl/aslkeywords.y
193
: PARSEOP_ADDRESSINGMODE_7BIT {$$ = TrCreateLeafOp (PARSEOP_ADDRESSINGMODE_7BIT);}
usr/src/cmd/acpi/iasl/aslkeywords.y
194
| PARSEOP_ADDRESSINGMODE_10BIT {$$ = TrCreateLeafOp (PARSEOP_ADDRESSINGMODE_10BIT);}
usr/src/cmd/acpi/iasl/aslkeywords.y
198
: PARSEOP_ADDRESSTYPE_MEMORY {$$ = TrCreateLeafOp (PARSEOP_ADDRESSTYPE_MEMORY);}
usr/src/cmd/acpi/iasl/aslkeywords.y
199
| PARSEOP_ADDRESSTYPE_RESERVED {$$ = TrCreateLeafOp (PARSEOP_ADDRESSTYPE_RESERVED);}
usr/src/cmd/acpi/iasl/aslkeywords.y
200
| PARSEOP_ADDRESSTYPE_NVS {$$ = TrCreateLeafOp (PARSEOP_ADDRESSTYPE_NVS);}
usr/src/cmd/acpi/iasl/aslkeywords.y
201
| PARSEOP_ADDRESSTYPE_ACPI {$$ = TrCreateLeafOp (PARSEOP_ADDRESSTYPE_ACPI);}
usr/src/cmd/acpi/iasl/aslkeywords.y
210
: PARSEOP_BITSPERBYTE_FIVE {$$ = TrCreateLeafOp (PARSEOP_BITSPERBYTE_FIVE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
211
| PARSEOP_BITSPERBYTE_SIX {$$ = TrCreateLeafOp (PARSEOP_BITSPERBYTE_SIX);}
usr/src/cmd/acpi/iasl/aslkeywords.y
212
| PARSEOP_BITSPERBYTE_SEVEN {$$ = TrCreateLeafOp (PARSEOP_BITSPERBYTE_SEVEN);}
usr/src/cmd/acpi/iasl/aslkeywords.y
213
| PARSEOP_BITSPERBYTE_EIGHT {$$ = TrCreateLeafOp (PARSEOP_BITSPERBYTE_EIGHT);}
usr/src/cmd/acpi/iasl/aslkeywords.y
214
| PARSEOP_BITSPERBYTE_NINE {$$ = TrCreateLeafOp (PARSEOP_BITSPERBYTE_NINE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
218
: PARSEOP_CLOCKPHASE_FIRST {$$ = TrCreateLeafOp (PARSEOP_CLOCKPHASE_FIRST);}
usr/src/cmd/acpi/iasl/aslkeywords.y
219
| PARSEOP_CLOCKPHASE_SECOND {$$ = TrCreateLeafOp (PARSEOP_CLOCKPHASE_SECOND);}
usr/src/cmd/acpi/iasl/aslkeywords.y
223
: PARSEOP_CLOCKPOLARITY_LOW {$$ = TrCreateLeafOp (PARSEOP_CLOCKPOLARITY_LOW);}
usr/src/cmd/acpi/iasl/aslkeywords.y
224
| PARSEOP_CLOCKPOLARITY_HIGH {$$ = TrCreateLeafOp (PARSEOP_CLOCKPOLARITY_HIGH);}
usr/src/cmd/acpi/iasl/aslkeywords.y
228
: PARSEOP_DECODETYPE_POS {$$ = TrCreateLeafOp (PARSEOP_DECODETYPE_POS);}
usr/src/cmd/acpi/iasl/aslkeywords.y
229
| PARSEOP_DECODETYPE_SUB {$$ = TrCreateLeafOp (PARSEOP_DECODETYPE_SUB);}
usr/src/cmd/acpi/iasl/aslkeywords.y
233
: PARSEOP_DEVICEPOLARITY_LOW {$$ = TrCreateLeafOp (PARSEOP_DEVICEPOLARITY_LOW);}
usr/src/cmd/acpi/iasl/aslkeywords.y
234
| PARSEOP_DEVICEPOLARITY_HIGH {$$ = TrCreateLeafOp (PARSEOP_DEVICEPOLARITY_HIGH);}
usr/src/cmd/acpi/iasl/aslkeywords.y
238
: PARSEOP_DMATYPE_A {$$ = TrCreateLeafOp (PARSEOP_DMATYPE_A);}
usr/src/cmd/acpi/iasl/aslkeywords.y
239
| PARSEOP_DMATYPE_COMPATIBILITY {$$ = TrCreateLeafOp (PARSEOP_DMATYPE_COMPATIBILITY);}
usr/src/cmd/acpi/iasl/aslkeywords.y
240
| PARSEOP_DMATYPE_B {$$ = TrCreateLeafOp (PARSEOP_DMATYPE_B);}
usr/src/cmd/acpi/iasl/aslkeywords.y
241
| PARSEOP_DMATYPE_F {$$ = TrCreateLeafOp (PARSEOP_DMATYPE_F);}
usr/src/cmd/acpi/iasl/aslkeywords.y
245
: PARSEOP_ENDIAN_LITTLE {$$ = TrCreateLeafOp (PARSEOP_ENDIAN_LITTLE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
246
| PARSEOP_ENDIAN_BIG {$$ = TrCreateLeafOp (PARSEOP_ENDIAN_BIG);}
usr/src/cmd/acpi/iasl/aslkeywords.y
250
: PARSEOP_FLOWCONTROL_HW {$$ = TrCreateLeafOp (PARSEOP_FLOWCONTROL_HW);}
usr/src/cmd/acpi/iasl/aslkeywords.y
251
| PARSEOP_FLOWCONTROL_NONE {$$ = TrCreateLeafOp (PARSEOP_FLOWCONTROL_NONE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
252
| PARSEOP_FLOWCONTROL_SW {$$ = TrCreateLeafOp (PARSEOP_FLOWCONTROL_SW);}
usr/src/cmd/acpi/iasl/aslkeywords.y
256
: PARSEOP_INTLEVEL_ACTIVEBOTH {$$ = TrCreateLeafOp (PARSEOP_INTLEVEL_ACTIVEBOTH);}
usr/src/cmd/acpi/iasl/aslkeywords.y
257
| PARSEOP_INTLEVEL_ACTIVEHIGH {$$ = TrCreateLeafOp (PARSEOP_INTLEVEL_ACTIVEHIGH);}
usr/src/cmd/acpi/iasl/aslkeywords.y
258
| PARSEOP_INTLEVEL_ACTIVELOW {$$ = TrCreateLeafOp (PARSEOP_INTLEVEL_ACTIVELOW);}
usr/src/cmd/acpi/iasl/aslkeywords.y
262
: PARSEOP_INTTYPE_EDGE {$$ = TrCreateLeafOp (PARSEOP_INTTYPE_EDGE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
263
| PARSEOP_INTTYPE_LEVEL {$$ = TrCreateLeafOp (PARSEOP_INTTYPE_LEVEL);}
usr/src/cmd/acpi/iasl/aslkeywords.y
267
: PARSEOP_IODECODETYPE_16 {$$ = TrCreateLeafOp (PARSEOP_IODECODETYPE_16);}
usr/src/cmd/acpi/iasl/aslkeywords.y
268
| PARSEOP_IODECODETYPE_10 {$$ = TrCreateLeafOp (PARSEOP_IODECODETYPE_10);}
usr/src/cmd/acpi/iasl/aslkeywords.y
272
: PARSEOP_IORESTRICT_IN {$$ = TrCreateLeafOp (PARSEOP_IORESTRICT_IN);}
usr/src/cmd/acpi/iasl/aslkeywords.y
273
| PARSEOP_IORESTRICT_OUT {$$ = TrCreateLeafOp (PARSEOP_IORESTRICT_OUT);}
usr/src/cmd/acpi/iasl/aslkeywords.y
274
| PARSEOP_IORESTRICT_NONE {$$ = TrCreateLeafOp (PARSEOP_IORESTRICT_NONE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
275
| PARSEOP_IORESTRICT_PRESERVE {$$ = TrCreateLeafOp (PARSEOP_IORESTRICT_PRESERVE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
279
: PARSEOP_LOCKRULE_LOCK {$$ = TrCreateLeafOp (PARSEOP_LOCKRULE_LOCK);}
usr/src/cmd/acpi/iasl/aslkeywords.y
280
| PARSEOP_LOCKRULE_NOLOCK {$$ = TrCreateLeafOp (PARSEOP_LOCKRULE_NOLOCK);}
usr/src/cmd/acpi/iasl/aslkeywords.y
284
: PARSEOP_MATCHTYPE_MTR {$$ = TrCreateLeafOp (PARSEOP_MATCHTYPE_MTR);}
usr/src/cmd/acpi/iasl/aslkeywords.y
285
| PARSEOP_MATCHTYPE_MEQ {$$ = TrCreateLeafOp (PARSEOP_MATCHTYPE_MEQ);}
usr/src/cmd/acpi/iasl/aslkeywords.y
286
| PARSEOP_MATCHTYPE_MLE {$$ = TrCreateLeafOp (PARSEOP_MATCHTYPE_MLE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
287
| PARSEOP_MATCHTYPE_MLT {$$ = TrCreateLeafOp (PARSEOP_MATCHTYPE_MLT);}
usr/src/cmd/acpi/iasl/aslkeywords.y
288
| PARSEOP_MATCHTYPE_MGE {$$ = TrCreateLeafOp (PARSEOP_MATCHTYPE_MGE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
289
| PARSEOP_MATCHTYPE_MGT {$$ = TrCreateLeafOp (PARSEOP_MATCHTYPE_MGT);}
usr/src/cmd/acpi/iasl/aslkeywords.y
293
: PARSEOP_MAXTYPE_FIXED {$$ = TrCreateLeafOp (PARSEOP_MAXTYPE_FIXED);}
usr/src/cmd/acpi/iasl/aslkeywords.y
294
| PARSEOP_MAXTYPE_NOTFIXED {$$ = TrCreateLeafOp (PARSEOP_MAXTYPE_NOTFIXED);}
usr/src/cmd/acpi/iasl/aslkeywords.y
298
: PARSEOP_MEMTYPE_CACHEABLE {$$ = TrCreateLeafOp (PARSEOP_MEMTYPE_CACHEABLE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
299
| PARSEOP_MEMTYPE_WRITECOMBINING {$$ = TrCreateLeafOp (PARSEOP_MEMTYPE_WRITECOMBINING);}
usr/src/cmd/acpi/iasl/aslkeywords.y
300
| PARSEOP_MEMTYPE_PREFETCHABLE {$$ = TrCreateLeafOp (PARSEOP_MEMTYPE_PREFETCHABLE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
301
| PARSEOP_MEMTYPE_NONCACHEABLE {$$ = TrCreateLeafOp (PARSEOP_MEMTYPE_NONCACHEABLE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
305
: PARSEOP_MINTYPE_FIXED {$$ = TrCreateLeafOp (PARSEOP_MINTYPE_FIXED);}
usr/src/cmd/acpi/iasl/aslkeywords.y
306
| PARSEOP_MINTYPE_NOTFIXED {$$ = TrCreateLeafOp (PARSEOP_MINTYPE_NOTFIXED);}
usr/src/cmd/acpi/iasl/aslkeywords.y
310
: PARSEOP_OBJECTTYPE_UNK {$$ = TrCreateLeafOp (PARSEOP_OBJECTTYPE_UNK);}
usr/src/cmd/acpi/iasl/aslkeywords.y
311
| PARSEOP_OBJECTTYPE_INT {$$ = TrCreateLeafOp (PARSEOP_OBJECTTYPE_INT);}
usr/src/cmd/acpi/iasl/aslkeywords.y
312
| PARSEOP_OBJECTTYPE_STR {$$ = TrCreateLeafOp (PARSEOP_OBJECTTYPE_STR);}
usr/src/cmd/acpi/iasl/aslkeywords.y
313
| PARSEOP_OBJECTTYPE_BUF {$$ = TrCreateLeafOp (PARSEOP_OBJECTTYPE_BUF);}
usr/src/cmd/acpi/iasl/aslkeywords.y
314
| PARSEOP_OBJECTTYPE_PKG {$$ = TrCreateLeafOp (PARSEOP_OBJECTTYPE_PKG);}
usr/src/cmd/acpi/iasl/aslkeywords.y
315
| PARSEOP_OBJECTTYPE_FLD {$$ = TrCreateLeafOp (PARSEOP_OBJECTTYPE_FLD);}
usr/src/cmd/acpi/iasl/aslkeywords.y
316
| PARSEOP_OBJECTTYPE_DEV {$$ = TrCreateLeafOp (PARSEOP_OBJECTTYPE_DEV);}
usr/src/cmd/acpi/iasl/aslkeywords.y
317
| PARSEOP_OBJECTTYPE_EVT {$$ = TrCreateLeafOp (PARSEOP_OBJECTTYPE_EVT);}
usr/src/cmd/acpi/iasl/aslkeywords.y
318
| PARSEOP_OBJECTTYPE_MTH {$$ = TrCreateLeafOp (PARSEOP_OBJECTTYPE_MTH);}
usr/src/cmd/acpi/iasl/aslkeywords.y
319
| PARSEOP_OBJECTTYPE_MTX {$$ = TrCreateLeafOp (PARSEOP_OBJECTTYPE_MTX);}
usr/src/cmd/acpi/iasl/aslkeywords.y
320
| PARSEOP_OBJECTTYPE_OPR {$$ = TrCreateLeafOp (PARSEOP_OBJECTTYPE_OPR);}
usr/src/cmd/acpi/iasl/aslkeywords.y
321
| PARSEOP_OBJECTTYPE_POW {$$ = TrCreateLeafOp (PARSEOP_OBJECTTYPE_POW);}
usr/src/cmd/acpi/iasl/aslkeywords.y
322
| PARSEOP_OBJECTTYPE_PRO {$$ = TrCreateLeafOp (PARSEOP_OBJECTTYPE_PRO);}
usr/src/cmd/acpi/iasl/aslkeywords.y
323
| PARSEOP_OBJECTTYPE_THZ {$$ = TrCreateLeafOp (PARSEOP_OBJECTTYPE_THZ);}
usr/src/cmd/acpi/iasl/aslkeywords.y
324
| PARSEOP_OBJECTTYPE_BFF {$$ = TrCreateLeafOp (PARSEOP_OBJECTTYPE_BFF);}
usr/src/cmd/acpi/iasl/aslkeywords.y
325
| PARSEOP_OBJECTTYPE_DDB {$$ = TrCreateLeafOp (PARSEOP_OBJECTTYPE_DDB);}
usr/src/cmd/acpi/iasl/aslkeywords.y
329
: PARSEOP_PARITYTYPE_SPACE {$$ = TrCreateLeafOp (PARSEOP_PARITYTYPE_SPACE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
330
| PARSEOP_PARITYTYPE_MARK {$$ = TrCreateLeafOp (PARSEOP_PARITYTYPE_MARK);}
usr/src/cmd/acpi/iasl/aslkeywords.y
331
| PARSEOP_PARITYTYPE_ODD {$$ = TrCreateLeafOp (PARSEOP_PARITYTYPE_ODD);}
usr/src/cmd/acpi/iasl/aslkeywords.y
332
| PARSEOP_PARITYTYPE_EVEN {$$ = TrCreateLeafOp (PARSEOP_PARITYTYPE_EVEN);}
usr/src/cmd/acpi/iasl/aslkeywords.y
333
| PARSEOP_PARITYTYPE_NONE {$$ = TrCreateLeafOp (PARSEOP_PARITYTYPE_NONE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
342
: PARSEOP_PIN_NOPULL {$$ = TrCreateLeafOp (PARSEOP_PIN_NOPULL);}
usr/src/cmd/acpi/iasl/aslkeywords.y
343
| PARSEOP_PIN_PULLDOWN {$$ = TrCreateLeafOp (PARSEOP_PIN_PULLDOWN);}
usr/src/cmd/acpi/iasl/aslkeywords.y
344
| PARSEOP_PIN_PULLUP {$$ = TrCreateLeafOp (PARSEOP_PIN_PULLUP);}
usr/src/cmd/acpi/iasl/aslkeywords.y
345
| PARSEOP_PIN_PULLDEFAULT {$$ = TrCreateLeafOp (PARSEOP_PIN_PULLDEFAULT);}
usr/src/cmd/acpi/iasl/aslkeywords.y
349
: PARSEOP_PLD_REVISION {$$ = TrCreateLeafOp (PARSEOP_PLD_REVISION);}
usr/src/cmd/acpi/iasl/aslkeywords.y
350
| PARSEOP_PLD_IGNORECOLOR {$$ = TrCreateLeafOp (PARSEOP_PLD_IGNORECOLOR);}
usr/src/cmd/acpi/iasl/aslkeywords.y
351
| PARSEOP_PLD_RED {$$ = TrCreateLeafOp (PARSEOP_PLD_RED);}
usr/src/cmd/acpi/iasl/aslkeywords.y
352
| PARSEOP_PLD_GREEN {$$ = TrCreateLeafOp (PARSEOP_PLD_GREEN);}
usr/src/cmd/acpi/iasl/aslkeywords.y
353
| PARSEOP_PLD_BLUE {$$ = TrCreateLeafOp (PARSEOP_PLD_BLUE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
354
| PARSEOP_PLD_WIDTH {$$ = TrCreateLeafOp (PARSEOP_PLD_WIDTH);}
usr/src/cmd/acpi/iasl/aslkeywords.y
355
| PARSEOP_PLD_HEIGHT {$$ = TrCreateLeafOp (PARSEOP_PLD_HEIGHT);}
usr/src/cmd/acpi/iasl/aslkeywords.y
356
| PARSEOP_PLD_USERVISIBLE {$$ = TrCreateLeafOp (PARSEOP_PLD_USERVISIBLE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
357
| PARSEOP_PLD_DOCK {$$ = TrCreateLeafOp (PARSEOP_PLD_DOCK);}
usr/src/cmd/acpi/iasl/aslkeywords.y
358
| PARSEOP_PLD_LID {$$ = TrCreateLeafOp (PARSEOP_PLD_LID);}
usr/src/cmd/acpi/iasl/aslkeywords.y
359
| PARSEOP_PLD_PANEL {$$ = TrCreateLeafOp (PARSEOP_PLD_PANEL);}
usr/src/cmd/acpi/iasl/aslkeywords.y
360
| PARSEOP_PLD_VERTICALPOSITION {$$ = TrCreateLeafOp (PARSEOP_PLD_VERTICALPOSITION);}
usr/src/cmd/acpi/iasl/aslkeywords.y
361
| PARSEOP_PLD_HORIZONTALPOSITION {$$ = TrCreateLeafOp (PARSEOP_PLD_HORIZONTALPOSITION);}
usr/src/cmd/acpi/iasl/aslkeywords.y
362
| PARSEOP_PLD_SHAPE {$$ = TrCreateLeafOp (PARSEOP_PLD_SHAPE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
363
| PARSEOP_PLD_GROUPORIENTATION {$$ = TrCreateLeafOp (PARSEOP_PLD_GROUPORIENTATION);}
usr/src/cmd/acpi/iasl/aslkeywords.y
364
| PARSEOP_PLD_GROUPTOKEN {$$ = TrCreateLeafOp (PARSEOP_PLD_GROUPTOKEN);}
usr/src/cmd/acpi/iasl/aslkeywords.y
365
| PARSEOP_PLD_GROUPPOSITION {$$ = TrCreateLeafOp (PARSEOP_PLD_GROUPPOSITION);}
usr/src/cmd/acpi/iasl/aslkeywords.y
366
| PARSEOP_PLD_BAY {$$ = TrCreateLeafOp (PARSEOP_PLD_BAY);}
usr/src/cmd/acpi/iasl/aslkeywords.y
367
| PARSEOP_PLD_EJECTABLE {$$ = TrCreateLeafOp (PARSEOP_PLD_EJECTABLE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
368
| PARSEOP_PLD_EJECTREQUIRED {$$ = TrCreateLeafOp (PARSEOP_PLD_EJECTREQUIRED);}
usr/src/cmd/acpi/iasl/aslkeywords.y
369
| PARSEOP_PLD_CABINETNUMBER {$$ = TrCreateLeafOp (PARSEOP_PLD_CABINETNUMBER);}
usr/src/cmd/acpi/iasl/aslkeywords.y
370
| PARSEOP_PLD_CARDCAGENUMBER {$$ = TrCreateLeafOp (PARSEOP_PLD_CARDCAGENUMBER);}
usr/src/cmd/acpi/iasl/aslkeywords.y
371
| PARSEOP_PLD_REFERENCE {$$ = TrCreateLeafOp (PARSEOP_PLD_REFERENCE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
372
| PARSEOP_PLD_ROTATION {$$ = TrCreateLeafOp (PARSEOP_PLD_ROTATION);}
usr/src/cmd/acpi/iasl/aslkeywords.y
373
| PARSEOP_PLD_ORDER {$$ = TrCreateLeafOp (PARSEOP_PLD_ORDER);}
usr/src/cmd/acpi/iasl/aslkeywords.y
374
| PARSEOP_PLD_RESERVED {$$ = TrCreateLeafOp (PARSEOP_PLD_RESERVED);}
usr/src/cmd/acpi/iasl/aslkeywords.y
375
| PARSEOP_PLD_VERTICALOFFSET {$$ = TrCreateLeafOp (PARSEOP_PLD_VERTICALOFFSET);}
usr/src/cmd/acpi/iasl/aslkeywords.y
376
| PARSEOP_PLD_HORIZONTALOFFSET {$$ = TrCreateLeafOp (PARSEOP_PLD_HORIZONTALOFFSET);}
usr/src/cmd/acpi/iasl/aslkeywords.y
380
: PARSEOP_RANGETYPE_ISAONLY {$$ = TrCreateLeafOp (PARSEOP_RANGETYPE_ISAONLY);}
usr/src/cmd/acpi/iasl/aslkeywords.y
381
| PARSEOP_RANGETYPE_NONISAONLY {$$ = TrCreateLeafOp (PARSEOP_RANGETYPE_NONISAONLY);}
usr/src/cmd/acpi/iasl/aslkeywords.y
382
| PARSEOP_RANGETYPE_ENTIRE {$$ = TrCreateLeafOp (PARSEOP_RANGETYPE_ENTIRE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
386
: PARSEOP_REGIONSPACE_IO {$$ = TrCreateLeafOp (PARSEOP_REGIONSPACE_IO);}
usr/src/cmd/acpi/iasl/aslkeywords.y
387
| PARSEOP_REGIONSPACE_MEM {$$ = TrCreateLeafOp (PARSEOP_REGIONSPACE_MEM);}
usr/src/cmd/acpi/iasl/aslkeywords.y
388
| PARSEOP_REGIONSPACE_PCI {$$ = TrCreateLeafOp (PARSEOP_REGIONSPACE_PCI);}
usr/src/cmd/acpi/iasl/aslkeywords.y
389
| PARSEOP_REGIONSPACE_EC {$$ = TrCreateLeafOp (PARSEOP_REGIONSPACE_EC);}
usr/src/cmd/acpi/iasl/aslkeywords.y
390
| PARSEOP_REGIONSPACE_SMBUS {$$ = TrCreateLeafOp (PARSEOP_REGIONSPACE_SMBUS);}
usr/src/cmd/acpi/iasl/aslkeywords.y
391
| PARSEOP_REGIONSPACE_CMOS {$$ = TrCreateLeafOp (PARSEOP_REGIONSPACE_CMOS);}
usr/src/cmd/acpi/iasl/aslkeywords.y
392
| PARSEOP_REGIONSPACE_PCIBAR {$$ = TrCreateLeafOp (PARSEOP_REGIONSPACE_PCIBAR);}
usr/src/cmd/acpi/iasl/aslkeywords.y
393
| PARSEOP_REGIONSPACE_IPMI {$$ = TrCreateLeafOp (PARSEOP_REGIONSPACE_IPMI);}
usr/src/cmd/acpi/iasl/aslkeywords.y
394
| PARSEOP_REGIONSPACE_GPIO {$$ = TrCreateLeafOp (PARSEOP_REGIONSPACE_GPIO);}
usr/src/cmd/acpi/iasl/aslkeywords.y
395
| PARSEOP_REGIONSPACE_GSBUS {$$ = TrCreateLeafOp (PARSEOP_REGIONSPACE_GSBUS);}
usr/src/cmd/acpi/iasl/aslkeywords.y
396
| PARSEOP_REGIONSPACE_PCC {$$ = TrCreateLeafOp (PARSEOP_REGIONSPACE_PCC);}
usr/src/cmd/acpi/iasl/aslkeywords.y
397
| PARSEOP_REGIONSPACE_FFIXEDHW {$$ = TrCreateLeafOp (PARSEOP_REGIONSPACE_FFIXEDHW);}
usr/src/cmd/acpi/iasl/aslkeywords.y
401
: PARSEOP_RESOURCETYPE_CONSUMER {$$ = TrCreateLeafOp (PARSEOP_RESOURCETYPE_CONSUMER);}
usr/src/cmd/acpi/iasl/aslkeywords.y
402
| PARSEOP_RESOURCETYPE_PRODUCER {$$ = TrCreateLeafOp (PARSEOP_RESOURCETYPE_PRODUCER);}
usr/src/cmd/acpi/iasl/aslkeywords.y
406
: PARSEOP_SERIALIZERULE_SERIAL {$$ = TrCreateLeafOp (PARSEOP_SERIALIZERULE_SERIAL);}
usr/src/cmd/acpi/iasl/aslkeywords.y
407
| PARSEOP_SERIALIZERULE_NOTSERIAL {$$ = TrCreateLeafOp (PARSEOP_SERIALIZERULE_NOTSERIAL);}
usr/src/cmd/acpi/iasl/aslkeywords.y
411
: PARSEOP_SHARETYPE_SHARED {$$ = TrCreateLeafOp (PARSEOP_SHARETYPE_SHARED);}
usr/src/cmd/acpi/iasl/aslkeywords.y
412
| PARSEOP_SHARETYPE_EXCLUSIVE {$$ = TrCreateLeafOp (PARSEOP_SHARETYPE_EXCLUSIVE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
413
| PARSEOP_SHARETYPE_SHAREDWAKE {$$ = TrCreateLeafOp (PARSEOP_SHARETYPE_SHAREDWAKE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
414
| PARSEOP_SHARETYPE_EXCLUSIVEWAKE {$$ = TrCreateLeafOp (PARSEOP_SHARETYPE_EXCLUSIVEWAKE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
418
: PARSEOP_SLAVEMODE_CONTROLLERINIT {$$ = TrCreateLeafOp (PARSEOP_SLAVEMODE_CONTROLLERINIT);}
usr/src/cmd/acpi/iasl/aslkeywords.y
419
| PARSEOP_SLAVEMODE_DEVICEINIT {$$ = TrCreateLeafOp (PARSEOP_SLAVEMODE_DEVICEINIT);}
usr/src/cmd/acpi/iasl/aslkeywords.y
423
: PARSEOP_STOPBITS_TWO {$$ = TrCreateLeafOp (PARSEOP_STOPBITS_TWO);}
usr/src/cmd/acpi/iasl/aslkeywords.y
424
| PARSEOP_STOPBITS_ONEPLUSHALF {$$ = TrCreateLeafOp (PARSEOP_STOPBITS_ONEPLUSHALF);}
usr/src/cmd/acpi/iasl/aslkeywords.y
425
| PARSEOP_STOPBITS_ONE {$$ = TrCreateLeafOp (PARSEOP_STOPBITS_ONE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
426
| PARSEOP_STOPBITS_ZERO {$$ = TrCreateLeafOp (PARSEOP_STOPBITS_ZERO);}
usr/src/cmd/acpi/iasl/aslkeywords.y
430
: PARSEOP_TRANSLATIONTYPE_SPARSE {$$ = TrCreateLeafOp (PARSEOP_TRANSLATIONTYPE_SPARSE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
431
| PARSEOP_TRANSLATIONTYPE_DENSE {$$ = TrCreateLeafOp (PARSEOP_TRANSLATIONTYPE_DENSE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
435
: PARSEOP_TYPE_TRANSLATION {$$ = TrCreateLeafOp (PARSEOP_TYPE_TRANSLATION);}
usr/src/cmd/acpi/iasl/aslkeywords.y
436
| PARSEOP_TYPE_STATIC {$$ = TrCreateLeafOp (PARSEOP_TYPE_STATIC);}
usr/src/cmd/acpi/iasl/aslkeywords.y
440
: PARSEOP_UPDATERULE_PRESERVE {$$ = TrCreateLeafOp (PARSEOP_UPDATERULE_PRESERVE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
441
| PARSEOP_UPDATERULE_ONES {$$ = TrCreateLeafOp (PARSEOP_UPDATERULE_ONES);}
usr/src/cmd/acpi/iasl/aslkeywords.y
442
| PARSEOP_UPDATERULE_ZEROS {$$ = TrCreateLeafOp (PARSEOP_UPDATERULE_ZEROS);}
usr/src/cmd/acpi/iasl/aslkeywords.y
446
: PARSEOP_WIREMODE_FOUR {$$ = TrCreateLeafOp (PARSEOP_WIREMODE_FOUR);}
usr/src/cmd/acpi/iasl/aslkeywords.y
447
| PARSEOP_WIREMODE_THREE {$$ = TrCreateLeafOp (PARSEOP_WIREMODE_THREE);}
usr/src/cmd/acpi/iasl/aslkeywords.y
460
: PARSEOP_XFERTYPE_8 {$$ = TrCreateLeafOp (PARSEOP_XFERTYPE_8);}
usr/src/cmd/acpi/iasl/aslkeywords.y
461
| PARSEOP_XFERTYPE_8_16 {$$ = TrCreateLeafOp (PARSEOP_XFERTYPE_8_16);}
usr/src/cmd/acpi/iasl/aslkeywords.y
462
| PARSEOP_XFERTYPE_16 {$$ = TrCreateLeafOp (PARSEOP_XFERTYPE_16);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1010
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_NOT);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1021
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_OBJECTTYPE);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1041
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_OPERATIONREGION);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1061
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_OR);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1072
: PARSEOP_PACKAGE {$<n>$ = TrCreateLeafOp (PARSEOP_VAR_PACKAGE);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1078
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_POWERRESOURCE);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1093
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_PRINTF);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1111
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_PROCESSOR);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1127
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_DATABUFFER);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1142
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_REFOF);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1153
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_RELEASE);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1163
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_RESET);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1173
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_RETURN);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1177
TrCreateLeafOp (PARSEOP_RETURN),1,
usr/src/cmd/acpi/iasl/aslprimaries.y
1178
TrSetOpFlags (TrCreateLeafOp (PARSEOP_ZERO),
usr/src/cmd/acpi/iasl/aslprimaries.y
1187
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_SCOPE);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1199
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_SHIFTLEFT);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1211
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_SHIFTRIGHT);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1223
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_SIGNAL);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1233
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_SIZEOF);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1243
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_SLEEP);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1253
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_STALL);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1263
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_STORE);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1275
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_SUBTRACT);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1287
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_SWITCH);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1298
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_THERMALZONE);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1310
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_TIMER);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1313
TrCreateLeafOp (PARSEOP_TIMER),0);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1321
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_TOBCD);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1332
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_TOBUFFER);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1343
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_TODECIMALSTRING);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1354
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_TOHEXSTRING);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1365
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_TOINTEGER);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1376
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_TOPLD);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1402
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_TOSTRING);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1424
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_UNICODE);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1434
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_UNLOAD);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1444
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_WAIT);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1455
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_XOR);}
usr/src/cmd/acpi/iasl/aslprimaries.y
1467
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_WHILE);}
usr/src/cmd/acpi/iasl/aslprimaries.y
177
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp(PARSEOP_ACQUIRE);}
usr/src/cmd/acpi/iasl/aslprimaries.y
188
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_ADD);}
usr/src/cmd/acpi/iasl/aslprimaries.y
200
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_ALIAS);}
usr/src/cmd/acpi/iasl/aslprimaries.y
212
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_AND);}
usr/src/cmd/acpi/iasl/aslprimaries.y
223
: PARSEOP_ARG0 {$$ = TrCreateLeafOp (PARSEOP_ARG0);}
usr/src/cmd/acpi/iasl/aslprimaries.y
224
| PARSEOP_ARG1 {$$ = TrCreateLeafOp (PARSEOP_ARG1);}
usr/src/cmd/acpi/iasl/aslprimaries.y
225
| PARSEOP_ARG2 {$$ = TrCreateLeafOp (PARSEOP_ARG2);}
usr/src/cmd/acpi/iasl/aslprimaries.y
226
| PARSEOP_ARG3 {$$ = TrCreateLeafOp (PARSEOP_ARG3);}
usr/src/cmd/acpi/iasl/aslprimaries.y
227
| PARSEOP_ARG4 {$$ = TrCreateLeafOp (PARSEOP_ARG4);}
usr/src/cmd/acpi/iasl/aslprimaries.y
228
| PARSEOP_ARG5 {$$ = TrCreateLeafOp (PARSEOP_ARG5);}
usr/src/cmd/acpi/iasl/aslprimaries.y
229
| PARSEOP_ARG6 {$$ = TrCreateLeafOp (PARSEOP_ARG6);}
usr/src/cmd/acpi/iasl/aslprimaries.y
234
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_BANKFIELD);}
usr/src/cmd/acpi/iasl/aslprimaries.y
259
: PARSEOP_BUFFER {$<n>$ = TrCreateLeafOp (PARSEOP_BUFFER); COMMENT_CAPTURE_OFF; }
usr/src/cmd/acpi/iasl/aslprimaries.y
271
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_CASE);}
usr/src/cmd/acpi/iasl/aslprimaries.y
282
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_CONCATENATE);}
usr/src/cmd/acpi/iasl/aslprimaries.y
294
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (
usr/src/cmd/acpi/iasl/aslprimaries.y
307
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_CONDREFOF);}
usr/src/cmd/acpi/iasl/aslprimaries.y
322
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_CONNECTION);}
usr/src/cmd/acpi/iasl/aslprimaries.y
326
TrCreateLeafOp (PARSEOP_RESOURCETEMPLATE), 3,
usr/src/cmd/acpi/iasl/aslprimaries.y
327
TrCreateLeafOp (PARSEOP_DEFAULT_ARG),
usr/src/cmd/acpi/iasl/aslprimaries.y
328
TrCreateLeafOp (PARSEOP_DEFAULT_ARG),
usr/src/cmd/acpi/iasl/aslprimaries.y
341
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_COPYOBJECT);}
usr/src/cmd/acpi/iasl/aslprimaries.y
353
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_CREATEBITFIELD);}
usr/src/cmd/acpi/iasl/aslprimaries.y
366
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_CREATEBYTEFIELD);}
usr/src/cmd/acpi/iasl/aslprimaries.y
379
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_CREATEDWORDFIELD);}
usr/src/cmd/acpi/iasl/aslprimaries.y
392
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_CREATEFIELD);}
usr/src/cmd/acpi/iasl/aslprimaries.y
406
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_CREATEQWORDFIELD);}
usr/src/cmd/acpi/iasl/aslprimaries.y
419
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_CREATEWORDFIELD);}
usr/src/cmd/acpi/iasl/aslprimaries.y
432
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_DATATABLEREGION);}
usr/src/cmd/acpi/iasl/aslprimaries.y
445
: PARSEOP_DEBUG {$$ = TrCreateLeafOp (PARSEOP_DEBUG);}
usr/src/cmd/acpi/iasl/aslprimaries.y
450
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_DECREMENT);}
usr/src/cmd/acpi/iasl/aslprimaries.y
459
: PARSEOP_DEFAULT '{' {$<n>$ = TrCreateLeafOp (PARSEOP_DEFAULT);}
usr/src/cmd/acpi/iasl/aslprimaries.y
467
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_DEREFOF);}
usr/src/cmd/acpi/iasl/aslprimaries.y
477
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_DEVICE);}
usr/src/cmd/acpi/iasl/aslprimaries.y
489
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_DIVIDE);}
usr/src/cmd/acpi/iasl/aslprimaries.y
517
TermList {$<n>$ = TrCreateLeafOp (PARSEOP_ELSE);}
usr/src/cmd/acpi/iasl/aslprimaries.y
527
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_ELSE);}
usr/src/cmd/acpi/iasl/aslprimaries.y
528
TermArg {$<n>$ = TrCreateLeafOp (PARSEOP_IF);}
usr/src/cmd/acpi/iasl/aslprimaries.y
544
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_EVENT);}
usr/src/cmd/acpi/iasl/aslprimaries.y
568
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_FATAL);}
usr/src/cmd/acpi/iasl/aslprimaries.y
580
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_FIELD);}
usr/src/cmd/acpi/iasl/aslprimaries.y
595
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_FINDSETLEFTBIT);}
usr/src/cmd/acpi/iasl/aslprimaries.y
606
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_FINDSETRIGHTBIT);}
usr/src/cmd/acpi/iasl/aslprimaries.y
618
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_WHILE);}
usr/src/cmd/acpi/iasl/aslprimaries.y
636
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_FPRINTF);}
usr/src/cmd/acpi/iasl/aslprimaries.y
648
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_FROMBCD);}
usr/src/cmd/acpi/iasl/aslprimaries.y
659
PARSEOP_OPEN_PAREN {COMMENT_CAPTURE_OFF; $<n>$ = TrCreateLeafOp (PARSEOP_METHOD); }
usr/src/cmd/acpi/iasl/aslprimaries.y
667
TrCreateLeafOp (PARSEOP_SERIALIZERULE_NOTSERIAL),
usr/src/cmd/acpi/iasl/aslprimaries.y
676
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_IF);}
usr/src/cmd/acpi/iasl/aslprimaries.y
695
: PARSEOP_INCLUDE_END {$<n>$ = TrCreateLeafOp (PARSEOP_INCLUDE_END);
usr/src/cmd/acpi/iasl/aslprimaries.y
701
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_INCREMENT);}
usr/src/cmd/acpi/iasl/aslprimaries.y
711
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_INDEXFIELD);}
usr/src/cmd/acpi/iasl/aslprimaries.y
727
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_INDEX);}
usr/src/cmd/acpi/iasl/aslprimaries.y
739
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_LAND);}
usr/src/cmd/acpi/iasl/aslprimaries.y
750
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_LEQUAL);}
usr/src/cmd/acpi/iasl/aslprimaries.y
761
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_LLESS);}
usr/src/cmd/acpi/iasl/aslprimaries.y
773
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_LGREATER);}
usr/src/cmd/acpi/iasl/aslprimaries.y
784
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_LGREATER);}
usr/src/cmd/acpi/iasl/aslprimaries.y
796
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_LLESS);}
usr/src/cmd/acpi/iasl/aslprimaries.y
807
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_LEQUAL);}
usr/src/cmd/acpi/iasl/aslprimaries.y
819
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_LNOT);}
usr/src/cmd/acpi/iasl/aslprimaries.y
829
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_LOADTABLE);}
usr/src/cmd/acpi/iasl/aslprimaries.y
844
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_LOAD);}
usr/src/cmd/acpi/iasl/aslprimaries.y
854
: PARSEOP_LOCAL0 {$$ = TrCreateLeafOp (PARSEOP_LOCAL0);}
usr/src/cmd/acpi/iasl/aslprimaries.y
855
| PARSEOP_LOCAL1 {$$ = TrCreateLeafOp (PARSEOP_LOCAL1);}
usr/src/cmd/acpi/iasl/aslprimaries.y
856
| PARSEOP_LOCAL2 {$$ = TrCreateLeafOp (PARSEOP_LOCAL2);}
usr/src/cmd/acpi/iasl/aslprimaries.y
857
| PARSEOP_LOCAL3 {$$ = TrCreateLeafOp (PARSEOP_LOCAL3);}
usr/src/cmd/acpi/iasl/aslprimaries.y
858
| PARSEOP_LOCAL4 {$$ = TrCreateLeafOp (PARSEOP_LOCAL4);}
usr/src/cmd/acpi/iasl/aslprimaries.y
859
| PARSEOP_LOCAL5 {$$ = TrCreateLeafOp (PARSEOP_LOCAL5);}
usr/src/cmd/acpi/iasl/aslprimaries.y
860
| PARSEOP_LOCAL6 {$$ = TrCreateLeafOp (PARSEOP_LOCAL6);}
usr/src/cmd/acpi/iasl/aslprimaries.y
861
| PARSEOP_LOCAL7 {$$ = TrCreateLeafOp (PARSEOP_LOCAL7);}
usr/src/cmd/acpi/iasl/aslprimaries.y
866
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_LOR);}
usr/src/cmd/acpi/iasl/aslprimaries.y
877
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_MATCH);}
usr/src/cmd/acpi/iasl/aslprimaries.y
892
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_METHOD); COMMENT_CAPTURE_OFF;}
usr/src/cmd/acpi/iasl/aslprimaries.y
910
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_MID);}
usr/src/cmd/acpi/iasl/aslprimaries.y
923
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_MOD);}
usr/src/cmd/acpi/iasl/aslprimaries.y
935
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_MULTIPLY);}
usr/src/cmd/acpi/iasl/aslprimaries.y
947
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_MUTEX);}
usr/src/cmd/acpi/iasl/aslprimaries.y
959
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_NAME);}
usr/src/cmd/acpi/iasl/aslprimaries.y
971
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_NAND);}
usr/src/cmd/acpi/iasl/aslprimaries.y
987
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_NOR);}
usr/src/cmd/acpi/iasl/aslprimaries.y
999
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_NOTIFY);}
usr/src/cmd/acpi/iasl/aslresources.y
173
TrCreateLeafOp (PARSEOP_DEFAULT_ARG),
usr/src/cmd/acpi/iasl/aslresources.y
174
TrCreateLeafOp (PARSEOP_DEFAULT_ARG),
usr/src/cmd/acpi/iasl/aslresources.y
176
TrCreateLeafOp (PARSEOP_ENDTAG));
usr/src/cmd/acpi/iasl/aslresources.y
238
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_DMA);}
usr/src/cmd/acpi/iasl/aslresources.y
252
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_DWORDIO);}
usr/src/cmd/acpi/iasl/aslresources.y
277
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_DWORDMEMORY);}
usr/src/cmd/acpi/iasl/aslresources.y
303
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_DWORDSPACE);}
usr/src/cmd/acpi/iasl/aslresources.y
328
PARSEOP_CLOSE_PAREN {$$ = TrCreateLeafOp (PARSEOP_ENDDEPENDENTFN);}
usr/src/cmd/acpi/iasl/aslresources.y
336
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_EXTENDEDIO);}
usr/src/cmd/acpi/iasl/aslresources.y
360
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_EXTENDEDMEMORY);}
usr/src/cmd/acpi/iasl/aslresources.y
384
: PARSEOP_EXTENDEDSPACE PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_EXTENDEDSPACE);}
usr/src/cmd/acpi/iasl/aslresources.y
407
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_FIXEDDMA);}
usr/src/cmd/acpi/iasl/aslresources.y
420
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_FIXEDIO);}
usr/src/cmd/acpi/iasl/aslresources.y
432
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_GPIO_INT);}
usr/src/cmd/acpi/iasl/aslresources.y
453
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_GPIO_IO);}
usr/src/cmd/acpi/iasl/aslresources.y
474
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_I2C_SERIALBUS);}
usr/src/cmd/acpi/iasl/aslresources.y
486
TrCreateLeafOp (PARSEOP_DEFAULT_ARG),$14);}
usr/src/cmd/acpi/iasl/aslresources.y
494
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_I2C_SERIALBUS_V2);}
usr/src/cmd/acpi/iasl/aslresources.y
514
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_INTERRUPT);}
usr/src/cmd/acpi/iasl/aslresources.y
532
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_IO);}
usr/src/cmd/acpi/iasl/aslresources.y
547
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_IRQNOFLAGS);}
usr/src/cmd/acpi/iasl/aslresources.y
558
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_IRQ);}
usr/src/cmd/acpi/iasl/aslresources.y
572
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_MEMORY24);}
usr/src/cmd/acpi/iasl/aslresources.y
587
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_MEMORY32FIXED);}
usr/src/cmd/acpi/iasl/aslresources.y
600
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_MEMORY32);}
usr/src/cmd/acpi/iasl/aslresources.y
615
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_PINCONFIG);}
usr/src/cmd/acpi/iasl/aslresources.y
634
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_PINFUNCTION);}
usr/src/cmd/acpi/iasl/aslresources.y
653
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_PINGROUP);}
usr/src/cmd/acpi/iasl/aslresources.y
667
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_PINGROUPCONFIG);}
usr/src/cmd/acpi/iasl/aslresources.y
686
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_PINGROUPFUNCTION);}
usr/src/cmd/acpi/iasl/aslresources.y
704
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_QWORDIO);}
usr/src/cmd/acpi/iasl/aslresources.y
729
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_QWORDMEMORY);}
usr/src/cmd/acpi/iasl/aslresources.y
755
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_QWORDSPACE);}
usr/src/cmd/acpi/iasl/aslresources.y
779
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_REGISTER);}
usr/src/cmd/acpi/iasl/aslresources.y
794
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_SPI_SERIALBUS);}
usr/src/cmd/acpi/iasl/aslresources.y
810
TrCreateLeafOp (PARSEOP_DEFAULT_ARG),$21);}
usr/src/cmd/acpi/iasl/aslresources.y
818
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_SPI_SERIALBUS_V2);}
usr/src/cmd/acpi/iasl/aslresources.y
842
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_STARTDEPENDENTFN_NOPRI);}
usr/src/cmd/acpi/iasl/aslresources.y
852
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_STARTDEPENDENTFN);}
usr/src/cmd/acpi/iasl/aslresources.y
864
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_UART_SERIALBUS);}
usr/src/cmd/acpi/iasl/aslresources.y
881
TrCreateLeafOp (PARSEOP_DEFAULT_ARG),$21);}
usr/src/cmd/acpi/iasl/aslresources.y
889
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_UART_SERIALBUS_V2);}
usr/src/cmd/acpi/iasl/aslresources.y
914
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_VENDORLONG);}
usr/src/cmd/acpi/iasl/aslresources.y
925
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_VENDORSHORT);}
usr/src/cmd/acpi/iasl/aslresources.y
936
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_WORDBUSNUMBER);}
usr/src/cmd/acpi/iasl/aslresources.y
958
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_WORDIO);}
usr/src/cmd/acpi/iasl/aslresources.y
983
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_WORDSPACE);}
usr/src/cmd/acpi/iasl/aslrules.y
169
TrCreateLeafOp (PARSEOP_ASL_CODE),1, $1);}
usr/src/cmd/acpi/iasl/aslrules.y
195
PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_DEFINITION_BLOCK); COMMENT_CAPTURE_OFF;}
usr/src/cmd/acpi/iasl/aslrules.y
297
: {$$ = TrCreateLeafOp (PARSEOP_ONES);} /* Placeholder is a OnesOp object */
usr/src/cmd/acpi/iasl/aslrules.y
298
| ',' {$$ = TrCreateLeafOp (PARSEOP_ONES);} /* Placeholder is a OnesOp object */
usr/src/cmd/acpi/iasl/aslrules.y
429
: {$$ = TrCreateLeafOp (PARSEOP_DEFAULT_ARG);}
usr/src/cmd/acpi/iasl/aslrules.y
431
TrCreateLeafOp (PARSEOP_DEFAULT_ARG),1,$2);}
usr/src/cmd/acpi/iasl/aslrules.y
449
: {$$ = TrCreateLeafOp (PARSEOP_DEFAULT_ARG);}
usr/src/cmd/acpi/iasl/aslrules.y
451
TrCreateLeafOp (PARSEOP_DEFAULT_ARG),1,$2);}
usr/src/cmd/acpi/iasl/aslrules.y
585
| PARSEOP_REVISION {$$ = TrCreateLeafOp (PARSEOP_REVISION);}
usr/src/cmd/acpi/iasl/aslrules.y
858
: {$$ = TrCreateLeafOp (PARSEOP_ZERO);} /* Placeholder is a ZeroOp object */
usr/src/cmd/acpi/iasl/aslrules.y
859
| ',' {$$ = TrCreateLeafOp (PARSEOP_ZERO);} /* Placeholder is a ZeroOp object */
usr/src/cmd/acpi/iasl/aslrules.y
864
: {$$ = TrSetOpFlags (TrCreateLeafOp (PARSEOP_ZERO),
usr/src/cmd/acpi/iasl/aslrules.y
876
: {$$ = TrCreateLeafOp (PARSEOP_DEFAULT_ARG);}
usr/src/cmd/acpi/iasl/aslsupport.y
198
return (TrCreateLeafOp (PARSEOP_ERRORNODE));
usr/src/cmd/acpi/iasl/asltransform.c
641
NewOp = TrCreateLeafOp (PARSEOP_ELSE);
usr/src/cmd/acpi/iasl/asltransform.c
666
NewOp2 = TrCreateLeafOp (PARSEOP_MATCHTYPE_MEQ);
usr/src/cmd/acpi/iasl/asltransform.c
677
NewOp2 = TrCreateLeafOp (PARSEOP_MATCHTYPE_MTR);
usr/src/cmd/acpi/iasl/asltransform.c
682
NewOp2 = TrCreateLeafOp (PARSEOP_ZERO);
usr/src/cmd/acpi/iasl/asltransform.c
687
NewOp2 = TrCreateLeafOp (PARSEOP_ZERO);
usr/src/cmd/acpi/iasl/asltransform.c
691
NewOp2 = TrCreateLeafOp (PARSEOP_MATCH);
usr/src/cmd/acpi/iasl/asltransform.c
697
NewOp2 = TrCreateLeafOp (PARSEOP_ONES);
usr/src/cmd/acpi/iasl/asltransform.c
701
NewOp2 = TrCreateLeafOp (PARSEOP_LEQUAL);
usr/src/cmd/acpi/iasl/asltransform.c
708
NewOp2 = TrCreateLeafOp (PARSEOP_LNOT);
usr/src/cmd/acpi/iasl/asltransform.c
734
NewOp2 = TrCreateLeafOp (PARSEOP_LEQUAL);
usr/src/cmd/acpi/iasl/asltransform.c
831
NewOp = TrCreateLeafOp (PARSEOP_NAME);
usr/src/cmd/acpi/iasl/asltransform.c
931
NewOp = TrCreateLeafOp (PARSEOP_ONE);
usr/src/cmd/acpi/iasl/asltransform.c
939
StoreOp = TrCreateLeafOp (PARSEOP_STORE);
usr/src/cmd/acpi/iasl/asltransform.c
963
BreakOp = TrCreateLeafOp (PARSEOP_BREAK);