summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/TargetInstrInfo.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-01-19 06:53:34 +0000
committerChris Lattner <sabre@nondot.org>2005-01-19 06:53:34 +0000
commitf6932b700b8ac520ebf4d6a45b20dd927f2a6739 (patch)
treede9b1e84c75075ec178bc0573222799f6c437ace /llvm/lib/Target/TargetInstrInfo.cpp
parenteadd41207d74c66b0fc07ce174107ca5da7459bf (diff)
downloadbcm5719-llvm-f6932b700b8ac520ebf4d6a45b20dd927f2a6739.tar.gz
bcm5719-llvm-f6932b700b8ac520ebf4d6a45b20dd927f2a6739.zip
Finegrainify namespacification
Add default impl of commuteInstruction Add notes about ugly V9 code. llvm-svn: 19684
Diffstat (limited to 'llvm/lib/Target/TargetInstrInfo.cpp')
-rw-r--r--llvm/lib/Target/TargetInstrInfo.cpp27
1 files changed, 20 insertions, 7 deletions
diff --git a/llvm/lib/Target/TargetInstrInfo.cpp b/llvm/lib/Target/TargetInstrInfo.cpp
index 65324988603..c0ae56b0f30 100644
--- a/llvm/lib/Target/TargetInstrInfo.cpp
+++ b/llvm/lib/Target/TargetInstrInfo.cpp
@@ -7,6 +7,7 @@
//
//===----------------------------------------------------------------------===//
//
+// This file implements the TargetInstrInfo class.
//
//===----------------------------------------------------------------------===//
@@ -14,14 +15,15 @@
#include "llvm/CodeGen/MachineInstr.h"
#include "llvm/Constant.h"
#include "llvm/DerivedTypes.h"
+using namespace llvm;
namespace llvm {
-
-// External object describing the machine instructions
-// Initialized only when the TargetMachine class is created
-// and reset when that class is destroyed.
-//
-const TargetInstrDescriptor* TargetInstrDescriptors = 0;
+ // External object describing the machine instructions Initialized only when
+ // the TargetMachine class is created and reset when that class is destroyed.
+ //
+ // FIXME: UGLY SPARCV9 HACK!
+ const TargetInstrDescriptor* TargetInstrDescriptors = 0;
+}
TargetInstrInfo::TargetInstrInfo(const TargetInstrDescriptor* Desc,
unsigned numOpcodes)
@@ -36,6 +38,7 @@ TargetInstrInfo::~TargetInstrInfo() {
TargetInstrDescriptors = NULL; // reset global variable
}
+// FIXME: SPARCV9 SPECIFIC!
bool TargetInstrInfo::constantFitsInImmedField(MachineOpCode opCode,
int64_t intValue) const {
// First, check if opCode has an immed field.
@@ -56,4 +59,14 @@ bool TargetInstrInfo::constantFitsInImmedField(MachineOpCode opCode,
return false;
}
-} // End llvm namespace
+// commuteInstruction - The default implementation of this method just exchanges
+// operand 1 and 2.
+MachineInstr *TargetInstrInfo::commuteInstruction(MachineInstr *MI) const {
+ assert(MI->getOperand(1).isRegister() && MI->getOperand(2).isRegister() &&
+ "This only knows how to commute register operands so far");
+ unsigned Reg1 = MI->getOperand(1).getReg();
+ unsigned Reg2 = MI->getOperand(1).getReg();
+ MI->SetMachineOperandReg(2, Reg1);
+ MI->SetMachineOperandReg(1, Reg2);
+ return MI;
+}
OpenPOWER on IntegriCloud