- b9c1b51 *** This commit represents a complete reformatting of the LLDB source code by Kate Stone · 9 years ago
- ac9c3a6 Tables of command options in LLDB benefit from hand-formatting to make it by Kate Stone · 9 years ago
- e1cfbc7 Decoupled Options from CommandInterpreter. by Todd Fiala · 9 years ago
- 7428a18 LLDB help content has accumulated over time without a recent attempt to by Kate Stone · 9 years ago
- bb19a13 second pass over removal of Mutex and Condition by Saleem Abdulrasool · 9 years ago
- f810491 Fix deadlock due to thread list locking in 'bt all' with obj-c by Stephane Sezer · 10 years ago
- 8d94ba0 This change introduces a "ExpressionExecutionThread" to the ThreadList. by Jim Ingham · 10 years ago
- 970bb9e Add the "block" keyword to "thread step-in -e", and an alias that uses it: "sif <target function>" - i.e. step-into-function by Jim Ingham · 10 years ago
- 50ff9fe Fix Clang-tidy modernize-use-nullptr and modernize-use-default warnings in source/Commands/CommandObjectThread.cpp; other minor fixes. by Eugene Zelenko · 10 years ago
- cbf6f9b Adding an SBThread::StepInto that takes an end-line, also moved the code that figures by Jim Ingham · 10 years ago
- c17d6bd This is an idea to make "thread step-in --target" work for the common by Jim Ingham · 10 years ago
- 1f5fcf8 Fix "thread backtrace -s": option was misparsed because of a missing break. by Jim Ingham · 10 years ago
- 25d5b10 When constructing an address range to "step" or "next" through, by Jason Molenda · 10 years ago
- 13d21e9 commands: Use override instead of virtual. by Bruce Mitchener · 10 years ago
- 1124045 Don't #include "lldb-python.h" from anywhere. by Zachary Turner · 10 years ago
- 4446487 Improve LLDB prompt handling by Pavel Labath · 10 years ago
- e87764f Add support for custom commands to set flags on themselves by Enrico Granata · 10 years ago
- 78baa19 Remote Non-Stop Support by Ewan Crawford · 10 years ago
- ca05ae2 Add an assertion for frame[0] being valid in CommandObjectThread.cpp. by Stephane Sezer · 11 years ago
- 019b031 Add a missing null pointer check in CommandObjectThread.cpp. by Stephane Sezer · 11 years ago
- a78bd7f Don't #include FormatManager.h from Debugger.h by Zachary Turner · 11 years ago
- 9bdea54 Add a "-a/--address" option to "thread until". You can specify one or more line numbers (as arguments) by Jim Ingham · 11 years ago
- 5275aaa Moved Args::StringToXIntYZ to StringConvert::ToXIntYZ by Vince Harron · 11 years ago
- 898e10e Change int32_t to uint32_t to fix warnings. by Zachary Turner · 11 years ago
- dc6224e Make the "synchronous" mode actually work without race conditions. by Greg Clayton · 11 years ago
- afdf842 LLDB AddressSanitizer instrumentation runtime plugin, breakpint on error and report data extraction by Kuba Brecka · 11 years ago
- 2bdbfd5 This checkin is the first step in making the lldb thread stepping mechanism more accessible from by Jim Ingham · 11 years ago
- a3b89e2 Fix iohandler prompt race condition. by Todd Fiala · 11 years ago
- 4041116 Fix some warnings in the Windows build. by Zachary Turner · 11 years ago
- d37221d Revert "Fix broken tests due to new error output." by Zachary Turner · 11 years ago
- 7a88ec9 Add the ability to provide a "count" option to the various "thread step-*" operations. Only by Jim Ingham · 11 years ago
- 9734280 Fix broken tests due to new error output. by Todd Fiala · 11 years ago
- de963e9 Adds the notion of an OptionValidator. by Zachary Turner · 11 years ago
- 705b180 Initial merge of some of the iOS 8 / Mac OS X Yosemite specific by Jason Molenda · 11 years ago
- 8646d3c Rename eExecution*** to eExpression*** to be consistent with the result type. by Jim Ingham · 11 years ago
- 1624a2d Make the Expression Execution result enum available to the SB API layer. by Jim Ingham · 11 years ago
- 6c9ed91 Make the fail messages by Jim Ingham · 11 years ago
- 4b4b247 This commit reworks how the thread plan's ShouldStopHere mechanism works, so that it is useful not only by Jim Ingham · 12 years ago
- 008c45f Change SBThread::GetExtendedBacktrace to by Jason Molenda · 12 years ago
- 750ea69 Add initial --extended / -e support to thread backtrace. by Jason Molenda · 12 years ago
- 5c19eac Added Iterable, a class that vends standard C++ by Sean Callanan · 12 years ago
- b57e4a1 Roll back the changes I made in r193907 which created a new Frame by Jason Molenda · 12 years ago
- f23bf74 Add a new base class, Frame. It is a pure virtual function which by Jason Molenda · 12 years ago
- 9063bf4 Fixing a problem where CommandObjectThreadContinue held the thread list lock while waiting for the process to stop after a continue. by Andrew Kaylor · 12 years ago
- f86248d Added a 'jump' command, similar to GDBs. by Richard Mitton · 12 years ago
- e2607b5 Add OptionParser.h by Virgile Bello · 12 years ago
- 4d56e9c This commit does two things. One, it converts the return value of the QueueThreadPlanXXX by Jim Ingham · 12 years ago
- 93208b8 Add "thread return -x" to unwind the innermost user called expression (if you happen to have stopped in it due to a crash.) by Jim Ingham · 13 years ago
- c7bece56 <rdar://problem/13069948> by Greg Clayton · 13 years ago
- f9fc609 Expanded the flags that can be set for a command object in lldb_private::CommandObject. This list of available flags are: by Greg Clayton · 13 years ago
- c627682 Fixed a few bugs in the "step in" thread plan logic. by Jim Ingham · 13 years ago
- c3faa19 Broadcast an event when the selected thread is changed. by Jim Ingham · 13 years ago
- 93a6430 Fix Linux build warnings due to redefinition of macros: by Daniel Malea · 13 years ago
- 3bcdfc0 <rdar://problem/12798131> by Greg Clayton · 13 years ago
- d01b295 Resolve printf formatting warnings on Linux: by Daniel Malea · 13 years ago
- 35e1bda Add the ability to set timeout & "run all threads" options both from the "expr" command and from by Jim Ingham · 13 years ago
- 4f465cf Change the Thread constructor over to take a Process& rather than a ProcessSP. We can't create Threads with a NULL ProcessSP, so it makes no sense to use the SP. by Jim Ingham · 13 years ago
- 43d886e "thread step-out" should run all threads by default. by Jim Ingham · 13 years ago
- f76ab67 Use the frame index passed into "thread until" rather than using the selected frame. by Jim Ingham · 13 years ago
- cb640dd Make the unwinding of the stack part of "thread return" work, and add the thread return command. by Jim Ingham · 13 years ago
- 41f2b94 Fixed a few places where we were doing: by Jim Ingham · 13 years ago
- 1f74607 <rdar://problem/11757916> by Greg Clayton · 13 years ago
- c8a0ce0 <rdar://problem/11800213> by Greg Clayton · 13 years ago
- 5a98841 Make raw & parsed commands subclasses of CommandObject rather than having the raw version implement an by Jim Ingham · 13 years ago
- ce76c62 Fix a bunch of thinko's in the command "thread continue". by Jim Ingham · 13 years ago
- 76927ee <rdar://problem/11562050> by Greg Clayton · 13 years ago
- 29412d1 Set the result status correctly for asynchronous step-in/out/over commands. by Jim Ingham · 13 years ago
- 7ba6e99 Found one more place where the OkayToDiscard needs to be consulted. by Jim Ingham · 13 years ago
- 64e7ead Clean up the usage of "MasterPlan" status in ThreadPlans. Only user-initiated plans by Jim Ingham · 13 years ago
- 73ca05a Add the ability to capture the return value in a thread's stop info, and print it by Jim Ingham · 14 years ago
- 86edbf4 Cleaned up many error codes. For any who is filling in error strings into by Greg Clayton · 14 years ago
- 81c22f6 Moved lldb::user_id_t values to be 64 bit. This was going to be needed for by Greg Clayton · 14 years ago
- cf0e4f0 Re-organized the contents of RangeMap.h to be more concise and also allow for a Range, RangeArray, RangeData (range + data), or a RangeDataArray. We have many range implementations in LLDB and I will be converting over to using the classes in RangeMap.h so we can have one set of code that does ranges and searching of ranges. by Greg Clayton · 14 years ago
- 87df91b Added the ability to restrict breakpoints by function name, function regexp, selector by Jim Ingham · 14 years ago
- c14ee32 Converted the lldb_private::Process over to use the intrusive shared pointers. by Greg Clayton · 14 years ago
- fd54b36 Update declarations for all functions/methods that accept printf-style by Jason Molenda · 14 years ago
- 5c4df7a Indent the frames in the "thread.GetStatus" frame listing. Also put the same space after each thread listing for "thread backtrace all" as "thread backtrace 1 3 5" by Jim Ingham · 14 years ago
- 91322f1 Fix typo: fucntion -> function by Peter Collingbourne · 14 years ago
- b596421 Add comment about Thread::GetStatus(), which returns the number of frames shown. by Johnny Chen · 14 years ago
- f2ddc71 The 'thread backtrace all' logical branch had the if (thread->GetStatus()) condition inverted. by Johnny Chen · 14 years ago
- 9b70ddb StepUntil should check whether the target of the step until is in the current by Jim Ingham · 14 years ago
- effe5c9 Added new OptionGroup classes for UInt64, UUID, File and Boolean values. by Greg Clayton · 14 years ago
- 7260f62 Centralized a lot of the status information for processes, by Greg Clayton · 14 years ago
- f6b8b58 Added two new classes for command options: by Greg Clayton · 14 years ago
- 8b82f08 Moved the execution context that was in the Debugger into by Greg Clayton · 14 years ago
- eb0103f Modified the ArchSpec to take an optional "Platform *" when setting the triple. by Greg Clayton · 14 years ago
- 32e0a75 Many improvements to the Platform base class and subclasses. The base Platform by Greg Clayton · 14 years ago
- e0d378b Fixed the LLDB build so that we can have private types, private enums and by Greg Clayton · 15 years ago
- 85e8b81 - Changed all the places where CommandObjectReturn was exporting a StreamString to just exporting by Jim Ingham · 15 years ago
- 7fb56d0 Endian patch from Kirk Beitz that allows better cross platform building. by Greg Clayton · 15 years ago
- 481cef2 Added support for stepping out of a frame. If you have 10 stack frames, and you by Greg Clayton · 15 years ago
- 19388cf Fixed debugserver to properly attach to a process by name with the by Greg Clayton · 15 years ago
- 8087ca2 Added mutex protection to the Symtab class. by Greg Clayton · 15 years ago
- 405fe67 Modify existing commands with arguments to use the new argument mechanism by Caroline Tice · 15 years ago
- 0603aa9 There are now to new "settings set" variables that live in each debugger by Greg Clayton · 15 years ago
- deaab22 by Caroline Tice · 15 years ago
- daccaa9 Add UserSettings to Target class, making Target settings by Caroline Tice · 15 years ago
- f5fb427 Fixed an issue with: by Greg Clayton · 15 years ago
- ed8a705 General command line help cleanup: by Greg Clayton · 15 years ago
- a701509 Fixed the way set/show variables were being accessed to being natively by Greg Clayton · 15 years ago