Home
last modified time | relevance | path

Searched refs:NumCodes (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DWin64EH.h137 uint8_t NumCodes; member
164 return reinterpret_cast<void *>(&UnwindCodes[(NumCodes+1) & ~1]); in getLanguageSpecificData()
169 return reinterpret_cast<const void *>(&UnwindCodes[(NumCodes + 1) & ~1]); in getLanguageSpecificData()
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp329 SW.printNumber("UnwindCodeCount", UI.NumCodes); in printUnwindInfo()
332 ArrayRef<UnwindCode> UC(&UI.UnwindCodes[0], UI.NumCodes); in printUnwindInfo()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/PECOFF/
H A DPECallFrameInfo.cpp87 m_unwind_info->NumCodes * sizeof(UnwindCode)); in GetNext()
103 ((m_unwind_info->NumCodes + 1) & ~1) * sizeof(UnwindCode); in GetNext()
/llvm-project-15.0.7/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp636 outs() << " Number of Codes: " << static_cast<int>(UI->NumCodes) << "\n"; in printWin64EHUnwindInfo()
651 if (UI->NumCodes) in printWin64EHUnwindInfo()
654 printAllUnwindCodes(makeArrayRef(&UI->UnwindCodes[0], UI->NumCodes)); in printWin64EHUnwindInfo()