Skip to content
  1. Jul 19, 2012
  2. Jul 18, 2012
    • Greg Clayton's avatar
      <rdar://problem/10998370> · 5e0c5e81
      Greg Clayton authored
      Improved the error message when we can find a function in the current program by printing the demangled name.
      
      Also added the ability to create lldb_private::Mangled instances with a ConstString when we already have a ConstString for a mangled or demangled name. Also added the ability to call SetValue with a ConstString and also without a boolean to indicate if the string is mangled where we will now auto-detect if the string is mangled.
      
      llvm-svn: 160450
      5e0c5e81
  3. Jul 17, 2012
  4. Jul 14, 2012
  5. Jul 13, 2012
  6. Jul 12, 2012
    • Sean Callanan's avatar
      Added a check to the Section to make sure we don't · 27e02d07
      Sean Callanan authored
      return sections that don't have valid modules.
      
      <rdar://problem/11605824>
      
      llvm-svn: 160141
      27e02d07
    • Greg Clayton's avatar
      <rdar://problem/11791234> · 4e0fe8ab
      Greg Clayton authored
      Fixed a case where the python interpreter could end up holding onto a previous lldb::SBProcess (probably in lldb.process) when run under Xcode. Prior to this fix, the lldb::SBProcess held onto a shared pointer to a lldb_private::Process. This in turn could cause the process to still have a thread list with stack frames. The stack frames would have module shared pointers in the lldb_private::SymbolContext objects. 
      
      We also had issues with things staying in the shared module list too long when we found things by UUID (we didn't remove the out of date ModuleSP from the global module cache).
      
      Now all of this is fixed and everything goes away between runs.
      
      llvm-svn: 160140
      4e0fe8ab
    • Jim Ingham's avatar
      Add a command channel to wait on along with the file descriptor the... · 17ce5b97
      Jim Ingham authored
      Add a command channel to wait on along with the file descriptor the ConnectionFileDescriptor class is managing, so we can always pop ourselves out of our select call regardless of how well behaved the channel we are talking to is.
      
      <rdar://problem/11448282>
      
      llvm-svn: 160100
      17ce5b97
    • Greg Clayton's avatar
      Modifying the "address" format, which prints a pointer and a description of... · c3a86bf9
      Greg Clayton authored
      Modifying the "address" format, which prints a pointer and a description of what it points to, to detect when the deref of that pointer points to something valid. So if you have:
      
          % cat sp.cpp 
          #include <tr1/memory>
      
          class A
          {
          public:
              A (): m_i (12) {}
              virtual ~A() {}
          private:
              int m_i;
          };
      
          int main (int argc, char const *argv[], char const *envp[])
          {
              A *a_pointers[2] = { NULL, NULL };
              A a1;
              A a2;
              a_pointers[0] = &a1;
              a_pointers[1] = &a2;
              return 0;
          }
      
      
      And you stop at the "return 0", you can now read memory using the "address" format and see:
      
      (lldb) memory read --format address `&a_pointers`
      0x7fff5fbff870: 0x00007fff5fbff860 -> 0x00000001000010b0 vtable for A + 16
      0x7fff5fbff878: 0x00007fff5fbff850 -> 0x00000001000010b0 vtable for A + 16
      0x7fff5fbff880: 0x00007fff5fbff8d0
      0x7fff5fbff888: 0x00007fff5fbff8c0
      0x7fff5fbff890: 0x0000000000000001
      0x7fff5fbff898: 0x36d54c275add2294
      0x7fff5fbff8a0: 0x00007fff5fbff8b0
      0x7fff5fbff8a8: 0x0000000100000bb4 a.out`start + 52
      
      Note the extra dereference that was applied to 0x00007fff5fbff860 and 0x00007fff5fbff850 so we can see that these are "A" classes.
      
      llvm-svn: 160085
      c3a86bf9
  7. Jul 11, 2012
  8. Jul 07, 2012
    • Greg Clayton's avatar
      <rdar://problem/11357711> · 7820bd1e
      Greg Clayton authored
      Fixed a crasher where the section load list was not thread safe.
      
      llvm-svn: 159884
      7820bd1e
    • Greg Clayton's avatar
      Make const result value objects able to return dynamic types. · 9407302d
      Greg Clayton authored
      Modified the heap.py to be able to correctly indentify the exact ivar for the "ptr_refs" command no matter how deep the ivar is in a class hierarchy. Also fixed the ability for the heap command to symbolicate the stack backtrace when MallocStackLogging is set in the environment and the "--stack" option was specified.
      
      llvm-svn: 159883
      9407302d
  9. Jul 06, 2012
  10. Jun 29, 2012
  11. Jun 27, 2012
  12. Jun 08, 2012
    • Sean Callanan's avatar
      Committed a change to the SectionList that introduces · 5677536b
      Sean Callanan authored
      a cache of address ranges for child sections,
      accelerating lookups.  This cache is built during
      object file loading, and is then set in stone once
      the object files are done loading.  (In Debug builds,
      we ensure that the cache is never invalidated after
      that.)
      
      llvm-svn: 158188
      5677536b
  13. Jun 06, 2012
    • Johnny Chen's avatar
      rdar://problem/11598332 · c4392d2a
      Johnny Chen authored
      The output of 'register read' should be prettier.
      Modify RegisterValue::Dump() to take an additional parameter:
      
          uint32_t reg_name_right_align_at
      
      which defaults to 0 (i.e., no alignment at all).  Update the 'register read' command impl to pass 8
      as the alignment to RegisterValue::Dump() method.  If more sophisticated scheme is desired, we will
      need to introduce an additional command option to 'register read' later on.
      
      llvm-svn: 158039
      c4392d2a
  14. Jun 05, 2012
    • Johnny Chen's avatar
      rdar://problem/11597911 · 3f476c4a
      Johnny Chen authored
      Fix confusing error message about "expression did not evaluate to an address" when doing 'watchpoint set expression".
      Instead of using 0 as the fail_value when invoking ValueObject::GetValueAsUnsigned(), modify the API to take an addition
      bool pointer (defaults to NULL) to indicate success/failure of value conversion.
      
      llvm-svn: 158016
      3f476c4a
  15. May 30, 2012
  16. May 29, 2012
  17. May 26, 2012
    • Greg Clayton's avatar
      Fixed memory management issues introduced by revision 157507. · d70b14ea
      Greg Clayton authored
      A local std::string was being filled in and then the function would return "s.c_str()".
      A local StreamString (which contains a std::string) was being filled in, and essentially also returning the c string from the std::string, though it was in a the StreamString class.
      
      The fix was to not do this by passing a stream object into StringList::Join() and fix the "arch_helper()" function to do what it should: cache the result in a global.
      
      llvm-svn: 157519
      d70b14ea
    • Johnny Chen's avatar
      rdar://problem/11535045 · ca7835c6
      Johnny Chen authored
      Make 'help arch' return the list of supported architectures.
      Add a convenience method StringList::Join(const char *separator) which is called from the help function for 'arch'.
      Also add a simple test case.
      
      llvm-svn: 157507
      ca7835c6
  18. May 25, 2012
  19. May 21, 2012
  20. May 17, 2012
  21. May 16, 2012
  22. May 15, 2012
    • Greg Clayton's avatar
      <rdar://problem/11455398> · c4a8a760
      Greg Clayton authored
      Add "--name" option to "image lookup" that will search both functions and symbols.
      
      Also made all of the output from any of the "image lookup" commands be the same regardless of the lookup type (function name, symbol name, func or symbol, file and line, address, etc). The --verbose or -v option also will expand the results as needed and display things so they look the same.
      
      llvm-svn: 156835
      c4a8a760
  23. May 10, 2012
    • Greg Clayton's avatar
      <rdar://problem/11330621> · ba812f42
      Greg Clayton authored
      Fixed the DisassemblerLLVMC disassembler to parse more efficiently instead of parsing opcodes over and over. The InstructionLLVMC class now only reads the opcode in the InstructionLLVMC::Decode function. This can be done very efficiently for ARM and architectures that have fixed opcode sizes. For x64 it still calls the disassembler to get the byte size.
      
      Moved the lldb_private::Instruction::Dump(...) function up into the lldb_private::Instruction class and it now uses the function that gets the mnemonic, operandes and comments so that all disassembly is using the same code.
      
      Added StreamString::FillLastLineToColumn() to allow filling a line up to a column with a character (which is used by the lldb_private::Instruction::Dump(...) function).
      
      Modified the Opcode::GetData() fucntion to "do the right thing" for thumb instructions.
      
      llvm-svn: 156532
      ba812f42
  24. May 09, 2012
  25. May 08, 2012
  26. May 05, 2012
    • Jim Ingham's avatar
      Don't expose the pthread_mutex_t underlying the Mutex & Mutex::Locker classes. · 10ebffa4
      Jim Ingham authored
      No one was using it and Locker(pthread_mutex_t *) immediately asserts for 
      pthread_mutex_t's that don't come from a Mutex anyway.  Rather than try to make
      that work, we should maintain the Mutex abstraction and not pass around the
      platform implementation...
      
      Make Mutex::Locker::Lock take a Mutex & or a Mutex *, and remove the constructor
      taking a pthread_mutex_t *.  You no longer need to call Mutex::GetMutex to pass
      your mutex to a Locker (you can't in fact, since I made it private.)
      
      llvm-svn: 156221
      10ebffa4
Loading