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
/
Parse
/
ParseObjc.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Make a major restructuring of the clang tree: introduce a top-level
Chris Lattner
2008-03-15
1
-1578
/
+0
*
improve DeclStmt to be able to store SourceRange info correctly.
Chris Lattner
2008-03-13
1
-3
/
+5
*
implement simple support for arbitrary token lookahead. Change the
Chris Lattner
2008-03-10
1
-19
/
+13
*
Fix http://llvm.org/bugs/show_bug.cgi?id=2106.
Steve Naroff
2008-02-29
1
-1
/
+1
*
ParseCompoundStatementBody expects to only be called with { as the current
Chris Lattner
2008-02-14
1
-2
/
+12
*
Add a FIXME to clarify previous commit/experiment.
Steve Naroff
2008-02-05
1
-0
/
+6
*
Fix Parser::ParseObjCTryStmt() to allow for trailing @-keyword statements/exp...
Steve Naroff
2008-02-05
1
-8
/
+36
*
On an unexpected @foo keyword, return failure instead of a 'successful' null ...
Chris Lattner
2008-01-30
1
-3
/
+1
*
Fixed misc. issues raised by Chris L. on @synchronized implementation.
Fariborz Jahanian
2008-01-30
1
-4
/
+7
*
AST for @synchronized.
Fariborz Jahanian
2008-01-29
1
-1
/
+21
*
Bunch of type defs, etc. for @synchronized.
Fariborz Jahanian
2008-01-29
1
-0
/
+7
*
Add support for dispatching an objc message to a variable
Chris Lattner
2008-01-25
1
-1
/
+1
*
Factor a complex predicate out to a helper method.
Chris Lattner
2008-01-25
1
-3
/
+1
*
split the second half of ParseObjCMessageExpression into a new
Chris Lattner
2008-01-25
1
-23
/
+31
*
Warn (as gcc does) when @end does not close anything.
Fariborz Jahanian
2008-01-10
1
-6
/
+3
*
Substituted all instances of the string "Objc" for "ObjC". This fixes
Ted Kremenek
2008-01-07
1
-50
/
+50
*
Minor changes as suggested by Chris L.
Fariborz Jahanian
2008-01-04
1
-6
/
+3
*
Patch to parse/build AST ObjC2's foreach statement.
Fariborz Jahanian
2008-01-03
1
-1
/
+4
*
New declarations/defs for Objc2's foreach-statement. This is work in progress.
Fariborz Jahanian
2008-01-02
1
-0
/
+10
*
Prevent crash on incorrect objc messaging expression.
Fariborz Jahanian
2008-01-02
1
-2
/
+2
*
Don't attribute in file headers anymore. See llvmdev for the
Chris Lattner
2007-12-29
1
-2
/
+2
*
- Use Tok.isObjCAtKeyword instead of Tok.getIdentifierInfo()->getObjCKeyword...
Chris Lattner
2007-12-27
1
-20
/
+20
*
use new interface.
Chris Lattner
2007-12-13
1
-1
/
+1
*
Concatenation of objc strings.
Fariborz Jahanian
2007-12-12
1
-1
/
+1
*
move function to a more logical location, add its grammar productions.
Chris Lattner
2007-12-12
1
-3
/
+38
*
Add ObjC parser support for concatenated ObjC strings. Note that
Chris Lattner
2007-12-12
1
-7
/
+35
*
Fixed a parsing bug whereby @optional/@required keyword is not followed by
Fariborz Jahanian
2007-12-11
1
-0
/
+3
*
Make sure Parser::ParseObjCSelectorExpression() handles unary selectors (with...
Steve Naroff
2007-12-05
1
-4
/
+5
*
Finish up variadic methods/messages.
Steve Naroff
2007-11-15
1
-5
/
+11
*
Implement support for variadic methods (work in progress).
Steve Naroff
2007-11-15
1
-2
/
+6
*
Handle "bool" in all places that touch _Bool.
Chris Lattner
2007-11-15
1
-0
/
+1
*
Rewrite method definition bodies. Also renamed a method to distinguish betwee...
Steve Naroff
2007-11-13
1
-2
/
+3
*
'super' nailed.
Fariborz Jahanian
2007-11-12
1
-2
/
+4
*
Add an error diagnostic to Parse::ParseObjCMessageExpression().
Steve Naroff
2007-11-12
1
-0
/
+1
*
Replace 2 method definition actions (ActOnFunctionDefBody, ActOnMethodDefBody...
Steve Naroff
2007-11-11
1
-1
/
+1
*
Replace 3 method definition functions (ObjcParseMethodDefinition, ParseObjCIn...
Steve Naroff
2007-11-11
1
-20
/
+30
*
This is the last 5% of the solution to teaching Sema::ActOnInstanceMessage() ...
Steve Naroff
2007-11-11
1
-16
/
+3
*
pretty priting for method definitions.
Fariborz Jahanian
2007-11-10
1
-5
/
+6
*
Represent method definitions as separate AST nodes. Pretty print will come next.
Fariborz Jahanian
2007-11-10
1
-6
/
+6
*
Some code clean up in the form of name changes for functions which
Fariborz Jahanian
2007-11-09
1
-2
/
+2
*
Added class context to method declarations. Provide "interface *" type
Fariborz Jahanian
2007-11-09
1
-4
/
+5
*
First patch toward rewriting of method definitions. This is work in progress.
Fariborz Jahanian
2007-11-08
1
-11
/
+10
*
AST for objective-c's @throw statement and its pretty-printing.
Fariborz Jahanian
2007-11-07
1
-4
/
+6
*
Patch for objc2's property ASTs, as well as pretty-priting the ASTs.
Fariborz Jahanian
2007-11-06
1
-6
/
+34
*
Implement rewrite rules for ObjC string constants.
Steve Naroff
2007-11-03
1
-3
/
+3
*
pretty-print @try/@catch/@finally from AST as the validation of AST.
Fariborz Jahanian
2007-11-02
1
-2
/
+3
*
AST for @try statement.
Fariborz Jahanian
2007-11-02
1
-2
/
+7
*
AST for @finally statement.
Fariborz Jahanian
2007-11-02
1
-3
/
+9
*
AST build for @catch clause (this is work in progress).
Fariborz Jahanian
2007-11-01
1
-8
/
+19
*
Bunch of class declarations for objective-c's @try-catch statement.
Fariborz Jahanian
2007-11-01
1
-5
/
+5
[next]