| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix one last gotcha with typeid. | Mike Stump | 2009-11-18 | 1 | -0/+1 |
* | Add Code gen support for '->*' operator which fell | Fariborz Jahanian | 2009-10-26 | 1 | -1/+2 |
* | Eliminate QualifiedDeclRefExpr, which captured the notion of a | Douglas Gregor | 2009-10-23 | 1 | -1/+1 |
* | Complete code gen for '.*' binary expression for | Fariborz Jahanian | 2009-10-22 | 1 | -1/+11 |
* | Use CK_BitCast for member function pointer casts. Fixes PR5138. | Anders Carlsson | 2009-10-18 | 1 | -0/+6 |
* | add support for codegening CXXZeroInitValueExprs | Nuno Lopes | 2009-10-18 | 1 | -0/+6 |
* | Suppress -Asserts warning. | Daniel Dunbar | 2009-10-17 | 1 | -0/+1 |
* | Simplify pointer creation with the new Type::getInt*Ptr methods. | Benjamin Kramer | 2009-10-13 | 1 | -2/+1 |
* | Move the vtable builder to CGVtable.cpp, general cleanup. | Anders Carlsson | 2009-10-11 | 1 | -1/+2 |
* | Pass the canonical method decl to GetVtableIndex. Fixes PR5120. | Anders Carlsson | 2009-10-03 | 1 | -1/+1 |
* | Teach AggExprEmitter about pointers to member functions. | Anders Carlsson | 2009-10-03 | 1 | -0/+33 |
* | Move some functions from CodeGenFunctions to CodeGenModule so they can be use... | Anders Carlsson | 2009-10-03 | 1 | -1/+1 |
* | Handle CK_BaseToDerivedMemberPointer for member function pointers. Fixes PR5091. | Anders Carlsson | 2009-09-29 | 1 | -1/+34 |
* | Improve support for member function pointers. | Anders Carlsson | 2009-09-29 | 1 | -0/+15 |
* | Use a switch statement in VisitCastExpr. | Anders Carlsson | 2009-09-29 | 1 | -12/+16 |
* | Refactor the representation of qualifiers to bring ExtQualType out of the | John McCall | 2009-09-24 | 1 | -5/+6 |
* | If a cast expression needs either a conversion function or a constructor to b... | Anders Carlsson | 2009-09-09 | 1 | -10/+3 |
* | Remove tabs, and whitespace cleanups. | Mike Stump | 2009-09-09 | 1 | -39/+39 |
* | Re-implemented generation of objc_memmove_collectable | Fariborz Jahanian | 2009-08-31 | 1 | -12/+17 |
* | Patch for code gen. for c-style cast which ends in | Fariborz Jahanian | 2009-08-29 | 1 | -2/+6 |
* | ir-gen for type convesion of class objects. WIP. | Fariborz Jahanian | 2009-08-26 | 1 | -1/+6 |
* | Using "ObjCImplicitSetterGetterRefExpr" instead of "ObjCImplctSetterGetterRef... | Fariborz Jahanian | 2009-08-20 | 1 | -3/+3 |
* | Renamed ObjCKVCRefExpr to ObjCImplctSetterGetterRefExpr. | Fariborz Jahanian | 2009-08-18 | 1 | -2/+3 |
* | Add an IsInitializer flag to EmitAnyExpr. This is used to prevent temporaries... | Anders Carlsson | 2009-08-16 | 1 | -8/+13 |
* | Update for LLVM API change. | Owen Anderson | 2009-08-13 | 1 | -3/+5 |
* | Add CK_ToUnion and use it for aggregate expression codegen. | Anders Carlsson | 2009-08-07 | 1 | -9/+8 |
* | Update for LLVM API change. | Owen Anderson | 2009-07-31 | 1 | -1/+1 |
* | Canonicalize else spacing. | Mike Stump | 2009-07-30 | 1 | -2/+1 |
* | Update for LLVM API change. | Owen Anderson | 2009-07-29 | 1 | -2/+2 |
* | Change uses of: | Ted Kremenek | 2009-07-29 | 1 | -2/+2 |
* | Update for LLVM API change. | Owen Anderson | 2009-07-24 | 1 | -2/+2 |
* | Preserve address space information through member accesses, e.g., | Mon P Wang | 2009-07-22 | 1 | -1/+2 |
* | Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods | Ted Kremenek | 2009-07-17 | 1 | -2/+2 |
* | Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), ... | Ted Kremenek | 2009-07-17 | 1 | -2/+2 |
* | Update for LLVM API change, and contextify a bunch of related stuff. | Owen Anderson | 2009-07-14 | 1 | -4/+4 |
* | Update for LLVM API change. | Owen Anderson | 2009-07-13 | 1 | -1/+1 |
* | Implement code generation of ChooseExpr for aggregate types. | Anders Carlsson | 2009-07-08 | 1 | -0/+5 |
* | Implemented memmove_collectable API for Next runtime | Fariborz Jahanian | 2009-07-08 | 1 | -0/+12 |
* | De-ASTContext-ify DeclContext. | Argyrios Kyrtzidis | 2009-06-30 | 1 | -4/+4 |
* | Use PushConditionalTempDestruction/PopConditionalTempDestruction for the tern... | Anders Carlsson | 2009-06-04 | 1 | -0/+4 |
* | PR4316: Fix IRGen for cast-to-union extension. | Eli Friedman | 2009-06-03 | 1 | -6/+6 |
* | Emit destructors correctly for temporaries. | Anders Carlsson | 2009-05-31 | 1 | -1/+1 |
* | Add lvalue irgen support for CXXBindTemporaryExpr. | Anders Carlsson | 2009-05-30 | 1 | -1/+0 |
* | More temporary support. | Anders Carlsson | 2009-05-30 | 1 | -4/+25 |
* | Remove VarDecl from CXXConstructExpr. | Anders Carlsson | 2009-05-30 | 1 | -11/+3 |
* | Fixup the rest of the trivial cases of the codegen of volatile. If | Mike Stump | 2009-05-29 | 1 | -1/+2 |
* | PR4281: Fix bogus CodeGen assertion. The issue is that | Eli Friedman | 2009-05-28 | 1 | -8/+5 |
* | No write-barrier for initializations. | Fariborz Jahanian | 2009-05-27 | 1 | -0/+2 |
* | IRgen support for calls to functions that return references to aggregate exre... | Anders Carlsson | 2009-05-27 | 1 | -0/+5 |
* | Fix typo. I also fixed the hard to read case differences, so that no | Mike Stump | 2009-05-27 | 1 | -3/+3 |