Rename X86InstructionInfo to X86InstrInfo
authorChris Lattner <sabre@nondot.org>
Tue, 29 Oct 2002 21:05:24 +0000 (21:05 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 29 Oct 2002 21:05:24 +0000 (21:05 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4413 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/InstSelectSimple.cpp
lib/Target/X86/X86.h
lib/Target/X86/X86ISelSimple.cpp
lib/Target/X86/X86InstrInfo.cpp
lib/Target/X86/X86InstrInfo.h

index 083c88befe73b9f9a4878de4b6c02c580a178432..4491fdf792fb3d38510db19fb0f118910edf8177 100644 (file)
@@ -5,7 +5,7 @@
 //===----------------------------------------------------------------------===//
 
 #include "X86.h"
-#include "X86InstructionInfo.h"
+#include "X86InstrInfo.h"
 #include "llvm/Function.h"
 #include "llvm/iTerminators.h"
 #include "llvm/Type.h"
index d516bf1487c077c88396a90e79d48c367ed03bda..5c5133ebf5d79814b32eabdceed2ab799322f690 100644 (file)
@@ -55,7 +55,7 @@ namespace X86 {
   // This defines a large number of symbolic names for X86 instruction opcodes.
   enum Opcode {
 #define I(ENUM, NAME, FLAGS, TSFLAGS) ENUM,
-#include "X86InstructionInfo.def"
+#include "X86InstrInfo.def"
   };
 }
 
index 083c88befe73b9f9a4878de4b6c02c580a178432..4491fdf792fb3d38510db19fb0f118910edf8177 100644 (file)
@@ -5,7 +5,7 @@
 //===----------------------------------------------------------------------===//
 
 #include "X86.h"
-#include "X86InstructionInfo.h"
+#include "X86InstrInfo.h"
 #include "llvm/Function.h"
 #include "llvm/iTerminators.h"
 #include "llvm/Type.h"
index 012453dda2e31c96acd5535450908e8f0d647ffe..6d2bf1d49697fbce75c2e38c7273239eb93821b5 100644 (file)
@@ -1,29 +1,29 @@
-//===- X86InstructionInfo.cpp - X86 Instruction Information ---------------===//
+//===- X86InstrInfo.cpp - X86 Instruction Information ---------------===//
 //
 // This file contains the X86 implementation of the MachineInstrInfo class.
 //
 //===----------------------------------------------------------------------===//
 
-#include "X86InstructionInfo.h"
+#include "X86InstrInfo.h"
 #include "llvm/CodeGen/MachineInstr.h"
 #include <iostream>
 
-// X86Insts - Turn the InstructionInfo.def file into a bunch of instruction
+// 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 "X86InstructionInfo.def"
+#include "X86InstrInfo.def"
 };
 
-X86InstructionInfo::X86InstructionInfo()
+X86InstrInfo::X86InstrInfo()
   : MachineInstrInfo(X86Insts, sizeof(X86Insts)/sizeof(X86Insts[0]), 0) {
 }
 
 
 // print - Print out an x86 instruction in GAS syntax
-void X86InstructionInfo::print(const MachineInstr *MI, std::ostream &O) const {
+void X86InstrInfo::print(const MachineInstr *MI, std::ostream &O) const {
   // FIXME: This sucks.
   O << getName(MI->getOpCode()) << "\n";
 }
index c87ed33215cedeaa7c805db26844b66630387b05..db5372f904f3fecf243965089139df62dddf2a83 100644 (file)
 #include "llvm/Target/MachineInstrInfo.h"
 #include "X86RegisterInfo.h"
 
-class X86InstructionInfo : public MachineInstrInfo {
+class X86InstrInfo : public MachineInstrInfo {
   const X86RegisterInfo RI;
 public:
-  X86InstructionInfo();
+  X86InstrInfo();
 
   /// getRegisterInfo - MachineInstrInfo is a superset of MRegister info.  As
   /// such, whenever a client has an instance of instruction info, it should