Lines Matching defs:Reloc
809 for (relocation_iterator Reloc = Begin; Reloc != End; ++Reloc) {
810 const DataRefImpl Rel = Reloc->getRawDataRefImpl();
1675 for (const RelocationRef &Reloc : Section.relocations()) {
1679 Rel = Reloc.getRawDataRefImpl();
1683 uint64_t RelocOffset = Reloc.getOffset();
1684 symbol_iterator RelocSym = Reloc.getSymbol();
1712 auto Reloc = find_if(Relocs, [&](const std::pair<uint64_t, SymbolRef> &P) {
1715 if (Reloc != Relocs.end()) {
1716 symbol_iterator RelocSym = Reloc->second;
1825 for (const RelocationRef &Reloc : Section.relocations()) {
1829 Rel = Reloc.getRawDataRefImpl();
1833 uint64_t RelocOffset = Reloc.getOffset();
1834 symbol_iterator RelocSym = Reloc.getSymbol();
1862 auto Reloc = find_if(Relocs, [&](const std::pair<uint64_t, SymbolRef> &P) {
1865 if (Reloc != Relocs.end()) {
1866 symbol_iterator RelocSym = Reloc->second;
2845 for (const RelocationRef &Reloc : info->S.relocations()) {
2846 uint64_t RelocOffset = Reloc.getOffset();
2848 Rel = Reloc.getRawDataRefImpl();
2868 symbol_iterator RelocSym = Reloc.getSymbol();
2917 for (const RelocationRef &Reloc : info->O->external_relocations()) {
2918 uint64_t RelocOffset = Reloc.getOffset();
2920 Rel = Reloc.getRawDataRefImpl();
2925 symbol_iterator RelocSym = Reloc.getSymbol();
2955 for (const RelocationRef &Reloc : info->S.relocations()) {
2956 uint64_t RelocOffset = Reloc.getOffset();
2958 Rel = Reloc.getRawDataRefImpl();
2963 symbol_iterator RelocSym = Reloc.getSymbol();
3022 auto Reloc =
3023 find_if(info->S.relocations(), [&](const RelocationRef &Reloc) {
3024 uint64_t RelocOffset = Reloc.getOffset();
3028 if (Reloc == info->S.relocations().end())
3031 Rel = Reloc->getRawDataRefImpl();
3042 symbol_iterator RelocSym = Reloc->getSymbol();
3153 auto Reloc =
3154 find_if(info->S.relocations(), [&](const RelocationRef &Reloc) {
3155 uint64_t RelocOffset = Reloc.getOffset();
3159 if (Reloc == info->S.relocations().end())
3162 DataRefImpl Rel = Reloc->getRawDataRefImpl();
3178 unwrapOrError(Reloc->getSymbol()->getName(), info->O->getFileName())
3547 for (const RelocationRef &Reloc : S.relocations()) {
3548 uint64_t RelocOffset = Reloc.getOffset();
3550 Rel = Reloc.getRawDataRefImpl();
3556 symbol_iterator RelocSym = Reloc.getSymbol();
6845 for (const RelocationRef &Reloc : info->S.relocations()) {
6846 uint64_t RelocOffset = Reloc.getOffset();
6848 Rel = Reloc.getRawDataRefImpl();
6854 symbol_iterator RelocSym = Reloc.getSymbol();
7805 const RelocationRef &Reloc, uint64_t Addr,
7807 if (Reloc.getSymbol() != Obj->symbol_end()) {
7808 Name = unwrapOrError(Reloc.getSymbol()->getName(), Obj->getFileName());
7813 auto RE = Obj->getRelocation(Reloc.getRawDataRefImpl());
7855 const RelocationRef &Reloc, uint64_t Addr) {
7859 if (!Reloc.getObject())
7862 findUnwindRelocNameAddend(Obj, Symbols, Reloc, Addr, Name, Addend);
7895 for (const RelocationRef &Reloc : CompactUnwind.relocations()) {
7896 uint64_t RelocAddress = Reloc.getOffset();
7903 Entry.FunctionReloc = Reloc;
7905 Entry.PersonalityReloc = Reloc;
7907 Entry.LSDAReloc = Reloc;