1. 7a7ee30 Some improvements to the handling of C11 atomic types: by David Chisnall · 13 years ago
  2. d97927d Revert r147664; it's breaking clang regression tests. by Eli Friedman · 13 years ago
  3. 2d5f095 Silence GCC warnings. by Jakub Staszak · 13 years ago
  4. 80d4b55 Small refactoring and simplification of constant evaluation and some of its by Richard Smith · 13 years ago
  5. d71f442 Switch a few callers of MakeAddrLValue places over to MakeNaturalAlignAddrLValue. by Eli Friedman · 13 years ago
  6. 1e4f68c Fix an edge case in IRGen for conditionals. PR11509. by Eli Friedman · 13 years ago
  7. 1a343eb Enter the cleanups for a block outside the enclosing by John McCall · 13 years ago
  8. 7864435 Rip out CK_GetObjCProperty. by John McCall · 13 years ago
  9. db45806 Rip the ObjCPropertyRef l-value kind out of IR-generation. by John McCall · 13 years ago
  10. 4b9c2d2 Change the AST representation of operations on Objective-C by John McCall · 13 years ago
  11. 51f4708 Rename Expr::Evaluate to Expr::EvaluateAsRValue to make it clear that it will by Richard Smith · 13 years ago
  12. c5096cb Annotate imprecise FP division with fpaccuracy metadata by Peter Collingbourne · 13 years ago
  13. 3c3b7f9 Restore r142914 and r142915, now with missing file and apparent by John McCall · 13 years ago
  14. 327a50f Revert r142914 and r142915, due to possibly missing file. by NAKAMURA Takumi · 13 years ago
  15. a1b852f Introduce a placeholder type for "pseudo object" by John McCall · 13 years ago
  16. c8645e3 Handle an edge case involving the conditional operator and throw expressions. PR10582. by Eli Friedman · 13 years ago
  17. aa4a99b Provide half floating point support as a storage only type. by Anton Korobeynikov · 13 years ago
  18. 276b061 Initial implementation of __atomic_* (everything except __atomic_is_lock_free). by Eli Friedman · 13 years ago
  19. 348f16f Mark calls to objc_retainBlock that don't result from casts by John McCall · 13 years ago
  20. 578faa8 de-tmpify clang. by Benjamin Kramer · 13 years ago
  21. cea8d96 Treat list-initialization of scalars as a first-class citizen in C++11. by Sebastian Redl · 13 years ago
  22. eb2d1f1 Removing a bunch of dead returns/breaks after llvm_unreachables. by David Blaikie · 13 years ago
  23. b219cfc Switch assert(0/false) llvm_unreachable. by David Blaikie · 13 years ago
  24. 33e56f3 Rename the ARC cast kinds to start with "ARC". by John McCall · 13 years ago
  25. dc05b11 When converting a block pointer to an Objective-C pointer type, extend by John McCall · 13 years ago
  26. 1d9b3b2 Give conversions of block pointers to ObjC pointers a different cast kind by John McCall · 13 years ago
  27. ec24b0e Fix r137086 to actually work properly in general. PR10650. by Eli Friedman · 13 years ago
  28. 3f86ce1 Hand materialization of temporary expressions when emitting a scalar by Douglas Gregor · 13 years ago
  29. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  30. cb8095f as eli points out, we're not doing memory stuff here. While ConvertType by Chris Lattner · 13 years ago
  31. 410b12e fix PR10395 - array decay can produce an interesting type when by Chris Lattner · 13 years ago
  32. 2acc6e3 de-constify llvm::Type, patch by David Blaikie! by Chris Lattner · 13 years ago
  33. 379010a Fix the definition of AsTypeExpr. I'm still not sure this by John McCall · 13 years ago
  34. 91a5755 Create a new expression node, SubstNonTypeTemplateParmExpr, by John McCall · 13 years ago
  35. 8dd55a3 Change intrinsic getter to take an ArrayRef, now that the underlying function in LLVM does. by Benjamin Kramer · 13 years ago
  36. 9cbe4f0 clang side to match the LLVM IR type system rewrite patch. by Chris Lattner · 13 years ago
  37. 14ef319 Layout the code for trapping arithmetic so that the overflow case comes after by Bill Wendling · 13 years ago
  38. 7e5e5f4 In ARC, reclaim all return values of retainable type, not just those by John McCall · 13 years ago
  39. 6594942 Cleanup cast IRGen a bit; no intended functionality change. by Eli Friedman · 13 years ago
  40. 545d996 LValue carries a type now, so simplify the main EmitLoad/Store APIs by John McCall · 13 years ago
  41. 913dab2 Mark the multiply which occurs as part of performing pointer by John McCall · 13 years ago
  42. bc8d40d Change the IR-generation of VLAs so that we capture bounds, by John McCall · 13 years ago
  43. f85e193 Automatic Reference Counting. by John McCall · 13 years ago
  44. 61eee0c Add support for builtin astype: by Tanya Lattner · 13 years ago
  45. 95d318c Eliminate temporary argument vectors. by Benjamin Kramer · 13 years ago
  46. 575a1c9 Introduce Type::isSignedIntegerOrEnumerationType() and by Douglas Gregor · 13 years ago
  47. 0eb47fc Make __builtin_shufflevector and -ftrapv work correctly together. PR9945. by Eli Friedman · 13 years ago
  48. d4b9ee3 Don't emit nsw flags for vector operations; there's basically no benefit, and a lot of downside (like PR9850, which is about clang's xmmintrin.h making an unexpected transformation on an expression involving _mm_add_epi32). by Eli Friedman · 13 years ago
  49. 21ff2e5 Implementation of Embarcadero array type traits by John Wiegley · 13 years ago
  50. 5526220 t/clang/expr-traits by John Wiegley · 13 years ago
  51. 48431f9 some cleanups to use IRBuilder methods instead of llvm:: foo methods. by Chris Lattner · 13 years ago
  52. c6bea67 fix rdar://9289603 - clang should fold trivial ?: for enums as well as integer constants into select at -O0 by Chris Lattner · 13 years ago
  53. f111d93 C1X: implement generic selections by Peter Collingbourne · 13 years ago
  54. 755d849 After some discussion with Doug, we decided that it made a lot more sense by John McCall · 13 years ago
  55. 379b515 More __unknown_anytype work. by John McCall · 13 years ago
  56. 575b374 Remove CK_DynamicToNull. by Anders Carlsson · 13 years ago
  57. 7d99bc3 As a first step towards fixing PR9641, add a CK_DynamicToNull cast kind which by Anders Carlsson · 13 years ago
  58. 52d6874 PR9580: Handle vectors correctly in ScalarExprEmitter::EmitRem. by Eli Friedman · 13 years ago
  59. 1de4d4e Basic, untested implementation for an "unknown any" type requested by LLDB. by John McCall · 13 years ago
  60. bbf3bac Remove PHINode::reserveOperandSpace(). Instead, add a parameter to by Jay Foad · 13 years ago
  61. acd7236 Fix in r128471 is very broad. Some of the unconditional branches need line number information for better user experience. by Devang Patel · 13 years ago
  62. 6305f72 refactoring by Anton Yartsev · 13 years ago
  63. 7870b13 AltiVec vector comparison logic now affect only vectors of fundamental AltiVec vector types. It fixes bug 9347. by Anton Yartsev · 13 years ago
  64. a5bcb8f Don't emit read barriers for reading __weak __block variables in non-GC mode. by John McCall · 13 years ago
  65. f4e3cfb Add support for the OpenCL vec_step operator, by generalising and by Peter Collingbourne · 13 years ago
  66. aa11289 DebugInfo can be enabled or disabled at function level (e.g. using an attribute). However, at module level it is determined by command line option and the state of command line option does not change during compilation. Make this layering explicit and fix accidental cases where the code generator was checking whether module has debug info enabled instead of checking whether debug info is enabled for this function or not. by Devang Patel · 13 years ago
  67. 5de7a0e Do not emit stop point for CXXDefaultArgExpr. It results in suboptimial user experience. by Devang Patel · 13 years ago
  68. 180ff3a IRGen. Fix IR when message returns reference type. // rdar://8604515. by Fariborz Jahanian · 13 years ago
  69. fa0b409 PR9350: increment/decrement of char (and anything else narrower than int) by Eli Friedman · 13 years ago
  70. 2cb4222 -fwrapv should turn off the inbounds markers from geps used for pointer by Chris Lattner · 13 years ago
  71. c2c9001 Change the interface to ConstantFoldsToSimpleInteger to not encode by Chris Lattner · 13 years ago
  72. cf0b2d8 Remove the "conditional save" hashtables from IR generation. by John McCall · 13 years ago
  73. 56ca35d Change the representation of GNU ?: expressions to use a different expression by John McCall · 13 years ago
  74. e996ffd Save a copy expression for non-trivial copy constructions of catch variables. by John McCall · 13 years ago
  75. 5936e33 Assorted cleanup: by John McCall · 13 years ago
  76. fb018d1 update for ConstantVector API change. by Chris Lattner · 13 years ago
  77. e69b099 revert my ConstantVector patch, it seems to have made the llvm-gcc by Chris Lattner · 13 years ago
  78. 1970d5f update for ConstantVector::get API change. by Chris Lattner · 13 years ago
  79. 6b5a61b A few more tweaks to the blocks AST representation: by John McCall · 13 years ago
  80. 683564a pre/post ++/-- for AltiVec vectors. (with builtins-ppc-altivec.c failure fixed) by Anton Yartsev · 13 years ago
  81. 5808ce4 More capturing of 'this': implicit member expressions. Getting that by John McCall · 13 years ago
  82. 150b462 Better framework for conditional cleanups; untested as yet. by John McCall · 13 years ago
  83. 5af1f06 Revert r124146 for now. It appears to be failing on a few platforms. by Eric Christopher · 13 years ago
  84. e07ae4e pre/post increase/decrease for AltiVec vectors by Anton Yartsev · 13 years ago
  85. da29e09 Send code generation for xvalues down the same path as lvalues by Douglas Gregor · 13 years ago
  86. f4c7371 Change QualType::getTypePtr() to return a const pointer, then change a by John McCall · 14 years ago
  87. fe71008 Replace calls to getTypeSize() and getTypeAlign() with their 'InChars' by Ken Dyck · 14 years ago
  88. 8d3d6c9 Ensure an insertion point at the end of a statement-expression. Fixes PR8967. by John McCall · 14 years ago
  89. 9370c8f Add IR generation support for SizeOfPackExpr. by Douglas Gregor · 14 years ago
  90. f187237 Remove the TypesCompatibleExprClass AST node. Merge its functionality into BinaryTypeTraitExpr. by Francois Pichet · 14 years ago
  91. 6ad6f28 Type traits intrinsic implementation: __is_base_of(T, U) by Francois Pichet · 14 years ago
  92. 4765fa0 Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical by John McCall · 14 years ago
  93. 2a41637 Fix a bug in the emission of __real/__imag l-values on scalar operands. by John McCall · 14 years ago
  94. fd56900 Silly special case: never load when dereferencing void*. by John McCall · 14 years ago
  95. f6a1648 Although we currently have explicit lvalue-to-rvalue conversions, they're by John McCall · 14 years ago
  96. 119a1c6 Kill the KVC l-value kind and calculate the base expression when emitting by John McCall · 14 years ago
  97. 12f78a6 Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPropertyRefExpr by John McCall · 14 years ago
  98. 0ae287a Restore the lvalue-to-rvalue conversion patch with a minimal fix. by John McCall · 14 years ago
  99. 20fbe7c L-value to r-value conversion is not ready for prime-time. by John McCall · 14 years ago
  100. 7e48579 Introduce an r-value to l-value cast kind. I'm not promising anything by John McCall · 14 years ago