summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CGObjCRuntime.h
Commit message (Collapse)AuthorAgeFilesLines
...
* Protocol related tweaksDaniel Dunbar2008-08-121-3/+15
| | | | | | | - Implement type conversion of ObjCQualifiedIdType - Wire @protocol(...) to GenerateProtocolRef in ScalarExprEmitter llvm-svn: 54666
* Add ObjC constant string support for NeXT.Daniel Dunbar2008-08-121-2/+1
| | | | | | | | | | Changed CGObjCRuntime::GenerateConstantString interface to take std::string instead of char* and size. Change ObjC functions which call on GenerateConstantString to bitcast result to appropriate type. llvm-svn: 54659
* Update for IRBuilder template change (update LLVM!)Daniel Dunbar2008-08-111-4/+6
| | | | llvm-svn: 54642
* More #include cleaningDaniel Dunbar2008-08-111-0/+1
| | | | | | | | - Drop Expr.h,RecordLayout.h from ASTContext.h (for DeclBase.h and SourceLocation.h) - Move ASTContext constructor into implementation llvm-svn: 54627
* Add dummy Mac Objective-C runtime interface.Daniel Dunbar2008-08-111-3/+4
| | | | | | - Not currently accessible and completely non-functional. llvm-svn: 54624
* update to make IRBuilder API change.Chris Lattner2008-08-081-8/+9
| | | | llvm-svn: 54548
* refactor more objc codegen interfaces to pass around selectors soChris Lattner2008-06-261-4/+4
| | | | | | we don't push strings into LLVM IR and then have to read them back out. llvm-svn: 52765
* remove the old getSelector implementation, which removes someChris Lattner2008-06-261-3/+0
| | | | | | calls to getStringValue llvm-svn: 52761
* avoid a lot of unneeded selector processing work by passing aroundChris Lattner2008-06-261-1/+1
| | | | | | selectors instead of Value*'s. llvm-svn: 52760
* use cheaper/simpler getselector call for @selector exprs.Chris Lattner2008-06-261-2/+3
| | | | llvm-svn: 52759
* start avoid doing lots of unneeded work handling selectorsChris Lattner2008-06-261-7/+9
| | | | llvm-svn: 52758
* improve indentation, avoid thrashing on maps and recalculating strings as much.Chris Lattner2008-06-261-2/+2
| | | | llvm-svn: 52757
* give CreateObjCRuntime a full CGM so it can get whatever state it needs, Chris Lattner2008-06-261-3/+2
| | | | | | | instead of passing in just a couple random things it currently happens to use. llvm-svn: 52756
* Include <string> header to allow compiling for MSVC.Argyrios Kyrtzidis2008-06-011-0/+1
| | | | llvm-svn: 51847
* Support for code generation of Objective-C top-level language constructs.Anton Korobeynikov2008-06-011-6/+64
| | | | | | Implemented by David Chisnall! llvm-svn: 51835
* update to follow mainline llvm API change.Chris Lattner2008-04-131-2/+2
| | | | llvm-svn: 49607
* Add initial support for objc codegen for methods, ivars, and theChris Lattner2008-03-301-3/+24
| | | | | | etoile runtime, patch by David Chisnall! llvm-svn: 48969
* Make a major restructuring of the clang tree: introduce a top-levelChris Lattner2008-03-151-0/+47
lib dir and move all the libraries into it. This follows the main llvm tree, and allows the libraries to be built in parallel. The top level now enforces that all the libs are built before Driver, but we don't care what order the libs are built in. This speeds up parallel builds, particularly incremental ones. llvm-svn: 48402
OpenPOWER on IntegriCloud