mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-04 05:31:51 +00:00
Expose base opcode
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4742 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6aab9cf65c
commit
f21dfcddcf
@ -25,3 +25,16 @@ X86InstrInfo::X86InstrInfo()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static unsigned char BaseOpcodes[] = {
|
||||||
|
#define I(ENUM, NAME, BASEOPCODE, FLAGS, TSFLAGS) BASEOPCODE,
|
||||||
|
#include "X86InstrInfo.def"
|
||||||
|
};
|
||||||
|
|
||||||
|
// getBaseOpcodeFor - This function returns the "base" X86 opcode for the
|
||||||
|
// specified opcode number.
|
||||||
|
//
|
||||||
|
unsigned char X86InstrInfo::getBaseOpcodeFor(unsigned Opcode) const {
|
||||||
|
assert(Opcode < sizeof(BaseOpcodes)/sizeof(BaseOpcodes[0]) &&
|
||||||
|
"Opcode out of range!");
|
||||||
|
return BaseOpcodes[Opcode];
|
||||||
|
}
|
||||||
|
@ -54,6 +54,7 @@ namespace X86II {
|
|||||||
|
|
||||||
/// TODO: Mod/RM that uses a fixed opcode extension, like /0
|
/// TODO: Mod/RM that uses a fixed opcode extension, like /0
|
||||||
|
|
||||||
|
FormMask = 7,
|
||||||
|
|
||||||
//===------------------------------------------------------------------===//
|
//===------------------------------------------------------------------===//
|
||||||
// Actual flags...
|
// Actual flags...
|
||||||
@ -83,6 +84,12 @@ public:
|
|||||||
virtual void print(const MachineInstr *MI, std::ostream &O,
|
virtual void print(const MachineInstr *MI, std::ostream &O,
|
||||||
const TargetMachine &TM) const;
|
const TargetMachine &TM) const;
|
||||||
|
|
||||||
|
// getBaseOpcodeFor - This function returns the "base" X86 opcode for the
|
||||||
|
// specified opcode number.
|
||||||
|
//
|
||||||
|
unsigned char getBaseOpcodeFor(unsigned Opcode) const;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//===--------------------------------------------------------------------===//
|
//===--------------------------------------------------------------------===//
|
||||||
//
|
//
|
||||||
|
Loading…
x
Reference in New Issue
Block a user