Skip to content
  1. Jul 05, 2010
  2. Jul 02, 2010
  3. Jun 08, 2010
  4. May 20, 2010
  5. May 15, 2010
    • John McCall's avatar
      Substantially alter the design of the Objective C type AST by introducing · 8b07ec25
      John McCall authored
      ObjCObjectType, which is basically just a pair of
        one of {primitive-id, primitive-Class, user-defined @class}
      with
        a list of protocols.
      An ObjCObjectPointerType is therefore just a pointer which always points to
      one of these types (possibly sugared).  ObjCInterfaceType is now just a kind
      of ObjCObjectType which happens to not carry any protocols.
      
      Alter a rather large number of use sites to use ObjCObjectType instead of
      ObjCInterfaceType.  Store an ObjCInterfaceType as a pointer on the decl rather
      than hashing them in a FoldingSet.  Remove some number of methods that are no
      longer used, at least after this patch.
      
      By simplifying ObjCObjectPointerType, we are now able to easily remove and apply
      pointers to Objective-C types, which is crucial for a certain kind of ObjC++
      metaprogramming common in WebKit.
      
      llvm-svn: 103870
      8b07ec25
  6. Apr 21, 2010
    • Douglas Gregor's avatar
      Overhaul the AST representation of Objective-C message send · 9a129194
      Douglas Gregor authored
      expressions, to improve source-location information, clarify the
      actual receiver of the message, and pave the way for proper C++
      support. The ObjCMessageExpr node represents four different kinds of
      message sends in a single AST node:
      
        1) Send to a object instance described by an expression (e.g., [x method:5])
        2) Send to a class described by the class name (e.g., [NSString method:5])
        3) Send to a superclass class (e.g, [super method:5] in class method)
        4) Send to a superclass instance (e.g., [super method:5] in instance method)
      
      Previously these four cases where tangled together. Now, they have
      more distinct representations. Specific changes:
      
        1) Unchanged; the object instance is represented by an Expr*.
      
        2) Previously stored the ObjCInterfaceDecl* referring to the class
        receiving the message. Now stores a TypeSourceInfo* so that we know
        how the class was spelled. This both maintains typedef information
        and opens the door for more complicated C++ types (e.g., dependent
        types). There was an alternative, unused representation of these
        sends by naming the class via an IdentifierInfo *. In practice, we
        either had an ObjCInterfaceDecl *, from which we would get the
        IdentifierInfo *, or we fell into the case below...
      
        3) Previously represented by a class message whose IdentifierInfo *
        referred to "super". Sema and CodeGen would use isStr("super") to
        determine if they had a send to super. Now represented as a
        "class super" send, where we have both the location of the "super"
        keyword and the ObjCInterfaceDecl* of the superclass we're
        targetting (statically).
      
        4) Previously represented by an instance message whose receiver is a
        an ObjCSuperExpr, which Sema and CodeGen would check for via
        isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
        where we have both the location of the "super" keyword and the
        ObjCInterfaceDecl* of the superclass we're targetting
        (statically). Note that ObjCSuperExpr only has one remaining use in
        the AST, which is for "super.prop" references.
      
      The new representation of ObjCMessageExpr is 2 pointers smaller than
      the old one, since it combines more storage. It also eliminates a leak
      when we loaded message-send expressions from a precompiled header. The
      representation also feels much cleaner to me; comments welcome!
      
      This patch attempts to maintain the same semantics we previously had
      with Objective-C message sends. In several places, there are massive
      changes that boil down to simply replacing a nested-if structure such
      as:
      
        if (message has a receiver expression) {
          // instance message
          if (isa<ObjCSuperExpr>(...)) {
           // send to super
          } else {
           // send to an object
         }
        } else {
          // class message
          if (name->isStr("super")) {
            // class send to super
          } else {
            // send to class
          }
        }
      
      with a switch
      
        switch (E->getReceiverKind()) {
        case ObjCMessageExpr::SuperInstance: ...
        case ObjCMessageExpr::Instance: ...
        case ObjCMessageExpr::SuperClass: ...
        case ObjCMessageExpr::Class:...
        }
      
      There are quite a few places (particularly in the checkers) where
      send-to-super is effectively ignored. I've placed FIXMEs in most of
      them, and attempted to address send-to-super in a reasonable way. This
      could use some review.
      
      llvm-svn: 101972
      9a129194
  7. Apr 17, 2010
  8. Mar 12, 2010
  9. Mar 08, 2010
  10. Jan 24, 2010
  11. Jan 15, 2010
  12. Dec 07, 2009
    • Ted Kremenek's avatar
      Add the BlockDecl to the DeclContext. · 54ad1ab5
      Ted Kremenek authored
      llvm-svn: 90808
      54ad1ab5
    • John McCall's avatar
      DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated variables, · bcd03506
      John McCall authored
      but the results are imperfect.
      
      For posterity, I did:
      
      cat <<EOF > $cmdfile
      s/DeclaratorInfo/TypeSourceInfo/g
      s/DInfo/TInfo/g
      s/TypeTypeSourceInfo/TypeSourceInfo/g
      s/SourceTypeSourceInfo/TypeSourceInfo/g
      EOF
      
      find lib -name '*.cpp' -not -path 'lib/Parse/*' -exec sed -i '' -f $cmdfile '{}' \;
      find lib -name '*.h' -exec sed -i '' -f $cmdfile '{}' \;
      find include -name '*.h' -not -path 'include/clang/Parse/*' -not -path 'include/clang/Basic/*' -exec sed -i '' -f $cmdfile '{}' \;
      
      llvm-svn: 90743
      bcd03506
  13. Dec 03, 2009
  14. Nov 28, 2009
  15. Nov 18, 2009
  16. Nov 17, 2009
  17. Nov 04, 2009
  18. Oct 28, 2009
    • Steve Naroff's avatar
      Remove _clang_initCXLookupHint() and _clang_getCursorWithHint(). Related to... · 58bd62d1
      Steve Naroff authored
      Remove _clang_initCXLookupHint() and _clang_getCursorWithHint(). Related to <rdar://problem/7310688>.
      
      Localize the optimization to ResolveLocationInAST(). The last valid AST location is now stored with ASTUnit. There still isn't optimal, however it's an improvement (with a much cleaner API). Having the client manage an "hint" is error prone and complex.
      
      I wanted to land the major changes before finishing up the optimizations. 
      
      llvm-svn: 85425
      58bd62d1
  19. Oct 24, 2009
  20. Oct 23, 2009
    • John McCall's avatar
      When building types from declarators, instead of building two types (one for · fc93cf97
      John McCall authored
      the DeclaratorInfo, one for semantic analysis), just build a single type whose
      canonical type will reflect the semantic analysis (assuming the type is
      well-formed, of course).
      
      To make that work, make a few changes to the type system:
      * allow the nominal pointee type of a reference type to be a (possibly sugared)
        reference type.  Also, preserve the original spelling of the reference type.
        Both of these can be ignored on canonical reference types.
      * Remove ObjCProtocolListType and preserve the associated source information on
        the various ObjC TypeLocs.  Preserve the spelling of protocol lists except in
        the canonical form.
      * Preserve some level of source type structure on parameter types, but
        canonicalize on the canonical function type.  This is still a WIP.
      
      Drops code size, makes strides towards accurate source location representation,
      slight (~1.7%) progression on Cocoa.h because of complexity drop.
      
      llvm-svn: 84907
      fc93cf97
  21. Oct 21, 2009
    • Steve Naroff's avatar
      Extend clang_getCursor() to take a 'relativeDecl' argument (so speed up... · 20bad0b7
      Steve Naroff authored
      Extend clang_getCursor() to take a 'relativeDecl' argument (so speed up searching). Without a 'relativeDecl', the algorithm is n-squared. For example, running the following command on 'Large.m' takes hours without a 'relatvieDecl'. 
      
      snaroff% time ../../Debug/bin/c-index-test Large.ast all > Large.out
      snaroff% cat Large.m
      #import <Cocoa/Cocoa.h>
      #import <QuickTime/QuickTime.h>
      #import <OpenGL/OpenGL.h>
      
      With a 'relativeDecl', it takes <30 seconds:-)
      
      llvm-svn: 84760
      20bad0b7
  22. Oct 18, 2009
  23. Oct 09, 2009
  24. Sep 29, 2009
  25. Sep 09, 2009
  26. Aug 23, 2009
  27. Jul 31, 2009
Loading