Searched refs:frameInfo (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/libunwind/src/ |
H A D | UnwindLevel1.c | 114 unw_proc_info_t frameInfo; in unwind_phase1() local 116 if (__unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) { in unwind_phase1() 132 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase1() 139 (void *)exception_object, pc, frameInfo.start_ip, functionName, in unwind_phase1() 140 frameInfo.lsda, frameInfo.handler); in unwind_phase1() 146 if (frameInfo.handler != 0) { in unwind_phase1() 148 (_Unwind_Personality_Fn)(uintptr_t)(frameInfo.handler); in unwind_phase1() 229 unw_proc_info_t frameInfo; in unwind_phase2() local 231 if (__unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) { in unwind_phase2() 247 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase2() [all …]
|
H A D | Unwind-EHABI.cpp | 478 unw_proc_info_t frameInfo; in unwind_phase1() local 479 if (__unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) { in unwind_phase1() 495 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase1() 503 frameInfo.start_ip, functionName, in unwind_phase1() 504 frameInfo.lsda, frameInfo.handler); in unwind_phase1() 510 if (frameInfo.handler != 0) { in unwind_phase1() 512 (_Unwind_Personality_Fn)(long)(frameInfo.handler); in unwind_phase1() 518 exception_object->pr_cache.fnstart = frameInfo.start_ip; in unwind_phase1() 520 (_Unwind_EHT_Header *)frameInfo.unwind_info; in unwind_phase1() 521 exception_object->pr_cache.additional = frameInfo.flags; in unwind_phase1() [all …]
|
H A D | Unwind-seh.cpp | 248 unw_proc_info_t frameInfo; in unwind_phase2_forced() local 249 if (__unw_get_proc_info(&cursor2, &frameInfo) != UNW_ESUCCESS) { in unwind_phase2_forced() 264 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase2_forced() 269 (void *)exception_object, frameInfo.start_ip, functionName, in unwind_phase2_forced() 270 frameInfo.lsda, frameInfo.handler); in unwind_phase2_forced() 291 if (frameInfo.handler != 0) { in unwind_phase2_forced() 293 (_Unwind_Personality_Fn)(intptr_t)(frameInfo.handler); in unwind_phase2_forced()
|
H A D | UnwindLevel1-gcc-ext.c | 164 unw_proc_info_t frameInfo; in _Unwind_Backtrace() local 165 if (__unw_get_proc_info(&cursor, &frameInfo) != UNW_ESUCCESS) { in _Unwind_Backtrace() 170 uint32_t *unwindInfo = (uint32_t *)frameInfo.unwind_info; in _Unwind_Backtrace() 171 ex.pr_cache.fnstart = frameInfo.start_ip; in _Unwind_Backtrace() 173 ex.pr_cache.additional= frameInfo.flags; in _Unwind_Backtrace() 177 _Unwind_Personality_Fn handler = (_Unwind_Personality_Fn)frameInfo.handler; in _Unwind_Backtrace()
|
/freebsd/sys/contrib/zstd/programs/ |
H A D | fileio.c | 1261 prefs.frameInfo.blockMode = LZ4F_blockLinked; in FIO_compressLz4Frame() 1262 prefs.frameInfo.blockSizeID = LZ4F_max64KB; in FIO_compressLz4Frame() 1263 prefs.frameInfo.contentChecksumFlag = (contentChecksum_t)checksumFlag; in FIO_compressLz4Frame() 1265 prefs.frameInfo.contentSize = (srcFileSize==UTIL_FILESIZE_UNKNOWN) ? 0 : srcFileSize; in FIO_compressLz4Frame()
|