summaryrefslogtreecommitdiffstats
path: root/lib/AST/StmtDumper.cpp
Commit message (Expand)AuthorAgeFilesLines
* Add info to ObjCPropertyRefExpr to indicate whether the dot syntax propertyArgyrios Kyrtzidis2012-03-301-0/+8
* Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie2012-03-111-2/+2
* Fix the dumping of BlockExprs.John McCall2012-03-101-1/+4
* Add clang support for new Objective-C literal syntax for NSDictionary, NSArray,Ted Kremenek2012-03-061-0/+29
* Generate an AST for the conversion from a lambda closure type to aDouglas Gregor2012-02-221-1/+2
* Print NamedDecls directly to a raw_ostream where possible.Benjamin Kramer2012-02-071-1/+1
* There's no good reason to track temporaries in ExprWithCleanups,John McCall2011-11-101-2/+4
* Change the AST representation of operations on Objective-CJohn McCall2011-11-061-0/+10
* In the AST dump, add a space between the type and value for CharacterLiteral.Richard Trieu2011-11-031-1/+1
* Change operator<< for raw_ostream and NamedDecl to take a reference instead o...Benjamin Kramer2011-10-141-6/+6
* Switch assert(0/false) llvm_unreachable.David Blaikie2011-09-231-2/+2
* Make StmtDumper::VisitCXXFunctionalCastExpr dump the attached cast kind. Fix...Eli Friedman2011-09-021-1/+2
* Add support for C++0x unicode string and character literals, from Craig Topper!Douglas Gregor2011-07-271-2/+7
* remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....Chris Lattner2011-07-231-4/+4
* Add an optional field attached to a DeclRefExpr which points back to theChandler Carruth2011-05-011-0/+5
* Support for C++11 (non-template) alias declarations.Richard Smith2011-04-151-0/+3
* Support for printing/dumping static assertsPeter Collingbourne2011-03-161-0/+6
* Add support for the OpenCL vec_step operator, by generalising andPeter Collingbourne2011-03-111-3/+13
* Update UsingDecl, UnresolvedUsingTypenameDecl, andDouglas Gregor2011-02-251-2/+2
* implement basic support for __label__. I wouldn't be shocked if there areChris Lattner2011-02-181-0/+2
* Change the representation of GNU ?: expressions to use a different expressionJohn McCall2011-02-171-7/+0
* Give some convenient idiomatic accessors to Stmt::child_range andJohn McCall2011-02-131-3/+3
* A few more tweaks to the blocks AST representation: John McCall2011-02-071-13/+39
* Complain on missing property getter method onlyFariborz Jahanian2010-12-221-3/+7
* It's kindof silly that ExtQuals has an ASTContext&, and we can use thatJohn McCall2010-12-101-4/+5
* Remove the TypesCompatibleExprClass AST node. Merge its functionality into Bi...Francois Pichet2010-12-081-9/+0
* Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoreticalJohn McCall2010-12-061-2/+2
* Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPrope...John McCall2010-12-021-22/+12
* Calculate the value kind of an expression when it's created andJohn McCall2010-11-181-15/+17
* Make sure to always check the result ofDouglas Gregor2010-11-121-5/+5
* Eliminate usage of ObjCSuperExpr used forFariborz Jahanian2010-10-141-8/+7
* AST work to support [C++] [IRgen] for ?: with missing LHSFariborz Jahanian2010-08-311-0/+7
* De-memberify the VarDecl and FunctionDecl StorageClass enums.John McCall2010-08-261-1/+1
* More incremental progress towards not including Expr.h in Sema.h.John McCall2010-08-251-4/+4
* Convert all uses of StringLiteral::getStrData() to StringLiteral::getString()Benjamin Kramer2010-08-171-2/+1
* Revert the dump functions to send output to llvm::errs(), matching the LLVM c...Argyrios Kyrtzidis2010-08-091-8/+12
* Note that a CXXConstructExpr is zeroing when dumping it.John McCall2010-08-071-0/+2
* Store inheritance paths after CastExprs instead of inside them.John McCall2010-08-071-3/+3
* Send AST dumping/printing to stdout instead of stderr.Argyrios Kyrtzidis2010-08-031-8/+8
* Update ImplicitCastExpr to be able to represent an XValue.Sebastian Redl2010-07-201-1/+9
* make -ast-dump print something like this for declstmts:Chris Lattner2010-05-251-1/+1
* Let StmtDumper.cpp handle using declarations.Sebastian Redl2010-05-041-0/+7
* Make the static type of the exception variable in an Objective-CDouglas Gregor2010-04-261-1/+1
* Actually produce base paths for CastExprs of kind CK_DerivedToBase.Anders Carlsson2010-04-241-2/+30
* Improve the AST representation of Objective-C @try/@catch/@finallyDouglas Gregor2010-04-231-0/+11
* Overhaul the AST representation of Objective-C message sendDouglas Gregor2010-04-211-2/+17
* Add raw_ostream operators to NamedDecl for convenience. Switch over all users...Benjamin Kramer2010-04-171-9/+7
* Dump the constructor type for a CXXConstructExpr.John McCall2010-02-021-0/+2
* StmtDumper::VisitUnresolvedLookupExprJohn McCall2009-12-111-0/+14
* Convert StmtDumper to raw_ostream. I forget why.Daniel Dunbar2009-12-031-129/+121