Skip to content
  1. Sep 13, 2010
    • Sean Callanan's avatar
      Bugfixes to the expression parser. Fixes include: · 9e6ed53e
      Sean Callanan authored
       - If you put a semicolon at the end of an expression,
         this no longer causes the expression parser to
         error out.  This was a two-part fix: first,
         ClangExpressionDeclMap::Materialize now handles
         an empty struct (such as when there is no return
         value); second, ASTResultSynthesizer walks backward
         from the end of the ASTs until it reaches something
         that's not a NullStmt.
      
       - ClangExpressionVariable now properly byte-swaps when
         printing itself.
      
       - ClangUtilityFunction now cleans up after itself when
         it's done compiling itself.
      
       - Utility functions can now use external functions just
         like user expressions.
      
       - If you end your expression with a statement that does
         not return a value, the expression now runs correctly
         anyway.
      
      Also, added the beginnings of an Objective-C object
      validator function, which is neither installed nor used
      as yet.
      
      llvm-svn: 113789
      9e6ed53e
    • Johnny Chen's avatar
      Extend the build mechanism to allow for specifying the compiler used to build · 1394a4b7
      Johnny Chen authored
      the binaries.
      
      If the build* function is passed the compiler argument, for example, 'llvm-gcc',
      it is passed as a make variable to the make command.  Otherwise, we check the
      LLDB_CC environment variable; if it is defined, it is passed as a make variable
      to the make command.
      
      If neither the compiler keyword argument nor the LLDB_CC environment variable is
      specified, no CC make variable is passed to the make command.  The Makefile gets
      to define the default CC being used.
      
      --------------------------------------------------------------------------------
      Example usage follows:
      
      o Via the keyword argument:
      
      class ArrayTypesTestCase(TestBase):
      
          mydir = "array_types"
      
          @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
          def test_with_dsym_and_run_command(self):
              """Test 'frame variable var_name' on some variables with array types."""
              self.buildDsym(compiler='llvm-gcc')
              self.array_types()
      ...
      
      o Via LLDB_CC environment variable:
      
      $ LLDB_CC=llvm-gcc ./dotest.py -v -t array_types
      ----------------------------------------------------------------------
      Collected 4 tests
      
      test_with_dsym_and_python_api (TestArrayTypes.ArrayTypesTestCase)
      Use Python APIs to inspect variables with array types. ... 
      os command: [['/bin/sh', '-c', 'make clean; make MAKE_DSYM=YES CC=llvm-gcc']]
      output: rm -rf "a.out" "a.out.dSYM"  main.o main.d
      llvm-gcc -arch x86_64 -gdwarf-2 -O0 -arch x86_64 -gdwarf-2 -O0  -c -o main.o main.c
      llvm-gcc -arch x86_64 -gdwarf-2 -O0  main.o -o "a.out"
      /usr/bin/dsymutil  -o "a.out.dSYM" "a.out"
      
      ...
      
      llvm-svn: 113781
      1394a4b7
    • Johnny Chen's avatar
      Updated the expected matching strings. · 9440d1c0
      Johnny Chen authored
      llvm-svn: 113756
      9440d1c0
    • Johnny Chen's avatar
      Updated the expected matching strings. · 661f8069
      Johnny Chen authored
      llvm-svn: 113755
      661f8069
    • Johnny Chen's avatar
      Updated the expected matching strings, and added a radar comment. · 8458405a
      Johnny Chen authored
      llvm-svn: 113753
      8458405a
    • Johnny Chen's avatar
      Updated the expected matching strings. · e00234e0
      Johnny Chen authored
      llvm-svn: 113751
      e00234e0
    • Johnny Chen's avatar
    • Johnny Chen's avatar
      9aae728e
    • Caroline Tice's avatar
      Clean up help text. · 8830091a
      Caroline Tice authored
      llvm-svn: 113738
      8830091a
    • Greg Clayton's avatar
      Fixed an assertion that happened when debugging DWARF in .o files with debug · ffc1d667
      Greg Clayton authored
      map on macosx.
      
      llvm-svn: 113737
      ffc1d667
    • Greg Clayton's avatar
      Make sure we have a variable list so we don't crash when a frame has no · 9df87c17
      Greg Clayton authored
      frame variables.
      
      llvm-svn: 113736
      9df87c17
    • Greg Clayton's avatar
      Added the summary values for function pointers so we can show where they · 737b9329
      Greg Clayton authored
      point to.
      
      llvm-svn: 113735
      737b9329
    • Greg Clayton's avatar
      Removed unused variable. · 5804fa41
      Greg Clayton authored
      llvm-svn: 113734
      5804fa41
    • Greg Clayton's avatar
      Added a work in the DWARF parser when we parse an array that ends up having · a134cc1b
      Greg Clayton authored
      no elements so that they at least have 1 element. 
      
      Added the ability to show the declaration location of variables to the 
      "frame variables" with the "--show-declaration" option ("-c" for short).
      
      Changed the "frame variables" command over to use the value object code
      so that we use the same code path as the public API does when accessing and
      displaying variable values.
      
      llvm-svn: 113733
      a134cc1b
    • Greg Clayton's avatar
      A few modifications to the class arrays test case. · 0c5550a9
      Greg Clayton authored
      llvm-svn: 113732
      0c5550a9
    • Greg Clayton's avatar
      I made this example after noting that I was unable to display an unsized · ac32b4dd
      Greg Clayton authored
      static class array. It turns out that gcc 4.2 will emit DWARF that correctly
      describes the PointType, but it will incorrectly emit debug info for the
      "g_points" array where the following things are wrong:
       - the DW_TAG_array_type won't have a subrange info
       - the DW_TAG_variable for "g_points" won't have a valid byte size, so even
         though we know the size of PointType, we can't infer the actual size
         of the array by dividing the size of the variable by the number of
         elements.
      
      We want to make sure clang and llvm-gcc handle this correctly.
      
      llvm-svn: 113730
      ac32b4dd
    • Greg Clayton's avatar
      Fixed a crash that would happen when using "frame variables" on any struct, · 83ff3898
      Greg Clayton authored
      union, or class that contained an enumeration type. When I was creating
      the clang enumeration decl, I wasn't calling "EnumDecl::setIntegerType (QualType)" 
      which means that if the enum decl was ever asked to figure out it's bit width
      (getTypeInfo()) it would crash. We didn't run into this with enum types that 
      weren't inside classes because the DWARF already told us how big the type was
      and when we printed an enum we would never need to calculate the size, we
      would use the pre-cached byte size we got from the DWARF. When the enum was 
      in a struct/union/class and we tried to layout the struct, the layout code
      would attempt to get the type info and segfault.
      
      llvm-svn: 113729
      83ff3898
  2. Sep 12, 2010
  3. Sep 11, 2010
  4. Sep 10, 2010
    • Greg Clayton's avatar
      There was a check to make sure that the frame had a valid function before the... · b57a127a
      Greg Clayton authored
      There was a check to make sure that the frame had a valid function before the expression parser would allow decl lookups which was not needed. After removing this you can evaluate expressions correctly when stopped in a frame that only has a symbol or has no symbol context at all.
      
      llvm-svn: 113611
      b57a127a
    • Johnny Chen's avatar
      Fixed the breakage of "breakpoint command add -p 1 2" caused by r113596 as · 0e1cb4e0
      Johnny Chen authored
      pointed out by Jim Ingham.  The convenient one-liner specification should only
      apply when there is only one breakpoint id being specified for the time being.
      
      llvm-svn: 113609
      0e1cb4e0
    • Johnny Chen's avatar
      3495f25a
    • Greg Clayton's avatar
      Added some missing API for address resolving within a module, and looking · 09960031
      Greg Clayton authored
      up a seciton offset address (SBAddress) within a module that returns a
      symbol context (SBSymbolContext). Also added a SBSymbolContextList in 
      preparation for adding find/lookup APIs that can return multiple results.
      
      Added a lookup example code that shows how to do address lookups.
      
      llvm-svn: 113599
      09960031
    • Johnny Chen's avatar
      These two files should have been in r113596. Oops! · bc1857ba
      Johnny Chen authored
      llvm-svn: 113598
      bc1857ba
    • Johnny Chen's avatar
      Added the capability to specify a one-liner Python script as the callback · 94de55d5
      Johnny Chen authored
      command for a breakpoint, for example:
      
      (lldb) breakpoint command add -p 1 "conditional_break.stop_if_called_from_a()"
      
      The ScriptInterpreter interface has an extra method:
      
          /// Set a one-liner as the callback for the breakpoint command.
          virtual void 
          SetBreakpointCommandCallback (CommandInterpreter &interpreter,
                                        BreakpointOptions *bp_options,
                                        const char *oneliner);
      
      to accomplish the above.
      
      Also added a test case to demonstrate lldb's use of breakpoint callback command
      to stop at function c() only when its immediate caller is function a().  The
      following session shows the user entering the following commands:
      
      1) command source .lldb (set up executable, breakpoint, and breakpoint command)
      2) run (the callback mechanism will skip two breakpoints where c()'s immeidate caller is not a())
      3) bt (to see that indeed c()'s immediate caller is a())
      4) c (to continue and finish the program)
      
      test/conditional_break $ ../../build/Debug/lldb
      (lldb) command source .lldb
      Executing commands in '.lldb'.
      (lldb) file a.out
      Current executable set to 'a.out' (x86_64).
      (lldb) breakpoint set -n c
      Breakpoint created: 1: name = 'c', locations = 1
      (lldb) script import sys, os
      (lldb) script sys.path.append(os.path.join(os.getcwd(), os.pardir))
      (lldb) script import conditional_break
      (lldb) breakpoint command add -p 1 "conditional_break.stop_if_called_from_a()"
      (lldb) run
      run
      Launching '/Volumes/data/lldb/svn/trunk/test/conditional_break/a.out'  (x86_64)
      (lldb) Checking call frames...
      Stack trace for thread id=0x2e03 name=None queue=com.apple.main-thread:
        frame #0: a.out`c at main.c:39
        frame #1: a.out`b at main.c:34
        frame #2: a.out`a at main.c:25
        frame #3: a.out`main at main.c:44
        frame #4: a.out`start
      c called from b
      Continuing...
      Checking call frames...
      Stack trace for thread id=0x2e03 name=None queue=com.apple.main-thread:
        frame #0: a.out`c at main.c:39
        frame #1: a.out`b at main.c:34
        frame #2: a.out`main at main.c:47
        frame #3: a.out`start
      c called from b
      Continuing...
      Checking call frames...
      Stack trace for thread id=0x2e03 name=None queue=com.apple.main-thread:
        frame #0: a.out`c at main.c:39
        frame #1: a.out`a at main.c:27
        frame #2: a.out`main at main.c:50
        frame #3: a.out`start
      c called from a
      Stopped at c() with immediate caller as a().
      a(1) returns 4
      b(2) returns 5
      Process 20420 Stopped
      * thread #1: tid = 0x2e03, 0x0000000100000de8 a.out`c + 7 at main.c:39, stop reason = breakpoint 1.1, queue = com.apple.main-thread
        36   	
        37   	int c(int val)
        38   	{
        39 ->	    return val + 3;
        40   	}
        41   	
        42   	int main (int argc, char const *argv[])
      (lldb) bt
      bt
      thread #1: tid = 0x2e03, stop reason = breakpoint 1.1, queue = com.apple.main-thread
        frame #0: 0x0000000100000de8 a.out`c + 7 at main.c:39
        frame #1: 0x0000000100000dbc a.out`a + 44 at main.c:27
        frame #2: 0x0000000100000e4b a.out`main + 91 at main.c:50
        frame #3: 0x0000000100000d88 a.out`start + 52
      (lldb) c
      c
      Resuming process 20420
      Process 20420 Exited
      a(3) returns 6
      (lldb) 
      
      llvm-svn: 113596
      94de55d5
    • Johnny Chen's avatar
      Don't flatten lldb and import everything into the global namespace. Instead, · d0211cc6
      Johnny Chen authored
      set the debugger_unique_id with the lldb prefix.
      
      llvm-svn: 113589
      d0211cc6
Loading