aboutsummaryrefslogtreecommitdiff
path: root/lib/Frontend/PCHReaderStmt.cpp
AgeCommit message (Expand)Author
2010-07-07Rename CXXZeroInitValueExpr to CXXScalarValueInitExpr, to reflect itsDouglas Gregor
2010-07-02Read/write CastExpr's CXXBaseSpecifierArray for PCH.Argyrios Kyrtzidis
2010-07-02Fix broken PCH support for CXXDefaultArgExpr.Argyrios Kyrtzidis
2010-06-30Support ParenListExpr for PCH.Argyrios Kyrtzidis
2010-06-29When we know that we are at sub-statement reading (which is all of PCHStmtRea...Argyrios Kyrtzidis
2010-06-28Modify the way sub-statements are stored and retrieved from PCH.Argyrios Kyrtzidis
2010-06-28Support CXXPseudoDestructorExpr for PCH.Argyrios Kyrtzidis
2010-06-28Support DependentScopeDeclRefExpr for PCH.Argyrios Kyrtzidis
2010-06-28Refactor PCH reading/writing of template arguments passed to expressions.Argyrios Kyrtzidis
2010-06-28Fix PCH emitting/reading for template arguments that contain expressions.Argyrios Kyrtzidis
2010-06-25Support UnresolvedLookupExpr for PCH.Argyrios Kyrtzidis
2010-06-25Support UnresolvedMemberExpr for PCH.Argyrios Kyrtzidis
2010-06-24Support a couple more C++ Exprs for PCH.Argyrios Kyrtzidis
2010-06-24Fix broken de/serialization for a couple of C++ Exprs.Argyrios Kyrtzidis
2010-06-22Read/write CXXDeleteExpr from/to PCH.Argyrios Kyrtzidis
2010-06-21Alter the internal representation of the condition variable inDouglas Gregor
2010-06-04Added a field to BlockDeclRefExpr for future use.Fariborz Jahanian
2010-05-15Implement semantic analysis and an AST representation for the namedDouglas Gregor
2010-05-15Recognize when the named return value optimization applies in aDouglas Gregor
2010-05-10Convert CXXTempory[] in CXXExprWithTemporaries to be allocated using ASTConte...Ted Kremenek
2010-05-10pch'ify CXXNewExpr and CXXZeroInitValueExprChris Lattner
2010-05-10pchify CXXTemporary, CXXBindTemporaryExpr, and Chris Lattner
2010-05-09pch'ify default argument definitions and uses.Chris Lattner
2010-05-09pch'ify 'this' and 'throw'Chris Lattner
2010-05-09pch'ify typeid.Chris Lattner
2010-05-09pchify CXXMemberCallExpr correctly. Before it would serializeChris Lattner
2010-04-29Teach __builtin_offsetof to compute the offsets of members of baseDouglas Gregor
2010-04-28Completely reimplement __builtin_offsetof, based on a patch by RobertoDouglas Gregor
2010-04-26Make the static type of the exception variable in an Objective-CDouglas Gregor
2010-04-23Improve the AST representation of Objective-C @try/@catch/@finallyDouglas Gregor
2010-04-21Overhaul the AST representation of Objective-C message sendDouglas Gregor
2010-04-20Keep proper source location information for the type in an Objective-CDouglas Gregor
2010-04-13Use ASTVector instead of std::vector for the Exprs in InitListExpr. PerformanceTed Kremenek
2010-03-08Extend ObjCMessageExpr for class method sends with the source locationDouglas Gregor
2010-02-19Revert: "Change InitListExpr to allocate the array for holding references"Ted Kremenek
2010-02-19Change InitListExpr to allocate the array for holding referencesTed Kremenek
2010-02-07Roll r95513 back in.Sam Weinig
2010-02-07Roll out r95513, it seems to have broken self hosting.Sam Weinig
2010-02-07Add PCH support for CXXBoolLiteralExpr and CXXNullPtrLiteralExpr.Sam Weinig
2010-01-30Use IdentifierInfo * instead of std::string for the AsmStmt names.Anders Carlsson
2010-01-30Even more AsmStmt cleanup.Anders Carlsson
2010-01-30Combine AsmStmt::setOutputsAndInputs and AsmStmt::setClobbers.Anders Carlsson
2010-01-18Preserve type source information in compound literal expressions.John McCall
2010-01-16Add PCH support for CXXStaticCastExpr, CXXDynamicCastExpr, CXXReinterpretCast...Sam Weinig
2010-01-15Preserve type source information in explicit cast expressions.John McCall
2010-01-06Move the allocation of designators in DesignatedInitExpr to theDouglas Gregor
2010-01-04Remember if the AsmStmt came from Microsoft-style inline assembly code.Mike Stump
2009-12-16When value-initializing a class with no user-defined constructors butDouglas Gregor
2009-12-16Switch the C++ new expression over to InitializationSequence, ratherDouglas Gregor
2009-12-08DeclRefExpr stores a ValueDecl internally.John McCall