1ac7ddfbfSEd Maste //===-- ThreadPlanCallFunction.cpp ------------------------------*- C++ -*-===// 2ac7ddfbfSEd Maste // 3ac7ddfbfSEd Maste // The LLVM Compiler Infrastructure 4ac7ddfbfSEd Maste // 5ac7ddfbfSEd Maste // This file is distributed under the University of Illinois Open Source 6ac7ddfbfSEd Maste // License. See LICENSE.TXT for details. 7ac7ddfbfSEd Maste // 8ac7ddfbfSEd Maste //===----------------------------------------------------------------------===// 9ac7ddfbfSEd Maste 10ac7ddfbfSEd Maste #include "lldb/Target/ThreadPlanCallFunction.h" 11ac7ddfbfSEd Maste 12ac7ddfbfSEd Maste // C Includes 13ac7ddfbfSEd Maste // C++ Includes 14ac7ddfbfSEd Maste // Other libraries and framework includes 15ac7ddfbfSEd Maste #include "llvm/Support/MachO.h" 16ac7ddfbfSEd Maste // Project includes 17ac7ddfbfSEd Maste #include "lldb/lldb-private-log.h" 18ac7ddfbfSEd Maste #include "lldb/Breakpoint/Breakpoint.h" 19ac7ddfbfSEd Maste #include "lldb/Breakpoint/BreakpointLocation.h" 20ac7ddfbfSEd Maste #include "lldb/Core/Address.h" 21ac7ddfbfSEd Maste #include "lldb/Core/Log.h" 22ac7ddfbfSEd Maste #include "lldb/Core/Module.h" 23ac7ddfbfSEd Maste #include "lldb/Core/Stream.h" 24ac7ddfbfSEd Maste #include "lldb/Symbol/ObjectFile.h" 25ac7ddfbfSEd Maste #include "lldb/Target/LanguageRuntime.h" 26ac7ddfbfSEd Maste #include "lldb/Target/Process.h" 27ac7ddfbfSEd Maste #include "lldb/Target/RegisterContext.h" 28ac7ddfbfSEd Maste #include "lldb/Target/StopInfo.h" 29ac7ddfbfSEd Maste #include "lldb/Target/Target.h" 30ac7ddfbfSEd Maste #include "lldb/Target/Thread.h" 31ac7ddfbfSEd Maste #include "lldb/Target/ThreadPlanRunToAddress.h" 32ac7ddfbfSEd Maste 33ac7ddfbfSEd Maste using namespace lldb; 34ac7ddfbfSEd Maste using namespace lldb_private; 35ac7ddfbfSEd Maste 36ac7ddfbfSEd Maste //---------------------------------------------------------------------- 37ac7ddfbfSEd Maste // ThreadPlanCallFunction: Plan to call a single function 38ac7ddfbfSEd Maste //---------------------------------------------------------------------- 39ac7ddfbfSEd Maste bool 40ac7ddfbfSEd Maste ThreadPlanCallFunction::ConstructorSetup (Thread &thread, 41ac7ddfbfSEd Maste ABI *& abi, 42ac7ddfbfSEd Maste lldb::addr_t &start_load_addr, 43ac7ddfbfSEd Maste lldb::addr_t &function_load_addr) 44ac7ddfbfSEd Maste { 45ac7ddfbfSEd Maste SetIsMasterPlan (true); 46ac7ddfbfSEd Maste SetOkayToDiscard (false); 47ac7ddfbfSEd Maste SetPrivate (true); 48ac7ddfbfSEd Maste 49ac7ddfbfSEd Maste ProcessSP process_sp (thread.GetProcess()); 50ac7ddfbfSEd Maste if (!process_sp) 51ac7ddfbfSEd Maste return false; 52ac7ddfbfSEd Maste 53ac7ddfbfSEd Maste abi = process_sp->GetABI().get(); 54ac7ddfbfSEd Maste 55ac7ddfbfSEd Maste if (!abi) 56ac7ddfbfSEd Maste return false; 57ac7ddfbfSEd Maste 58ac7ddfbfSEd Maste TargetSP target_sp (thread.CalculateTarget()); 59ac7ddfbfSEd Maste 60ac7ddfbfSEd Maste Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_STEP)); 61ac7ddfbfSEd Maste 62ac7ddfbfSEd Maste SetBreakpoints(); 63ac7ddfbfSEd Maste 64ac7ddfbfSEd Maste m_function_sp = thread.GetRegisterContext()->GetSP() - abi->GetRedZoneSize(); 65ac7ddfbfSEd Maste // If we can't read memory at the point of the process where we are planning to put our function, we're 66ac7ddfbfSEd Maste // not going to get any further... 67ac7ddfbfSEd Maste Error error; 68ac7ddfbfSEd Maste process_sp->ReadUnsignedIntegerFromMemory(m_function_sp, 4, 0, error); 69ac7ddfbfSEd Maste if (!error.Success()) 70ac7ddfbfSEd Maste { 71ac7ddfbfSEd Maste m_constructor_errors.Printf ("Trying to put the stack in unreadable memory at: 0x%" PRIx64 ".", m_function_sp); 72ac7ddfbfSEd Maste if (log) 73ac7ddfbfSEd Maste log->Printf ("ThreadPlanCallFunction(%p): %s.", this, m_constructor_errors.GetData()); 74ac7ddfbfSEd Maste return false; 75ac7ddfbfSEd Maste } 76ac7ddfbfSEd Maste 77ac7ddfbfSEd Maste Module *exe_module = target_sp->GetExecutableModulePointer(); 78ac7ddfbfSEd Maste 79ac7ddfbfSEd Maste if (exe_module == NULL) 80ac7ddfbfSEd Maste { 81ac7ddfbfSEd Maste m_constructor_errors.Printf ("Can't execute code without an executable module."); 82ac7ddfbfSEd Maste if (log) 83ac7ddfbfSEd Maste log->Printf ("ThreadPlanCallFunction(%p): %s.", this, m_constructor_errors.GetData()); 84ac7ddfbfSEd Maste return false; 85ac7ddfbfSEd Maste } 86ac7ddfbfSEd Maste else 87ac7ddfbfSEd Maste { 88ac7ddfbfSEd Maste ObjectFile *objectFile = exe_module->GetObjectFile(); 89ac7ddfbfSEd Maste if (!objectFile) 90ac7ddfbfSEd Maste { 91ac7ddfbfSEd Maste m_constructor_errors.Printf ("Could not find object file for module \"%s\".", 92ac7ddfbfSEd Maste exe_module->GetFileSpec().GetFilename().AsCString()); 93ac7ddfbfSEd Maste 94ac7ddfbfSEd Maste if (log) 95ac7ddfbfSEd Maste log->Printf ("ThreadPlanCallFunction(%p): %s.", this, m_constructor_errors.GetData()); 96ac7ddfbfSEd Maste return false; 97ac7ddfbfSEd Maste } 98ac7ddfbfSEd Maste 99ac7ddfbfSEd Maste m_start_addr = objectFile->GetEntryPointAddress(); 100ac7ddfbfSEd Maste if (!m_start_addr.IsValid()) 101ac7ddfbfSEd Maste { 102ac7ddfbfSEd Maste m_constructor_errors.Printf ("Could not find entry point address for executable module \"%s\".", 103ac7ddfbfSEd Maste exe_module->GetFileSpec().GetFilename().AsCString()); 104ac7ddfbfSEd Maste if (log) 105ac7ddfbfSEd Maste log->Printf ("ThreadPlanCallFunction(%p): %s.", this, m_constructor_errors.GetData()); 106ac7ddfbfSEd Maste return false; 107ac7ddfbfSEd Maste } 108ac7ddfbfSEd Maste } 109ac7ddfbfSEd Maste 110ac7ddfbfSEd Maste start_load_addr = m_start_addr.GetLoadAddress (target_sp.get()); 111ac7ddfbfSEd Maste 112ac7ddfbfSEd Maste // Checkpoint the thread state so we can restore it later. 113ac7ddfbfSEd Maste if (log && log->GetVerbose()) 114ac7ddfbfSEd Maste ReportRegisterState ("About to checkpoint thread before function call. Original register state was:"); 115ac7ddfbfSEd Maste 116ac7ddfbfSEd Maste if (!thread.CheckpointThreadState (m_stored_thread_state)) 117ac7ddfbfSEd Maste { 118ac7ddfbfSEd Maste m_constructor_errors.Printf ("Setting up ThreadPlanCallFunction, failed to checkpoint thread state."); 119ac7ddfbfSEd Maste if (log) 120ac7ddfbfSEd Maste log->Printf ("ThreadPlanCallFunction(%p): %s.", this, m_constructor_errors.GetData()); 121ac7ddfbfSEd Maste return false; 122ac7ddfbfSEd Maste } 123ac7ddfbfSEd Maste function_load_addr = m_function_addr.GetLoadAddress (target_sp.get()); 124ac7ddfbfSEd Maste 125ac7ddfbfSEd Maste return true; 126ac7ddfbfSEd Maste } 127ac7ddfbfSEd Maste 128ac7ddfbfSEd Maste ThreadPlanCallFunction::ThreadPlanCallFunction (Thread &thread, 129ac7ddfbfSEd Maste const Address &function, 130ac7ddfbfSEd Maste const ClangASTType &return_type, 131ac7ddfbfSEd Maste addr_t arg, 132ac7ddfbfSEd Maste bool stop_other_threads, 133ac7ddfbfSEd Maste bool unwind_on_error, 134ac7ddfbfSEd Maste bool ignore_breakpoints, 135ac7ddfbfSEd Maste addr_t *this_arg, 136ac7ddfbfSEd Maste addr_t *cmd_arg) : 137ac7ddfbfSEd Maste ThreadPlan (ThreadPlan::eKindCallFunction, "Call function plan", thread, eVoteNoOpinion, eVoteNoOpinion), 138ac7ddfbfSEd Maste m_valid (false), 139ac7ddfbfSEd Maste m_stop_other_threads (stop_other_threads), 140ac7ddfbfSEd Maste m_function_addr (function), 141ac7ddfbfSEd Maste m_function_sp (0), 142ac7ddfbfSEd Maste m_return_type (return_type), 143ac7ddfbfSEd Maste m_takedown_done (false), 144ac7ddfbfSEd Maste m_stop_address (LLDB_INVALID_ADDRESS), 145ac7ddfbfSEd Maste m_unwind_on_error (unwind_on_error), 146ac7ddfbfSEd Maste m_ignore_breakpoints (ignore_breakpoints) 147ac7ddfbfSEd Maste { 148ac7ddfbfSEd Maste lldb::addr_t start_load_addr; 149ac7ddfbfSEd Maste ABI *abi; 150ac7ddfbfSEd Maste lldb::addr_t function_load_addr; 151ac7ddfbfSEd Maste if (!ConstructorSetup (thread, abi, start_load_addr, function_load_addr)) 152ac7ddfbfSEd Maste return; 153ac7ddfbfSEd Maste 154ac7ddfbfSEd Maste if (this_arg && cmd_arg) 155ac7ddfbfSEd Maste { 156ac7ddfbfSEd Maste if (!abi->PrepareTrivialCall (thread, 157ac7ddfbfSEd Maste m_function_sp, 158ac7ddfbfSEd Maste function_load_addr, 159ac7ddfbfSEd Maste start_load_addr, 160ac7ddfbfSEd Maste this_arg, 161ac7ddfbfSEd Maste cmd_arg, 162ac7ddfbfSEd Maste &arg)) 163ac7ddfbfSEd Maste return; 164ac7ddfbfSEd Maste } 165ac7ddfbfSEd Maste else if (this_arg) 166ac7ddfbfSEd Maste { 167ac7ddfbfSEd Maste if (!abi->PrepareTrivialCall (thread, 168ac7ddfbfSEd Maste m_function_sp, 169ac7ddfbfSEd Maste function_load_addr, 170ac7ddfbfSEd Maste start_load_addr, 171ac7ddfbfSEd Maste this_arg, 172ac7ddfbfSEd Maste &arg)) 173ac7ddfbfSEd Maste return; 174ac7ddfbfSEd Maste } 175ac7ddfbfSEd Maste else 176ac7ddfbfSEd Maste { 177ac7ddfbfSEd Maste if (!abi->PrepareTrivialCall (thread, 178ac7ddfbfSEd Maste m_function_sp, 179ac7ddfbfSEd Maste function_load_addr, 180ac7ddfbfSEd Maste start_load_addr, 181ac7ddfbfSEd Maste &arg)) 182ac7ddfbfSEd Maste return; 183ac7ddfbfSEd Maste } 184ac7ddfbfSEd Maste 185ac7ddfbfSEd Maste ReportRegisterState ("Function call was set up. Register state was:"); 186ac7ddfbfSEd Maste 187ac7ddfbfSEd Maste m_valid = true; 188ac7ddfbfSEd Maste } 189ac7ddfbfSEd Maste 190ac7ddfbfSEd Maste 191ac7ddfbfSEd Maste ThreadPlanCallFunction::ThreadPlanCallFunction (Thread &thread, 192ac7ddfbfSEd Maste const Address &function, 193ac7ddfbfSEd Maste const ClangASTType &return_type, 194ac7ddfbfSEd Maste bool stop_other_threads, 195ac7ddfbfSEd Maste bool unwind_on_error, 196ac7ddfbfSEd Maste bool ignore_breakpoints, 197ac7ddfbfSEd Maste addr_t *arg1_ptr, 198ac7ddfbfSEd Maste addr_t *arg2_ptr, 199ac7ddfbfSEd Maste addr_t *arg3_ptr, 200ac7ddfbfSEd Maste addr_t *arg4_ptr, 201ac7ddfbfSEd Maste addr_t *arg5_ptr, 202ac7ddfbfSEd Maste addr_t *arg6_ptr) : 203ac7ddfbfSEd Maste ThreadPlan (ThreadPlan::eKindCallFunction, "Call function plan", thread, eVoteNoOpinion, eVoteNoOpinion), 204ac7ddfbfSEd Maste m_valid (false), 205ac7ddfbfSEd Maste m_stop_other_threads (stop_other_threads), 206ac7ddfbfSEd Maste m_function_addr (function), 207ac7ddfbfSEd Maste m_function_sp (0), 208ac7ddfbfSEd Maste m_return_type (return_type), 209ac7ddfbfSEd Maste m_takedown_done (false), 210ac7ddfbfSEd Maste m_stop_address (LLDB_INVALID_ADDRESS), 211ac7ddfbfSEd Maste m_unwind_on_error (unwind_on_error), 212ac7ddfbfSEd Maste m_ignore_breakpoints (ignore_breakpoints) 213ac7ddfbfSEd Maste { 214ac7ddfbfSEd Maste lldb::addr_t start_load_addr; 215ac7ddfbfSEd Maste ABI *abi; 216ac7ddfbfSEd Maste lldb::addr_t function_load_addr; 217ac7ddfbfSEd Maste if (!ConstructorSetup (thread, abi, start_load_addr, function_load_addr)) 218ac7ddfbfSEd Maste return; 219ac7ddfbfSEd Maste 220ac7ddfbfSEd Maste if (!abi->PrepareTrivialCall (thread, 221ac7ddfbfSEd Maste m_function_sp, 222ac7ddfbfSEd Maste function_load_addr, 223ac7ddfbfSEd Maste start_load_addr, 224ac7ddfbfSEd Maste arg1_ptr, 225ac7ddfbfSEd Maste arg2_ptr, 226ac7ddfbfSEd Maste arg3_ptr, 227ac7ddfbfSEd Maste arg4_ptr, 228ac7ddfbfSEd Maste arg5_ptr, 229ac7ddfbfSEd Maste arg6_ptr)) 230ac7ddfbfSEd Maste { 231ac7ddfbfSEd Maste return; 232ac7ddfbfSEd Maste } 233ac7ddfbfSEd Maste 234ac7ddfbfSEd Maste ReportRegisterState ("Function call was set up. Register state was:"); 235ac7ddfbfSEd Maste 236ac7ddfbfSEd Maste m_valid = true; 237ac7ddfbfSEd Maste } 238ac7ddfbfSEd Maste 239ac7ddfbfSEd Maste ThreadPlanCallFunction::~ThreadPlanCallFunction () 240ac7ddfbfSEd Maste { 241ac7ddfbfSEd Maste DoTakedown(PlanSucceeded()); 242ac7ddfbfSEd Maste } 243ac7ddfbfSEd Maste 244ac7ddfbfSEd Maste void 245ac7ddfbfSEd Maste ThreadPlanCallFunction::ReportRegisterState (const char *message) 246ac7ddfbfSEd Maste { 247ac7ddfbfSEd Maste Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP | LIBLLDB_LOG_VERBOSE)); 248ac7ddfbfSEd Maste if (log) 249ac7ddfbfSEd Maste { 250ac7ddfbfSEd Maste StreamString strm; 251ac7ddfbfSEd Maste RegisterContext *reg_ctx = m_thread.GetRegisterContext().get(); 252ac7ddfbfSEd Maste 253ac7ddfbfSEd Maste log->PutCString(message); 254ac7ddfbfSEd Maste 255ac7ddfbfSEd Maste RegisterValue reg_value; 256ac7ddfbfSEd Maste 257ac7ddfbfSEd Maste for (uint32_t reg_idx = 0, num_registers = reg_ctx->GetRegisterCount(); 258ac7ddfbfSEd Maste reg_idx < num_registers; 259ac7ddfbfSEd Maste ++reg_idx) 260ac7ddfbfSEd Maste { 261ac7ddfbfSEd Maste const RegisterInfo *reg_info = reg_ctx->GetRegisterInfoAtIndex (reg_idx); 262ac7ddfbfSEd Maste if (reg_ctx->ReadRegister(reg_info, reg_value)) 263ac7ddfbfSEd Maste { 264ac7ddfbfSEd Maste reg_value.Dump(&strm, reg_info, true, false, eFormatDefault); 265ac7ddfbfSEd Maste strm.EOL(); 266ac7ddfbfSEd Maste } 267ac7ddfbfSEd Maste } 268ac7ddfbfSEd Maste log->PutCString(strm.GetData()); 269ac7ddfbfSEd Maste } 270ac7ddfbfSEd Maste } 271ac7ddfbfSEd Maste 272ac7ddfbfSEd Maste void 273ac7ddfbfSEd Maste ThreadPlanCallFunction::DoTakedown (bool success) 274ac7ddfbfSEd Maste { 275ac7ddfbfSEd Maste Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_STEP)); 276ac7ddfbfSEd Maste 277ac7ddfbfSEd Maste if (!m_valid) 278ac7ddfbfSEd Maste { 279ac7ddfbfSEd Maste //Don't call DoTakedown if we were never valid to begin with. 280ac7ddfbfSEd Maste if (log) 281ac7ddfbfSEd Maste log->Printf ("ThreadPlanCallFunction(%p): Log called on ThreadPlanCallFunction that was never valid.", this); 282ac7ddfbfSEd Maste return; 283ac7ddfbfSEd Maste } 284ac7ddfbfSEd Maste 285ac7ddfbfSEd Maste if (!m_takedown_done) 286ac7ddfbfSEd Maste { 287ac7ddfbfSEd Maste if (success) 288ac7ddfbfSEd Maste { 289ac7ddfbfSEd Maste ProcessSP process_sp (m_thread.GetProcess()); 290ac7ddfbfSEd Maste const ABI *abi = process_sp ? process_sp->GetABI().get() : NULL; 291ac7ddfbfSEd Maste if (abi && m_return_type.IsValid()) 292ac7ddfbfSEd Maste { 293ac7ddfbfSEd Maste const bool persistent = false; 294ac7ddfbfSEd Maste m_return_valobj_sp = abi->GetReturnValueObject (m_thread, m_return_type, persistent); 295ac7ddfbfSEd Maste } 296ac7ddfbfSEd Maste } 297ac7ddfbfSEd Maste if (log) 298ac7ddfbfSEd Maste log->Printf ("ThreadPlanCallFunction(%p): DoTakedown called for thread 0x%4.4" PRIx64 ", m_valid: %d complete: %d.\n", this, m_thread.GetID(), m_valid, IsPlanComplete()); 299ac7ddfbfSEd Maste m_takedown_done = true; 300ac7ddfbfSEd Maste m_stop_address = m_thread.GetStackFrameAtIndex(0)->GetRegisterContext()->GetPC(); 301ac7ddfbfSEd Maste m_real_stop_info_sp = GetPrivateStopInfo (); 302ac7ddfbfSEd Maste m_thread.RestoreRegisterStateFromCheckpoint(m_stored_thread_state); 303ac7ddfbfSEd Maste SetPlanComplete(success); 304ac7ddfbfSEd Maste ClearBreakpoints(); 305ac7ddfbfSEd Maste if (log && log->GetVerbose()) 306ac7ddfbfSEd Maste ReportRegisterState ("Restoring thread state after function call. Restored register state:"); 307ac7ddfbfSEd Maste 308ac7ddfbfSEd Maste } 309ac7ddfbfSEd Maste else 310ac7ddfbfSEd Maste { 311ac7ddfbfSEd Maste if (log) 312ac7ddfbfSEd Maste log->Printf ("ThreadPlanCallFunction(%p): DoTakedown called as no-op for thread 0x%4.4" PRIx64 ", m_valid: %d complete: %d.\n", this, m_thread.GetID(), m_valid, IsPlanComplete()); 313ac7ddfbfSEd Maste } 314ac7ddfbfSEd Maste } 315ac7ddfbfSEd Maste 316ac7ddfbfSEd Maste void 317ac7ddfbfSEd Maste ThreadPlanCallFunction::WillPop () 318ac7ddfbfSEd Maste { 319ac7ddfbfSEd Maste DoTakedown(PlanSucceeded()); 320ac7ddfbfSEd Maste } 321ac7ddfbfSEd Maste 322ac7ddfbfSEd Maste void 323ac7ddfbfSEd Maste ThreadPlanCallFunction::GetDescription (Stream *s, DescriptionLevel level) 324ac7ddfbfSEd Maste { 325ac7ddfbfSEd Maste if (level == eDescriptionLevelBrief) 326ac7ddfbfSEd Maste { 327ac7ddfbfSEd Maste s->Printf("Function call thread plan"); 328ac7ddfbfSEd Maste } 329ac7ddfbfSEd Maste else 330ac7ddfbfSEd Maste { 331ac7ddfbfSEd Maste TargetSP target_sp (m_thread.CalculateTarget()); 332ac7ddfbfSEd Maste s->Printf("Thread plan to call 0x%" PRIx64, m_function_addr.GetLoadAddress(target_sp.get())); 333ac7ddfbfSEd Maste } 334ac7ddfbfSEd Maste } 335ac7ddfbfSEd Maste 336ac7ddfbfSEd Maste bool 337ac7ddfbfSEd Maste ThreadPlanCallFunction::ValidatePlan (Stream *error) 338ac7ddfbfSEd Maste { 339ac7ddfbfSEd Maste if (!m_valid) 340ac7ddfbfSEd Maste { 341ac7ddfbfSEd Maste if (error) 342ac7ddfbfSEd Maste { 343ac7ddfbfSEd Maste if (m_constructor_errors.GetSize() > 0) 344ac7ddfbfSEd Maste error->PutCString (m_constructor_errors.GetData()); 345ac7ddfbfSEd Maste else 346ac7ddfbfSEd Maste error->PutCString ("Unknown error"); 347ac7ddfbfSEd Maste } 348ac7ddfbfSEd Maste return false; 349ac7ddfbfSEd Maste } 350ac7ddfbfSEd Maste 351ac7ddfbfSEd Maste return true; 352ac7ddfbfSEd Maste } 353ac7ddfbfSEd Maste 354ac7ddfbfSEd Maste 355ac7ddfbfSEd Maste Vote 356ac7ddfbfSEd Maste ThreadPlanCallFunction::ShouldReportStop(Event *event_ptr) 357ac7ddfbfSEd Maste { 358ac7ddfbfSEd Maste if (m_takedown_done || IsPlanComplete()) 359ac7ddfbfSEd Maste return eVoteYes; 360ac7ddfbfSEd Maste else 361ac7ddfbfSEd Maste return ThreadPlan::ShouldReportStop(event_ptr); 362ac7ddfbfSEd Maste } 363ac7ddfbfSEd Maste 364ac7ddfbfSEd Maste bool 365ac7ddfbfSEd Maste ThreadPlanCallFunction::DoPlanExplainsStop (Event *event_ptr) 366ac7ddfbfSEd Maste { 367ac7ddfbfSEd Maste Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_STEP|LIBLLDB_LOG_PROCESS)); 368ac7ddfbfSEd Maste m_real_stop_info_sp = GetPrivateStopInfo (); 369ac7ddfbfSEd Maste 370ac7ddfbfSEd Maste // If our subplan knows why we stopped, even if it's done (which would forward the question to us) 371ac7ddfbfSEd Maste // we answer yes. 372ac7ddfbfSEd Maste if (m_subplan_sp.get() != NULL && m_subplan_sp->PlanExplainsStop(event_ptr)) 373ac7ddfbfSEd Maste { 374ac7ddfbfSEd Maste SetPlanComplete(); 375ac7ddfbfSEd Maste return true; 376ac7ddfbfSEd Maste } 377ac7ddfbfSEd Maste 378ac7ddfbfSEd Maste // Check if the breakpoint is one of ours. 379ac7ddfbfSEd Maste 380ac7ddfbfSEd Maste StopReason stop_reason; 381ac7ddfbfSEd Maste if (!m_real_stop_info_sp) 382ac7ddfbfSEd Maste stop_reason = eStopReasonNone; 383ac7ddfbfSEd Maste else 384ac7ddfbfSEd Maste stop_reason = m_real_stop_info_sp->GetStopReason(); 385ac7ddfbfSEd Maste if (log) 386ac7ddfbfSEd Maste log->Printf ("ThreadPlanCallFunction::PlanExplainsStop: Got stop reason - %s.", Thread::StopReasonAsCString(stop_reason)); 387ac7ddfbfSEd Maste 388ac7ddfbfSEd Maste if (stop_reason == eStopReasonBreakpoint && BreakpointsExplainStop()) 389ac7ddfbfSEd Maste return true; 390ac7ddfbfSEd Maste 391ac7ddfbfSEd Maste // We control breakpoints separately from other "stop reasons." So first, 392ac7ddfbfSEd Maste // check the case where we stopped for an internal breakpoint, in that case, continue on. 393ac7ddfbfSEd Maste // If it is not an internal breakpoint, consult m_ignore_breakpoints. 394ac7ddfbfSEd Maste 395ac7ddfbfSEd Maste 396ac7ddfbfSEd Maste if (stop_reason == eStopReasonBreakpoint) 397ac7ddfbfSEd Maste { 398ac7ddfbfSEd Maste ProcessSP process_sp (m_thread.CalculateProcess()); 399ac7ddfbfSEd Maste uint64_t break_site_id = m_real_stop_info_sp->GetValue(); 400ac7ddfbfSEd Maste BreakpointSiteSP bp_site_sp; 401ac7ddfbfSEd Maste if (process_sp) 402ac7ddfbfSEd Maste bp_site_sp = process_sp->GetBreakpointSiteList().FindByID(break_site_id); 403ac7ddfbfSEd Maste if (bp_site_sp) 404ac7ddfbfSEd Maste { 405ac7ddfbfSEd Maste uint32_t num_owners = bp_site_sp->GetNumberOfOwners(); 406ac7ddfbfSEd Maste bool is_internal = true; 407ac7ddfbfSEd Maste for (uint32_t i = 0; i < num_owners; i++) 408ac7ddfbfSEd Maste { 409ac7ddfbfSEd Maste Breakpoint &bp = bp_site_sp->GetOwnerAtIndex(i)->GetBreakpoint(); 410ac7ddfbfSEd Maste if (log) 411ac7ddfbfSEd Maste log->Printf ("ThreadPlanCallFunction::PlanExplainsStop: hit breakpoint %d while calling function", bp.GetID()); 412ac7ddfbfSEd Maste 413ac7ddfbfSEd Maste if (!bp.IsInternal()) 414ac7ddfbfSEd Maste { 415ac7ddfbfSEd Maste is_internal = false; 416ac7ddfbfSEd Maste break; 417ac7ddfbfSEd Maste } 418ac7ddfbfSEd Maste } 419ac7ddfbfSEd Maste if (is_internal) 420ac7ddfbfSEd Maste { 421ac7ddfbfSEd Maste if (log) 422ac7ddfbfSEd Maste log->Printf ("ThreadPlanCallFunction::PlanExplainsStop hit an internal breakpoint, not stopping."); 423ac7ddfbfSEd Maste return false; 424ac7ddfbfSEd Maste } 425ac7ddfbfSEd Maste } 426ac7ddfbfSEd Maste 427ac7ddfbfSEd Maste if (m_ignore_breakpoints) 428ac7ddfbfSEd Maste { 429ac7ddfbfSEd Maste if (log) 430ac7ddfbfSEd Maste log->Printf("ThreadPlanCallFunction::PlanExplainsStop: we are ignoring breakpoints, overriding breakpoint stop info ShouldStop, returning true"); 431ac7ddfbfSEd Maste m_real_stop_info_sp->OverrideShouldStop(false); 432ac7ddfbfSEd Maste return true; 433ac7ddfbfSEd Maste } 434ac7ddfbfSEd Maste else 435ac7ddfbfSEd Maste { 436ac7ddfbfSEd Maste if (log) 437ac7ddfbfSEd Maste log->Printf("ThreadPlanCallFunction::PlanExplainsStop: we are not ignoring breakpoints, overriding breakpoint stop info ShouldStop, returning true"); 438ac7ddfbfSEd Maste m_real_stop_info_sp->OverrideShouldStop(true); 439ac7ddfbfSEd Maste return false; 440ac7ddfbfSEd Maste } 441ac7ddfbfSEd Maste } 442ac7ddfbfSEd Maste else if (!m_unwind_on_error) 443ac7ddfbfSEd Maste { 444ac7ddfbfSEd Maste // If we don't want to discard this plan, than any stop we don't understand should be propagated up the stack. 445ac7ddfbfSEd Maste return false; 446ac7ddfbfSEd Maste } 447ac7ddfbfSEd Maste else 448ac7ddfbfSEd Maste { 449ac7ddfbfSEd Maste // If the subplan is running, any crashes are attributable to us. 450ac7ddfbfSEd Maste // If we want to discard the plan, then we say we explain the stop 451ac7ddfbfSEd Maste // but if we are going to be discarded, let whoever is above us 452ac7ddfbfSEd Maste // explain the stop. 453ac7ddfbfSEd Maste // But don't discard the plan if the stop would restart itself (for instance if it is a 454ac7ddfbfSEd Maste // signal that is set not to stop. Check that here first. We just say we explain the stop 455ac7ddfbfSEd Maste // but aren't done and everything will continue on from there. 456ac7ddfbfSEd Maste 457ac7ddfbfSEd Maste if (m_real_stop_info_sp->ShouldStopSynchronous(event_ptr)) 458ac7ddfbfSEd Maste { 459ac7ddfbfSEd Maste SetPlanComplete(false); 460ac7ddfbfSEd Maste if (m_subplan_sp) 461ac7ddfbfSEd Maste { 462ac7ddfbfSEd Maste if (m_unwind_on_error) 463ac7ddfbfSEd Maste return true; 464ac7ddfbfSEd Maste else 465ac7ddfbfSEd Maste return false; 466ac7ddfbfSEd Maste } 467ac7ddfbfSEd Maste else 468ac7ddfbfSEd Maste return false; 469ac7ddfbfSEd Maste } 470ac7ddfbfSEd Maste else 471ac7ddfbfSEd Maste return true; 472ac7ddfbfSEd Maste } 473ac7ddfbfSEd Maste } 474ac7ddfbfSEd Maste 475ac7ddfbfSEd Maste bool 476ac7ddfbfSEd Maste ThreadPlanCallFunction::ShouldStop (Event *event_ptr) 477ac7ddfbfSEd Maste { 478ac7ddfbfSEd Maste // We do some computation in DoPlanExplainsStop that may or may not set the plan as complete. 479ac7ddfbfSEd Maste // We need to do that here to make sure our state is correct. 480ac7ddfbfSEd Maste DoPlanExplainsStop(event_ptr); 481ac7ddfbfSEd Maste 482ac7ddfbfSEd Maste if (IsPlanComplete()) 483ac7ddfbfSEd Maste { 484ac7ddfbfSEd Maste ReportRegisterState ("Function completed. Register state was:"); 485ac7ddfbfSEd Maste return true; 486ac7ddfbfSEd Maste } 487ac7ddfbfSEd Maste else 488ac7ddfbfSEd Maste { 489ac7ddfbfSEd Maste return false; 490ac7ddfbfSEd Maste } 491ac7ddfbfSEd Maste } 492ac7ddfbfSEd Maste 493ac7ddfbfSEd Maste bool 494ac7ddfbfSEd Maste ThreadPlanCallFunction::StopOthers () 495ac7ddfbfSEd Maste { 496ac7ddfbfSEd Maste return m_stop_other_threads; 497ac7ddfbfSEd Maste } 498ac7ddfbfSEd Maste 499ac7ddfbfSEd Maste void 500ac7ddfbfSEd Maste ThreadPlanCallFunction::SetStopOthers (bool new_value) 501ac7ddfbfSEd Maste { 502ac7ddfbfSEd Maste if (m_subplan_sp) 503ac7ddfbfSEd Maste { 504ac7ddfbfSEd Maste ThreadPlanRunToAddress *address_plan = static_cast<ThreadPlanRunToAddress *>(m_subplan_sp.get()); 505ac7ddfbfSEd Maste address_plan->SetStopOthers(new_value); 506ac7ddfbfSEd Maste } 507ac7ddfbfSEd Maste m_stop_other_threads = new_value; 508ac7ddfbfSEd Maste } 509ac7ddfbfSEd Maste 510ac7ddfbfSEd Maste StateType 511ac7ddfbfSEd Maste ThreadPlanCallFunction::GetPlanRunState () 512ac7ddfbfSEd Maste { 513ac7ddfbfSEd Maste return eStateRunning; 514ac7ddfbfSEd Maste } 515ac7ddfbfSEd Maste 516ac7ddfbfSEd Maste void 517ac7ddfbfSEd Maste ThreadPlanCallFunction::DidPush () 518ac7ddfbfSEd Maste { 519ac7ddfbfSEd Maste //#define SINGLE_STEP_EXPRESSIONS 520ac7ddfbfSEd Maste 521ac7ddfbfSEd Maste // Now set the thread state to "no reason" so we don't run with whatever signal was outstanding... 522ac7ddfbfSEd Maste // Wait till the plan is pushed so we aren't changing the stop info till we're about to run. 523ac7ddfbfSEd Maste 524ac7ddfbfSEd Maste GetThread().SetStopInfoToNothing(); 525ac7ddfbfSEd Maste 526ac7ddfbfSEd Maste #ifndef SINGLE_STEP_EXPRESSIONS 527ac7ddfbfSEd Maste m_subplan_sp.reset(new ThreadPlanRunToAddress(m_thread, m_start_addr, m_stop_other_threads)); 528ac7ddfbfSEd Maste 529ac7ddfbfSEd Maste m_thread.QueueThreadPlan(m_subplan_sp, false); 530ac7ddfbfSEd Maste m_subplan_sp->SetPrivate (true); 531ac7ddfbfSEd Maste #endif 532ac7ddfbfSEd Maste } 533ac7ddfbfSEd Maste 534ac7ddfbfSEd Maste bool 535ac7ddfbfSEd Maste ThreadPlanCallFunction::WillStop () 536ac7ddfbfSEd Maste { 537ac7ddfbfSEd Maste return true; 538ac7ddfbfSEd Maste } 539ac7ddfbfSEd Maste 540ac7ddfbfSEd Maste bool 541ac7ddfbfSEd Maste ThreadPlanCallFunction::MischiefManaged () 542ac7ddfbfSEd Maste { 543ac7ddfbfSEd Maste Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP)); 544ac7ddfbfSEd Maste 545ac7ddfbfSEd Maste if (IsPlanComplete()) 546ac7ddfbfSEd Maste { 547ac7ddfbfSEd Maste if (log) 548ac7ddfbfSEd Maste log->Printf("ThreadPlanCallFunction(%p): Completed call function plan.", this); 549ac7ddfbfSEd Maste 550ac7ddfbfSEd Maste ThreadPlan::MischiefManaged (); 551ac7ddfbfSEd Maste return true; 552ac7ddfbfSEd Maste } 553ac7ddfbfSEd Maste else 554ac7ddfbfSEd Maste { 555ac7ddfbfSEd Maste return false; 556ac7ddfbfSEd Maste } 557ac7ddfbfSEd Maste } 558ac7ddfbfSEd Maste 559ac7ddfbfSEd Maste void 560ac7ddfbfSEd Maste ThreadPlanCallFunction::SetBreakpoints () 561ac7ddfbfSEd Maste { 562ac7ddfbfSEd Maste ProcessSP process_sp (m_thread.CalculateProcess()); 563ac7ddfbfSEd Maste if (process_sp) 564ac7ddfbfSEd Maste { 565ac7ddfbfSEd Maste m_cxx_language_runtime = process_sp->GetLanguageRuntime(eLanguageTypeC_plus_plus); 566ac7ddfbfSEd Maste m_objc_language_runtime = process_sp->GetLanguageRuntime(eLanguageTypeObjC); 567ac7ddfbfSEd Maste 568ac7ddfbfSEd Maste if (m_cxx_language_runtime) 569ac7ddfbfSEd Maste m_cxx_language_runtime->SetExceptionBreakpoints(); 570ac7ddfbfSEd Maste if (m_objc_language_runtime) 571ac7ddfbfSEd Maste m_objc_language_runtime->SetExceptionBreakpoints(); 572ac7ddfbfSEd Maste } 573ac7ddfbfSEd Maste } 574ac7ddfbfSEd Maste 575ac7ddfbfSEd Maste void 576ac7ddfbfSEd Maste ThreadPlanCallFunction::ClearBreakpoints () 577ac7ddfbfSEd Maste { 578ac7ddfbfSEd Maste if (m_cxx_language_runtime) 579ac7ddfbfSEd Maste m_cxx_language_runtime->ClearExceptionBreakpoints(); 580ac7ddfbfSEd Maste if (m_objc_language_runtime) 581ac7ddfbfSEd Maste m_objc_language_runtime->ClearExceptionBreakpoints(); 582ac7ddfbfSEd Maste } 583ac7ddfbfSEd Maste 584ac7ddfbfSEd Maste bool 585ac7ddfbfSEd Maste ThreadPlanCallFunction::BreakpointsExplainStop() 586ac7ddfbfSEd Maste { 587ac7ddfbfSEd Maste StopInfoSP stop_info_sp = GetPrivateStopInfo (); 588ac7ddfbfSEd Maste 589ac7ddfbfSEd Maste if ((m_cxx_language_runtime && 590ac7ddfbfSEd Maste m_cxx_language_runtime->ExceptionBreakpointsExplainStop(stop_info_sp)) 591ac7ddfbfSEd Maste ||(m_objc_language_runtime && 592ac7ddfbfSEd Maste m_objc_language_runtime->ExceptionBreakpointsExplainStop(stop_info_sp))) 593ac7ddfbfSEd Maste { 594ac7ddfbfSEd Maste Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_STEP)); 595ac7ddfbfSEd Maste if (log) 596ac7ddfbfSEd Maste log->Printf ("ThreadPlanCallFunction::BreakpointsExplainStop - Hit an exception breakpoint, setting plan complete."); 597ac7ddfbfSEd Maste 598ac7ddfbfSEd Maste SetPlanComplete(false); 599ac7ddfbfSEd Maste 600ac7ddfbfSEd Maste // If the user has set the ObjC language breakpoint, it would normally get priority over our internal 601ac7ddfbfSEd Maste // catcher breakpoint, but in this case we can't let that happen, so force the ShouldStop here. 602ac7ddfbfSEd Maste stop_info_sp->OverrideShouldStop (true); 603ac7ddfbfSEd Maste return true; 604ac7ddfbfSEd Maste } 605ac7ddfbfSEd Maste 606ac7ddfbfSEd Maste return false; 607ac7ddfbfSEd Maste } 608ac7ddfbfSEd Maste 609ac7ddfbfSEd Maste bool 610ac7ddfbfSEd Maste ThreadPlanCallFunction::RestoreThreadState() 611ac7ddfbfSEd Maste { 612ac7ddfbfSEd Maste return GetThread().RestoreThreadStateFromCheckpoint(m_stored_thread_state); 613ac7ddfbfSEd Maste } 614ac7ddfbfSEd Maste 615