Skip to content
  1. Aug 29, 2012
    • Greg Clayton's avatar
      <rdar://problem/11757916> · 1f746071
      Greg Clayton authored
      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
      1f746071
  2. Aug 24, 2012
  3. Aug 22, 2012
  4. Aug 14, 2012
  5. Aug 13, 2012
    • Johnny Chen's avatar
      Comment changes. · f97ecd70
      Johnny Chen authored
      llvm-svn: 161787
      f97ecd70
    • Johnny Chen's avatar
      rdar://problem/12007576 · 209bd65e
      Johnny Chen authored
      Record the snapshot of our watched value when the watchpoint is set or hit.
      And report the old/new values when watchpoint is triggered.  Add some test scenarios.
      
      llvm-svn: 161785
      209bd65e
  6. Aug 11, 2012
  7. Aug 10, 2012
  8. Aug 09, 2012
  9. Aug 08, 2012
  10. Aug 04, 2012
  11. Aug 01, 2012
  12. Jul 31, 2012
  13. Jul 28, 2012
    • Jim Ingham's avatar
      Added an lldb_private & equivalent SB API to send an AsyncInterrupt to the event loop. · cfc0935e
      Jim Ingham authored
      Convert from calling Halt in the lldb Driver.cpp's input reader's sigint handler to sending this AsyncInterrupt so it can be handled in the 
      event loop.
      If you are attaching and get an async interrupt, abort the attach attempt.
      Also remember to destroy the process if get interrupted while attaching.
      Getting this to work also required handing the eBroadcastBitInterrupt in a few more places in Process WaitForEvent & friends.
      
      <rdar://problem/10792425>
      
      llvm-svn: 160903
      cfc0935e
  14. Jul 27, 2012
    • Jason Molenda's avatar
      Don't have ExecutionContextRef::SetTargetPtr fill in the frame · 8d3e8240
      Jason Molenda authored
      information if we're not stopped.  This could try to read registers
      etc when the process is still running and debug builds of lldb would
      assert down in GDBRemoteRegisterContext.cpp ReadRegisterBytes because
      we couldn't get the sequence mutex for talking to the remote system.
      Non-debug builds would just silently fail when doing this.
      <rdar://problem/11941758>
      
      llvm-svn: 160829
      8d3e8240
  15. Jul 26, 2012
  16. Jul 20, 2012
  17. Jul 18, 2012
  18. Jul 17, 2012
  19. Jul 14, 2012
  20. Jul 13, 2012
  21. Jul 11, 2012
  22. Jul 07, 2012
  23. Jul 04, 2012
  24. Jul 02, 2012
  25. Jun 28, 2012
  26. Jun 22, 2012
  27. Jun 08, 2012
Loading