1. d15d8c6 Make address-space qualification work correctly for compound literals. by Eli Friedman · 16 years ago
  2. ad3e711 More member pointer work. by Anders Carlsson · 16 years ago
  3. 70d488e Whoops, comment this out for now. I'll fix it shortly. by Anders Carlsson · 16 years ago
  4. fc3eaa4 More work towards zero-initializing structs that contain member pointers in constant expressions. by Anders Carlsson · 16 years ago
  5. d1a9bac Handle CK_NullToMemberPointer casts in the constant expr emitter. by Anders Carlsson · 16 years ago
  6. 0086ccb Change the constant expression emitter to look at the cast kind for to-union casts. by Anders Carlsson · 16 years ago
  7. 0032b27 Update for LLVM API change. by Owen Anderson · 16 years ago
  8. 237957c Improve handling of member pointers. by Anders Carlsson · 16 years ago
  9. a10f7ea Fix clang breakage, CGF can be null in this context. by Daniel Dunbar · 16 years ago
  10. 47a434f Update for LLVM API change. by Owen Anderson · 16 years ago
  11. b0d0ea0 use CodeGenModule::EmitNullConstant in a couple of places. by Anders Carlsson · 16 years ago
  12. c0879bb Fix a minor issue with unions in the new struct building code. by Eli Friedman · 16 years ago
  13. 1290598 Remove the old struct builder code. by Anders Carlsson · 16 years ago
  14. aaed50d Move code from EmitUnion directly into the function that handles cast-to-union. by Anders Carlsson · 16 years ago
  15. f6c4396 Use the struct builder for unions. by Anders Carlsson · 16 years ago
  16. c9c88b4 Update for LLVM API change. by Owen Anderson · 16 years ago
  17. 96e0fc7 Update for LLVM API change. by Owen Anderson · 16 years ago
  18. 6217b80 Change uses of: by Ted Kremenek · 16 years ago
  19. 3c4972d Update for LLVM API change. by Owen Anderson · 16 years ago
  20. 4a28932 Update for LLVM API change. by Owen Anderson · 16 years ago
  21. 7db6d83 Update for LLVM API change. by Owen Anderson · 16 years ago
  22. 08e2524 Update for LLVM API change. by Owen Anderson · 16 years ago
  23. bc0a222 Update for LLVM API change. by Owen Anderson · 16 years ago
  24. 8dca3b3 Enable the new constant struct builder by default. The old code is still in place but will be removed shortly. The new struct builder works on big endian systems. by Anders Carlsson · 16 years ago
  25. 7a86d4b More work on the constant struct builder, fix a couple of thinkos and add support for inserting part of a bitfield in the previous byte. by Anders Carlsson · 16 years ago
  26. d24393b More work on bitfield support in the new constant struct builder. by Anders Carlsson · 16 years ago
  27. bea9c52 More work on the constant struct builder. We can now convert the struct to a packed struct when necessary. by Anders Carlsson · 16 years ago
  28. 4257bc6 More work on the constant struct builder. We now try to layout all constant structs but throw away the result. by Anders Carlsson · 16 years ago
  29. 4a28d5d Update for LLVM API change. by Owen Anderson · 16 years ago
  30. 5602719 Fix a release build warning. by Anders Carlsson · 16 years ago
  31. 4c98efd Check in a half finished new constant struct builder (Obviously not used yet). by Anders Carlsson · 16 years ago
  32. 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 · 16 years ago
  33. 20d6d04 Use arrays as union padding. Also, since the resulting struct will always contain a single element and either a single i8 element or an array of i8s, there's no reason to use a packed struct. by Anders Carlsson · 16 years ago
  34. 35366a6 Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods by Ted Kremenek · 16 years ago
  35. 5cad1f7 Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), Type::getAsMemberPointerType(), Type::getAsTagType(), and Type::getAsRecordType() with their Type::getAs<XXX> equivalents. by Ted Kremenek · 16 years ago
  36. a1cf15f Update for LLVM API change, and contextify a bunch of related stuff. by Owen Anderson · 16 years ago
  37. fc494ff Update for API change. by Owen Anderson · 16 years ago
  38. 6924382 Update for LLVM API change. by Owen Anderson · 16 years ago
  39. 1c431b3 Update for LLVM API change. by Owen Anderson · 16 years ago
  40. c14f0d2 Update for LLVM API change. by Owen Anderson · 16 years ago
  41. 17945a0 De-ASTContext-ify DeclContext. by Argyrios Kyrtzidis · 16 years ago
  42. 4c4c527 PR4390: Make sure to handle anonymous unions correctly while building by Eli Friedman · 16 years ago
  43. 1b63e4f Sink the BuiltinInfo object from ASTContext into the by Chris Lattner · 16 years ago
  44. 50c39ea Fix up constant expression handling to deal with the address by Eli Friedman · 16 years ago
  45. f5408fe Reflow some comments. by Mike Stump · 16 years ago
  46. b4880ba push GlobalDecl through enough of the CodeGenModule interfaces by Chris Lattner · 16 years ago
  47. 9408c45 Correct for renaming PaddedSize -> AllocSize in LLVM. by Duncan Sands · 16 years ago
  48. b03d9af Fix crash with constant initialization of bit-fields in unions. by Eli Friedman · 16 years ago
  49. 944af71 Fix for PR4108: be a bit looser with the casts that we accept in by Eli Friedman · 16 years ago
  50. 0f59312 Minor work related to removing the assumption that value initialization by Eli Friedman · 16 years ago
  51. 1e5dc6e Add support for generating reference initialization code. by Anders Carlsson · 16 years ago
  52. 12e330c Rename variables to avoid conflict. by Anders Carlsson · 16 years ago
  53. 6ab3524 Propagate the ASTContext to various AST traversal and lookup functions. by Douglas Gregor · 16 years ago
  54. e9352cc Add a destination type argument to EmitConstantExpr. This will be used for when the destination has a reference type. (No functionality change yet) by Anders Carlsson · 16 years ago
  55. 8d4141f More "prep" work for handling UTF16 CFString. by Steve Naroff · 16 years ago
  56. 33fdb73 Some "prep" work for handling ObjC @-string constants that contain UTF-8. No functionality change. by Steve Naroff · 16 years ago
  57. 069880e Return 0 if the ConstExprEmitter can't handle an expression. by Anders Carlsson · 16 years ago
  58. 4de9fce Do some blocks cleanup and simplification. Fix a crash, and add a test case. by Anders Carlsson · 16 years ago
  59. 8a2b4b1 CodeGen support for copied BlockDeclRefExprs. by Mike Stump · 16 years ago
  60. eaf2bb8 first wave of fixes for @encode sema support. This is part of PR3648. by Chris Lattner · 16 years ago
  61. d01b669 Fix IRgen of constant expressions referring to external/static by Daniel Dunbar · 16 years ago
  62. ddd2b6e Eliminate a bunch of code which should be dead. by Eli Friedman · 16 years ago
  63. b83d287 Add enough checking to ensure that non-constant block literals don't by Mike Stump · 16 years ago
  64. e20de51 Remove IRgen constant emission assumption that LValue APValue results by Daniel Dunbar · 16 years ago
  65. bd65cac More codegen for blocks. The type of block literals should be better. by Mike Stump · 16 years ago
  66. d60f2fb Change EmitConstantExpr to allow failure. by Daniel Dunbar · 16 years ago
  67. 67a6448 Generate the helper function for blocks. Now basic codegen is by Mike Stump · 16 years ago
  68. 3c385e5 Add hook to add attributes to function declarations that we know by Douglas Gregor · 16 years ago
  69. d5cab54 Add a very basic implemenation of global blocks. This needs to be cleaned up. by Anders Carlsson · 16 years ago
  70. 71d8174 Silence a warning about an unused variable in -Asserts builds by Douglas Gregor · 16 years ago
  71. 7f5221b Fix for PR3447: use padded sizes for computations on struct/union constants. by Eli Friedman · 16 years ago
  72. 7d801ea Implement constant generation of ImplicitValueInitExprs. by Anders Carlsson · 16 years ago
  73. 3498bdb Introduce a new expression node, ImplicitValueInitExpr, that by Douglas Gregor · 16 years ago
  74. 0bb7689 Clean up designated initialization of unions, so that CodeGen doesn't by Douglas Gregor · 16 years ago
  75. 34e7946 Improvements to code-generation and semantic analysis of designated by Douglas Gregor · 16 years ago
  76. a5fd07b Implement basic _Complex integer constant folding. by Daniel Dunbar · 16 years ago
  77. 4c67834 Code generation support for C99 designated initializers. by Douglas Gregor · 16 years ago
  78. 1ef0965 Get rid of some code that should be unnecessary. by Eli Friedman · 16 years ago
  79. 3941b18 Make the constant folder aware of by Eli Friedman · 16 years ago
  80. f011589 Fix the address of a label to be properly considered and emitted as a constant. by Eli Friedman · 16 years ago
  81. 9b6f4de remove dead code. by Chris Lattner · 16 years ago
  82. 3d309f9 Add support for vectors to APValue. Vector constant evaluator and tests coming. by Nate Begeman · 16 years ago
  83. 81e51e2 add support for usage of cast to union thing with static vars by Nuno Lopes · 16 years ago
  84. 491c7b7 (LLVM up) Match TargetData API change in LLVM TOT. by Daniel Dunbar · 16 years ago
  85. 1a49af9 Add QualifiedDeclRefExpr, which retains additional source-location by Douglas Gregor · 16 years ago
  86. 86f1940 Add support for member references (E1.E2, E1->E2) with C++ semantics, by Douglas Gregor · 16 years ago
  87. 3534564 add codegen support for __func__ and friends, producing the same by Chris Lattner · 16 years ago
  88. 44b4321 Unifies the name-lookup mechanisms used in various parts of the AST by Douglas Gregor · 16 years ago
  89. 4b3f9c0 Change more code over to using the new Expr::Evaluate by Anders Carlsson · 16 years ago
  90. 704e490 Remove the #ifdeffed out code. by Anders Carlsson · 16 years ago
  91. bcf6225 Use tryEvaluate for constant exprs. by Anders Carlsson · 16 years ago
  92. 7b30b1c A few corrections to the expr constant work. Not enabled at the moment. by Eli Friedman · 16 years ago
  93. aa43256 More expr constant work. (Off by default). by Anders Carlsson · 16 years ago
  94. 6ee7aa1 rename Expr::tryEvaluate to Expr::Evaluate. by Chris Lattner · 16 years ago
  95. 5ea7d07 More constant expr work. by Anders Carlsson · 16 years ago
  96. 5a9a457 Check in code that uses tryEvaluate for emitting constant exprs (not used yet). by Anders Carlsson · 16 years ago
  97. d114ade Use IgnoreParenCasts. No functionality change. by Anders Carlsson · 16 years ago
  98. 0518999 Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expressions, both of values and types. by Sebastian Redl · 16 years ago
  99. be20bb5 make codegen reject initializes with designators, like this: by Chris Lattner · 16 years ago
  100. 8e9bebd Preliminary support for function overloading by Douglas Gregor · 16 years ago