/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldELF.cpp | 408 RelocationValueRef &Rel) { in findOPDEntrySection() argument 454 if (Rel.Addend != (intptr_t)TargetSymbolOffset) in findOPDEntrySection() 459 Rel.SectionID = findOrEmitSection(Obj, (*tsi), true, LocalSections); in findOPDEntrySection() 460 Rel.Addend = (intptr_t)TargetAdditionalInfo; in findOPDEntrySection() 596 void RuntimeDyldELF::processRelocationRef(const ObjRelocationInfo &Rel, in processRelocationRef() argument 602 uint32_t RelType = (uint32_t)(Rel.Type & 0xffffffffL); in processRelocationRef() 603 intptr_t Addend = (intptr_t)Rel.AdditionalInfo; in processRelocationRef() 604 const SymbolRef &Symbol = Rel.Symbol; in processRelocationRef() 660 DEBUG(dbgs() << "\t\tRel.SectionID: " << Rel.SectionID in processRelocationRef() 661 << " Rel.Offset: " << Rel.Offset in processRelocationRef() [all …]
|
D | RuntimeDyldMachO.cpp | 208 void RuntimeDyldMachO::processRelocationRef(const ObjRelocationInfo &Rel, in processRelocationRef() argument 214 uint32_t RelType = (uint32_t) (Rel.Type & 0xffffffffL); in processRelocationRef() 216 SectionEntry &Section = Sections[Rel.SectionID]; in processRelocationRef() 222 const SymbolRef &Symbol = Rel.Symbol; in processRelocationRef() 270 resolveRelocation(Section, Rel.Offset, in processRelocationRef() 278 RelocationEntry RE(Rel.SectionID, StubTargetAddr - Section.Address, in processRelocationRef() 284 resolveRelocation(Section, Rel.Offset, in processRelocationRef() 290 RelocationEntry RE(Rel.SectionID, Rel.Offset, RelType, Value.Addend); in processRelocationRef()
|
D | RuntimeDyldELF.h | 71 virtual void processRelocationRef(const ObjRelocationInfo &Rel, 84 RelocationValueRef &Rel);
|
D | RuntimeDyldMachO.h | 51 virtual void processRelocationRef(const ObjRelocationInfo &Rel,
|
D | RuntimeDyldImpl.h | 289 virtual void processRelocationRef(const ObjRelocationInfo &Rel,
|
/external/llvm/include/llvm/Object/ |
D | 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,
|
D | 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,
|
D | ELF.h | 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, 699 virtual error_code getRelocationTypeName(DataRefImpl Rel, [all …]
|
D | 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 { in getRelocationHidden() argument
|
/external/llvm/lib/Object/ |
D | MachOObjectFile.cpp | 723 getRelocation(DataRefImpl Rel, in getRelocation() argument 728 getSection64(Sections[Rel.d.b], Sect); in getRelocation() 732 getSection(Sections[Rel.d.b], Sect); in getRelocation() 735 MachOObj->ReadRelocationEntry(relOffset, Rel.d.a, Res); in getRelocation() 737 error_code MachOObjectFile::getRelocationNext(DataRefImpl Rel, in getRelocationNext() argument 739 ++Rel.d.a; in getRelocationNext() 740 Res = RelocationRef(Rel, this); in getRelocationNext() 743 error_code MachOObjectFile::getRelocationAddress(DataRefImpl Rel, in getRelocationAddress() argument 748 getSection64(Sections[Rel.d.b], Sect); in getRelocationAddress() 752 getSection(Sections[Rel.d.b], Sect); in getRelocationAddress() [all …]
|
D | COFFObjectFile.cpp | 698 const coff_relocation *COFFObjectFile::toRel(DataRefImpl Rel) const { in toRel() 699 return reinterpret_cast<const coff_relocation*>(Rel.p); in toRel() 701 error_code COFFObjectFile::getRelocationNext(DataRefImpl Rel, in getRelocationNext() argument 703 Rel.p = reinterpret_cast<uintptr_t>( in getRelocationNext() 704 reinterpret_cast<const coff_relocation*>(Rel.p) + 1); in getRelocationNext() 705 Res = RelocationRef(Rel, this); in getRelocationNext() 708 error_code COFFObjectFile::getRelocationAddress(DataRefImpl Rel, in getRelocationAddress() argument 710 Res = toRel(Rel)->VirtualAddress; in getRelocationAddress() 713 error_code COFFObjectFile::getRelocationOffset(DataRefImpl Rel, in getRelocationOffset() argument 715 Res = toRel(Rel)->VirtualAddress; in getRelocationOffset() [all …]
|
/external/elfutils/libelf/ |
D | abstract.h | 158 START (32, Rel, Ext##Rel) \ 161 END (32, Ext##Rel) 163 START (64, Rel, Ext##Rel) \ 166 END (64, Ext##Rel)
|
D | gelf_xlate.h | 66 TYPE (Rel, LIBELFBITS)
|
D | elf_getdata.c | 111 [ELF_T_REL] = __alignof__ (ElfW2(Bits,Rel)), \
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2006-12-31 | 35100 Split all SVGPathSeg*.idl files into Abs and Rel pieces. 35105 * bindings/scripts/CodeGeneratorJS.pm: Special case Abs and Rel header includes
|
D | ChangeLog-2008-08-10 | 17393 SVGPathSeg*(Abs|Rel) classses should be combined to reduce code size
|