Lines Matching refs:Rel

490   DataRefImpl Rel = RelRef.getRawDataRefImpl();  in getRelocationValueString()  local
491 auto SecOrErr = EF.getSection(Rel.d.a); in getRelocationValueString()
521 const Elf_Rela *ERela = Obj->getRela(Rel); in getRelocationValueString()
565 const RelocationRef &Rel, in getRelocationValueString() argument
568 return getRelocationValueString(ELF32LE, Rel, Result); in getRelocationValueString()
570 return getRelocationValueString(ELF64LE, Rel, Result); in getRelocationValueString()
572 return getRelocationValueString(ELF32BE, Rel, Result); in getRelocationValueString()
574 return getRelocationValueString(ELF64BE, Rel, Result); in getRelocationValueString()
578 const RelocationRef &Rel, in getRelocationValueString() argument
580 symbol_iterator SymI = Rel.getSymbol(); in getRelocationValueString()
671 const wasm::WasmRelocation& Rel = Obj->getWasmRelocation(RelRef); in getRelocationValueString() local
678 Fmt << Rel.Index; in getRelocationValueString()
686 Fmt << (Rel.Addend < 0 ? "" : "+") << Rel.Addend; in getRelocationValueString()
695 DataRefImpl Rel = RelRef.getRawDataRefImpl(); in getRelocationValueString() local
696 MachO::any_relocation_info RE = Obj->getRelocation(Rel); in getRelocationValueString()
720 DataRefImpl RelNext = Rel; in getRelocationValueString()
769 DataRefImpl RelNext = Rel; in getRelocationValueString()
791 DataRefImpl RelNext = Rel; in getRelocationValueString()
831 DataRefImpl RelNext = Rel; in getRelocationValueString()
868 static std::error_code getRelocationValueString(const RelocationRef &Rel, in getRelocationValueString() argument
870 const ObjectFile *Obj = Rel.getObject(); in getRelocationValueString()
872 return getRelocationValueString(ELF, Rel, Result); in getRelocationValueString()
874 return getRelocationValueString(COFF, Rel, Result); in getRelocationValueString()
876 return getRelocationValueString(Wasm, Rel, Result); in getRelocationValueString()
878 return getRelocationValueString(MachO, Rel, Result); in getRelocationValueString()
891 DataRefImpl Rel = RelRef.getRawDataRefImpl(); in getHidden() local
892 uint64_t Type = MachO->getRelocationType(Rel); in getHidden()
902 if (Type == MachO::X86_64_RELOC_UNSIGNED && Rel.d.a > 0) { in getHidden()
903 DataRefImpl RelPrev = Rel; in getHidden()