mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-16 23:38:40 +00:00
Finegrainify namespacification
Add default impl of commuteInstruction Add notes about ugly V9 code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19684 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d7e2fe40e4
commit
167b10cba4
@ -7,6 +7,7 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
//
|
//
|
||||||
|
// This file implements the TargetInstrInfo class.
|
||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
@ -14,14 +15,15 @@
|
|||||||
#include "llvm/CodeGen/MachineInstr.h"
|
#include "llvm/CodeGen/MachineInstr.h"
|
||||||
#include "llvm/Constant.h"
|
#include "llvm/Constant.h"
|
||||||
#include "llvm/DerivedTypes.h"
|
#include "llvm/DerivedTypes.h"
|
||||||
|
using namespace llvm;
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
// External object describing the machine instructions Initialized only when
|
||||||
// External object describing the machine instructions
|
// the TargetMachine class is created and reset when that class is destroyed.
|
||||||
// Initialized only when the TargetMachine class is created
|
//
|
||||||
// and reset when that class is destroyed.
|
// FIXME: UGLY SPARCV9 HACK!
|
||||||
//
|
const TargetInstrDescriptor* TargetInstrDescriptors = 0;
|
||||||
const TargetInstrDescriptor* TargetInstrDescriptors = 0;
|
}
|
||||||
|
|
||||||
TargetInstrInfo::TargetInstrInfo(const TargetInstrDescriptor* Desc,
|
TargetInstrInfo::TargetInstrInfo(const TargetInstrDescriptor* Desc,
|
||||||
unsigned numOpcodes)
|
unsigned numOpcodes)
|
||||||
@ -36,6 +38,7 @@ TargetInstrInfo::~TargetInstrInfo() {
|
|||||||
TargetInstrDescriptors = NULL; // reset global variable
|
TargetInstrDescriptors = NULL; // reset global variable
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// FIXME: SPARCV9 SPECIFIC!
|
||||||
bool TargetInstrInfo::constantFitsInImmedField(MachineOpCode opCode,
|
bool TargetInstrInfo::constantFitsInImmedField(MachineOpCode opCode,
|
||||||
int64_t intValue) const {
|
int64_t intValue) const {
|
||||||
// First, check if opCode has an immed field.
|
// First, check if opCode has an immed field.
|
||||||
@ -56,4 +59,14 @@ bool TargetInstrInfo::constantFitsInImmedField(MachineOpCode opCode,
|
|||||||
return false;
|
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;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user