index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
CodeGen
/
CGObjC.cpp
Age
Commit message (
Expand
)
Author
2008-09-11
Make sure to store the exception in the catch parameter.
Anders Carlsson
2008-09-11
Make sure to emit the catch parameter as well as the catch body.
Anders Carlsson
2008-09-09
Factor CodeGenFunction::StartFunction out of GenerateCode and
Daniel Dunbar
2008-09-09
Use a unified return block.
Daniel Dunbar
2008-09-09
Move handling of @try and @throw to the runtime class.
Anders Carlsson
2008-09-09
Change CodeGen to emit calls using (RValue,Type) list:
Daniel Dunbar
2008-09-04
Set function attributes (sext, zext, etc.) on Objective-C methods.
Daniel Dunbar
2008-09-04
Fix infinite loop in for ... in code generation.
Daniel Dunbar
2008-09-03
Fix ObjCPropertRefExpr to be able to encode all the information for
Daniel Dunbar
2008-08-31
Handle mutation while enumerating correctly. Fix some bugs.
Anders Carlsson
2008-08-31
Initial support for CodeGen of for ... in statements.
Anders Carlsson
2008-08-30
Stub out CodeGenFunction::EmitObjCForCollectionStmt.
Anders Carlsson
2008-08-30
Add Objective-C property setter support.
Daniel Dunbar
2008-08-30
Refactor handling of calls:
Daniel Dunbar
2008-08-29
Add special "property reference" CodeGen::LValue type for emitting
Daniel Dunbar
2008-08-27
Initial support for Obj-C dot-syntax for getters.
Daniel Dunbar
2008-08-26
Objective-C @synthesize support.
Daniel Dunbar
2008-08-25
Fix Obj-C super sends inside class methods.
Daniel Dunbar
2008-08-23
Trim CGObjCRuntime::GenerateMessageSend[Super]
Daniel Dunbar
2008-08-20
Move all Obj-C runtime interaction into CodeGenFunction.
Daniel Dunbar
2008-08-16
Add NeXT runtime support for generating methods.
Daniel Dunbar
2008-08-16
Change ObjCRuntime::LookupClass -> GetClass, and now takes the
Daniel Dunbar
2008-08-15
Change CGObjCRuntime methods to take appropriate clang Decls.
Daniel Dunbar
2008-08-13
Add GetAddrOfConstantCString method
Daniel Dunbar
2008-08-12
Drop Sender from GenerateMessageSend*
Daniel Dunbar
2008-08-12
Add ObjC constant string support for NeXT.
Daniel Dunbar
2008-08-11
Change CodeGenModule to only create ObjC runtime for ObjC files
Daniel Dunbar
2008-08-11
More #include cleaning
Daniel Dunbar
2008-08-11
More #include cleaning
Daniel Dunbar
2008-08-10
rename PreDefinedExpr -> PredefinedExpr
Chris Lattner
2008-06-26
avoid a lot of unneeded selector processing work by passing around
Chris Lattner
2008-06-26
use cheaper/simpler getselector call for @selector exprs.
Chris Lattner
2008-06-26
start avoid doing lots of unneeded work handling selectors
Chris Lattner
2008-06-26
Fix 80 col violations, assert on assumptions.
Chris Lattner
2008-06-24
"Support for Objective-C message sends which return structures. Also include...
Chris Lattner
2008-06-17
Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl.
Chris Lattner
2008-05-29
- Move ObjC Expresssion AST's from Expr.h => ExprObjC.h
Steve Naroff
2008-04-09
The dtor CGObjCRuntime::~CGObjCRuntime() was implemented twice, once
Ted Kremenek
2008-03-30
Add initial support for objc codegen for methods, ivars, and the
Chris Lattner
2008-03-15
Make a major restructuring of the clang tree: introduce a top-level
Chris Lattner