[llvm-commits] CVS: llvm/lib/Target/X86/X86InstructionInfo.cpp
Chris Lattner
lattner at cs.uiuc.edu
Tue Oct 29 11:44:06 PST 2002
Changes in directory llvm/lib/Target/X86:
X86InstructionInfo.cpp updated: 1.1 -> 1.2
---
Log message:
Implement MachineInstrInfo interface
---
Diffs of the changes:
Index: llvm/lib/Target/X86/X86InstructionInfo.cpp
diff -u llvm/lib/Target/X86/X86InstructionInfo.cpp:1.1 llvm/lib/Target/X86/X86InstructionInfo.cpp:1.2
--- llvm/lib/Target/X86/X86InstructionInfo.cpp:1.1 Fri Oct 25 17:55:53 2002
+++ llvm/lib/Target/X86/X86InstructionInfo.cpp Tue Oct 29 11:43:19 2002
@@ -5,25 +5,26 @@
//===----------------------------------------------------------------------===//
#include "X86InstructionInfo.h"
-#include "llvm/CodeGen/MInstruction.h"
-#include <ostream>
+#include "llvm/CodeGen/MachineInstr.h"
+#include <iostream>
// X86Insts - Turn the InstructionInfo.def file into a bunch of instruction
// descriptors
//
-static const MInstructionDesc X86Insts[] = {
-#define I(ENUM, NAME, FLAGS, TSFLAGS) { NAME, FLAGS, TSFLAGS },
+static const MachineInstrDescriptor X86Insts[] = {
+#define I(ENUM, NAME, FLAGS, TSFLAGS) \
+ { NAME, -1, -1, 0, false, 0, 0, TSFLAGS, FLAGS },
#include "X86InstructionInfo.def"
};
X86InstructionInfo::X86InstructionInfo()
- : MInstructionInfo(X86Insts, sizeof(X86Insts)/sizeof(X86Insts[0])) {
+ : MachineInstrInfo(X86Insts, sizeof(X86Insts)/sizeof(X86Insts[0]), 0) {
}
// print - Print out an x86 instruction in GAS syntax
-void X86InstructionInfo::print(const MInstruction *MI, std::ostream &O) const {
+void X86InstructionInfo::print(const MachineInstr *MI, std::ostream &O) const {
// FIXME: This sucks.
- O << get(MI->getOpcode()).Name << "\n";
+ O << getName(MI->getOpCode()) << "\n";
}
More information about the llvm-commits
mailing list