- Nov 06, 2010
-
-
Greg Clayton authored
don't crash if we disable logging when some code already has a copy of the logger. Prior to this fix, logs were handed out as pointers and if they were held onto while a log got disabled, then it could cause a crash. Now all logs are handed out as shared pointers so this problem shouldn't happen anymore. We are also using our new shared pointers that put the shared pointer count and the object into the same allocation for a tad better performance. llvm-svn: 118319
-
Sean Callanan authored
of store statements were not being marked for resolution. llvm-svn: 118316
-
Greg Clayton authored
so we don't end up with weak exports with some compilers. llvm-svn: 118312
-
- Nov 05, 2010
-
-
Caroline Tice authored
pseudoterminal to pass to the inferior for the inferior's I/O (to allow direct writing, rather than passing all the I/O around via packets). llvm-svn: 118308
-
Johnny Chen authored
rdar://problem/8557095 lldb disas crashed (from lldb developer) llvm-svn: 118299
-
Jim Ingham authored
Added the equivalent of gdb's "unwind-on-signal" to the expression command, and a parameter to control it in ClangUserExpression, and on down to ClangFunction. llvm-svn: 118290
-
Jim Ingham authored
llvm-svn: 118283
-
Jim Ingham authored
llvm-svn: 118282
-
Sean Callanan authored
that check pointer validity fail to parse. Now lldb does not crash in that case. Also added support for checking Objective-C class validity in the Version 1 runtime as well as Version 2 runtimes with varying levels of available debug support. llvm-svn: 118271
-
Jim Ingham authored
llvm-svn: 118270
-
Jim Ingham authored
log timer increment true/false llvm-svn: 118268
-
Jim Ingham authored
Added a top level Timer to the interpreter execute command. Also added an option to pass the depth to "log timer enable". That allows you to time just command execution with: log timer enable 1 <command> log timer dump llvm-svn: 118267
-
Jim Ingham authored
Added a top level Timer to the interpreter execute command. Also added an option to pass the depth to "log timer enable". That allows you to time just command execution with: log timer enable 1 <command> log timer dump llvm-svn: 118266
-
- Nov 04, 2010
-
-
Jason Molenda authored
llvm-svn: 118264
-
Jim Ingham authored
Also move the Checker creation into the Apple Runtime code. llvm-svn: 118255
-
Jason Molenda authored
debug printfs that got left behind by accident. llvm-svn: 118244
-
Jason Molenda authored
or the native unwinder (UnwindLLDB). I'll make the native unwinder the default once I check in with everyone tomorrow. llvm-svn: 118243
-
Jason Molenda authored
that in along with some cleanup work with the native unwinder code. llvm-svn: 118242
-
Jason Molenda authored
some diagnostic test code I was using while debugging the native unwinder and didn't mean to check in. llvm-svn: 118241
-
Jason Molenda authored
fixed them. Added DISALLOW_COPY_AND_ASSIGN to classes that should not be bitwise copied. Added default initializers for member variables that weren't being initialized in the ctor. Fixed a few shadowed local variable mistakes. llvm-svn: 118240
-
Greg Clayton authored
adding support into lldb_private::Process: virtual uint32_t lldb_private::Process::LoadImage (const FileSpec &image_spec, Error &error); virtual Error lldb_private::Process::UnloadImage (uint32_t image_token); There is a default implementation that should work for both linux and MacOSX. This ability has also been exported through the SBProcess API: uint32_t lldb::SBProcess::LoadImage (lldb::SBFileSpec &image_spec, lldb::SBError &error); lldb::SBError lldb::SBProcess::UnloadImage (uint32_t image_token); Modified the DynamicLoader plug-in interface to require it to be able to tell us if it is currently possible to load/unload a shared library: virtual lldb_private::Error DynamicLoader::CanLoadImage () = 0; This way the dynamic loader plug-ins are allows to veto whether we can currently load a shared library since the dynamic loader might know if it is currenlty loading/unloading shared libraries. It might also know about the current host system and know where to check to make sure runtime or malloc locks are currently being held. Modified the expression parser to have ClangUserExpression::Evaluate() be the one that causes the dynamic checkers to be loaded instead of other code that shouldn't have to worry about it. llvm-svn: 118227
-
Sean Callanan authored
implementation of the Objective-C object checkers into the Objective-C language runtime. llvm-svn: 118226
-
Jason Molenda authored
RegisterContextLLDB holds a reference to the SymbolContext in the vector of Cursors that UnwindLLDB maintains. Switch UnwindLLDB to hold a vector of shared pointers of Cursors so this reference doesn't become invalid. Correctly falling back from the "fast" UnwindPlan to the "full" UnwindPlan when additional registers need to be retrieved. llvm-svn: 118218
-
- Nov 03, 2010
-
-
Sean Callanan authored
exceptions for different languages out of ThreadPlanCallFunction and put it into the appropriate language runtimes. llvm-svn: 118200
-
Sean Callanan authored
exception checks at the right time, and modified ClangFunction so that it doesn't misinterpret the stop as a timeout stop. llvm-svn: 118189
-
Greg Clayton authored
the end of the list. We had an issue in the MacOSX dynamic loader where if we had shlibs: 1 - a.out 2 - a.dylib 3 - b.dylib And then a.dylib got unloaded, we would unload b.dylib due to the assumption that only shared libraries could come off the end of the list. We now properly search and find which ones get loaded. Added a new internal logging category for the "lldb" log channel named "dyld". This should allow all dynamic loaders to use this as a generic log channel so we can track shared library loads and unloads in the logs without having to have each plug-in make up its own logging channel. llvm-svn: 118147
-
Sean Callanan authored
set breakpoints at the different locations where an exception could be thrown, so that exceptions thrown by expressions are properly caught. llvm-svn: 118142
-
Sean Callanan authored
for a global variable that we had replaced with a reference to a slot in the input array. llvm-svn: 118123
-
Sean Callanan authored
on i386 platforms, leading to crashes on simple expressions. llvm-svn: 118114
-
- Nov 02, 2010
-
-
Greg Clayton authored
children always incorrectly displayed the child at offset zero. llvm-svn: 118070
-
Caroline Tice authored
llvm-svn: 118036
-
Greg Clayton authored
llvm-svn: 118033
-
Caroline Tice authored
ptrace thread update that was replying to the SIGSTOP was also causing the process to not really be sigstop'd any more so then the call to ptrace detach was failing, and when debugserver exited the attached process was being killed. Now the ptrace thread update does not disturb the sigstop state of the thread, so the detach works properly. llvm-svn: 118018
-
Greg Clayton authored
types when they are the same size. The new code will use the correct type now when converting DWARF built-in types into clang types. llvm-svn: 118003
-
Greg Clayton authored
llvm-svn: 118002
-
Greg Clayton authored
name and thread queue. Users can modify the thread-format strings to add these back if needed. llvm-svn: 118000
-
Greg Clayton authored
values. Always show the variable types for the top level items when dumping program variables. llvm-svn: 117999
-
Sean Callanan authored
statement. Now when ClangExpressionDeclMap returns a variable for a name, it pretty-prints that variable to the log instead of printing a (fairly useless) NamedDecl pointer. llvm-svn: 117972
-
- Nov 01, 2010
-
-
Greg Clayton authored
mismatch: I was using the compile unit user ID (the compile unit offset in the DWARF) as the compile unit index. llvm-svn: 117948
-
Sean Callanan authored
and warnings. llvm-svn: 117947
-