mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Allow the third argument for the subi family to be an expression.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215286 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e38c52d0c7
commit
06e8dbef25
@ -665,6 +665,29 @@ void PPCOperand::print(raw_ostream &OS) const {
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
addNegOperand(MCInst &Inst, MCOperand &Op, MCContext &Ctx) {
|
||||
if (Op.isImm()) {
|
||||
Inst.addOperand(MCOperand::CreateImm(-Op.getImm()));
|
||||
return;
|
||||
}
|
||||
const MCExpr *Expr = Op.getExpr();
|
||||
if (const MCUnaryExpr *UnExpr = dyn_cast<MCUnaryExpr>(Expr)) {
|
||||
if (UnExpr->getOpcode() == MCUnaryExpr::Minus) {
|
||||
Inst.addOperand(MCOperand::CreateExpr(UnExpr->getSubExpr()));
|
||||
return;
|
||||
}
|
||||
} else if (const MCBinaryExpr *BinExpr = dyn_cast<MCBinaryExpr>(Expr)) {
|
||||
if (BinExpr->getOpcode() == MCBinaryExpr::Sub) {
|
||||
const MCExpr *NE = MCBinaryExpr::CreateSub(BinExpr->getRHS(),
|
||||
BinExpr->getLHS(), Ctx);
|
||||
Inst.addOperand(MCOperand::CreateExpr(NE));
|
||||
return;
|
||||
}
|
||||
}
|
||||
Inst.addOperand(MCOperand::CreateExpr(MCUnaryExpr::CreateMinus(Expr, Ctx)));
|
||||
}
|
||||
|
||||
void PPCAsmParser::ProcessInstruction(MCInst &Inst,
|
||||
const OperandVector &Operands) {
|
||||
int Opcode = Inst.getOpcode();
|
||||
@ -680,41 +703,37 @@ void PPCAsmParser::ProcessInstruction(MCInst &Inst,
|
||||
}
|
||||
case PPC::SUBI: {
|
||||
MCInst TmpInst;
|
||||
int64_t N = Inst.getOperand(2).getImm();
|
||||
TmpInst.setOpcode(PPC::ADDI);
|
||||
TmpInst.addOperand(Inst.getOperand(0));
|
||||
TmpInst.addOperand(Inst.getOperand(1));
|
||||
TmpInst.addOperand(MCOperand::CreateImm(-N));
|
||||
addNegOperand(TmpInst, Inst.getOperand(2), getContext());
|
||||
Inst = TmpInst;
|
||||
break;
|
||||
}
|
||||
case PPC::SUBIS: {
|
||||
MCInst TmpInst;
|
||||
int64_t N = Inst.getOperand(2).getImm();
|
||||
TmpInst.setOpcode(PPC::ADDIS);
|
||||
TmpInst.addOperand(Inst.getOperand(0));
|
||||
TmpInst.addOperand(Inst.getOperand(1));
|
||||
TmpInst.addOperand(MCOperand::CreateImm(-N));
|
||||
addNegOperand(TmpInst, Inst.getOperand(2), getContext());
|
||||
Inst = TmpInst;
|
||||
break;
|
||||
}
|
||||
case PPC::SUBIC: {
|
||||
MCInst TmpInst;
|
||||
int64_t N = Inst.getOperand(2).getImm();
|
||||
TmpInst.setOpcode(PPC::ADDIC);
|
||||
TmpInst.addOperand(Inst.getOperand(0));
|
||||
TmpInst.addOperand(Inst.getOperand(1));
|
||||
TmpInst.addOperand(MCOperand::CreateImm(-N));
|
||||
addNegOperand(TmpInst, Inst.getOperand(2), getContext());
|
||||
Inst = TmpInst;
|
||||
break;
|
||||
}
|
||||
case PPC::SUBICo: {
|
||||
MCInst TmpInst;
|
||||
int64_t N = Inst.getOperand(2).getImm();
|
||||
TmpInst.setOpcode(PPC::ADDICo);
|
||||
TmpInst.addOperand(Inst.getOperand(0));
|
||||
TmpInst.addOperand(Inst.getOperand(1));
|
||||
TmpInst.addOperand(MCOperand::CreateImm(-N));
|
||||
addNegOperand(TmpInst, Inst.getOperand(2), getContext());
|
||||
Inst = TmpInst;
|
||||
break;
|
||||
}
|
||||
|
@ -14,13 +14,13 @@ addis 1, 1, target
|
||||
|
||||
.set target, 0x1234
|
||||
|
||||
addi 1, 1, target2@l
|
||||
addis 1, 1, target2@ha
|
||||
subi 1, 1, -target2@l
|
||||
subis 1, 1, -target2@ha
|
||||
|
||||
.set target2, 0x12345678
|
||||
|
||||
addi 1, 1, target3-target4@l
|
||||
addis 1, 1, target3-target4@ha
|
||||
subis 1, 1, target4-target3@ha
|
||||
|
||||
.set target3, 0x23455678
|
||||
.set target4, 0x12341234
|
||||
|
Loading…
x
Reference in New Issue
Block a user