Skip to content
  1. Dec 14, 2011
    • Sean Callanan's avatar
      This commit is the result of a general audit of · fc4f2fb0
      Sean Callanan authored
      the expression parser to locate instances where
      dyn_cast<>() and isa<>() are used on types, and
      replace them with getAs<>() as appropriate.
      
      The difference is that dyn_cast<>() and isa<>()
      are essentially LLVM/Clang's equivalent of RTTI
      -- that is, they try to downcast the object and
      return NULL if they cannot -- but getAs<>() can
      traverse typedefs to perform a semantic cast.
      
      llvm-svn: 146537
      fc4f2fb0
  2. Dec 13, 2011
  3. Dec 12, 2011
    • Johnny Chen's avatar
      Rename some test methods, with no functionality change. · 055d0c96
      Johnny Chen authored
      llvm-svn: 146429
      055d0c96
    • Johnny Chen's avatar
      Commenting out the two @expectedFailureClang decorators as the tests have been passing for a while · 1e4cd1fc
      Johnny Chen authored
      with the recent clang compilers.
      
      The latest I tried is: Apple clang version 3.1 (tags/Apple/clang-318.0.9) (based on LLVM 3.1svn)
      
      llvm-svn: 146427
      1e4cd1fc
    • Johnny Chen's avatar
      rdar://problem/10227672 · 64bab489
      Johnny Chen authored
      There were two problems associated with this radar:
      1. "settings show target.source-map" failed to show the source-map after, for example,
         "settings set target.source-map /Volumes/data/lldb/svn/trunk/test/source-manager /Volumes/data/lldb/svn/trunk/test/source-manager/hidden"
         has been executed to set the source-map.
      2. "list -n main" failed to display the source of the main() function after we properly set the source-map.
      
      The first was fixed by adding the missing functionality to TargetInstanceSettings::GetInstanceSettingsValue (Target.cpp)
      and updating the support files PathMappingList.h/.cpp; the second by modifying SourceManager.cpp to fix several places
      with incorrect logic.
      
      Also added a test case test_move_and_then_display_source() to TestSourceManager.py, which moves main.c to hidden/main.c,
      sets target.source-map to perform the directory mapping, and then verifies that "list -n main" can still show the main()
      function.
      
      llvm-svn: 146422
      64bab489
    • Greg Clayton's avatar
      Use forward types where possible to avoid having to parse extra DWARF when · 42ce2f35
      Greg Clayton authored
      it is not required.
      
      llvm-svn: 146418
      42ce2f35
    • Greg Clayton's avatar
      Always return a valid answer for qMemoryRegionInfo if the packet is supported. · fc5dd29e
      Greg Clayton authored
      We will return a valid range when possible and omit the "permissions" key
      when the memory is not readable, writeable or executeable. This will help us
      know the difference between an error back from this packet and unsupported,
      from just "this address isn't in a valid region".
      
      llvm-svn: 146394
      fc5dd29e
  4. Dec 10, 2011
  5. Dec 09, 2011
    • Jim Ingham's avatar
      Don't spam warnings about not being able to read memory at 0x0. · 70358854
      Jim Ingham authored
      llvm-svn: 146271
      70358854
    • Greg Clayton's avatar
      Tested a theory on the where when we lookup things in the accelerator tables · 220a0077
      Greg Clayton authored
      that if we prefer the current compile unit, followed by any compile units that
      already had their DIEs parsed, followed by the rest of the matches, that we
      might save some memory. This turned out not to help much. The code is commented
      out, but I want to check it in so I don't lose the code in case it could help
      later.
      
      Added the ability to efficiently find the objective C class implementation
      when using the new .apple_types acclerator tables with the type flags. If the
      type flags are not available, we default back to what we were doing before.
      
      llvm-svn: 146250
      220a0077
    • Jason Molenda's avatar
      Move the ARM specific arch picker from PlatformRemoteiOS.cpp to · d74db47a
      Jason Molenda authored
      PlatformDarwin.cpp -- call it from both PlatformRemoteiOS.cpp
      and the native process PlatformDarwin.cpp when running on an arm
      system.
      
      Bump lldb version number to 94.
      
      llvm-svn: 146249
      d74db47a
    • Jim Ingham's avatar
      Rework how the breakpoint conditions & callbacks are handled. We now iterate... · 79ea1d88
      Jim Ingham authored
      Rework how the breakpoint conditions & callbacks are handled.  We now iterate over all the locations at the site
      that got hit, and first check the condition, and if that location's condition says we should stop, then we
      run the callback.  In the end if any location's condition and callback say we should stop, then we stop. 
      
      llvm-svn: 146242
      79ea1d88
    • Greg Clayton's avatar
      We now have a test case for stopping within a module in a place where the · 8f192cea
      Greg Clayton authored
      translation unit has a interface for a class "Bar" that contains hidden ivars
      in the implementation and we make sure we can see these hidden ivars. We also
      test the case where we stop in translation unit that contains the 
      implementation first. So the test runs two tests:
      
      1 - run and stop where we have an interface, run to main and print and make
          sure we find the hidden ivar
      2 - run and stop where we have an implementation, run to main and print and make
          sure we find the hidden ivar
          
      
      llvm-svn: 146216
      8f192cea
    • Sean Callanan's avatar
      If the expression parser is unable to complete a TagDecl · 12014a04
      Sean Callanan authored
      in the context in which it was originally found, the
      expression parser now goes hunting for it in all modules
      (in the appropriate namespace, if applicable).  This means
      that forward-declared types that exist in another shared
      library will now be resolved correctly.
      
      Added a test case to cover this.  The test case also tests
      "frame variable," which does not have this functionality
      yet.
      
      llvm-svn: 146204
      12014a04
  6. Dec 08, 2011
  7. Dec 07, 2011
    • Sean Callanan's avatar
      Fixed a few details of method lookup in Objective-C · 610baf42
      Sean Callanan authored
      symbols.  Now we find the correct method.
      
      Unfortunately we don't get the superclass from the
      runtime yet so the method doesn't import correctly
      (and I added a check to make sure that doesn't hurt
      us) but once we get that information right we will
      report methods correctly to the parser as well.
      
      Getting superclass information requires a common AST
      context for all Objective-C runtime information,
      meaning that the superclass and the subclass are in
      the same AST context in all cases.  That is the next
      thing that needs to be done here.
      
      llvm-svn: 146089
      610baf42
    • Eli Friedman's avatar
      Fix <title> on webpage. · 00fda923
      Eli Friedman authored
      llvm-svn: 146085
      00fda923
    • Sean Callanan's avatar
      Fixed a potential crasher if the frame is not · ae6d6141
      Sean Callanan authored
      avalable when a global variable is looked up.
      In ClangExpressionDeclMap, a frame should usually
      be available.
      
      llvm-svn: 146066
      ae6d6141
Loading