| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | 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 |
* | Remove some dead variables clang-analyzer found. | Benjamin Kramer | 2009-12-25 | 1 | -2/+0 |
* | Update for the intrinsic changes in llvm: the object size intrinsic | Eric Christopher | 2009-12-23 | 1 | -1/+2 |
* | Use StringRef.getAsInteger instead of temporary string + strtol. No intended ... | Benjamin Kramer | 2009-12-11 | 1 | -9/+3 |
* | Clean up enum constants so that they're finally sane. Fixes PR3173 and a | Eli Friedman | 2009-12-10 | 1 | -10/+2 |
* | Fix for PR5447: teach Evaluate to deal with floating-point conditionals. | Eli Friedman | 2009-12-04 | 1 | -2/+10 |
* | Add recursion guards to ice-checking and evaluation for declrefs, so we | Eli Friedman | 2009-12-03 | 1 | -4/+13 |
* | Remove VISIBILITY_HIDDEN from lib/AST. | Benjamin Kramer | 2009-11-28 | 1 | -8/+7 |
* | Teach Evaluate to handle member expressions referring to enum constants and | Eli Friedman | 2009-11-24 | 1 | -8/+21 |
* | Intercept sizeof and alignof references before they get into ASTContext metho... | Sebastian Redl | 2009-11-23 | 1 | -2/+16 |
* | Add constant evaluation for comma operator with floating-point operand. Fixes | Eli Friedman | 2009-11-16 | 1 | -1/+13 |
* | Added support for static variables which require | Fariborz Jahanian | 2009-11-05 | 1 | -8/+7 |
* | Refine volatile handling, specifically, we must have the canonical | Mike Stump | 2009-11-03 | 1 | -2/+2 |
* | silence a warning. | Chris Lattner | 2009-11-03 | 1 | -1/+1 |
* | When determining whether a reference to a static data member is an | Douglas Gregor | 2009-11-01 | 1 | -6/+10 |
* | Fix one more bug with __builtin_object_size. | Mike Stump | 2009-10-29 | 1 | -1/+1 |
* | Fix some issues Daniel pointed out. | Mike Stump | 2009-10-29 | 1 | -3/+4 |
* | optimize out some ifdefs. | Chris Lattner | 2009-10-29 | 1 | -4/+0 |
* | Implement clang support for indirect branch and address of label | Chris Lattner | 2009-10-28 | 1 | -0/+5 |
* | Refine __builtin_object_size. Don't try and get a size for things | Mike Stump | 2009-10-28 | 1 | -7/+12 |
* | __builtin_object_size refinements. Ensure we handle expressions with | Mike Stump | 2009-10-27 | 1 | -2/+62 |
* | __builtin_object_size refinements. Also handle stack based objects. WIP. | Mike Stump | 2009-10-26 | 1 | -1/+28 |
* | __builtin_object_size refinements. When we run out of object, be sure | Mike Stump | 2009-10-26 | 1 | -1/+5 |
* | Be sure to zero-extend. And refactor. | Mike Stump | 2009-10-26 | 1 | -6/+1 |
* | __builtin_object_size refinements. WIP. | Mike Stump | 2009-10-26 | 1 | -0/+30 |
* | Ignore No-op casts when evaluating lvalue expressions. Fixes PR5122. | Anders Carlsson | 2009-10-03 | 1 | -0/+10 |
* | Refactor the representation of qualifiers to bring ExtQualType out of the | John McCall | 2009-09-24 | 1 | -1/+1 |
* | implement support for __builtin_eh_return_data_regno on x86-32 and x86-64. | Chris Lattner | 2009-09-23 | 1 | -0/+6 |