| Commit message (Expand) | Author | Age | Files | Lines |
* | Introduce a new AST node describing reference binding to temporaries. | Douglas Gregor | 2011-06-21 | 1 | -0/+1 |
* | Automatic Reference Counting. | John McCall | 2011-06-15 | 1 | -1/+18 |
* | Add support for builtin astype: | Tanya Lattner | 2011-06-04 | 1 | -0/+1 |
* | Implement the initial part of C++0x [expr.const]p2, which specifies | Douglas Gregor | 2011-05-24 | 1 | -2/+29 |
* | Introduce Type::isSignedIntegerOrEnumerationType() and | Douglas Gregor | 2011-05-20 | 1 | -5/+6 |
* | Refactoring of constant expression evaluator | Peter Collingbourne | 2011-05-13 | 1 | -335/+238 |
* | Implementation of Embarcadero array type traits | John Wiegley | 2011-04-28 | 1 | -0/+5 |
* | t/clang/expr-traits | John Wiegley | 2011-04-25 | 1 | -0/+5 |
* | For | Argyrios Kyrtzidis | 2011-04-21 | 1 | -0/+2 |
* | Fix bug in vector initializer when initializing a vector with another vector. | Tanya Lattner | 2011-04-15 | 1 | -0/+6 |
* | C1X: implement generic selections | Peter Collingbourne | 2011-04-15 | 1 | -0/+22 |
* | After some discussion with Doug, we decided that it made a lot more sense | John McCall | 2011-04-12 | 1 | -4/+0 |
* | More __unknown_anytype work. | John McCall | 2011-04-11 | 1 | -0/+2 |
* | Remove CK_DynamicToNull. | Anders Carlsson | 2011-04-11 | 1 | -2/+0 |
* | As a first step towards fixing PR9641, add a CK_DynamicToNull cast kind which | Anders Carlsson | 2011-04-10 | 1 | -0/+2 |
* | Basic, untested implementation for an "unknown any" type requested by LLDB. | John McCall | 2011-04-07 | 1 | -0/+2 |
* | Silly mistake in integer constant folding cleanup. | Eli Friedman | 2011-03-25 | 1 | -1/+1 |
* | Fix some clang warnings. | Anders Carlsson | 2011-03-25 | 1 | -3/+3 |
* | Switch constant evaluation of float casts over to cast kinds. | Eli Friedman | 2011-03-25 | 1 | -3/+13 |
* | Cleanup integral and vector constant evaluation of casts to use cast kinds. | Eli Friedman | 2011-03-25 | 1 | -87/+105 |
* | Implement a new 'availability' attribute, that allows one to specify | Douglas Gregor | 2011-03-23 | 1 | -1/+1 |
* | Add support for the OpenCL vec_step operator, by generalising and | Peter Collingbourne | 2011-03-11 | 1 | -26/+51 |
* | Overload IntExprEvaluator::Success() with a function that takes a CharUnits | Ken Dyck | 2011-03-11 | 1 | -5/+10 |
* | Move private structs into anonymous namespaces. | Benjamin Kramer | 2011-03-04 | 1 | -17/+17 |
* | Don't crash during constant-evaluation of 1/(1/0). PR9262. | John McCall | 2011-02-26 | 1 | -1/+1 |
* | Change the representation of GNU ?: expressions to use a different expression | John McCall | 2011-02-17 | 1 | -10/+161 |
* | AST, Sema, Serialization: add CUDAKernelCallExpr and related semantic actions | Peter Collingbourne | 2011-02-09 | 1 | -0/+1 |
* | Remove vtables from the Stmt hierarchy; this was pretty easy as | John McCall | 2011-02-09 | 1 | -0/+1 |
* | An insomniac stab at making block declarations list the variables they close | John McCall | 2011-02-02 | 1 | -1/+1 |
* | Use RecordLayout::getBaseClassOffset() where CharUnits are needed instead of | Ken Dyck | 2011-01-26 | 1 | -7/+4 |
* | Fix the computation of alignment for fields of packed+aligned structs. | John McCall | 2011-01-20 | 1 | -8/+1 |
* | Replace calls to CharUnits::fromQuantity() with ones | Ken Dyck | 2011-01-18 | 1 | -13/+8 |
* | Introduce a new expression kind, SubstNonTypeTemplateParmPackExpr, | Douglas Gregor | 2011-01-15 | 1 | -0/+1 |
* | Replace a literal '8' with getCharWidth(). | Ken Dyck | 2011-01-14 | 1 | -1/+2 |
* | PR3558: mark "logically const" accessor methods in ASTContext as const, | Jay Foad | 2011-01-12 | 1 | -14/+16 |
* | Implement the sizeof...(pack) expression to compute the length of a | Douglas Gregor | 2011-01-04 | 1 | -1/+9 |
* | Implement support for pack expansions whose pattern is a non-type | Douglas Gregor | 2011-01-03 | 1 | -0/+1 |
* | Change all self assignments X=X to (void)X, so that we can turn on a | Jeffrey Yasskin | 2010-12-23 | 1 | -1/+1 |
* | Rewrite ComplexExprEvaluator::VisitCastExpr to use cast kinds, and fix | John McCall | 2010-12-14 | 1 | -78/+109 |
* | Improved complex constants evaluation. | Abramo Bagnara | 2010-12-11 | 1 | -2/+100 |
* | Remove the TypesCompatibleExprClass AST node. Merge its functionality into Bi... | Francois Pichet | 2010-12-08 | 1 | -11/+0 |
* | PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and | Jay Foad | 2010-12-07 | 1 | -4/+3 |
* | Type traits intrinsic implementation: __is_base_of(T, U) | Francois Pichet | 2010-12-07 | 1 | -0/+5 |
* | Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical | John McCall | 2010-12-06 | 1 | -1/+1 |
* | Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPrope... | John McCall | 2010-12-02 | 1 | -1/+0 |
* | Kill CK_Unknown and flesh out the documentation for the existing CastKinds. | John McCall | 2010-11-16 | 1 | -29/+0 |
* | Add a new expression kind, OpaqueValueExpr, which is useful for | John McCall | 2010-11-15 | 1 | -0/+1 |
* | Add a few more complex-related cast kinds that arise due to arbitrary | John McCall | 2010-11-14 | 1 | -1/+8 |
* | Introduce five new cast kinds for various conversions into and | John McCall | 2010-11-13 | 1 | -0/+2 |
* | Introduce a null-to-pointer implicit cast kind. | John McCall | 2010-11-13 | 1 | -0/+6 |