1. 9619662 remove uses of QualType::getCanonicalType() from codegen for PR2189 by Chris Lattner · 16 years ago
  2. b7cfe88 Make a few related changes: by Chris Lattner · 16 years ago
  3. 18ae3cf Don't add isa with @defs only to work around it in the code generator, patch by Chris Lattner · 16 years ago
  4. 4111024 Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl. by Chris Lattner · 16 years ago
  5. 39ba4ae -Changes to TagDecl: by Argyrios Kyrtzidis · 16 years ago
  6. b853ca8 clang fix to parallel LLVM r51928 by Eli Friedman · 16 years ago
  7. e36a3c8 Add FIXME to CodeGen struct layout. by Eli Friedman · 16 years ago
  8. 0408f68 Always use packed structs. This isn't really very nice, but there's by Eli Friedman · 16 years ago
  9. 2fb86e6 Check first member alignment and uses packed struct if required. by Devang Patel · 16 years ago
  10. f6a943e Generalize the float type generation code, and specifically fix the by Eli Friedman · 16 years ago
  11. cbadaf6 Rewrite struct/union layout. This is mostly cleanup; this might also fix by Eli Friedman · 16 years ago
  12. d79a726 Change uses of llvm::Type::isFirstClassType to use the new by Dan Gohman · 16 years ago
  13. 5cada6b Begin handling union bitfields. Note, this is just beginning. by Devang Patel · 16 years ago
  14. d8ecd3c Fix PR2101 - Codegen crash during bitfield initialization. by Devang Patel · 16 years ago
  15. 213541a OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris. by Nate Begeman · 16 years ago
  16. c8b1227 Allow targets to override double size, alignment, and semantics, and tie this by Nate Begeman · 16 years ago
  17. fce71b8 Fix PR2081 (problems codegen'ing some recursive structures) patch by Chris Lattner · 16 years ago
  18. bdcd637 add a common base class "PointerLikeType" for PointerType and ReferenceType, by Chris Lattner · 16 years ago
  19. ce5605e some cleanups on top of David's patch. There are still two by Chris Lattner · 16 years ago
  20. 391d77a Add initial support for objc codegen for methods, ivars, and the by Chris Lattner · 16 years ago
  21. 572cf09 simplify code by using the variadic StructType::get method. by Chris Lattner · 16 years ago
  22. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 16 years ago[Renamed from CodeGen/CodeGenTypes.cpp]
  23. 98be494 remove the source location arguments to various target query methods. by Chris Lattner · 16 years ago
  24. 1abc7f6 Tabs are the enemy by Nate Begeman · 16 years ago
  25. f46699c Alternate address spaces work: by Chris Lattner · 16 years ago
  26. c5773c4 Split out incomplete arrays from VariableArrayType into by Eli Friedman · 17 years ago
  27. c0959fc Fix a bitfield regression. Reported by Anders Carlsson. by Lauro Ramos Venancio · 17 years ago
  28. d957aa0 Simplify bitfield codegen. Fix codegen of struct { short a[3]; int b:15; }. by Lauro Ramos Venancio · 17 years ago
  29. 8432f4b Fix codegen of struct { char a[3]; unsigned char b:1; }; by Lauro Ramos Venancio · 17 years ago
  30. 8fb1dd0 now that ConvertTagDeclType is nice and simple, use it from UpdateCompletedType. by Chris Lattner · 17 years ago
  31. 5de00fc simplify and speed up type refinement logic. No functionality change. by Chris Lattner · 17 years ago
  32. de0efb3 only convert the type name once, not each type it is refined. by Chris Lattner · 17 years ago
  33. fae6e29 simplify a bunch of code. by Chris Lattner · 17 years ago
  34. 4581fff rename TypeHolderMap to TypeCache, which more aptly describes what it is. by Chris Lattner · 17 years ago
  35. fc3b8e9 split tagged decl layout into its own method. by Chris Lattner · 17 years ago
  36. 6ef58e3 only update the llvm type for a struct when we used the struct by Chris Lattner · 17 years ago
  37. c5b8806 sink more of the type related code into CodeGenTypes. by Chris Lattner · 17 years ago
  38. d86e6bc rewrite some of the type refinement code to eliminate dangling pointers by Chris Lattner · 17 years ago
  39. af31913 Change the key of CGRecordLayouts from being an llvm type* to being a decl*. LLVM by Chris Lattner · 17 years ago
  40. 4c4635c by Devang Patel · 17 years ago
  41. eae1560 Cleanup InitListExpr code generation code. by Devang Patel · 17 years ago
  42. 0ded75b Fix memory corruption from the type map being modified while a reference by Eli Friedman · 17 years ago
  43. 5bfc1a7 Keep track of padding fields. by Devang Patel · 17 years ago
  44. ebb97e9 Add experimental support for address space qualified types. Address space by Christopher Lamb · 17 years ago
  45. 0e82d72 Implement review feedback. Use getAsPointerType instead of cast<PointerType>. by Lauro Ramos Venancio · 17 years ago
  46. 8df106e A pointer to an opaque type is an "opaque type definition". by Lauro Ramos Venancio · 17 years ago
  47. 9e18d3e Fix two bugs in bitfield codegen. by Lauro Ramos Venancio · 17 years ago
  48. 2c46ce8 Simplify the bitfield codegen. by Lauro Ramos Venancio · 17 years ago
  49. 19009e6 implement proper support for _Bool in memory, which is usually i8, not i1. by Chris Lattner · 17 years ago
  50. a526c5c Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 17 years ago
  51. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  52. 3c40085 Convert opaque type when struct definition is seen. by Devang Patel · 17 years ago
  53. dd6ecdb Keep track of llvm struct size while adding fields. by Devang Patel · 17 years ago
  54. c569249 Patch to implemented objective-c's dynamic object pointer qualified with by Fariborz Jahanian · 17 years ago
  55. ddc23f3 Update to use new PointerType::getUnqual() api. by Christopher Lamb · 17 years ago
  56. 5dc043d Add assert to detect incomplete implementation work. by Devang Patel · 17 years ago
  57. 382c643 Refactor bit-field handling code into a separate method. by Devang Patel · 17 years ago
  58. b8b1e28 Separate access field number is not required. by Devang Patel · 17 years ago
  59. 15dbf79 Beautify comment. by Devang Patel · 17 years ago
  60. 6e8df73 Add support to share llvm fields for bit-fields. by Devang Patel · 17 years ago
  61. 0fa6023 Use getABITypeSizeInBits() instead of getTypeSizeInBits() during struct layout. by Devang Patel · 17 years ago
  62. 14c7500 Use getABITypeSizeInBits() instead of getTypeSizeInBits() during struct layout. by Devang Patel · 17 years ago
  63. 37884b3 More struct bitfields layout work. Now handle, by Devang Patel · 17 years ago
  64. 68e7ff8 fix some bogus code noticed by Kevin Andre by Chris Lattner · 17 years ago
  65. c4de6a2 Better match llvm-gcc's behavior for CodeGen naming of anonymous structs and unions. by Christopher Lamb · 17 years ago
  66. 0f8db70 When generating the CodeGen type name of a struct, union, enum use the typedef by Christopher Lamb · 17 years ago
  67. 4ef9be7 update to match change in mainline llvm. by Chris Lattner · 17 years ago
  68. 9b591f6 Add assert for the case that is not handled. struct { char a; short b:2; }; by Devang Patel · 17 years ago
  69. b93f03a Keep track of beginning offset for the bit field that does not start at byte boundry. by Devang Patel · 17 years ago
  70. b70a88e Stay within 80 columns. by Devang Patel · 17 years ago
  71. 159e330 Start struct bit field laout work. This is far from complete. by Devang Patel · 17 years ago
  72. 88a981b Rename classes and collections that maintain record layout information. by Devang Patel · 17 years ago
  73. c2527d1 Remove unnecessary method. by Devang Patel · 17 years ago
  74. f9fef92 start adding pading fields. by Devang Patel · 17 years ago
  75. 0bd41f2 Refactor code into a separate method. by Devang Patel · 17 years ago
  76. 9e124d9 Check whether next slot meets field type's alignment requirements. by Devang Patel · 17 years ago
  77. d9e9ede Keep track of field offsets during structure layout. Take 2. by Devang Patel · 17 years ago
  78. 7a4718e Take 2. by Devang Patel · 17 years ago
  79. e03cd7b temporarily revert devang's patch to link in the llvm codegen etc. by Chris Lattner · 17 years ago
  80. 8967e9e Keep track of field offsets during structure layout. by Devang Patel · 17 years ago
  81. f767e21 Make target info available to clang code generator. by Devang Patel · 17 years ago
  82. 47c87b4 Avoid unnecessary PATypeHolder copy. by Devang Patel · 17 years ago
  83. e9b8c0a Fix 80 col violations. by Devang Patel · 17 years ago
  84. 0ffe89a Use by Devang Patel · 17 years ago
  85. 86522b9 Add RecordOrganizer::layoutUnionFields() by Devang Patel · 17 years ago
  86. abad06c Codegen union member references. by Devang Patel · 17 years ago
  87. 30ec997 Cache llvm::Type through PATypeHolder. by Devang Patel · 17 years ago
  88. 057afdd Move RecordOrganizer into CodeGenTypes.cpp by Devang Patel · 17 years ago
  89. c4c429a by Devang Patel · 17 years ago
  90. 71bcb09 Add notes. by Devang Patel · 17 years ago
  91. 655bf3d untabify by Devang Patel · 17 years ago
  92. 21fdf41 Fixed a strange construct, please review. by Hartmut Kaiser · 17 years ago
  93. b1e3989 Handle nested structs. typdef struct A { int i; struct A *next; } A by Devang Patel · 17 years ago
  94. b84a06e Begin struct layout work. by Devang Patel · 17 years ago
  95. e37882a Added a new class for Interfaces qualified by protocol list. by Fariborz Jahanian · 17 years ago
  96. b1776cb fix some warnings, patch by Justin Handville by Chris Lattner · 17 years ago
  97. 47f7dbf eliminate some VC++ warnings, patch contributed by Hartmut Kaiser by Chris Lattner · 17 years ago
  98. fb22d96 by Steve Naroff · 17 years ago
  99. e00b18c Change EnumDecl to store its corresponding integer type by Chris Lattner · 17 years ago
  100. 314e783 teach codegen to lay out enum types. by Chris Lattner · 17 years ago