HomeSort by relevance Sort by last modified time
    Searched refs:RelType (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 211 uint32_t RelType = (uint32_t) (Rel.Type & 0xffffffffL);
216 bool isExtern = (RelType >> 27) & 1;
238 uint8_t sectionIndex = static_cast<uint8_t>(RelType & 0xFF);
257 if (Arch == Triple::arm && RelType == macho::RIT_ARM_Branch24Bit) {
265 RelType, 0);
279 RelType, 0);
283 RelocationEntry RE(Rel.SectionID, Rel.Offset, RelType, Value.Addend);
RuntimeDyldELF.cpp 382 uint32_t RelType = (uint32_t)(Rel.Type & 0xffffffffL);
389 DEBUG(dbgs() << "\t\tRelType: " << RelType
438 (RelType == ELF::R_ARM_PC24 ||
439 RelType == ELF::R_ARM_CALL ||
440 RelType == ELF::R_ARM_JUMP24)) {
450 i->second, RelType, 0);
466 Section.StubOffset, RelType, 0);
469 } else if (Arch == Triple::mipsel && RelType == ELF::R_MIPS_26) {
486 i->second, RelType, 0);
513 Section.StubOffset, RelType, 0)
    [all...]
RuntimeDyldImpl.h 80 /// RelType - relocation type.
81 uint32_t RelType;
88 : SectionID(id), Offset(offset), RelType(type), Addend(addend) {}
RuntimeDyld.cpp 390 << " RelType: " << RE.RelType
395 Value, RE.RelType, RE.Addend);
  /external/llvm/include/llvm/MC/
MCELFObjectWriter.h 41 ELFRelocationEntry(uint64_t RelocOffset, int Idx, unsigned RelType,
43 : r_offset(RelocOffset), Index(Idx), Type(RelType), Symbol(Sym),

Completed in 221 milliseconds