2002-10-29 21:05:24 +00:00
|
|
|
//===- X86InstrInfo.cpp - X86 Instruction Information ---------------===//
|
2002-10-25 22:55:53 +00:00
|
|
|
//
|
2002-10-29 20:48:56 +00:00
|
|
|
// This file contains the X86 implementation of the MachineInstrInfo class.
|
2002-10-25 22:55:53 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-10-29 21:05:24 +00:00
|
|
|
#include "X86InstrInfo.h"
|
2002-10-29 17:43:19 +00:00
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
|
|
|
#include <iostream>
|
2002-10-25 22:55:53 +00:00
|
|
|
|
2002-10-29 21:05:24 +00:00
|
|
|
// X86Insts - Turn the InstrInfo.def file into a bunch of instruction
|
2002-10-25 22:55:53 +00:00
|
|
|
// descriptors
|
|
|
|
//
|
2002-10-29 17:43:19 +00:00
|
|
|
static const MachineInstrDescriptor X86Insts[] = {
|
2002-10-30 01:15:31 +00:00
|
|
|
#define I(ENUM, NAME, FLAGS, TSFLAGS) \
|
|
|
|
{ NAME, \
|
|
|
|
-1, /* Always vararg */ \
|
|
|
|
((TSFLAGS) & X86II::Void) ? -1 : 0, /* Result is in 0 */ \
|
|
|
|
0, false, 0, 0, TSFLAGS, FLAGS, TSFLAGS },
|
2002-10-29 21:05:24 +00:00
|
|
|
#include "X86InstrInfo.def"
|
2002-10-25 22:55:53 +00:00
|
|
|
};
|
|
|
|
|
2002-10-29 21:05:24 +00:00
|
|
|
X86InstrInfo::X86InstrInfo()
|
2002-10-29 17:43:19 +00:00
|
|
|
: MachineInstrInfo(X86Insts, sizeof(X86Insts)/sizeof(X86Insts[0]), 0) {
|
2002-10-25 22:55:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// print - Print out an x86 instruction in GAS syntax
|
2002-10-29 21:05:24 +00:00
|
|
|
void X86InstrInfo::print(const MachineInstr *MI, std::ostream &O) const {
|
2002-10-25 22:55:53 +00:00
|
|
|
// FIXME: This sucks.
|
2002-10-29 17:43:19 +00:00
|
|
|
O << getName(MI->getOpCode()) << "\n";
|
2002-10-25 22:55:53 +00:00
|
|
|
}
|
|
|
|
|