Skip to content
  1. Apr 01, 2009
  2. Mar 28, 2009
  3. Mar 22, 2009
  4. Mar 17, 2009
  5. Mar 07, 2009
  6. Mar 06, 2009
  7. Mar 05, 2009
  8. Mar 04, 2009
  9. Feb 27, 2009
    • Douglas Gregor's avatar
      Create a new TypeNodes.def file that enumerates all of the types, · deaad8cc
      Douglas Gregor authored
      giving them rough classifications (normal types, never-canonical
      types, always-dependent types, abstract type representations) and
      making it far easier to make sure that we've hit all of the cases when
      decoding types. 
      
      Switched some switch() statements on the type class over to using this
      mechanism, and filtering out those things we don't care about. For
      example, CodeGen should never see always-dependent or non-canonical
      types, while debug info generation should never see always-dependent
      types. More switch() statements on the type class need to be moved 
      over to using this approach, so that we'll get warnings when we add a
      new type then fail to account for it somewhere in the compiler.
      
      As part of this, some types have been renamed:
      
        TypeOfExpr -> TypeOfExprType
        FunctionTypeProto -> FunctionProtoType
        FunctionTypeNoProto -> FunctionNoProtoType
      
      There shouldn't be any functionality change...
      
      llvm-svn: 65591
      deaad8cc
  10. Feb 26, 2009
  11. Feb 25, 2009
  12. Feb 23, 2009
  13. Feb 21, 2009
  14. Feb 19, 2009
  15. Feb 13, 2009
    • Anders Carlsson's avatar
      Add CodeGen support for the nodebug attribute. · 63784f4e
      Anders Carlsson authored
      llvm-svn: 64445
      63784f4e
    • 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
  16. Feb 10, 2009
  17. Feb 09, 2009
  18. Feb 08, 2009
  19. Feb 07, 2009
  20. Feb 05, 2009
  21. Feb 04, 2009
  22. Feb 03, 2009
  23. Feb 02, 2009
    • Daniel Dunbar's avatar
      More ABI API cleanup. · d931a87f
      Daniel Dunbar authored
       - Lift CGFunctionInfo creation above ReturnTypeUsesSret and
         EmitFunction{Epi,Pro}log.
      
      llvm-svn: 63553
      d931a87f
  24. Jan 27, 2009
  25. Jan 26, 2009
  26. Jan 20, 2009
Loading