mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Reverse order of memory arguments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70734 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
aecfa7897f
commit
cf14ae5500
@ -161,22 +161,22 @@ void MSP430AsmPrinter::printOperand(const MachineInstr *MI, int OpNum,
|
||||
|
||||
void MSP430AsmPrinter::printSrcMemOperand(const MachineInstr *MI, int OpNum,
|
||||
const char* Modifier) {
|
||||
const MachineOperand &Disp = MI->getOperand(OpNum);
|
||||
const MachineOperand &Base = MI->getOperand(OpNum+1);
|
||||
const MachineOperand &Base = MI->getOperand(OpNum);
|
||||
const MachineOperand &Disp = MI->getOperand(OpNum+1);
|
||||
|
||||
if (Disp.isGlobal())
|
||||
if (Base.isGlobal())
|
||||
printOperand(MI, OpNum, "mem");
|
||||
else if (Disp.isImm() && !Base.getReg())
|
||||
printOperand(MI, OpNum);
|
||||
else if (Base.getReg()) {
|
||||
if (Disp.getImm()) {
|
||||
printOperand(MI, OpNum, "nohash");
|
||||
printOperand(MI, OpNum + 1, "nohash");
|
||||
O << '(';
|
||||
printOperand(MI, OpNum + 1);
|
||||
printOperand(MI, OpNum);
|
||||
O << ')';
|
||||
} else {
|
||||
O << '@';
|
||||
printOperand(MI, OpNum + 1);
|
||||
printOperand(MI, OpNum);
|
||||
}
|
||||
} else
|
||||
assert(0 && "Unsupported memory operand");
|
||||
|
@ -57,7 +57,7 @@ namespace {
|
||||
|
||||
private:
|
||||
SDNode *Select(SDValue Op);
|
||||
bool SelectAddr(SDValue Op, SDValue Addr, SDValue &Disp, SDValue &Base);
|
||||
bool SelectAddr(SDValue Op, SDValue Addr, SDValue &Base, SDValue &Disp);
|
||||
|
||||
#ifndef NDEBUG
|
||||
unsigned Indent;
|
||||
@ -74,7 +74,7 @@ FunctionPass *llvm::createMSP430ISelDag(MSP430TargetMachine &TM) {
|
||||
|
||||
// FIXME: This is pretty dummy routine and needs to be rewritten in the future.
|
||||
bool MSP430DAGToDAGISel::SelectAddr(SDValue Op, SDValue Addr,
|
||||
SDValue &Disp, SDValue &Base) {
|
||||
SDValue &Base, SDValue &Disp) {
|
||||
// We don't support frame index stuff yet.
|
||||
if (isa<FrameIndexSDNode>(Addr))
|
||||
return false;
|
||||
@ -100,17 +100,17 @@ bool MSP430DAGToDAGISel::SelectAddr(SDValue Op, SDValue Addr,
|
||||
case MSP430ISD::Wrapper:
|
||||
SDValue N0 = Addr.getOperand(0);
|
||||
if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
|
||||
Base = CurDAG->getRegister(0, MVT::i16);
|
||||
Disp = CurDAG->getTargetGlobalAddress(G->getGlobal(),
|
||||
Base = CurDAG->getTargetGlobalAddress(G->getGlobal(),
|
||||
MVT::i16, G->getOffset());
|
||||
Disp = CurDAG->getTargetConstant(0, MVT::i16);
|
||||
|
||||
return true;
|
||||
}
|
||||
break;
|
||||
};
|
||||
|
||||
Base = CurDAG->getRegister(0, MVT::i16);
|
||||
Disp = Addr;
|
||||
Base = Addr;
|
||||
Disp = CurDAG->getTargetConstant(0, MVT::i16);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -52,12 +52,12 @@ def MSP430Wrapper : SDNode<"MSP430ISD::Wrapper", SDT_MSP430Wrapper>;
|
||||
// Address operands
|
||||
def memsrc : Operand<i16> {
|
||||
let PrintMethod = "printSrcMemOperand";
|
||||
let MIOperandInfo = (ops i16imm, GR16);
|
||||
let MIOperandInfo = (ops GR16, i16imm);
|
||||
}
|
||||
|
||||
def memdst : Operand<i16> {
|
||||
let PrintMethod = "printSrcMemOperand";
|
||||
let MIOperandInfo = (ops i16imm, GR16);
|
||||
let MIOperandInfo = (ops GR16, i16imm);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user