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");
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;
// 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;
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;
}
// 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);
}