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
/
DeclObjC.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Implement the virtual getNextRedeclaration() for ObjCMethodDecl.
Argyrios Kyrtzidis
2009-07-21
1
-0
/
+24
*
Remove the ObjCCategoryImpls vector from Sema class.
Argyrios Kyrtzidis
2009-07-21
1
-0
/
+19
*
- Introduce ASTContext::getObjCImplementation() and ASTContext::setObjCImplem...
Argyrios Kyrtzidis
2009-07-21
1
-0
/
+36
*
This patch includes a conceptually simple, but very intrusive/pervasive change.
Steve Naroff
2009-07-10
1
-1
/
+1
*
De-ASTContext-ify DeclContext.
Argyrios Kyrtzidis
2009-06-30
1
-61
/
+42
*
Adds synthesize ivars to DeclContext.
Fariborz Jahanian
2009-06-06
1
-10
/
+0
*
Use of DeclContext for objc's ivars. No functionality
Fariborz Jahanian
2009-06-05
1
-6
/
+16
*
(Next runtime only) check to see if class implements forwardInvocation method
Fariborz Jahanian
2009-05-22
1
-0
/
+14
*
The ivars in an ObjCImplementationDecl are now stored in the
Douglas Gregor
2009-04-23
1
-6
/
+0
*
PCH (de-)serialization for ObjCImplDecl. This can't be tested yet.
Douglas Gregor
2009-04-23
1
-0
/
+1
*
Eliminate the three SmallVectors in ObjCImplDecl (for instance
Douglas Gregor
2009-04-23
1
-15
/
+48
*
Remove lookupFieldDeclFromIvar from ObjCIvarDecl interface.
Daniel Dunbar
2009-04-22
1
-15
/
+0
*
Revert r69771, I missed some (obvious) details. :/
Daniel Dunbar
2009-04-22
1
-23
/
+5
*
Mark another TypeForDecl const and make getObjCInterfaceType's argument const.
Daniel Dunbar
2009-04-22
1
-1
/
+1
*
Rework the shadow struct that is layed out for Objective-C classes.
Daniel Dunbar
2009-04-22
1
-5
/
+23
*
Make sure to mark the interface as completed when we see an
Daniel Dunbar
2009-04-21
1
-0
/
+1
*
Add pch reader/writer support for ObjCMethodDecl.
Steve Naroff
2009-04-20
1
-5
/
+5
*
Remove non-const form of lookupFieldDeclForIvar.
Daniel Dunbar
2009-04-20
1
-3
/
+4
*
Propagate the ASTContext to various AST traversal and lookup functions.
Douglas Gregor
2009-04-09
1
-31
/
+44
*
Fix up lookup rules for properties declared in
Fariborz Jahanian
2009-04-02
1
-26
/
+0
*
Fix a bug in declaration of property in continuation
Fariborz Jahanian
2009-04-01
1
-0
/
+10
*
Nonfragile ivar synthesis with property is in a continuation
Fariborz Jahanian
2009-04-01
1
-0
/
+16
*
simplify some casting
Chris Lattner
2009-03-31
1
-7
/
+4
*
fe support for objc2's nonfragile-abi synthesized ivars.
Fariborz Jahanian
2009-03-31
1
-0
/
+10
*
Fix <rdar://problem/6619539> incompatible pointer types sending 'XCElementSpa...
Steve Naroff
2009-03-01
1
-0
/
+13
*
"This patch addresses two FIXME on ObjCCategoryImplDecl:
Chris Lattner
2009-02-28
1
-56
/
+6
*
Fix ObjCInterfaceDecl::lookupInstanceMethod()/lookupClassMethod() to search i...
Steve Naroff
2009-02-26
1
-3
/
+11
*
Contains the following (related to problems found while investigting <rdar://...
Steve Naroff
2009-02-22
1
-9
/
+31
*
allocate and dellocate objc decl list through AST Context instead of
Chris Lattner
2009-02-20
1
-2
/
+3
*
add plumbing to get ASTContext& down to allocation/deallocation points in Obj...
Chris Lattner
2009-02-20
1
-19
/
+29
*
newly factored, we can now move the set and destroy methods out of line.
Chris Lattner
2009-02-20
1
-0
/
+20
*
rename ObjCList::clear() -> ObjCList::Destroy(). Require that destroy is called
Chris Lattner
2009-02-20
1
-6
/
+6
*
rearrange the contents of DeclObjC to be by-class. Fix some 80 column issues
Chris Lattner
2009-02-20
1
-328
/
+367
*
destroy should forward to base class.
Chris Lattner
2009-02-20
1
-0
/
+1
*
move the @implementation ivar list to being an ObjCList, which prevents
Chris Lattner
2009-02-20
1
-12
/
+6
*
remove some slow O(n) methods.
Chris Lattner
2009-02-20
1
-19
/
+0
*
Change ObjCForwardProtocolDecl to use an ObjCList.
Chris Lattner
2009-02-20
1
-11
/
+6
*
move the interace list of @class to use ObjCList.
Chris Lattner
2009-02-20
1
-16
/
+3
*
remove a dead list.
Chris Lattner
2009-02-20
1
-2
/
+1
*
switch ObjCMethodDecl's parameter list from being explicitly managed to an Ob...
Chris Lattner
2009-02-20
1
-14
/
+1
*
switch the interface ivar list from being explicitly managed to using ObjCList.
Chris Lattner
2009-02-20
1
-17
/
+2
*
move more objc destruction out of dtors into Destroy.
Chris Lattner
2009-02-20
1
-11
/
+42
*
move some objc decl destruction out of dtors into Destroy method.
Chris Lattner
2009-02-20
1
-6
/
+9
*
All Decls have a DeclContext now, hooray! Fans of consistency rejoice.
Argyrios Kyrtzidis
2009-02-17
1
-4
/
+4
*
Remove FindIvarDeclaration. Use lookupInstanceVariable is is functionally
Fariborz Jahanian
2009-02-16
1
-16
/
+0
*
wrap long lines.
Chris Lattner
2009-02-16
1
-6
/
+8
*
Remove many references to ASTContext::getAllocator(), replacing them with cal...
Steve Naroff
2009-01-27
1
-27
/
+14
*
Remove ScopedDecl, collapsing all of its functionality into Decl, so
Douglas Gregor
2009-01-20
1
-4
/
+3
*
Patch to allow @dynamic synthesis of property in a category,
Fariborz Jahanian
2009-01-19
1
-2
/
+11
*
Fix crasher due to use-after-release: DeclContext now owns all ObjCMethodDecl...
Ted Kremenek
2009-01-12
1
-18
/
+0
[prev]
[next]