Skip to content
  1. Oct 01, 2010
  2. Sep 30, 2010
  3. Sep 29, 2010
    • Johnny Chen's avatar
      Verify that we have a valid breakpoint ID before proceeding with retrieving its · eb1db1c5
      Johnny Chen authored
      number of locations.  This fixed a crasher.
      
      llvm-svn: 115092
      eb1db1c5
    • Caroline Tice's avatar
      · 9068d794
      Caroline Tice authored
      Fix breakpoint id range testing to disallow ranges that specify breakpoint locations from
      crossing major breakpoint boundaries (must be within a single breakpoint if specifying locations).
      
      Add .* as a means of specifying all the breakpoint locations under a major breakpoint, e.g. "3.*"
      means "all the breakpoint locations of breakpoint 3".
      
      Fix error message to make more sense, if user attempts to specify a breakpoint command when there
      isn't a target yet.
      
      llvm-svn: 115077
      9068d794
    • Greg Clayton's avatar
      Updated LLVM to: --revision '{2010-09-28T19:30}' · 1437224a
      Greg Clayton authored
      This gets us the new clang::CXXRecordDecl improvments in clang so that when we
      add fields, methods and other things to the clang::CXXRecordDecl, the correct
      bits are automatically set by clang::CXXRecordDecl itself instead of having 
      SEMA and our lldb_private::ClangASTContext functions that create types for
      DWARF do it all manually. This allows the clang::ASTContext deep copying of
      types to work correctly and it means that the expression parser can now 
      evaluate expressions in the context of a class method correctly. Previously
      when a class was copied from the DWARF generated ASTContext over into the
      expression ASTContext, we were losing CXXRecordDecl bits in the conversion
      which caused all classes to think they were at offset zero because the the 
      bools for empty, POD, and others would end up being incorrect.
      
      llvm-svn: 115023
      1437224a
    • Greg Clayton's avatar
      Fixed an LLVM/Clang assertion that would happen for C++ and ObjC methods if... · 6d01ad92
      Greg Clayton authored
      Fixed an LLVM/Clang assertion that would happen for C++ and ObjC methods if the DWARF doesn't specify the accessibility for the method. Currently gcc 4.2 and clang++ do not set the accessibility correctly on methods. We currently shouldn't default to private since public methods don't have the accessibility specified. 
      
      Bottom line: we currently default to public for both C++ and ObjC if the accessibility isn't set.
      
      llvm-svn: 115016
      6d01ad92
    • Greg Clayton's avatar
      Fixed the forward declaration issue that was present in the DWARF parser after · 1be10fca
      Greg Clayton authored
      adding methods to C++ and objective C classes. In order to make methods, we
      need the function prototype which means we need the arguments. Parsing these
      could cause a circular reference that caused an  assertion.
      
      Added a new typedef for the clang opaque types which are just void pointers:
      lldb::clang_type_t. This appears in lldb-types.h.
      
      This was fixed by enabling struct, union, class, and enum types to only get
      a forward declaration when we make the clang opaque qual type for these
      types. When they need to actually be resolved, lldb_private::Type will call
      a new function in the SymbolFile protocol to resolve a clang type when it is
      not fully defined (clang::TagDecl::getDefinition() returns NULL). This allows
      us to be a lot more lazy when parsing clang types and keeps down the amount
      of data that gets parsed into the ASTContext for each module. 
      
      Getting the clang type from a "lldb_private::Type" object now takes a boolean
      that indicates if a forward declaration is ok:
      
          clang_type_t lldb_private::Type::GetClangType (bool forward_decl_is_ok);
          
      So function prototypes that define parameters that are "const T&" can now just
      parse the forward declaration for type 'T' and we avoid circular references in
      the type system.
      
      llvm-svn: 115012
      1be10fca
    • Sean Callanan's avatar
      Removed a dreadful hack to get at the name of the · 58c6273b
      Sean Callanan authored
      intrinsic being used.  Thanks to Chris Lattner for
      pointing out the proper way to do it.
      
      llvm-svn: 115006
      58c6273b
  4. Sep 28, 2010
  5. Sep 27, 2010
  6. Sep 25, 2010
    • Greg Clayton's avatar
      Cleaned a few build related things up: · 5573fde3
      Greg Clayton authored
      Added a virtual destructor to ClangUtilityFunction with a body to it cleans
      itself up.
      
      Moved our SharingPtr into the lldb_private namespace to keep it easy to make
      an exports file that exports only what is needed ("lldb::*").
      
      llvm-svn: 114771
      5573fde3
  7. Sep 24, 2010
    • Johnny Chen's avatar
      61464fa6
    • Greg Clayton's avatar
      Added the ability to create an objective C method for an objective C · 0fffff58
      Greg Clayton authored
      interface in ClangASTContext. Also added two bool returning functions that
      indicated if an opaque clang qual type is a CXX class type, and if it is an
      ObjC class type.
      
      Objective C classes now will get their methods added lazily as they are
      encountered. The reason for this is currently, unlike C++, the 
      DW_TAG_structure_type and owns the ivars, doesn't not also contain the
      member functions. This means when we parse the objective C class interface
      we either need to find all functions whose names start with "+[CLASS_NAME"
      or "-[CLASS_NAME" and add them all to the class, or when we parse each objective
      C function, we slowly add it to the class interface definition. Since objective
      C's class doesn't change internal bits according to whether it has certain types
      of member functions (like C++ does if it has virtual functions, or if it has
      user ctors/dtors), I currently chose to lazily populate the class when each
      functions is parsed. Another issue we run into with ObjC method declarations
      is the "self" and "_cmd" implicit args are not marked as artificial in the
      DWARF (DW_AT_artifical), so we currently have to look for the parameters by
      name if we are trying to omit artificial function args if the language of the
      compile unit is ObjC or ObjC++.
      
      llvm-svn: 114722
      0fffff58
  8. Sep 23, 2010
  9. Sep 22, 2010
Loading