mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 00:31:49 +00:00
move the pic base symbol stuff up to MachineFunction
since it is trivial and will be shared between ppc and x86. This substantially simplifies the X86 backend also. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119089 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4fd0ea0166
commit
142b531e02
@ -412,6 +412,10 @@ public:
|
||||
/// normal 'L' label is returned.
|
||||
MCSymbol *getJTISymbol(unsigned JTI, MCContext &Ctx,
|
||||
bool isLinkerPrivate = false) const;
|
||||
|
||||
/// getPICBaseSymbol - Return a function-local symbol to represent the PIC
|
||||
/// base.
|
||||
MCSymbol *getPICBaseSymbol() const;
|
||||
};
|
||||
|
||||
//===--------------------------------------------------------------------===//
|
||||
|
@ -426,6 +426,13 @@ MCSymbol *MachineFunction::getJTISymbol(unsigned JTI, MCContext &Ctx,
|
||||
return Ctx.GetOrCreateSymbol(Name.str());
|
||||
}
|
||||
|
||||
/// getPICBaseSymbol - Return a function-local symbol to represent the PIC
|
||||
/// base.
|
||||
MCSymbol *MachineFunction::getPICBaseSymbol() const {
|
||||
const MCAsmInfo &MAI = *Target.getMCAsmInfo();
|
||||
return Ctx.GetOrCreateSymbol(Twine(MAI.getPrivateGlobalPrefix())+
|
||||
Twine(getFunctionNumber())+"$pb");
|
||||
}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// MachineFrameInfo implementation
|
||||
|
@ -548,7 +548,6 @@ void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// EmitInstruction -- Print out a single PowerPC MI in Darwin syntax to
|
||||
/// the current output stream.
|
||||
///
|
||||
@ -559,7 +558,6 @@ void PPCAsmPrinter::EmitInstruction(const MachineInstr *MI) {
|
||||
// Lower multi-instruction pseudo operations.
|
||||
switch (MI->getOpcode()) {
|
||||
default: break;
|
||||
|
||||
case PPC::LDtoc: {
|
||||
// Transform %X3 = LDtoc <ga:@min1>, %X2
|
||||
LowerPPCMachineInstrToMCInst(MI, TmpInst, *this);
|
||||
|
@ -555,6 +555,8 @@ let canFoldAsLoad = 1, PPC970_Unit = 2 in {
|
||||
def LD : DSForm_1<58, 0, (outs G8RC:$rD), (ins memrix:$src),
|
||||
"ld $rD, $src", LdStLD,
|
||||
[(set G8RC:$rD, (load ixaddr:$src))]>, isPPC64;
|
||||
// FIXME: This is a pseudo instruction. When the JIT switches to MC, remove its
|
||||
// encoding information.
|
||||
def LDtoc: DSForm_1<58, 0, (outs G8RC:$rD), (ins tocentry:$disp, G8RC:$reg),
|
||||
"ld $rD, $disp($reg)", LdStLD,
|
||||
[(set G8RC:$rD,
|
||||
@ -563,6 +565,7 @@ let RST = 2, DS = 8 in
|
||||
def LDinto_toc: DSForm_1<58, 0, (outs), (ins G8RC:$reg),
|
||||
"ld 2, 8($reg)", LdStLD,
|
||||
[(PPCload_toc G8RC:$reg)]>, isPPC64;
|
||||
|
||||
let RST = 2, DS = 40, RA = 1 in
|
||||
def LDtoc_restore : DSForm_1<58, 0, (outs), (ins),
|
||||
"ld 2, 40(1)", LdStLD,
|
||||
|
@ -48,11 +48,6 @@ using namespace llvm;
|
||||
// Primitive Helper Functions.
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
void X86AsmPrinter::PrintPICBaseSymbol(raw_ostream &O) const {
|
||||
const TargetLowering *TLI = TM.getTargetLowering();
|
||||
O << *static_cast<const X86TargetLowering*>(TLI)->getPICBaseSymbol(*MF);
|
||||
}
|
||||
|
||||
/// runOnMachineFunction - Emit the function body.
|
||||
///
|
||||
bool X86AsmPrinter::runOnMachineFunction(MachineFunction &MF) {
|
||||
@ -184,15 +179,12 @@ void X86AsmPrinter::printSymbolOperand(const MachineOperand &MO,
|
||||
// These affect the name of the symbol, not any suffix.
|
||||
break;
|
||||
case X86II::MO_GOT_ABSOLUTE_ADDRESS:
|
||||
O << " + [.-";
|
||||
PrintPICBaseSymbol(O);
|
||||
O << ']';
|
||||
O << " + [.-" << *MF->getPICBaseSymbol() << ']';
|
||||
break;
|
||||
case X86II::MO_PIC_BASE_OFFSET:
|
||||
case X86II::MO_DARWIN_NONLAZY_PIC_BASE:
|
||||
case X86II::MO_DARWIN_HIDDEN_NONLAZY_PIC_BASE:
|
||||
O << '-';
|
||||
PrintPICBaseSymbol(O);
|
||||
O << '-' << *MF->getPICBaseSymbol();
|
||||
break;
|
||||
case X86II::MO_TLSGD: O << "@TLSGD"; break;
|
||||
case X86II::MO_GOTTPOFF: O << "@GOTTPOFF"; break;
|
||||
@ -205,8 +197,7 @@ void X86AsmPrinter::printSymbolOperand(const MachineOperand &MO,
|
||||
case X86II::MO_PLT: O << "@PLT"; break;
|
||||
case X86II::MO_TLVP: O << "@TLVP"; break;
|
||||
case X86II::MO_TLVP_PIC_BASE:
|
||||
O << "@TLVP" << '-';
|
||||
PrintPICBaseSymbol(O);
|
||||
O << "@TLVP" << '-' << *MF->getPICBaseSymbol();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -343,10 +334,8 @@ void X86AsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
|
||||
|
||||
void X86AsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op,
|
||||
raw_ostream &O) {
|
||||
PrintPICBaseSymbol(O);
|
||||
O << '\n';
|
||||
PrintPICBaseSymbol(O);
|
||||
O << ':';
|
||||
O << *MF->getPICBaseSymbol() << '\n';
|
||||
O << *MF->getPICBaseSymbol() << ':';
|
||||
}
|
||||
|
||||
bool X86AsmPrinter::printAsmMRegister(const MachineOperand &MO, char Mode,
|
||||
|
@ -75,8 +75,6 @@ class LLVM_LIBRARY_VISIBILITY X86AsmPrinter : public AsmPrinter {
|
||||
|
||||
void printPICLabel(const MachineInstr *MI, unsigned Op, raw_ostream &O);
|
||||
|
||||
void PrintPICBaseSymbol(raw_ostream &O) const;
|
||||
|
||||
bool runOnMachineFunction(MachineFunction &F);
|
||||
|
||||
void PrintDebugValueComment(const MachineInstr *MI, raw_ostream &OS);
|
||||
|
@ -1102,17 +1102,6 @@ unsigned X86TargetLowering::getJumpTableEncoding() const {
|
||||
return TargetLowering::getJumpTableEncoding();
|
||||
}
|
||||
|
||||
/// getPICBaseSymbol - Return the X86-32 PIC base.
|
||||
MCSymbol *
|
||||
X86TargetLowering::getPICBaseSymbol(const MachineFunction &MF) const {
|
||||
|
||||
const MCAsmInfo &MAI = *getTargetMachine().getMCAsmInfo();
|
||||
MCContext &Ctx = MF.getContext();
|
||||
return Ctx.GetOrCreateSymbol(Twine(MAI.getPrivateGlobalPrefix())+
|
||||
Twine(MF.getFunctionNumber())+"$pb");
|
||||
}
|
||||
|
||||
|
||||
const MCExpr *
|
||||
X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
|
||||
const MachineBasicBlock *MBB,
|
||||
@ -1147,7 +1136,7 @@ getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
|
||||
return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
|
||||
|
||||
// Otherwise, the reference is relative to the PIC base.
|
||||
return MCSymbolRefExpr::Create(getPICBaseSymbol(*MF), Ctx);
|
||||
return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
|
||||
}
|
||||
|
||||
/// getFunctionAlignment - Return the Log2 alignment of this function.
|
||||
|
@ -430,9 +430,6 @@ namespace llvm {
|
||||
public:
|
||||
explicit X86TargetLowering(X86TargetMachine &TM);
|
||||
|
||||
/// getPICBaseSymbol - Return the X86-32 PIC base.
|
||||
MCSymbol *getPICBaseSymbol(const MachineFunction &MF) const;
|
||||
|
||||
virtual unsigned getJumpTableEncoding() const;
|
||||
|
||||
virtual const MCExpr *
|
||||
|
@ -39,11 +39,6 @@ MachineModuleInfoMachO &X86MCInstLower::getMachOMMI() const {
|
||||
}
|
||||
|
||||
|
||||
MCSymbol *X86MCInstLower::GetPICBaseSymbol() const {
|
||||
return static_cast<const X86TargetLowering*>(TM.getTargetLowering())->
|
||||
getPICBaseSymbol(MF);
|
||||
}
|
||||
|
||||
/// GetSymbolFromOperand - Lower an MO_GlobalAddress or MO_ExternalSymbol
|
||||
/// operand to an MCSymbol.
|
||||
MCSymbol *X86MCInstLower::
|
||||
@ -155,7 +150,7 @@ MCOperand X86MCInstLower::LowerSymbolOperand(const MachineOperand &MO,
|
||||
Expr = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_TLVP, Ctx);
|
||||
// Subtract the pic base.
|
||||
Expr = MCBinaryExpr::CreateSub(Expr,
|
||||
MCSymbolRefExpr::Create(GetPICBaseSymbol(),
|
||||
MCSymbolRefExpr::Create(MF.getPICBaseSymbol(),
|
||||
Ctx),
|
||||
Ctx);
|
||||
break;
|
||||
@ -174,7 +169,7 @@ MCOperand X86MCInstLower::LowerSymbolOperand(const MachineOperand &MO,
|
||||
Expr = MCSymbolRefExpr::Create(Sym, Ctx);
|
||||
// Subtract the pic base.
|
||||
Expr = MCBinaryExpr::CreateSub(Expr,
|
||||
MCSymbolRefExpr::Create(GetPICBaseSymbol(), Ctx),
|
||||
MCSymbolRefExpr::Create(MF.getPICBaseSymbol(), Ctx),
|
||||
Ctx);
|
||||
if (MO.isJTI() && MAI.hasSetDirective()) {
|
||||
// If .set directive is supported, use it to reduce the number of
|
||||
@ -576,7 +571,7 @@ void X86AsmPrinter::EmitInstruction(const MachineInstr *MI) {
|
||||
// popl %esi
|
||||
|
||||
// Emit the call.
|
||||
MCSymbol *PICBase = MCInstLowering.GetPICBaseSymbol();
|
||||
MCSymbol *PICBase = MF->getPICBaseSymbol();
|
||||
TmpInst.setOpcode(X86::CALLpcrel32);
|
||||
// FIXME: We would like an efficient form for this, so we don't have to do a
|
||||
// lot of extra uniquing.
|
||||
@ -614,7 +609,7 @@ void X86AsmPrinter::EmitInstruction(const MachineInstr *MI) {
|
||||
|
||||
const MCExpr *DotExpr = MCSymbolRefExpr::Create(DotSym, OutContext);
|
||||
const MCExpr *PICBase =
|
||||
MCSymbolRefExpr::Create(MCInstLowering.GetPICBaseSymbol(), OutContext);
|
||||
MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), OutContext);
|
||||
DotExpr = MCBinaryExpr::CreateSub(DotExpr, PICBase, OutContext);
|
||||
|
||||
DotExpr = MCBinaryExpr::CreateAdd(MCSymbolRefExpr::Create(OpSym,OutContext),
|
||||
|
@ -40,8 +40,6 @@ public:
|
||||
|
||||
void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
||||
|
||||
MCSymbol *GetPICBaseSymbol() const;
|
||||
|
||||
MCSymbol *GetSymbolFromOperand(const MachineOperand &MO) const;
|
||||
MCOperand LowerSymbolOperand(const MachineOperand &MO, MCSymbol *Sym) const;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user