Skip to content
  1. Aug 08, 2012
  2. Aug 07, 2012
  3. Aug 06, 2012
    • Greg Clayton's avatar
      <rdar://problem/12029894> · e9982672
      Greg Clayton authored
      Use the built in demangler for Apple builds for now which has needed demangling fixes, and make the cxa_demangle.cpp use rtti in the Xcode project settings as it requires it be enabled.
      
      llvm-svn: 161323
      e9982672
  4. Aug 04, 2012
  5. Aug 02, 2012
  6. Aug 01, 2012
    • Johnny Chen's avatar
      Silence the "Command ... failed!" message when not running in trace mode. · 552d6719
      Johnny Chen authored
      You run with trace mode by passing '-t' to the test driver.
      
      llvm-svn: 161130
      552d6719
    • Sean Callanan's avatar
      Instructions generated by a disassembler can now · 7e6d4e5a
      Sean Callanan authored
      keep a shared pointer to their disassembler.  This
      is important for the LLVM-C disassembler because
      it needs to lock its parent in order to disassemble
      itself.
      
      This means that every interface that returned a
      Disassembler* needs to return a DisassemblerSP, so
      that the instructions and any external owners share
      the same reference count on the object.  I changed
      all clients to use this shared pointer, which also
      plugged a few leaks.
      
      <rdar://problem/12002822>
      
      llvm-svn: 161123
      7e6d4e5a
    • Filipe Cabecinhas's avatar
      Make the objc-runtime work with Python 2.6 · bbb648ef
      Filipe Cabecinhas authored
      llvm-svn: 161111
      bbb648ef
    • Greg Clayton's avatar
      <rdar://problem/11275622> · 1811b4fa
      Greg Clayton authored
      Added new API to lldb::SBTypeMember for bitfields:
      
          bool SBTypeMember::IsBitfield();
          uint32_t SBTypeMember::GetBitfieldSizeInBits();
      
      Also added new properties for easy access. Now SBTypeMember objects in python have a "fields" property for all type fields, "bases" for all direct bases, "vbases" for all virtual base classes and "members" for a combo of all three organized by bit offset. They all return a python list() of SBTypeMember objects. Usage:
      (lldb) script
      >>> t = lldb.target.FindFirstType("my_type")
      >>> for field in t.fields:
      ...     print field
      >>> for vbase in t.vbases:
      ...     print vbase
      >>> for base in t.bases:
      ...     print base
      >>> for member in t.members:
      ...     print member
      
      Also added new "is_bitfield" property to the SBTypeMember objects that will return the result of SBTypeMember::IsBitfield(), and "bitfield_bit_size" which will return the result of SBTypeMember::GetBitfieldSizeInBits();
      
      I also fixed "SBTypeMember::GetOffsetInBytes()" to return the correct byte offset.
      
      llvm-svn: 161091
      1811b4fa
    • Jason Molenda's avatar
      When building up the UnwindPlan based on eh_frame unwind · fa67e879
      Jason Molenda authored
      instructions, be sure to allocate new UnwindPlan::Row's each
      time we push a row on to the UnwindPlan so we don't mutate 
      it any further.
      
      (fallout from changing the UnwindPlan from having a vector
      of Row's to having a vector of RowSP shared pointers.)
      
      <rdar://problem/11997385> 
      
      llvm-svn: 161089
      fa67e879
    • Sean Callanan's avatar
      Fixed a problem where stepping out would turn into · 708709c0
      Sean Callanan authored
      a continue if the unwinder didn't unwind correctly.
      
      <rdar://problem/11989668>
      
      llvm-svn: 161086
      708709c0
  7. Jul 31, 2012
  8. Jul 30, 2012
  9. Jul 28, 2012
  10. Jul 27, 2012
    • Sean Callanan's avatar
      Changed the IRForTarget pass to ensure that all · bad134ff
      Sean Callanan authored
      sel_getName() calls are generated for all Objective-C
      selectors before static literals are moved to the
      static allocation.  This prevents errors of the form
      
      Internal error [IRForTarget]: Couldn't change a static
      reference to an Objective-C selector to a dynamic
      reference
      
      <rdar://problem/11331906>
      
      llvm-svn: 160887
      bad134ff
    • 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
  11. Jul 26, 2012
  12. Jul 25, 2012
  13. Jul 24, 2012
Loading