| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | move library-specific diagnostic headers into library private dirs. Reduce | Chris Lattner | 2009-01-29 | 1 | -1/+1 |
* | Add folding for complex mul and fix some major bugs in complex float | Daniel Dunbar | 2009-01-29 | 1 | -2/+37 |
* | Implement basic _Complex integer constant folding. | Daniel Dunbar | 2009-01-28 | 1 | -33/+67 |
* | Split the single monolithic DiagnosticKinds.def file into one | Chris Lattner | 2009-01-27 | 1 | -1/+1 |
* | Make the constant folder aware of | Eli Friedman | 2009-01-25 | 1 | -0/+7 |
* | Fix the address of a label to be properly considered and emitted as a | Eli Friedman | 2009-01-25 | 1 | -0/+2 |
* | Refactor sizeof handling to use constant folding logic for constant | Eli Friedman | 2009-01-24 | 1 | -5/+10 |
* | add initial support for the gcc "alignof(decl) is the alignment of the decl | Chris Lattner | 2009-01-24 | 1 | -5/+14 |
* | Improve handling of alignof. alignof(VLA) now works properly for example. | Chris Lattner | 2009-01-24 | 1 | -13/+50 |
* | Fix invalid evaluation of _Complex float (real & imaginary parts had | Daniel Dunbar | 2009-01-24 | 1 | -2/+8 |
* | Support evaluation of vector constant expressions, and codegen of same. | Nate Begeman | 2009-01-18 | 1 | -1/+77 |
* | postpone sizeof objc-class computatin to the clients. | Fariborz Jahanian | 2009-01-16 | 1 | -0/+4 |
* | Fix some unused variable, control reaches end of non-void function, | Daniel Dunbar | 2009-01-15 | 1 | -0/+1 |
* | PODness and Type Traits | Sebastian Redl | 2009-01-05 | 1 | -0/+6 |
* | Add codegen support for __null | Anders Carlsson | 2008-12-21 | 1 | -0/+6 |
* | Add support for member references (E1.E2, E1->E2) with C++ semantics, | Douglas Gregor | 2008-12-20 | 1 | -1/+4 |
* | Get rid of the old Expr::Evaluate variant. | Anders Carlsson | 2008-12-19 | 1 | -17/+4 |
* | Unifies the name-lookup mechanisms used in various parts of the AST | Douglas Gregor | 2008-12-11 | 1 | -3/+5 |
* | Workaround for PR3173. The fix is correct in the sense that if the enum | Eli Friedman | 2008-12-08 | 1 | -0/+3 |
* | This wasn't such a good idea after all as it broke some tests. | Anders Carlsson | 2008-12-05 | 1 | -10/+1 |
* | Handle __builtin___CFStringMakeConstantString in Expr::Evaluate. | Anders Carlsson | 2008-12-05 | 1 | -1/+10 |
* | Generate the correct results for the comma expression. Fixes PR3123. | Anders Carlsson | 2008-12-01 | 1 | -7/+10 |
* | Emit the correct diagnostic when a comma is in an ICE. | Anders Carlsson | 2008-12-01 | 1 | -4/+4 |
* | Change the diagnostics that the evaluator reports to be of type NOTE. | Anders Carlsson | 2008-11-30 | 1 | -11/+10 |
* | Replace the isEvaluated bool with a ShortCircuit int, making it easier to han... | Anders Carlsson | 2008-11-30 | 1 | -12/+10 |
* | Pass the expression to the Error and Extension methods. | Anders Carlsson | 2008-11-30 | 1 | -20/+22 |
* | Add a new variant of Evaluate and reimplement the old Evaluate in terms of th... | Anders Carlsson | 2008-11-30 | 1 | -7/+17 |
* | General cleanup, evaluate the RHS of a logical op even if the LHS will give u... | Anders Carlsson | 2008-11-30 | 1 | -16/+25 |
* | EvalInfo now holds a reference to an EvalResult struct. | Anders Carlsson | 2008-11-30 | 1 | -24/+14 |
* | remove debug-only assertion in the complex float evaluator as it makes some r... | Nuno Lopes | 2008-11-26 | 1 | -1/+0 |
* | The address of a variable is only constant if the variable has global storage. | Anders Carlsson | 2008-11-24 | 1 | -1/+9 |
* | Fix bug in the constant evaluator. Fixes PR3115. | Anders Carlsson | 2008-11-24 | 1 | -33/+33 |
* | Return false if we encounter a type we can't handle. | Anders Carlsson | 2008-11-22 | 1 | -1/+2 |
* | Case values must be evaluated | Anders Carlsson | 2008-11-22 | 1 | -19/+23 |
* | Use Expr::Evaluate for case statements. Fixes PR2525 | Anders Carlsson | 2008-11-22 | 1 | -9/+27 |
* | fix folding of '*doubleArray' | Nuno Lopes | 2008-11-19 | 1 | -0/+3 |
* | Address some comments Eli had. | Anders Carlsson | 2008-11-16 | 1 | -11/+6 |
* | use HandleConversionToBool() to check if a given cond is foldable (per Eli's ... | Nuno Lopes | 2008-11-16 | 1 | -3/+3 |
* | More complex float evaluator support. | Anders Carlsson | 2008-11-16 | 1 | -0/+45 |
* | rename Expr::tryEvaluate to Expr::Evaluate. | Chris Lattner | 2008-11-16 | 1 | -6/+6 |
* | Add very limited support for evaluating complex floats. | Anders Carlsson | 2008-11-16 | 1 | -1/+46 |
* | fix folding of comma if given a non-constant operand. | Nuno Lopes | 2008-11-16 | 1 | -3/+4 |
* | make IntExprEvaluator fold the ?: operator | Nuno Lopes | 2008-11-16 | 1 | -0/+9 |
* | More work on the constant evaluator. Eli, it would be great if you could have... | Anders Carlsson | 2008-11-16 | 1 | -1/+65 |
* | Add the ability to evaluate comparison operators with floating point numbers ... | Anders Carlsson | 2008-11-16 | 1 | -2/+45 |
* | Fix for crash issues with comma operators with a void first operand, and | Eli Friedman | 2008-11-13 | 1 | -50/+67 |
* | Backout of r59196, plus a new ICE test. Sorry if this is a | Eli Friedman | 2008-11-13 | 1 | -32/+16 |
* | Fix bug in constant evaluation exposed by 176.gcc. | Daniel Dunbar | 2008-11-13 | 1 | -16/+32 |
* | Disable some debug prints. | Daniel Dunbar | 2008-11-12 | 1 | -0/+2 |
* | Some additions to tryEvaluate I've had sitting around for a while. | Eli Friedman | 2008-11-12 | 1 | -25/+202 |