| OLD | NEW |
| 1 /* Copyright (c) 2007, Google Inc. | 1 /* Copyright (c) 2007, Google Inc. |
| 2 * All rights reserved. | 2 * All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 * | 29 * |
| 30 * --- | 30 * --- |
| 31 * Author: Joi Sigurdsson | 31 * Author: Joi Sigurdsson |
| 32 * | 32 * |
| 33 * Opcode decoding maps. Based on the IA-32 Intel® Architecture | 33 * Opcode decoding maps. Based on the IA-32 Intel® Architecture |
| 34 * Software Developers Manual Volume 2: Instruction Set Reference. Idea | 34 * Software Developer's Manual Volume 2: Instruction Set Reference. Idea |
| 35 * for how to lay out the tables in memory taken from the implementation | 35 * for how to lay out the tables in memory taken from the implementation |
| 36 * in the Bastard disassembly environment. | 36 * in the Bastard disassembly environment. |
| 37 */ | 37 */ |
| 38 | 38 |
| 39 #include "mini_disassembler.h" | 39 #include "mini_disassembler.h" |
| 40 | 40 |
| 41 namespace sidestep { | 41 namespace sidestep { |
| 42 | 42 |
| 43 /* | 43 /* |
| 44 * This is the first table to be searched; the first field of each | 44 * This is the first table to be searched; the first field of each |
| (...skipping 1165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1210 /* 18 */ {s_opcode_byte_after_0f18, 3, 0x07, 0, 0x07}, | 1210 /* 18 */ {s_opcode_byte_after_0f18, 3, 0x07, 0, 0x07}, |
| 1211 /* 19 */ {s_opcode_byte_after_0f71, 3, 0x07, 0, 0x07}, | 1211 /* 19 */ {s_opcode_byte_after_0f71, 3, 0x07, 0, 0x07}, |
| 1212 /* 20 */ {s_opcode_byte_after_0f72, 3, 0x07, 0, 0x07}, | 1212 /* 20 */ {s_opcode_byte_after_0f72, 3, 0x07, 0, 0x07}, |
| 1213 /* 21 */ {s_opcode_byte_after_0f73, 3, 0x07, 0, 0x07}, | 1213 /* 21 */ {s_opcode_byte_after_0f73, 3, 0x07, 0, 0x07}, |
| 1214 /* 22 */ {s_opcode_byte_after_0fae, 3, 0x07, 0, 0x07}, | 1214 /* 22 */ {s_opcode_byte_after_0fae, 3, 0x07, 0, 0x07}, |
| 1215 /* 23 */ {s_opcode_byte_after_0fba, 3, 0x07, 0, 0x07}, | 1215 /* 23 */ {s_opcode_byte_after_0fba, 3, 0x07, 0, 0x07}, |
| 1216 /* 24 */ {s_opcode_byte_after_0fc7, 3, 0x07, 0, 0x01} | 1216 /* 24 */ {s_opcode_byte_after_0fc7, 3, 0x07, 0, 0x01} |
| 1217 }; | 1217 }; |
| 1218 | 1218 |
| 1219 }; // namespace sidestep | 1219 }; // namespace sidestep |
| OLD | NEW |