index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Transforms
/
Utils
/
CodeExtractor.cpp
Age
Commit message (
Expand
)
Author
2004-07-21
These files don't need to include <iostream> since they include "Support/Debu...
Brian Gaeke
2004-07-15
Progress on PR341
Chris Lattner
2004-07-04
Add #include <iostream> since Value.h does not #include it any more.
Reid Spencer
2004-05-26
Do not pass a null pointer if this instruction is not prepended or
Alkis Evlogimenos
2004-05-12
Do not pass in the same argument to the extracted function more than once, and
Chris Lattner
2004-05-12
Implement support for code extracting basic blocks that have a return
Chris Lattner
2004-05-12
Implement splitting of PHI nodes, allowing block extraction of BB's that have
Chris Lattner
2004-05-12
* Pull some code out into the definedInRegion/definedInCaller methods
Chris Lattner
2004-05-12
Generate substantially better code when there are a limited number of exits
Chris Lattner
2004-05-12
Two minor improvements:
Chris Lattner
2004-04-23
* Allow aggregating extracted function arguments (controlled by flag)
Misha Brukman
2004-03-18
Fix bug: CodeExtractor/2004-03-17-MissedLiveIns.ll
Chris Lattner
2004-03-18
Fix CodeExtractor/2004-03-17-UpdatePHIsOutsideRegion.ll
Chris Lattner
2004-03-18
Seriously simplify and correct the PHI node handling code.
Chris Lattner
2004-03-18
Fix CodeExtractor/2004-03-17-OutputMismatch.ll
Chris Lattner
2004-03-18
Fix several bugs in the extractor:
Chris Lattner
2004-03-18
Prune #includes, moving the module interface to the front. Note that this
Chris Lattner
2004-03-15
Mostly cosmetic improvements. Do fix the bug where a global value was consid...
Chris Lattner
2004-03-15
Assert that input blocks meet the invariants we expect
Chris Lattner
2004-03-14
No correctness fixes here, just minor qoi fixes:
Chris Lattner
2004-03-14
Simplify code a bit, and fix bug CodeExtractor/2004-03-14-NoSwitchSupport.ll
Chris Lattner
2004-03-14
Simplify the code a bit by making the collection of basic blocks to extract
Chris Lattner
2004-03-14
Minor random cleanups
Chris Lattner
2004-03-14
Verify functions as they are produced if -debug is specified. Reduce
Chris Lattner
2004-03-02
Implement ExtractCodeRegion()
Misha Brukman
2004-03-01
* Add implementation of ExtractBasicBlock()
Misha Brukman
2004-02-28
A generic code extractor: given a list of BasicBlocks, it will rip them out into
Misha Brukman