Lines Matching refs:IsPCRel

35                         const MCFixup &Fixup, bool IsPCRel) const override;
52 bool &IsPCRel) { in getType64() argument
58 IsPCRel = true; in getType64()
64 if (Modifier == MCSymbolRefExpr::VK_None && !IsPCRel) in getType64()
69 IsPCRel = true; in getType64()
98 X86_64RelType Type, bool IsPCRel, in getRelocType64() argument
107 return IsPCRel ? ELF::R_X86_64_PC64 : ELF::R_X86_64_64; in getRelocType64()
109 return IsPCRel ? ELF::R_X86_64_PC32 : ELF::R_X86_64_32; in getRelocType64()
113 return IsPCRel ? ELF::R_X86_64_PC16 : ELF::R_X86_64_16; in getRelocType64()
115 return IsPCRel ? ELF::R_X86_64_PC8 : ELF::R_X86_64_8; in getRelocType64()
120 return IsPCRel ? ELF::R_X86_64_GOTPC64 : ELF::R_X86_64_GOT64; in getRelocType64()
122 return IsPCRel ? ELF::R_X86_64_GOTPC32 : ELF::R_X86_64_GOT32; in getRelocType64()
130 assert(!IsPCRel); in getRelocType64()
133 assert(!IsPCRel); in getRelocType64()
145 assert(!IsPCRel); in getRelocType64()
157 assert(!IsPCRel); in getRelocType64()
222 X86_32RelType Type, bool IsPCRel, in getRelocType32() argument
231 return IsPCRel ? ELF::R_386_PC32 : ELF::R_386_32; in getRelocType32()
233 return IsPCRel ? ELF::R_386_PC16 : ELF::R_386_16; in getRelocType32()
235 return IsPCRel ? ELF::R_386_PC8 : ELF::R_386_8; in getRelocType32()
239 if (IsPCRel) in getRelocType32()
250 assert(!IsPCRel); in getRelocType32()
254 assert(!IsPCRel); in getRelocType32()
258 assert(!IsPCRel); in getRelocType32()
262 assert(!IsPCRel); in getRelocType32()
266 assert(!IsPCRel); in getRelocType32()
273 assert(!IsPCRel); in getRelocType32()
277 assert(!IsPCRel); in getRelocType32()
281 assert(!IsPCRel); in getRelocType32()
285 assert(!IsPCRel); in getRelocType32()
292 bool IsPCRel) const { in getRelocType()
295 X86_64RelType Type = getType64(Kind, Modifier, IsPCRel); in getRelocType()
297 return getRelocType64(Ctx, Fixup.getLoc(), Modifier, Type, IsPCRel, Kind); in getRelocType()
301 return getRelocType32(Ctx, Modifier, getType32(Type), IsPCRel, Kind); in getRelocType()