1. 9c6082f Revert "Add CC_Win64ThisCall and set it in the necessary places." by Tilmann Scheller · 13 years ago
  2. 88d117c Add CC_Win64ThisCall and set it in the necessary places. by Tilmann Scheller · 13 years ago
  3. f4c7371 Change QualType::getTypePtr() to return a const pointer, then change a by John McCall · 14 years ago
  4. c8f01eb Make CodeGenTypes::getCGRecordLayout compute the layout lazily if it doesn't exist. This matches ASTContext::getASTRecordLayout and is less confusing. by Anders Carlsson · 14 years ago
  5. 9cac494 Fix Whitespace. by Michael J. Spencer · 14 years ago
  6. 4c40d98 Teach IR generation to return 'this' from constructors and destructors by John McCall · 14 years ago
  7. f16aa10 Go back to asking CodeGenTypes whether a type is zero-initializable. by John McCall · 14 years ago
  8. 800588f Kill off the 'coerce' ABI passing form. Now 'direct' and 'extend' always by Chris Lattner · 14 years ago
  9. a9fa858 fix rdar://8147692 - yet another crash due to my abi work. by Chris Lattner · 14 years ago
  10. bcaedae Reapply: by Chris Lattner · 14 years ago
  11. 7bbe03d Revert r107173, "fix PR7519: after thrashing around and remembering how all this stuff", it broke bootstrap. by Daniel Dunbar · 14 years ago
  12. a9e0515 Revert r107216, "fix PR7523, which was caused by the ABI code calling ConvertType instead", it is part of a boostrap breaking sequence. by Daniel Dunbar · 14 years ago
  13. f1d5d8a fix PR7523, which was caused by the ABI code calling ConvertType instead by Chris Lattner · 14 years ago
  14. 376fe5e fix PR7519: after thrashing around and remembering how all this stuff by Chris Lattner · 14 years ago
  15. c00129a Fix for PR7040: Don't try to compute the LLVM type for a function where it by Eli Friedman · 14 years ago
  16. c39211d Add CodeGenTypes::ContainsPointerToDataMember overload that takes a CXXRecordDecl. by Anders Carlsson · 14 years ago
  17. 3e5af90 Move ContainsPointerToDataMember to CodeGenTypes. No functionality change. by Anders Carlsson · 14 years ago
  18. 046c294 Vtable -> VTable renames across the board. by Anders Carlsson · 14 years ago
  19. ce2b41d tidy up by Chris Lattner · 14 years ago
  20. 6876fe6 Minor include pruning. by Benjamin Kramer · 14 years ago
  21. 198bcb4 IRGen: Move the auxiliary data structures tracking AST -> LLVM mappings out of CodeGenTypes, to per-record CGRecordLayout structures. by Daniel Dunbar · 14 years ago
  22. 270e203 IRGen: Hide CGRecordLayoutBuilder class, because I can. by Daniel Dunbar · 14 years ago
  23. 7c465b9 IRGen: Narrow getCGRecordLayout type. by Daniel Dunbar · 14 years ago
  24. 2924ade IRgen: Move CGRecordLayout to its own happy little file. by Daniel Dunbar · 14 years ago
  25. f858da6 Minor formatting/FIXME cleanups. by Daniel Dunbar · 14 years ago
  26. 264ba48 the big refactoring bits of PR3782. by Rafael Espindola · 14 years ago
  27. ead608a Use the power of types to track down another canonicalization bug in by John McCall · 15 years ago
  28. 0b0ef0a Canonicalize parameter and return types before computing ABI info. Eliminates by John McCall · 15 years ago
  29. c0bf462 Perform two more constructor/destructor code-size optimizations: by John McCall · 15 years ago
  30. b2bcf1c Use the correct function info for constructors when applying function attributes. Fixes PR6245. by Anders Carlsson · 15 years ago
  31. 04a67a6 Standardize the parsing of function type attributes in a way that by John McCall · 15 years ago
  32. 2c12d03 Improve handling of emitting 'null' pointers to data members. by Anders Carlsson · 15 years ago
  33. 82d0a41 Generalize target weirdness handling having proper layering in mind: by Anton Korobeynikov · 15 years ago
  34. 1a5e0d7 Have ASTRecordLayout keep track of the key function, in preparation of fixing a synthetic ctor/dtor bug. by Anders Carlsson · 15 years ago
  35. f6c56e2 Add VTT parameter to base ctors/dtors with virtual bases. (They aren't used yet). by Anders Carlsson · 15 years ago
  36. ecf282b It is common for vtables to contain pointers to functions that have either incomplete return types or incomplete argument types. by Anders Carlsson · 15 years ago
  37. 444be73 Wherein the TargetInfo argument to Preprocessor is made 'const' and propogated. by Daniel Dunbar · 15 years ago
  38. 5017a15 Store the key function of a record decl inside CGRecordLayout. by Anders Carlsson · 15 years ago
  39. 375c31c Implement code generation of member function pointer calls. Fixes PR5121. by Anders Carlsson · 15 years ago
  40. bac7c25 Add CallingConvention argument to CGFunctionInfo. - Currently unused. by Daniel Dunbar · 15 years ago
  41. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  42. ad3e711 More member pointer work. by Anders Carlsson · 15 years ago
  43. fc3eaa4 More work towards zero-initializing structs that contain member pointers in constant expressions. by Anders Carlsson · 15 years ago
  44. 341bdf8 Remove the PaddingFields member from CGRecordLayout, it wasn't used anyway. by Anders Carlsson · 15 years ago
  45. f21efe9 LLVMContext is a class now. by Benjamin Kramer · 15 years ago
  46. 47a434f Update for LLVM API change. by Owen Anderson · 15 years ago
  47. 8330cee Move the LLVM field number for bit fields into the BitFieldInfo structure, since it's meaning is completely different than for non-bit fields. by Anders Carlsson · 15 years ago
  48. 45372a6 Check in CGRecordLayoutBuilder which is a reimplementation of the record layout code. (Yay, no more packed structs unless absolutely necessary). We currently don't use the layouts being built but that will change when the new code is mature enough :) by Anders Carlsson · 15 years ago
  49. 412f59b Don't convert interface types (to structs) as part of CodeGenTypes. by Daniel Dunbar · 15 years ago
  50. a17d7cc Don't assume that a block always has a FunctionProtoType. Fixes rdar://6768379. by Anders Carlsson · 15 years ago
  51. 5529b24 Add a getFunctionInfo that takes a BlockPointerType. by Anders Carlsson · 15 years ago
  52. f6f8ae5 Add a getFunctionInfo that takes a CXXMethodDecl. by Anders Carlsson · 15 years ago
  53. 285d0db fix the two xfails I added with a previous patch by making ObjC interface by Chris Lattner · 15 years ago
  54. 636efb6 remove a dead prototype by Chris Lattner · 15 years ago
  55. b3b6b9b Initial implementation of CodeGen for incomplete function types; fixes by Eli Friedman · 15 years ago
  56. 57a84fb Fix for PR3687: use the memory representation for booleans when a by Eli Friedman · 15 years ago
  57. 72564e7 Create a new TypeNodes.def file that enumerates all of the types, by Douglas Gregor · 16 years ago
  58. 68694ad Remove PointerLikeType. by Daniel Dunbar · 16 years ago
  59. 6aeae7f Change PointersToResolve to list the pointee type to resolve, not the by Daniel Dunbar · 16 years ago
  60. 40a6be6 Memoize CGFunctionInfo construction. by Daniel Dunbar · 16 years ago
  61. 541b63b Thread CGFunctionInfo construction through CodeGenTypes. by Daniel Dunbar · 16 years ago
  62. bb36d33 ABI handling API changes. by Daniel Dunbar · 16 years ago
  63. 36b5f5e Remove unused overload of GetFunctionType. by Daniel Dunbar · 16 years ago
  64. 725ad31 Kill off CGCallInfo, always use CGFunctionInfo for encapsulating by Daniel Dunbar · 16 years ago
  65. fd64bb6 Code gen. for ivar references; including bitfield ivars. by Fariborz Jahanian · 16 years ago
  66. 6b1da0e Lift out ABIInfo abstract base class. by Daniel Dunbar · 16 years ago
  67. 5627377 Add support for ABIArgInfo::Expand - No functionality change. by Daniel Dunbar · 16 years ago
  68. 62d5c1b Add CodeGenTypes::GetFunctionType overload for getting the effective by Daniel Dunbar · 16 years ago
  69. 45c25ba Move FunctionType conversion into CGCall.cpp: by Daniel Dunbar · 16 years ago
  70. efb6d0d Key LLVM types for TagDecl's off of the clang Type, since there is now by Daniel Dunbar · 16 years ago
  71. b7cfe88 Make a few related changes: by Chris Lattner · 16 years ago
  72. 4111024 Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl. by Chris Lattner · 16 years ago
  73. fce71b8 Fix PR2081 (problems codegen'ing some recursive structures) patch by Chris Lattner · 16 years ago
  74. 391d77a Add initial support for objc codegen for methods, ivars, and the by Chris Lattner · 16 years ago
  75. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 16 years ago[Renamed from CodeGen/CodeGenTypes.h]
  76. ef52a2f make include guards more unique. by Chris Lattner · 17 years ago
  77. 8fb1dd0 now that ConvertTagDeclType is nice and simple, use it from UpdateCompletedType. by Chris Lattner · 17 years ago
  78. 4581fff rename TypeHolderMap to TypeCache, which more aptly describes what it is. by Chris Lattner · 17 years ago
  79. fc3b8e9 split tagged decl layout into its own method. by Chris Lattner · 17 years ago
  80. c5b8806 sink more of the type related code into CodeGenTypes. by Chris Lattner · 17 years ago
  81. d86e6bc rewrite some of the type refinement code to eliminate dangling pointers by Chris Lattner · 17 years ago
  82. af31913 Change the key of CGRecordLayouts from being an llvm type* to being a decl*. LLVM by Chris Lattner · 17 years ago
  83. eae1560 Cleanup InitListExpr code generation code. by Devang Patel · 17 years ago
  84. 3b8c22d Implement bitfield read. by Lauro Ramos Venancio · 17 years ago
  85. 2c46ce8 Simplify the bitfield codegen. by Lauro Ramos Venancio · 17 years ago
  86. 19009e6 implement proper support for _Bool in memory, which is usually i8, not i1. by Chris Lattner · 17 years ago
  87. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  88. b8b1e28 Separate access field number is not required. by Devang Patel · 17 years ago
  89. 37884b3 More struct bitfields layout work. Now handle, by Devang Patel · 17 years ago
  90. 159e330 Start struct bit field laout work. This is far from complete. by Devang Patel · 17 years ago
  91. 88a981b Rename classes and collections that maintain record layout information. by Devang Patel · 17 years ago
  92. d9e9ede Keep track of field offsets during structure layout. Take 2. by Devang Patel · 17 years ago
  93. 7a4718e Take 2. by Devang Patel · 17 years ago
  94. e03cd7b temporarily revert devang's patch to link in the llvm codegen etc. by Chris Lattner · 17 years ago
  95. 8967e9e Keep track of field offsets during structure layout. by Devang Patel · 17 years ago
  96. f767e21 Make target info available to clang code generator. by Devang Patel · 17 years ago
  97. 0ffe89a Use by Devang Patel · 17 years ago
  98. 86522b9 Add RecordOrganizer::layoutUnionFields() by Devang Patel · 17 years ago
  99. 5825ac2 Document ConvertNewType() method and make it a private method. by Devang Patel · 17 years ago
  100. 30ec997 Cache llvm::Type through PATypeHolder. by Devang Patel · 17 years ago