| Commit message (Expand) | Author | Age | Files | Lines |
* | Change the AST generated for offsetof a bit so that it looks like a | Eli Friedman | 2009-02-27 | 1 | -43/+0 |
* | Make isICE assert when Evaluate can't evaluate an ICE, as suggested by | Eli Friedman | 2009-02-27 | 1 | -26/+58 |
* | The middle operand in ?: is optional, really. | Mike Stump | 2009-02-27 | 1 | -1/+1 |
* | Rewrite of isIntegerConstantExpr to be centered around Evaluate. This | Eli Friedman | 2009-02-26 | 1 | -326/+172 |
* | first wave of fixes for @encode sema support. This is part of PR3648. | Chris Lattner | 2009-02-24 | 1 | -1/+3 |
* | We should not generate __weak write barrier on indirect reference | Fariborz Jahanian | 2009-02-23 | 1 | -0/+2 |
* | More objc gc work. Match gcc's treatment of ivar access | Fariborz Jahanian | 2009-02-22 | 1 | -0/+27 |
* | Improvements to ASTContext::getDeclAlignInBytes; fixes the testcase in | Eli Friedman | 2009-02-22 | 1 | -20/+7 |
* | A few small tweaks to isConstantInitializer. (No test because this | Eli Friedman | 2009-02-20 | 1 | -3/+9 |
* | rip out __builtin_overload | Chris Lattner | 2009-02-18 | 1 | -12/+0 |
* | teach child iterators to walk into the child string of an ObjCStringLiteral, | Chris Lattner | 2009-02-18 | 1 | -2/+2 |
* | privatize all of the string literal memory allocation/creation | Chris Lattner | 2009-02-18 | 1 | -47/+21 |
* | change the StringLiteral AST node to track all of the SourceLocations of | Chris Lattner | 2009-02-18 | 1 | -6/+22 |
* | isICE was evaluating ?: incorrectly with missing-gcc-LHS extension. | Daniel Dunbar | 2009-02-18 | 1 | -3/+16 |
* | Convert isIntegerConstantExpr to use ASTContext::MakeIntValue. | Daniel Dunbar | 2009-02-18 | 1 | -39/+29 |
* | Rename UnaryTypeTraitExpr::Evaluate to EvaluateTrait to not collide | Daniel Dunbar | 2009-02-17 | 1 | -1/+1 |
* | Unbreak clang. | Daniel Dunbar | 2009-02-16 | 1 | -1/+1 |
* | fix long lines. | Chris Lattner | 2009-02-16 | 1 | -8/+12 |
* | introduce and use a new ExtVectorElementExpr::isArrow method, at Eli's sugges... | Chris Lattner | 2009-02-16 | 1 | -0/+6 |
* | Add hook to add attributes to function declarations that we know | Douglas Gregor | 2009-02-14 | 1 | -4/+4 |
* | Several related changes: | Chris Lattner | 2009-02-14 | 1 | -38/+103 |
* | Implicitly declare certain C library functions (malloc, strcpy, memmove, | Douglas Gregor | 2009-02-13 | 1 | -1/+1 |
* | Fix va_arg bug noticed by Eli, __builtin_va_arg is not an l-value | Daniel Dunbar | 2009-02-12 | 1 | -1/+1 |
* | CallExpr now uses ASTContext's allocate to allocate/delete its array of subex... | Ted Kremenek | 2009-02-09 | 1 | -5/+16 |
* | Deallocate the StringLiteral itself in StringLiteral::Destroy() and deallocat... | Ted Kremenek | 2009-02-09 | 1 | -1/+2 |
* | Allocate the subexpression array for OberloadExpr from ASTContext's allocator. | Ted Kremenek | 2009-02-09 | 1 | -0/+7 |
* | Make const-initialized const integral variables I-C-Es in C++. | Sebastian Redl | 2009-02-07 | 1 | -0/+11 |
* | Overhaul of Stmt allocation: | Ted Kremenek | 2009-02-07 | 1 | -10/+10 |
* | Implement dereferencing of pointers-to-member. | Sebastian Redl | 2009-02-07 | 1 | -0/+6 |
* | Move StringLiteral to allocate its internal string data using the allocator in | Ted Kremenek | 2009-02-06 | 1 | -5/+7 |
* | Basic representation of C++ class templates, from Andrew Sutton. | Douglas Gregor | 2009-02-04 | 1 | -0/+1 |
* | Make CodeGen produce an error if we come across a non-constant initializer li... | Douglas Gregor | 2009-01-29 | 1 | -1/+1 |
* | Introduce a new expression node, ImplicitValueInitExpr, that | Douglas Gregor | 2009-01-29 | 1 | -1/+12 |
* | Clean up designated initialization of unions, so that CodeGen doesn't | Douglas Gregor | 2009-01-29 | 1 | -1/+2 |
* | Remove Expr::hasSideEffects. It doesn't work anyway | Douglas Gregor | 2009-01-28 | 1 | -6/+0 |
* | Code generation support for C99 designated initializers. | Douglas Gregor | 2009-01-28 | 1 | -2/+26 |
* | Finish making AST BumpPtrAllocation runtime configurable (based on -disable-f... | Steve Naroff | 2009-01-27 | 1 | -4/+3 |
* | Fix compile error from r62953. | Sebastian Redl | 2009-01-25 | 1 | -1/+2 |
* | One more case for Expr::isConstantInitializer; I think this covers | Eli Friedman | 2009-01-25 | 1 | -0/+2 |
* | Enhancements to Expr::isConstantInitializer to deal with a few | Eli Friedman | 2009-01-25 | 1 | -6/+25 |
* | Rename Expr::isConstantExpr to Expr::isConstantInitializer; this more | Eli Friedman | 2009-01-25 | 1 | -4/+3 |
* | Initial implementation of semantic analysis and ASTs for C99 | Douglas Gregor | 2009-01-22 | 1 | -0/+111 |
* | Support evaluation of vector constant expressions, and codegen of same. | Nate Begeman | 2009-01-18 | 1 | -0/+5 |
* | A couple more vector component access fixes. | Nate Begeman | 2009-01-18 | 1 | -0/+11 |
* | Update support for vector component access on ExtVectors. | Nate Begeman | 2009-01-18 | 1 | -5/+8 |
* | Patch to supprt case of readonly property being | Fariborz Jahanian | 2009-01-12 | 1 | -13/+1 |
* | Add QualifiedDeclRefExpr, which retains additional source-location | Douglas Gregor | 2009-01-06 | 1 | -2/+5 |
* | PODness and Type Traits | Sebastian Redl | 2009-01-05 | 1 | -0/+4 |
* | Add support for calls to overloaded member functions. Things to note: | Douglas Gregor | 2008-12-22 | 1 | -5/+6 |
* | Add support for member references (E1.E2, E1->E2) with C++ semantics, | Douglas Gregor | 2008-12-20 | 1 | -16/+53 |