Searched refs:Rel (Results 1 - 13 of 13) sorted by relevance

/freebsd-10.0-release/contrib/llvm/include/llvm/Object/
H A DMachO.h71 virtual error_code getRelocationNext(DataRefImpl Rel,
73 virtual error_code getRelocationAddress(DataRefImpl Rel, uint64_t &Res) const;
74 virtual error_code getRelocationOffset(DataRefImpl Rel, uint64_t &Res) const;
75 virtual error_code getRelocationSymbol(DataRefImpl Rel, SymbolRef &Res) const;
76 virtual error_code getRelocationType(DataRefImpl Rel, uint64_t &Res) const;
77 virtual error_code getRelocationTypeName(DataRefImpl Rel,
79 virtual error_code getRelocationAdditionalInfo(DataRefImpl Rel,
81 virtual error_code getRelocationValueString(DataRefImpl Rel,
83 virtual error_code getRelocationHidden(DataRefImpl Rel, bool &Result) const;
156 macho::RelocationEntry getRelocation(DataRefImpl Rel) cons
[all...]
H A DCOFF.h106 const coff_relocation *toRel(DataRefImpl Rel) const;
140 virtual error_code getRelocationNext(DataRefImpl Rel,
142 virtual error_code getRelocationAddress(DataRefImpl Rel,
144 virtual error_code getRelocationOffset(DataRefImpl Rel,
146 virtual error_code getRelocationSymbol(DataRefImpl Rel,
148 virtual error_code getRelocationType(DataRefImpl Rel,
150 virtual error_code getRelocationTypeName(DataRefImpl Rel,
152 virtual error_code getRelocationAdditionalInfo(DataRefImpl Rel,
154 virtual error_code getRelocationValueString(DataRefImpl Rel,
H A DObjectFile.h333 virtual error_code getRelocationNext(DataRefImpl Rel,
335 virtual error_code getRelocationAddress(DataRefImpl Rel,
337 virtual error_code getRelocationOffset(DataRefImpl Rel,
339 virtual error_code getRelocationSymbol(DataRefImpl Rel,
341 virtual error_code getRelocationType(DataRefImpl Rel,
343 virtual error_code getRelocationTypeName(DataRefImpl Rel,
345 virtual error_code getRelocationAdditionalInfo(DataRefImpl Rel,
347 virtual error_code getRelocationValueString(DataRefImpl Rel,
349 virtual error_code getRelocationHidden(DataRefImpl Rel, bool &Result) const { argument
H A DELF.h610 uint64_t getROffset(DataRefImpl Rel) const;
642 /// @brief Get the relocation section that contains \a Rel.
643 const Elf_Shdr *getRelSection(DataRefImpl Rel) const {
644 return getSection(Rel.w.b);
648 bool isRelocationHasAddend(DataRefImpl Rel) const;
655 const Elf_Rel *getRel(DataRefImpl Rel) const;
716 virtual error_code getRelocationNext(DataRefImpl Rel,
718 virtual error_code getRelocationAddress(DataRefImpl Rel,
720 virtual error_code getRelocationOffset(DataRefImpl Rel,
722 virtual error_code getRelocationSymbol(DataRefImpl Rel,
1485 getRelocationNext(DataRefImpl Rel, RelocationRef &Result) const argument
1513 getRelocationSymbol(DataRefImpl Rel, SymbolRef &Result) const argument
1540 getRelocationAddress(DataRefImpl Rel, uint64_t &Result) const argument
1549 getRelocationOffset(DataRefImpl Rel, uint64_t &Result) const argument
1571 getRelocationType(DataRefImpl Rel, uint64_t &Result) const argument
2180 getRelocationTypeName( DataRefImpl Rel, SmallVectorImpl<char> &Result) const argument
2222 getRelocationAdditionalInfo( DataRefImpl Rel, int64_t &Result) const argument
2240 getRelocationValueString( DataRefImpl Rel, SmallVectorImpl<char> &Result) const argument
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Object/
H A DCOFFObjectFile.cpp696 const coff_relocation *COFFObjectFile::toRel(DataRefImpl Rel) const {
697 return reinterpret_cast<const coff_relocation*>(Rel.p);
699 error_code COFFObjectFile::getRelocationNext(DataRefImpl Rel, argument
701 Rel.p = reinterpret_cast<uintptr_t>(
702 reinterpret_cast<const coff_relocation*>(Rel.p) + 1);
703 Res = RelocationRef(Rel, this);
706 error_code COFFObjectFile::getRelocationAddress(DataRefImpl Rel, argument
710 error_code COFFObjectFile::getRelocationOffset(DataRefImpl Rel, argument
712 Res = toRel(Rel)->VirtualAddress;
715 error_code COFFObjectFile::getRelocationSymbol(DataRefImpl Rel, argument
723 getRelocationType(DataRefImpl Rel, uint64_t &Res) const argument
747 getRelocationTypeName(DataRefImpl Rel, SmallVectorImpl<char> &Result) const argument
801 getRelocationAdditionalInfo(DataRefImpl Rel, int64_t &Res) const argument
806 getRelocationValueString(DataRefImpl Rel, SmallVectorImpl<char> &Result) const argument
[all...]
H A DMachOObjectFile.cpp850 error_code MachOObjectFile::getRelocationNext(DataRefImpl Rel, argument
853 reinterpret_cast<const macho::RelocationEntry *>(Rel.p);
854 Rel.p = reinterpret_cast<uintptr_t>(P + 1);
855 Res = RelocationRef(Rel, this);
860 MachOObjectFile::getRelocationAddress(DataRefImpl Rel, uint64_t &Res) const { argument
864 error_code MachOObjectFile::getRelocationOffset(DataRefImpl Rel, argument
866 macho::RelocationEntry RE = getRelocation(Rel);
872 MachOObjectFile::getRelocationSymbol(DataRefImpl Rel, SymbolRef &Res) const { argument
873 macho::RelocationEntry RE = getRelocation(Rel);
892 error_code MachOObjectFile::getRelocationType(DataRefImpl Rel, argument
900 getRelocationTypeName(DataRefImpl Rel, SmallVectorImpl<char> &Result) const argument
992 getRelocationAdditionalInfo(DataRefImpl Rel, int64_t &Res) const argument
999 getRelocationValueString(DataRefImpl Rel, SmallVectorImpl<char> &Result) const argument
1176 getRelocationHidden(DataRefImpl Rel, bool &Result) const argument
[all...]
/freebsd-10.0-release/sys/sys/
H A Delf_generic.h67 __ElfType(Rel); variable
/freebsd-10.0-release/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.h85 RelocationValueRef &Rel);
H A DRuntimeDyldELF.cpp495 RelocationValueRef &Rel) {
541 if (Rel.Addend != (intptr_t)TargetSymbolOffset)
546 Rel.SectionID = findOrEmitSection(Obj, (*tsi), true, LocalSections);
547 Rel.Addend = (intptr_t)TargetAdditionalInfo;
493 findOPDEntrySection(ObjectImage &Obj, ObjSectionToIDMap &LocalSections, RelocationValueRef &Rel) argument
/freebsd-10.0-release/lib/libelf/
H A Dlibelf_align.c85 [ELF_T_REL] = MALIGN(Rel),
H A Delf_types.m457 `REL, Rel, 600102',
/freebsd-10.0-release/sys/cddl/compat/opensolaris/sys/
H A Delf.h41 __sElfN(Rel); variable
/freebsd-10.0-release/contrib/binutils/binutils/
H A Dreadelf.c4160 CHECK_ENTSIZE (section, i, Rel);

Completed in 233 milliseconds