mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Add parameter Offset to MipsMCInstLower::LowerSymbolOperand.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137706 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
34fd67c7bc
commit
78d1b11aa5
@ -29,10 +29,10 @@ MipsMCInstLower::MipsMCInstLower(Mangler *mang, const MachineFunction &mf,
|
||||
: Ctx(mf.getContext()), Mang(mang), AsmPrinter(asmprinter) {}
|
||||
|
||||
MCOperand MipsMCInstLower::LowerSymbolOperand(const MachineOperand &MO,
|
||||
MachineOperandType MOTy) const {
|
||||
MachineOperandType MOTy,
|
||||
unsigned Offset) const {
|
||||
MipsMCSymbolRefExpr::VariantKind Kind;
|
||||
const MCSymbol *Symbol;
|
||||
int Offset = 0;
|
||||
|
||||
switch(MO.getTargetFlags()) {
|
||||
default: assert(0 && "Invalid target flag!");
|
||||
@ -72,7 +72,7 @@ MCOperand MipsMCInstLower::LowerSymbolOperand(const MachineOperand &MO,
|
||||
case MachineOperand::MO_ConstantPoolIndex:
|
||||
Symbol = AsmPrinter.GetCPISymbol(MO.getIndex());
|
||||
if (MO.getOffset())
|
||||
Offset = MO.getOffset();
|
||||
Offset += MO.getOffset();
|
||||
break;
|
||||
|
||||
default:
|
||||
@ -109,7 +109,7 @@ void MipsMCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
|
||||
case MachineOperand::MO_JumpTableIndex:
|
||||
case MachineOperand::MO_ConstantPoolIndex:
|
||||
case MachineOperand::MO_BlockAddress:
|
||||
MCOp = LowerSymbolOperand(MO, MOTy);
|
||||
MCOp = LowerSymbolOperand(MO, MOTy, 0);
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -36,7 +36,7 @@ public:
|
||||
void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
||||
private:
|
||||
MCOperand LowerSymbolOperand(const MachineOperand &MO,
|
||||
MachineOperandType MOTy) const;
|
||||
MachineOperandType MOTy, unsigned Offset) const;
|
||||
};
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user