Skip to content
  1. Mar 23, 2011
  2. Mar 22, 2011
    • Greg Clayton's avatar
      Abtracted the innards of lldb-core away from the SB interface. There was some · fc36f791
      Greg Clayton authored
      overlap in the SWIG integration which has now been fixed by introducing
      callbacks for initializing SWIG for each language (python only right now).
      There was also a breakpoint command callback that called into SWIG which has
      been abtracted into a callback to avoid cross over as well.
      
      Added a new binary: lldb-platform
      
      This will be the start of the remote platform that will use as much of the 
      Host functionality to do its job so it should just work on all platforms.
      It is pretty hollowed out for now, but soon it will implement a platform
      using the GDB remote packets as the transport.
      
      llvm-svn: 128053
      fc36f791
  3. Mar 18, 2011
  4. Mar 17, 2011
  5. Mar 15, 2011
    • Greg Clayton's avatar
      Make the first vector of "long" instead of "int" so we can tell the difference · 3ad0572d
      Greg Clayton authored
      easier since "short" ends up with "short int" in the template allocators.
      
      llvm-svn: 127661
      3ad0572d
    • Greg Clayton's avatar
      Added a test case for unique types. In the test case there are two std::vector · 8f67fd10
      Greg Clayton authored
      types that have different contents. Currently LLDB is incorrectly uniquing,
      on MacOSX, the std::vector _VectorImpl class from the two different vector
      templates. The DWARF looks like:
      
      0x0000008e:         DW_TAG_structure_type [7] *
                           DW_AT_name( "_Vector_base<int,std::allocator<int> >" )
                           DW_AT_declaration( 0x01 )
                           DW_AT_sibling( {0x00000103} )
      
      0x00000098:             DW_TAG_structure_type [8] *
                               DW_AT_name( "_Vector_impl" )
                               DW_AT_byte_size( 0x18 )
                               DW_AT_decl_file( "/usr/include/c++/4.2.1/bits/stl_vector.h" )
                               DW_AT_decl_line( 83 )
      
      0x000000a0:                 DW_TAG_inheritance [9]  
                                   DW_AT_type( {0x000006fa} ( allocator<int> ) )
                                   DW_AT_data_member_location( +0 )
                                   DW_AT_accessibility( DW_ACCESS_public )
      
      
      
      0x0000011b:         DW_TAG_structure_type [7] *
                           DW_AT_name( "_Vector_base<short int,std::allocator<short int> >" )
                           DW_AT_declaration( 0x01 )
                           DW_AT_sibling( {0x00000190} )
      
      0x00000125:             DW_TAG_structure_type [8] *
                               DW_AT_name( "_Vector_impl" )
                               DW_AT_byte_size( 0x18 )
                               DW_AT_decl_file( "/usr/include/c++/4.2.1/bits/stl_vector.h" )
                               DW_AT_decl_line( 83 )
      
      0x0000012d:                 DW_TAG_inheritance [9]  
                                   DW_AT_type( {0x00000f75} ( allocator<short int> ) )
                                   DW_AT_data_member_location( +0 )
                                   DW_AT_accessibility( DW_ACCESS_public )
      
      
      In this case it using DIE 0x00000098 for both 0x00000098 and 0x00000125.
      
      This test will help detect this issue once I have a fix for it. I have a fix
      that I am testing.
      
      llvm-svn: 127660
      8f67fd10
  6. Mar 12, 2011
    • Johnny Chen's avatar
      Add a test directory stop-hook to test the newly added "target stop-hook" command. · b877f1ef
      Johnny Chen authored
      This uses pexpect module to spawn a 'lldb' program and uses pseudo-TTY to talk to
      the child application.
      
      The test cases test setting breakpoints, adding a stop-hook with line range, and
      verifies that when the inferior stops, the stop-hook will fire off when it is
      within range and will not fire off when it is out of range.
      
      llvm-svn: 127519
      b877f1ef
  7. Mar 11, 2011
  8. Mar 10, 2011
  9. Mar 09, 2011
  10. Mar 07, 2011
  11. Mar 05, 2011
  12. Mar 04, 2011
    • Johnny Chen's avatar
      Add docstrings for unittest framework's test methods. · 3ef86dc7
      Johnny Chen authored
      llvm-svn: 127025
      3ef86dc7
    • Johnny Chen's avatar
      Change the CFLAGS variable assignment operator to ?= (conditional variable assignment operator). · 5f45f6c0
      Johnny Chen authored
      This allows us to override CFLAGS on the command line:
      
      $ CFLAGS='-arch $(ARCH) -gdwarf-2 -O0' ./dotest.py -C clang -A i386 -v objc-optimized
      
      Session logs for test failures/errors will go into directory '2011-03-04-10_33_57'
      Command invoked: python ./dotest.py -C clang -A i386 -v objc-optimized
      ----------------------------------------------------------------------
      Collected 2 tests
      
      1: test_break_with_dsym (TestObjcOptimized.ObjcOptimizedTestCase)
         Test 'expr member' continues to work for optimized build. ... ok
      2: test_break_with_dwarf (TestObjcOptimized.ObjcOptimizedTestCase)
         Test 'expr member' continues to work for optimized build. ... ok
      
      ----------------------------------------------------------------------
      Ran 2 tests in 1.902s
      
      OK
      $
      
      llvm-svn: 127011
      5f45f6c0
    • Johnny Chen's avatar
      Add TestObjcOptimized.py under the objc-optimized directory to · 3b83d63a
      Johnny Chen authored
      test that objective-c expression parser continues to work for optimized build.
      
      Radar filed:
      # rdar://problem/9087739
      # test failure: objc_optimized does not work for "-C clang -A i386"
      
      llvm-svn: 127009
      3b83d63a
    • Johnny Chen's avatar
      Add objc source file and Makefile. Test case to follow. · 60a084a2
      Johnny Chen authored
      llvm-svn: 126980
      60a084a2
    • Johnny Chen's avatar
      Add the ability for the test suite to specify a list of compilers and a list of architectures · e0ec9ea5
      Johnny Chen authored
      on the command line.  For example, use '-A x86_64^i386' to launch the inferior use both x86_64
      and i386.
      
      This is an example of building the debuggee using both clang and gcc compiers:
      
      [17:30:46] johnny:/Volumes/data/lldb/svn/trunk/test $ ./dotest.py -C clang^gcc -v -f SourceManagerTestCase.test_modify_source_file_while_debugging
      
      Session logs for test failures/errors will go into directory '2011-03-03-17_31_39'
      Command invoked: python ./dotest.py -C clang^gcc -v -f SourceManagerTestCase.test_modify_source_file_while_debugging
      
      Configuration:  compiler=clang
      ----------------------------------------------------------------------
      Collected 1 test
      
      1: test_modify_source_file_while_debugging (TestSourceManager.SourceManagerTestCase)
         Modify a source file while debugging the executable. ... Command 'run' failed!
      
      original content: #include <stdio.h>
      
      int main(int argc, char const *argv[]) {
          printf("Hello world.\n"); // Set break point at this line.
          return 0;
      }
      
      new content: #include <stdio.h>
      
      int main(int argc, char const *argv[]) {
          printf("Hello lldb.\n"); // Set break point at this line.
          return 0;
      }
      
      os.path.getmtime() after writing new content: 1299202305.0
      content restored to: #include <stdio.h>
      
      int main(int argc, char const *argv[]) {
          printf("Hello world.\n"); // Set break point at this line.
          return 0;
      }
      
      os.path.getmtime() after restore: 1299202307.0
      ok
      
      ----------------------------------------------------------------------
      Ran 1 test in 8.259s
      
      OK
      
      Configuration:  compiler=gcc
      ----------------------------------------------------------------------
      Collected 1 test
      
      1: test_modify_source_file_while_debugging (TestSourceManager.SourceManagerTestCase)
         Modify a source file while debugging the executable. ... original content: #include <stdio.h>
      
      int main(int argc, char const *argv[]) {
          printf("Hello world.\n"); // Set break point at this line.
          return 0;
      }
      
      new content: #include <stdio.h>
      
      int main(int argc, char const *argv[]) {
          printf("Hello lldb.\n"); // Set break point at this line.
          return 0;
      }
      
      os.path.getmtime() after writing new content: 1299202307.0
      content restored to: #include <stdio.h>
      
      int main(int argc, char const *argv[]) {
          printf("Hello world.\n"); // Set break point at this line.
          return 0;
      }
      
      os.path.getmtime() after restore: 1299202309.0
      ok
      
      ----------------------------------------------------------------------
      Ran 1 test in 2.301s
      
      OK
      [17:31:49] johnny:/Volumes/data/lldb/svn/trunk/test $ 
      
      llvm-svn: 126979
      e0ec9ea5
  13. Mar 03, 2011
    • Johnny Chen's avatar
      Add TestDisasmAPI.py which exercises the newly added SBFunction/SBSymbol.GetStartAddress(), · ed401980
      Johnny Chen authored
      among other things:
      
      // When stopped on breakppint 1, we can get the line entry using SBFrame API
      // SBFrame.GetLineEntry().  We'll get the start address for the the line entry
      // with the SBAddress type, resolve the symbol context using the SBTarget API
      // SBTarget.ResolveSymbolContextForAddress() in order to get the SBSymbol.
      //
      // We then stop at breakpoint 2, get the SBFrame, and the the SBFunction object.
      //
      // The address from calling GetStartAddress() on the symbol and the function
      // should point to the same address, and we also verify that.
      
      And add one utility function disassemble(target, function_or_symbol) to lldbutil.py:
      
          """Disassemble the function or symbol given a target.
      
          It returns the disassembly content in a string object.
          """
      
      TestDisasm.py uses the disassemble() function to do disassembly on the SBSymbol, and
      then the SBFunction object.
      
      llvm-svn: 126955
      ed401980
    • Johnny Chen's avatar
      Add TestTargetAPI.py: · d61816b5
      Johnny Chen authored
      // When stopped on breakppint 1, and then 2, we can get the line entries using
      // SBFrame API SBFrame.GetLineEntry().  We'll get the start addresses for the
      // two line entries; with the start address (of SBAddress type), we can then
      // resolve the symbol context using the SBTarget API
      // SBTarget.ResolveSymbolContextForAddress().
      //
      // The two symbol context should point to the same symbol, i.e., 'a' function.
      
      
      Add two utility functions to lldbutil.py:
      
      o get_stopped_threads(process, reason):
      
        return the list of threads with the specified stop reason or an empty list if not found
      
      o get_stopped_thread(process, reason):
      
        return the first thread with the given stop reason or None if not found
      
      llvm-svn: 126916
      d61816b5
  14. Mar 02, 2011
  15. Mar 01, 2011
  16. Feb 26, 2011
Loading