mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-22 07:32:48 +00:00
055c965bff
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4413 91177308-0d34-0410-b5e6-96231b3b80d8
31 lines
902 B
C++
31 lines
902 B
C++
//===- X86InstrInfo.cpp - X86 Instruction Information ---------------===//
|
|
//
|
|
// This file contains the X86 implementation of the MachineInstrInfo class.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "X86InstrInfo.h"
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
|
#include <iostream>
|
|
|
|
// X86Insts - Turn the InstrInfo.def file into a bunch of instruction
|
|
// descriptors
|
|
//
|
|
static const MachineInstrDescriptor X86Insts[] = {
|
|
#define I(ENUM, NAME, FLAGS, TSFLAGS) \
|
|
{ NAME, -1, -1, 0, false, 0, 0, TSFLAGS, FLAGS },
|
|
#include "X86InstrInfo.def"
|
|
};
|
|
|
|
X86InstrInfo::X86InstrInfo()
|
|
: MachineInstrInfo(X86Insts, sizeof(X86Insts)/sizeof(X86Insts[0]), 0) {
|
|
}
|
|
|
|
|
|
// print - Print out an x86 instruction in GAS syntax
|
|
void X86InstrInfo::print(const MachineInstr *MI, std::ostream &O) const {
|
|
// FIXME: This sucks.
|
|
O << getName(MI->getOpCode()) << "\n";
|
|
}
|
|
|