Skip to content
  1. Feb 09, 2012
  2. Feb 08, 2012
    • Johnny Chen's avatar
      After discussions with Jim and Greg, modify the 'watchpoint set' command to... · 2ffa754a
      Johnny Chen authored
      After discussions with Jim and Greg, modify the 'watchpoint set' command to become a mutiword command
      with subcommand 'expression' and 'variable'.  The first subcommand is for supplying an expression to
      be evaluated into an address to watch for, while the second is for watching a variable.
      
      'watchpoint set expression' is a raw command, which means that you need to use the "--" option terminator
      to end the '-w' or '-x' option processing and to start typing your expression.
      
      Also update several test cases to comply and add a couple of test cases into TestCompletion.py,
      in particular, test that 'watchpoint set ex' completes to 'watchpoint set expression ' and that
      'watchpoint set var' completes to 'watchpoint set variable '.
      
      llvm-svn: 150109
      2ffa754a
    • Johnny Chen's avatar
      Refine the 'watchpoint set' command to now require either the '-v' option (for... · 34ddc8db
      Johnny Chen authored
      Refine the 'watchpoint set' command to now require either the '-v' option (for watching of a variable) or
      the '-e' option (for watching of an address) to be present.
      
      Update some existing test cases with the required option and add some more test cases.
      
      Since the '-v' option takes <variable-name> and the '-e' option takes <expr> as the command arg,
      the existing infrastructure for generating the option usage can produce confusing help message,
      like:
      
        watchpoint set -e [-w <watch-type>] [-x <byte-size>] <variable-name | expr>
        watchpoint set -v [-w <watch-type>] [-x <byte-size>] <variable-name | expr>
      
      The solution adopted is to provide an extra member field to the struct CommandArgumentData called
      (uint32_t)arg_opt_set_association, whose purpose is to link this particular argument data with some
      option set(s).  Also modify the signature of CommandObject::GetFormattedCommandArguments() to:
      
        GetFormattedCommandArguments (Stream &str, uint32_t opt_set_mask = LLDB_OPT_SET_ALL)
      
      it now takes an additional opt_set_mask which can be used to generate a filtered formatted command
      args for help message.
      
      Options::GenerateOptionUsage() impl is modified to call the GetFormattedCommandArguments() appropriately.
      So that the help message now looks like:
      
        watchpoint set -e [-w <watch-type>] [-x <byte-size>] <expr>
        watchpoint set -v [-w <watch-type>] [-x <byte-size>] <variable-name>
      
      rdar://problem/10703256
      
      llvm-svn: 150032
      34ddc8db
  3. Feb 06, 2012
    • Johnny Chen's avatar
    • Johnny Chen's avatar
      Fix a typo in specifying the error path when launching the inferior. · 3397e7cd
      Johnny Chen authored
      llvm-svn: 149899
      3397e7cd
    • Johnny Chen's avatar
      Print out the frame only if self.TraceOn() is True. · a27a16c0
      Johnny Chen authored
      llvm-svn: 149893
      a27a16c0
    • Johnny Chen's avatar
      Add regular C++ inheritance in addition to the virtual inheritance to TestCppValueCast.py. · 2eb6c3d2
      Johnny Chen authored
      Plus mark the virtual inheritance test cases as expected failures.
      
      llvm-svn: 149891
      2eb6c3d2
    • Greg Clayton's avatar
      Removed all of the "#ifndef SWIG" from the SB header files since we are using · 5569e64e
      Greg Clayton authored
      interface (.i) files for each class.
      
      Changed the FindFunction class from:
      
      uint32_t
      SBTarget::FindFunctions (const char *name, 
                               uint32_t name_type_mask, 
                               bool append, 
                               lldb::SBSymbolContextList& sc_list)
      
      uint32_t
      SBModule::FindFunctions (const char *name, 
                               uint32_t name_type_mask, 
                               bool append, 
                               lldb::SBSymbolContextList& sc_list)
      
      To:
      
      lldb::SBSymbolContextList
      SBTarget::FindFunctions (const char *name, 
                               uint32_t name_type_mask = lldb::eFunctionNameTypeAny);
      
      lldb::SBSymbolContextList
      SBModule::FindFunctions (const char *name,
                               uint32_t name_type_mask = lldb::eFunctionNameTypeAny);
      
      This makes the API easier to use from python. Also added the ability to
      append a SBSymbolContext or a SBSymbolContextList to a SBSymbolContextList.
      
      Exposed properties for lldb.SBSymbolContextList in python:
      
      lldb.SBSymbolContextList.modules => list() or all lldb.SBModule objects in the list
      lldb.SBSymbolContextList.compile_units => list() or all lldb.SBCompileUnits objects in the list
      lldb.SBSymbolContextList.functions => list() or all lldb.SBFunction objects in the list
      lldb.SBSymbolContextList.blocks => list() or all lldb.SBBlock objects in the list
      lldb.SBSymbolContextList.line_entries => list() or all lldb.SBLineEntry objects in the list
      lldb.SBSymbolContextList.symbols => list() or all lldb.SBSymbol objects in the list
      
      This allows a call to the SBTarget::FindFunctions(...) and SBModule::FindFunctions(...)
      and then the result can be used to extract the desired information:
      
      sc_list = lldb.target.FindFunctions("erase")
      
      for function in sc_list.functions:
          print function
      for symbol in sc_list.symbols:
          print symbol
      
      Exposed properties for the lldb.SBSymbolContext objects in python:
      
      lldb.SBSymbolContext.module => lldb.SBModule
      lldb.SBSymbolContext.compile_unit => lldb.SBCompileUnit
      lldb.SBSymbolContext.function => lldb.SBFunction
      lldb.SBSymbolContext.block => lldb.SBBlock
      lldb.SBSymbolContext.line_entry => lldb.SBLineEntry
      lldb.SBSymbolContext.symbol => lldb.SBSymbol
      
      
      Exposed properties for the lldb.SBBlock objects in python:
      
      lldb.SBBlock.parent => lldb.SBBlock for the parent block that contains
      lldb.SBBlock.sibling => lldb.SBBlock for the sibling block to the current block
      lldb.SBBlock.first_child => lldb.SBBlock for the first child block to the current block
      lldb.SBBlock.call_site => for inline functions, return a lldb.declaration object that gives the call site file, line and column
      lldb.SBBlock.name => for inline functions this is the name of the inline function that this block represents
      lldb.SBBlock.inlined_block => returns the inlined function block that contains this block (might return itself if the current block is an inlined block)
      lldb.SBBlock.range[int] => access the address ranges for a block by index, a list() with start and end address is returned
      lldb.SBBlock.ranges => an array or all address ranges for this block
      lldb.SBBlock.num_ranges => the number of address ranges for this blcok
      
      SBFunction objects can now get the SBType and the SBBlock that represents the
      top scope of the function.
      
      SBBlock objects can now get the variable list from the current block. The value
      list returned allows varaibles to be viewed prior with no process if code
      wants to check the variables in a function. There are two ways to get a variable
      list from a SBBlock:
      
      lldb::SBValueList
      SBBlock::GetVariables (lldb::SBFrame& frame,
                             bool arguments,
                             bool locals,
                             bool statics,
                             lldb::DynamicValueType use_dynamic);
      
      lldb::SBValueList
      SBBlock::GetVariables (lldb::SBTarget& target,
                             bool arguments,
                             bool locals,
                             bool statics);
      
      When a SBFrame is used, the values returned will be locked down to the frame
      and the values will be evaluated in the context of that frame.
      
      When a SBTarget is used, global an static variables can be viewed without a
      running process.
      
      llvm-svn: 149853
      5569e64e
  4. Feb 04, 2012
    • Sean Callanan's avatar
      I have brought LLDB up-to-date with top of tree · 5b26f27f
      Sean Callanan authored
      LLVM/Clang.  This brings in several fixes, including:
      
      - Improvements in the Just-In-Time compiler's
        allocation of memory: the JIT now allocates
        memory in chunks of sections, improving its
        ability to generate relocations.  I have
        revamped the RecordingMemoryManager to reflect
        these changes, as well as to get the memory
        allocation and data copying out fo the
        ClangExpressionParser code.  Jim Grosbach wrote
        the updates to the JIT on the LLVM side.
      
      - A new ExternalASTSource interface to allow LLDB to
        report accurate structure layout information to
        Clang.  Previously we could only report the sizes
        of fields, not their offsets.  This meant that if
        data structures included field alignment
        directives, we could not communicate the necessary
        alignment to Clang and accesses to the data would
        fail.  Now we can (and I have update the relevant
        test case).  Thanks to Doug Gregor for implementing
        the Clang side of this fix.
      
      - The way Objective-C interfaces are completed by
        Clang has been made consistent with RecordDecls;
        with help from Doug Gregor and Greg Clayton I have
        ensured that this still works.
      
      - I have eliminated all local LLVM and Clang patches,
        committing the ones that are still relevant to LLVM
        and Clang as needed.
      
      I have tested the changes extensively locally, but
      please let me know if they cause any trouble for you.
      
      llvm-svn: 149775
      5b26f27f
    • Greg Clayton's avatar
      Convert all python objects in our API to use overload the __str__ method · 81e871ed
      Greg Clayton authored
      instead of the __repr__. __repr__ is a function that should return an
      expression that can be used to recreate an python object and we were using
      it to just return a human readable string.
      
      Fixed a crasher when using the new implementation of SBValue::Cast(SBType).
      
      Thread hardened lldb::SBValue and lldb::SBWatchpoint and did other general
      improvements to the API.
      
      Fixed a crasher in lldb::SBValue::GetChildMemberWithName() where we didn't
      correctly handle not having a target.
      
      llvm-svn: 149743
      81e871ed
    • Johnny Chen's avatar
      b428b697
  5. Feb 03, 2012
  6. Feb 02, 2012
  7. Feb 01, 2012
  8. Jan 31, 2012
  9. Jan 30, 2012
    • Johnny Chen's avatar
      Add "watch set" command as a more general interface in conjunction with "frame var -w". · dedb67ab
      Johnny Chen authored
      Also add test cases for watching a variable as well as a location expressed as an expression.
      
      o TestMyFirstWatchpoint.py:
      
        Modified to test "watchpoint set -w write global".
      
      o TestWatchLocationWithWatchSet.py:
      
        Added to test "watchpoint set -w write -x 1 g_char_ptr + 7" where a contrived example program
        with several threads is supposed to only access the array index within the range [0..6], but
        there's some misbehaving thread writing past the range.
      
      rdar://problem/10701761
      
      llvm-svn: 149280
      dedb67ab
  10. Jan 25, 2012
  11. Jan 24, 2012
    • Johnny Chen's avatar
      Modify redo.py script so that if sessin_dir is left unspecified, it uses the heuristic · d0077903
      Johnny Chen authored
      to find the possible session directories with names starting with %Y-%m-%d- (for example,
      2012-01-23-) and employs the one with the latest timestamp.  For example:
      
      johnny:/Volumes/data/lldb/svn/latest/test $ ./redo.py 
      Using session dir path: /Volumes/data/lldb/svn/latest/test/2012-01-23-11_28_30
      adding filterspec: DisassembleRawDataTestCase.test_disassemble_raw_data
      Running ./dotest.py  -C clang  -v -t -f DisassembleRawDataTestCase.test_disassemble_raw_data
      LLDB build dir: /Volumes/data/lldb/svn/latest/build/Debug
      LLDB-108
      Path: /Volumes/data/lldb/svn/latest
      URL: https://johnny@llvm.org/svn/llvm-project/lldb/trunk
      Repository Root: https://johnny@llvm.org/svn/llvm-project
      Repository UUID: 91177308-0d34-0410-b5e6-96231b3b80d8
      Revision: 148710
      Node Kind: directory
      Schedule: normal
      Last Changed Author: gclayton
      Last Changed Rev: 148650
      Last Changed Date: 2012-01-21 18:55:08 -0800 (Sat, 21 Jan 2012)
      
      
      
      Session logs for test failures/errors/unexpected successes will go into directory '2012-01-23-17_04_48'
      Command invoked: python ./dotest.py -C clang -v -t -f DisassembleRawDataTestCase.test_disassemble_raw_data
      
      Configuration:  compiler=clang
      ----------------------------------------------------------------------
      Collected 1 test
      
      Change dir to: /Volumes/data/lldb/svn/latest/test/python_api/disassemble-raw-data
      1: test_disassemble_raw_data (TestDisassembleRawData.DisassembleRawDataTestCase)
         Test disassembling raw bytes with the API. ... 
      Raw bytes:    ['0x48', '0x89', '0xe5']
      Disassembled: movq   %rsp, %rbp
      ok
      Restore dir to: /Volumes/data/lldb/svn/latest/test
      
      ----------------------------------------------------------------------
      Ran 1 test in 0.233s
      
      OK
      
      llvm-svn: 148766
      d0077903
  12. Jan 23, 2012
Loading