2010-06-09 00:52:24 +08:00
//===-- ThreadPlanCallFunction.cpp ------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
# include "lldb/Target/ThreadPlanCallFunction.h"
// C Includes
// C++ Includes
// Other libraries and framework includes
2010-11-03 09:37:52 +08:00
# include "llvm/Support/MachO.h"
2010-06-09 00:52:24 +08:00
// Project includes
# include "lldb/lldb-private-log.h"
2010-10-26 08:27:45 +08:00
# include "lldb/Breakpoint/Breakpoint.h"
# include "lldb/Breakpoint/BreakpointLocation.h"
2010-06-09 00:52:24 +08:00
# include "lldb/Core/Address.h"
# include "lldb/Core/Log.h"
<rdar://problem/11757916>
Make breakpoint setting by file and line much more efficient by only looking for inlined breakpoint locations if we are setting a breakpoint in anything but a source implementation file. Implementing this complex for a many reasons. Turns out that parsing compile units lazily had some issues with respect to how we need to do things with DWARF in .o files. So the fixes in the checkin for this makes these changes:
- Add a new setting called "target.inline-breakpoint-strategy" which can be set to "never", "always", or "headers". "never" will never try and set any inlined breakpoints (fastest). "always" always looks for inlined breakpoint locations (slowest, but most accurate). "headers", which is the default setting, will only look for inlined breakpoint locations if the breakpoint is set in what are consudered to be header files, which is realy defined as "not in an implementation source file".
- modify the breakpoint setting by file and line to check the current "target.inline-breakpoint-strategy" setting and act accordingly
- Modify compile units to be able to get their language and other info lazily. This allows us to create compile units from the debug map and not have to fill all of the details in, and then lazily discover this information as we go on debuggging. This is needed to avoid parsing all .o files when setting breakpoints in implementation only files (no inlines). Otherwise we would need to parse the .o file, the object file (mach-o in our case) and the symbol file (DWARF in the object file) just to see what the compile unit was.
- modify the "SymbolFileDWARFDebugMap" to subclass lldb_private::Module so that the virtual "GetObjectFile()" and "GetSymbolVendor()" functions can be intercepted when the .o file contenst are later lazilly needed. Prior to this fix, when we first instantiated the "SymbolFileDWARFDebugMap" class, we would also make modules, object files and symbol files for every .o file in the debug map because we needed to fix up the sections in the .o files with information that is in the executable debug map. Now we lazily do this in the DebugMapModule::GetObjectFile()
Cleaned up header includes a bit as well.
llvm-svn: 162860
2012-08-30 05:13:06 +08:00
# include "lldb/Core/Module.h"
2010-06-09 00:52:24 +08:00
# include "lldb/Core/Stream.h"
<rdar://problem/11757916>
Make breakpoint setting by file and line much more efficient by only looking for inlined breakpoint locations if we are setting a breakpoint in anything but a source implementation file. Implementing this complex for a many reasons. Turns out that parsing compile units lazily had some issues with respect to how we need to do things with DWARF in .o files. So the fixes in the checkin for this makes these changes:
- Add a new setting called "target.inline-breakpoint-strategy" which can be set to "never", "always", or "headers". "never" will never try and set any inlined breakpoints (fastest). "always" always looks for inlined breakpoint locations (slowest, but most accurate). "headers", which is the default setting, will only look for inlined breakpoint locations if the breakpoint is set in what are consudered to be header files, which is realy defined as "not in an implementation source file".
- modify the breakpoint setting by file and line to check the current "target.inline-breakpoint-strategy" setting and act accordingly
- Modify compile units to be able to get their language and other info lazily. This allows us to create compile units from the debug map and not have to fill all of the details in, and then lazily discover this information as we go on debuggging. This is needed to avoid parsing all .o files when setting breakpoints in implementation only files (no inlines). Otherwise we would need to parse the .o file, the object file (mach-o in our case) and the symbol file (DWARF in the object file) just to see what the compile unit was.
- modify the "SymbolFileDWARFDebugMap" to subclass lldb_private::Module so that the virtual "GetObjectFile()" and "GetSymbolVendor()" functions can be intercepted when the .o file contenst are later lazilly needed. Prior to this fix, when we first instantiated the "SymbolFileDWARFDebugMap" class, we would also make modules, object files and symbol files for every .o file in the debug map because we needed to fix up the sections in the .o files with information that is in the executable debug map. Now we lazily do this in the DebugMapModule::GetObjectFile()
Cleaned up header includes a bit as well.
llvm-svn: 162860
2012-08-30 05:13:06 +08:00
# include "lldb/Symbol/ObjectFile.h"
2010-11-04 06:19:38 +08:00
# include "lldb/Target/LanguageRuntime.h"
2010-06-09 00:52:24 +08:00
# include "lldb/Target/Process.h"
# include "lldb/Target/RegisterContext.h"
2010-10-26 08:27:45 +08:00
# include "lldb/Target/StopInfo.h"
2010-06-09 00:52:24 +08:00
# include "lldb/Target/Target.h"
# include "lldb/Target/Thread.h"
# include "lldb/Target/ThreadPlanRunToAddress.h"
using namespace lldb ;
using namespace lldb_private ;
//----------------------------------------------------------------------
// ThreadPlanCallFunction: Plan to call a single function
//----------------------------------------------------------------------
2012-04-14 04:38:13 +08:00
bool
ThreadPlanCallFunction : : ConstructorSetup ( Thread & thread ,
ABI * & abi ,
lldb : : addr_t & start_load_addr ,
lldb : : addr_t & function_load_addr )
2010-06-09 00:52:24 +08:00
{
2012-04-10 06:37:39 +08:00
SetIsMasterPlan ( true ) ;
2012-05-12 02:43:38 +08:00
SetOkayToDiscard ( false ) ;
2012-12-08 01:56:31 +08:00
SetPrivate ( true ) ;
2010-06-09 00:52:24 +08:00
2012-02-21 08:09:25 +08:00
ProcessSP process_sp ( thread . GetProcess ( ) ) ;
if ( ! process_sp )
2012-04-14 04:38:13 +08:00
return false ;
2012-02-21 08:09:25 +08:00
2012-04-14 04:38:13 +08:00
abi = process_sp - > GetABI ( ) . get ( ) ;
2010-11-03 09:37:52 +08:00
2010-06-09 00:52:24 +08:00
if ( ! abi )
2012-04-14 04:38:13 +08:00
return false ;
2010-11-03 09:37:52 +08:00
2012-02-21 08:09:25 +08:00
TargetSP target_sp ( thread . CalculateTarget ( ) ) ;
2012-04-14 07:11:52 +08:00
LogSP log ( lldb_private : : GetLogIfAnyCategoriesSet ( LIBLLDB_LOG_STEP ) ) ;
2011-01-20 10:03:18 +08:00
2010-11-03 09:37:52 +08:00
SetBreakpoints ( ) ;
2011-05-10 06:04:36 +08:00
m_function_sp = thread . GetRegisterContext ( ) - > GetSP ( ) - abi - > GetRedZoneSize ( ) ;
2012-04-14 04:38:13 +08:00
// If we can't read memory at the point of the process where we are planning to put our function, we're
// not going to get any further...
Error error ;
process_sp - > ReadUnsignedIntegerFromMemory ( m_function_sp , 4 , 0 , error ) ;
if ( ! error . Success ( ) )
{
if ( log )
2012-11-30 05:49:15 +08:00
log - > Printf ( " ThreadPlanCallFunction(%p): Trying to put the stack in unreadable memory at: 0x% " PRIx64 " . " , this , m_function_sp ) ;
2012-04-14 04:38:13 +08:00
return false ;
}
2010-06-09 00:52:24 +08:00
2012-02-21 08:09:25 +08:00
Module * exe_module = target_sp - > GetExecutableModulePointer ( ) ;
2010-06-09 00:52:24 +08:00
2011-08-11 10:48:45 +08:00
if ( exe_module = = NULL )
2011-03-08 07:44:08 +08:00
{
2011-08-11 01:58:11 +08:00
if ( log )
2012-04-14 07:11:52 +08:00
log - > Printf ( " ThreadPlanCallFunction(%p): Can't execute code without an executable module. " , this ) ;
2012-04-14 04:38:13 +08:00
return false ;
2011-03-08 07:44:08 +08:00
}
else
{
2011-08-11 10:48:45 +08:00
ObjectFile * objectFile = exe_module - > GetObjectFile ( ) ;
2011-03-08 07:44:08 +08:00
if ( ! objectFile )
{
2011-08-11 01:58:11 +08:00
if ( log )
2012-04-14 07:11:52 +08:00
log - > Printf ( " ThreadPlanCallFunction(%p): Could not find object file for module \" %s \" . " ,
this , exe_module - > GetFileSpec ( ) . GetFilename ( ) . AsCString ( ) ) ;
2012-04-14 04:38:13 +08:00
return false ;
2011-03-08 07:44:08 +08:00
}
m_start_addr = objectFile - > GetEntryPointAddress ( ) ;
if ( ! m_start_addr . IsValid ( ) )
{
2011-08-11 01:58:11 +08:00
if ( log )
2012-04-14 07:11:52 +08:00
log - > Printf ( " ThreadPlanCallFunction(%p): Could not find entry point address for executable module \" %s \" . " ,
this , exe_module - > GetFileSpec ( ) . GetFilename ( ) . AsCString ( ) ) ;
2012-04-14 04:38:13 +08:00
return false ;
2011-03-08 07:44:08 +08:00
}
}
2010-06-09 00:52:24 +08:00
2012-04-14 04:38:13 +08:00
start_load_addr = m_start_addr . GetLoadAddress ( target_sp . get ( ) ) ;
2011-03-08 07:44:08 +08:00
2011-01-20 10:03:18 +08:00
// Checkpoint the thread state so we can restore it later.
2011-01-22 09:27:23 +08:00
if ( log & & log - > GetVerbose ( ) )
ReportRegisterState ( " About to checkpoint thread before function call. Original register state was: " ) ;
2011-01-20 10:03:18 +08:00
if ( ! thread . CheckpointThreadState ( m_stored_thread_state ) )
{
if ( log )
2012-04-14 07:11:52 +08:00
log - > Printf ( " ThreadPlanCallFunction(%p): Setting up ThreadPlanCallFunction, failed to checkpoint thread state. " , this ) ;
2012-04-14 04:38:13 +08:00
return false ;
2011-01-20 10:03:18 +08:00
}
2012-04-14 04:38:13 +08:00
function_load_addr = m_function_addr . GetLoadAddress ( target_sp . get ( ) ) ;
return true ;
}
ThreadPlanCallFunction : : ThreadPlanCallFunction ( Thread & thread ,
Address & function ,
const ClangASTType & return_type ,
addr_t arg ,
bool stop_other_threads ,
bool discard_on_error ,
addr_t * this_arg ,
addr_t * cmd_arg ) :
ThreadPlan ( ThreadPlan : : eKindCallFunction , " Call function plan " , thread , eVoteNoOpinion , eVoteNoOpinion ) ,
m_valid ( false ) ,
m_stop_other_threads ( stop_other_threads ) ,
m_function_addr ( function ) ,
2012-09-12 02:11:07 +08:00
m_function_sp ( 0 ) ,
2012-04-14 04:38:13 +08:00
m_return_type ( return_type ) ,
m_takedown_done ( false ) ,
2012-05-12 02:43:38 +08:00
m_stop_address ( LLDB_INVALID_ADDRESS ) ,
m_discard_on_error ( discard_on_error )
2012-04-14 04:38:13 +08:00
{
lldb : : addr_t start_load_addr ;
ABI * abi ;
lldb : : addr_t function_load_addr ;
2012-05-12 02:43:38 +08:00
if ( ! ConstructorSetup ( thread , abi , start_load_addr , function_load_addr ) )
2012-04-14 04:38:13 +08:00
return ;
2010-06-09 00:52:24 +08:00
Cleaned up the ABI::PrepareTrivialCall() function to take three argument
pointers:
virtual bool
PrepareTrivialCall (Thread &thread,
lldb::addr_t sp,
lldb::addr_t functionAddress,
lldb::addr_t returnAddress,
lldb::addr_t *arg1_ptr,
lldb::addr_t *arg2_ptr,
lldb::addr_t *arg3_ptr) const = 0;
Prior to this it was:
virtual bool
PrepareTrivialCall (Thread &thread,
lldb::addr_t sp,
lldb::addr_t functionAddress,
lldb::addr_t returnAddress,
lldb::addr_t arg,
lldb::addr_t *this_arg,
lldb::addr_t *cmd_arg) const = 0;
This was because the function that called this slowly added more features to
be able to call a C++ member function that might have a "this" pointer, and
then later added "self + cmd" support for objective C. Cleaning this code up
and the code that calls it makes it easier to implement the functions for
new targets.
The MacOSX_arm::PrepareTrivialCall() is now filled in and ready for testing.
llvm-svn: 131221
2011-05-12 10:14:56 +08:00
if ( this_arg & & cmd_arg )
{
if ( ! abi - > PrepareTrivialCall ( thread ,
m_function_sp ,
2012-04-14 04:38:13 +08:00
function_load_addr ,
2011-05-14 09:50:35 +08:00
start_load_addr ,
Cleaned up the ABI::PrepareTrivialCall() function to take three argument
pointers:
virtual bool
PrepareTrivialCall (Thread &thread,
lldb::addr_t sp,
lldb::addr_t functionAddress,
lldb::addr_t returnAddress,
lldb::addr_t *arg1_ptr,
lldb::addr_t *arg2_ptr,
lldb::addr_t *arg3_ptr) const = 0;
Prior to this it was:
virtual bool
PrepareTrivialCall (Thread &thread,
lldb::addr_t sp,
lldb::addr_t functionAddress,
lldb::addr_t returnAddress,
lldb::addr_t arg,
lldb::addr_t *this_arg,
lldb::addr_t *cmd_arg) const = 0;
This was because the function that called this slowly added more features to
be able to call a C++ member function that might have a "this" pointer, and
then later added "self + cmd" support for objective C. Cleaning this code up
and the code that calls it makes it easier to implement the functions for
new targets.
The MacOSX_arm::PrepareTrivialCall() is now filled in and ready for testing.
llvm-svn: 131221
2011-05-12 10:14:56 +08:00
this_arg ,
cmd_arg ,
2011-05-14 09:50:35 +08:00
& arg ) )
Cleaned up the ABI::PrepareTrivialCall() function to take three argument
pointers:
virtual bool
PrepareTrivialCall (Thread &thread,
lldb::addr_t sp,
lldb::addr_t functionAddress,
lldb::addr_t returnAddress,
lldb::addr_t *arg1_ptr,
lldb::addr_t *arg2_ptr,
lldb::addr_t *arg3_ptr) const = 0;
Prior to this it was:
virtual bool
PrepareTrivialCall (Thread &thread,
lldb::addr_t sp,
lldb::addr_t functionAddress,
lldb::addr_t returnAddress,
lldb::addr_t arg,
lldb::addr_t *this_arg,
lldb::addr_t *cmd_arg) const = 0;
This was because the function that called this slowly added more features to
be able to call a C++ member function that might have a "this" pointer, and
then later added "self + cmd" support for objective C. Cleaning this code up
and the code that calls it makes it easier to implement the functions for
new targets.
The MacOSX_arm::PrepareTrivialCall() is now filled in and ready for testing.
llvm-svn: 131221
2011-05-12 10:14:56 +08:00
return ;
}
else if ( this_arg )
{
if ( ! abi - > PrepareTrivialCall ( thread ,
m_function_sp ,
2012-04-14 04:38:13 +08:00
function_load_addr ,
2011-05-14 09:50:35 +08:00
start_load_addr ,
Cleaned up the ABI::PrepareTrivialCall() function to take three argument
pointers:
virtual bool
PrepareTrivialCall (Thread &thread,
lldb::addr_t sp,
lldb::addr_t functionAddress,
lldb::addr_t returnAddress,
lldb::addr_t *arg1_ptr,
lldb::addr_t *arg2_ptr,
lldb::addr_t *arg3_ptr) const = 0;
Prior to this it was:
virtual bool
PrepareTrivialCall (Thread &thread,
lldb::addr_t sp,
lldb::addr_t functionAddress,
lldb::addr_t returnAddress,
lldb::addr_t arg,
lldb::addr_t *this_arg,
lldb::addr_t *cmd_arg) const = 0;
This was because the function that called this slowly added more features to
be able to call a C++ member function that might have a "this" pointer, and
then later added "self + cmd" support for objective C. Cleaning this code up
and the code that calls it makes it easier to implement the functions for
new targets.
The MacOSX_arm::PrepareTrivialCall() is now filled in and ready for testing.
llvm-svn: 131221
2011-05-12 10:14:56 +08:00
this_arg ,
2011-05-14 09:50:35 +08:00
& arg ) )
Cleaned up the ABI::PrepareTrivialCall() function to take three argument
pointers:
virtual bool
PrepareTrivialCall (Thread &thread,
lldb::addr_t sp,
lldb::addr_t functionAddress,
lldb::addr_t returnAddress,
lldb::addr_t *arg1_ptr,
lldb::addr_t *arg2_ptr,
lldb::addr_t *arg3_ptr) const = 0;
Prior to this it was:
virtual bool
PrepareTrivialCall (Thread &thread,
lldb::addr_t sp,
lldb::addr_t functionAddress,
lldb::addr_t returnAddress,
lldb::addr_t arg,
lldb::addr_t *this_arg,
lldb::addr_t *cmd_arg) const = 0;
This was because the function that called this slowly added more features to
be able to call a C++ member function that might have a "this" pointer, and
then later added "self + cmd" support for objective C. Cleaning this code up
and the code that calls it makes it easier to implement the functions for
new targets.
The MacOSX_arm::PrepareTrivialCall() is now filled in and ready for testing.
llvm-svn: 131221
2011-05-12 10:14:56 +08:00
return ;
}
else
{
if ( ! abi - > PrepareTrivialCall ( thread ,
m_function_sp ,
2012-04-14 04:38:13 +08:00
function_load_addr ,
2011-05-14 09:50:35 +08:00
start_load_addr ,
& arg ) )
return ;
}
ReportRegisterState ( " Function call was set up. Register state was: " ) ;
m_valid = true ;
}
ThreadPlanCallFunction : : ThreadPlanCallFunction ( Thread & thread ,
Address & function ,
2011-12-23 03:12:40 +08:00
const ClangASTType & return_type ,
2011-05-14 09:50:35 +08:00
bool stop_other_threads ,
bool discard_on_error ,
addr_t * arg1_ptr ,
addr_t * arg2_ptr ,
addr_t * arg3_ptr ,
addr_t * arg4_ptr ,
addr_t * arg5_ptr ,
addr_t * arg6_ptr ) :
ThreadPlan ( ThreadPlan : : eKindCallFunction , " Call function plan " , thread , eVoteNoOpinion , eVoteNoOpinion ) ,
m_valid ( false ) ,
m_stop_other_threads ( stop_other_threads ) ,
2011-08-13 07:34:31 +08:00
m_function_addr ( function ) ,
2012-11-27 07:52:18 +08:00
m_function_sp ( 0 ) ,
2011-12-23 03:12:40 +08:00
m_return_type ( return_type ) ,
2012-04-14 04:38:13 +08:00
m_takedown_done ( false ) ,
2012-11-27 07:52:18 +08:00
m_stop_address ( LLDB_INVALID_ADDRESS ) ,
m_discard_on_error ( discard_on_error )
2011-05-14 09:50:35 +08:00
{
2012-04-14 04:38:13 +08:00
lldb : : addr_t start_load_addr ;
ABI * abi ;
lldb : : addr_t function_load_addr ;
2012-05-12 02:43:38 +08:00
if ( ! ConstructorSetup ( thread , abi , start_load_addr , function_load_addr ) )
2012-02-21 08:09:25 +08:00
return ;
2011-05-14 09:50:35 +08:00
if ( ! abi - > PrepareTrivialCall ( thread ,
2012-04-14 04:38:13 +08:00
m_function_sp ,
function_load_addr ,
2011-05-14 09:50:35 +08:00
start_load_addr ,
arg1_ptr ,
arg2_ptr ,
arg3_ptr ,
arg4_ptr ,
arg5_ptr ,
arg6_ptr ) )
{
Cleaned up the ABI::PrepareTrivialCall() function to take three argument
pointers:
virtual bool
PrepareTrivialCall (Thread &thread,
lldb::addr_t sp,
lldb::addr_t functionAddress,
lldb::addr_t returnAddress,
lldb::addr_t *arg1_ptr,
lldb::addr_t *arg2_ptr,
lldb::addr_t *arg3_ptr) const = 0;
Prior to this it was:
virtual bool
PrepareTrivialCall (Thread &thread,
lldb::addr_t sp,
lldb::addr_t functionAddress,
lldb::addr_t returnAddress,
lldb::addr_t arg,
lldb::addr_t *this_arg,
lldb::addr_t *cmd_arg) const = 0;
This was because the function that called this slowly added more features to
be able to call a C++ member function that might have a "this" pointer, and
then later added "self + cmd" support for objective C. Cleaning this code up
and the code that calls it makes it easier to implement the functions for
new targets.
The MacOSX_arm::PrepareTrivialCall() is now filled in and ready for testing.
llvm-svn: 131221
2011-05-12 10:14:56 +08:00
return ;
}
2010-06-09 00:52:24 +08:00
2011-01-22 09:27:23 +08:00
ReportRegisterState ( " Function call was set up. Register state was: " ) ;
m_valid = true ;
}
ThreadPlanCallFunction : : ~ ThreadPlanCallFunction ( )
{
2012-05-10 09:35:39 +08:00
DoTakedown ( true ) ;
2011-01-22 09:27:23 +08:00
}
void
ThreadPlanCallFunction : : ReportRegisterState ( const char * message )
{
2011-05-19 11:54:16 +08:00
LogSP log ( lldb_private : : GetLogIfAllCategoriesSet ( LIBLLDB_LOG_STEP | LIBLLDB_LOG_VERBOSE ) ) ;
2010-11-08 11:49:50 +08:00
if ( log )
{
2011-05-19 11:54:16 +08:00
StreamString strm ;
2011-01-07 06:15:06 +08:00
RegisterContext * reg_ctx = m_thread . GetRegisterContext ( ) . get ( ) ;
2011-01-22 09:27:23 +08:00
log - > PutCString ( message ) ;
2011-05-19 11:54:16 +08:00
RegisterValue reg_value ;
for ( uint32_t reg_idx = 0 , num_registers = reg_ctx - > GetRegisterCount ( ) ;
reg_idx < num_registers ;
+ + reg_idx )
2010-11-08 11:49:50 +08:00
{
2011-05-19 11:54:16 +08:00
const RegisterInfo * reg_info = reg_ctx - > GetRegisterInfoAtIndex ( reg_idx ) ;
if ( reg_ctx - > ReadRegister ( reg_info , reg_value ) )
{
reg_value . Dump ( & strm , reg_info , true , false , eFormatDefault ) ;
strm . EOL ( ) ;
}
2010-11-08 11:49:50 +08:00
}
2011-05-19 11:54:16 +08:00
log - > PutCString ( strm . GetData ( ) ) ;
2010-11-08 11:49:50 +08:00
}
2010-11-04 09:51:38 +08:00
}
void
2012-05-10 09:35:39 +08:00
ThreadPlanCallFunction : : DoTakedown ( bool success )
2010-11-04 09:51:38 +08:00
{
2012-04-14 07:11:52 +08:00
LogSP log ( lldb_private : : GetLogIfAnyCategoriesSet ( LIBLLDB_LOG_STEP ) ) ;
if ( ! m_valid )
{
//Don't call DoTakedown if we were never valid to begin with.
if ( log )
log - > Printf ( " ThreadPlanCallFunction(%p): Log called on ThreadPlanCallFunction that was never valid. " , this ) ;
return ;
}
2011-01-22 09:27:23 +08:00
if ( ! m_takedown_done )
2011-01-20 10:03:18 +08:00
{
2012-05-10 09:35:39 +08:00
if ( success )
2011-05-15 09:25:55 +08:00
{
2012-05-10 09:35:39 +08:00
ProcessSP process_sp ( m_thread . GetProcess ( ) ) ;
const ABI * abi = process_sp ? process_sp - > GetABI ( ) . get ( ) : NULL ;
if ( abi & & m_return_type . IsValid ( ) )
{
const bool persistent = false ;
m_return_valobj_sp = abi - > GetReturnValueObject ( m_thread , m_return_type , persistent ) ;
}
2011-05-15 09:25:55 +08:00
}
2011-01-22 09:27:23 +08:00
if ( log )
2012-11-30 05:49:15 +08:00
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 ( ) ) ;
2011-01-22 09:27:23 +08:00
m_takedown_done = true ;
2011-11-01 10:46:54 +08:00
m_stop_address = m_thread . GetStackFrameAtIndex ( 0 ) - > GetRegisterContext ( ) - > GetPC ( ) ;
2011-05-17 09:10:11 +08:00
m_real_stop_info_sp = GetPrivateStopReason ( ) ;
2012-11-27 07:52:18 +08:00
m_thread . RestoreRegisterStateFromCheckpoint ( m_stored_thread_state ) ;
2012-05-10 09:35:39 +08:00
SetPlanComplete ( success ) ;
2011-01-20 10:03:18 +08:00
ClearBreakpoints ( ) ;
2011-01-22 09:27:23 +08:00
if ( log & & log - > GetVerbose ( ) )
ReportRegisterState ( " Restoring thread state after function call. Restored register state: " ) ;
2011-01-27 03:13:09 +08:00
2011-01-22 09:27:23 +08:00
}
else
{
if ( log )
2012-11-30 05:49:15 +08:00
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 ( ) ) ;
2011-01-20 10:03:18 +08:00
}
2010-06-09 00:52:24 +08:00
}
2011-01-18 09:58:06 +08:00
void
ThreadPlanCallFunction : : WillPop ( )
{
2012-05-10 09:35:39 +08:00
DoTakedown ( true ) ;
2011-01-18 09:58:06 +08:00
}
2010-06-09 00:52:24 +08:00
void
2011-05-14 09:50:35 +08:00
ThreadPlanCallFunction : : GetDescription ( Stream * s , DescriptionLevel level )
2010-06-09 00:52:24 +08:00
{
2011-05-14 09:50:35 +08:00
if ( level = = eDescriptionLevelBrief )
2010-06-09 00:52:24 +08:00
{
s - > Printf ( " Function call thread plan " ) ;
}
else
{
2012-02-21 08:09:25 +08:00
TargetSP target_sp ( m_thread . CalculateTarget ( ) ) ;
2012-11-30 05:49:15 +08:00
s - > Printf ( " Thread plan to call 0x% " PRIx64 , m_function_addr . GetLoadAddress ( target_sp . get ( ) ) ) ;
2010-06-09 00:52:24 +08:00
}
}
bool
ThreadPlanCallFunction : : ValidatePlan ( Stream * error )
{
if ( ! m_valid )
return false ;
return true ;
}
bool
ThreadPlanCallFunction : : PlanExplainsStop ( )
2010-11-03 09:37:52 +08:00
{
2011-05-17 09:10:11 +08:00
m_real_stop_info_sp = GetPrivateStopReason ( ) ;
2010-10-26 08:27:45 +08:00
// If our subplan knows why we stopped, even if it's done (which would forward the question to us)
// we answer yes.
The implementation of categories is now synchronization safe
Code cleanup:
- The Format Manager implementation is now split between two files: FormatClasses.{h|cpp} where the
actual formatter classes (ValueFormat, SummaryFormat, ...) are implemented and
FormatManager.{h|cpp} where the infrastructure classes (FormatNavigator, FormatManager, ...)
are contained. The wrapper code always remains in Debugger.{h|cpp}
- Several leftover fields, methods and comments from previous design choices have been removed
type category subcommands (enable, disable, delete) now can take a list of category names as input
- for type category enable, saying "enable A B C" is the same as saying
enable C
enable B
enable A
(the ordering is relevant in enabling categories, and it is expected that a user typing
enable A B C wants to look into category A, then into B, then into C and not the other
way round)
- for the other two commands, the order is not really relevant (however, the same inverted ordering
is used for consistency)
llvm-svn: 135494
2011-07-20 02:03:25 +08:00
if ( m_subplan_sp . get ( ) ! = NULL & & m_subplan_sp - > PlanExplainsStop ( ) )
2010-10-26 08:27:45 +08:00
return true ;
2010-10-20 06:24:06 +08:00
2010-11-04 03:36:28 +08:00
// Check if the breakpoint is one of ours.
2012-05-10 09:35:39 +08:00
StopReason stop_reason ;
if ( ! m_real_stop_info_sp )
stop_reason = eStopReasonNone ;
else
stop_reason = m_real_stop_info_sp - > GetStopReason ( ) ;
if ( stop_reason = = eStopReasonBreakpoint & & BreakpointsExplainStop ( ) )
2010-11-04 03:36:28 +08:00
return true ;
2010-10-26 08:27:45 +08:00
// If we don't want to discard this plan, than any stop we don't understand should be propagated up the stack.
2012-05-12 02:43:38 +08:00
if ( ! m_discard_on_error )
2010-10-26 08:27:45 +08:00
return false ;
// Otherwise, check the case where we stopped for an internal breakpoint, in that case, continue on.
// If it is not an internal breakpoint, consult OkayToDiscard.
2010-11-03 09:37:52 +08:00
2012-05-10 09:35:39 +08:00
if ( stop_reason = = eStopReasonBreakpoint )
2010-10-26 08:27:45 +08:00
{
2012-02-21 08:09:25 +08:00
ProcessSP process_sp ( m_thread . CalculateProcess ( ) ) ;
2011-05-17 09:10:11 +08:00
uint64_t break_site_id = m_real_stop_info_sp - > GetValue ( ) ;
2012-02-21 08:09:25 +08:00
BreakpointSiteSP bp_site_sp ;
if ( process_sp )
bp_site_sp = process_sp - > GetBreakpointSiteList ( ) . FindByID ( break_site_id ) ;
2010-10-26 08:27:45 +08:00
if ( bp_site_sp )
{
uint32_t num_owners = bp_site_sp - > GetNumberOfOwners ( ) ;
bool is_internal = true ;
for ( uint32_t i = 0 ; i < num_owners ; i + + )
{
2010-11-03 09:37:52 +08:00
Breakpoint & bp = bp_site_sp - > GetOwnerAtIndex ( i ) - > GetBreakpoint ( ) ;
if ( ! bp . IsInternal ( ) )
2010-10-26 08:27:45 +08:00
{
is_internal = false ;
break ;
}
}
if ( is_internal )
return false ;
}
2012-05-12 02:43:38 +08:00
if ( m_discard_on_error )
{
DoTakedown ( false ) ;
return true ;
}
else
return false ;
2010-10-26 08:27:45 +08:00
}
else
{
// If the subplan is running, any crashes are attributable to us.
2011-01-27 03:13:09 +08:00
// If we want to discard the plan, then we say we explain the stop
// but if we are going to be discarded, let whoever is above us
// explain the stop.
2012-08-09 08:50:26 +08:00
if ( m_subplan_sp )
2012-05-10 09:35:39 +08:00
{
2012-05-12 02:43:38 +08:00
if ( m_discard_on_error )
2012-05-10 09:35:39 +08:00
{
DoTakedown ( false ) ;
return true ;
}
else
return false ;
}
else
return false ;
2010-10-26 08:27:45 +08:00
}
2010-06-09 00:52:24 +08:00
}
bool
ThreadPlanCallFunction : : ShouldStop ( Event * event_ptr )
{
2012-05-12 07:47:32 +08:00
if ( IsPlanComplete ( ) | | PlanExplainsStop ( ) )
2010-06-09 00:52:24 +08:00
{
2011-01-22 09:27:23 +08:00
ReportRegisterState ( " Function completed. Register state was: " ) ;
2010-07-31 09:32:05 +08:00
2012-05-10 09:35:39 +08:00
DoTakedown ( true ) ;
2010-11-03 09:37:52 +08:00
2010-06-09 00:52:24 +08:00
return true ;
}
else
{
return false ;
}
}
bool
ThreadPlanCallFunction : : StopOthers ( )
{
return m_stop_other_threads ;
}
void
ThreadPlanCallFunction : : SetStopOthers ( bool new_value )
{
if ( m_subplan_sp )
{
ThreadPlanRunToAddress * address_plan = static_cast < ThreadPlanRunToAddress * > ( m_subplan_sp . get ( ) ) ;
address_plan - > SetStopOthers ( new_value ) ;
}
m_stop_other_threads = new_value ;
}
StateType
2010-11-12 03:26:09 +08:00
ThreadPlanCallFunction : : GetPlanRunState ( )
2010-06-09 00:52:24 +08:00
{
return eStateRunning ;
}
void
ThreadPlanCallFunction : : DidPush ( )
{
2010-10-26 08:31:56 +08:00
//#define SINGLE_STEP_EXPRESSIONS
2012-11-27 07:52:18 +08:00
// Now set the thread state to "no reason" so we don't run with whatever signal was outstanding...
// Wait till the plan is pushed so we aren't changing the stop info till we're about to run.
GetThread ( ) . SetStopInfoToNothing ( ) ;
2010-10-26 08:31:56 +08:00
# ifndef SINGLE_STEP_EXPRESSIONS
2010-06-09 00:52:24 +08:00
m_subplan_sp . reset ( new ThreadPlanRunToAddress ( m_thread , m_start_addr , m_stop_other_threads ) ) ;
m_thread . QueueThreadPlan ( m_subplan_sp , false ) ;
2011-01-20 10:03:18 +08:00
m_subplan_sp - > SetPrivate ( true ) ;
2010-10-26 08:31:56 +08:00
# endif
2010-06-09 00:52:24 +08:00
}
bool
ThreadPlanCallFunction : : WillStop ( )
{
return true ;
}
bool
ThreadPlanCallFunction : : MischiefManaged ( )
{
if ( IsPlanComplete ( ) )
{
2010-11-06 09:53:30 +08:00
LogSP log ( lldb_private : : GetLogIfAllCategoriesSet ( LIBLLDB_LOG_STEP ) ) ;
2010-06-09 00:52:24 +08:00
if ( log )
2012-04-14 07:11:52 +08:00
log - > Printf ( " ThreadPlanCallFunction(%p): Completed call function plan. " , this ) ;
2010-06-09 00:52:24 +08:00
ThreadPlan : : MischiefManaged ( ) ;
return true ;
}
else
{
return false ;
}
}
2010-11-03 09:37:52 +08:00
void
ThreadPlanCallFunction : : SetBreakpoints ( )
{
2012-02-21 08:09:25 +08:00
ProcessSP process_sp ( m_thread . CalculateProcess ( ) ) ;
if ( process_sp )
{
m_cxx_language_runtime = process_sp - > GetLanguageRuntime ( eLanguageTypeC_plus_plus ) ;
m_objc_language_runtime = process_sp - > GetLanguageRuntime ( eLanguageTypeObjC ) ;
2010-11-03 09:37:52 +08:00
2012-02-21 08:09:25 +08:00
if ( m_cxx_language_runtime )
m_cxx_language_runtime - > SetExceptionBreakpoints ( ) ;
if ( m_objc_language_runtime )
m_objc_language_runtime - > SetExceptionBreakpoints ( ) ;
}
2010-11-03 09:37:52 +08:00
}
void
ThreadPlanCallFunction : : ClearBreakpoints ( )
{
2010-11-04 06:19:38 +08:00
if ( m_cxx_language_runtime )
m_cxx_language_runtime - > ClearExceptionBreakpoints ( ) ;
if ( m_objc_language_runtime )
m_objc_language_runtime - > ClearExceptionBreakpoints ( ) ;
2010-11-03 09:37:52 +08:00
}
2010-11-04 03:36:28 +08:00
bool
ThreadPlanCallFunction : : BreakpointsExplainStop ( )
{
2011-05-14 09:50:35 +08:00
StopInfoSP stop_info_sp = GetPrivateStopReason ( ) ;
2010-11-04 03:36:28 +08:00
2010-11-04 06:19:38 +08:00
if ( m_cxx_language_runtime & &
m_cxx_language_runtime - > ExceptionBreakpointsExplainStop ( stop_info_sp ) )
return true ;
2010-11-04 03:36:28 +08:00
2010-11-04 06:19:38 +08:00
if ( m_objc_language_runtime & &
m_objc_language_runtime - > ExceptionBreakpointsExplainStop ( stop_info_sp ) )
return true ;
2010-11-04 03:36:28 +08:00
return false ;
}
2012-11-27 07:52:18 +08:00
bool
ThreadPlanCallFunction : : RestoreThreadState ( )
{
return GetThread ( ) . RestoreThreadStateFromCheckpoint ( m_stored_thread_state ) ;
}