Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/include/llvm/Support/
H A DWin64EH.h152 uint8_t NumCodes; member
179 return reinterpret_cast<void *>(&UnwindCodes[(NumCodes+1) & ~1]); in getLanguageSpecificData()
184 return reinterpret_cast<const void *>(&UnwindCodes[(NumCodes + 1) & ~1]); in getLanguageSpecificData()
/src/contrib/llvm-project/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()
/src/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp650 outs() << " Number of Codes: " << static_cast<int>(UI->NumCodes) << "\n"; in printWin64EHUnwindInfo()
665 if (UI->NumCodes) in printWin64EHUnwindInfo()
668 printAllUnwindCodes(ArrayRef(&UI->UnwindCodes[0], UI->NumCodes)); in printWin64EHUnwindInfo()