Skip to content
  1. Apr 27, 2009
  2. Apr 25, 2009
  3. Apr 20, 2009
  4. Apr 14, 2009
  5. Apr 11, 2009
    • Chris Lattner's avatar
      sink abstract typedefs like Action::ExprTy from the Action class · 7e0fe445
      Chris Lattner authored
      down to the ActionBase class.  This eliminates dependencies of (e.g.)
      DeclSpec.h on Action.h, meaning that action.h can now include these
      headers and use their types directly in the actions interfaces.
      
      This is a refactoring to support a future change, no functionality
      change.
      
      llvm-svn: 68869
      7e0fe445
  6. Apr 10, 2009
  7. Mar 27, 2009
  8. Mar 06, 2009
  9. Feb 19, 2009
  10. Feb 18, 2009
  11. Feb 14, 2009
  12. Feb 13, 2009
  13. 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
  14. Feb 09, 2009
  15. Jan 31, 2009
  16. Jan 14, 2009
  17. Dec 17, 2008
  18. Oct 28, 2008
  19. Oct 05, 2008
  20. Sep 18, 2008
  21. Aug 24, 2008
  22. Aug 01, 2008
  23. Jul 16, 2008
  24. Jun 08, 2008
  25. May 27, 2008
  26. Apr 25, 2008
  27. Apr 19, 2008
  28. Mar 16, 2008
    • Chris Lattner's avatar
      Make a major restructuring of the clang tree: introduce a top-level · 7a51313d
      Chris Lattner authored
      lib dir and move all the libraries into it.  This follows the main
      llvm tree, and allows the libraries to be built in parallel.  The
      top level now enforces that all the libs are built before Driver,
      but we don't care what order the libs are built in.  This speeds
      up parallel builds, particularly incremental ones.
      
      llvm-svn: 48402
      7a51313d
  29. Mar 07, 2008
Loading