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

/freebsd-10.1-release/contrib/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MachORelocationInfo.cpp27 const MCExpr *createExprForRelocation(RelocationRef Rel) { argument
28 const MachOObjectFile *Obj = cast<MachOObjectFile>(Rel.getObjectFile());
30 uint64_t RelType; Rel.getType(RelType);
31 symbol_iterator SymI = Rel.getSymbol();
36 any_relocation_info RE = Obj->getRelocation(Rel.getRawDataRefImpl());
76 Obj->getRelocationNext(Rel.getRawDataRefImpl(), RelNext);
H A DX86ELFRelocationInfo.cpp28 const MCExpr *createExprForRelocation(RelocationRef Rel) { argument
29 uint64_t RelType; Rel.getType(RelType);
30 symbol_iterator SymI = Rel.getSymbol();
35 int64_t Addend; getELFRelocationAddend(Rel, Addend);
/freebsd-10.1-release/contrib/llvm/include/llvm/MC/
H A DMCRelocationInfo.h41 /// \brief Create an MCExpr for the relocation \p Rel.
42 /// \returns If possible, an MCExpr corresponding to Rel, else 0.
43 virtual const MCExpr *createExprForRelocation(object::RelocationRef Rel);
/freebsd-10.1-release/contrib/llvm/lib/MC/
H A DMCRelocationInfo.cpp25 MCRelocationInfo::createExprForRelocation(object::RelocationRef Rel) { argument
/freebsd-10.1-release/contrib/llvm/include/llvm/Object/
H A DMachO.h94 virtual error_code getRelocationNext(DataRefImpl Rel,
96 virtual error_code getRelocationAddress(DataRefImpl Rel, uint64_t &Res) const;
97 virtual error_code getRelocationOffset(DataRefImpl Rel, uint64_t &Res) const;
98 virtual symbol_iterator getRelocationSymbol(DataRefImpl Rel) const;
99 virtual error_code getRelocationType(DataRefImpl Rel, uint64_t &Res) const;
100 virtual error_code getRelocationTypeName(DataRefImpl Rel,
102 virtual error_code getRelocationValueString(DataRefImpl Rel,
104 virtual error_code getRelocationHidden(DataRefImpl Rel, bool &Result) const;
183 MachO::any_relocation_info getRelocation(DataRefImpl Rel) const;
184 MachO::data_in_code_entry getDice(DataRefImpl Rel) cons
227 DataRefImpl Rel = DicePimpl; local
[all...]
H A DELFObjectFile.h94 virtual error_code getRelocationNext(DataRefImpl Rel,
96 virtual error_code getRelocationAddress(DataRefImpl Rel, uint64_t &Res) const;
97 virtual error_code getRelocationOffset(DataRefImpl Rel, uint64_t &Res) const;
98 virtual symbol_iterator getRelocationSymbol(DataRefImpl Rel) const;
99 virtual error_code getRelocationType(DataRefImpl Rel, uint64_t &Res) const;
100 virtual error_code getRelocationTypeName(DataRefImpl Rel,
103 getRelocationValueString(DataRefImpl Rel,
106 uint64_t getROffset(DataRefImpl Rel) const;
109 /// \brief Get the relocation section that contains \a Rel.
110 const Elf_Shdr *getRelSection(DataRefImpl Rel) cons
582 getRelocationNext(DataRefImpl Rel, RelocationRef &Result) const argument
627 getRelocationAddress(DataRefImpl Rel, uint64_t &Result) const argument
634 getRelocationOffset(DataRefImpl Rel, uint64_t &Result) const argument
654 getRelocationType(DataRefImpl Rel, uint64_t &Result) const argument
678 getRelocationTypeName( DataRefImpl Rel, SmallVectorImpl<char> &Result) const argument
700 getRelocationAddend(DataRefImpl Rel, int64_t &Result) const argument
718 getRelocationValueString( DataRefImpl Rel, SmallVectorImpl<char> &Result) const argument
[all...]
H A DCOFF.h240 const coff_relocation *toRel(DataRefImpl Rel) const;
276 virtual error_code getRelocationNext(DataRefImpl Rel,
278 virtual error_code getRelocationAddress(DataRefImpl Rel,
280 virtual error_code getRelocationOffset(DataRefImpl Rel,
282 virtual symbol_iterator getRelocationSymbol(DataRefImpl Rel) const;
283 virtual error_code getRelocationType(DataRefImpl Rel,
285 virtual error_code getRelocationTypeName(DataRefImpl Rel,
287 virtual error_code getRelocationValueString(DataRefImpl Rel,
H A DObjectFile.h326 virtual error_code getRelocationNext(DataRefImpl Rel,
328 virtual error_code getRelocationAddress(DataRefImpl Rel,
330 virtual error_code getRelocationOffset(DataRefImpl Rel,
332 virtual symbol_iterator getRelocationSymbol(DataRefImpl Rel) const = 0;
333 virtual error_code getRelocationType(DataRefImpl Rel,
335 virtual error_code getRelocationTypeName(DataRefImpl Rel,
337 virtual error_code getRelocationValueString(DataRefImpl Rel,
339 virtual error_code getRelocationHidden(DataRefImpl Rel, bool &Result) const { argument
H A DCOFFYAML.h115 static void mapping(IO &IO, COFFYAML::Relocation &Rel);
H A DELF.h316 getRelocationSymbol(const Elf_Shdr *RelSec, const RelT *Rel) const;
566 ELFFile<ELFT>::getRelocationSymbol(const Elf_Shdr *Sec, const RelT *Rel) const {
571 SymTable, getEntry<Elf_Sym>(SymTable, Rel->getSymbol(isMips64EL())));
/freebsd-10.1-release/contrib/llvm/lib/Object/
H A DCOFFObjectFile.cpp760 const coff_relocation *COFFObjectFile::toRel(DataRefImpl Rel) const {
761 return reinterpret_cast<const coff_relocation*>(Rel.p);
763 error_code COFFObjectFile::getRelocationNext(DataRefImpl Rel, argument
765 Rel.p = reinterpret_cast<uintptr_t>(
766 reinterpret_cast<const coff_relocation*>(Rel.p) + 1);
767 Res = RelocationRef(Rel, this);
770 error_code COFFObjectFile::getRelocationAddress(DataRefImpl Rel, argument
774 error_code COFFObjectFile::getRelocationOffset(DataRefImpl Rel, argument
776 Res = toRel(Rel)->VirtualAddress;
779 symbol_iterator COFFObjectFile::getRelocationSymbol(DataRefImpl Rel) cons
785 getRelocationType(DataRefImpl Rel, uint64_t &Res) const argument
808 getRelocationTypeName(DataRefImpl Rel, SmallVectorImpl<char> &Result) const argument
862 getRelocationValueString(DataRefImpl Rel, SmallVectorImpl<char> &Result) const argument
[all...]
H A DMachOObjectFile.cpp837 error_code MachOObjectFile::getRelocationNext(DataRefImpl Rel, argument
840 reinterpret_cast<const MachO::any_relocation_info *>(Rel.p);
841 Rel.p = reinterpret_cast<uintptr_t>(P + 1);
842 Res = RelocationRef(Rel, this);
847 MachOObjectFile::getRelocationAddress(DataRefImpl Rel, uint64_t &Res) const { argument
851 error_code MachOObjectFile::getRelocationOffset(DataRefImpl Rel, argument
853 MachO::any_relocation_info RE = getRelocation(Rel);
859 MachOObjectFile::getRelocationSymbol(DataRefImpl Rel) const {
860 MachO::any_relocation_info RE = getRelocation(Rel);
876 error_code MachOObjectFile::getRelocationType(DataRefImpl Rel, argument
884 getRelocationTypeName(DataRefImpl Rel, SmallVectorImpl<char> &Result) const argument
977 getRelocationValueString(DataRefImpl Rel, SmallVectorImpl<char> &Result) const argument
1153 getRelocationHidden(DataRefImpl Rel, bool &Result) const argument
[all...]
H A DCOFFYAML.cpp233 COFFYAML::Relocation &Rel) {
234 MappingNormalization<NType, uint16_t> NT(IO, Rel.Type);
236 IO.mapRequired("VirtualAddress", Rel.VirtualAddress);
237 IO.mapRequired("SymbolName", Rel.SymbolName);
232 mapping(IO &IO, COFFYAML::Relocation &Rel) argument
/freebsd-10.1-release/sys/sys/
H A Delf_generic.h67 __ElfType(Rel); variable
/freebsd-10.1-release/lib/libelf/
H A Dlibelf_align.c85 [ELF_T_REL] = MALIGN(Rel),
H A Delf_types.m457 `REL, Rel, 600102',
/freebsd-10.1-release/sys/cddl/compat/opensolaris/sys/
H A Delf.h41 __sElfN(Rel); variable
/freebsd-10.1-release/contrib/llvm/tools/llvm-readobj/
H A DELFDumper.cpp61 void printRelocation(const Elf_Shdr *Sec, typename ELFO::Elf_Rela Rel);
575 typename ELFO::Elf_Rela Rel) {
577 Obj->getRelocationTypeName(Rel.getType(Obj->isMips64EL()), RelocName);
580 Obj->getRelocationSymbol(Sec, &Rel);
586 W.printHex("Offset", Rel.r_offset);
587 W.printNumber("Type", RelocName, (int)Rel.getType(Obj->isMips64EL()));
589 W.printHex("Addend", Rel.r_addend);
592 OS << W.hex(Rel.r_offset)
595 << " " << W.hex(Rel.r_addend)
574 printRelocation(const Elf_Shdr *Sec, typename ELFO::Elf_Rela Rel) argument
/freebsd-10.1-release/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.h112 RelocationValueRef &Rel);
H A DRuntimeDyldELF.cpp583 RelocationValueRef &Rel) {
632 if (Rel.Addend != (int64_t)TargetSymbolOffset)
637 Rel.SectionID = findOrEmitSection(Obj, (*tsi), true, LocalSections);
638 Rel.Addend = (intptr_t)Addend;
581 findOPDEntrySection(ObjectImage &Obj, ObjSectionToIDMap &LocalSections, RelocationValueRef &Rel) argument
/freebsd-10.1-release/contrib/binutils/binutils/
H A Dreadelf.c4160 CHECK_ENTSIZE (section, i, Rel);

Completed in 333 milliseconds