HomeSort by relevance Sort by last modified time
    Searched defs:IsPCRel (Results 1 - 8 of 8) sorted by null

  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MachObjectWriter.cpp 119 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
133 if (IsPCRel)
176 if (IsPCRel) {
204 IsPCRel = 1;
207 MRE.r_word1 = ((Index << 0) | (IsPCRel << 24) | (Log2Size << 25) |
218 if (IsPCRel)
261 MRE.r_word1 = ((Index << 0) | (IsPCRel << 24) | (Log2Size << 25) |
334 if (IsPCRel)
364 MRE.r_word1 = ((Index << 0) | (IsPCRel << 24) | (Log2Size << 25) |
371 IsPCRel = 0
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMachObjectWriter.cpp 155 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
232 (IsPCRel << 30) |
243 (IsPCRel << 30) |
259 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
297 (IsPCRel << 30) |
307 (IsPCRel << 30) |
360 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
394 if (IsPCRel && RelocType == MachO::ARM_RELOC_VANILLA)
440 if (IsPCRel)
451 (IsPCRel << 24)
    [all...]
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMachObjectWriter.cpp 87 const bool IsPCRel) {
93 if (IsPCRel) { // relative to PC
149 const unsigned IsPCRel, const unsigned Log2Size,
158 (IsPCRel << 7) | // was << 24
167 const unsigned Log2Size, const unsigned IsPCRel,
172 (IsPCRel << 30) | MachO::R_SCATTERED);
199 const unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, FK);
200 const unsigned Type = getRelocType(Target, FK, IsPCRel);
284 Log2Size, IsPCRel, Value2);
298 makeScatteredRelocationInfo(MRE, FixupOffset, Type, Log2Size, IsPCRel, Value)
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MachObjectWriter.cpp 107 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
123 if (IsPCRel) {
141 if (IsPCRel) {
165 if (IsPCRel)
206 (IsPCRel << 24) |
253 if (IsPCRel)
273 if (IsPCRel) {
327 IsPCRel = 1;
350 (IsPCRel << 24) |
367 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind())
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 107 bool IsPCRel;
114 SymOffset(0), IsPCRel(false), Size(0) {}
119 SymOffset(symoffset), IsPCRel(false), Size(0) {}
122 bool IsPCRel, unsigned Size)
124 SymOffset(0), IsPCRel(IsPCRel), Size(Size) {}
128 uint64_t SectionBOffset, bool IsPCRel, unsigned Size)
130 Addend(SectionAOffset - SectionBOffset + addend), IsPCRel(IsPCRel),
RuntimeDyldMachO.cpp 274 << " isPCRel: " << RE.IsPCRel
305 if (RE.IsPCRel) {
337 if (RE.IsPCRel) {
369 if (RE.IsPCRel) {
422 if (RE.IsPCRel) {
559 bool IsPCRel = MachO->getAnyRelocationPCRel(RE);
604 IsPCRel, Size);
624 bool IsPCRel = MachO->getAnyRelocationPCRel(RE);
646 IsPCRel, Size)
    [all...]
  /external/llvm/lib/MC/
MCAssembler.cpp 460 bool IsPCRel = Backend.getFixupKindInfo(
464 if (IsPCRel) {
502 assert((ShouldAlignPC ? IsPCRel : true) &&
505 if (IsPCRel) {
845 bool IsPCRel = Backend.getFixupKindInfo(Fixup.getKind()).Flags &
851 getWriter().RecordRelocation(*this, Layout, &F, Fixup, Target, IsPCRel,
854 return std::make_pair(FixedValue, IsPCRel);
919 bool IsPCRel;
920 std::tie(FixedValue, IsPCRel) = handleFixup(Layout, *F, Fixup);
922 F->getContents().size(), FixedValue, IsPCRel);
    [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 1019 bool IsPCRel = this->getAnyRelocationPCRel(RE);
1026 bool isPCRel = getAnyRelocationPCRel(RE);
1033 if (isPCRel) fmt << "PCREL";
1059 if (isPCRel) fmt << "P";
    [all...]

Completed in 287 milliseconds