1. a6682a4 Simplify Boolean expressions by Jonas Devlieghere · 7 years ago
  2. e103ae9 Add setting to require hardware breakpoints. by Jonas Devlieghere · 7 years ago
  3. ceff664 Remove header grouping comments. by Jonas Devlieghere · 7 years ago
  4. 0509724 Reflow paragraphs in comments. by Adrian Prantl · 7 years ago
  5. 6f9e690 Move Log from Core -> Utility. by Zachary Turner · 9 years ago
  6. bf9a773 Move classes from Core -> Utility. by Zachary Turner · 9 years ago
  7. 592fa12 Fix step-over when SymbolContext.function is missing and symbol is present. by Sam McCall · 9 years ago
  8. c156427 Don't allow direct access to StreamString's internal buffer. by Zachary Turner · 9 years ago
  9. b9c1b51 *** This commit represents a complete reformatting of the LLDB source code by Kate Stone · 9 years ago
  10. 7766c4a Some code that is sanity checking stepping out back out from one inlined by Jim Ingham · 9 years ago
  11. 911d578 Keep original source path and mapped path in LineEntry by Ted Woodward · 9 years ago
  12. fd4cea5 Re-apply r257117 (reverted in r257138 temporarily), by Jason Molenda · 10 years ago
  13. 7cb9d98 Revert r257117 "Performance improvement: Change lldb so that it by Jason Molenda · 10 years ago
  14. b4a8b4c Performance improvement: Change lldb so that it puts a breakpoint by Jason Molenda · 10 years ago
  15. e65b2cf Fix Clang-tidy modernize-use-nullptr and readability-simplify-boolean-expr warnings in some files in source/Target/. by Eugene Zelenko · 10 years ago
  16. 5582808 I was assuming that when a bit of inlined code was followed by code from the inlining site, it was going to execute to the inlining site code, but apparently that's not always true. So we need to be a bit more careful getting past the inlining, and use a StepOverRange plan not a RunToAddress plan. by Jim Ingham · 10 years ago
  17. 9b03fa0 Most thread plans don't handle eStopReasonInstrumentation stop reasons, by Jim Ingham · 10 years ago
  18. ddaf6a7 Make many mangled functions that might demangle a name be allowed to specify a language to use in order to soon support Pascal and Java demangling. Dawn Perchik will take care of making this so. by Greg Clayton · 10 years ago
  19. 58ef391 Fix a variety of typos. by Bruce Mitchener · 10 years ago
  20. 3294de2 Move lldb-log.cpp to core/Logging.cpp by Zachary Turner · 11 years ago
  21. 2bdbfd5 This checkin is the first step in making the lldb thread stepping mechanism more accessible from by Jim Ingham · 11 years ago
  22. 862d1bb When stepping, handle the case where the step leaves us with by Jim Ingham · 11 years ago
  23. 5beccb2 If you found a step through plan stop looking up the stack for a step out plan. by Jim Ingham · 11 years ago
  24. 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
  25. b57e4a1 Roll back the changes I made in r193907 which created a new Frame by Jason Molenda · 12 years ago
  26. f23bf74 Add a new base class, Frame. It is a pure virtual function which by Jason Molenda · 12 years ago
  27. 4b86728 Examine more than 1 frame for equivalent contexts in ThreadPlanStepOverRange by Daniel Malea · 12 years ago
  28. 93ef728 Correct logic error found by inspection. by Ed Maste · 12 years ago
  29. 4d56e9c This commit does two things. One, it converts the return value of the QueueThreadPlanXXX by Jim Ingham · 12 years ago
  30. 60c4118 If ThreadPlanCallFunction hasn't set its notion of the "real stop info" yet, just return the current PrivateStopInfo. by Jim Ingham · 12 years ago
  31. 221d51c Figure out the reply to "PlanExplainsStop" once when we stop and then use the cached by Jim Ingham · 12 years ago
  32. 5160ce5 <rdar://problem/13521159> by Greg Clayton · 13 years ago
  33. 0161b49 Reworked the way Process::RunThreadPlan and the ThreadPlanCallFunction interoperate to fix problems where by Jim Ingham · 13 years ago
  34. f85defa Adding eStopReasonThreadExiting and fixing the handling of this state on Linux. by Andrew Kaylor · 13 years ago
  35. 90ba811 <rdar://problem/12649160> by Greg Clayton · 13 years ago
  36. 3bfa753 Add a workaround to problems with the clang debug info for by Jim Ingham · 13 years ago
  37. 4a58e96 Found a couple more places where we need to run all threads when stepping. by Jim Ingham · 13 years ago
  38. 513c6bb Initial check-in of "fancy" inlined stepping. Doesn't do anything useful unless you switch LLDB_FANCY_INLINED_STEPPING to true. With that by Jim Ingham · 13 years ago
  39. 5f1a4e1 Relax the test for "is the frame I am going to step back out to the one I started from" in ThreadPlanStepOverRange so you don't by Jim Ingham · 13 years ago
  40. 18de2fd If the ObjC Step Through Trampoline plan causes a target crash, properly propagate the error back to by Jim Ingham · 13 years ago
  41. 64e7ead Clean up the usage of "MasterPlan" status in ThreadPlans. Only user-initiated plans by Jim Ingham · 13 years ago
  42. fbbfe6e Fix reporting of stop reasons when the StepOver & StepIn plans stop because of a crash or breakpoint. Added the ability for a plan to say it is done but doesn't want to be the reason for the stop. by Jim Ingham · 13 years ago
  43. cf274f9 Rework how master plans declare themselves. Also make "PlanIsBasePlan" not rely only on this being the bottom plan in the stack, but allow the plan to declare itself as such. by Jim Ingham · 13 years ago
  44. 564d8bc2 First stage of implementing step by "run to next branch". Doesn't work yet, is turned off. by Jim Ingham · 14 years ago
  45. b5c0d1c Convert the thread plans over from using the stack count to do their logic to using StackID's. This by Jim Ingham · 14 years ago
  46. 1ac04c3 Thread hardening part 3. Now lldb_private::Thread objects have std::weak_ptr by Greg Clayton · 14 years ago
  47. 25f6670 Make the ThreadPlanStepThrough set a backstop breakpoint on the return address from by Jim Ingham · 14 years ago
  48. c4c9fed Make the step range plans capable of supporting multiple ranges. Also make their constructors public, there isn't any good reason why you shouldn't be able to make these plans. by Jim Ingham · 14 years ago
  49. e0d378b Fixed the LLDB build so that we can have private types, private enums and by Greg Clayton · 15 years ago
  50. 514487e Made lldb_private::ArchSpec contain much more than just an architecture. It by Greg Clayton · 15 years ago
  51. 481cef2 Added support for stepping out of a frame. If you have 10 stack frames, and you by Greg Clayton · 15 years ago
  52. 2d4edfb Modified all logging calls to hand out shared pointers to make sure we by Greg Clayton · 15 years ago
  53. 5822173 Handle stepping through ObjC vtable trampoline code. by Jim Ingham · 15 years ago
  54. f5e56de Moved the section load list up into the target so we can use the target by Greg Clayton · 15 years ago
  55. b01e742 Two changes in this checkin. Added a ThreadPlanKind so that I can do some reasoning based on the kind of thread plan by Jim Ingham · 15 years ago
  56. 30fdc8d Initial checkin of lldb code from internal Apple repo. by Chris Lattner · 15 years ago