summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen
Commit message (Collapse)AuthorAgeFilesLines
* remove the Decl::getCanonicalType() method.Chris Lattner2008-04-061-4/+3
| | | | llvm-svn: 49295
* tracking API changes arising from r49277Gabor Greif2008-04-068-41/+41
| | | | llvm-svn: 49279
* Fix PR2049, updating Eli's patch that fixes to mainline. This produces ↵Chris Lattner2008-04-041-14/+115
| | | | | | | | incorrect code, but the codegen doesn't crash. I'll file a bugzilla for the AST being wrong. llvm-svn: 49226
* Since isComplexType() no longer returns true for _Complex integers, the codeChris Lattner2008-04-046-18/+18
| | | | | | generator needs to call isAnyComplexType(). This fixes PR1960. llvm-svn: 49220
* updates from David.Chris Lattner2008-04-041-23/+46
| | | | llvm-svn: 49217
* various bug fixes, add to xcode project.Chris Lattner2008-04-041-16/+6
| | | | llvm-svn: 49216
* initial checkin of Étoilé runtime support, patch by David ChisnallChris Lattner2008-04-041-0/+241
| | | | llvm-svn: 49215
* fix build error: add missing braces.Torok Edwin2008-04-041-1/+2
| | | | llvm-svn: 49209
* Codegen assignment to self correctly, patch by David Chisnall!Chris Lattner2008-04-045-9/+34
| | | | llvm-svn: 49201
* Teach clang how to codegen punpcklbw and punpcklwdNate Begeman2008-04-031-0/+7
| | | | llvm-svn: 49186
* Fix PR2081 (problems codegen'ing some recursive structures) patchChris Lattner2008-04-032-14/+48
| | | | | | by Lauro Venancio! llvm-svn: 49144
* simplify some code by using PointerLikeType.Chris Lattner2008-04-021-1/+1
| | | | llvm-svn: 49101
* add a common base class "PointerLikeType" for PointerType and ReferenceType,Chris Lattner2008-04-022-8/+4
| | | | | | | allowing them to be treated the same in some contexts. A suggestion for a better name is welcome :) llvm-svn: 49100
* some cleanups on top of David's patch. There are still twoChris Lattner2008-03-305-64/+46
| | | | | | | | | | | | | remaining open issues I've communicated to him: 1) self can be assigned to, and his patch didn't handle it correctly. 2) CollectObjCIvarTypes is N^2 (because each subclass reprocesses all parent class ivars) and flattens classes. If A derives from B, and both have an int, I'd expect to get { {i32}, i32}, not { i32, i32}. David, please review. llvm-svn: 48970
* Add initial support for objc codegen for methods, ivars, and theChris Lattner2008-03-3013-53/+357
| | | | | | etoile runtime, patch by David Chisnall! llvm-svn: 48969
* simplify code by using the variadic StructType::get method.Chris Lattner2008-03-193-27/+24
| | | | llvm-svn: 48535
* simplify the clang codegen by using the new Builder.CreateStructGEP method.Chris Lattner2008-03-194-49/+23
| | | | llvm-svn: 48534
* Make a major restructuring of the clang tree: introduce a top-levelChris Lattner2008-03-1519-0/+7078
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