Skip to content
  1. Feb 13, 2009
  2. Feb 12, 2009
    • Daniel Dunbar's avatar
      Support __attribute__(section(<name>)) · 648bf783
      Daniel Dunbar authored
      llvm-svn: 64380
      648bf783
    • Douglas Gregor's avatar
      Initial implementation of function overloading in C. · 4e5cbdcb
      Douglas Gregor authored
      This commit adds a new attribute, "overloadable", that enables C++
      function overloading in C. The attribute can only be added to function
      declarations, e.g.,
      
        int *f(int) __attribute__((overloadable));
      
      If the "overloadable" attribute exists on a function with a given
      name, *all* functions with that name (and in that scope) must have the
      "overloadable" attribute. Sets of overloaded functions with the
      "overloadable" attribute then follow the normal C++ rules for
      overloaded functions, e.g., overloads must have different
      parameter-type-lists from each other.
      
      When calling an overloaded function in C, we follow the same
      overloading rules as C++, with three extensions to the set of standard
      conversions:
      
        - A value of a given struct or union type T can be converted to the
          type T. This is just the identity conversion. (In C++, this would
          go through a copy constructor).
        - A value of pointer type T* can be converted to a value of type U*
          if T and U are compatible types. This conversion has Conversion
          rank (it's considered a pointer conversion in C).
        - A value of type T can be converted to a value of type U if T and U
          are compatible (and are not both pointer types). This conversion
          has Conversion rank (it's considered to be a new kind of
          conversion unique to C, a "compatible" conversion).
      
      Known defects (and, therefore, next steps):
        1) The standard-conversion handling does not understand conversions
        involving _Complex or vector extensions, so it is likely to get
        these wrong. We need to add these conversions.
        2) All overloadable functions with the same name will have the same
        linkage name, which means we'll get a collision in the linker (if
        not sooner). We'll need to mangle the names of these functions.
      
      llvm-svn: 64336
      4e5cbdcb
  3. Feb 08, 2009
  4. Feb 04, 2009
    • Douglas Gregor's avatar
      Some name-lookup-related fixes, from Piotr Rak! · 2ada0489
      Douglas Gregor authored
      - Changes Lookup*Name functions to return NamedDecls, instead of
      Decls. Unfortunately my recent statement that it will simplify lot of
      code, was not quite right, but it simplifies some...
      - Makes MergeLookupResult SmallPtrSet instead of vector, following
      Douglas suggestions.
      - Adds %qN format for printing qualified names to Diagnostic.
      - Avoids searching for using-directives in Scopes, which are not
      DeclScope, during unqualified name lookup.
      
      llvm-svn: 63739
      2ada0489
  5. Jan 31, 2009
  6. Jan 29, 2009
  7. Jan 27, 2009
  8. Jan 14, 2009
  9. Dec 26, 2008
  10. Dec 23, 2008
  11. Dec 21, 2008
  12. Dec 17, 2008
  13. Dec 11, 2008
    • Douglas Gregor's avatar
      Unifies the name-lookup mechanisms used in various parts of the AST · 91f84216
      Douglas Gregor authored
      and separates lexical name lookup from qualified name lookup. In
      particular:
        * Make DeclContext the central data structure for storing and
          looking up declarations within existing declarations, e.g., members
          of structs/unions/classes, enumerators in C++0x enums, members of
          C++ namespaces, and (later) members of Objective-C
          interfaces/implementations. DeclContext uses a lazily-constructed
          data structure optimized for fast lookup (array for small contexts,
          hash table for larger contexts). 
      
        * Implement C++ qualified name lookup in terms of lookup into
          DeclContext.
      
        * Implement C++ unqualified name lookup in terms of
          qualified+unqualified name lookup (since unqualified lookup is not
          purely lexical in C++!)
      
        * Limit the use of the chains of declarations stored in
          IdentifierInfo to those names declared lexically.
      
        * Eliminate CXXFieldDecl, collapsing its behavior into
          FieldDecl. (FieldDecl is now a ScopedDecl).
      
        * Make RecordDecl into a DeclContext and eliminates its
          Members/NumMembers fields (since one can just iterate through the
          DeclContext to get the fields).
      
      llvm-svn: 60878
      91f84216
  14. Dec 04, 2008
  15. Nov 24, 2008
  16. Nov 23, 2008
    • Chris Lattner's avatar
      Convert IdentifierInfo's to be printed the same as DeclarationNames · e3d20d95
      Chris Lattner authored
      with implicit quotes around them.  This has a bunch of follow-on 
      effects and requires tweaking to a whole lot of code.  This causes
      a regression in two tests (xfailed) by causing it to emit things like:
      
        Line 10: duplicate interface declaration for category 'MyClass1' ('Category1')
      
      instead of:
      
        Line 10: duplicate interface declaration for category 'MyClass1(Category1)'
      
      I will fix this in a follow-up commit.
      
      As part of this, I had to start switching stuff to use ->getDeclName() instead
      of Decl::getName() for consistency.  This is good, but I was planning to do this
      as an independent patch.  There will be several follow-on patches
      to clean up some of the mess, but this patch is already too big.
      
      llvm-svn: 59917
      e3d20d95
  17. Nov 20, 2008
  18. Nov 19, 2008
  19. Nov 18, 2008
  20. Oct 28, 2008
  21. Oct 19, 2008
    • Daniel Dunbar's avatar
      Improve attribute parsing & tests. · 70e3ebaf
      Daniel Dunbar authored
       - Support noreturn on function-typed variables.
      
       - Extend isFunctionOrMethod to return true for K&R functions and
         provide hasFunctionProto to check if a decl has information about
         its arguments. This code needs some serious cleaning, but works.
      
       - Add/improve test cases for noreturn and unused.
      
      llvm-svn: 57778
      70e3ebaf
  22. Oct 16, 2008
    • Daniel Dunbar's avatar
      Implement #pragma pack use in structure packing. The general approach · 4290d46b
      Daniel Dunbar authored
      is to encode the state of the #pragma pack stack as an attribute when
      the structure is declared. 
      
       - Extend PackedAttr to take an alignment (in bits), and reuse for
         both __attribute__((packed)) (which takes no argument, instead
         packing tightly (to "minimize the memory required") and for #pragma
         pack (which allows specification of the maximum alignment in
         bytes). __attribute__((packed)) is just encoded as Alignment=1.
      
         This conflates two related but different mechanisms, but it didn't
         seem worth another attribute.
      
       - I have attempted to follow the MSVC semantics as opposed to the gcc
         ones, since if I understand correctly #pragma pack originated with
         MSVC. The semantics are generally equivalent except when the stack
         is altered during the definition of a structure; its not clear if
         anyone does this in practice. See testcase if curious.
      
      llvm-svn: 57623
      4290d46b
  23. Oct 06, 2008
  24. Oct 05, 2008
  25. Sep 26, 2008
  26. Sep 18, 2008
  27. Sep 02, 2008
  28. Sep 01, 2008
    • Ted Kremenek's avatar
      Tidy up sema processing of attribute "nonull": · c4f6d90b
      Ted Kremenek authored
      - warn about nonnull being applied to functions with no pointer arguments
      - continue processing argument list in the attribute when we encounter a non-pointer parameter being marked as nonnull
      - when no argument list is specified, only mark pointers as nonnull.  This fixes PR 2732 and radar 6188814.
      
      llvm-svn: 55610
      c4f6d90b
Loading