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

  /external/llvm/include/llvm/Object/
MachO.h 90 virtual error_code getRelocationNext(DataRefImpl Rel,
92 virtual error_code getRelocationAddress(DataRefImpl Rel,
94 virtual error_code getRelocationOffset(DataRefImpl Rel,
96 virtual error_code getRelocationSymbol(DataRefImpl Rel,
98 virtual error_code getRelocationType(DataRefImpl Rel,
100 virtual error_code getRelocationTypeName(DataRefImpl Rel,
102 virtual error_code getRelocationAdditionalInfo(DataRefImpl Rel,
104 virtual error_code getRelocationValueString(DataRefImpl Rel,
106 virtual error_code getRelocationHidden(DataRefImpl Rel, bool &Result) const;
127 void getRelocation(DataRefImpl Rel,
    [all...]
COFF.h 106 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,
ObjectFile.h 333 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 {
ELF.h 617 /// @brief Get the relocation section that contains \a Rel.
618 const Elf_Shdr *getRelSection(DataRefImpl Rel) const {
619 return getSection(Rel.w.b);
623 bool isRelocationHasAddend(DataRefImpl Rel) const;
630 const Elf_Rel *getRel(DataRefImpl Rel) const;
689 virtual error_code getRelocationNext(DataRefImpl Rel,
691 virtual error_code getRelocationAddress(DataRefImpl Rel,
693 virtual error_code getRelocationOffset(DataRefImpl Rel,
695 virtual error_code getRelocationSymbol(DataRefImpl Rel,
697 virtual error_code getRelocationType(DataRefImpl Rel,
    [all...]
  /frameworks/compile/mclinker/include/mcld/Target/
ELFDynamic.h 60 typedef llvm::ELF::Elf32_Rel Rel;
78 { return sizeof(Rel); }
97 typedef llvm::ELF::Elf64_Rel Rel;
115 { return sizeof(Rel); }
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 208 void RuntimeDyldMachO::processRelocationRef(const ObjRelocationInfo &Rel,
214 uint32_t RelType = (uint32_t) (Rel.Type & 0xffffffffL);
216 SectionEntry &Section = Sections[Rel.SectionID];
222 const SymbolRef &Symbol = Rel.Symbol;
270 resolveRelocation(Section, Rel.Offset,
278 RelocationEntry RE(Rel.SectionID, StubTargetAddr - Section.Address,
284 resolveRelocation(Section, Rel.Offset,
290 RelocationEntry RE(Rel.SectionID, Rel.Offset, RelType, Value.Addend);
RuntimeDyldELF.cpp 408 RelocationValueRef &Rel) {
454 if (Rel.Addend != (intptr_t)TargetSymbolOffset)
459 Rel.SectionID = findOrEmitSection(Obj, (*tsi), true, LocalSections);
460 Rel.Addend = (intptr_t)TargetAdditionalInfo;
596 void RuntimeDyldELF::processRelocationRef(const ObjRelocationInfo &Rel,
602 uint32_t RelType = (uint32_t)(Rel.Type & 0xffffffffL);
603 intptr_t Addend = (intptr_t)Rel.AdditionalInfo;
604 const SymbolRef &Symbol = Rel.Symbol;
660 DEBUG(dbgs() << "\t\tRel.SectionID: " << Rel.SectionID
661 << " Rel.Offset: " << Rel.Offse
    [all...]
RuntimeDyldELF.h 71 virtual void processRelocationRef(const ObjRelocationInfo &Rel,
84 RelocationValueRef &Rel);
RuntimeDyldMachO.h 51 virtual void processRelocationRef(const ObjRelocationInfo &Rel,
RuntimeDyldImpl.h 289 virtual void processRelocationRef(const ObjRelocationInfo &Rel,
  /external/llvm/lib/Object/
MachOObjectFile.cpp 723 getRelocation(DataRefImpl Rel,
728 getSection64(Sections[Rel.d.b], Sect);
732 getSection(Sections[Rel.d.b], Sect);
735 MachOObj->ReadRelocationEntry(relOffset, Rel.d.a, Res);
737 error_code MachOObjectFile::getRelocationNext(DataRefImpl Rel,
739 ++Rel.d.a;
740 Res = RelocationRef(Rel, this);
743 error_code MachOObjectFile::getRelocationAddress(DataRefImpl Rel,
748 getSection64(Sections[Rel.d.b], Sect);
752 getSection(Sections[Rel.d.b], Sect)
    [all...]
COFFObjectFile.cpp 698 const coff_relocation *COFFObjectFile::toRel(DataRefImpl Rel) const {
699 return reinterpret_cast<const coff_relocation*>(Rel.p);
701 error_code COFFObjectFile::getRelocationNext(DataRefImpl Rel,
703 Rel.p = reinterpret_cast<uintptr_t>(
704 reinterpret_cast<const coff_relocation*>(Rel.p) + 1);
705 Res = RelocationRef(Rel, this);
708 error_code COFFObjectFile::getRelocationAddress(DataRefImpl Rel,
710 Res = toRel(Rel)->VirtualAddress;
713 error_code COFFObjectFile::getRelocationOffset(DataRefImpl Rel,
715 Res = toRel(Rel)->VirtualAddress
    [all...]
  /external/elfutils/libelf/
gelf_xlate.h 66 TYPE (Rel, LIBELFBITS)
abstract.h 158 START (32, Rel, Ext##Rel) \
161 END (32, Ext##Rel)
163 START (64, Rel, Ext##Rel) \
166 END (64, Ext##Rel)
elf_getdata.c 111 [ELF_T_REL] = __alignof__ (ElfW2(Bits,Rel)), \
  /frameworks/compile/mclinker/include/mcld/LD/
ELFReader.h 49 typedef llvm::ELF::Elf32_Rel Rel;
96 /// readRel - read ELF rel and create Relocation
116 typedef llvm::ELF::Elf64_Rel Rel;
163 /// readRel - read ELF rel and create Relocation
  /frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h 61 typedef llvm::ELF::Elf32_Rel Rel;
82 typedef llvm::ELF::Elf64_Rel Rel;
  /frameworks/compile/mclinker/lib/LD/
ELFObjectWriter.cpp 431 typedef typename ELFSizeTraits<SIZE>::Rel ElfXX_Rel;
435 ElfXX_Rel* rel = reinterpret_cast<ElfXX_Rel*>(pRegion.start()); local
441 ie = pRelocData.end(); it != ie; ++it, ++rel) {
448 rel->r_offset = static_cast<ElfXX_Addr>(
453 rel->r_offset = static_cast<ElfXX_Addr>(frag_ref->getOutputOffset());
462 rel->setSymbolAndType(Index, relocation->type());
476 ElfXX_Rela* rel = reinterpret_cast<ElfXX_Rela*>(pRegion.start()); local
482 ie = pRelocData.end(); it != ie; ++it, ++rel) {
489 rel->r_offset = static_cast<ElfXX_Addr>(
494 rel->r_offset = static_cast<ElfXX_Addr>(frag_ref->getOutputOffset())
    [all...]
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGeneratorObjC.pm 593 if ($type =~ /(\w+)(Abs|Rel)$/) {
    [all...]
CodeGeneratorJS.pm 248 $joinedName =~ s/Abs|Rel//;
    [all...]
CodeGeneratorV8.pm 137 $joinedName =~ s/Abs|Rel//;
461 $className =~ s/Abs|Rel//;
    [all...]

Completed in 403 milliseconds