index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
AST
/
StmtDumper.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add an optional field attached to a DeclRefExpr which points back to the
Chandler Carruth
2011-05-01
1
-0
/
+5
*
Support for C++11 (non-template) alias declarations.
Richard Smith
2011-04-15
1
-0
/
+3
*
Support for printing/dumping static asserts
Peter Collingbourne
2011-03-16
1
-0
/
+6
*
Add support for the OpenCL vec_step operator, by generalising and
Peter Collingbourne
2011-03-11
1
-3
/
+13
*
Update UsingDecl, UnresolvedUsingTypenameDecl, and
Douglas Gregor
2011-02-25
1
-2
/
+2
*
implement basic support for __label__. I wouldn't be shocked if there are
Chris Lattner
2011-02-18
1
-0
/
+2
*
Change the representation of GNU ?: expressions to use a different expression
John McCall
2011-02-17
1
-7
/
+0
*
Give some convenient idiomatic accessors to Stmt::child_range and
John McCall
2011-02-13
1
-3
/
+3
*
A few more tweaks to the blocks AST representation:
John McCall
2011-02-07
1
-13
/
+39
*
Complain on missing property getter method only
Fariborz Jahanian
2010-12-22
1
-3
/
+7
*
It's kindof silly that ExtQuals has an ASTContext&, and we can use that
John McCall
2010-12-10
1
-4
/
+5
*
Remove the TypesCompatibleExprClass AST node. Merge its functionality into Bi...
Francois Pichet
2010-12-08
1
-9
/
+0
*
Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical
John McCall
2010-12-06
1
-2
/
+2
*
Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPrope...
John McCall
2010-12-02
1
-22
/
+12
*
Calculate the value kind of an expression when it's created and
John McCall
2010-11-18
1
-15
/
+17
*
Make sure to always check the result of
Douglas Gregor
2010-11-12
1
-5
/
+5
*
Eliminate usage of ObjCSuperExpr used for
Fariborz Jahanian
2010-10-14
1
-8
/
+7
*
AST work to support [C++] [IRgen] for ?: with missing LHS
Fariborz Jahanian
2010-08-31
1
-0
/
+7
*
De-memberify the VarDecl and FunctionDecl StorageClass enums.
John McCall
2010-08-26
1
-1
/
+1
*
More incremental progress towards not including Expr.h in Sema.h.
John McCall
2010-08-25
1
-4
/
+4
*
Convert all uses of StringLiteral::getStrData() to StringLiteral::getString()
Benjamin Kramer
2010-08-17
1
-2
/
+1
*
Revert the dump functions to send output to llvm::errs(), matching the LLVM c...
Argyrios Kyrtzidis
2010-08-09
1
-8
/
+12
*
Note that a CXXConstructExpr is zeroing when dumping it.
John McCall
2010-08-07
1
-0
/
+2
*
Store inheritance paths after CastExprs instead of inside them.
John McCall
2010-08-07
1
-3
/
+3
*
Send AST dumping/printing to stdout instead of stderr.
Argyrios Kyrtzidis
2010-08-03
1
-8
/
+8
*
Update ImplicitCastExpr to be able to represent an XValue.
Sebastian Redl
2010-07-20
1
-1
/
+9
*
make -ast-dump print something like this for declstmts:
Chris Lattner
2010-05-25
1
-1
/
+1
*
Let StmtDumper.cpp handle using declarations.
Sebastian Redl
2010-05-04
1
-0
/
+7
*
Make the static type of the exception variable in an Objective-C
Douglas Gregor
2010-04-26
1
-1
/
+1
*
Actually produce base paths for CastExprs of kind CK_DerivedToBase.
Anders Carlsson
2010-04-24
1
-2
/
+30
*
Improve the AST representation of Objective-C @try/@catch/@finally
Douglas Gregor
2010-04-23
1
-0
/
+11
*
Overhaul the AST representation of Objective-C message send
Douglas Gregor
2010-04-21
1
-2
/
+17
*
Add raw_ostream operators to NamedDecl for convenience. Switch over all users...
Benjamin Kramer
2010-04-17
1
-9
/
+7
*
Dump the constructor type for a CXXConstructExpr.
John McCall
2010-02-02
1
-0
/
+2
*
StmtDumper::VisitUnresolvedLookupExpr
John McCall
2009-12-11
1
-0
/
+14
*
Convert StmtDumper to raw_ostream. I forget why.
Daniel Dunbar
2009-12-03
1
-129
/
+121
*
Remove VISIBILITY_HIDDEN from lib/AST.
Benjamin Kramer
2009-11-28
1
-2
/
+1
*
When dumping implicit cast exprs, print out whether the cast is an lvalue cas...
Anders Carlsson
2009-11-14
1
-0
/
+7
*
Move clients to use IdentifierInfo::getNameStart() instead of getName()
Daniel Dunbar
2009-10-18
1
-4
/
+4
*
Refactor the representation of qualifiers to bring ExtQualType out of the
John McCall
2009-09-24
1
-6
/
+3
*
Remove tabs, and whitespace cleanups.
Mike Stump
2009-09-09
1
-33
/
+33
*
Add CastExpr::getCastKindName and use it in the StmtDumper.
Anders Carlsson
2009-09-03
1
-41
/
+4
*
Add a CK_FunctionToPointerDecay cast kind.
Anders Carlsson
2009-09-01
1
-0
/
+3
*
path to ir-gen 12.3.1 Conversion by constructor
Fariborz Jahanian
2009-08-28
1
-0
/
+3
*
More work for conversion functions.
Mike Stump
2009-08-26
1
-0
/
+3
*
Add CK_NullToMemberPointer and CK_BaseToDerivedMemberPointer cast kinds. Make...
Anders Carlsson
2009-08-22
1
-11
/
+46
*
Using "ObjCImplicitSetterGetterRefExpr" instead of "ObjCImplctSetterGetterRef...
Fariborz Jahanian
2009-08-20
1
-4
/
+4
*
Renamed ObjCKVCRefExpr to ObjCImplctSetterGetterRefExpr.
Fariborz Jahanian
2009-08-18
1
-2
/
+4
*
Fix spacing
Anders Carlsson
2009-08-14
1
-1
/
+1
*
Add some information about temporaries to the statement dumper.
Anders Carlsson
2009-08-12
1
-0
/
+31
[next]