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

  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.h 73 bool IsPCRel = Obj.getAnyRelocationPCRel(RelInfo);
80 return RelocationEntry(SectionID, Offset, RelType, 0, IsPCRel, Size);
RuntimeDyldImpl.h 114 bool IsPCRel;
121 SymOffset(0), IsPCRel(false), Size(0) {}
126 SymOffset(symoffset), IsPCRel(false), Size(0) {}
129 bool IsPCRel, unsigned Size)
131 SymOffset(0), IsPCRel(IsPCRel), Size(Size) {}
135 uint64_t SectionBOffset, bool IsPCRel, unsigned Size)
137 Addend(SectionAOffset - SectionBOffset + addend), IsPCRel(IsPCRel),
RuntimeDyldMachO.cpp 97 bool IsPCRel = Obj.getAnyRelocationPCRel(RelInfo);
98 if (IsPCRel) {
115 << " isPCRel: " << RE.IsPCRel << " MachoType: " << RE.RelType
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MachObjectWriter.cpp 148 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
162 if (IsPCRel)
204 if (IsPCRel) {
229 IsPCRel = 1;
232 MRE.r_word1 = (IsPCRel << 24) | (Log2Size << 25) | (Type << 28);
242 if (IsPCRel)
283 MRE.r_word1 = (IsPCRel << 24) | (Log2Size << 25) | (Type << 28);
360 if (IsPCRel)
391 (Index << 0) | (IsPCRel << 24) | (Log2Size << 25) | (Type << 28);
398 IsPCRel = 0
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMachObjectWriter.cpp 150 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
227 (IsPCRel << 30) |
238 (IsPCRel << 30) |
254 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
292 (IsPCRel << 30) |
302 (IsPCRel << 30) |
354 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
388 if (IsPCRel && RelocType == MachO::ARM_RELOC_VANILLA)
433 if (IsPCRel)
444 (Index << 0) | (IsPCRel << 24) | (Log2Size << 25) | (Type << 28)
    [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/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldMachOARM.h 76 if (RE.IsPCRel)
99 if (RE.IsPCRel) {
198 RE.IsPCRel, RE.Size);
222 bool IsPCRel = MachO.getAnyRelocationPCRel(RE);
265 SectionAOffset, SectionBID, SectionBOffset, IsPCRel,
RuntimeDyldMachOI386.h 65 // if (IsExtern && RE.IsPCRel) {
70 if (RE.IsPCRel)
89 if (RE.IsPCRel) {
139 bool IsPCRel = Obj.getAnyRelocationPCRel(RE);
179 SectionAOffset, SectionBID, SectionBOffset, IsPCRel,
199 bool IsPCRel = Obj.getAnyRelocationPCRel(RE);
217 RelocationEntry R(SectionID, Offset, RelocType, Addend, IsPCRel, Size);
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MachObjectWriter.cpp 103 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
120 if (IsPCRel) {
137 if (IsPCRel) {
161 if (IsPCRel)
199 (Index << 0) | (IsPCRel << 24) | (Log2Size << 25) | (Type << 28);
241 if (IsPCRel)
261 if (IsPCRel) {
315 IsPCRel = 1;
337 MRE.r_word1 = (Index << 0) | (IsPCRel << 24) | (Log2Size << 25) |
352 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind())
    [all...]
  /external/llvm/lib/MC/
MCAssembler.cpp 490 bool IsPCRel = Backend.getFixupKindInfo(
494 if (IsPCRel) {
530 assert((ShouldAlignPC ? IsPCRel : true) &&
533 if (IsPCRel) {
884 bool IsPCRel = Backend.getFixupKindInfo(Fixup.getKind()).Flags &
890 getWriter().RecordRelocation(*this, Layout, &F, Fixup, Target, IsPCRel,
893 return std::make_pair(FixedValue, IsPCRel);
    [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 842 bool IsPCRel = this->getAnyRelocationPCRel(RE);
849 bool isPCRel = getAnyRelocationPCRel(RE);
856 if (isPCRel) fmt << "PCREL";
882 if (isPCRel) fmt << "P";
949 if (IsPCRel) fmt << "P";
    [all...]

Completed in 1088 milliseconds