Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Remove the LowerSetJmp pass. It wasn't used effectively by any of the targets. | Bill Wendling | 2011-08-03 | 1 | -5/+0 | |
| | | | | | | This is some of my original LLVM code. *wipes tear* llvm-svn: 136821 | |||||
* | Add LLVMAddAlwaysInlinerPass to the C API. | Rafael Espindola | 2011-07-26 | 1 | -0/+4 | |
| | | | | llvm-svn: 136083 | |||||
* | LLVM 3.0 is here, remove old do nothing method. | Rafael Espindola | 2011-07-26 | 1 | -5/+0 | |
| | | | | llvm-svn: 136082 | |||||
* | Land the long talked about "type system rewrite" patch. This | Chris Lattner | 2011-07-09 | 1 | -5/+0 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | patch brings numerous advantages to LLVM. One way to look at it is through diffstat: 109 files changed, 3005 insertions(+), 5906 deletions(-) Removing almost 3K lines of code is a good thing. Other advantages include: 1. Value::getType() is a simple load that can be CSE'd, not a mutating union-find operation. 2. Types a uniqued and never move once created, defining away PATypeHolder. 3. Structs can be "named" now, and their name is part of the identity that uniques them. This means that the compiler doesn't merge them structurally which makes the IR much less confusing. 4. Now that there is no way to get a cycle in a type graph without a named struct type, "upreferences" go away. 5. Type refinement is completely gone, which should make LTO much MUCH faster in some common cases with C++ code. 6. Types are now generally immutable, so we can use "Type *" instead "const Type *" everywhere. Downsides of this patch are that it removes some functions from the C API, so people using those will have to upgrade to (not yet added) new API. "LLVM 3.0" is the right time to do this. There are still some cleanups pending after this, this patch is large enough as-is. llvm-svn: 134829 | |||||
* | remove the StructRetPromotion pass. It is unused, not maintained and | Chris Lattner | 2011-04-11 | 1 | -1/+0 | |
| | | | | | | | has some bugs. If this is interesting functionality, it should be reimplemented in the argpromotion pass. llvm-svn: 129314 | |||||
* | remove the partial specialization pass. It is unmaintained and has bugs. | Chris Lattner | 2011-01-16 | 1 | -1/+0 | |
| | | | | llvm-svn: 123554 | |||||
* | Add an initialization routine for libLLVMipo.a | Owen Anderson | 2010-10-07 | 1 | -2/+37 | |
| | | | | llvm-svn: 115933 | |||||
* | Adding IPSCCP and Internalize passes to the C-bindings | Wesley Peck | 2010-04-09 | 1 | -0/+9 | |
| | | | | llvm-svn: 100893 | |||||
* | Reverting 85714, 85715, 85716, which are breaking the build | Douglas Gregor | 2009-11-01 | 1 | -1/+0 | |
| | | | | llvm-svn: 85717 | |||||
* | Remove the #include of Pass.h from PassManager.h. This breaks a significant | Dan Gohman | 2009-11-01 | 1 | -0/+1 | |
| | | | | | | #include dependency, as frontends commonly pull in PassManager.h. llvm-svn: 85714 | |||||
* | Auto-upgrade free instructions to calls to the builtin free function. | Victor Hernandez | 2009-10-24 | 1 | -1/+1 | |
| | | | | | | | Update all analysis passes and transforms to treat free calls just like FreeInst. Remove RaiseAllocations and all its tests since FreeInst no longer needs to be raised. llvm-svn: 84987 | |||||
* | add a bunch more passes to the C bindings (PR3734), patch by | Chris Lattner | 2009-03-06 | 1 | -0/+75 | |
Lennart Augustsson! llvm-svn: 66272 |