1 /****************************************************************************** 2 * 3 * Module Name: ahamlops - Table of all known AML opcodes 4 * 5 *****************************************************************************/ 6 7 /****************************************************************************** 8 * 9 * 1. Copyright Notice 10 * 11 * Some or all of this work - Copyright (c) 1999 - 2023, Intel Corp. 12 * All rights reserved. 13 * 14 * 2. License 15 * 16 * 2.1. This is your license from Intel Corp. under its intellectual property 17 * rights. You may have additional license terms from the party that provided 18 * you this software, covering your right to use that party's intellectual 19 * property rights. 20 * 21 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a 22 * copy of the source code appearing in this file ("Covered Code") an 23 * irrevocable, perpetual, worldwide license under Intel's copyrights in the 24 * base code distributed originally by Intel ("Original Intel Code") to copy, 25 * make derivatives, distribute, use and display any portion of the Covered 26 * Code in any form, with the right to sublicense such rights; and 27 * 28 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent 29 * license (with the right to sublicense), under only those claims of Intel 30 * patents that are infringed by the Original Intel Code, to make, use, sell, 31 * offer to sell, and import the Covered Code and derivative works thereof 32 * solely to the minimum extent necessary to exercise the above copyright 33 * license, and in no event shall the patent license extend to any additions 34 * to or modifications of the Original Intel Code. No other license or right 35 * is granted directly or by implication, estoppel or otherwise; 36 * 37 * The above copyright and patent license is granted only if the following 38 * conditions are met: 39 * 40 * 3. Conditions 41 * 42 * 3.1. Redistribution of Source with Rights to Further Distribute Source. 43 * Redistribution of source code of any substantial portion of the Covered 44 * Code or modification with rights to further distribute source must include 45 * the above Copyright Notice, the above License, this list of Conditions, 46 * and the following Disclaimer and Export Compliance provision. In addition, 47 * Licensee must cause all Covered Code to which Licensee contributes to 48 * contain a file documenting the changes Licensee made to create that Covered 49 * Code and the date of any change. Licensee must include in that file the 50 * documentation of any changes made by any predecessor Licensee. Licensee 51 * must include a prominent statement that the modification is derived, 52 * directly or indirectly, from Original Intel Code. 53 * 54 * 3.2. Redistribution of Source with no Rights to Further Distribute Source. 55 * Redistribution of source code of any substantial portion of the Covered 56 * Code or modification without rights to further distribute source must 57 * include the following Disclaimer and Export Compliance provision in the 58 * documentation and/or other materials provided with distribution. In 59 * addition, Licensee may not authorize further sublicense of source of any 60 * portion of the Covered Code, and must include terms to the effect that the 61 * license from Licensee to its licensee is limited to the intellectual 62 * property embodied in the software Licensee provides to its licensee, and 63 * not to intellectual property embodied in modifications its licensee may 64 * make. 65 * 66 * 3.3. Redistribution of Executable. Redistribution in executable form of any 67 * substantial portion of the Covered Code or modification must reproduce the 68 * above Copyright Notice, and the following Disclaimer and Export Compliance 69 * provision in the documentation and/or other materials provided with the 70 * distribution. 71 * 72 * 3.4. Intel retains all right, title, and interest in and to the Original 73 * Intel Code. 74 * 75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by 76 * Intel shall be used in advertising or otherwise to promote the sale, use or 77 * other dealings in products derived from or relating to the Covered Code 78 * without prior written authorization from Intel. 79 * 80 * 4. Disclaimer and Export Compliance 81 * 82 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED 83 * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE 84 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE, 85 * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY 86 * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY 87 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A 88 * PARTICULAR PURPOSE. 89 * 90 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES 91 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR 92 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT, 93 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY 94 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL 95 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS 96 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY 97 * LIMITED REMEDY. 98 * 99 * 4.3. Licensee shall not export, either directly or indirectly, any of this 100 * software or system incorporating such software without first obtaining any 101 * required license or other approval from the U. S. Department of Commerce or 102 * any other agency or department of the United States Government. In the 103 * event Licensee exports any such software from the United States or 104 * re-exports any such software from a foreign destination, Licensee shall 105 * ensure that the distribution and export/re-export of the software is in 106 * compliance with all laws, regulations, orders, or other restrictions of the 107 * U.S. Export Administration Regulations. Licensee agrees that neither it nor 108 * any of its subsidiaries will export/re-export any technical data, process, 109 * software, or service, directly or indirectly, to any country for which the 110 * United States government or any agency thereof requires an export license, 111 * other governmental approval, or letter of assurance, without first obtaining 112 * such license, approval or letter. 113 * 114 ***************************************************************************** 115 * 116 * Alternatively, you may choose to be licensed under the terms of the 117 * following license: 118 * 119 * Redistribution and use in source and binary forms, with or without 120 * modification, are permitted provided that the following conditions 121 * are met: 122 * 1. Redistributions of source code must retain the above copyright 123 * notice, this list of conditions, and the following disclaimer, 124 * without modification. 125 * 2. Redistributions in binary form must reproduce at minimum a disclaimer 126 * substantially similar to the "NO WARRANTY" disclaimer below 127 * ("Disclaimer") and any redistribution must be conditioned upon 128 * including a substantially similar Disclaimer requirement for further 129 * binary redistribution. 130 * 3. Neither the names of the above-listed copyright holders nor the names 131 * of any contributors may be used to endorse or promote products derived 132 * from this software without specific prior written permission. 133 * 134 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 135 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 136 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 137 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 138 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 139 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 140 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 141 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 142 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 143 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 144 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 145 * 146 * Alternatively, you may choose to be licensed under the terms of the 147 * GNU General Public License ("GPL") version 2 as published by the Free 148 * Software Foundation. 149 * 150 *****************************************************************************/ 151 152 #include "acpihelp.h" 153 154 155 /* 156 * AML opcodes with related syntax and grammar information. 157 * This table was extracted from the ACPI specification. 158 */ 159 const AH_AML_OPCODE Gbl_AmlOpcodeInfo[] = 160 { 161 {0x00, 0x00, "0x00", "ZeroOp", "DataObject", NULL, NULL, 162 NULL}, 163 {0x01, 0x01, "0x01", "OneOp", "DataObject", NULL, NULL, 164 NULL}, 165 {0x02, 0x05, "0x02-0x05", NULL, NULL, NULL, NULL, 166 NULL}, 167 {0x06, 0x06, "0x06", "AliasOp", "TermObject", "NameString NameString", NULL, 168 "DefAlias := AliasOp NameString NameString"}, 169 {0x07, 0x07, "0x07", NULL, NULL, NULL, NULL, 170 NULL}, 171 {0x08, 0x08, "0x08", "NameOp", "TermObject", "NameString DataRefObject", NULL, 172 "DefName := NameOp NameString DataRefObject"}, 173 {0x09, 0x09, "0x09", NULL, NULL, NULL, NULL, 174 NULL}, 175 {0x0A, 0x0A, "0x0A", "BytePrefix", "DataObject", "ByteData", NULL, 176 "ByteConst := BytePrefix ByteData"}, 177 {0x0B, 0x0B, "0x0B", "WordPrefix", "DataObject", "WordData", NULL, 178 "WordConst := WordPrefix WordData"}, 179 {0x0C, 0x0C, "0x0C", "DWordPrefix", "DataObject", "DWordData", NULL, 180 "DWordConst := DWordPrefix DWordData"}, 181 {0x0D, 0x0D, "0x0D", "StringPrefix", "DataObject", "AsciiCharList NullChar", NULL, 182 "String := StringPrefix AsciiCharList NullChar"}, 183 {0x0E, 0x0E, "0x0E", "QWordPrefix", "DataObject", "QWordData", NULL, 184 "QWordConst := QWordPrefix QWordData"}, 185 {0x0F, 0x0F, "0x0F", NULL, NULL, NULL, NULL, 186 NULL}, 187 {0x10, 0x10, "0x10", "ScopeOp", "TermObject", "NameString", "TermList", 188 "DefScope := ScopeOp PkgLength NameString TermList"}, 189 {0x11, 0x11, "0x11", "BufferOp", "TermObject", "TermArg", "ByteList", 190 "DefBuffer := BufferOp PkgLength BufferSize ByteList"}, 191 {0x12, 0x12, "0x12", "PackageOp", "TermObject", "ByteData", "Package TermList", 192 "DefPackage := PackageOp PkgLength NumElements PackageElementList"}, 193 {0x13, 0x13, "0x13", "VarPackageOp", "TermObject", "TermArg", "Package TermList", 194 "DefVarPackage := VarPackageOp PkgLength VarNumElements PackageElementList"}, 195 {0x14, 0x14, "0x14", "MethodOp", "TermObject", "NameString ByteData", "TermList", 196 "DefMethod := MethodOp PkgLength NameString MethodFlags TermList"}, 197 {0x15, 0x15, "0x15", "ExternalOp", "NameObject", "NameString ByteData ByteData", NULL, 198 "DefExternal := ExternalOp NameString ObjectType ArgumentCount"}, 199 {0x16, 0x2D, "0x16-0x2D", NULL, NULL, NULL, NULL, 200 NULL}, 201 {0x2E, 0x2E, "0x2E", "DualNamePrefix", "NameObject", "NameSeg NameSeg", NULL, 202 "DualNamePath := DualNamePrefix NameSeg NameSeg"}, 203 {0x2F, 0x2F, "0x2F", "MultiNamePrefix", "NameObject", "ByteData NameSeg", NULL, 204 "MultiNamePath := MultiNamePrefix SegCount NameSeg(SegCount)"}, 205 {0x30, 0x39, "0x30-0x39", "DigitChar", "NameObject", NULL, NULL, 206 NULL}, 207 {0x3A, 0x40, "0x3A-0x40", NULL, NULL, NULL, NULL, 208 NULL}, 209 {0x41, 0x5A, "0x41-0x5A", "NameChar", "NameObject", NULL, NULL, 210 NULL}, 211 {0x5B, 0x5B, "0x5B", "ExtOpPrefix", "DataObject", "ByteData", NULL, 212 NULL}, 213 {0x5B00, 0x5B00, "0x5B00", NULL, NULL, NULL, NULL, 214 NULL}, 215 {0x5B01, 0x5B01, "0x5B01", "MutexOp", "TermObject", "NameString ByteData", NULL, 216 "DefMutex := MutexOp NameString SyncFlags"}, 217 {0x5B02, 0x5B02, "0x5B02", "EventOp", "TermObject", "NameString", NULL, 218 "DefEvent := EventOp NameString"}, 219 {0x5B12, 0x5B12, "0x5B12", "CondRefOfOp", "TermObject", "SuperName SuperName", NULL, 220 "DefCondRefOf := CondRefOfOp SuperName Target"}, 221 {0x5B13, 0x5B13, "0x5B13", "CreateFieldOp", "TermObject", "TermArg TermArg TermArg NameString", NULL, 222 "DefCreateField := CreateFieldOp SourceBuff BitIndex NumBits NameString"}, 223 {0x5B1F, 0x5B1F, "0x5B1F", "LoadTableOp", "TermObject", "TermArg TermArg TermArg TermArg TermArg TermArg", NULL, 224 "DefLoadTable := LoadTableOp TermArg TermArg TermArg TermArg TermArg TermArg"}, 225 {0x5B20, 0x5B20, "0x5B20", "LoadOp", "TermObject", "NameString SuperName", NULL, 226 "DefLoad := LoadOp NameString DdbHandleObject"}, 227 {0x5B21, 0x5B21, "0x5B21", "StallOp", "TermObject", "TermArg", NULL, 228 "DefStall := StallOp UsecTime"}, 229 {0x5B22, 0x5B22, "0x5B22", "SleepOp", "TermObject", "TermArg", NULL, 230 "DefSleep := SleepOp MsecTime"}, 231 {0x5B23, 0x5B23, "0x5B23", "AcquireOp", "TermObject", "SuperName WordData", NULL, 232 "DefAcquire := AcquireOp MutexObject Timeout"}, 233 {0x5B24, 0x5B24, "0x5B24", "SignalOp", "TermObject", "SuperName", NULL, 234 "DefSignal := SignalOp EventObject"}, 235 {0x5B25, 0x5B25, "0x5B25", "WaitOp", "TermObject", "SuperName TermArg", NULL, 236 "DefWait := WaitOp EventObject Operand"}, 237 {0x5B26, 0x5B26, "0x5B26", "ResetOp", "TermObject", "SuperName", NULL, 238 "DefReset := ResetOp EventObject"}, 239 {0x5B27, 0x5B27, "0x5B27", "ReleaseOp", "TermObject", "SuperName", NULL, 240 "DefRelease := ReleaseOp MutexObject"}, 241 {0x5B28, 0x5B28, "0x5B28", "FromBcdOp", "TermObject", "TermArg Target", NULL, 242 "DefFromBcd := FromBcdOp BcdValue Target"}, 243 {0x5B29, 0x5B29, "0x5B29", "ToBcd", "TermObject", "TermArg Target", NULL, 244 "DefToBcd := ToBcdOp Operand Target"}, 245 {0x5B2A, 0x5B2A, "0x5B2A", "UnloadOp", "TermObject", "SuperName", NULL, 246 "DefUnload := UnloadOp DdbHandleObject"}, 247 {0x5B30, 0x5B30, "0x5B30", "RevisionOp", "DataObject", NULL, NULL, 248 NULL}, 249 {0x5B31, 0x5B31, "0x5B31", "DebugOp", "DebugObject", NULL, NULL, 250 NULL}, 251 {0x5B32, 0x5B32, "0x5B32", "FatalOp", "TermObject", "ByteData DWordData TermArg", NULL, 252 "DefFatal := FatalOp FatalType FatalCode FatalArg"}, 253 {0x5B33, 0x5B33, "0x5B33", "TimerOp", "TermObject", NULL, NULL, 254 "DefTimer := TimerOp"}, 255 {0x5B80, 0x5B80, "0x5B80", "OperationRegionOp", "TermObject", "NameString ByteData TermArg TermArg", NULL, 256 "DefOpRegion := OpRegionOp NameString RegionSpace RegionOffset RegionLen"}, 257 {0x5B81, 0x5B81, "0x5B81", "FieldOp", "TermObject", "NameString ByteData", "FieldList", 258 "DefField := FieldOp PkgLength NameString FieldFlags FieldList"}, 259 {0x5B82, 0x5B82, "0x5B82", "DeviceOp", "TermObject", "NameString", "TermList", 260 "DefDevice := DeviceOp PkgLength NameString TermList"}, 261 {0x5B83, 0x5B83, "0x5B83", "ProcessorOp", "TermObject", "NameString ByteData DWordData ByteData", "TermList", 262 "DefProcessor := ProcessorOp PkgLength NameString ProcId PblkAddr PblkLen TermList"}, 263 {0x5B84, 0x5B84, "0x5B84", "PowerResOp", "TermObject", "NameString ByteData WordData", "TermList", 264 "DefPowerRes := PowerResOp PkgLength NameString SystemLevel ResourceOrder TermList"}, 265 {0x5B85, 0x5B85, "0x5B85", "ThermalZoneOp", "TermObject", "NameString", "TermList", 266 "DefThermalZone := ThermalZoneOp PkgLength NameString TermList"}, 267 {0x5B86, 0x5B86, "0x5B86", "IndexFieldOp", "TermObject", "NameString NameString ByteData", "FieldList", 268 "DefIndexField := IndexFieldOp PkgLength NameString NameString FieldFlags FieldList"}, 269 {0x5B87, 0x5B87, "0x5B87", "BankFieldOp", "TermObject", "NameString NameString TermArg ByteData", "FieldList", 270 "DefBankField := BankFieldOp PkgLength NameString NameString BankValue FieldFlags FieldList"}, 271 {0x5B88, 0x5B88, "0x5B88", "DataRegionOp", "TermObject", "NameString TermArg TermArg TermArg", NULL, 272 "DefDataRegion := DataRegionOp NameString TermArg TermArg TermArg"}, 273 {0x5B89, 0x5BFF, "0x5B89-0x5BFF", NULL, NULL, NULL, NULL, 274 NULL}, 275 {0x5C, 0x5C, "0x5C", "RootChar", "NameObject", NULL, NULL, 276 NULL}, 277 {0x5D, 0x5D, "0x5D", NULL, NULL, NULL, NULL, 278 NULL}, 279 {0x5E, 0x5E, "0x5E", "ParentPrefixChar", "NameObject", NULL, NULL, 280 NULL}, 281 {0x5F, 0x5F, "0x5F", "NameChar", "NameObject", NULL, NULL, 282 NULL}, 283 {0x60, 0x60, "0x60", "Local0Op", "LocalObject", NULL, NULL, 284 NULL}, 285 {0x61, 0x61, "0x61", "Local1Op", "LocalObject", NULL, NULL, 286 NULL}, 287 {0x62, 0x62, "0x62", "Local2Op", "LocalObject", NULL, NULL, 288 NULL}, 289 {0x63, 0x63, "0x63", "Local3Op", "LocalObject", NULL, NULL, 290 NULL}, 291 {0x64, 0x64, "0x64", "Local4Op", "LocalObject", NULL, NULL, 292 NULL}, 293 {0x65, 0x65, "0x65", "Local5Op", "LocalObject", NULL, NULL, 294 NULL}, 295 {0x66, 0x66, "0x66", "Local6Op", "LocalObject", NULL, NULL, 296 NULL}, 297 {0x67, 0x67, "0x67", "Local7Op", "LocalObject", NULL, NULL, 298 NULL}, 299 {0x68, 0x68, "0x68", "Arg0Op", "ArgObject", NULL, NULL, 300 NULL}, 301 {0x69, 0x69, "0x69", "Arg1Op", "ArgObject", NULL, NULL, 302 NULL}, 303 {0x6A, 0x6A, "0x6A", "Arg2Op", "ArgObject", NULL, NULL, 304 NULL}, 305 {0x6B, 0x6B, "0x6B", "Arg3Op", "ArgObject", NULL, NULL, 306 NULL}, 307 {0x6C, 0x6C, "0x6C", "Arg4Op", "ArgObject", NULL, NULL, 308 NULL}, 309 {0x6D, 0x6D, "0x6D", "Arg5Op", "ArgObject", NULL, NULL, 310 NULL}, 311 {0x6E, 0x6E, "0x6E", "Arg6Op", "ArgObject", NULL, NULL, 312 NULL}, 313 {0x6F, 0x6F, "0x6F", NULL, NULL, NULL, NULL, 314 NULL}, 315 {0x70, 0x70, "0x70", "StoreOp", "TermObject", "TermArg SuperName", NULL, 316 "DefStore := StoreOp TermArg SuperName"}, 317 {0x71, 0x71, "0x71", "RefOfOp", "TermObject", "SuperName ", NULL, 318 "DefRefOf := RefOfOp SuperName"}, 319 {0x72, 0x72, "0x72", "AddOp", "TermObject", "TermArg TermArg Target", NULL, 320 "DefAdd := AddOp Operand Operand Target"}, 321 {0x73, 0x73, "0x73", "ConcatOp", "TermObject", "TermArg TermArg Target", NULL, 322 "DefConcat := ConcatOp Data Data Target"}, 323 {0x74, 0x74, "0x74", "SubtractOp", "TermObject", "TermArg TermArg Target", NULL, 324 "DefSubtract := SubtractOp Operand Operand Target"}, 325 {0x75, 0x75, "0x75", "IncrementOp", "TermObject", "SuperName", NULL, 326 "DefIncrement := IncrementOp SuperName"}, 327 {0x76, 0x76, "0x76", "DecrementOp", "TermObject", "SuperName", NULL, 328 "DefDecrement := DecrementOp SuperName"}, 329 {0x77, 0x77, "0x77", "MultiplyOp", "TermObject", "TermArg TermArg Target", NULL, 330 "DefMultiply := MultiplyOp Operand Operand Target"}, 331 {0x78, 0x78, "0x78", "DivideOp", "TermObject", "TermArg TermArg Target Target", NULL, 332 "DefDivide := DivideOp Dividend Divisor Remainder Quotient"}, 333 {0x79, 0x79, "0x79", "ShiftLeftOp", "TermObject", "TermArg TermArg Target", NULL, 334 "DefShiftLeft := ShiftLeftOp Operand ShiftCount Target"}, 335 {0x7A, 0x7A, "0x7A", "ShiftRightOp", "TermObject", "TermArg TermArg Target", NULL, 336 "DefShiftRight := ShiftRightOp Operand ShiftCount Target"}, 337 {0x7B, 0x7B, "0x7B", "AndOp", "TermObject", "TermArg TermArg Target", NULL, 338 "DefAnd := AndOp Operand Operand Target"}, 339 {0x7C, 0x7C, "0x7C", "NandOp", "TermObject", "TermArg TermArg Target", NULL, 340 "DefNand := NandOp Operand Operand Target"}, 341 {0x7D, 0x7D, "0x7D", "OrOp", "TermObject", "TermArg TermArg Target", NULL, 342 "DefOr := OrOp Operand Operand Target"}, 343 {0x7E, 0x7E, "0x7E", "NorOp", "TermObject", "TermArg TermArg Target", NULL, 344 "DefNor := NorOp Operand Operand Target"}, 345 {0x7F, 0x7F, "0x7F", "XorOp", "TermObject", "TermArg TermArg Target", NULL, 346 "DefXor := XorOp Operand Operand Target"}, 347 {0x80, 0x80, "0x80", "NotOp", "TermObject", "TermArg Target", NULL, 348 "DefNot := NotOp Operand Target"}, 349 {0x81, 0x81, "0x81", "FindSetLeftBitOp", "TermObject", "TermArg Target", NULL, 350 "DefFindSetLeftBit := FindSetLeftBitOp Operand Target"}, 351 {0x82, 0x82, "0x82", "FindSetRightBitOp", "TermObject", "TermArg Target", NULL, 352 "DefFindSetRightBit := FindSetRightBitOp Operand Target"}, 353 {0x83, 0x83, "0x83", "DerefOfOp", "TermObject", "TermArg", NULL, 354 "DefDerefOf := DerefOfOp ObjReference"}, 355 {0x84, 0x84, "0x84", "ConcatResOp", "TermObject", "TermArg TermArg Target", NULL, 356 "DefConcatRes := ConcatResOp BufData BufData Target"}, 357 {0x85, 0x85, "0x85", "ModOp", "TermObject", "TermArg TermArg Target", NULL, 358 "DefMod := ModOp Dividend Divisor Target"}, 359 {0x86, 0x86, "0x86", "NotifyOp", "TermObject", "SuperName TermArg", NULL, 360 "DefNotify := NotifyOp NotifyObject NotifyValue"}, 361 {0x87, 0x87, "0x87", "SizeOfOp", "TermObject", "SuperName", NULL, 362 "DefSizeOf := SizeOfOp SuperName"}, 363 {0x88, 0x88, "0x88", "IndexOp", "TermObject", "TermArg TermArg Target", NULL, 364 "DefIndex := IndexOp BuffPkgStrObj IndexValue Target"}, 365 {0x89, 0x89, "0x89", "MatchOp", "TermObject", "TermArg ByteData TermArg ByteData TermArg TermArg", NULL, 366 "DefMatch := MatchOp SearchPkg MatchOpcode Operand MatchOpcode Operand StartIndex"}, 367 {0x8A, 0x8A, "0x8A", "CreateDWordFieldOp", "TermObject", "TermArg TermArg NameString", NULL, 368 "DefCreateDWordField := CreateDWordFieldOp SourceBuff ByteIndex NameString"}, 369 {0x8B, 0x8B, "0x8B", "CreateWordFieldOp", "TermObject", "TermArg TermArg NameString", NULL, 370 "DefCreateWordField := CreateWordFieldOp SourceBuff ByteIndex NameString"}, 371 {0x8C, 0x8C, "0x8C", "CreateByteFieldOp", "TermObject", "TermArg TermArg NameString", NULL, 372 "DefCreateByteField := CreateByteFieldOp SourceBuff ByteIndex NameString"}, 373 {0x8D, 0x8D, "0x8D", "CreateBitFieldOp", "TermObject", "TermArg TermArg NameString", NULL, 374 "DefCreateBitField := CreateBitFieldOp SourceBuff BitIndex NameString"}, 375 {0x8E, 0x8E, "0x8E", "ObjectTypeOp", "TermObject", "SuperName", NULL, 376 "DefObjectType := ObjectTypeOp SuperName"}, 377 {0x8F, 0x8F, "0x8F", "CreateQWordFieldOp", "TermObject", "TermArg TermArg NameString", NULL, 378 "DefCreateQWordField := CreateQWordFieldOp SourceBuff ByteIndex NameString"}, 379 {0x90, 0x90, "0x90", "LAndOp", "TermObject", "TermArg TermArg", NULL, 380 "DefLAnd := LAndOp Operand Operand"}, 381 {0x91, 0x91, "0x91", "LOrOp", "TermObject", "TermArg TermArg", NULL, 382 "DefLOr := LOrOp Operand Operand"}, 383 {0x92, 0x92, "0x92", "LNotOp", "TermObject", "TermArg", NULL, 384 "DefLNot := LNotOp Operand"}, 385 {0x9293, 0x9293, "0x9293", "LNotEqualOp", "TermObject", "TermArg TermArg", NULL, 386 "DefLNotEqual := LNotEqualOp Operand Operand"}, 387 {0x9294, 0x9294, "0x9294", "LLessEqualOp", "TermObject", "TermArg TermArg", NULL, 388 "DefLLessEqual := LLessEqualOp Operand Operand"}, 389 {0x9295, 0x9295, "0x9295", "LGreaterEqualOp", "TermObject", "TermArg TermArg", NULL, 390 "DefLGreaterEqual := LGreaterEqualOp Operand Operand"}, 391 {0x93, 0x93, "0x93", "LEqualOp", "TermObject", "TermArg TermArg", NULL, 392 "DefLEqual := LEqualOp Operand Operand"}, 393 {0x94, 0x94, "0x94", "LGreaterOp", "TermObject", "TermArg TermArg", NULL, 394 "DefLGreater := LGreaterOp Operand Operand"}, 395 {0x95, 0x95, "0x95", "LLessOp", "TermObject", "TermArg TermArg", NULL, 396 "DefLLess := LLessOp Operand Operand"}, 397 {0x96, 0x96, "0x96", "ToBufferOp", "TermObject", "TermArg Target", NULL, 398 "DefToBuffer := ToBufferOp Operand Target"}, 399 {0x97, 0x97, "0x97", "ToDecimalStringOp", "TermObject", "TermArg Target", NULL, 400 "DefToDecimalString := ToDecimalStringOp Operand Target"}, 401 {0x98, 0x98, "0x98", "ToHexStringOp", "TermObject", "TermArg Target", NULL, 402 "DefToHexString := ToHexStringOp Operand Target"}, 403 {0x99, 0x99, "0x99", "ToIntegerOp", "TermObject", "TermArg Target", NULL, 404 "DefToInteger := ToIntegerOp Operand Target"}, 405 {0x9A, 0x9B, "0x9A-0x9B", NULL, NULL, NULL, NULL, 406 NULL}, 407 {0x9C, 0x9C, "0x9C", "ToStringOp", "TermObject", "TermArg TermArg Target", NULL, 408 "DefToString := ToStringOp TermArg LengthArg Target"}, 409 {0x9D, 0x9D, "0x9D", "CopyObjectOp", "TermObject", "TermArg SimpleName", NULL, 410 "DefCopyObject := CopyObjectOp TermArg SimpleName"}, 411 {0x9E, 0x9E, "0x9E", "MidOp", "TermObject", "TermArg TermArg TermArg Target", NULL, 412 "DefMid := MidOp MidObj TermArg TermArg Target"}, 413 {0x9F, 0x9F, "0x9F", "ContinueOp", "TermObject", NULL, NULL, 414 "DefContinue := ContinueOp"}, 415 {0xA0, 0xA0, "0xA0", "IfOp", "TermObject", "TermArg", "TermList", 416 "DefIfElse := IfOp PkgLength Predicate TermList DefElse"}, 417 {0xA1, 0xA1, "0xA1", "ElseOp", "TermObject", NULL, "TermList", 418 "DefElse := Nothing | <ElseOp PkgLength TermList>"}, 419 {0xA2, 0xA2, "0xA2", "WhileOp", "TermObject", "TermArg", "TermList", 420 "DefWhile := WhileOp PkgLength Predicate TermList"}, 421 {0xA3, 0xA3, "0xA3", "NoOpOp", "TermObject", NULL, NULL, 422 "DefNoOp := NoOpOp"}, 423 {0xA4, 0xA4, "0xA4", "ReturnOp", "TermObject", "TermArg", NULL, 424 "DefReturn := ReturnOp ArgObject"}, 425 {0xA5, 0xA5, "0xA5", "BreakOp", "TermObject", NULL, NULL, 426 "DefBreak := BreakOp"}, 427 {0xA6, 0xCB, "0xA6-0xCB", NULL, NULL, NULL, NULL, 428 NULL}, 429 {0xCC, 0xCC, "0xCC", "BreakPointOp", "TermObject", NULL, NULL, 430 "DefBreakPoint := BreakPointOp"}, 431 {0xCD, 0xFE, "0xCD-0xFE", NULL, NULL, NULL, NULL, 432 NULL}, 433 {0xFF, 0xFF, "0xFF", "OnesOp", "DataObject", NULL, NULL, 434 NULL}, 435 {0, 0, NULL, NULL, NULL, NULL, NULL, NULL} 436 }; 437