| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Support strlen() and __builtin_strlen() as constant expressions with | Douglas Gregor | 2010-09-10 | 1 | -0/+18 |
* | Fix warnings caused by new CXXUuidofExprClass enumerator. | Francois Pichet | 2010-09-08 | 1 | -0/+1 |
* | Get rid of unnecessary return. | Eli Friedman | 2010-09-06 | 1 | -1/+0 |
* | PR7242: Make sure to use a different context for evaluating constant | Eli Friedman | 2010-09-06 | 1 | -1/+4 |
* | Eliminate CXXBindReferenceExpr, which was used in a ton of | Douglas Gregor | 2010-09-02 | 1 | -1/+0 |
* | Revert my user-defined literal commits - r1124{58,60,67} pending | Alexis Hunt | 2010-08-30 | 1 | -2/+1 |
* | Implement C++0x user-defined string literals. | Alexis Hunt | 2010-08-29 | 1 | -1/+2 |
* | GCC didn't care for my attempt at API compatibility, so brute-force everything | John McCall | 2010-08-25 | 1 | -116/+116 |
* | Move a bunch of code out of the ComplexExprEvaluator class definition; | Eli Friedman | 2010-08-16 | 1 | -105/+109 |
* | PR7884: Fix the implementations of __real__ and __imag__ on real floats. | Eli Friedman | 2010-08-14 | 1 | -9/+21 |
* | Zap unused UnaryOperator::OffsetOf. | Eli Friedman | 2010-08-13 | 1 | -15/+0 |
* | Get rid of isObjectType; when C++ says "object type", it generally | Eli Friedman | 2010-08-05 | 1 | -1/+1 |
* | Fix namespace polution. | Dan Gohman | 2010-07-26 | 1 | -1/+5 |
* | Introduce a new cast kind for an "lvalue bitcast", which handles | Douglas Gregor | 2010-07-13 | 1 | -0/+1 |
* | Reinstate the fix for PR7556. A silly use of isTrivial() was | Douglas Gregor | 2010-07-08 | 1 | -4/+4 |
* | Revert r107828 and r107827, the fix for PR7556, which seems to be | Douglas Gregor | 2010-07-07 | 1 | -4/+4 |
* | Rename CXXZeroInitValueExpr to CXXScalarValueInitExpr, to reflect its | Douglas Gregor | 2010-07-07 | 1 | -4/+4 |
* | Don't consider casted non-global pointers to be evaluatable. | John McCall | 2010-07-07 | 1 | -0/+2 |
* | Introduce Type::isIntegralOrEnumerationType(), to cover those places | Douglas Gregor | 2010-06-16 | 1 | -14/+17 |
* | Fix the constant evaluator for AltiVec-style vector literals so that the | John McCall | 2010-06-11 | 1 | -13/+34 |
* | When constant folding reference variables with an initializer to the | Chandler Carruth | 2010-05-16 | 1 | -0/+4 |
* | Added Expr::EvaluateAsAnyLValue. | Abramo Bagnara | 2010-05-14 | 1 | -5/+21 |
* | Refactor the constant-evaluator so that it only supports a single form | John McCall | 2010-05-10 | 1 | -62/+80 |
* | The FP constant evaluator was missing a few cases of unary operators that ret... | John McCall | 2010-05-07 | 1 | -2/+20 |
* | Make that null-dereference fix a little clearer by rearranging some code. | John McCall | 2010-05-07 | 1 | -2/+14 |
* | Fix a potential null dereference in the pointer-to-bool evaluator; caught by | John McCall | 2010-05-07 | 1 | -1/+1 |
* | Change the pointer / lvalue constant evaluators to build into a target reference | John McCall | 2010-05-07 | 1 | -205/+199 |
* | Change the complex constant evaluator to return a bool instead of an APValue. | John McCall | 2010-05-07 | 1 | -102/+138 |
* | Fix PR4386 by implementing gcc's old behaviour (4.2) when initializing | Rafael Espindola | 2010-05-07 | 1 | -3/+14 |
* | Change Evaluate* in the constant evaluator to enforce being given an argument of | John McCall | 2010-05-07 | 1 | -5/+6 |
* | Move CheckICE and isIntegerConstantExpr to ExprConstant.cpp because it seemed | John McCall | 2010-05-07 | 1 | -0/+379 |
* | A not equal for an unordered relation should return true as specified in IEEE... | Mon P Wang | 2010-04-29 | 1 | -3/+6 |
* | Teach __builtin_offsetof to compute the offsets of members of base | Douglas Gregor | 2010-04-29 | 1 | -5/+29 |
* | Completely reimplement __builtin_offsetof, based on a patch by Roberto | Douglas Gregor | 2010-04-28 | 1 | -4/+62 |
* | Introduce Type::isStructureOrClassType(), which does the obvious | Douglas Gregor | 2010-04-26 | 1 | -1/+1 |
* | remove some extraneous qualifiers. | Chris Lattner | 2010-04-20 | 1 | -2/+2 |
* | Teach HasSideEffect about InitListExprs. Not having | Chris Lattner | 2010-04-13 | 1 | -0/+7 |
* | Evaluate: Fix a subtle bug in the pointer evaluator in which we would do an | Daniel Dunbar | 2010-03-20 | 1 | -10/+17 |
* | Support constant-evaluation of __builtin_nans* as well as the correct constant | John McCall | 2010-02-28 | 1 | -13/+33 |
* | Fix for PR6274: teach constant folding to evaluate __builtin_expect. | Eli Friedman | 2010-02-13 | 1 | -2/+5 |
* | Don't try to fold DeclRefExprs that point to ParmVarDecls. This had the side-... | Anders Carlsson | 2010-02-03 | 1 | -0/+4 |
* | In C++, an initializer on a variable doesn't necessarily mean it's the defini... | Sebastian Redl | 2010-02-01 | 1 | -4/+2 |
* | Change the return type of ASTContext::getDeclAlignInBytes() to CharUnits and, | Ken Dyck | 2010-01-27 | 1 | -10/+12 |
* | Created __builtin___NSStringMakeConstantString() builtin, which generates con... | David Chisnall | 2010-01-23 | 1 | -1/+3 |
* | Update and move around comments. | Eric Christopher | 2010-01-19 | 1 | -1/+4 |
* | Convert the type of the LValue offset variable in APValue to CharUnits, moving | Ken Dyck | 2010-01-15 | 1 | -35/+42 |
* | Roll out ASTContext::getTypeSizeInChars(), replacing instances of | Ken Dyck | 2010-01-11 | 1 | -17/+18 |
* | Add Expr::EvaluateAsBooleanCondition(), which does unprincipled folding to | John McCall | 2010-01-05 | 1 | -1/+9 |
* | __builtin_object_size(ptr, type) returns -1 for type = {0,1} if there are any... | Benjamin Kramer | 2010-01-03 | 1 | -1/+1 |
* | Fix PointerExprEvaluator::VisitCastExpr so it doesn't misfold C++ casts which | Eli Friedman | 2009-12-27 | 1 | -25/+42 |