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
/
Sema
/
Sema.h
Commit message (
Expand
)
Author
Age
Files
Lines
*
Move promoteExprToType from being a static method in SemaExpr.cpp to being
Chris Lattner
2008-01-16
1
-0
/
+4
*
Add first pieces of support for parsing and representing
Chris Lattner
2008-01-12
1
-0
/
+3
*
- Teach Expr::isConstantExpr() about InitListExpr's (and offsetof, since I no...
Steve Naroff
2008-01-10
1
-7
/
+7
*
Substituted all instances of the string "Objc" for "ObjC". This fixes
Ted Kremenek
2008-01-07
1
-47
/
+47
*
Minor refactoring of foreach's semantics code per Chris's suggetion.
Fariborz Jahanian
2008-01-04
1
-1
/
+1
*
add comments for the various AssignConvertType's, and split int->pointer from...
Chris Lattner
2008-01-04
1
-3
/
+29
*
Merge all the 'assignment' diagnostic code into one routine, decloning
Chris Lattner
2008-01-04
1
-13
/
+21
*
Patch to add semantics check for ObjC2's foreacn statement.
Fariborz Jahanian
2008-01-04
1
-0
/
+4
*
generalize some of the conversion warnings.
Chris Lattner
2008-01-03
1
-0
/
+2
*
give better diagnostics for converting between function pointer and void*.
Chris Lattner
2008-01-03
1
-0
/
+1
*
Patch to parse/build AST ObjC2's foreach statement.
Fariborz Jahanian
2008-01-03
1
-0
/
+5
*
Don't attribute in file headers anymore. See llvmdev for the
Chris Lattner
2007-12-29
1
-2
/
+2
*
Change Sema::ActOnCallExpr to construct the CallExpr early and put it into
Chris Lattner
2007-12-28
1
-21
/
+11
*
implement semantic analysis for __builtin_islessequal and friends.
Chris Lattner
2007-12-20
1
-0
/
+2
*
refactor some code that handles sema of direct function calls.
Chris Lattner
2007-12-19
1
-4
/
+3
*
Fix an embarassing typo and add some very limited support for the aligned att...
Anders Carlsson
2007-12-19
1
-0
/
+2
*
implement correct semantic analysis for shifts. For:
Chris Lattner
2007-12-12
1
-1
/
+1
*
Add ObjC parser support for concatenated ObjC strings. Note that
Chris Lattner
2007-12-12
1
-2
/
+3
*
Add support for initializing char arrays from string literals.
Steve Naroff
2007-12-10
1
-1
/
+4
*
Patch to implement "Protocol" as a built-in type declared as
Fariborz Jahanian
2007-12-07
1
-4
/
+2
*
Simplified setting up Method's scope before generating AST for its nody.
Fariborz Jahanian
2007-12-04
1
-1
/
+1
*
Yesterday, I simplified how we stream top-level decls.
Steve Naroff
2007-11-29
1
-8
/
+1
*
Several fixes/simplifications surrounding how we stream top-level decl AST's.
Steve Naroff
2007-11-28
1
-6
/
+4
*
Add comment to CheckVectorCast.h
Anders Carlsson
2007-11-27
1
-0
/
+3
*
Report errors for invalid casts from/to vectors.
Anders Carlsson
2007-11-27
1
-0
/
+3
*
Moved logic for -Wfloat-equal to SemaChecking.cpp.
Ted Kremenek
2007-11-25
1
-0
/
+2
*
Keep track of whether the asm is volatile or not.
Anders Carlsson
2007-11-23
1
-0
/
+1
*
Store output and input operands as well as clobber information in the AsmStmt...
Anders Carlsson
2007-11-22
1
-0
/
+7
*
Store inline asm code in the AST.
Anders Carlsson
2007-11-20
1
-1
/
+2
*
Finish up variadic methods/messages.
Steve Naroff
2007-11-15
1
-4
/
+6
*
Implement support for variadic methods (work in progress).
Steve Naroff
2007-11-15
1
-1
/
+2
*
implement test/Sema/typedef-prototype.c, allowing code
Chris Lattner
2007-11-14
1
-1
/
+2
*
Rename Sema method to follow class naming convention
Nate Begeman
2007-11-13
1
-1
/
+1
*
'super' nailed.
Fariborz Jahanian
2007-11-12
1
-0
/
+1
*
- Minor cleanup to yesterday's changes to Sema::ObjcActOnStartOfMethodDef();
Steve Naroff
2007-11-12
1
-0
/
+4
*
Remove Action::ObjcActOnMethodDefinition(). Rationale:
Steve Naroff
2007-11-12
1
-2
/
+0
*
Remove Sema::ObjcBuildMethodParameter().
Steve Naroff
2007-11-12
1
-5
/
+3
*
Replace 2 method definition actions (ActOnFunctionDefBody, ActOnMethodDefBody...
Steve Naroff
2007-11-11
1
-2
/
+2
*
This is the last 5% of the solution to teaching Sema::ActOnInstanceMessage() ...
Steve Naroff
2007-11-11
1
-4
/
+3
*
Teach Sema::ActOnInstanceMessage() about private methods. That is, methods de...
Steve Naroff
2007-11-11
1
-1
/
+1
*
Minor code clean up in method def area.
Fariborz Jahanian
2007-11-10
1
-1
/
+1
*
Represent method definitions as separate AST nodes. Pretty print will come next.
Fariborz Jahanian
2007-11-10
1
-0
/
+1
*
Some code clean up in the form of name changes for functions which
Fariborz Jahanian
2007-11-09
1
-4
/
+5
*
Added class context to method declarations. Provide "interface *" type
Fariborz Jahanian
2007-11-09
1
-1
/
+2
*
First patch toward rewriting of method definitions. This is work in progress.
Fariborz Jahanian
2007-11-08
1
-0
/
+7
*
AST for objective-c's @throw statement and its pretty-printing.
Fariborz Jahanian
2007-11-07
1
-0
/
+3
*
Patch for objc2's property ASTs, as well as pretty-priting the ASTs.
Fariborz Jahanian
2007-11-06
1
-0
/
+6
*
Implement rewrite rules for ObjC string constants.
Steve Naroff
2007-11-03
1
-1
/
+2
*
AST for @try statement.
Fariborz Jahanian
2007-11-02
1
-0
/
+4
*
AST for @finally statement.
Fariborz Jahanian
2007-11-02
1
-0
/
+3
[next]