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
/
Parse
/
ParseExpr.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Cope with use of the token '>>' inside a template argument list, e.g.,
Douglas Gregor
2009-02-25
1
-9
/
+25
*
rip out __builtin_overload
Chris Lattner
2009-02-18
1
-34
/
+0
*
Update Parser::ParseTypeName to return a TypeResult, which also tells
Douglas Gregor
2009-02-18
1
-14
/
+30
*
Allow "overloadable" functions in C to be declared as variadic without
Douglas Gregor
2009-02-18
1
-1
/
+2
*
Implement Sebastian's idea for simplifying our handling of the greater-than o...
Douglas Gregor
2009-02-09
1
-1
/
+1
*
Start processing template-ids as types when the template-name refers
Douglas Gregor
2009-02-09
1
-6
/
+15
*
Implement Declarator::getSourceRange().
Sebastian Redl
2009-02-09
1
-3
/
+12
*
Implement dereferencing of pointers-to-member.
Sebastian Redl
2009-02-07
1
-15
/
+24
*
Put the invalid flag of OwningResult into the Action pointer.
Sebastian Redl
2009-02-05
1
-19
/
+16
*
Add support for blocks with explicit return types.
Mike Stump
2009-02-04
1
-6
/
+28
*
Allow taking the address of data members, resulting in a member pointer.
Sebastian Redl
2009-02-03
1
-7
/
+18
*
Formatting fix.
Mike Stump
2009-02-02
1
-2
/
+1
*
Fix for PR3418: make sure to handle the RHS of expressions starting with
Eli Friedman
2009-01-27
1
-0
/
+19
*
Optimize Declarator to avoid malloc/free traffic for the argument list of a
Chris Lattner
2009-01-20
1
-1
/
+2
*
Convert more expression actions to smart pointers.
Sebastian Redl
2009-01-19
1
-9
/
+9
*
Convert more expression actions to smart pointers.
Sebastian Redl
2009-01-19
1
-13
/
+11
*
Convert a few expression actions to smart pointers.
Sebastian Redl
2009-01-18
1
-2
/
+2
*
Patch to keep clang honest that it does not yet support
Fariborz Jahanian
2009-01-14
1
-0
/
+5
*
rename tok::annot_qualtypename -> tok::annot_typename, which is both
Chris Lattner
2009-01-06
1
-2
/
+2
*
PODness and Type Traits
Sebastian Redl
2009-01-05
1
-0
/
+29
*
remove optimization to avoid looking ahead for cases like ::foo. This
Chris Lattner
2009-01-05
1
-14
/
+10
*
TryAnnotateTypeOrScopeToken and TryAnnotateCXXScopeToken can
Chris Lattner
2009-01-05
1
-1
/
+2
*
code simplification
Chris Lattner
2009-01-04
1
-5
/
+2
*
my previous patch caused sema to drop the global qualifier, make
Chris Lattner
2009-01-04
1
-17
/
+18
*
sink the call to TryAnnotateTypeOrScopeToken in
Chris Lattner
2009-01-04
1
-15
/
+24
*
simplify control flow by removing a goto.
Chris Lattner
2009-01-04
1
-7
/
+8
*
eliminate lookahead when parsing ::new / ::delete.
Chris Lattner
2009-01-04
1
-9
/
+13
*
Don't explicitly represent OverloadedFunctionDecls within
Douglas Gregor
2008-12-23
1
-4
/
+5
*
Convert remaining expression parsers to smart pointers. Now on to the Action ...
Sebastian Redl
2008-12-13
1
-19
/
+19
*
fix a buggy fall through that caused a crash-on-invalid. rdar://6248081
Chris Lattner
2008-12-12
1
-5
/
+5
*
minor refactoring of ParseParenExpression
Chris Lattner
2008-12-12
1
-13
/
+16
*
Convert a big bunch of expression parsers to use smart pointers.
Sebastian Redl
2008-12-11
1
-11
/
+11
*
Convert some more expression parsers to use smart pointers.
Sebastian Redl
2008-12-11
1
-78
/
+77
*
Convert selected expression parsers to use smart pointers.
Sebastian Redl
2008-12-11
1
-84
/
+83
*
Convert a number of statement parsers to smart pointers.
Sebastian Redl
2008-12-11
1
-2
/
+2
*
Use a scoped object to manage entry/exit from a parser scope rather than expl...
Douglas Gregor
2008-12-10
1
-4
/
+2
*
Modify the move emulation according to the excellent design of Howard Hinnant...
Sebastian Redl
2008-12-10
1
-72
/
+74
*
Kick out the proof-of-concept ASTOwner and replace it with ASTOwningResult
Sebastian Redl
2008-12-09
1
-28
/
+28
*
Consistently use smart pointers for stmt and expr nodes in parser local varia...
Sebastian Redl
2008-12-09
1
-162
/
+142
*
Add support for calls to dependent names within templates, e.g.,
Douglas Gregor
2008-12-06
1
-1
/
+2
*
Add better comments to ::new parsing. Thanks to Doug for the review.
Sebastian Redl
2008-12-02
1
-0
/
+2
*
Make the parser handle ::new and ::delete correctly.
Sebastian Redl
2008-12-02
1
-1
/
+6
*
Implement the GNU __null extension
Douglas Gregor
2008-11-29
1
-0
/
+4
*
Add some comments.
Argyrios Kyrtzidis
2008-11-26
1
-1
/
+5
*
Use RAII objects to ensure proper destruction of expression and statement AST...
Sebastian Redl
2008-11-25
1
-31
/
+49
*
make the 'to match this' diagnostic a note.
Chris Lattner
2008-11-23
1
-1
/
+1
*
Convert IdentifierInfo's to be printed the same as DeclarationNames
Chris Lattner
2008-11-23
1
-1
/
+1
*
Implementation of new and delete parsing and sema.
Sebastian Redl
2008-11-21
1
-0
/
+19
*
Support overloading of the subscript operator[], including support for
Douglas Gregor
2008-11-19
1
-1
/
+2
*
Fix <rdar://problem/6150376> [sema] crash on invalid message send.
Steve Naroff
2008-11-19
1
-1
/
+2
[prev]
[next]