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
/
SemaDecl.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Fixed a bug which exposed the internally built type to user code.
Fariborz Jahanian
2007-11-10
1
-2
/
+7
*
Minor code clean up in method def area.
Fariborz Jahanian
2007-11-10
1
-3
/
+3
*
Represent method definitions as separate AST nodes. Pretty print will come next.
Fariborz Jahanian
2007-11-10
1
-0
/
+28
*
Some code clean up in the form of name changes for functions which
Fariborz Jahanian
2007-11-09
1
-24
/
+18
*
Added class context to method declarations. Provide "interface *" type
Fariborz Jahanian
2007-11-09
1
-6
/
+23
*
Insert invisble arguments to method definition header.
Fariborz Jahanian
2007-11-09
1
-1
/
+18
*
First patch toward rewriting of method definitions. This is work in progress.
Fariborz Jahanian
2007-11-08
1
-0
/
+117
*
Patch for objc2's property ASTs, as well as pretty-priting the ASTs.
Fariborz Jahanian
2007-11-06
1
-3
/
+53
*
improve decl merging logic to be more correct with
Chris Lattner
2007-11-06
1
-0
/
+5
*
Add better validation for array types when merging decls. Patch
Chris Lattner
2007-11-06
1
-1
/
+41
*
Remaining work to collect objective-c's type qualifiers and use them to encode
Fariborz Jahanian
2007-11-01
1
-0
/
+25
*
Propagate bitfield info.
Devang Patel
2007-11-01
1
-1
/
+1
*
1) More additions for objective-c's qualifier type.
Fariborz Jahanian
2007-10-31
1
-2
/
+6
*
Fixed problem with rewriting stand-alone @implementation (with no matching @i...
Fariborz Jahanian
2007-10-31
1
-4
/
+7
*
Implement a more sensible strategy for ObjC built-in types (addressing a long...
Steve Naroff
2007-10-31
1
-23
/
+9
*
After Anders check-in, we can now encode 'Class' type.
Fariborz Jahanian
2007-10-31
1
-2
/
+2
*
Added new type and bitfield fields in some decl types in preparation for obje...
Fariborz Jahanian
2007-10-31
1
-0
/
+4
*
minor tweaks
Chris Lattner
2007-10-30
1
-2
/
+2
*
Revisited my last patch to be able to do encoding of ivar types with 'id'.
Fariborz Jahanian
2007-10-30
1
-9
/
+18
*
Added type encoding for 'id' type.
Fariborz Jahanian
2007-10-30
1
-0
/
+8
*
- Add location info to category/protocol AST's
Steve Naroff
2007-10-30
1
-19
/
+24
*
Remove a couple FIXME's for rewriting ObjC interfaces (which are now being re...
Steve Naroff
2007-10-30
1
-1
/
+1
*
More support for rewriting ObjC intefaces. Still some edge cases to handle...
Steve Naroff
2007-10-30
1
-10
/
+17
*
This commit contains lot's of small tweaks to how we pass around and store So...
Steve Naroff
2007-10-29
1
-13
/
+15
*
Start rewriting ObjC interfaces. As a start, we comment out all the methods. ...
Steve Naroff
2007-10-26
1
-2
/
+3
*
This patch allows synthesis generation of ivar offset for legacy objective-c ...
Fariborz Jahanian
2007-10-26
1
-2
/
+9
*
Fix a crash on test/Sema/invalid-decl.c
Chris Lattner
2007-10-19
1
-1
/
+7
*
Add a FIXME to an assert.
Steve Naroff
2007-10-18
1
-1
/
+1
*
Patch to rewrite ivar tables metadata for classes defined.
Fariborz Jahanian
2007-10-18
1
-2
/
+3
*
Fix the following bug...
Steve Naroff
2007-10-18
1
-1
/
+1
*
Generate code for static variables that don't have initializers. Also, report...
Anders Carlsson
2007-10-17
1
-5
/
+16
*
Add a new Rewriter::getRangeSize method.
Chris Lattner
2007-10-16
1
-1
/
+1
*
Patch to diagnose duplicate method implementations.
Fariborz Jahanian
2007-10-16
1
-29
/
+27
*
Remove ObjcMethodDecl::getNumMethodParams/getMethodParamDecl, they aren't use...
Steve Naroff
2007-10-16
1
-2
/
+2
*
Bad cast...need to use dyn_cast_or_null. Also changed Sema::InitBuiltinVaList...
Steve Naroff
2007-10-16
1
-1
/
+1
*
Add code generation and sema checking for __builtin_va_arg.
Anders Carlsson
2007-10-15
1
-10
/
+16
*
Several name lookup conflict detection fixes involving objective-c names.
Fariborz Jahanian
2007-10-15
1
-2
/
+14
*
Add category lookup (removing a couple FIXME's).
Steve Naroff
2007-10-14
1
-2
/
+2
*
- Added Sema::AddFactoryMethodToGlobalPool and Sema::AddInstanceMethodToGloba...
Steve Naroff
2007-10-14
1
-6
/
+56
*
Generate code for va_start and va_end.
Anders Carlsson
2007-10-12
1
-1
/
+3
*
Patch to check for duplicate method decls in protocols.
Fariborz Jahanian
2007-10-12
1
-4
/
+5
*
Check and diagnose that objective-c objects may not be statically allocated.
Fariborz Jahanian
2007-10-12
1
-0
/
+13
*
Fixed typo in comment.
Fariborz Jahanian
2007-10-12
1
-1
/
+1
*
Fixed a @compatible_alias bug. In the process, discovered unnecessary 2ndry l...
Fariborz Jahanian
2007-10-12
1
-29
/
+34
*
Replace one FIXME with another. We handle protocols just fine now. The ObjC d...
Steve Naroff
2007-10-12
1
-3
/
+5
*
Fixed a bug whereby, struct tag name matches a typedef/objc-class name
Fariborz Jahanian
2007-10-12
1
-6
/
+11
*
This patch implementa objective-c's @compatibilty-alias declaration.
Fariborz Jahanian
2007-10-11
1
-0
/
+46
*
Add __builtin_va_start to the list of builtins, make __builtin_va_list availa...
Anders Carlsson
2007-10-11
1
-1
/
+10
*
Patch to create protocol conforming class types.
Fariborz Jahanian
2007-10-11
1
-8
/
+10
*
Fix 80 col violations.
Chris Lattner
2007-10-10
1
-1
/
+2
[prev]
[next]