Skip to content
  1. Feb 24, 2012
    • Greg Clayton's avatar
      <rdar://problem/10103468> · e72dfb32
      Greg Clayton authored
      I started work on being able to add symbol files after a debug session
      had started with a new "target symfile add" command and quickly ran into
      problems with stale Address objects in breakpoint locations that had 
      lldb_private::Section pointers into modules that had been removed or 
      replaced. This also let to grabbing stale modules from those sections. 
      So I needed to thread harded the Address, Section and related objects.
      
      To do this I modified the ModuleChild class to now require a ModuleSP
      on initialization so that a weak reference can created. I also changed
      all places that were handing out "Section *" to have them hand out SectionSP.
      All ObjectFile, SymbolFile and SymbolVendors were inheriting from ModuleChild
      so all of the find plug-in, static creation function and constructors now
      require ModuleSP references instead of Module *. 
      
      Address objects now have weak references to their sections which can
      safely go stale when a module gets destructed. 
      
      This checkin doesn't complete the "target symfile add" command, but it
      does get us a lot clioser to being able to do such things without a high
      risk of crashing or memory corruption.
      
      llvm-svn: 151336
      e72dfb32
    • Johnny Chen's avatar
      Add a class method HasWatchpointOccurred() to inspect the "method of debug entry" field · 840305f1
      Johnny Chen authored
      of the DSCR to check whether it was because of watchpoint occurred.
      
      llvm-svn: 151333
      840305f1
    • Enrico Granata's avatar
      commenting parts of std::map test case which would make the test case fail... · d2c15e4c
      Enrico Granata authored
      commenting parts of std::map test case which would make the test case fail when using TOT clang, but succeed on older compiler releases
      
      llvm-svn: 151309
      d2c15e4c
    • Sean Callanan's avatar
      Updated LLVM to take some fixes that make the · 6f298a64
      Sean Callanan authored
      Intel disassembler usable.
      
      Also flipped the switch: we are now exclusively
      using Disassembler.h instead of
      EnhancedDisassembly.h for all disassembly in
      LLDB.
      
      llvm-svn: 151306
      6f298a64
    • Johnny Chen's avatar
    • Enrico Granata's avatar
      fixing a syntax error with objc_runtime.py · b8cbe9cb
      Enrico Granata authored
      llvm-svn: 151304
      b8cbe9cb
    • Enrico Granata's avatar
      This patch provides a set of formatters for most of the commonly used Cocoa classes. · b7dba3f9
      Enrico Granata authored
      The formatter for NSString is an improved version of the one previously shipped as an example, the others are new in design and implementation.
      A more robust and OO-compliant Objective-C runtime wrapper is provided for runtime versions 1 and 2 on 32 and 64 bit.
      The formatters are contained in a category named "AppKit", which is not enabled at startup.
      
      llvm-svn: 151301
      b7dba3f9
    • Enrico Granata's avatar
      This patch provides a set of formatters for most of the commonly used Cocoa classes. · eb4a4798
      Enrico Granata authored
      The formatter for NSString is an improved version of the one previously shipped as an example, the others are new in design and implementation.
      A more robust and OO-compliant Objective-C runtime wrapper is provided for runtime versions 1 and 2 on 32 and 64 bit.
      The formatters are contained in a category named "AppKit", which is not enabled at startup.
      
      llvm-svn: 151300
      eb4a4798
    • Enrico Granata's avatar
      This patch provides a set of formatters for most of the commonly used Cocoa classes. · d3d444f8
      Enrico Granata authored
      The formatter for NSString is an improved version of the one previously shipped as an example, the others are new in design and implementation.
      A more robust and OO-compliant Objective-C runtime wrapper is provided for runtime versions 1 and 2 on 32 and 64 bit.
      The formatters are contained in a category named "AppKit", which is not enabled at startup.
      
      llvm-svn: 151299
      d3d444f8
  2. Feb 23, 2012
  3. Feb 22, 2012
  4. Feb 21, 2012
Loading