aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX
AgeCommit message (Expand)Author
2009-10-21Code gen for '.*' binary expressions - WIP.Fariborz Jahanian
2009-10-21Expand on code gen. for pointer to data members so it worksFariborz Jahanian
2009-10-21Code gen for pointer-to-datamember - WIP.Fariborz Jahanian
2009-10-21Change FixOverloadedFunctionReference to return a (possibly new) expression. ...Anders Carlsson
2009-10-20Code-gen for CXXZeroInitValueExpr AST passedFariborz Jahanian
2009-10-20Fix the 32-bit ABI to return structures with non-trivial copy ctors or dtors ...Anders Carlsson
2009-10-20Force triple for test.Anders Carlsson
2009-10-19Copy conversion of an expression to its base classFariborz Jahanian
2009-10-19Handle emitting the assignment operator when the lhs is a reference. Fixes PR...Anders Carlsson
2009-10-19Set the cast kind to CK_NoOp for C-style casts that are really const casts. F...Anders Carlsson
2009-10-18When binding a reference to a temporary, it's important that other temporarie...Anders Carlsson
2009-10-18When building a cast argument, make sure to bind the result to a temporary.Anders Carlsson
2009-10-18Convert temporaries.cpp to using FileCheck.Anders Carlsson
2009-10-18Rename temp-1.cpp to temporaries.cpp.Anders Carlsson
2009-10-18Use CK_BitCast for member function pointer casts. Fixes PR5138.Anders Carlsson
2009-10-18add support for codegening CXXZeroInitValueExprsNuno Lopes
2009-10-17When resolving the address of an overloaded function or function template, ma...Sebastian Redl
2009-10-17Don't add implicit casts of explicit address-taking of overloaded functions.Sebastian Redl
2009-10-17Fix PR5211: codegen shouldn't assume that the result of ||/&& is int Chris Lattner
2009-10-16Implement derived-to-base AST/code gen. There is aFariborz Jahanian
2009-10-16Builtin types are subsitutable if they are qualified. Fixes PR5196.Anders Carlsson
2009-10-15HandleAnders Carlsson
2009-10-14Testcase for recent checkin. WIP.Mike Stump
2009-10-13Don't assume that the LHS and RHS of a member pointer expression is a DeclRef...Anders Carlsson
2009-10-13Refine handling for return value conversions with respect to virtualMike Stump
2009-10-12Fix test.Anders Carlsson
2009-10-12Even more devirtualization cleverness.Anders Carlsson
2009-10-12More devirtualization improvements.Anders Carlsson
2009-10-12Devirtualize calls on temporaries. A().f() for example.Anders Carlsson
2009-10-12Factor out devirtualization checking into a separate function and make it han...Anders Carlsson
2009-10-11If the base type of a member call is a record type we don't need to emit a vi...Anders Carlsson
2009-10-08Speed up testing by avoiding stdio.h, also helps testing on windows.Mike Stump
2009-10-08If a global initializer has a non-trivial constructor or destructor, we never...Anders Carlsson
2009-10-08Port test over to FileCheck.Anders Carlsson
2009-10-08Mangle std::basic_ostream<char, std::char_traits<char>> as So.Anders Carlsson
2009-10-07Mangle anonymous structs/unions correctly. Fixes PR5139.Anders Carlsson
2009-10-06Uncomment some commented out code.Anders Carlsson
2009-10-06Change GetAddressCXXOfBaseClass to use CXXBasePaths for calculating base clas...Anders Carlsson
2009-10-06When mangling names, always use the canonical decl. Fixes PR5144.Anders Carlsson
2009-10-06Fix test.Anders Carlsson
2009-10-06Emit the destructor epilogue in a cleanup block so a return from a destructor...Anders Carlsson
2009-10-06Pass the right type to GetAddrOfFunction when getting functions for the VTabl...Anders Carlsson
2009-10-06Refixed pr5086 by letting Expr::isNullPointerConstantFariborz Jahanian
2009-10-05Ensure we have atleast 2-byte alignment for member functions.Mike Stump
2009-10-05Testcase for recent checkin.Mike Stump
2009-10-03Implement code generation of member function pointer calls. Fixes PR5121.Anders Carlsson
2009-10-03Ignore No-op casts when evaluating lvalue expressions. Fixes PR5122.Anders Carlsson
2009-10-03Teach AggExprEmitter about pointers to member functions.Anders Carlsson
2009-10-03Handle base-to-derived casts of member function pointers in CGExprConstant.cppAnders Carlsson
2009-10-03Handle members to function pointers in CGExprConstant.Anders Carlsson