Lines Matching refs:frameInfo
463 unw_proc_info_t frameInfo; in unwind_phase1() local
464 if (unw_get_proc_info(&cursor1, &frameInfo) != UNW_ESUCCESS) { in unwind_phase1()
478 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase1()
486 (long long)frameInfo.start_ip, functionName, in unwind_phase1()
487 (long long)frameInfo.lsda, (long long)frameInfo.handler); in unwind_phase1()
492 if (frameInfo.handler != 0) { in unwind_phase1()
494 (__personality_routine)(long)(frameInfo.handler); in unwind_phase1()
500 exception_object->pr_cache.fnstart = frameInfo.start_ip; in unwind_phase1()
502 (_Unwind_EHT_Header *)frameInfo.unwind_info; in unwind_phase1()
503 exception_object->pr_cache.additional = frameInfo.flags; in unwind_phase1()
594 unw_proc_info_t frameInfo; in unwind_phase2() local
596 if (unw_get_proc_info(&cursor2, &frameInfo) != UNW_ESUCCESS) { in unwind_phase2()
610 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase2()
615 static_cast<void *>(exception_object), (long long)frameInfo.start_ip, in unwind_phase2()
616 functionName, (long long)sp, (long long)frameInfo.lsda, in unwind_phase2()
617 (long long)frameInfo.handler); in unwind_phase2()
621 if (frameInfo.handler != 0) { in unwind_phase2()
623 (__personality_routine)(long)(frameInfo.handler); in unwind_phase2()
626 exception_object->pr_cache.fnstart = frameInfo.start_ip; in unwind_phase2()
628 (_Unwind_EHT_Header *)frameInfo.unwind_info; in unwind_phase2()
629 exception_object->pr_cache.additional = frameInfo.flags; in unwind_phase2()
749 unw_proc_info_t frameInfo; in _Unwind_GetLanguageSpecificData() local
751 if (unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS) in _Unwind_GetLanguageSpecificData()
752 result = (uintptr_t)frameInfo.lsda; in _Unwind_GetLanguageSpecificData()
973 unw_proc_info_t frameInfo; in _Unwind_GetRegionStart() local
975 if (unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS) in _Unwind_GetRegionStart()
976 result = (uintptr_t)frameInfo.start_ip; in _Unwind_GetRegionStart()