Home
last modified time | relevance | path

Searched refs:cieLength (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/libunwind/src/
H A DDwarfParser.hpp40 pint_t cieLength; member
335 pint_t cieLength = (pint_t)addressSpace.get32(p); in parseCIE() local
337 pint_t cieContentEnd = p + cieLength; in parseCIE()
338 if (cieLength == 0xffffffff) { in parseCIE()
340 cieLength = (pint_t)addressSpace.get64(p); in parseCIE()
342 cieContentEnd = p + cieLength; in parseCIE()
344 if (cieLength == 0) in parseCIE()
411 cieInfo->cieLength = cieContentEnd - cieInfo->cieStart; in parseCIE()
436 {cieInfo.cieInstructions, cieInfo.cieStart + cieInfo.cieLength, in parseFDEInstructions()
H A Dlibunwind.cpp337 p += cieInfo.cieLength; in __unw_add_dynamic_eh_frame_section()