Home
last modified time | relevance | path

Searched refs:IsExtern (Results 1 – 6 of 6) sorted by relevance

/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldCOFFX86_64.h121 const bool IsExtern = SecI == Obj.section_end(); in processRelocationRef() local
163 if (IsExtern) { in processRelocationRef()
DRuntimeDyldMachOX86_64.h55 bool IsExtern = Obj.getPlainRelocationExternal(RelInfo); in processRelocationRef() local
56 if (!IsExtern && RE.IsPCRel) in processRelocationRef()
DRuntimeDyldMachOAArch64.h284 bool IsExtern = Obj.getPlainRelocationExternal(RelInfo); in processRelocationRef() local
285 if (!IsExtern && RE.IsPCRel) in processRelocationRef()
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCMachObjectWriter.cpp149 const unsigned IsExtern, const unsigned Type) { in makeRelocationInfo() argument
159 (IsExtern << 4) | // was << 27 in makeRelocationInfo()
/external/llvm/lib/Target/X86/MCTargetDesc/
DX86MachObjectWriter.cpp112 unsigned IsExtern = 0; in RecordX86_64Relocation() local
136 IsExtern = 1; in RecordX86_64Relocation()
356 (IsExtern << 27) | (Type << 28); in RecordX86_64Relocation()
/external/llvm/tools/llvm-readobj/
DMachODumper.cpp537 bool IsExtern = !IsScattered && Obj->getPlainRelocationExternal(RE); in printRelocation() local
540 if (IsExtern) { in printRelocation()
565 const char *Kind = IsExtern ? "Symbol" : "Section"; in printRelocation()