summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CodeGenFunction.h
Commit message (Collapse)AuthorAgeFilesLines
...
* Make CurFuncDecl more specific; I have some code I'm going to land in a Eli Friedman2008-05-221-1/+1
| | | | | | bit that wants to use CurFuncDecl as a FunctionDecl. llvm-svn: 51402
* Move getAccessedFieldNo out of lib/AST/Expr.cpp intoDan Gohman2008-05-221-0/+5
| | | | | | | | | lib/CodeGen/CGExpr.cpp and to change include/clang/AST/Attr.h to use its own enum for visibility types instead of using llvm::GlobalValue::VisibilityTypes. These changes eliminate dependencies in the AST library on LLVM's VMCore library. llvm-svn: 51398
* Add codegen support for block-level compound literals.Eli Friedman2008-05-131-0/+2
| | | | llvm-svn: 51081
* Extend vector member references to include {.hi, .lo, .e, .o} which return aNate Begeman2008-05-091-5/+9
| | | | | | | | | | | | | vector of the same element type and half the width, with the high, low, even, and odd elements respectively. Allow member references to member references, so that .hi.hi gives you the high quarter of a vector. This is fairly convenient syntax for some insert/extract operations. Remove some unnecessary methods/types in the ExtVectorElementExpr class. llvm-svn: 50892
* Add basic support for the pic-* target triples and add support forChris Lattner2008-05-081-0/+6
| | | | | | | | | targets that do not support recursion (and thus codegen stack variables as globals). Patch contributed by Alireza Moshtaghi! llvm-svn: 50844
* OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris.Nate Begeman2008-04-181-13/+14
| | | | llvm-svn: 49942
* Remove FileVarDecl and BlockVarDecl. They are replaced by ↵Steve Naroff2008-04-151-5/+5
| | | | | | | | VarDecl::isBlockVarDecl() and VarDecl::isFileVarDecl(). This is a fairly mechanical/large change. As a result, I avoided making any changes/simplifications that weren't directly related. I did break two Analysis tests. I also have a couple FIXME's in UninitializedValues.cpp. Ted, can you take a look? If the bug isn't obvious, I am happy to dig in and fix it (since I broke it). llvm-svn: 49748
* update to follow mainline llvm API change.Chris Lattner2008-04-131-2/+2
| | | | llvm-svn: 49607
* Codegen assignment to self correctly, patch by David Chisnall!Chris Lattner2008-04-041-1/+4
| | | | llvm-svn: 49201
* Add initial support for objc codegen for methods, ivars, and theChris Lattner2008-03-301-2/+7
| | | | | | 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/+486
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