index
:
emscripten-fastcomp
master
LLVM with the emscripten fastcomp javascript backend
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Transforms
/
Scalar
/
LoopUnroll.cpp
Age
Commit message (
Expand
)
Author
2007-08-02
wrap some long lines. Major offenders that are left include
Chris Lattner
2007-05-14
Correct a few comments.
Dan Gohman
2007-05-11
This patch extends the LoopUnroll pass to be able to unroll loops
Dan Gohman
2007-05-08
Fix various whitespace inconsistencies.
Dan Gohman
2007-05-08
Correct the comment for ApproximateLoopSize to reflect what it actually does.
Dan Gohman
2007-05-05
Fix Transforms/LoopUnroll/2007-05-05-UnrollMiscomp.ll and PR1385.
Chris Lattner
2007-05-05
make a temporary for *SI, no functionality change.
Chris Lattner
2007-05-03
Drop 'const'
Devang Patel
2007-05-02
Use 'static const char' instead of 'static const int'.
Devang Patel
2007-05-01
Do not use typeinfo to identify pass in pass manager.
Devang Patel
2007-04-16
Fix
Devang Patel
2007-03-07
Now LoopUnroll is a LoopPass.
Devang Patel
2007-03-02
Guard against huge loop trip counts in an APInt safe way.
Reid Spencer
2007-02-05
Apply the VISIBILITY_HIDDEN field to the remaining anonymous classes in
Reid Spencer
2007-02-03
Switch inliner over to use DenseMap instead of std::map for ValueMap. This
Chris Lattner
2007-01-30
Adjust #includes to match movement of constant folding code from transformuti...
Chris Lattner
2006-12-19
Switch over Transforms/Scalar to use the STATISTIC macro. For each statistic
Chris Lattner
2006-12-06
Detemplatize the Statistic class. The only type it is instantiated with
Chris Lattner
2006-11-26
Removed #include <iostream> and replaced with llvm_* streams.
Bill Wendling
2006-11-02
For PR786:
Reid Spencer
2006-10-20
For PR950:
Reid Spencer
2006-08-29
Clean up a bit.
Owen Anderson
2006-08-28
Make LoopUnroll fold excessive BasicBlocks. This results in a significant sp...
Owen Anderson
2006-08-27
eliminate RegisterOpt. It does the same thing as RegisterPass.
Chris Lattner
2006-08-25
Fix a crash related to updating Phi nodes in the original header block. This...
Owen Anderson
2006-08-24
Implement unrolling of multiblock loops. This significantly improves the
Owen Anderson
2006-07-20
Minor comment tweaks
Chris Lattner
2006-07-19
Add an assertion.
Owen Anderson
2006-07-19
Make LoopUnroll not die on LCSSA Phis. This makes lencod work again.
Owen Anderson
2006-06-07
Fix a spello in a comment.
Reid Spencer
2006-01-22
Make iostream #inclusion explicit
Chris Lattner
2005-04-23
Eliminate tabs and trailing spaces
Jeff Cohen
2005-04-21
Remove trailing whitespace
Misha Brukman
2005-03-06
Fix a bug where we could corrupt a parent loop's header info if we unrolled
Chris Lattner
2005-01-08
Silence VS warnings.
Chris Lattner
2004-11-22
Do not consider debug intrinsics in the size computations for loop unrolling.
Chris Lattner
2004-10-18
Correction to allow compilation with Visual C++.
Reid Spencer
2004-09-15
Convert code to compile with vc7.1.
Reid Spencer
2004-09-01
Changes For Bug 352
Reid Spencer
2004-05-13
Fix a nasty bug that caused us to unroll EXTREMELY large loops due to overflow
Chris Lattner
2004-04-20
Fix PR325
Chris Lattner
2004-04-19
Add #include
Chris Lattner
2004-04-18
Change the ExitBlocks list from being explicitly contained in the Loop
Chris Lattner
2004-04-18
Reduce the unrolling limit
Chris Lattner
2004-04-18
If the preheader of the loop was the entry block of the function, make sure
Chris Lattner
2004-04-18
Be much more careful about how we update instructions outside of the loop
Chris Lattner
2004-04-18
After unrolling our single basic block loop, fold it into the preheader and exit
Chris Lattner
2004-04-18
Fix a bug: this does not preserve the CFG!
Chris Lattner
2004-04-18
Initial checkin of a simple loop unroller. This pass is extremely basic and
Chris Lattner