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
    • Jason Molenda's avatar
      Add two new memory region based checks to the Unwinder: · 87698349
      Jason Molenda authored
      Check that the pc value for frames up the stack is in a
      mapped+executable region of memory.
      
      Check that the stack pointer for frames up the stack is
      in a mapped+readable region of memory.
      
      If the unwinder ever makes a mistake walking the stack,
      these checks will help to keep it from going too far into
      the weeds.
      
      These aren't fixing any bugs that I know of, but they
      add extra robustness to a complicated task.
      
      llvm-svn: 146478
      87698349
    • Jason Molenda's avatar
      When unwinding from the first frame, try to ask the remote debugserver · cb349ee1
      Jason Molenda authored
      if this is a mapped/executable region of memory.  If it isn't, we've jumped
      through a bad pointer and we know how to unwind the stack correctly based
      on the ABI.  
      
      Previously I had 0x0 special cased but if you jumped to 0x2 on x86_64 one
      frame would be skipped because the unwinder would try using the x86_64 
      ArchDefaultUnwindPlan which relied on the rbp.
      
      Fixes <rdar://problem/10508291>
      
      llvm-svn: 146477
      cb349ee1
    • Greg Clayton's avatar
      Use forward declarations more of the time to save on things that we need to · 8eb732e9
      Greg Clayton authored
      parse.
      
      llvm-svn: 146473
      8eb732e9
    • Sean Callanan's avatar
      I have modified the part of the code that finds and · d5cc132b
      Sean Callanan authored
      validates the "self," "this," and "_cmd" pointers
      that get passed into expressions.  It used to check
      them aggressively for validity before allowing the
      expression to run as an object method; now, this
      functionality is gated by a bool and off by default.
      
      Now the default is that when LLDB is stopped in a
      method of a class, code entered using "expr" will
      always masquerade as an instance method.  If for
      some reason "self," "this," or "_cmd" is unavailable
      it will be reported as NULL.  This may cause the
      expression to crash if it relies on those pointers,
      but for example getting the addresses of ivars will
      now work as the user would expect.
      
      llvm-svn: 146465
      d5cc132b
  3. Dec 12, 2011
    • 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
  4. Dec 10, 2011
    • Greg Clayton's avatar
      <rdar://problem/9958446> · 6f6bf26a
      Greg Clayton authored
      <rdar://problem/10561406>
      
      Stopped the SymbolFileDWARF::FindFunctions (...) from always calculating
      the line table entry for all functions that were found. This can slow down
      the expression parser if it ends up finding a bunch of matches. Fixed the 
      places that were relying on the line table entry being filled in.
      
      Discovered a recursive stack blowout that happened when "main" didn't have
      line info for it and there was no line information for "main"
      
      llvm-svn: 146330
      6f6bf26a
    • Sean Callanan's avatar
      Fixed a problem where if a frame was present the · fd1ba911
      Sean Callanan authored
      expression parser would never try getting typed
      variables from the target.
      
      llvm-svn: 146317
      fd1ba911
    • Sean Callanan's avatar
      Two fixes for file variables: · 9b3569ba
      Sean Callanan authored
      - Even if a frame isn't present, we always try
        to use FindGlobalVariable to find variables.
        Instead of using frame->TrackGlobalVariable()
        to promote the VariableSP into a ValueObject,
        we now simply use ValueObjectVariable.
      
      - When requesting the value of a variable, we
        allow returning of the "live version" of the
        variable -- that is, the variable in the
        target instead of a pointer to its freeze
        dried version in LLDB -- even if there is no
        process present.
      
      llvm-svn: 146315
      9b3569ba
    • Greg Clayton's avatar
      <rdar://problem/10559329> · 3bffb085
      Greg Clayton authored
      An assertion was firing when parsing types due to trying to complete parent
      class decl contenxt types too often.
      
      Also, relax where "dsymutil" binary can come from in the Makefile.rules.
      
      llvm-svn: 146310
      3bffb085
    • Jim Ingham's avatar
      Don't try to cache the ExecutionContextScope in the ValueObject::EvaluationPoint, it is too · 9ee01151
      Jim Ingham authored
      hard to ensure it doesn't get invalidated out from under us.  Instead look it up from the ThreadID
      and StackID when asked for it.
      <rdar://problem/10554409>
      
      llvm-svn: 146309
      9ee01151
    • Sean Callanan's avatar
      Fixed a problem with properties where LLDB was not · 8a6a6acd
      Sean Callanan authored
      creating appropriate setter/getter methods for
      property definitions.
      
      llvm-svn: 146295
      8a6a6acd
  5. Dec 09, 2011
    • 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
    • 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
    • Jim Ingham's avatar
      60dbabba
    • Sean Callanan's avatar
      Added the ability to dereference an Objective-C object · 5780f9df
      Sean Callanan authored
      pointer to make the result of an expression.  LLDB now
      dumps the ivars of the Objective-C object and all of
      its parents.  This just required fixing a bug where we
      didn't distinguish between Objective-C object pointers
      and regular C-style pointers.
      
      Also added a testcase to verify that this continues to
      work.
      
      llvm-svn: 146164
      5780f9df
    • Greg Clayton's avatar
      Fixed an issue where we are asking to get the decl context for a function · cab36a3a
      Greg Clayton authored
      that is in a class from the expression parser, and it was causing an
      assertion. There is now a function that will correctly resolve a type
      even if it is in a class.
      
      llvm-svn: 146141
      cab36a3a
    • Jim Ingham's avatar
      Get the bit-field offset & size for ObjC ivars that are bitfields. · f80bc3f4
      Jim Ingham authored
      <rdar://problem/10535460> lldb expression evaluation doesn't handle bit fields in ObjC classes properly
      
      llvm-svn: 146134
      f80bc3f4
    • Greg Clayton's avatar
      Added a new class called lldb_private::SymbolFileType which is designed to · d1767f05
      Greg Clayton authored
      take a SymbolFile reference and a lldb::user_id_t and be used in objects
      which represent things in debug symbols that have types where we don't need
      to know the true type yet, such as in lldb_private::Variable objects. This
      allows us to defer resolving the type until something is used. More specifically
      this allows us to get 1000 local variables from the current function, and if
      the user types "frame variable argc", we end up _only_ resolving the type for
      "argc" and not for the 999 other local variables. We can expand the use of this
      as needed in the future.
      
      Modified the DWARFMappedHash class to be able to read the HashData that has
      more than just the DIE offset. It currently will read the atoms in the header
      definition and read the data correctly. Currently only the DIE offset and 
      type flags are supported. This is needed for adding type flags to the 
      .apple_types hash accelerator tables.
      
      Fixed a assertion crash that would happen if we have a variable that had a
      DW_AT_const_value instead of a location where "location.LocationContains_DW_OP_addr()"
      would end up asserting when it tried to parse the variable location as a
      DWARF opcode list.
      
      Decreased the amount of memory that LLDB would use when evaluating an expression
      by 3x - 4x for clang. There was a place in the namespace lookup code that was
      parsing all namespaces with a certain name in a DWARF file instead of stopping
      when it found the first match. This was causing all of the compile units with
      a matching namespace to get parsed into memory and causing unnecessary memory
      bloat. 
      
      Improved "Target::EvaluateExpression(...)" to not try and find a variable
      when the expression contains characters that would certainly cause an expression
      to need to be evaluated by the debugger. 
      
      llvm-svn: 146130
      d1767f05
    • Sean Callanan's avatar
      Removed function information from the symbol table · 6c62c83c
      Sean Callanan authored
      for now to fix testcases.  Once we have a valid use
      for the function information (i.e., once properties
      returning UnknownAnyTy are allowed, once we read
      return type information from the runtime, among
      other uses) I will re-enable this.
      
      llvm-svn: 146129
      6c62c83c
    • Greg Clayton's avatar
      Don't crash due to not checking log shared pointer. · 161f3670
      Greg Clayton authored
      llvm-svn: 146126
      161f3670
  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
    • 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
    • Jim Ingham's avatar
      Fix assert string to be more informative. · b3527409
      Jim Ingham authored
      llvm-svn: 146061
      b3527409
  8. Dec 06, 2011
    • Greg Clayton's avatar
      <rdar://problem/10487848> · 09c3e3d7
      Greg Clayton authored
      Protect a member variable from being modified by multiple threads.
      
      llvm-svn: 145920
      09c3e3d7
    • Sean Callanan's avatar
      As part of the work to make Objective-C type information · 0eed0d42
      Sean Callanan authored
      from symbols more accessible, I have added a second
      map to the ClangASTImporter: the ObjCInterfaceMetaMap.
      This map keeps track of all type definitions found for
      a particular Objective-C interface, allowing the
      ClangASTSource to refer to all possible sources when
      looking for method definitions.
      
      There is a bug in lookup that I still need to figure out,
      but after that we should be able to report full method
      information for Objective-C classes shown in symbols.
      
      Also fixed some errors I ran into when enabling the maps
      for the persistent type store.  The persistent type store
      previously did not use the ClangASTImporter to import
      types, instead using ASTImporters that got allocated each
      time a type needed copying.  To support the requirements
      of the persistent type store -- namely, that types must be
      copied, completed, and then completely severed from their
      origin in the parser's AST context (which will go away) --
      I added a new function called DeportType which severs all
      these connections.
      
      llvm-svn: 145914
      0eed0d42
    • Sean Callanan's avatar
      Set a flag on the AST type dump to see Objective-C · 853604d5
      Sean Callanan authored
      methods.  The Clang dump is now much more verbose,
      but when somebody types "target modules lookup -t"
      that is typically what they're looking for.
      
      llvm-svn: 145892
      853604d5
    • Jim Ingham's avatar
      Correct typo in method name (AddSymbolFileRepresendation...) · 7d1c115d
      Jim Ingham authored
      llvm-svn: 145884
      7d1c115d
  9. Dec 05, 2011
  10. Dec 03, 2011
    • Greg Clayton's avatar
      Added the ability for clients to grab a set of symbol table indexes and then · 1075acaf
      Greg Clayton authored
      add them to a fast lookup map. lldb_private::Symtab now export the following
      public typedefs:
      
      namespace lldb_private {
      
      	class Symtab {
      		typedef std::vector<uint32_t> IndexCollection;
      		typedef UniqueCStringMap<uint32_t> NameToIndexMap;
      	};
      }
      
      Clients can then find symbols by name and or type and end up with a 
      Symtab::IndexCollection that is filled with indexes. These indexes can then
      be put into a name to index lookup map and control if the mangled and 
      demangled names get added to the map:
      
      bool add_demangled = true;
      bool add_mangled = true;
      Symtab::NameToIndexMap name_to_index;
      symtab->AppendSymbolNamesToMap (indexes, add_demangled, add_mangled, name_to_index).
      
      This can be repeated as many times as needed to get a lookup table that
      you are happy with, and then this can be sorted:
      
      name_to_index.Sort();
      
      Now name lookups can be done using a subset of the symbols you extracted from
      the symbol table. This is currently being used to extract objective C types
      from object files when there is no debug info in SymbolFileSymtab.
      
      Cleaned up how the objective C types were being vended to be more efficient
      and fixed some errors in the regular expression that was being used.
      
      llvm-svn: 145777
      1075acaf
    • Greg Clayton's avatar
      Added code to make sure we don't recursively try to find an objective C · 901c5ca1
      Greg Clayton authored
      class. The thing with Objective C classes is the debug info might have a
      definition that isn't just a forward decl, but it is incomplete. So we need to
      look and see if we can find the complete definition and avoid recursing a lot
      due to the fact that our accelerator tables will have many versions of the 
      type, but only one complete one. We might not also have the complete type
      and we need to deal with this correctly.
      
      llvm-svn: 145759
      901c5ca1
    • Sean Callanan's avatar
      Testcase fixes with the new symbol lookup code for · bfaf54d6
      Sean Callanan authored
      Objective-C, making symbol lookups for various raw
      Objective-C symbols work correctly.  The IR interpreter
      makes these lookups because Clang has emitted raw
      symbol references for ivars and classes.
      
      Also improved performance in SymbolFiles, caching the
      result of asking for SymbolFile abilities.
      
      llvm-svn: 145758
      bfaf54d6
    • Sean Callanan's avatar
      Added ClangExternalASTSourceCommon, a local superclass · 3b107b17
      Sean Callanan authored
      for all our external AST sources that lets us associate
      arbitrary flags with the types we put into the AST
      contexts.  Also added an API on ClangASTContext that
      allows access to these flags given only an ASTContext
      and a type.
      
      Because we don't have access to RTTI, and because at
      some point in the future we might encounter external
      AST sources that we didn't make (so they don't subclass
      ClangExternalASTSourceCommon) I added a magic number
      that we check before doing anything else, so that we
      can catch that problem as soon as it appears.
      
      llvm-svn: 145748
      3b107b17
    • Greg Clayton's avatar
      Remove accidental "else" that was left in in prior checking. · ef3ad87a
      Greg Clayton authored
      llvm-svn: 145746
      ef3ad87a
    • Greg Clayton's avatar
      Added new symbol types for Objective C classes, metaclasses, and ivars. Each · 456809c1
      Greg Clayton authored
      object file can correctly make these symbols which will abstract us from the
      file format and ABI and we can then ask for the objective C class symbol for
      a class and find out which object file it was defined in.
      
      llvm-svn: 145744
      456809c1
Loading