Skip to content
  1. Feb 13, 2009
    • Douglas Gregor's avatar
      Add basic support for C++ name mangling according to the Itanium C++ · 5fec5b04
      Douglas Gregor authored
      ABI to the CodeGen library. Since C++ code-generation is so
      incomplete, we can't exercise much of this mangling code. However, a
      few smoke tests show that it's doing the same thing as GCC. When C++
      codegen matures, we'll extend the ABI tester to verify name-mangling
      as well, and complete the implementation here.
      
      At this point, the major client of name mangling is in the uses of the
      new "overloadable" attribute in C, which allows overloading. Any
      "overloadable" function in C (or in an extern "C" block in C++) will
      be mangled the same way that the corresponding C++ function would be
      mangled.
      
      llvm-svn: 64413
      5fec5b04
    • Daniel Dunbar's avatar
      Honor attribute section on static block var decls. · 53bf7412
      Daniel Dunbar authored
      llvm-svn: 64411
      53bf7412
  2. Feb 10, 2009
  3. Feb 09, 2009
  4. Feb 08, 2009
  5. Feb 07, 2009
  6. Feb 05, 2009
  7. Feb 03, 2009
  8. Jan 25, 2009
  9. Jan 16, 2009
  10. Dec 21, 2008
  11. Dec 20, 2008
  12. Dec 13, 2008
  13. Dec 12, 2008
  14. Nov 24, 2008
  15. Nov 17, 2008
  16. Nov 10, 2008
  17. Oct 31, 2008
  18. Oct 17, 2008
  19. Oct 15, 2008
    • Argyrios Kyrtzidis's avatar
      Simplify handling of struct/union/class tags. · 88e1b97f
      Argyrios Kyrtzidis authored
      Instead of using two sets of Decl kinds (Struct/Union/Class and CXXStruct/CXXUnion/CXXClass), use one 'Record' and one 'CXXRecord' Decl kind and make tag kind a property of TagDecl.
      Cleans up the code a bit and better reflects that Decl class structure.
      
      llvm-svn: 57541
      88e1b97f
  20. Sep 17, 2008
  21. Aug 29, 2008
  22. Aug 25, 2008
  23. Aug 22, 2008
  24. Aug 16, 2008
    • Daniel Dunbar's avatar
      Add NeXT runtime support for generating methods. · a94ecd2a
      Daniel Dunbar authored
      Change CodeGenFunction::EmitParmDecl to take either a ParmVarDecl or an
        ImplicitParamDecl.
      
      Drop hasAggregateLLVMType from CodeGenModule.cpp (use version in
        CodeGenFunction).
      
      Change the Objective-C method generation to use EmitParmDecl for
        implicit parameters.
      
      llvm-svn: 54838
      a94ecd2a
  25. Aug 11, 2008
    • Daniel Dunbar's avatar
      More #include cleaning · 6e8aa537
      Daniel Dunbar authored
       - Drop {Decl.h,DeclObjC.h,IdentifierTable.h} from Expr.h
       - Moved Sema::getCurMethodDecl() out of line (dependent on
         ObjCMethodDecl via dyn_cast).
      
      llvm-svn: 54629
      6e8aa537
    • Daniel Dunbar's avatar
      More #include cleaning · ad319a73
      Daniel Dunbar authored
       - Remove internal uses of AST.h
      
      llvm-svn: 54628
      ad319a73
  26. Jun 14, 2008
  27. Jun 10, 2008
  28. Jun 08, 2008
  29. Jun 05, 2008
  30. May 31, 2008
  31. May 30, 2008
  32. May 23, 2008
    • Dan Gohman's avatar
      Change uses of llvm::Type::isFirstClassType to use the new · 5d30975e
      Dan Gohman authored
      llvm::Type::isSingleValueType. Currently these two functions have
      the same behavior, but soon isFirstClassType will return true for
      struct and array types.
      
      Clang may some day want to use of isFirstClassType for some of
      these some day as an optimization, but it'll require some
      consideration.
      
      llvm-svn: 51446
      5d30975e
  33. May 08, 2008
  34. Apr 19, 2008
Loading