Home | History | Annotate | Download | only in X86

Lines Matching refs:Reloc

57         IsPIC(TM.getRelocationModel() == Reloc::PIC_) {}
87 void emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
90 void emitExternalSymbolAddress(const char *ES, unsigned Reloc);
91 void emitConstPoolAddress(unsigned CPI, unsigned Reloc, intptr_t Disp = 0,
93 void emitJumpTableAddress(unsigned JTI, unsigned Reloc,
136 IsPIC = TM.getRelocationModel() == Reloc::PIC_;
274 unsigned Reloc,
279 if (Reloc == X86::reloc_picrel_word)
281 else if (Reloc == X86::reloc_pcrel_word)
284 ? MachineRelocation::getIndirectSymbol(MCE.getCurrentPCOffset(), Reloc,
287 : MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
291 if (Reloc == X86::reloc_absolute_dword)
302 unsigned Reloc) {
303 intptr_t RelocCST = (Reloc == X86::reloc_picrel_word) ? PICBaseOffset : 0;
311 Reloc, ES, RelocCST,
313 if (Reloc == X86::reloc_absolute_dword)
323 void Emitter<CodeEmitter>::emitConstPoolAddress(unsigned CPI, unsigned Reloc,
327 if (Reloc == X86::reloc_picrel_word)
329 else if (Reloc == X86::reloc_pcrel_word)
332 Reloc, CPI, RelocCST));
334 if (Reloc == X86::reloc_absolute_dword)
344 void Emitter<CodeEmitter>::emitJumpTableAddress(unsigned JTI, unsigned Reloc,
347 if (Reloc == X86::reloc_picrel_word)
349 else if (Reloc == X86::reloc_pcrel_word)
352 Reloc, JTI, RelocCST));
354 if (Reloc == X86::reloc_absolute_dword)