| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove ';' after method definition. Noticed by clang++, which one would think | Daniel Dunbar | 2009-12-19 | 1 | -16/+16 |
* | It's perfectly fine to see UserDefinedConversion casts when emitting scalar e... | Anders Carlsson | 2009-12-18 | 1 | -1/+1 |
* | Implement additional undefined checks for additional loads and stores. WIP. | Mike Stump | 2009-12-16 | 1 | -3/+4 |
* | Switch codegen for -fcatch-undefined-bahavior over to __builtin_trap | Mike Stump | 2009-12-15 | 1 | -2/+2 |
* | Add support for detecting undefined shift behavior. WIP. | Mike Stump | 2009-12-14 | 1 | -0/+20 |
* | Patch to allow C-style cast from 'void *' to block pointer type. | Fariborz Jahanian | 2009-12-11 | 1 | -0/+1 |
* | Move the code for converting a member pointer to a bool so that it is usable | Eli Friedman | 2009-12-11 | 1 | -28/+2 |
* | Fix for PR5718: implement equality comparisons for member function pointers. | Eli Friedman | 2009-12-11 | 1 | -1/+28 |
* | Support unary type traits in a scalar context. Not that I've actually seen | Eli Friedman | 2009-12-10 | 1 | -0/+4 |
* | Code gen for ObjCIsaExpr AST used as lvalue. | Fariborz Jahanian | 2009-12-09 | 1 | -15/+21 |
* | Codegen. support for ObjCIsaExpr AST which until now | Fariborz Jahanian | 2009-12-09 | 1 | -0/+19 |
* | More detailed analysis of typecast to an objective-c pointer | Fariborz Jahanian | 2009-12-08 | 1 | -0/+1 |
* | Correctly handle conditional operators involving throw. | Eli Friedman | 2009-12-07 | 1 | -4/+5 |
* | Don't pass false (default) for isVolatile parameter to CreateLoad. | Daniel Dunbar | 2009-11-29 | 1 | -1/+1 |
* | Remove remaining VISIBILITY_HIDDEN from anonymous namespaces. | Benjamin Kramer | 2009-11-28 | 1 | -2/+1 |
* | More work on ScalarExprEmitter::EmitCastExpr: for every cast kind, either | Eli Friedman | 2009-11-27 | 1 | -8/+32 |
* | Cleanup for ScalarExprEmitter::EmitCastExpr; no functional changes. | Eli Friedman | 2009-11-27 | 1 | -15/+19 |
* | Use the more general Evaluate infrastructure for folding constant DeclRefs | Eli Friedman | 2009-11-26 | 1 | -17/+17 |
* | We always need to emit the base expression of a member expression, even when ... | Anders Carlsson | 2009-11-24 | 1 | -2/+9 |
* | Don't try to treat an enum constant as an lvalue. | Anders Carlsson | 2009-11-23 | 1 | -1/+8 |
* | Handle converting member pointers to bool. | Anders Carlsson | 2009-11-23 | 1 | -0/+29 |
* | Handle base-to-derived casts. Will land test case shortly. | Anders Carlsson | 2009-11-23 | 1 | -12/+33 |
* | Fix lifetime of conditional temporaries. Patch by Victor Zverovich! | Anders Carlsson | 2009-11-20 | 1 | -8/+8 |
* | Minor cleanup to member pointer handling. | Eli Friedman | 2009-11-18 | 1 | -7/+3 |
* | Clean up scalar cast kind handling; make cast kind handling explicitly handle | Eli Friedman | 2009-11-16 | 1 | -36/+61 |
* | Implement most of dynamic_cast. WIP. | Mike Stump | 2009-11-16 | 1 | -0/+6 |
* | indirectbr seems to work! Rip out the old code. | Chris Lattner | 2009-11-06 | 1 | -8/+0 |
* | Refine volatile handling, specifically, we must have the canonical | Mike Stump | 2009-11-03 | 1 | -5/+9 |
* | Add CGException.cpp, to be used for exception related code generation. | Anders Carlsson | 2009-10-30 | 1 | -1/+6 |
* | Implement clang support for indirect branch and address of label | Chris Lattner | 2009-10-28 | 1 | -0/+5 |
* | Fix a bug in calculating shufflevector indices when constructing vectors from... | Nate Begeman | 2009-10-25 | 1 | -4/+3 |
* | Complete code gen for '.*' binary expression for | Fariborz Jahanian | 2009-10-22 | 1 | -24/+5 |
* | Canonicality is a property of qualified types, not unqualified types. | John McCall | 2009-10-22 | 1 | -1/+1 |
* | Code gen for '.*' binary expressions - WIP. | Fariborz Jahanian | 2009-10-21 | 1 | -0/+27 |
* | Support IRgen of OpenCL vector initializers, ensuring the resulting IR is in a | Nate Begeman | 2009-10-18 | 1 | -42/+169 |
* | Add some more cast kinds. | Anders Carlsson | 2009-10-18 | 1 | -1/+10 |
* | Fix PR5211: codegen shouldn't assume that the result of ||/&& is int | Chris Lattner | 2009-10-17 | 1 | -10/+14 |
* | Simplify pointer creation with the new Type::getInt*Ptr methods. | Benjamin Kramer | 2009-10-13 | 1 | -12/+6 |
* | Generate weak read barriers when reading a weak __block | Fariborz Jahanian | 2009-10-10 | 1 | -1/+5 |
* | Use new predicates for some type equality tests. | Benjamin Kramer | 2009-10-05 | 1 | -2/+2 |
* | Refactor the representation of qualifiers to bring ExtQualType out of the | John McCall | 2009-09-24 | 1 | -2/+1 |
* | Remove now fixed FIXME. | Mike Stump | 2009-09-22 | 1 | -1/+0 |
* | No need to null check implicit lvalue cast exprs. | Anders Carlsson | 2009-09-22 | 1 | -8/+15 |
* | Change all the Type::getAsFoo() methods to specializations of Type::getAs(). | John McCall | 2009-09-21 | 1 | -5/+5 |
* | Handle reinterpret_cast between integral types and pointer types. | Anders Carlsson | 2009-09-15 | 1 | -0/+16 |
* | Codegen support for nullptr from C++0x. | Anders Carlsson | 2009-09-15 | 1 | -0/+4 |
* | When necessary, null check the base value in GetAddressCXXOfBaseClass. | Anders Carlsson | 2009-09-12 | 1 | -1/+9 |
* | Handle derived-to-base conversion in CGExprScalar::EmitCast, if the cast kind... | Anders Carlsson | 2009-09-12 | 1 | -10/+18 |
* | Rename AddressCXXOfBaseClass to GetAddressCXXOfBaseClass. Add a NullCheckValu... | Anders Carlsson | 2009-09-12 | 1 | -1/+3 |
* | If a cast expression needs either a conversion function or a constructor to b... | Anders Carlsson | 2009-09-09 | 1 | -8/+0 |