Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 1 | //===- X86DisassemblerShared.h - Emitter shared header ----------*- C++ -*-===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 9 | #ifndef LLVM_UTILS_TABLEGEN_X86DISASSEMBLERSHARED_H |
| 10 | #define LLVM_UTILS_TABLEGEN_X86DISASSEMBLERSHARED_H |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 11 | |
Craig Topper | 08f4bd2 | 2015-04-08 06:03:17 +0000 | [diff] [blame] | 12 | #include <cstring> |
Chandler Carruth | 91d19d8 | 2012-12-04 10:37:14 +0000 | [diff] [blame] | 13 | #include <string> |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 14 | |
David Blaikie | ab7f17f | 2018-03-23 23:58:20 +0000 | [diff] [blame] | 15 | #include "llvm/Support/X86DisassemblerDecoderCommon.h" |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 16 | |
Richard Smith | 82b47d5 | 2014-04-20 21:35:26 +0000 | [diff] [blame] | 17 | struct InstructionSpecifier { |
Richard Smith | 6a6967e | 2014-04-20 22:10:16 +0000 | [diff] [blame] | 18 | llvm::X86Disassembler::OperandSpecifier |
| 19 | operands[llvm::X86Disassembler::X86_MAX_OPERANDS]; |
Richard Smith | 82b47d5 | 2014-04-20 21:35:26 +0000 | [diff] [blame] | 20 | llvm::X86Disassembler::InstructionContext insnContext; |
| 21 | std::string name; |
| 22 | |
| 23 | InstructionSpecifier() { |
| 24 | insnContext = llvm::X86Disassembler::IC; |
| 25 | name = ""; |
| 26 | memset(operands, 0, sizeof(operands)); |
| 27 | } |
| 28 | }; |
| 29 | |
Richard Smith | ac15f1c | 2014-04-20 21:52:16 +0000 | [diff] [blame] | 30 | /// Specifies whether a ModR/M byte is needed and (if so) which |
| 31 | /// instruction each possible value of the ModR/M byte corresponds to. Once |
| 32 | /// this information is known, we have narrowed down to a single instruction. |
| 33 | struct ModRMDecision { |
| 34 | uint8_t modrm_type; |
| 35 | llvm::X86Disassembler::InstrUID instructionIDs[256]; |
| 36 | }; |
| 37 | |
| 38 | /// Specifies which set of ModR/M->instruction tables to look at |
| 39 | /// given a particular opcode. |
| 40 | struct OpcodeDecision { |
| 41 | ModRMDecision modRMDecisions[256]; |
| 42 | }; |
| 43 | |
| 44 | /// Specifies which opcode->instruction tables to look at given |
| 45 | /// a particular context (set of attributes). Since there are many possible |
| 46 | /// contexts, the decoder first uses CONTEXTS_SYM to determine which context |
| 47 | /// applies given a specific set of attributes. Hence there are only IC_max |
| 48 | /// entries in this table, rather than 2^(ATTR_max). |
| 49 | struct ContextDecision { |
| 50 | OpcodeDecision opcodeDecisions[llvm::X86Disassembler::IC_max]; |
Craig Topper | c0e1880 | 2018-03-24 07:15:47 +0000 | [diff] [blame] | 51 | |
| 52 | ContextDecision() { |
| 53 | memset(opcodeDecisions, 0, sizeof(opcodeDecisions)); |
| 54 | } |
Richard Smith | ac15f1c | 2014-04-20 21:52:16 +0000 | [diff] [blame] | 55 | }; |
| 56 | |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 57 | #endif |