Lines Matching defs:UnwindLLDB
1 //===-- UnwindLLDB.cpp ----------------------------------------------------===//
9 #include "lldb/Target/UnwindLLDB.h"
26 UnwindLLDB::UnwindLLDB(Thread &thread)
41 uint32_t UnwindLLDB::DoGetFrameCount() {
71 bool UnwindLLDB::AddFirstFrame() {
114 UnwindLLDB::CursorSP UnwindLLDB::GetOneMoreFrame(ABI *abi) {
301 void UnwindLLDB::UpdateUnwindPlanForFirstFrameIfInvalid(ABI *abi) {
323 bool UnwindLLDB::AddOneMoreFrame(ABI *abi) {
397 bool UnwindLLDB::DoGetFrameInfoAtIndex(uint32_t idx, addr_t &cfa, addr_t &pc,
439 UnwindLLDB::DoCreateRegisterContextForFrame(StackFrame *frame) {
468 UnwindLLDB::RegisterContextLLDBSP
469 UnwindLLDB::GetRegisterContextForFrameNum(uint32_t frame_num) {
476 bool UnwindLLDB::SearchForSavedLocationForRegister(
478 lldb_private::UnwindLLDB::ConcreteRegisterLocation ®loc,
488 UnwindLLDB::RegisterSearchResult result;
491 return result == UnwindLLDB::RegisterSearchResult::eRegisterFound;
494 UnwindLLDB::RegisterSearchResult result;
500 if (result == UnwindLLDB::RegisterSearchResult::eRegisterFound &&
501 regloc.type == UnwindLLDB::ConcreteRegisterLocation::
512 if (result == UnwindLLDB::RegisterSearchResult::eRegisterFound &&
514 UnwindLLDB::ConcreteRegisterLocation::eRegisterInRegister &&
516 result = UnwindLLDB::RegisterSearchResult::eRegisterNotFound;
520 if (result == UnwindLLDB::RegisterSearchResult::eRegisterFound)
522 if (result == UnwindLLDB::RegisterSearchResult::eRegisterIsVolatile)