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;
2853 for (const RelocationRef &Reloc : info->S.relocations()) {
2854 uint64_t RelocOffset = Reloc.getOffset();
2856 Rel = Reloc.getRawDataRefImpl();
2876 symbol_iterator RelocSym = Reloc.getSymbol();
2925 for (const RelocationRef &Reloc : info->O->external_relocations()) {
2926 uint64_t RelocOffset = Reloc.getOffset();
2928 Rel = Reloc.getRawDataRefImpl();
2933 symbol_iterator RelocSym = Reloc.getSymbol();
2963 for (const RelocationRef &Reloc : info->S.relocations()) {
2964 uint64_t RelocOffset = Reloc.getOffset();
2966 Rel = Reloc.getRawDataRefImpl();
2971 symbol_iterator RelocSym = Reloc.getSymbol();
3030 auto Reloc =
3031 find_if(info->S.relocations(), [&](const RelocationRef &Reloc) {
3032 uint64_t RelocOffset = Reloc.getOffset();
3036 if (Reloc == info->S.relocations().end())
3039 Rel = Reloc->getRawDataRefImpl();
3050 symbol_iterator RelocSym = Reloc->getSymbol();
3161 auto Reloc =
3162 find_if(info->S.relocations(), [&](const RelocationRef &Reloc) {
3163 uint64_t RelocOffset = Reloc.getOffset();
3167 if (Reloc == info->S.relocations().end())
3170 DataRefImpl Rel = Reloc->getRawDataRefImpl();
3186 unwrapOrError(Reloc->getSymbol()->getName(), info->O->getFileName())
3555 for (const RelocationRef &Reloc : S.relocations()) {
3556 uint64_t RelocOffset = Reloc.getOffset();
3558 Rel = Reloc.getRawDataRefImpl();
3564 symbol_iterator RelocSym = Reloc.getSymbol();
6853 for (const RelocationRef &Reloc : info->S.relocations()) {
6854 uint64_t RelocOffset = Reloc.getOffset();
6856 Rel = Reloc.getRawDataRefImpl();
6862 symbol_iterator RelocSym = Reloc.getSymbol();
7817 const RelocationRef &Reloc, uint64_t Addr,
7819 if (Reloc.getSymbol() != Obj->symbol_end()) {
7820 Name = unwrapOrError(Reloc.getSymbol()->getName(), Obj->getFileName());
7825 auto RE = Obj->getRelocation(Reloc.getRawDataRefImpl());
7867 const RelocationRef &Reloc, uint64_t Addr) {
7871 if (!Reloc.getObject())
7874 findUnwindRelocNameAddend(Obj, Symbols, Reloc, Addr, Name, Addend);
7907 for (const RelocationRef &Reloc : CompactUnwind.relocations()) {
7908 uint64_t RelocAddress = Reloc.getOffset();
7915 Entry.FunctionReloc = Reloc;
7917 Entry.PersonalityReloc = Reloc;
7919 Entry.LSDAReloc = Reloc;