Skip to content
  1. May 13, 2011
    • Johnny Chen's avatar
      When trying to print out the function name corresponding to the frame, if the function obj · 52b0ffd9
      Johnny Chen authored
      from the frame is not valid, try look for the symbol in the symbol table.
      
      llvm-svn: 131273
      52b0ffd9
    • Sean Callanan's avatar
      Introduced support for UnknownAnyTy, the Clang type · 77502265
      Sean Callanan authored
      representing variables whose type must be inferred
      from the way they are used.  Functions without debug
      information now return UnknownAnyTy and must be cast.
      
      Variables with no debug information are not yet using
      UnknownAnyTy; instead they are assumed to be void*.
      Support for variables of unknown type is coming (and,
      in fact, some relevant support functions are included
      in this commit) but will take a bit of extra effort.
      
      The testsuite has also been updated to reflect the new
      requirement that the result of printf be cast, i.e.
      
      expr (int) printf("Hello world!")
      
      llvm-svn: 131263
      77502265
  2. May 12, 2011
  3. May 11, 2011
  4. May 10, 2011
  5. May 09, 2011
  6. May 08, 2011
  7. May 07, 2011
  8. May 06, 2011
  9. May 05, 2011
  10. May 04, 2011
  11. May 03, 2011
  12. May 02, 2011
  13. Apr 29, 2011
  14. Apr 28, 2011
    • Johnny Chen's avatar
      Move the iteration protocol of lldb objects to the auto-generated lldb Python module. · fbc0d271
      Johnny Chen authored
      This is so that the objects which support the iteration protocol are immediately obvious
      from looking at the lldb.py file.
      
      SBTarget supports two types of iterations: module and breakpoint.  For an SBTarget instance,
      you will need to issue either:
      
          for m in target.module_iter()
      
      or
      
          for b in target.breakpoint_iter()
      
      For other single iteration protocol objects, just use, for example:
      
          for thread in process:
              ID = thread.GetThreadID()
              for frame in thread:
                  frame.Disassemble()
                  ....
      
      llvm-svn: 130442
      fbc0d271
  15. Apr 27, 2011
    • Johnny Chen's avatar
      Add a utility function smart_iter() which has knowledge of the getsize and the getelem · b2e1a5c9
      Johnny Chen authored
      method names of all the lldb container objects and returns an iterator object when
      passed an eligible lldb container object.
      
      Example:
      
          from lldb_util import smart_iter
          for thread in smart_iter(process):
              ID = thread.GetThreadID()
              if thread.GetStopReason() == lldb.eStopReasonBreakpoint:
                  stopped_due_to_breakpoint = True
              for frame in smart_iter(thread):
                  self.assertTrue(frame.GetThread().GetThreadID() == ID)
              ...
      
      Add a test case for lldb.smart_iter().
      
      llvm-svn: 130332
      b2e1a5c9
Loading