reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/Object/MachO.h
  470   bool isRelocationScattered(const MachO::any_relocation_info &RE) const;

References

lib/DebugInfo/DWARF/DWARFContext.cpp
 1350   return MachObj->isRelocationScattered(RelocInfo);
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h
  282     if (Obj.isRelocationScattered(RelInfo))
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
  133     if (Obj.isRelocationScattered(RelInfo)) {
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h
   44     if (Obj.isRelocationScattered(RelInfo)) {
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOX86_64.h
   47     assert(!Obj.isRelocationScattered(RelInfo) &&
lib/Object/MachOObjectFile.cpp
 2126   if (isRelocationScattered(RE))
 4208   if (isRelocationScattered(RE))
 4215   if (isRelocationScattered(RE))
 4222   if (isRelocationScattered(RE))
 4230   if (isRelocationScattered(RE))
 4238   if (isRelocationScattered(RE) || getPlainRelocationExternal(RE))
tools/dsymutil/DwarfLinker.cpp
  478     if (Obj.isRelocationScattered(MachOReloc)) {
tools/llvm-objcopy/MachO/MachOReader.cpp
  105       R.Scattered = MachOObj.isRelocationScattered(R.Info);
tools/llvm-objdump/MachODump.cpp
  436   if (O->isRelocationScattered(RE)) {
  891     const bool r_scattered = O->isRelocationScattered(RE);
 2644         r_scattered = info->O->isRelocationScattered(RE);
 2653             if (info->O->isRelocationScattered(RENext))
 2827     r_scattered = info->O->isRelocationScattered(RE);
 2848       if (info->O->isRelocationScattered(RENext))
 3345       if (info->O->isRelocationScattered(RE))
 6896         if (info->O->isRelocationScattered(RE))
tools/llvm-readobj/MachODumper.cpp
  550   bool IsScattered = Obj->isRelocationScattered(RE);