Skip to content
  1. Aug 30, 2010
  2. Aug 28, 2010
  3. Aug 27, 2010
    • Greg Clayton's avatar
      Made it so we update the current frames from the previous frames by doing STL · 68275d5e
      Greg Clayton authored
      swaps on the variable list, value object list, and disassembly. This avoids
      us having to try and update frame indexes and other things that were getting
      out of sync.
      
      llvm-svn: 112301
      68275d5e
    • Johnny Chen's avatar
      Trivial doc string mod. · ccd570da
      Johnny Chen authored
      llvm-svn: 112293
      ccd570da
    • Greg Clayton's avatar
      Simplified the StackFrameList class down to a single frames list again · 5082c5fd
      Greg Clayton authored
      instead of trying to maintain the real frame list (unwind frames) and an
      inline frame list. The information is cheap to produce when we already have
      looked up a block and was making stack frame uniquing difficult when trying
      to use the previous stack when making the current stack.
      
      We now maintain the previous value object lists for common frames between
      a previous and current frames so we will be able to tell when variable values
      change.
      
      llvm-svn: 112277
      5082c5fd
    • Johnny Chen's avatar
      Added TestHelloWorld.py which exercises the Python APIs for target, breakpoint, · 82d404c8
      Johnny Chen authored
      and process.  Added comment within the file about issues of using LaunchProcess
      of SBTarget to launch a process (rdar://problem/8364687).
      
      llvm-svn: 112276
      82d404c8
    • Sean Callanan's avatar
      This is a major refactoring of the expression parser. · 1a8d4093
      Sean Callanan authored
      The goal is to separate the parser's data from the data
      belonging to the parser's clients.  This allows clients
      to use the parser to obtain (for example) a JIT compiled
      function or some DWARF code, and then discard the parser
      state.
      
      Previously, parser state was held in ClangExpression and
      used liberally by ClangFunction, which inherited from
      ClangExpression.  The main effects of this refactoring 
      are:
      
      - reducing ClangExpression to an abstract class that
        declares methods that any client must expose to the
        expression parser,
      
      - moving the code specific to implementing the "expr"
        command from ClangExpression and
        CommandObjectExpression into ClangUserExpression,
        a new class,
      
      - moving the common parser interaction code from
        ClangExpression into ClangExpressionParser, a new
        class, and
      
      - making ClangFunction rely only on
        ClangExpressionParser and not depend on the
        internal implementation of ClangExpression.
      
      Side effects include:
      
      - the compiler interaction code has been factored
        out of ClangFunction and is now in an AST pass
        (ASTStructExtractor),
      
      - the header file for ClangFunction is now fully
        documented,
      
      - several bugs that only popped up when Clang was
        deallocated (which never happened, since the
        lifetime of the compiler was essentially infinite)
        are now fixed, and
      
      - the developer-only "call" command has been
        disabled.
      
      I have tested the expr command and the Objective-C
      step-into code, which use ClangUserExpression and
      ClangFunction, respectively, and verified that they
      work.  Please let me know if you encounter bugs or
      poor documentation.
      
      llvm-svn: 112249
      1a8d4093
    • Jim Ingham's avatar
      Make: · 09b263e0
      Jim Ingham authored
      bt all
      
      show the backtrace for all threads, and:
      
      bt 1 3 4
      
      show the backtrace for threads 1, 3 and 4.  If we want to come up with some fancier syntax for thread lists later, that will be great, but this will do for now.
      
      llvm-svn: 112248
      09b263e0
    • Johnny Chen's avatar
      Added a test case to bitfields which uses the Python APIs from lldb.py. · 827edffa
      Johnny Chen authored
      Added a utility method to TestBase class to debug print an SBValue object.
      
      llvm-svn: 112247
      827edffa
    • Jim Ingham's avatar
      Change the "-S", "-F" and "-M" options to take their arguments directly,... · 2561aa61
      Jim Ingham authored
      Change the "-S", "-F" and "-M" options to take their arguments directly, rather than requiring the -n option.  This means you can't "or" together the types (i.e. set a breakpoint on a method or selector called "whatever".  But that is a pretty uncommon operation, and having to provide two flags for the more common "set a breakpoint on this selector" is annoying.
      
      llvm-svn: 112245
      2561aa61
    • Jim Ingham's avatar
      Add -c (count - i.e. number of frames to show) and -s (start frame.) · e2e0b451
      Jim Ingham authored
      llvm-svn: 112243
      e2e0b451
    • Johnny Chen's avatar
      Modified method doc string for verbose test description output. · c19e3a09
      Johnny Chen authored
      llvm-svn: 112236
      c19e3a09
    • Johnny Chen's avatar
      Changed from dbg.GetCurrentTarget() to dbg.GetSelectedTarget(). · bf325e4a
      Johnny Chen authored
      llvm-svn: 112231
      bf325e4a
    • Greg Clayton's avatar
      Changed the StackID to store its start PC address as a load address instead of · 12fc3e0f
      Greg Clayton authored
      a section offset address.
      
      Fixed up some very inefficient STL code.
      
      llvm-svn: 112230
      12fc3e0f
  4. Aug 26, 2010
  5. Aug 25, 2010
  6. Aug 24, 2010
    • Greg Clayton's avatar
      Got a lot of the kinks worked out in the inline support after debugging more · 9da7bd07
      Greg Clayton authored
      complex inlined examples.
      
      StackFrame classes don't have a "GetPC" anymore, they have "GetFrameCodeAddress()".
      This is because inlined frames will have a PC value that is the same as the 
      concrete frame that owns the inlined frame, yet the code locations for the
      frame can be different. We also need to be able to get the real PC value for
      a given frame so that variables evaluate correctly. To get the actual PC
      value for a frame you can use:
      
          addr_t pc = frame->GetRegisterContext()->GetPC();
      
      Some issues with the StackFrame stomping on its own symbol context were 
      resolved which were causing the information to change for a frame when the
      stack ID was calculated. Also the StackFrame will now correctly store the
      symbol context resolve flags for any extra bits of information that were 
      looked up (if you ask for a block only and you find one, you will alwasy have
      the compile unit and function).
      
      llvm-svn: 111964
      9da7bd07
    • Johnny Chen's avatar
      Converted to Makefile.rules. · 9c194e3e
      Johnny Chen authored
      llvm-svn: 111961
      9c194e3e
Loading