Home
last modified time | relevance | path

Searched refs:RelocM (Results 1 – 12 of 12) sorted by relevance

/external/llvm/lib/Target/AArch64/
DAArch64Subtarget.cpp38 Reloc::Model RelocM) const { in GVIsIndirectSymbol()
39 if (RelocM == Reloc::Static) in GVIsIndirectSymbol()
DAArch64Subtarget.h46 bool GVIsIndirectSymbol(const GlobalValue *GV, Reloc::Model RelocM) const;
DAArch64AsmPrinter.cpp102 Reloc::Model RelocM = TM.getRelocationModel(); in printSymbolicAddress() local
118 } else if (Subtarget->GVIsIndirectSymbol(GV, RelocM)) { in printSymbolicAddress()
DAArch64ISelLowering.cpp1857 Reloc::Model RelocM = getTargetMachine().getRelocationModel(); in LowerGlobalAddressELF() local
1858 if (GV->isWeakForLinker() && GV->isDeclaration() && RelocM == Reloc::Static) { in LowerGlobalAddressELF()
1895 bool UseGOT = Subtarget->GVIsIndirectSymbol(GV, RelocM); in LowerGlobalAddressELF()
/external/llvm/lib/MC/
DMCObjectFileInfo.cpp81 if (RelocM != Reloc::Static && in InitMachOMCObjectFileInfo()
126 if (RelocM == Reloc::Static) { in InitMachOMCObjectFileInfo()
232 PersonalityEncoding = (RelocM == Reloc::PIC_) in InitELFMCObjectFileInfo()
235 LSDAEncoding = (RelocM == Reloc::PIC_) in InitELFMCObjectFileInfo()
238 FDEEncoding = (RelocM == Reloc::PIC_) in InitELFMCObjectFileInfo()
241 TTypeEncoding = (RelocM == Reloc::PIC_) in InitELFMCObjectFileInfo()
245 if (RelocM == Reloc::PIC_) { in InitELFMCObjectFileInfo()
270 if (RelocM == Reloc::PIC_) { in InitELFMCObjectFileInfo()
616 RelocM = relocm; in InitMCObjectFileInfo()
/external/llvm/lib/Target/ARM/
DARMSubtarget.cpp170 Reloc::Model RelocM) const { in GVIsIndirectSymbol()
171 if (RelocM == Reloc::Static) in GVIsIndirectSymbol()
186 if (RelocM == Reloc::PIC_) { in GVIsIndirectSymbol()
DARMSubtarget.h304 bool GVIsIndirectSymbol(const GlobalValue *GV, Reloc::Model RelocM) const;
DARMFastISel.cpp624 Reloc::Model RelocM = TM.getRelocationModel(); in ARMMaterializeGV() local
625 bool IsIndirect = Subtarget->GVIsIndirectSymbol(GV, RelocM); in ARMMaterializeGV()
636 Subtarget->isTargetDarwin() == (RelocM != Reloc::Static)) { in ARMMaterializeGV()
638 switch (RelocM) { in ARMMaterializeGV()
659 if (Subtarget->isTargetELF() && RelocM == Reloc::PIC_) in ARMMaterializeGV()
663 unsigned PCAdj = (RelocM != Reloc::PIC_) ? 0 : in ARMMaterializeGV()
674 unsigned Opc = (RelocM!=Reloc::PIC_) ? ARM::t2LDRpci : ARM::t2LDRpci_pic; in ARMMaterializeGV()
677 if (RelocM == Reloc::PIC_) in ARMMaterializeGV()
688 if (RelocM == Reloc::PIC_) { in ARMMaterializeGV()
DARMAsmPrinter.cpp581 Reloc::Model RelocM = TM.getRelocationModel(); in EmitStartOfAsmFile() local
582 if (RelocM == Reloc::PIC_ || RelocM == Reloc::DynamicNoPIC) { in EmitStartOfAsmFile()
610 if (RelocM == Reloc::DynamicNoPIC) { in EmitStartOfAsmFile()
DARMISelLowering.cpp2133 Reloc::Model RelocM = getTargetMachine().getRelocationModel(); in LowerBlockAddress() local
2135 if (RelocM == Reloc::Static) { in LowerBlockAddress()
2149 if (RelocM == Reloc::Static) in LowerBlockAddress()
2317 Reloc::Model RelocM = getTargetMachine().getRelocationModel(); in LowerGlobalAddressDarwin() local
2321 if (Subtarget->useMovt() && RelocM != Reloc::Static) { in LowerGlobalAddressDarwin()
2325 if (RelocM == Reloc::Static) in LowerGlobalAddressDarwin()
2329 unsigned Wrapper = (RelocM == Reloc::PIC_) in LowerGlobalAddressDarwin()
2333 if (Subtarget->GVIsIndirectSymbol(GV, RelocM)) in LowerGlobalAddressDarwin()
2342 if (RelocM == Reloc::Static) { in LowerGlobalAddressDarwin()
2347 unsigned PCAdj = (RelocM != Reloc::PIC_) ? 0 : (Subtarget->isThumb()?4:8); in LowerGlobalAddressDarwin()
[all …]
DARMCodeEmitter.cpp726 Reloc::Model RelocM = TM.getRelocationModel(); in emitConstPoolInstruction() local
729 Subtarget->GVIsIndirectSymbol(GV, RelocM), in emitConstPoolInstruction()
/external/llvm/include/llvm/MC/
DMCObjectFileInfo.h336 Reloc::Model RelocM; variable