Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/MC/
DMCObjectFileInfo.cpp81 if (RelocM != Reloc::Static && in InitMachOMCObjectFileInfo()
126 if (RelocM == Reloc::Static) { in InitMachOMCObjectFileInfo()
209 PersonalityEncoding = (RelocM == Reloc::PIC_) in InitELFMCObjectFileInfo()
212 LSDAEncoding = (RelocM == Reloc::PIC_) in InitELFMCObjectFileInfo()
215 FDEEncoding = FDECFIEncoding = (RelocM == Reloc::PIC_) in InitELFMCObjectFileInfo()
218 TTypeEncoding = (RelocM == Reloc::PIC_) in InitELFMCObjectFileInfo()
224 if (RelocM == Reloc::PIC_) { in InitELFMCObjectFileInfo()
496 RelocM = relocm; in InitMCObjectFileInfo()
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DARMSubtarget.cpp133 Reloc::Model RelocM) const { in GVIsIndirectSymbol()
134 if (RelocM == Reloc::Static) in GVIsIndirectSymbol()
149 if (RelocM == Reloc::PIC_) { in GVIsIndirectSymbol()
DARMSubtarget.h266 bool GVIsIndirectSymbol(const GlobalValue *GV, Reloc::Model RelocM) const;
DARMFastISel.cpp586 Reloc::Model RelocM = TM.getRelocationModel(); in ARMMaterializeGV() local
589 if (!isThumb && (RelocM == Reloc::PIC_)) return 0; in ARMMaterializeGV()
599 unsigned PCAdj = (RelocM != Reloc::PIC_) ? 0 : (Subtarget->isThumb() ? 4 : 8); in ARMMaterializeGV()
610 unsigned Opc = (RelocM != Reloc::PIC_) ? ARM::t2LDRpci : ARM::t2LDRpci_pic; in ARMMaterializeGV()
613 if (RelocM == Reloc::PIC_) in ARMMaterializeGV()
624 if (Subtarget->GVIsIndirectSymbol(GV, RelocM)) { in ARMMaterializeGV()
DARMAsmPrinter.cpp539 Reloc::Model RelocM = TM.getRelocationModel(); in EmitStartOfAsmFile() local
540 if (RelocM == Reloc::PIC_ || RelocM == Reloc::DynamicNoPIC) { in EmitStartOfAsmFile()
553 if (RelocM == Reloc::DynamicNoPIC) { in EmitStartOfAsmFile()
DARMISelLowering.cpp1953 Reloc::Model RelocM = getTargetMachine().getRelocationModel(); in LowerBlockAddress() local
1955 if (RelocM == Reloc::Static) { in LowerBlockAddress()
1969 if (RelocM == Reloc::Static) in LowerBlockAddress()
2084 Reloc::Model RelocM = getTargetMachine().getRelocationModel(); in LowerGlobalAddressELF() local
2085 if (RelocM == Reloc::PIC_) { in LowerGlobalAddressELF()
2127 Reloc::Model RelocM = getTargetMachine().getRelocationModel(); in LowerGlobalAddressDarwin() local
2132 if (Subtarget->useMovt() && RelocM != Reloc::Static) { in LowerGlobalAddressDarwin()
2136 if (RelocM == Reloc::Static) in LowerGlobalAddressDarwin()
2140 unsigned Wrapper = (RelocM == Reloc::PIC_) in LowerGlobalAddressDarwin()
2144 if (Subtarget->GVIsIndirectSymbol(GV, RelocM)) in LowerGlobalAddressDarwin()
[all …]
DARMCodeEmitter.cpp641 Reloc::Model RelocM = TM.getRelocationModel(); in emitConstPoolInstruction() local
644 Subtarget->GVIsIndirectSymbol(GV, RelocM), in emitConstPoolInstruction()
/external/swiftshader/third_party/LLVM/include/llvm/MC/
DMCObjectFileInfo.h279 Reloc::Model RelocM; variable