Home
last modified time | relevance | path

Searched refs:UnwindInfo (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWin64EHDumper.h47 void printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC);
49 off_t Offset, const UnwindInfo &UI);
H A DWin64EHDumper.cpp44 static uint64_t getOffsetOfLSDA(const UnwindInfo& UI) { in getOffsetOfLSDA()
257 void Dumper::printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC) { in printUnwindCode()
315 off_t Offset, const UnwindInfo &UI) { in printUnwindInfo()
388 const auto UI = reinterpret_cast<const UnwindInfo*>(Contents.data() + Offset); in printRuntimeFunction()
H A Dllvm-readobj.cpp121 static bool UnwindInfo; variable
243 opts::UnwindInfo = Args.hasArg(OPT_unwind); in parseOptions()
438 if (opts::UnwindInfo) in dumpObject()
679 opts::UnwindInfo = true; in llvm_readobj_main()
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/
H A Dmacho_platform.cpp636 if (UnwindInfo && UseCallbackStyleUnwindInfo) { in registerObjectPlatformSections()
642 UnwindInfo->DwarfSection.Start.toPtr<void *>(), in registerObjectPlatformSections()
643 UnwindInfo->DwarfSection.End.toPtr<void *>(), in registerObjectPlatformSections()
644 UnwindInfo->CompactUnwindSection.Start.toPtr<void *>(), in registerObjectPlatformSections()
645 UnwindInfo->CompactUnwindSection.End.toPtr<void *>()); in registerObjectPlatformSections()
647 for (auto &CodeRange : UnwindInfo->CodeRanges) { in registerObjectPlatformSections()
720 if (UnwindInfo && UseCallbackStyleUnwindInfo) { in deregisterObjectPlatformSections()
726 UnwindInfo->DwarfSection.Start.toPtr<void *>(), in deregisterObjectPlatformSections()
727 UnwindInfo->DwarfSection.End.toPtr<void *>(), in deregisterObjectPlatformSections()
729 UnwindInfo->CompactUnwindSection.End.toPtr<void *>()); in deregisterObjectPlatformSections()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DWin64EH.h149 struct UnwindInfo { struct
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.h72 extern bool UnwindInfo;
H A DCOFFDump.cpp634 static void printWin64EHUnwindInfo(const Win64EH::UnwindInfo *UI) { in printWin64EHUnwindInfo()
690 printWin64EHUnwindInfo(reinterpret_cast<const Win64EH::UnwindInfo *>(addr)); in printRuntimeFunction()
740 auto *UI = reinterpret_cast<const Win64EH::UnwindInfo *>(XContents.data() + in printRuntimeFunctionRels()
H A Dllvm-objdump.cpp231 bool objdump::UnwindInfo; member in objdump
3165 if (UnwindInfo) in dumpObject()
3396 UnwindInfo = InputArgs.hasArg(OBJDUMP_unwind_info); in parseObjdumpOptions()
3575 !DynamicSymbolTable && !UnwindInfo && !FaultMapSection && !Offloading && in llvm_objdump_main()
H A DMachODump.cpp2139 if (Disassemble || IndirectSymbols || !FilterSections.empty() || UnwindInfo) in ProcessMachO()
2193 if (UnwindInfo) in ProcessMachO()
7913 const SectionRef &UnwindInfo) { in printMachOUnwindInfoSection() argument
7923 unwrapOrError(UnwindInfo.getContents(), Obj->getFileName()); in printMachOUnwindInfoSection()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp1337 UnwindInfo; in registerObjectPlatformSections() local
1339 UnwindInfo = std::make_tuple(std::move(UI->CodeRanges), UI->DwarfSection, in registerObjectPlatformSections()
1342 if (!MachOPlatformSecs.empty() || UnwindInfo) { in registerObjectPlatformSections()
1372 MP.RegisterObjectPlatformSections.Addr, HeaderAddr, UnwindInfo, in registerObjectPlatformSections()
1377 UnwindInfo, MachOPlatformSecs))}); in registerObjectPlatformSections()