Skip to content
  1. Jul 06, 2012
  2. Jul 05, 2012
  3. Jul 04, 2012
  4. Jul 03, 2012
    • Greg Clayton's avatar
      Make the interactive command interpreter build into the "crashlog" command... · f7ab038a
      Greg Clayton authored
      Make the interactive command interpreter build into the "crashlog" command work correctly when run inside LLDB. Before this fix the "cmd.Cmd" object was trying to read from stdin itself and it was competing without command interpreter for the bytes.
      
      llvm-svn: 159688
      f7ab038a
    • Greg Clayton's avatar
      <rdar://problem/11800213> · c8a0ce0a
      Greg Clayton authored
      Fixed a crasher in the "thread continue" code. There were many logic errors in the DoExecute function where thread index IDs were being used where the actual zero based thread index should have been used. This could cause crashes to happen since looking up a thread by index ID, when the zero based index of a thread should be used would return an empty thread shared pointer and cause a NULL deref.
      
      llvm-svn: 159686
      c8a0ce0a
    • Greg Clayton's avatar
      Improved the name comparing logic a bit. · d7331f2a
      Greg Clayton authored
      llvm-svn: 159685
      d7331f2a
    • Greg Clayton's avatar
      <rdar://problem/11744001> · 1f5181aa
      Greg Clayton authored
      Fixed an issue where GDB servers that don't support the thread suffix could get registers states incorrectly due to an incorrect assumption that the current register thread (set using the "Hg%x" packet) will always be cached between runs. Now we clear the cached register thred when the process is resumed.
      
      llvm-svn: 159603
      1f5181aa
  5. Jul 02, 2012
  6. Jun 30, 2012
    • Greg Clayton's avatar
      Added documentation for many of our python properties and also made the... · 5ef31a9c
      Greg Clayton authored
      Added documentation for many of our python properties and also made the property help show up by declaring the properties correctly. We previosly declared properties into a local "x" variable, what I didn't realize is that the help will use this as the property name for the help output.
      
      llvm-svn: 159468
      5ef31a9c
  7. Jun 29, 2012
  8. Jun 28, 2012
  9. Jun 27, 2012
  10. Jun 26, 2012
  11. Jun 22, 2012
  12. Jun 21, 2012
    • Jason Molenda's avatar
      Preliminary set of changes to ObjectFileMachO::ParseSymtab when lldb · a5609c85
      Jason Molenda authored
      is being run on iOS natively and we are examining a binary that is
      in the shared-cache.  The shared cache may be set up to not load the
      symbol names in memory (and may be missing some local symbols entirely,
      to boot) so we need to read the on-disk-but-not-mapped-into-memory cache
      of symbol names/symbols before we start processing the in-memory nlist
      entries.  
      
      This code needs to be reorganized into its own separate method, ideally
      we'll find some way to not duplicate the nlist symbol handling.  But 
      we need to handle this new format quickly and we'll clean up later.
      
      Thanks for James McIlree for the patch.  Fixes <rdar://problem/11639018>.
      
      llvm-svn: 158891
      a5609c85
    • Jason Molenda's avatar
      Bump version number to lldb-160. · 06bca9ed
      Jason Molenda authored
      llvm-svn: 158890
      06bca9ed
Loading