2010-06-09 00:52:24 +08:00
//===-- Debugger.cpp --------------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
2012-12-05 08:20:57 +08:00
# include "lldb/lldb-python.h"
2011-06-24 01:59:56 +08:00
# include "lldb/Core/Debugger.h"
# include <map>
2011-06-30 06:27:15 +08:00
# include "clang/AST/DeclCXX.h"
# include "clang/AST/Type.h"
2014-06-13 10:37:02 +08:00
# include "llvm/ADT/StringRef.h"
2011-06-30 06:27:15 +08:00
2010-06-09 00:52:24 +08:00
# include "lldb/lldb-private.h"
2015-02-05 06:00:53 +08:00
# include "lldb/Core/FormatEntity.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"
2012-10-20 02:02:49 +08:00
# include "lldb/Core/PluginManager.h"
2011-05-10 04:18:18 +08:00
# include "lldb/Core/RegisterValue.h"
2010-06-09 00:52:24 +08:00
# include "lldb/Core/State.h"
2011-06-03 07:58:26 +08:00
# include "lldb/Core/StreamAsynchronousIO.h"
2012-02-21 10:23:08 +08:00
# include "lldb/Core/StreamCallback.h"
2014-01-28 07:43:24 +08:00
# include "lldb/Core/StreamFile.h"
2010-09-19 10:33:57 +08:00
# include "lldb/Core/StreamString.h"
2014-06-13 10:37:02 +08:00
# include "lldb/Core/StructuredData.h"
2010-06-09 00:52:24 +08:00
# include "lldb/Core/Timer.h"
2011-06-30 06:27:15 +08:00
# include "lldb/Core/ValueObject.h"
Added a new thread and frame format that can be used to display a function
name + arguments when the data is available. It seems to work really well,
but some more testing is needed before we make this on by default.
The new function format name is:
${function.name-with-args}
To see how to use these formats see the website:
http://lldb.llvm.org/formats.html
Here is a sample backtrace of debugging LLDB with LLDB using this new format
value:
(lldb) thread backtrace all
* thread #1: tid = 0x2203, 0x00007fff88a17bca libsystem_kernel.dylib __psynch_cvwait + 10, stop reason = signal SIGINT, name = <lldb.driver.main-thread>, queue = com.apple.main-thread
frame #0: 0x00007fff88a17bca libsystem_kernel.dylib __psynch_cvwait + 10
frame #1: 0x00007fff884ae274 libsystem_c.dylib _pthread_cond_wait + 840
frame #2: 0x00000001010778ea LLDB lldb_private::Condition::Wait(this=0x0000000104846770, mutex=0x0000000104846730, abstime=0x0000000000000000, timed_out=0x00007fff5fbfdea7) + 138 at Condition.cpp:92
frame #3: 0x0000000101244c21 LLDB lldb_private::Predicate<bool>::WaitForValueEqualTo(this=0x0000000104846728, value=true, abstime=0x0000000000000000, timed_out=0x00007fff5fbfdea7) + 209 at Predicate.h:317
frame #4: 0x0000000100f6eeb2 LLDB lldb_private::Listener::WaitForEventsInternal(this=0x0000000104846660, timeout=0x0000000000000000, broadcaster=0x0000000000000000, broadcaster_names=0x0000000000000000, num_broadcaster_names=0x00000000, event_type_mask=0x00000000, event_sp=0x00007fff5fbfe030) + 386 at Listener.cpp:388
frame #5: 0x0000000100f6f231 LLDB lldb_private::Listener::WaitForEvent(this=0x0000000104846660, timeout=0x0000000000000000, event_sp=0x00007fff5fbfe030) + 81 at Listener.cpp:436
frame #6: 0x0000000100098dcd LLDB lldb::SBListener::WaitForEvent(this=0x00007fff5fbff0f0, timeout_secs=0xffffffff, event=0x00007fff5fbfe430) + 685 at SBListener.cpp:181
frame #7: 0x000000010000628c lldb Driver::MainLoop(this=0x00007fff5fbff620) + 5244 at Driver.cpp:1325
frame #8: 0x0000000100006ca3 lldb main(argc=1, argv=0x00007fff5fbff758, envp=0x00007fff5fbff768) + 419 at Driver.cpp:1460
frame #9: 0x0000000100000d54 lldb start + 52
thread #3: tid = 0x2703, 0x00007fff88a17df2 libsystem_kernel.dylib select$DARWIN_EXTSN + 10, name = <lldb.comm.debugger.input>
frame #0: 0x00007fff88a17df2 libsystem_kernel.dylib select$DARWIN_EXTSN + 10
frame #1: 0x0000000100f3f072 LLDB lldb_private::ConnectionFileDescriptor::BytesAvailable(this=0x000000010524d040, timeout_usec=0x004c4b40, error_ptr=0x0000000105640a18) + 722 at ConnectionFileDescriptor.cpp:542
frame #2: 0x0000000100f3e6dd LLDB lldb_private::ConnectionFileDescriptor::Read(this=0x000000010524d040, dst=0x0000000105640a60, dst_len=1024, timeout_usec=0x004c4b40, status=0x0000000105640a14, error_ptr=0x0000000105640a18) + 301 at ConnectionFileDescriptor.cpp:273
frame #3: 0x0000000100f3b8f7 LLDB lldb_private::Communication::ReadFromConnection(this=0x0000000104846270, dst=0x0000000105640a60, dst_len=1024, timeout_usec=0x004c4b40, status=0x0000000105640a14, error_ptr=0x0000000105640a18) + 167 at Communication.cpp:317
frame #4: 0x0000000100f3b197 LLDB lldb_private::Communication::ReadThread(p=0x0000000104846270) + 327 at Communication.cpp:344
frame #5: 0x0000000101078923 LLDB ThreadCreateTrampoline(arg=0x00000001045f6650) + 227 at Host.cpp:549
frame #6: 0x00007fff884aa8bf libsystem_c.dylib _pthread_start + 335
frame #7: 0x00007fff884adb75 libsystem_c.dylib thread_start + 13
thread #4: tid = 0x2803, 0x00007fff88a17df2 libsystem_kernel.dylib select$DARWIN_EXTSN + 10, name = <lldb.comm.driver.editline>
frame #0: 0x00007fff88a17df2 libsystem_kernel.dylib select$DARWIN_EXTSN + 10
frame #1: 0x0000000100f3f072 LLDB lldb_private::ConnectionFileDescriptor::BytesAvailable(this=0x0000000105700370, timeout_usec=0x004c4b40, error_ptr=0x00000001056c3a18) + 722 at ConnectionFileDescriptor.cpp:542
frame #2: 0x0000000100f3e6dd LLDB lldb_private::ConnectionFileDescriptor::Read(this=0x0000000105700370, dst=0x00000001056c3a60, dst_len=1024, timeout_usec=0x004c4b40, status=0x00000001056c3a14, error_ptr=0x00000001056c3a18) + 301 at ConnectionFileDescriptor.cpp:273
frame #3: 0x0000000100f3b8f7 LLDB lldb_private::Communication::ReadFromConnection(this=0x0000000105700000, dst=0x00000001056c3a60, dst_len=1024, timeout_usec=0x004c4b40, status=0x00000001056c3a14, error_ptr=0x00000001056c3a18) + 167 at Communication.cpp:317
frame #4: 0x0000000100f3b197 LLDB lldb_private::Communication::ReadThread(p=0x0000000105700000) + 327 at Communication.cpp:344
frame #5: 0x0000000101078923 LLDB ThreadCreateTrampoline(arg=0x0000000105700430) + 227 at Host.cpp:549
frame #6: 0x00007fff884aa8bf libsystem_c.dylib _pthread_start + 335
frame #7: 0x00007fff884adb75 libsystem_c.dylib thread_start + 13
thread #5: tid = 0x2903, 0x00007fff88a17df2 libsystem_kernel.dylib select$DARWIN_EXTSN + 10, name = <lldb.comm.driver.editline_output>
frame #0: 0x00007fff88a17df2 libsystem_kernel.dylib select$DARWIN_EXTSN + 10
frame #1: 0x0000000100f3f072 LLDB lldb_private::ConnectionFileDescriptor::BytesAvailable(this=0x00000001057178f0, timeout_usec=0x004c4b40, error_ptr=0x0000000105980a18) + 722 at ConnectionFileDescriptor.cpp:542
frame #2: 0x0000000100f3e6dd LLDB lldb_private::ConnectionFileDescriptor::Read(this=0x00000001057178f0, dst=0x0000000105980a60, dst_len=1024, timeout_usec=0x004c4b40, status=0x0000000105980a14, error_ptr=0x0000000105980a18) + 301 at ConnectionFileDescriptor.cpp:273
frame #3: 0x0000000100f3b8f7 LLDB lldb_private::Communication::ReadFromConnection(this=0x0000000105717580, dst=0x0000000105980a60, dst_len=1024, timeout_usec=0x004c4b40, status=0x0000000105980a14, error_ptr=0x0000000105980a18) + 167 at Communication.cpp:317
frame #4: 0x0000000100f3b197 LLDB lldb_private::Communication::ReadThread(p=0x0000000105717580) + 327 at Communication.cpp:344
frame #5: 0x0000000101078923 LLDB ThreadCreateTrampoline(arg=0x00000001057179b0) + 227 at Host.cpp:549
frame #6: 0x00007fff884aa8bf libsystem_c.dylib _pthread_start + 335
frame #7: 0x00007fff884adb75 libsystem_c.dylib thread_start + 13
thread #6: tid = 0x2a03, 0x00007fff88a18af2 libsystem_kernel.dylib read + 10, name = <lldb.driver.commandline_io>
frame #0: 0x00007fff88a18af2 libsystem_kernel.dylib read + 10
frame #1: 0x0000000100050c3b libedit.3.dylib read_init + 247
frame #2: 0x0000000100050e96 libedit.3.dylib el_wgetc + 155
frame #3: 0x000000010005115d libedit.3.dylib el_wgets + 578
frame #4: 0x000000010005debc libedit.3.dylib el_gets + 37
frame #5: 0x000000010000d409 lldb IOChannel::LibeditGetInput(this=0x0000000105700490, new_line=0x0000000105a03db0) + 89 at IOChannel.cpp:311
frame #6: 0x000000010000d8b6 lldb IOChannel::Run(this=0x0000000105700490) + 806 at IOChannel.cpp:391
frame #7: 0x000000010000d57d lldb IOChannel::IOReadThread(ptr=0x0000000105700490) + 29 at IOChannel.cpp:345
frame #8: 0x0000000101078923 LLDB ThreadCreateTrampoline(arg=0x00000001057179f0) + 227 at Host.cpp:549
frame #9: 0x00007fff884aa8bf libsystem_c.dylib _pthread_start + 335
frame #10: 0x00007fff884adb75 libsystem_c.dylib thread_start + 13
(lldb)
llvm-svn: 148110
2012-01-13 16:39:16 +08:00
# include "lldb/Core/ValueObjectVariable.h"
2013-01-29 07:47:25 +08:00
# include "lldb/DataFormatters/DataVisualization.h"
# include "lldb/DataFormatters/FormatManager.h"
2014-03-26 06:03:52 +08:00
# include "lldb/DataFormatters/TypeSummary.h"
2014-10-07 05:22:36 +08:00
# include "lldb/Host/ConnectionFileDescriptor.h"
2014-08-22 01:29:12 +08:00
# include "lldb/Host/HostInfo.h"
2011-02-08 07:24:47 +08:00
# include "lldb/Host/Terminal.h"
2014-09-10 04:54:56 +08:00
# include "lldb/Host/ThreadLauncher.h"
2010-06-23 09:19:29 +08:00
# include "lldb/Interpreter/CommandInterpreter.h"
2012-08-23 01:17:09 +08:00
# include "lldb/Interpreter/OptionValueSInt64.h"
# include "lldb/Interpreter/OptionValueString.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/ClangASTContext.h"
# include "lldb/Symbol/CompileUnit.h"
# include "lldb/Symbol/Function.h"
# include "lldb/Symbol/Symbol.h"
Added a new thread and frame format that can be used to display a function
name + arguments when the data is available. It seems to work really well,
but some more testing is needed before we make this on by default.
The new function format name is:
${function.name-with-args}
To see how to use these formats see the website:
http://lldb.llvm.org/formats.html
Here is a sample backtrace of debugging LLDB with LLDB using this new format
value:
(lldb) thread backtrace all
* thread #1: tid = 0x2203, 0x00007fff88a17bca libsystem_kernel.dylib __psynch_cvwait + 10, stop reason = signal SIGINT, name = <lldb.driver.main-thread>, queue = com.apple.main-thread
frame #0: 0x00007fff88a17bca libsystem_kernel.dylib __psynch_cvwait + 10
frame #1: 0x00007fff884ae274 libsystem_c.dylib _pthread_cond_wait + 840
frame #2: 0x00000001010778ea LLDB lldb_private::Condition::Wait(this=0x0000000104846770, mutex=0x0000000104846730, abstime=0x0000000000000000, timed_out=0x00007fff5fbfdea7) + 138 at Condition.cpp:92
frame #3: 0x0000000101244c21 LLDB lldb_private::Predicate<bool>::WaitForValueEqualTo(this=0x0000000104846728, value=true, abstime=0x0000000000000000, timed_out=0x00007fff5fbfdea7) + 209 at Predicate.h:317
frame #4: 0x0000000100f6eeb2 LLDB lldb_private::Listener::WaitForEventsInternal(this=0x0000000104846660, timeout=0x0000000000000000, broadcaster=0x0000000000000000, broadcaster_names=0x0000000000000000, num_broadcaster_names=0x00000000, event_type_mask=0x00000000, event_sp=0x00007fff5fbfe030) + 386 at Listener.cpp:388
frame #5: 0x0000000100f6f231 LLDB lldb_private::Listener::WaitForEvent(this=0x0000000104846660, timeout=0x0000000000000000, event_sp=0x00007fff5fbfe030) + 81 at Listener.cpp:436
frame #6: 0x0000000100098dcd LLDB lldb::SBListener::WaitForEvent(this=0x00007fff5fbff0f0, timeout_secs=0xffffffff, event=0x00007fff5fbfe430) + 685 at SBListener.cpp:181
frame #7: 0x000000010000628c lldb Driver::MainLoop(this=0x00007fff5fbff620) + 5244 at Driver.cpp:1325
frame #8: 0x0000000100006ca3 lldb main(argc=1, argv=0x00007fff5fbff758, envp=0x00007fff5fbff768) + 419 at Driver.cpp:1460
frame #9: 0x0000000100000d54 lldb start + 52
thread #3: tid = 0x2703, 0x00007fff88a17df2 libsystem_kernel.dylib select$DARWIN_EXTSN + 10, name = <lldb.comm.debugger.input>
frame #0: 0x00007fff88a17df2 libsystem_kernel.dylib select$DARWIN_EXTSN + 10
frame #1: 0x0000000100f3f072 LLDB lldb_private::ConnectionFileDescriptor::BytesAvailable(this=0x000000010524d040, timeout_usec=0x004c4b40, error_ptr=0x0000000105640a18) + 722 at ConnectionFileDescriptor.cpp:542
frame #2: 0x0000000100f3e6dd LLDB lldb_private::ConnectionFileDescriptor::Read(this=0x000000010524d040, dst=0x0000000105640a60, dst_len=1024, timeout_usec=0x004c4b40, status=0x0000000105640a14, error_ptr=0x0000000105640a18) + 301 at ConnectionFileDescriptor.cpp:273
frame #3: 0x0000000100f3b8f7 LLDB lldb_private::Communication::ReadFromConnection(this=0x0000000104846270, dst=0x0000000105640a60, dst_len=1024, timeout_usec=0x004c4b40, status=0x0000000105640a14, error_ptr=0x0000000105640a18) + 167 at Communication.cpp:317
frame #4: 0x0000000100f3b197 LLDB lldb_private::Communication::ReadThread(p=0x0000000104846270) + 327 at Communication.cpp:344
frame #5: 0x0000000101078923 LLDB ThreadCreateTrampoline(arg=0x00000001045f6650) + 227 at Host.cpp:549
frame #6: 0x00007fff884aa8bf libsystem_c.dylib _pthread_start + 335
frame #7: 0x00007fff884adb75 libsystem_c.dylib thread_start + 13
thread #4: tid = 0x2803, 0x00007fff88a17df2 libsystem_kernel.dylib select$DARWIN_EXTSN + 10, name = <lldb.comm.driver.editline>
frame #0: 0x00007fff88a17df2 libsystem_kernel.dylib select$DARWIN_EXTSN + 10
frame #1: 0x0000000100f3f072 LLDB lldb_private::ConnectionFileDescriptor::BytesAvailable(this=0x0000000105700370, timeout_usec=0x004c4b40, error_ptr=0x00000001056c3a18) + 722 at ConnectionFileDescriptor.cpp:542
frame #2: 0x0000000100f3e6dd LLDB lldb_private::ConnectionFileDescriptor::Read(this=0x0000000105700370, dst=0x00000001056c3a60, dst_len=1024, timeout_usec=0x004c4b40, status=0x00000001056c3a14, error_ptr=0x00000001056c3a18) + 301 at ConnectionFileDescriptor.cpp:273
frame #3: 0x0000000100f3b8f7 LLDB lldb_private::Communication::ReadFromConnection(this=0x0000000105700000, dst=0x00000001056c3a60, dst_len=1024, timeout_usec=0x004c4b40, status=0x00000001056c3a14, error_ptr=0x00000001056c3a18) + 167 at Communication.cpp:317
frame #4: 0x0000000100f3b197 LLDB lldb_private::Communication::ReadThread(p=0x0000000105700000) + 327 at Communication.cpp:344
frame #5: 0x0000000101078923 LLDB ThreadCreateTrampoline(arg=0x0000000105700430) + 227 at Host.cpp:549
frame #6: 0x00007fff884aa8bf libsystem_c.dylib _pthread_start + 335
frame #7: 0x00007fff884adb75 libsystem_c.dylib thread_start + 13
thread #5: tid = 0x2903, 0x00007fff88a17df2 libsystem_kernel.dylib select$DARWIN_EXTSN + 10, name = <lldb.comm.driver.editline_output>
frame #0: 0x00007fff88a17df2 libsystem_kernel.dylib select$DARWIN_EXTSN + 10
frame #1: 0x0000000100f3f072 LLDB lldb_private::ConnectionFileDescriptor::BytesAvailable(this=0x00000001057178f0, timeout_usec=0x004c4b40, error_ptr=0x0000000105980a18) + 722 at ConnectionFileDescriptor.cpp:542
frame #2: 0x0000000100f3e6dd LLDB lldb_private::ConnectionFileDescriptor::Read(this=0x00000001057178f0, dst=0x0000000105980a60, dst_len=1024, timeout_usec=0x004c4b40, status=0x0000000105980a14, error_ptr=0x0000000105980a18) + 301 at ConnectionFileDescriptor.cpp:273
frame #3: 0x0000000100f3b8f7 LLDB lldb_private::Communication::ReadFromConnection(this=0x0000000105717580, dst=0x0000000105980a60, dst_len=1024, timeout_usec=0x004c4b40, status=0x0000000105980a14, error_ptr=0x0000000105980a18) + 167 at Communication.cpp:317
frame #4: 0x0000000100f3b197 LLDB lldb_private::Communication::ReadThread(p=0x0000000105717580) + 327 at Communication.cpp:344
frame #5: 0x0000000101078923 LLDB ThreadCreateTrampoline(arg=0x00000001057179b0) + 227 at Host.cpp:549
frame #6: 0x00007fff884aa8bf libsystem_c.dylib _pthread_start + 335
frame #7: 0x00007fff884adb75 libsystem_c.dylib thread_start + 13
thread #6: tid = 0x2a03, 0x00007fff88a18af2 libsystem_kernel.dylib read + 10, name = <lldb.driver.commandline_io>
frame #0: 0x00007fff88a18af2 libsystem_kernel.dylib read + 10
frame #1: 0x0000000100050c3b libedit.3.dylib read_init + 247
frame #2: 0x0000000100050e96 libedit.3.dylib el_wgetc + 155
frame #3: 0x000000010005115d libedit.3.dylib el_wgets + 578
frame #4: 0x000000010005debc libedit.3.dylib el_gets + 37
frame #5: 0x000000010000d409 lldb IOChannel::LibeditGetInput(this=0x0000000105700490, new_line=0x0000000105a03db0) + 89 at IOChannel.cpp:311
frame #6: 0x000000010000d8b6 lldb IOChannel::Run(this=0x0000000105700490) + 806 at IOChannel.cpp:391
frame #7: 0x000000010000d57d lldb IOChannel::IOReadThread(ptr=0x0000000105700490) + 29 at IOChannel.cpp:345
frame #8: 0x0000000101078923 LLDB ThreadCreateTrampoline(arg=0x00000001057179f0) + 227 at Host.cpp:549
frame #9: 0x00007fff884aa8bf libsystem_c.dylib _pthread_start + 335
frame #10: 0x00007fff884adb75 libsystem_c.dylib thread_start + 13
(lldb)
llvm-svn: 148110
2012-01-13 16:39:16 +08:00
# include "lldb/Symbol/VariableList.h"
2014-10-11 07:07:36 +08:00
# include "lldb/Target/CPPLanguageRuntime.h"
# include "lldb/Target/ObjCLanguageRuntime.h"
2010-06-09 00:52:24 +08:00
# include "lldb/Target/TargetList.h"
# include "lldb/Target/Process.h"
2010-09-19 10:33:57 +08:00
# include "lldb/Target/RegisterContext.h"
2013-12-03 03:35:49 +08:00
# include "lldb/Target/SectionLoadList.h"
2010-09-19 10:33:57 +08:00
# include "lldb/Target/StopInfo.h"
2013-05-21 06:29:23 +08:00
# include "lldb/Target/Target.h"
2010-06-09 00:52:24 +08:00
# include "lldb/Target/Thread.h"
2011-10-14 15:41:33 +08:00
# include "lldb/Utility/AnsiTerminal.h"
2010-06-09 00:52:24 +08:00
2014-08-28 04:15:09 +08:00
# include "llvm/Support/DynamicLibrary.h"
2010-06-09 00:52:24 +08:00
using namespace lldb ;
using namespace lldb_private ;
2010-09-19 10:33:57 +08:00
static uint32_t g_shared_debugger_refcount = 0 ;
2010-07-01 00:22:25 +08:00
static lldb : : user_id_t g_unique_id = 1 ;
2014-10-25 06:06:29 +08:00
static size_t g_debugger_event_thread_stack_bytes = 8 * 1024 * 1024 ;
2010-07-01 00:22:25 +08:00
2010-09-19 10:33:57 +08:00
# pragma mark Static Functions
static Mutex &
GetDebuggerListMutex ( )
{
static Mutex g_mutex ( Mutex : : eMutexTypeRecursive ) ;
return g_mutex ;
}
typedef std : : vector < DebuggerSP > DebuggerList ;
static DebuggerList &
GetDebuggerList ( )
{
// hide the static debugger list inside a singleton accessor to avoid
2014-06-27 10:42:12 +08:00
// global init constructors
2010-09-19 10:33:57 +08:00
static DebuggerList g_list ;
return g_list ;
}
2012-08-23 01:17:09 +08:00
OptionEnumValueElement
g_show_disassembly_enum_values [ ] =
{
{ Debugger : : eStopDisassemblyTypeNever , " never " , " Never show disassembly when displaying a stop context. " } ,
{ Debugger : : eStopDisassemblyTypeNoSource , " no-source " , " Show disassembly when there is no source information, or the source file is missing when displaying a stop context. " } ,
{ Debugger : : eStopDisassemblyTypeAlways , " always " , " Always show disassembly when displaying a stop context. " } ,
{ 0 , NULL , NULL }
} ;
OptionEnumValueElement
g_language_enumerators [ ] =
{
{ eScriptLanguageNone , " none " , " Disable scripting languages. " } ,
{ eScriptLanguagePython , " python " , " Select python as the default scripting language. " } ,
{ eScriptLanguageDefault , " default " , " Select the lldb default as the default scripting language. " } ,
2012-09-14 07:03:20 +08:00
{ 0 , NULL , NULL }
2012-08-23 01:17:09 +08:00
} ;
# define MODULE_WITH_FUNC "{ ${module.file.basename}{`${function.name-with-args}${function.pc-offset}}}"
# define FILE_AND_LINE "{ at ${line.file.basename}:${line.number}}"
2013-07-31 00:44:36 +08:00
# define DEFAULT_THREAD_FORMAT "thread #${thread.index}: tid = ${thread.id%tid}"\
2012-08-23 01:17:09 +08:00
" {, ${frame.pc}} " \
MODULE_WITH_FUNC \
FILE_AND_LINE \
2013-07-31 00:44:36 +08:00
" {, name = '${thread.name}'} " \
" {, queue = '${thread.queue}'} " \
2014-06-13 10:37:02 +08:00
" {, activity = '${thread.info.activity.name}'} " \
" {, ${thread.info.trace_messages} messages} " \
2012-08-23 01:17:09 +08:00
" {, stop reason = ${thread.stop-reason}} " \
" { \\ nReturn value: ${thread.return-value}} " \
2014-07-08 09:07:32 +08:00
" { \\ nCompleted expression: ${thread.completed-expression}} " \
2012-08-23 01:17:09 +08:00
" \\ n "
# define DEFAULT_FRAME_FORMAT "frame #${frame.index}: ${frame.pc}"\
MODULE_WITH_FUNC \
FILE_AND_LINE \
" \\ n "
2015-02-14 07:24:21 +08:00
// Three parts to this disassembly format specification:
// 1. If this is a new function/symbol (no previous symbol/function), print
// dylib`funcname:\n
// 2. If this is a symbol context change (different from previous symbol/function), print
// dylib`funcname:\n
// 3. print
// address <+offset>:
# define DEFAULT_DISASSEMBLY_FORMAT "{${function.initial-function}{${module.file.basename}`}{${function.name-without-args}}:\n}{${function.changed}\n{${module.file.basename}`}{${function.name-without-args}}:\n}{${current-pc-arrow} }${addr-file-or-load}{ <${function.concrete-only-addr-offset-no-padding}>}: "
// gdb's disassembly format can be emulated with
// ${current-pc-arrow}${addr-file-or-load}{ <${function.name-without-args}${function.concrete-only-addr-offset-no-padding}>}:
// lldb's original format for disassembly would look like this format string -
// {${function.initial-function}{${module.file.basename}`}{${function.name-without-args}}:\n}{${function.changed}\n{${module.file.basename}`}{${function.name-without-args}}:\n}{${current-pc-arrow} }{${addr-file-or-load}}:
2012-08-23 01:17:09 +08:00
2012-08-23 08:22:02 +08:00
static PropertyDefinition
g_properties [ ] =
2012-08-23 01:17:09 +08:00
{
2015-02-05 06:00:53 +08:00
{ " auto-confirm " , OptionValue : : eTypeBoolean , true , false , NULL , NULL , " If true all confirmation prompts will receive their default reply. " } ,
{ " disassembly-format " , OptionValue : : eTypeFormatEntity , true , 0 , DEFAULT_DISASSEMBLY_FORMAT , NULL , " The default disassembly format string to use when disassembling instruction sequences. " } ,
{ " frame-format " , OptionValue : : eTypeFormatEntity , true , 0 , DEFAULT_FRAME_FORMAT , NULL , " The default frame format string to use when displaying stack frame information for threads. " } ,
{ " notify-void " , OptionValue : : eTypeBoolean , true , false , NULL , NULL , " Notify the user explicitly if an expression returns void (default: false). " } ,
{ " prompt " , OptionValue : : eTypeString , true , OptionValueString : : eOptionEncodeCharacterEscapeSequences , " (lldb) " , NULL , " The debugger command line prompt displayed for the user. " } ,
{ " script-lang " , OptionValue : : eTypeEnum , true , eScriptLanguagePython , NULL , g_language_enumerators , " The script language to be used for evaluating user-written scripts. " } ,
{ " stop-disassembly-count " , OptionValue : : eTypeSInt64 , true , 4 , NULL , NULL , " The number of disassembly lines to show when displaying a stopped context. " } ,
{ " stop-disassembly-display " , OptionValue : : eTypeEnum , true , Debugger : : eStopDisassemblyTypeNoSource , NULL , g_show_disassembly_enum_values , " Control when to display disassembly when displaying a stopped context. " } ,
{ " stop-line-count-after " , OptionValue : : eTypeSInt64 , true , 3 , NULL , NULL , " The number of sources lines to display that come after the current source line when displaying a stopped context. " } ,
{ " stop-line-count-before " , OptionValue : : eTypeSInt64 , true , 3 , NULL , NULL , " The number of sources lines to display that come before the current source line when displaying a stopped context. " } ,
{ " term-width " , OptionValue : : eTypeSInt64 , true , 80 , NULL , NULL , " The maximum number of columns to use for displaying text. " } ,
{ " thread-format " , OptionValue : : eTypeFormatEntity , true , 0 , DEFAULT_THREAD_FORMAT , NULL , " The default thread format string to use when displaying thread information. " } ,
{ " use-external-editor " , OptionValue : : eTypeBoolean , true , false , NULL , NULL , " Whether to use an external editor or not. " } ,
{ " use-color " , OptionValue : : eTypeBoolean , true , true , NULL , NULL , " Whether to use Ansi color codes or not. " } ,
{ " auto-one-line-summaries " , OptionValue : : eTypeBoolean , true , true , NULL , NULL , " If true, LLDB will automatically display small structs in one-liner format (default: true). " } ,
{ " escape-non-printables " , OptionValue : : eTypeBoolean , true , true , NULL , NULL , " If true, LLDB will automatically escape non-printable and escape characters when formatting strings. " } ,
{ NULL , OptionValue : : eTypeInvalid , true , 0 , NULL , NULL , NULL }
2012-08-23 01:17:09 +08:00
} ;
2010-09-19 10:33:57 +08:00
2012-08-23 01:17:09 +08:00
enum
{
ePropertyAutoConfirm = 0 ,
2014-10-11 07:07:36 +08:00
ePropertyDisassemblyFormat ,
2012-08-23 01:17:09 +08:00
ePropertyFrameFormat ,
ePropertyNotiftVoid ,
ePropertyPrompt ,
ePropertyScriptLanguage ,
ePropertyStopDisassemblyCount ,
ePropertyStopDisassemblyDisplay ,
ePropertyStopLineCountAfter ,
ePropertyStopLineCountBefore ,
ePropertyTerminalWidth ,
ePropertyThreadFormat ,
2013-05-24 04:47:45 +08:00
ePropertyUseExternalEditor ,
ePropertyUseColor ,
2014-11-06 05:20:48 +08:00
ePropertyAutoOneLineSummaries ,
ePropertyEscapeNonPrintables
2012-08-23 01:17:09 +08:00
} ;
2010-09-19 10:33:57 +08:00
2013-12-03 03:35:49 +08:00
Debugger : : LoadPluginCallbackType Debugger : : g_load_plugin_callback = NULL ;
2012-09-01 08:38:36 +08:00
Error
Debugger : : SetPropertyValue ( const ExecutionContext * exe_ctx ,
VarSetOperationType op ,
const char * property_path ,
const char * value )
{
2013-05-21 06:29:23 +08:00
bool is_load_script = strcmp ( property_path , " target.load-script-from-symbol-file " ) = = 0 ;
2014-11-06 05:20:48 +08:00
bool is_escape_non_printables = strcmp ( property_path , " escape-non-printables " ) = = 0 ;
2013-05-21 06:29:23 +08:00
TargetSP target_sp ;
2013-05-22 04:13:34 +08:00
LoadScriptFromSymFile load_script_old_value ;
2013-05-21 06:29:23 +08:00
if ( is_load_script & & exe_ctx - > GetTargetSP ( ) )
{
target_sp = exe_ctx - > GetTargetSP ( ) ;
load_script_old_value = target_sp - > TargetProperties : : GetLoadScriptFromSymbolFile ( ) ;
}
2012-09-01 08:38:36 +08:00
Error error ( Properties : : SetPropertyValue ( exe_ctx , op , property_path , value ) ) ;
if ( error . Success ( ) )
{
2013-05-21 06:29:23 +08:00
// FIXME it would be nice to have "on-change" callbacks for properties
2012-09-01 08:38:36 +08:00
if ( strcmp ( property_path , g_properties [ ePropertyPrompt ] . name ) = = 0 )
{
const char * new_prompt = GetPrompt ( ) ;
2013-05-24 04:47:45 +08:00
std : : string str = lldb_utility : : ansi : : FormatAnsiTerminalCodes ( new_prompt , GetUseColor ( ) ) ;
if ( str . length ( ) )
new_prompt = str . c_str ( ) ;
2014-01-28 07:43:24 +08:00
GetCommandInterpreter ( ) . UpdatePrompt ( new_prompt ) ;
2012-09-01 08:38:36 +08:00
EventSP prompt_change_event_sp ( new Event ( CommandInterpreter : : eBroadcastBitResetPrompt , new EventDataBytes ( new_prompt ) ) ) ;
GetCommandInterpreter ( ) . BroadcastEvent ( prompt_change_event_sp ) ;
}
2013-05-24 04:47:45 +08:00
else if ( strcmp ( property_path , g_properties [ ePropertyUseColor ] . name ) = = 0 )
{
// use-color changed. Ping the prompt so it can reset the ansi terminal codes.
SetPrompt ( GetPrompt ( ) ) ;
}
2013-05-22 04:13:34 +08:00
else if ( is_load_script & & target_sp & & load_script_old_value = = eLoadScriptFromSymFileWarn )
2013-05-21 06:29:23 +08:00
{
2013-05-22 04:13:34 +08:00
if ( target_sp - > TargetProperties : : GetLoadScriptFromSymbolFile ( ) = = eLoadScriptFromSymFileTrue )
2013-05-21 06:29:23 +08:00
{
std : : list < Error > errors ;
2013-05-21 08:00:30 +08:00
StreamString feedback_stream ;
if ( ! target_sp - > LoadScriptingResources ( errors , & feedback_stream ) )
2013-05-21 06:29:23 +08:00
{
2014-01-28 07:43:24 +08:00
StreamFileSP stream_sp ( GetErrorFile ( ) ) ;
if ( stream_sp )
2013-05-21 06:29:23 +08:00
{
2014-01-28 07:43:24 +08:00
for ( auto error : errors )
{
stream_sp - > Printf ( " %s \n " , error . AsCString ( ) ) ;
}
if ( feedback_stream . GetSize ( ) )
stream_sp - > Printf ( " %s " , feedback_stream . GetData ( ) ) ;
2013-05-21 06:29:23 +08:00
}
}
}
}
2014-11-06 05:20:48 +08:00
else if ( is_escape_non_printables )
{
DataVisualization : : ForceUpdate ( ) ;
}
2012-09-01 08:38:36 +08:00
}
return error ;
}
2012-08-23 01:17:09 +08:00
bool
Debugger : : GetAutoConfirm ( ) const
2011-11-22 05:44:34 +08:00
{
2012-08-23 01:17:09 +08:00
const uint32_t idx = ePropertyAutoConfirm ;
2012-08-23 08:22:02 +08:00
return m_collection_sp - > GetPropertyAtIndexAsBoolean ( NULL , idx , g_properties [ idx ] . default_uint_value ! = 0 ) ;
2011-11-22 05:44:34 +08:00
}
2015-02-05 06:00:53 +08:00
const FormatEntity : : Entry *
2014-10-11 07:07:36 +08:00
Debugger : : GetDisassemblyFormat ( ) const
{
const uint32_t idx = ePropertyDisassemblyFormat ;
2015-02-05 06:00:53 +08:00
return m_collection_sp - > GetPropertyAtIndexAsFormatEntity ( NULL , idx ) ;
2014-10-11 07:07:36 +08:00
}
2015-02-05 06:00:53 +08:00
const FormatEntity : : Entry *
2012-08-23 01:17:09 +08:00
Debugger : : GetFrameFormat ( ) const
2012-08-10 02:18:47 +08:00
{
2012-08-23 01:17:09 +08:00
const uint32_t idx = ePropertyFrameFormat ;
2015-02-05 06:00:53 +08:00
return m_collection_sp - > GetPropertyAtIndexAsFormatEntity ( NULL , idx ) ;
2012-08-10 02:18:47 +08:00
}
2012-08-23 01:17:09 +08:00
bool
Debugger : : GetNotifyVoid ( ) const
2011-11-22 05:44:34 +08:00
{
2012-08-23 01:17:09 +08:00
const uint32_t idx = ePropertyNotiftVoid ;
2012-08-23 08:22:02 +08:00
return m_collection_sp - > GetPropertyAtIndexAsBoolean ( NULL , idx , g_properties [ idx ] . default_uint_value ! = 0 ) ;
2011-11-22 05:44:34 +08:00
}
2012-08-23 01:17:09 +08:00
const char *
Debugger : : GetPrompt ( ) const
2011-11-22 05:44:34 +08:00
{
2012-08-23 01:17:09 +08:00
const uint32_t idx = ePropertyPrompt ;
2012-08-23 08:22:02 +08:00
return m_collection_sp - > GetPropertyAtIndexAsString ( NULL , idx , g_properties [ idx ] . default_cstr_value ) ;
2011-11-22 05:44:34 +08:00
}
2012-08-23 01:17:09 +08:00
void
Debugger : : SetPrompt ( const char * p )
2011-11-22 05:44:34 +08:00
{
2012-08-23 01:17:09 +08:00
const uint32_t idx = ePropertyPrompt ;
m_collection_sp - > SetPropertyAtIndexAsString ( NULL , idx , p ) ;
const char * new_prompt = GetPrompt ( ) ;
2013-05-24 04:47:45 +08:00
std : : string str = lldb_utility : : ansi : : FormatAnsiTerminalCodes ( new_prompt , GetUseColor ( ) ) ;
if ( str . length ( ) )
new_prompt = str . c_str ( ) ;
2014-01-28 07:43:24 +08:00
GetCommandInterpreter ( ) . UpdatePrompt ( new_prompt ) ;
2011-11-22 05:44:34 +08:00
}
2015-02-05 06:00:53 +08:00
const FormatEntity : : Entry *
2012-08-23 01:17:09 +08:00
Debugger : : GetThreadFormat ( ) const
2011-11-22 05:44:34 +08:00
{
2012-08-23 01:17:09 +08:00
const uint32_t idx = ePropertyThreadFormat ;
2015-02-05 06:00:53 +08:00
return m_collection_sp - > GetPropertyAtIndexAsFormatEntity ( NULL , idx ) ;
2011-11-22 05:44:34 +08:00
}
2012-08-23 01:17:09 +08:00
lldb : : ScriptLanguage
Debugger : : GetScriptLanguage ( ) const
2011-11-22 05:44:34 +08:00
{
2012-08-23 01:17:09 +08:00
const uint32_t idx = ePropertyScriptLanguage ;
2012-08-23 08:22:02 +08:00
return ( lldb : : ScriptLanguage ) m_collection_sp - > GetPropertyAtIndexAsEnumeration ( NULL , idx , g_properties [ idx ] . default_uint_value ) ;
2011-11-22 05:44:34 +08:00
}
2012-08-23 01:17:09 +08:00
bool
Debugger : : SetScriptLanguage ( lldb : : ScriptLanguage script_lang )
2011-11-22 05:44:34 +08:00
{
2012-08-23 01:17:09 +08:00
const uint32_t idx = ePropertyScriptLanguage ;
return m_collection_sp - > SetPropertyAtIndexAsEnumeration ( NULL , idx , script_lang ) ;
2011-11-22 05:44:34 +08:00
}
2012-08-23 01:17:09 +08:00
uint32_t
Debugger : : GetTerminalWidth ( ) const
2011-11-22 05:44:34 +08:00
{
2012-08-23 01:17:09 +08:00
const uint32_t idx = ePropertyTerminalWidth ;
2012-08-23 08:22:02 +08:00
return m_collection_sp - > GetPropertyAtIndexAsSInt64 ( NULL , idx , g_properties [ idx ] . default_uint_value ) ;
2011-11-22 05:44:34 +08:00
}
2012-08-23 01:17:09 +08:00
bool
Debugger : : SetTerminalWidth ( uint32_t term_width )
2011-11-22 05:44:34 +08:00
{
2012-08-23 01:17:09 +08:00
const uint32_t idx = ePropertyTerminalWidth ;
return m_collection_sp - > SetPropertyAtIndexAsSInt64 ( NULL , idx , term_width ) ;
2011-11-22 05:44:34 +08:00
}
2012-08-23 01:17:09 +08:00
bool
Debugger : : GetUseExternalEditor ( ) const
2011-11-22 05:44:34 +08:00
{
2012-08-23 01:17:09 +08:00
const uint32_t idx = ePropertyUseExternalEditor ;
2012-08-23 08:22:02 +08:00
return m_collection_sp - > GetPropertyAtIndexAsBoolean ( NULL , idx , g_properties [ idx ] . default_uint_value ! = 0 ) ;
2011-11-22 05:44:34 +08:00
}
2012-08-23 01:17:09 +08:00
bool
Debugger : : SetUseExternalEditor ( bool b )
2011-11-22 05:44:34 +08:00
{
2012-08-23 01:17:09 +08:00
const uint32_t idx = ePropertyUseExternalEditor ;
return m_collection_sp - > SetPropertyAtIndexAsBoolean ( NULL , idx , b ) ;
2011-11-22 05:44:34 +08:00
}
2013-05-24 04:47:45 +08:00
bool
Debugger : : GetUseColor ( ) const
{
const uint32_t idx = ePropertyUseColor ;
return m_collection_sp - > GetPropertyAtIndexAsBoolean ( NULL , idx , g_properties [ idx ] . default_uint_value ! = 0 ) ;
}
bool
Debugger : : SetUseColor ( bool b )
{
const uint32_t idx = ePropertyUseColor ;
bool ret = m_collection_sp - > SetPropertyAtIndexAsBoolean ( NULL , idx , b ) ;
SetPrompt ( GetPrompt ( ) ) ;
return ret ;
}
2012-08-23 01:17:09 +08:00
uint32_t
Debugger : : GetStopSourceLineCount ( bool before ) const
2011-11-22 05:44:34 +08:00
{
2012-08-23 01:17:09 +08:00
const uint32_t idx = before ? ePropertyStopLineCountBefore : ePropertyStopLineCountAfter ;
2012-08-23 08:22:02 +08:00
return m_collection_sp - > GetPropertyAtIndexAsSInt64 ( NULL , idx , g_properties [ idx ] . default_uint_value ) ;
2012-08-23 01:17:09 +08:00
}
2011-11-22 05:44:34 +08:00
2012-08-23 01:17:09 +08:00
Debugger : : StopDisassemblyType
Debugger : : GetStopDisassemblyDisplay ( ) const
{
const uint32_t idx = ePropertyStopDisassemblyDisplay ;
2012-08-23 08:22:02 +08:00
return ( Debugger : : StopDisassemblyType ) m_collection_sp - > GetPropertyAtIndexAsEnumeration ( NULL , idx , g_properties [ idx ] . default_uint_value ) ;
2012-08-23 01:17:09 +08:00
}
2011-11-22 05:44:34 +08:00
2012-08-23 01:17:09 +08:00
uint32_t
Debugger : : GetDisassemblyLineCount ( ) const
{
const uint32_t idx = ePropertyStopDisassemblyCount ;
2012-08-23 08:22:02 +08:00
return m_collection_sp - > GetPropertyAtIndexAsSInt64 ( NULL , idx , g_properties [ idx ] . default_uint_value ) ;
2012-08-23 01:17:09 +08:00
}
2011-11-22 05:44:34 +08:00
2013-10-26 07:09:40 +08:00
bool
2013-11-01 05:01:07 +08:00
Debugger : : GetAutoOneLineSummaries ( ) const
2013-10-26 07:09:40 +08:00
{
2013-11-01 05:01:07 +08:00
const uint32_t idx = ePropertyAutoOneLineSummaries ;
2013-10-26 07:09:40 +08:00
return m_collection_sp - > GetPropertyAtIndexAsBoolean ( NULL , idx , true ) ;
2014-11-06 05:20:48 +08:00
}
2013-10-26 07:09:40 +08:00
2014-11-06 05:20:48 +08:00
bool
Debugger : : GetEscapeNonPrintables ( ) const
{
const uint32_t idx = ePropertyEscapeNonPrintables ;
return m_collection_sp - > GetPropertyAtIndexAsBoolean ( NULL , idx , true ) ;
2013-10-26 07:09:40 +08:00
}
2010-09-19 10:33:57 +08:00
# pragma mark Debugger
2012-08-23 01:17:09 +08:00
//const DebuggerPropertiesSP &
//Debugger::GetSettings() const
//{
// return m_properties_sp;
//}
//
2010-11-19 07:32:35 +08:00
2011-01-14 08:29:16 +08:00
int
Debugger : : TestDebuggerRefCount ( )
{
return g_shared_debugger_refcount ;
}
2010-06-09 00:52:24 +08:00
void
2013-12-03 03:35:49 +08:00
Debugger : : Initialize ( LoadPluginCallbackType load_plugin_callback )
2010-06-09 00:52:24 +08:00
{
2013-12-03 03:35:49 +08:00
g_load_plugin_callback = load_plugin_callback ;
2012-03-31 04:53:46 +08:00
if ( g_shared_debugger_refcount + + = = 0 )
2010-11-19 11:46:01 +08:00
lldb_private : : Initialize ( ) ;
2010-06-09 00:52:24 +08:00
}
void
Debugger : : Terminate ( )
{
2010-06-23 09:19:29 +08:00
if ( g_shared_debugger_refcount > 0 )
2010-06-09 00:52:24 +08:00
{
2010-06-23 09:19:29 +08:00
g_shared_debugger_refcount - - ;
if ( g_shared_debugger_refcount = = 0 )
2010-06-09 00:52:24 +08:00
{
2010-11-19 11:46:01 +08:00
lldb_private : : WillTerminate ( ) ;
lldb_private : : Terminate ( ) ;
2011-01-18 05:55:19 +08:00
// Clear our master list of debugger objects
Mutex : : Locker locker ( GetDebuggerListMutex ( ) ) ;
GetDebuggerList ( ) . clear ( ) ;
2010-06-09 00:52:24 +08:00
}
}
}
2011-03-11 06:14:10 +08:00
void
Debugger : : SettingsInitialize ( )
{
2012-08-23 02:39:03 +08:00
Target : : SettingsInitialize ( ) ;
2011-03-11 06:14:10 +08:00
}
void
Debugger : : SettingsTerminate ( )
{
2012-08-23 02:39:03 +08:00
Target : : SettingsTerminate ( ) ;
2011-03-11 06:14:10 +08:00
}
2012-09-29 07:57:51 +08:00
bool
2013-04-25 05:29:08 +08:00
Debugger : : LoadPlugin ( const FileSpec & spec , Error & error )
2012-09-29 07:57:51 +08:00
{
2013-12-03 03:35:49 +08:00
if ( g_load_plugin_callback )
2013-04-25 05:29:08 +08:00
{
2014-08-28 04:15:09 +08:00
llvm : : sys : : DynamicLibrary dynlib = g_load_plugin_callback ( shared_from_this ( ) , spec , error ) ;
if ( dynlib . isValid ( ) )
2013-12-03 03:35:49 +08:00
{
2014-08-28 04:15:09 +08:00
m_loaded_plugins . push_back ( dynlib ) ;
2013-12-03 03:35:49 +08:00
return true ;
}
2013-04-25 05:29:08 +08:00
}
2013-12-03 03:35:49 +08:00
else
2012-09-29 07:57:51 +08:00
{
2013-12-03 03:35:49 +08:00
// The g_load_plugin_callback is registered in SBDebugger::Initialize()
// and if the public API layer isn't available (code is linking against
// all of the internal LLDB static libraries), then we can't load plugins
error . SetErrorString ( " Public API layer is not available " ) ;
2012-09-29 07:57:51 +08:00
}
return false ;
}
static FileSpec : : EnumerateDirectoryResult
LoadPluginCallback
(
void * baton ,
FileSpec : : FileType file_type ,
const FileSpec & file_spec
)
{
Error error ;
static ConstString g_dylibext ( " dylib " ) ;
2013-07-17 08:26:30 +08:00
static ConstString g_solibext ( " so " ) ;
2012-09-29 07:57:51 +08:00
if ( ! baton )
return FileSpec : : eEnumerateDirectoryResultQuit ;
Debugger * debugger = ( Debugger * ) baton ;
// If we have a regular file, a symbolic link or unknown file type, try
// and process the file. We must handle unknown as sometimes the directory
// enumeration might be enumerating a file system that doesn't have correct
// file type information.
if ( file_type = = FileSpec : : eFileTypeRegular | |
file_type = = FileSpec : : eFileTypeSymbolicLink | |
file_type = = FileSpec : : eFileTypeUnknown )
{
FileSpec plugin_file_spec ( file_spec ) ;
plugin_file_spec . ResolvePath ( ) ;
2013-07-17 08:26:30 +08:00
if ( plugin_file_spec . GetFileNameExtension ( ) ! = g_dylibext & &
plugin_file_spec . GetFileNameExtension ( ) ! = g_solibext )
{
2012-09-29 07:57:51 +08:00
return FileSpec : : eEnumerateDirectoryResultNext ;
2013-07-17 08:26:30 +08:00
}
2012-09-29 07:57:51 +08:00
2013-04-25 05:29:08 +08:00
Error plugin_load_error ;
debugger - > LoadPlugin ( plugin_file_spec , plugin_load_error ) ;
2012-09-29 07:57:51 +08:00
return FileSpec : : eEnumerateDirectoryResultNext ;
}
else if ( file_type = = FileSpec : : eFileTypeUnknown | |
file_type = = FileSpec : : eFileTypeDirectory | |
file_type = = FileSpec : : eFileTypeSymbolicLink )
{
// Try and recurse into anything that a directory or symbolic link.
// We must also do this for unknown as sometimes the directory enumeration
2014-06-27 10:42:12 +08:00
// might be enumerating a file system that doesn't have correct file type
2012-09-29 07:57:51 +08:00
// information.
return FileSpec : : eEnumerateDirectoryResultEnter ;
}
return FileSpec : : eEnumerateDirectoryResultNext ;
}
void
Debugger : : InstanceInitialize ( )
{
FileSpec dir_spec ;
const bool find_directories = true ;
const bool find_files = true ;
const bool find_other = true ;
char dir_path [ PATH_MAX ] ;
2014-08-22 01:29:12 +08:00
if ( HostInfo : : GetLLDBPath ( ePathTypeLLDBSystemPlugins , dir_spec ) )
2012-09-29 07:57:51 +08:00
{
if ( dir_spec . Exists ( ) & & dir_spec . GetPath ( dir_path , sizeof ( dir_path ) ) )
{
FileSpec : : EnumerateDirectory ( dir_path ,
find_directories ,
find_files ,
find_other ,
LoadPluginCallback ,
this ) ;
}
}
2014-08-22 01:29:12 +08:00
if ( HostInfo : : GetLLDBPath ( ePathTypeLLDBUserPlugins , dir_spec ) )
2012-09-29 07:57:51 +08:00
{
if ( dir_spec . Exists ( ) & & dir_spec . GetPath ( dir_path , sizeof ( dir_path ) ) )
{
FileSpec : : EnumerateDirectory ( dir_path ,
find_directories ,
find_files ,
find_other ,
LoadPluginCallback ,
this ) ;
}
}
2012-10-20 02:02:49 +08:00
PluginManager : : DebuggerInitialize ( * this ) ;
2012-09-29 07:57:51 +08:00
}
2010-06-23 09:19:29 +08:00
DebuggerSP
2012-02-21 10:23:08 +08:00
Debugger : : CreateInstance ( lldb : : LogOutputCallback log_callback , void * baton )
2010-06-23 09:19:29 +08:00
{
2012-02-21 10:23:08 +08:00
DebuggerSP debugger_sp ( new Debugger ( log_callback , baton ) ) ;
2012-03-31 04:53:46 +08:00
if ( g_shared_debugger_refcount > 0 )
2010-06-23 09:19:29 +08:00
{
Mutex : : Locker locker ( GetDebuggerListMutex ( ) ) ;
GetDebuggerList ( ) . push_back ( debugger_sp ) ;
}
2012-09-29 07:57:51 +08:00
debugger_sp - > InstanceInitialize ( ) ;
2010-06-23 09:19:29 +08:00
return debugger_sp ;
}
2011-01-22 09:02:07 +08:00
void
2011-09-17 16:33:22 +08:00
Debugger : : Destroy ( DebuggerSP & debugger_sp )
2011-01-22 09:02:07 +08:00
{
if ( debugger_sp . get ( ) = = NULL )
return ;
2011-09-16 05:36:42 +08:00
debugger_sp - > Clear ( ) ;
2012-03-31 04:53:46 +08:00
if ( g_shared_debugger_refcount > 0 )
2011-01-22 09:02:07 +08:00
{
2012-03-31 04:53:46 +08:00
Mutex : : Locker locker ( GetDebuggerListMutex ( ) ) ;
DebuggerList & debugger_list = GetDebuggerList ( ) ;
DebuggerList : : iterator pos , end = debugger_list . end ( ) ;
for ( pos = debugger_list . begin ( ) ; pos ! = end ; + + pos )
2011-01-22 09:02:07 +08:00
{
2012-03-31 04:53:46 +08:00
if ( ( * pos ) . get ( ) = = debugger_sp . get ( ) )
{
debugger_list . erase ( pos ) ;
return ;
}
2011-01-22 09:02:07 +08:00
}
}
}
2011-09-17 16:33:22 +08:00
DebuggerSP
2010-09-04 08:03:46 +08:00
Debugger : : FindDebuggerWithInstanceName ( const ConstString & instance_name )
{
2011-09-17 16:33:22 +08:00
DebuggerSP debugger_sp ;
2012-08-23 02:39:03 +08:00
if ( g_shared_debugger_refcount > 0 )
{
Mutex : : Locker locker ( GetDebuggerListMutex ( ) ) ;
DebuggerList & debugger_list = GetDebuggerList ( ) ;
DebuggerList : : iterator pos , end = debugger_list . end ( ) ;
for ( pos = debugger_list . begin ( ) ; pos ! = end ; + + pos )
{
if ( ( * pos ) . get ( ) - > m_instance_name = = instance_name )
{
debugger_sp = * pos ;
break ;
}
}
}
2010-09-04 08:03:46 +08:00
return debugger_sp ;
}
2010-06-23 09:19:29 +08:00
TargetSP
Debugger : : FindTargetWithProcessID ( lldb : : pid_t pid )
{
2011-09-17 16:33:22 +08:00
TargetSP target_sp ;
2012-03-31 04:53:46 +08:00
if ( g_shared_debugger_refcount > 0 )
2010-06-23 09:19:29 +08:00
{
2012-03-31 04:53:46 +08:00
Mutex : : Locker locker ( GetDebuggerListMutex ( ) ) ;
DebuggerList & debugger_list = GetDebuggerList ( ) ;
DebuggerList : : iterator pos , end = debugger_list . end ( ) ;
for ( pos = debugger_list . begin ( ) ; pos ! = end ; + + pos )
{
target_sp = ( * pos ) - > GetTargetList ( ) . FindTargetWithProcessID ( pid ) ;
if ( target_sp )
break ;
}
2010-06-23 09:19:29 +08:00
}
return target_sp ;
}
2011-11-16 13:37:56 +08:00
TargetSP
Debugger : : FindTargetWithProcess ( Process * process )
{
TargetSP target_sp ;
2012-03-31 04:53:46 +08:00
if ( g_shared_debugger_refcount > 0 )
2011-11-16 13:37:56 +08:00
{
2012-03-31 04:53:46 +08:00
Mutex : : Locker locker ( GetDebuggerListMutex ( ) ) ;
DebuggerList & debugger_list = GetDebuggerList ( ) ;
DebuggerList : : iterator pos , end = debugger_list . end ( ) ;
for ( pos = debugger_list . begin ( ) ; pos ! = end ; + + pos )
{
target_sp = ( * pos ) - > GetTargetList ( ) . FindTargetWithProcess ( process ) ;
if ( target_sp )
break ;
}
2011-11-16 13:37:56 +08:00
}
return target_sp ;
}
2014-09-12 09:50:46 +08:00
Debugger : : Debugger ( lldb : : LogOutputCallback log_callback , void * baton ) :
UserID ( g_unique_id + + ) ,
Properties ( OptionValuePropertiesSP ( new OptionValueProperties ( ) ) ) ,
m_input_file_sp ( new StreamFile ( stdin , false ) ) ,
m_output_file_sp ( new StreamFile ( stdout , false ) ) ,
m_error_file_sp ( new StreamFile ( stderr , false ) ) ,
m_terminal_state ( ) ,
m_target_list ( * this ) ,
m_platform_list ( ) ,
m_listener ( " lldb.Debugger " ) ,
m_source_manager_ap ( ) ,
m_source_file_cache ( ) ,
m_command_interpreter_ap ( new CommandInterpreter ( * this , eScriptLanguageDefault , false ) ) ,
m_input_reader_stack ( ) ,
m_instance_name ( ) ,
2014-12-02 06:41:27 +08:00
m_loaded_plugins ( ) ,
m_event_handler_thread ( ) ,
m_io_handler_thread ( ) ,
m_sync_broadcaster ( NULL , " lldb.debugger.sync " )
2010-06-09 00:52:24 +08:00
{
2012-08-23 01:17:09 +08:00
char instance_cstr [ 256 ] ;
snprintf ( instance_cstr , sizeof ( instance_cstr ) , " debugger_%d " , ( int ) GetID ( ) ) ;
m_instance_name . SetCString ( instance_cstr ) ;
2012-02-21 10:23:08 +08:00
if ( log_callback )
m_log_callback_stream_sp . reset ( new StreamCallback ( log_callback , baton ) ) ;
2010-06-23 09:19:29 +08:00
m_command_interpreter_ap - > Initialize ( ) ;
2011-03-19 09:12:21 +08:00
// Always add our default platform to the platform list
2014-09-20 04:11:50 +08:00
PlatformSP default_platform_sp ( Platform : : GetHostPlatform ( ) ) ;
2011-03-19 09:12:21 +08:00
assert ( default_platform_sp . get ( ) ) ;
m_platform_list . Append ( default_platform_sp , true ) ;
2012-08-23 01:17:09 +08:00
2012-08-23 08:22:02 +08:00
m_collection_sp - > Initialize ( g_properties ) ;
2012-08-23 01:17:09 +08:00
m_collection_sp - > AppendProperty ( ConstString ( " target " ) ,
ConstString ( " Settings specify to debugging targets. " ) ,
true ,
Target : : GetGlobalProperties ( ) - > GetValueProperties ( ) ) ;
2012-08-23 08:22:02 +08:00
if ( m_command_interpreter_ap . get ( ) )
{
m_collection_sp - > AppendProperty ( ConstString ( " interpreter " ) ,
ConstString ( " Settings specify to the debugger's command interpreter. " ) ,
true ,
m_command_interpreter_ap - > GetValueProperties ( ) ) ;
}
2012-08-23 01:17:09 +08:00
OptionValueSInt64 * term_width = m_collection_sp - > GetPropertyAtIndexAsOptionValueSInt64 ( NULL , ePropertyTerminalWidth ) ;
term_width - > SetMinimumValue ( 10 ) ;
term_width - > SetMaximumValue ( 1024 ) ;
2013-05-24 04:47:45 +08:00
// Turn off use-color if this is a dumb terminal.
const char * term = getenv ( " TERM " ) ;
if ( term & & ! strcmp ( term , " dumb " ) )
SetUseColor ( false ) ;
2010-06-09 00:52:24 +08:00
}
Debugger : : ~ Debugger ( )
2011-09-16 05:36:42 +08:00
{
Clear ( ) ;
}
void
Debugger : : Clear ( )
2010-06-09 00:52:24 +08:00
{
2014-01-28 07:43:24 +08:00
ClearIOHandlers ( ) ;
StopIOHandlerThread ( ) ;
StopEventHandlerThread ( ) ;
2011-10-01 08:45:15 +08:00
m_listener . Clear ( ) ;
2010-06-23 09:19:29 +08:00
int num_targets = m_target_list . GetNumTargets ( ) ;
for ( int i = 0 ; i < num_targets ; i + + )
{
2012-01-15 01:04:19 +08:00
TargetSP target_sp ( m_target_list . GetTargetAtIndex ( i ) ) ;
if ( target_sp )
2011-09-16 05:36:42 +08:00
{
2012-01-15 01:04:19 +08:00
ProcessSP process_sp ( target_sp - > GetProcessSP ( ) ) ;
if ( process_sp )
2013-02-28 03:13:05 +08:00
process_sp - > Finalize ( ) ;
2012-01-15 01:04:19 +08:00
target_sp - > Destroy ( ) ;
2011-09-16 05:36:42 +08:00
}
2010-06-23 09:19:29 +08:00
}
2012-02-16 14:50:00 +08:00
BroadcasterManager : : Clear ( ) ;
2012-05-16 08:11:54 +08:00
// Close the input file _before_ we close the input read communications class
// as it does NOT own the input file, our m_input_file does.
2012-12-01 04:23:19 +08:00
m_terminal_state . Clear ( ) ;
2014-01-28 07:43:24 +08:00
if ( m_input_file_sp )
m_input_file_sp - > GetFile ( ) . Close ( ) ;
2014-04-25 08:35:14 +08:00
m_command_interpreter_ap - > Clear ( ) ;
2011-09-16 05:36:42 +08:00
}
2010-06-09 00:52:24 +08:00
2011-05-29 12:06:55 +08:00
bool
Debugger : : GetCloseInputOnEOF ( ) const
{
2014-01-28 07:43:24 +08:00
// return m_input_comm.GetCloseOnEOF();
return false ;
2011-05-29 12:06:55 +08:00
}
void
Debugger : : SetCloseInputOnEOF ( bool b )
{
2014-01-28 07:43:24 +08:00
// m_input_comm.SetCloseOnEOF(b);
2011-05-29 12:06:55 +08:00
}
2010-06-09 00:52:24 +08:00
bool
Debugger : : GetAsyncExecution ( )
{
2010-06-23 09:19:29 +08:00
return ! m_command_interpreter_ap - > GetSynchronous ( ) ;
2010-06-09 00:52:24 +08:00
}
void
Debugger : : SetAsyncExecution ( bool async_execution )
{
2010-06-23 09:19:29 +08:00
m_command_interpreter_ap - > SetSynchronous ( ! async_execution ) ;
2010-06-09 00:52:24 +08:00
}
void
Debugger : : SetInputFileHandle ( FILE * fh , bool tranfer_ownership )
{
2014-01-28 07:43:24 +08:00
if ( m_input_file_sp )
m_input_file_sp - > GetFile ( ) . SetStream ( fh , tranfer_ownership ) ;
else
m_input_file_sp . reset ( new StreamFile ( fh , tranfer_ownership ) ) ;
File & in_file = m_input_file_sp - > GetFile ( ) ;
2011-02-09 09:08:52 +08:00
if ( in_file . IsValid ( ) = = false )
in_file . SetStream ( stdin , true ) ;
2010-06-09 00:52:24 +08:00
2012-12-01 04:23:19 +08:00
// Save away the terminal state if that is relevant, so that we can restore it in RestoreInputState.
SaveInputTerminalState ( ) ;
2010-06-09 00:52:24 +08:00
}
void
Debugger : : SetOutputFileHandle ( FILE * fh , bool tranfer_ownership )
{
2014-01-28 07:43:24 +08:00
if ( m_output_file_sp )
m_output_file_sp - > GetFile ( ) . SetStream ( fh , tranfer_ownership ) ;
else
m_output_file_sp . reset ( new StreamFile ( fh , tranfer_ownership ) ) ;
File & out_file = m_output_file_sp - > GetFile ( ) ;
2011-02-09 09:08:52 +08:00
if ( out_file . IsValid ( ) = = false )
out_file . SetStream ( stdout , false ) ;
2011-01-14 08:29:16 +08:00
2012-10-30 05:18:03 +08:00
// do not create the ScriptInterpreter just for setting the output file handle
// as the constructor will know how to do the right thing on its own
const bool can_create = false ;
ScriptInterpreter * script_interpreter = GetCommandInterpreter ( ) . GetScriptInterpreter ( can_create ) ;
if ( script_interpreter )
script_interpreter - > ResetOutputFileHandle ( fh ) ;
2010-06-09 00:52:24 +08:00
}
void
Debugger : : SetErrorFileHandle ( FILE * fh , bool tranfer_ownership )
{
2014-01-28 07:43:24 +08:00
if ( m_error_file_sp )
m_error_file_sp - > GetFile ( ) . SetStream ( fh , tranfer_ownership ) ;
else
m_error_file_sp . reset ( new StreamFile ( fh , tranfer_ownership ) ) ;
File & err_file = m_error_file_sp - > GetFile ( ) ;
2011-02-09 09:08:52 +08:00
if ( err_file . IsValid ( ) = = false )
err_file . SetStream ( stderr , false ) ;
2010-06-09 00:52:24 +08:00
}
2012-12-01 04:23:19 +08:00
void
Debugger : : SaveInputTerminalState ( )
{
2014-01-28 07:43:24 +08:00
if ( m_input_file_sp )
{
File & in_file = m_input_file_sp - > GetFile ( ) ;
if ( in_file . GetDescriptor ( ) ! = File : : kInvalidDescriptor )
m_terminal_state . Save ( in_file . GetDescriptor ( ) , true ) ;
}
2012-12-01 04:23:19 +08:00
}
void
Debugger : : RestoreInputTerminalState ( )
{
m_terminal_state . Restore ( ) ;
}
2010-06-09 00:52:24 +08:00
ExecutionContext
2010-08-27 05:32:51 +08:00
Debugger : : GetSelectedExecutionContext ( )
2010-06-09 00:52:24 +08:00
{
ExecutionContext exe_ctx ;
2011-09-22 12:58:26 +08:00
TargetSP target_sp ( GetSelectedTarget ( ) ) ;
exe_ctx . SetTargetSP ( target_sp ) ;
2010-06-09 00:52:24 +08:00
if ( target_sp )
{
2011-09-22 12:58:26 +08:00
ProcessSP process_sp ( target_sp - > GetProcessSP ( ) ) ;
exe_ctx . SetProcessSP ( process_sp ) ;
if ( process_sp & & process_sp - > IsRunning ( ) = = false )
2010-06-09 00:52:24 +08:00
{
2011-09-22 12:58:26 +08:00
ThreadSP thread_sp ( process_sp - > GetThreadList ( ) . GetSelectedThread ( ) ) ;
if ( thread_sp )
2010-06-09 00:52:24 +08:00
{
2011-09-22 12:58:26 +08:00
exe_ctx . SetThreadSP ( thread_sp ) ;
exe_ctx . SetFrameSP ( thread_sp - > GetSelectedFrame ( ) ) ;
if ( exe_ctx . GetFramePtr ( ) = = NULL )
exe_ctx . SetFrameSP ( thread_sp - > GetStackFrameAtIndex ( 0 ) ) ;
2010-06-09 00:52:24 +08:00
}
}
}
return exe_ctx ;
}
2010-11-20 04:47:54 +08:00
void
Debugger : : DispatchInputInterrupt ( )
{
2014-01-28 07:43:24 +08:00
Mutex : : Locker locker ( m_input_reader_stack . GetMutex ( ) ) ;
IOHandlerSP reader_sp ( m_input_reader_stack . Top ( ) ) ;
2011-02-10 09:15:13 +08:00
if ( reader_sp )
2014-01-28 07:43:24 +08:00
reader_sp - > Interrupt ( ) ;
2010-11-20 04:47:54 +08:00
}
void
Debugger : : DispatchInputEndOfFile ( )
{
2014-01-28 07:43:24 +08:00
Mutex : : Locker locker ( m_input_reader_stack . GetMutex ( ) ) ;
IOHandlerSP reader_sp ( m_input_reader_stack . Top ( ) ) ;
2011-02-10 09:15:13 +08:00
if ( reader_sp )
2014-01-28 07:43:24 +08:00
reader_sp - > GotEOF ( ) ;
2010-11-20 04:47:54 +08:00
}
2010-12-21 02:35:50 +08:00
void
2014-01-28 07:43:24 +08:00
Debugger : : ClearIOHandlers ( )
2010-12-21 02:35:50 +08:00
{
2011-02-10 09:15:13 +08:00
// The bottom input reader should be the main debugger input reader. We do not want to close that one here.
2014-01-28 07:43:24 +08:00
Mutex : : Locker locker ( m_input_reader_stack . GetMutex ( ) ) ;
2011-06-03 03:18:55 +08:00
while ( m_input_reader_stack . GetSize ( ) > 1 )
2010-12-21 02:35:50 +08:00
{
2014-01-28 07:43:24 +08:00
IOHandlerSP reader_sp ( m_input_reader_stack . Top ( ) ) ;
2010-12-21 02:35:50 +08:00
if ( reader_sp )
{
2014-01-28 07:43:24 +08:00
m_input_reader_stack . Pop ( ) ;
reader_sp - > SetIsDone ( true ) ;
2014-02-25 06:50:57 +08:00
reader_sp - > Cancel ( ) ;
2010-12-21 02:35:50 +08:00
}
}
}
This patch captures and serializes all output being written by the
command line driver, including the lldb prompt being output by
editline, the asynchronous process output & error messages, and
asynchronous messages written by target stop-hooks.
As part of this it introduces a new Stream class,
StreamAsynchronousIO. A StreamAsynchronousIO object is created with a
broadcaster, who will eventually broadcast the stream's data for a
listener to handle, and an event type indicating what type of event
the broadcaster will broadcast. When the Write method is called on a
StreamAsynchronousIO object, the data is appended to an internal
string. When the Flush method is called on a StreamAsynchronousIO
object, it broadcasts it's data string and clears the string.
Anything in lldb-core that needs to generate asynchronous output for
the end-user should use the StreamAsynchronousIO objects.
I have also added a new notification type for InputReaders, to let
them know that a asynchronous output has been written. This is to
allow the input readers to, for example, refresh their prompts and
lines, if desired. I added the case statements to all the input
readers to catch this notification, but I haven't added any code for
handling them yet (except to the IOChannel input reader).
llvm-svn: 130721
2011-05-03 04:41:46 +08:00
void
2014-01-28 07:43:24 +08:00
Debugger : : ExecuteIOHanders ( )
This patch captures and serializes all output being written by the
command line driver, including the lldb prompt being output by
editline, the asynchronous process output & error messages, and
asynchronous messages written by target stop-hooks.
As part of this it introduces a new Stream class,
StreamAsynchronousIO. A StreamAsynchronousIO object is created with a
broadcaster, who will eventually broadcast the stream's data for a
listener to handle, and an event type indicating what type of event
the broadcaster will broadcast. When the Write method is called on a
StreamAsynchronousIO object, the data is appended to an internal
string. When the Flush method is called on a StreamAsynchronousIO
object, it broadcasts it's data string and clears the string.
Anything in lldb-core that needs to generate asynchronous output for
the end-user should use the StreamAsynchronousIO objects.
I have also added a new notification type for InputReaders, to let
them know that a asynchronous output has been written. This is to
allow the input readers to, for example, refresh their prompts and
lines, if desired. I added the case statements to all the input
readers to catch this notification, but I haven't added any code for
handling them yet (except to the IOChannel input reader).
llvm-svn: 130721
2011-05-03 04:41:46 +08:00
{
2014-01-28 07:43:24 +08:00
while ( 1 )
{
IOHandlerSP reader_sp ( m_input_reader_stack . Top ( ) ) ;
if ( ! reader_sp )
break ;
This patch captures and serializes all output being written by the
command line driver, including the lldb prompt being output by
editline, the asynchronous process output & error messages, and
asynchronous messages written by target stop-hooks.
As part of this it introduces a new Stream class,
StreamAsynchronousIO. A StreamAsynchronousIO object is created with a
broadcaster, who will eventually broadcast the stream's data for a
listener to handle, and an event type indicating what type of event
the broadcaster will broadcast. When the Write method is called on a
StreamAsynchronousIO object, the data is appended to an internal
string. When the Flush method is called on a StreamAsynchronousIO
object, it broadcasts it's data string and clears the string.
Anything in lldb-core that needs to generate asynchronous output for
the end-user should use the StreamAsynchronousIO objects.
I have also added a new notification type for InputReaders, to let
them know that a asynchronous output has been written. This is to
allow the input readers to, for example, refresh their prompts and
lines, if desired. I added the case statements to all the input
readers to catch this notification, but I haven't added any code for
handling them yet (except to the IOChannel input reader).
llvm-svn: 130721
2011-05-03 04:41:46 +08:00
2014-01-28 07:43:24 +08:00
reader_sp - > Activate ( ) ;
reader_sp - > Run ( ) ;
reader_sp - > Deactivate ( ) ;
// Remove all input readers that are done from the top of the stack
while ( 1 )
{
IOHandlerSP top_reader_sp = m_input_reader_stack . Top ( ) ;
if ( top_reader_sp & & top_reader_sp - > GetIsDone ( ) )
m_input_reader_stack . Pop ( ) ;
else
break ;
}
This patch captures and serializes all output being written by the
command line driver, including the lldb prompt being output by
editline, the asynchronous process output & error messages, and
asynchronous messages written by target stop-hooks.
As part of this it introduces a new Stream class,
StreamAsynchronousIO. A StreamAsynchronousIO object is created with a
broadcaster, who will eventually broadcast the stream's data for a
listener to handle, and an event type indicating what type of event
the broadcaster will broadcast. When the Write method is called on a
StreamAsynchronousIO object, the data is appended to an internal
string. When the Flush method is called on a StreamAsynchronousIO
object, it broadcasts it's data string and clears the string.
Anything in lldb-core that needs to generate asynchronous output for
the end-user should use the StreamAsynchronousIO objects.
I have also added a new notification type for InputReaders, to let
them know that a asynchronous output has been written. This is to
allow the input readers to, for example, refresh their prompts and
lines, if desired. I added the case statements to all the input
readers to catch this notification, but I haven't added any code for
handling them yet (except to the IOChannel input reader).
llvm-svn: 130721
2011-05-03 04:41:46 +08:00
}
2014-01-28 07:43:24 +08:00
ClearIOHandlers ( ) ;
This patch captures and serializes all output being written by the
command line driver, including the lldb prompt being output by
editline, the asynchronous process output & error messages, and
asynchronous messages written by target stop-hooks.
As part of this it introduces a new Stream class,
StreamAsynchronousIO. A StreamAsynchronousIO object is created with a
broadcaster, who will eventually broadcast the stream's data for a
listener to handle, and an event type indicating what type of event
the broadcaster will broadcast. When the Write method is called on a
StreamAsynchronousIO object, the data is appended to an internal
string. When the Flush method is called on a StreamAsynchronousIO
object, it broadcasts it's data string and clears the string.
Anything in lldb-core that needs to generate asynchronous output for
the end-user should use the StreamAsynchronousIO objects.
I have also added a new notification type for InputReaders, to let
them know that a asynchronous output has been written. This is to
allow the input readers to, for example, refresh their prompts and
lines, if desired. I added the case statements to all the input
readers to catch this notification, but I haven't added any code for
handling them yet (except to the IOChannel input reader).
llvm-svn: 130721
2011-05-03 04:41:46 +08:00
}
2011-05-10 07:06:58 +08:00
bool
2014-01-28 07:43:24 +08:00
Debugger : : IsTopIOHandler ( const lldb : : IOHandlerSP & reader_sp )
2011-05-10 07:06:58 +08:00
{
2014-01-28 07:43:24 +08:00
return m_input_reader_stack . IsTop ( reader_sp ) ;
}
2011-05-10 07:06:58 +08:00
2014-01-28 07:43:24 +08:00
ConstString
Debugger : : GetTopIOHandlerControlSequence ( char ch )
{
return m_input_reader_stack . GetTopIOHandlerControlSequence ( ch ) ;
2011-05-10 07:06:58 +08:00
}
2015-01-15 08:52:41 +08:00
const char *
Debugger : : GetIOHandlerCommandPrefix ( )
{
return m_input_reader_stack . GetTopIOHandlerCommandPrefix ( ) ;
}
const char *
Debugger : : GetIOHandlerHelpPrologue ( )
{
return m_input_reader_stack . GetTopIOHandlerHelpPrologue ( ) ;
}
2010-06-09 00:52:24 +08:00
void
2014-01-28 07:43:24 +08:00
Debugger : : RunIOHandler ( const IOHandlerSP & reader_sp )
2010-06-09 00:52:24 +08:00
{
2014-01-28 07:43:24 +08:00
PushIOHandler ( reader_sp ) ;
2014-06-20 08:23:57 +08:00
IOHandlerSP top_reader_sp = reader_sp ;
while ( top_reader_sp )
{
top_reader_sp - > Activate ( ) ;
top_reader_sp - > Run ( ) ;
top_reader_sp - > Deactivate ( ) ;
if ( top_reader_sp . get ( ) = = reader_sp . get ( ) )
{
if ( PopIOHandler ( reader_sp ) )
break ;
}
while ( 1 )
{
top_reader_sp = m_input_reader_stack . Top ( ) ;
if ( top_reader_sp & & top_reader_sp - > GetIsDone ( ) )
m_input_reader_stack . Pop ( ) ;
else
break ;
}
}
2014-01-28 07:43:24 +08:00
}
2010-06-09 00:52:24 +08:00
2014-01-28 07:43:24 +08:00
void
Debugger : : AdoptTopIOHandlerFilesIfInvalid ( StreamFileSP & in , StreamFileSP & out , StreamFileSP & err )
{
// Before an IOHandler runs, it must have in/out/err streams.
// This function is called when one ore more of the streams
// are NULL. We use the top input reader's in/out/err streams,
// or fall back to the debugger file handles, or we fall back
// onto stdin/stdout/stderr as a last resort.
Mutex : : Locker locker ( m_input_reader_stack . GetMutex ( ) ) ;
IOHandlerSP top_reader_sp ( m_input_reader_stack . Top ( ) ) ;
// If no STDIN has been set, then set it appropriately
if ( ! in )
2010-06-09 00:52:24 +08:00
{
2014-01-28 07:43:24 +08:00
if ( top_reader_sp )
in = top_reader_sp - > GetInputStreamFile ( ) ;
2010-06-09 00:52:24 +08:00
else
2014-01-28 07:43:24 +08:00
in = GetInputFile ( ) ;
// If there is nothing, use stdin
if ( ! in )
in = StreamFileSP ( new StreamFile ( stdin , false ) ) ;
}
// If no STDOUT has been set, then set it appropriately
if ( ! out )
{
if ( top_reader_sp )
out = top_reader_sp - > GetOutputStreamFile ( ) ;
else
out = GetOutputFile ( ) ;
// If there is nothing, use stdout
if ( ! out )
out = StreamFileSP ( new StreamFile ( stdout , false ) ) ;
}
// If no STDERR has been set, then set it appropriately
if ( ! err )
{
if ( top_reader_sp )
err = top_reader_sp - > GetErrorStreamFile ( ) ;
else
err = GetErrorFile ( ) ;
// If there is nothing, use stderr
if ( ! err )
err = StreamFileSP ( new StreamFile ( stdout , false ) ) ;
2010-06-09 00:52:24 +08:00
}
}
void
2014-01-28 07:43:24 +08:00
Debugger : : PushIOHandler ( const IOHandlerSP & reader_sp )
2010-06-09 00:52:24 +08:00
{
if ( ! reader_sp )
return ;
2011-02-10 09:15:13 +08:00
2014-01-28 07:43:24 +08:00
// Got the current top input reader...
IOHandlerSP top_reader_sp ( m_input_reader_stack . Top ( ) ) ;
2011-02-10 09:15:13 +08:00
2014-03-01 02:22:24 +08:00
// Don't push the same IO handler twice...
if ( reader_sp . get ( ) ! = top_reader_sp . get ( ) )
{
// Push our new input reader
m_input_reader_stack . Push ( reader_sp ) ;
2014-01-28 07:43:24 +08:00
2014-03-01 02:22:24 +08:00
// Interrupt the top input reader to it will exit its Run() function
// and let this new input reader take over
if ( top_reader_sp )
top_reader_sp - > Deactivate ( ) ;
}
2010-06-09 00:52:24 +08:00
}
bool
2014-01-28 07:43:24 +08:00
Debugger : : PopIOHandler ( const IOHandlerSP & pop_reader_sp )
2010-06-09 00:52:24 +08:00
{
bool result = false ;
2014-01-28 07:43:24 +08:00
Mutex : : Locker locker ( m_input_reader_stack . GetMutex ( ) ) ;
2010-06-09 00:52:24 +08:00
// The reader on the stop of the stack is done, so let the next
2014-06-27 10:42:12 +08:00
// read on the stack refresh its prompt and if there is one...
2011-06-03 03:18:55 +08:00
if ( ! m_input_reader_stack . IsEmpty ( ) )
2010-06-09 00:52:24 +08:00
{
2014-01-28 07:43:24 +08:00
IOHandlerSP reader_sp ( m_input_reader_stack . Top ( ) ) ;
2010-06-09 00:52:24 +08:00
if ( ! pop_reader_sp | | pop_reader_sp . get ( ) = = reader_sp . get ( ) )
{
2014-01-28 07:43:24 +08:00
reader_sp - > Deactivate ( ) ;
2014-03-01 02:22:24 +08:00
reader_sp - > Cancel ( ) ;
2011-06-03 03:18:55 +08:00
m_input_reader_stack . Pop ( ) ;
2014-01-28 07:43:24 +08:00
reader_sp = m_input_reader_stack . Top ( ) ;
if ( reader_sp )
reader_sp - > Activate ( ) ;
2010-06-09 00:52:24 +08:00
2014-01-28 07:43:24 +08:00
result = true ;
2010-06-09 00:52:24 +08:00
}
}
return result ;
}
bool
2014-01-28 07:43:24 +08:00
Debugger : : HideTopIOHandler ( )
2010-06-09 00:52:24 +08:00
{
2014-01-28 07:43:24 +08:00
Mutex : : Locker locker ;
if ( locker . TryLock ( m_input_reader_stack . GetMutex ( ) ) )
2010-06-09 00:52:24 +08:00
{
2014-01-28 07:43:24 +08:00
IOHandlerSP reader_sp ( m_input_reader_stack . Top ( ) ) ;
if ( reader_sp )
reader_sp - > Hide ( ) ;
return true ;
2010-06-09 00:52:24 +08:00
}
2014-01-28 07:43:24 +08:00
return false ;
2010-06-09 00:52:24 +08:00
}
void
2014-01-28 07:43:24 +08:00
Debugger : : RefreshTopIOHandler ( )
2010-06-09 00:52:24 +08:00
{
2014-01-28 07:43:24 +08:00
IOHandlerSP reader_sp ( m_input_reader_stack . Top ( ) ) ;
if ( reader_sp )
reader_sp - > Refresh ( ) ;
2010-06-09 00:52:24 +08:00
}
2010-06-23 09:19:29 +08:00
2014-01-28 07:43:24 +08:00
2011-06-03 07:58:26 +08:00
StreamSP
Debugger : : GetAsyncOutputStream ( )
{
return StreamSP ( new StreamAsynchronousIO ( GetCommandInterpreter ( ) ,
CommandInterpreter : : eBroadcastBitAsynchronousOutputData ) ) ;
}
StreamSP
Debugger : : GetAsyncErrorStream ( )
{
return StreamSP ( new StreamAsynchronousIO ( GetCommandInterpreter ( ) ,
CommandInterpreter : : eBroadcastBitAsynchronousErrorData ) ) ;
}
2013-01-26 02:06:21 +08:00
size_t
2012-02-15 10:34:21 +08:00
Debugger : : GetNumDebuggers ( )
{
2012-03-31 04:53:46 +08:00
if ( g_shared_debugger_refcount > 0 )
{
Mutex : : Locker locker ( GetDebuggerListMutex ( ) ) ;
return GetDebuggerList ( ) . size ( ) ;
}
return 0 ;
2012-02-15 10:34:21 +08:00
}
lldb : : DebuggerSP
2013-01-26 02:06:21 +08:00
Debugger : : GetDebuggerAtIndex ( size_t index )
2012-02-15 10:34:21 +08:00
{
DebuggerSP debugger_sp ;
2012-03-31 04:53:46 +08:00
if ( g_shared_debugger_refcount > 0 )
{
Mutex : : Locker locker ( GetDebuggerListMutex ( ) ) ;
DebuggerList & debugger_list = GetDebuggerList ( ) ;
2012-02-15 10:34:21 +08:00
2012-03-31 04:53:46 +08:00
if ( index < debugger_list . size ( ) )
debugger_sp = debugger_list [ index ] ;
}
2012-02-15 10:34:21 +08:00
return debugger_sp ;
}
2010-07-01 00:22:25 +08:00
DebuggerSP
Debugger : : FindDebuggerWithID ( lldb : : user_id_t id )
{
2011-09-17 16:33:22 +08:00
DebuggerSP debugger_sp ;
2010-07-01 00:22:25 +08:00
2012-03-31 04:53:46 +08:00
if ( g_shared_debugger_refcount > 0 )
2010-07-01 00:22:25 +08:00
{
2012-03-31 04:53:46 +08:00
Mutex : : Locker locker ( GetDebuggerListMutex ( ) ) ;
DebuggerList & debugger_list = GetDebuggerList ( ) ;
DebuggerList : : iterator pos , end = debugger_list . end ( ) ;
for ( pos = debugger_list . begin ( ) ; pos ! = end ; + + pos )
2010-07-01 00:22:25 +08:00
{
2012-03-31 04:53:46 +08:00
if ( ( * pos ) . get ( ) - > GetID ( ) = = id )
{
debugger_sp = * pos ;
break ;
}
2010-07-01 00:22:25 +08:00
}
}
return debugger_sp ;
}
2010-09-04 08:03:46 +08:00
2014-03-20 14:08:21 +08:00
#if 0
2010-09-19 10:33:57 +08:00
static void
2013-11-04 17:33:30 +08:00
TestPromptFormats ( StackFrame * frame )
2010-09-19 10:33:57 +08:00
{
if ( frame = = NULL )
return ;
StreamString s ;
const char * prompt_format =
" {addr = '${addr}' \n } "
2014-10-11 07:07:36 +08:00
" {addr-file-or-load = '${addr-file-or-load}' \n } "
" {current-pc-arrow = '${current-pc-arrow}' \n } "
2010-09-19 10:33:57 +08:00
" {process.id = '${process.id}' \n } "
" {process.name = '${process.name}' \n } "
" {process.file.basename = '${process.file.basename}' \n } "
" {process.file.fullpath = '${process.file.fullpath}' \n } "
" {thread.id = '${thread.id}' \n } "
" {thread.index = '${thread.index}' \n } "
" {thread.name = '${thread.name}' \n } "
" {thread.queue = '${thread.queue}' \n } "
" {thread.stop-reason = '${thread.stop-reason}' \n } "
" {target.arch = '${target.arch}' \n } "
" {module.file.basename = '${module.file.basename}' \n } "
" {module.file.fullpath = '${module.file.fullpath}' \n } "
" {file.basename = '${file.basename}' \n } "
" {file.fullpath = '${file.fullpath}' \n } "
" {frame.index = '${frame.index}' \n } "
" {frame.pc = '${frame.pc}' \n } "
" {frame.sp = '${frame.sp}' \n } "
" {frame.fp = '${frame.fp}' \n } "
" {frame.flags = '${frame.flags}' \n } "
" {frame.reg.rdi = '${frame.reg.rdi}' \n } "
" {frame.reg.rip = '${frame.reg.rip}' \n } "
" {frame.reg.rsp = '${frame.reg.rsp}' \n } "
" {frame.reg.rbp = '${frame.reg.rbp}' \n } "
" {frame.reg.rflags = '${frame.reg.rflags}' \n } "
" {frame.reg.xmm0 = '${frame.reg.xmm0}' \n } "
" {frame.reg.carp = '${frame.reg.carp}' \n } "
" {function.id = '${function.id}' \n } "
2014-10-11 07:07:36 +08:00
" {function.changed = '${function.changed}' \n } "
" {function.initial-function = '${function.initial-function}' \n } "
2010-09-19 10:33:57 +08:00
" {function.name = '${function.name}' \n } "
2014-10-11 07:07:36 +08:00
" {function.name-without-args = '${function.name-without-args}' \n } "
2012-01-15 01:04:19 +08:00
" {function.name-with-args = '${function.name-with-args}' \n } "
2010-09-19 10:33:57 +08:00
" {function.addr-offset = '${function.addr-offset}' \n } "
2014-10-11 07:07:36 +08:00
" {function.concrete-only-addr-offset-no-padding = '${function.concrete-only-addr-offset-no-padding}' \n } "
2010-09-19 10:33:57 +08:00
" {function.line-offset = '${function.line-offset}' \n } "
" {function.pc-offset = '${function.pc-offset}' \n } "
" {line.file.basename = '${line.file.basename}' \n } "
" {line.file.fullpath = '${line.file.fullpath}' \n } "
" {line.number = '${line.number}' \n } "
" {line.start-addr = '${line.start-addr}' \n } "
" {line.end-addr = '${line.end-addr}' \n } "
;
SymbolContext sc ( frame - > GetSymbolContext ( eSymbolContextEverything ) ) ;
ExecutionContext exe_ctx ;
2010-10-04 09:05:56 +08:00
frame - > CalculateExecutionContext ( exe_ctx ) ;
2013-05-24 04:47:45 +08:00
if ( Debugger : : FormatPrompt ( prompt_format , & sc , & exe_ctx , & sc . line_entry . range . GetBaseAddress ( ) , s ) )
2010-09-19 10:33:57 +08:00
{
printf ( " %s \n " , s . GetData ( ) ) ;
}
else
{
printf ( " what we got: %s \n " , s . GetData ( ) ) ;
}
}
2014-03-20 14:08:21 +08:00
# endif
2010-09-19 10:33:57 +08:00
2013-05-24 04:47:45 +08:00
bool
2015-02-05 06:00:53 +08:00
Debugger : : FormatDisassemblerAddress ( const FormatEntity : : Entry * format ,
2014-10-11 07:07:36 +08:00
const SymbolContext * sc ,
const SymbolContext * prev_sc ,
const ExecutionContext * exe_ctx ,
const Address * addr ,
Stream & s )
{
2015-02-05 06:00:53 +08:00
FormatEntity : : Entry format_entry ;
if ( format = = NULL )
2014-10-11 07:07:36 +08:00
{
2015-02-05 06:00:53 +08:00
if ( exe_ctx ! = NULL & & exe_ctx - > HasTargetScope ( ) )
format = exe_ctx - > GetTargetRef ( ) . GetDebugger ( ) . GetDisassemblyFormat ( ) ;
if ( format = = NULL )
{
FormatEntity : : Parse ( " ${addr}: " , format_entry ) ;
format = & format_entry ;
}
2014-10-11 07:07:36 +08:00
}
bool function_changed = false ;
bool initial_function = false ;
if ( prev_sc & & ( prev_sc - > function | | prev_sc - > symbol ) )
{
if ( sc & & ( sc - > function | | sc - > symbol ) )
{
if ( prev_sc - > symbol & & sc - > symbol )
{
if ( ! sc - > symbol - > Compare ( prev_sc - > symbol - > GetName ( ) , prev_sc - > symbol - > GetType ( ) ) )
{
function_changed = true ;
}
}
else if ( prev_sc - > function & & sc - > function )
{
if ( prev_sc - > function - > GetMangled ( ) ! = sc - > function - > GetMangled ( ) )
{
function_changed = true ;
}
}
}
}
// The first context on a list of instructions will have a prev_sc that
// has no Function or Symbol -- if SymbolContext had an IsValid() method, it
// would return false. But we do get a prev_sc pointer.
if ( ( sc & & ( sc - > function | | sc - > symbol ) )
& & prev_sc & & ( prev_sc - > function = = NULL & & prev_sc - > symbol = = NULL ) )
{
initial_function = true ;
}
2015-02-05 06:00:53 +08:00
return FormatEntity : : Format ( * format , s , sc , exe_ctx , addr , NULL , function_changed , initial_function ) ;
2013-05-24 04:47:45 +08:00
}
2014-10-11 07:07:36 +08:00
2012-02-21 10:23:08 +08:00
void
Debugger : : SetLoggingCallback ( lldb : : LogOutputCallback log_callback , void * baton )
{
2012-02-23 06:49:20 +08:00
// For simplicity's sake, I am not going to deal with how to close down any
// open logging streams, I just redirect everything from here on out to the
// callback.
2012-02-21 10:23:08 +08:00
m_log_callback_stream_sp . reset ( new StreamCallback ( log_callback , baton ) ) ;
}
bool
Debugger : : EnableLog ( const char * channel , const char * * categories , const char * log_file , uint32_t log_options , Stream & error_stream )
{
Log : : Callbacks log_callbacks ;
StreamSP log_stream_sp ;
2012-08-09 08:50:26 +08:00
if ( m_log_callback_stream_sp )
2012-02-21 10:23:08 +08:00
{
log_stream_sp = m_log_callback_stream_sp ;
// For now when using the callback mode you always get thread & timestamp.
log_options | = LLDB_LOG_OPTION_PREPEND_TIMESTAMP | LLDB_LOG_OPTION_PREPEND_THREAD_NAME ;
}
else if ( log_file = = NULL | | * log_file = = ' \0 ' )
{
2014-01-28 07:43:24 +08:00
log_stream_sp = GetOutputFile ( ) ;
2012-02-21 10:23:08 +08:00
}
else
{
LogStreamMap : : iterator pos = m_log_streams . find ( log_file ) ;
2013-01-08 08:01:36 +08:00
if ( pos ! = m_log_streams . end ( ) )
log_stream_sp = pos - > second . lock ( ) ;
if ( ! log_stream_sp )
2012-02-21 10:23:08 +08:00
{
log_stream_sp . reset ( new StreamFile ( log_file ) ) ;
m_log_streams [ log_file ] = log_stream_sp ;
}
}
assert ( log_stream_sp . get ( ) ) ;
if ( log_options = = 0 )
log_options = LLDB_LOG_OPTION_PREPEND_THREAD_NAME | LLDB_LOG_OPTION_THREADSAFE ;
2013-05-11 05:47:16 +08:00
if ( Log : : GetLogChannelCallbacks ( ConstString ( channel ) , log_callbacks ) )
2012-02-21 10:23:08 +08:00
{
log_callbacks . enable ( log_stream_sp , log_options , categories , & error_stream ) ;
return true ;
}
else
{
LogChannelSP log_channel_sp ( LogChannel : : FindPlugin ( channel ) ) ;
if ( log_channel_sp )
{
if ( log_channel_sp - > Enable ( log_stream_sp , log_options , & error_stream , categories ) )
{
return true ;
}
else
{
error_stream . Printf ( " Invalid log channel '%s'. \n " , channel ) ;
return false ;
}
}
else
{
error_stream . Printf ( " Invalid log channel '%s'. \n " , channel ) ;
return false ;
}
}
return false ;
}
2013-03-19 08:20:55 +08:00
SourceManager &
Debugger : : GetSourceManager ( )
{
if ( m_source_manager_ap . get ( ) = = NULL )
m_source_manager_ap . reset ( new SourceManager ( shared_from_this ( ) ) ) ;
return * m_source_manager_ap ;
}
2014-01-28 07:43:24 +08:00
// This function handles events that were broadcast by the process.
void
Debugger : : HandleBreakpointEvent ( const EventSP & event_sp )
{
using namespace lldb ;
const uint32_t event_type = Breakpoint : : BreakpointEventData : : GetBreakpointEventTypeFromEvent ( event_sp ) ;
// if (event_type & eBreakpointEventTypeAdded
// || event_type & eBreakpointEventTypeRemoved
// || event_type & eBreakpointEventTypeEnabled
// || event_type & eBreakpointEventTypeDisabled
// || event_type & eBreakpointEventTypeCommandChanged
// || event_type & eBreakpointEventTypeConditionChanged
// || event_type & eBreakpointEventTypeIgnoreChanged
// || event_type & eBreakpointEventTypeLocationsResolved)
// {
// // Don't do anything about these events, since the breakpoint commands already echo these actions.
// }
//
if ( event_type & eBreakpointEventTypeLocationsAdded )
{
uint32_t num_new_locations = Breakpoint : : BreakpointEventData : : GetNumBreakpointLocationsFromEvent ( event_sp ) ;
if ( num_new_locations > 0 )
{
BreakpointSP breakpoint = Breakpoint : : BreakpointEventData : : GetBreakpointFromEvent ( event_sp ) ;
StreamFileSP output_sp ( GetOutputFile ( ) ) ;
if ( output_sp )
{
output_sp - > Printf ( " %d location%s added to breakpoint %d \n " ,
num_new_locations ,
num_new_locations = = 1 ? " " : " s " ,
breakpoint - > GetID ( ) ) ;
RefreshTopIOHandler ( ) ;
}
}
}
// else if (event_type & eBreakpointEventTypeLocationsRemoved)
// {
// // These locations just get disabled, not sure it is worth spamming folks about this on the command line.
// }
// else if (event_type & eBreakpointEventTypeLocationsResolved)
// {
// // This might be an interesting thing to note, but I'm going to leave it quiet for now, it just looked noisy.
// }
}
size_t
Debugger : : GetProcessSTDOUT ( Process * process , Stream * stream )
{
size_t total_bytes = 0 ;
if ( stream = = NULL )
stream = GetOutputFile ( ) . get ( ) ;
if ( stream )
{
// The process has stuff waiting for stdout; get it and write it out to the appropriate place.
if ( process = = NULL )
{
TargetSP target_sp = GetTargetList ( ) . GetSelectedTarget ( ) ;
if ( target_sp )
process = target_sp - > GetProcessSP ( ) . get ( ) ;
}
if ( process )
{
Error error ;
size_t len ;
char stdio_buffer [ 1024 ] ;
while ( ( len = process - > GetSTDOUT ( stdio_buffer , sizeof ( stdio_buffer ) , error ) ) > 0 )
{
stream - > Write ( stdio_buffer , len ) ;
total_bytes + = len ;
}
}
stream - > Flush ( ) ;
}
return total_bytes ;
}
size_t
Debugger : : GetProcessSTDERR ( Process * process , Stream * stream )
{
size_t total_bytes = 0 ;
if ( stream = = NULL )
stream = GetOutputFile ( ) . get ( ) ;
if ( stream )
{
// The process has stuff waiting for stderr; get it and write it out to the appropriate place.
if ( process = = NULL )
{
TargetSP target_sp = GetTargetList ( ) . GetSelectedTarget ( ) ;
if ( target_sp )
process = target_sp - > GetProcessSP ( ) . get ( ) ;
}
if ( process )
{
Error error ;
size_t len ;
char stdio_buffer [ 1024 ] ;
while ( ( len = process - > GetSTDERR ( stdio_buffer , sizeof ( stdio_buffer ) , error ) ) > 0 )
{
stream - > Write ( stdio_buffer , len ) ;
total_bytes + = len ;
}
}
stream - > Flush ( ) ;
}
return total_bytes ;
}
2014-10-21 09:00:42 +08:00
2014-01-28 07:43:24 +08:00
// This function handles events that were broadcast by the process.
void
Debugger : : HandleProcessEvent ( const EventSP & event_sp )
{
using namespace lldb ;
const uint32_t event_type = event_sp - > GetType ( ) ;
ProcessSP process_sp = Process : : ProcessEventData : : GetProcessFromEvent ( event_sp . get ( ) ) ;
2014-10-21 09:00:42 +08:00
2014-03-01 02:22:24 +08:00
StreamString output_stream ;
StreamString error_stream ;
2014-01-28 07:43:24 +08:00
const bool gui_enabled = IsForwardingEvents ( ) ;
2014-03-01 02:22:24 +08:00
if ( ! gui_enabled )
2014-01-28 07:43:24 +08:00
{
2014-03-01 02:22:24 +08:00
bool pop_process_io_handler = false ;
assert ( process_sp ) ;
2014-10-21 09:00:42 +08:00
2014-03-01 02:22:24 +08:00
if ( event_type & Process : : eBroadcastBitSTDOUT | | event_type & Process : : eBroadcastBitStateChanged )
{
GetProcessSTDOUT ( process_sp . get ( ) , & output_stream ) ;
}
2014-10-21 09:00:42 +08:00
2014-03-01 02:22:24 +08:00
if ( event_type & Process : : eBroadcastBitSTDERR | | event_type & Process : : eBroadcastBitStateChanged )
{
GetProcessSTDERR ( process_sp . get ( ) , & error_stream ) ;
}
2014-10-21 09:00:42 +08:00
2014-03-01 02:22:24 +08:00
if ( event_type & Process : : eBroadcastBitStateChanged )
2014-01-28 07:43:24 +08:00
{
2014-10-21 09:00:42 +08:00
Process : : HandleProcessStateChangedEvent ( event_sp , & output_stream , pop_process_io_handler ) ;
2014-01-28 07:43:24 +08:00
}
2014-10-21 09:00:42 +08:00
2014-03-01 02:22:24 +08:00
if ( output_stream . GetSize ( ) | | error_stream . GetSize ( ) )
{
StreamFileSP error_stream_sp ( GetOutputFile ( ) ) ;
2014-03-04 03:15:20 +08:00
bool top_io_handler_hid = false ;
2014-10-21 09:00:42 +08:00
2014-03-04 03:15:20 +08:00
if ( process_sp - > ProcessIOHandlerIsActive ( ) = = false )
top_io_handler_hid = HideTopIOHandler ( ) ;
2014-03-01 02:22:24 +08:00
if ( output_stream . GetSize ( ) )
{
StreamFileSP output_stream_sp ( GetOutputFile ( ) ) ;
if ( output_stream_sp )
output_stream_sp - > Write ( output_stream . GetData ( ) , output_stream . GetSize ( ) ) ;
}
if ( error_stream . GetSize ( ) )
{
StreamFileSP error_stream_sp ( GetErrorFile ( ) ) ;
if ( error_stream_sp )
error_stream_sp - > Write ( error_stream . GetData ( ) , error_stream . GetSize ( ) ) ;
}
if ( top_io_handler_hid )
RefreshTopIOHandler ( ) ;
}
if ( pop_process_io_handler )
process_sp - > PopProcessIOHandler ( ) ;
}
2014-01-28 07:43:24 +08:00
}
void
Debugger : : HandleThreadEvent ( const EventSP & event_sp )
{
// At present the only thread event we handle is the Frame Changed event,
// and all we do for that is just reprint the thread status for that thread.
using namespace lldb ;
const uint32_t event_type = event_sp - > GetType ( ) ;
if ( event_type = = Thread : : eBroadcastBitStackChanged | |
event_type = = Thread : : eBroadcastBitThreadSelected )
{
ThreadSP thread_sp ( Thread : : ThreadEventData : : GetThreadFromEvent ( event_sp . get ( ) ) ) ;
if ( thread_sp )
{
HideTopIOHandler ( ) ;
StreamFileSP stream_sp ( GetOutputFile ( ) ) ;
thread_sp - > GetStatus ( * stream_sp , 0 , 1 , 1 ) ;
RefreshTopIOHandler ( ) ;
}
}
}
bool
Debugger : : IsForwardingEvents ( )
{
return ( bool ) m_forward_listener_sp ;
}
void
Debugger : : EnableForwardEvents ( const ListenerSP & listener_sp )
{
m_forward_listener_sp = listener_sp ;
}
void
Debugger : : CancelForwardEvents ( const ListenerSP & listener_sp )
{
m_forward_listener_sp . reset ( ) ;
}
void
Debugger : : DefaultEventHandler ( )
{
Listener & listener ( GetListener ( ) ) ;
ConstString broadcaster_class_target ( Target : : GetStaticBroadcasterClass ( ) ) ;
ConstString broadcaster_class_process ( Process : : GetStaticBroadcasterClass ( ) ) ;
ConstString broadcaster_class_thread ( Thread : : GetStaticBroadcasterClass ( ) ) ;
BroadcastEventSpec target_event_spec ( broadcaster_class_target ,
Target : : eBroadcastBitBreakpointChanged ) ;
BroadcastEventSpec process_event_spec ( broadcaster_class_process ,
Process : : eBroadcastBitStateChanged |
Process : : eBroadcastBitSTDOUT |
Process : : eBroadcastBitSTDERR ) ;
BroadcastEventSpec thread_event_spec ( broadcaster_class_thread ,
Thread : : eBroadcastBitStackChanged |
Thread : : eBroadcastBitThreadSelected ) ;
listener . StartListeningForEventSpec ( * this , target_event_spec ) ;
listener . StartListeningForEventSpec ( * this , process_event_spec ) ;
listener . StartListeningForEventSpec ( * this , thread_event_spec ) ;
listener . StartListeningForEvents ( m_command_interpreter_ap . get ( ) ,
CommandInterpreter : : eBroadcastBitQuitCommandReceived |
CommandInterpreter : : eBroadcastBitAsynchronousOutputData |
CommandInterpreter : : eBroadcastBitAsynchronousErrorData ) ;
2014-12-02 06:41:27 +08:00
// Let the thread that spawned us know that we have started up and
// that we are now listening to all required events so no events get missed
m_sync_broadcaster . BroadcastEvent ( eBroadcastBitEventThreadIsListening ) ;
2014-01-28 07:43:24 +08:00
bool done = false ;
while ( ! done )
{
EventSP event_sp ;
if ( listener . WaitForEvent ( NULL , event_sp ) )
{
if ( event_sp )
{
Broadcaster * broadcaster = event_sp - > GetBroadcaster ( ) ;
if ( broadcaster )
{
uint32_t event_type = event_sp - > GetType ( ) ;
ConstString broadcaster_class ( broadcaster - > GetBroadcasterClass ( ) ) ;
if ( broadcaster_class = = broadcaster_class_process )
{
HandleProcessEvent ( event_sp ) ;
}
else if ( broadcaster_class = = broadcaster_class_target )
{
if ( Breakpoint : : BreakpointEventData : : GetEventDataFromEvent ( event_sp . get ( ) ) )
{
HandleBreakpointEvent ( event_sp ) ;
}
}
else if ( broadcaster_class = = broadcaster_class_thread )
{
HandleThreadEvent ( event_sp ) ;
}
else if ( broadcaster = = m_command_interpreter_ap . get ( ) )
{
if ( event_type & CommandInterpreter : : eBroadcastBitQuitCommandReceived )
{
done = true ;
}
else if ( event_type & CommandInterpreter : : eBroadcastBitAsynchronousErrorData )
{
const char * data = reinterpret_cast < const char * > ( EventDataBytes : : GetBytesFromEvent ( event_sp . get ( ) ) ) ;
if ( data & & data [ 0 ] )
{
StreamFileSP error_sp ( GetErrorFile ( ) ) ;
if ( error_sp )
{
HideTopIOHandler ( ) ;
error_sp - > PutCString ( data ) ;
error_sp - > Flush ( ) ;
RefreshTopIOHandler ( ) ;
}
}
}
else if ( event_type & CommandInterpreter : : eBroadcastBitAsynchronousOutputData )
{
const char * data = reinterpret_cast < const char * > ( EventDataBytes : : GetBytesFromEvent ( event_sp . get ( ) ) ) ;
if ( data & & data [ 0 ] )
{
StreamFileSP output_sp ( GetOutputFile ( ) ) ;
if ( output_sp )
{
HideTopIOHandler ( ) ;
output_sp - > PutCString ( data ) ;
output_sp - > Flush ( ) ;
RefreshTopIOHandler ( ) ;
}
}
}
}
}
if ( m_forward_listener_sp )
m_forward_listener_sp - > AddEvent ( event_sp ) ;
}
}
}
}
lldb : : thread_result_t
Debugger : : EventHandlerThread ( lldb : : thread_arg_t arg )
{
( ( Debugger * ) arg ) - > DefaultEventHandler ( ) ;
return NULL ;
}
bool
Debugger : : StartEventHandlerThread ( )
{
2014-09-24 02:32:09 +08:00
if ( ! m_event_handler_thread . IsJoinable ( ) )
2014-10-16 02:03:59 +08:00
{
2014-12-02 06:41:27 +08:00
// We must synchronize with the DefaultEventHandler() thread to ensure
// it is up and running and listening to events before we return from
// this function. We do this by listening to events for the
// eBroadcastBitEventThreadIsListening from the m_sync_broadcaster
Listener listener ( " lldb.debugger.event-handler " ) ;
listener . StartListeningForEvents ( & m_sync_broadcaster , eBroadcastBitEventThreadIsListening ) ;
2014-10-25 06:06:29 +08:00
// Use larger 8MB stack for this thread
2014-12-02 06:41:27 +08:00
m_event_handler_thread = ThreadLauncher : : LaunchThread ( " lldb.debugger.event-handler " , EventHandlerThread ,
this ,
NULL ,
2014-10-25 06:06:29 +08:00
g_debugger_event_thread_stack_bytes ) ;
2014-12-02 06:41:27 +08:00
// Make sure DefaultEventHandler() is running and listening to events before we return
// from this function. We are only listening for events of type
// eBroadcastBitEventThreadIsListening so we don't need to check the event, we just need
// to wait an infinite amount of time for it (NULL timeout as the first parameter)
lldb : : EventSP event_sp ;
listener . WaitForEvent ( NULL , event_sp ) ;
2014-10-16 02:03:59 +08:00
}
2014-09-24 02:32:09 +08:00
return m_event_handler_thread . IsJoinable ( ) ;
2014-01-28 07:43:24 +08:00
}
void
Debugger : : StopEventHandlerThread ( )
{
2014-09-24 02:32:09 +08:00
if ( m_event_handler_thread . IsJoinable ( ) )
2014-01-28 07:43:24 +08:00
{
GetCommandInterpreter ( ) . BroadcastEvent ( CommandInterpreter : : eBroadcastBitQuitCommandReceived ) ;
2014-09-10 04:54:56 +08:00
m_event_handler_thread . Join ( nullptr ) ;
2014-01-28 07:43:24 +08:00
}
}
lldb : : thread_result_t
Debugger : : IOHandlerThread ( lldb : : thread_arg_t arg )
{
Debugger * debugger = ( Debugger * ) arg ;
debugger - > ExecuteIOHanders ( ) ;
debugger - > StopEventHandlerThread ( ) ;
return NULL ;
}
bool
Debugger : : StartIOHandlerThread ( )
{
2014-09-24 02:32:09 +08:00
if ( ! m_io_handler_thread . IsJoinable ( ) )
2014-10-16 02:03:59 +08:00
m_io_handler_thread = ThreadLauncher : : LaunchThread ( " lldb.debugger.io-handler " ,
IOHandlerThread ,
this ,
NULL ,
8 * 1024 * 1024 ) ; // Use larger 8MB stack for this thread
2014-09-24 02:32:09 +08:00
return m_io_handler_thread . IsJoinable ( ) ;
2014-01-28 07:43:24 +08:00
}
void
Debugger : : StopIOHandlerThread ( )
{
2014-09-24 02:32:09 +08:00
if ( m_io_handler_thread . IsJoinable ( ) )
2014-01-28 07:43:24 +08:00
{
if ( m_input_file_sp )
m_input_file_sp - > GetFile ( ) . Close ( ) ;
2014-09-10 04:54:56 +08:00
m_io_handler_thread . Join ( nullptr ) ;
2014-01-28 07:43:24 +08:00
}
}
2014-11-22 09:42:44 +08:00
Target *
Debugger : : GetDummyTarget ( )
{
return m_target_list . GetDummyTarget ( * this ) . get ( ) ;
}
Target *
2014-12-06 09:28:03 +08:00
Debugger : : GetSelectedOrDummyTarget ( bool prefer_dummy )
2014-11-22 09:42:44 +08:00
{
2014-12-06 09:28:03 +08:00
Target * target = nullptr ;
if ( ! prefer_dummy )
{
target = m_target_list . GetSelectedTarget ( ) . get ( ) ;
if ( target )
return target ;
}
2014-11-22 09:42:44 +08:00
return GetDummyTarget ( ) ;
}
2014-01-28 07:43:24 +08:00