1. 046c294 Vtable -> VTable renames across the board. by Anders Carlsson · 14 years ago
  2. ce2b41d tidy up by Chris Lattner · 14 years ago
  3. 6876fe6 Minor include pruning. by Benjamin Kramer · 14 years ago
  4. 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
  5. 270e203 IRGen: Hide CGRecordLayoutBuilder class, because I can. by Daniel Dunbar · 14 years ago
  6. 7c465b9 IRGen: Narrow getCGRecordLayout type. by Daniel Dunbar · 14 years ago
  7. 2924ade IRgen: Move CGRecordLayout to its own happy little file. by Daniel Dunbar · 14 years ago
  8. f858da6 Minor formatting/FIXME cleanups. by Daniel Dunbar · 14 years ago
  9. 264ba48 the big refactoring bits of PR3782. by Rafael Espindola · 14 years ago
  10. ead608a Use the power of types to track down another canonicalization bug in by John McCall · 14 years ago
  11. 0b0ef0a Canonicalize parameter and return types before computing ABI info. Eliminates by John McCall · 14 years ago
  12. c0bf462 Perform two more constructor/destructor code-size optimizations: by John McCall · 14 years ago
  13. b2bcf1c Use the correct function info for constructors when applying function attributes. Fixes PR6245. by Anders Carlsson · 14 years ago
  14. 04a67a6 Standardize the parsing of function type attributes in a way that by John McCall · 14 years ago
  15. 2c12d03 Improve handling of emitting 'null' pointers to data members. by Anders Carlsson · 14 years ago
  16. 82d0a41 Generalize target weirdness handling having proper layering in mind: by Anton Korobeynikov · 15 years ago
  17. 1a5e0d7 Have ASTRecordLayout keep track of the key function, in preparation of fixing a synthetic ctor/dtor bug. by Anders Carlsson · 15 years ago
  18. f6c56e2 Add VTT parameter to base ctors/dtors with virtual bases. (They aren't used yet). by Anders Carlsson · 15 years ago
  19. 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
  20. 444be73 Wherein the TargetInfo argument to Preprocessor is made 'const' and propogated. by Daniel Dunbar · 15 years ago
  21. 5017a15 Store the key function of a record decl inside CGRecordLayout. by Anders Carlsson · 15 years ago
  22. 375c31c Implement code generation of member function pointer calls. Fixes PR5121. by Anders Carlsson · 15 years ago
  23. bac7c25 Add CallingConvention argument to CGFunctionInfo. - Currently unused. by Daniel Dunbar · 15 years ago
  24. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  25. ad3e711 More member pointer work. by Anders Carlsson · 15 years ago
  26. fc3eaa4 More work towards zero-initializing structs that contain member pointers in constant expressions. by Anders Carlsson · 15 years ago
  27. 341bdf8 Remove the PaddingFields member from CGRecordLayout, it wasn't used anyway. by Anders Carlsson · 15 years ago
  28. f21efe9 LLVMContext is a class now. by Benjamin Kramer · 15 years ago
  29. 47a434f Update for LLVM API change. by Owen Anderson · 15 years ago
  30. 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
  31. 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
  32. 412f59b Don't convert interface types (to structs) as part of CodeGenTypes. by Daniel Dunbar · 15 years ago
  33. a17d7cc Don't assume that a block always has a FunctionProtoType. Fixes rdar://6768379. by Anders Carlsson · 15 years ago
  34. 5529b24 Add a getFunctionInfo that takes a BlockPointerType. by Anders Carlsson · 15 years ago
  35. f6f8ae5 Add a getFunctionInfo that takes a CXXMethodDecl. by Anders Carlsson · 15 years ago
  36. 285d0db fix the two xfails I added with a previous patch by making ObjC interface by Chris Lattner · 15 years ago
  37. 636efb6 remove a dead prototype by Chris Lattner · 15 years ago
  38. b3b6b9b Initial implementation of CodeGen for incomplete function types; fixes by Eli Friedman · 15 years ago
  39. 57a84fb Fix for PR3687: use the memory representation for booleans when a by Eli Friedman · 15 years ago
  40. 72564e7 Create a new TypeNodes.def file that enumerates all of the types, by Douglas Gregor · 15 years ago
  41. 68694ad Remove PointerLikeType. by Daniel Dunbar · 15 years ago
  42. 6aeae7f Change PointersToResolve to list the pointee type to resolve, not the by Daniel Dunbar · 15 years ago
  43. 40a6be6 Memoize CGFunctionInfo construction. by Daniel Dunbar · 15 years ago
  44. 541b63b Thread CGFunctionInfo construction through CodeGenTypes. by Daniel Dunbar · 15 years ago
  45. bb36d33 ABI handling API changes. by Daniel Dunbar · 15 years ago
  46. 36b5f5e Remove unused overload of GetFunctionType. by Daniel Dunbar · 15 years ago
  47. 725ad31 Kill off CGCallInfo, always use CGFunctionInfo for encapsulating by Daniel Dunbar · 15 years ago
  48. fd64bb6 Code gen. for ivar references; including bitfield ivars. by Fariborz Jahanian · 16 years ago
  49. 6b1da0e Lift out ABIInfo abstract base class. by Daniel Dunbar · 16 years ago
  50. 5627377 Add support for ABIArgInfo::Expand - No functionality change. by Daniel Dunbar · 16 years ago
  51. 62d5c1b Add CodeGenTypes::GetFunctionType overload for getting the effective by Daniel Dunbar · 16 years ago
  52. 45c25ba Move FunctionType conversion into CGCall.cpp: by Daniel Dunbar · 16 years ago
  53. efb6d0d Key LLVM types for TagDecl's off of the clang Type, since there is now by Daniel Dunbar · 16 years ago
  54. b7cfe88 Make a few related changes: by Chris Lattner · 16 years ago
  55. 4111024 Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl. by Chris Lattner · 16 years ago
  56. fce71b8 Fix PR2081 (problems codegen'ing some recursive structures) patch by Chris Lattner · 16 years ago
  57. 391d77a Add initial support for objc codegen for methods, ivars, and the by Chris Lattner · 16 years ago
  58. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 16 years ago[Renamed from CodeGen/CodeGenTypes.h]
  59. ef52a2f make include guards more unique. by Chris Lattner · 16 years ago
  60. 8fb1dd0 now that ConvertTagDeclType is nice and simple, use it from UpdateCompletedType. by Chris Lattner · 16 years ago
  61. 4581fff rename TypeHolderMap to TypeCache, which more aptly describes what it is. by Chris Lattner · 16 years ago
  62. fc3b8e9 split tagged decl layout into its own method. by Chris Lattner · 16 years ago
  63. c5b8806 sink more of the type related code into CodeGenTypes. by Chris Lattner · 16 years ago
  64. d86e6bc rewrite some of the type refinement code to eliminate dangling pointers by Chris Lattner · 16 years ago
  65. af31913 Change the key of CGRecordLayouts from being an llvm type* to being a decl*. LLVM by Chris Lattner · 16 years ago
  66. eae1560 Cleanup InitListExpr code generation code. by Devang Patel · 16 years ago
  67. 3b8c22d Implement bitfield read. by Lauro Ramos Venancio · 16 years ago
  68. 2c46ce8 Simplify the bitfield codegen. by Lauro Ramos Venancio · 16 years ago
  69. 19009e6 implement proper support for _Bool in memory, which is usually i8, not i1. by Chris Lattner · 17 years ago
  70. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  71. b8b1e28 Separate access field number is not required. by Devang Patel · 17 years ago
  72. 37884b3 More struct bitfields layout work. Now handle, by Devang Patel · 17 years ago
  73. 159e330 Start struct bit field laout work. This is far from complete. by Devang Patel · 17 years ago
  74. 88a981b Rename classes and collections that maintain record layout information. by Devang Patel · 17 years ago
  75. d9e9ede Keep track of field offsets during structure layout. Take 2. by Devang Patel · 17 years ago
  76. 7a4718e Take 2. by Devang Patel · 17 years ago
  77. e03cd7b temporarily revert devang's patch to link in the llvm codegen etc. by Chris Lattner · 17 years ago
  78. 8967e9e Keep track of field offsets during structure layout. by Devang Patel · 17 years ago
  79. f767e21 Make target info available to clang code generator. by Devang Patel · 17 years ago
  80. 0ffe89a Use by Devang Patel · 17 years ago
  81. 86522b9 Add RecordOrganizer::layoutUnionFields() by Devang Patel · 17 years ago
  82. 5825ac2 Document ConvertNewType() method and make it a private method. by Devang Patel · 17 years ago
  83. 30ec997 Cache llvm::Type through PATypeHolder. by Devang Patel · 17 years ago
  84. c5d3d72 Remove unused #includes by Devang Patel · 17 years ago
  85. 057afdd Move RecordOrganizer into CodeGenTypes.cpp by Devang Patel · 17 years ago
  86. c4c429a by Devang Patel · 17 years ago
  87. 71bcb09 Add notes. by Devang Patel · 17 years ago
  88. b1e3989 Handle nested structs. typdef struct A { int i; struct A *next; } A by Devang Patel · 17 years ago
  89. b84a06e Begin struct layout work. by Devang Patel · 17 years ago
  90. c9e2091 Implement code generation for constant CFStrings. by Anders Carlsson · 17 years ago
  91. 4e53328 Add preliminary support for converting struct types. by Anders Carlsson · 17 years ago
  92. d2d2a11 A significant refactoring of the type size stuff to also by Chris Lattner · 17 years ago
  93. a7674d8 Move getSize() out of type, into ASTContext, where it has target info, and by Chris Lattner · 17 years ago
  94. 5f016e2 Stage two of getting CFE top correct. by Reid Spencer · 17 years ago