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
/
Scalar
/
LoopRotation.cpp
Age
Commit message (
Expand
)
Author
2008-10-22
Change create*Pass factory functions to return Pass* instead of
Daniel Dunbar
2008-09-04
Tidy up several unbeseeming casts from pointer to intptr_t.
Dan Gohman
2008-07-23
Enable first-class aggregates support.
Dan Gohman
2008-06-19
Avoid using BasicBlock::getInstList directly in a few places.
Dan Gohman
2008-05-23
Tidy up BasicBlock::getFirstNonPHI, and change a bunch of places to
Dan Gohman
2008-05-15
Fix a bunch of 80col violations that arose from the Create API change. Tweak ...
Gabor Greif
2008-05-13
Clean up the use of static and anonymous namespaces. This turned up
Dan Gohman
2008-05-02
add a FIXME so we remember to eventually remove this code.
Chris Lattner
2008-05-01
Don't try to create PHIs of struct types. Fallout
Dale Johannesen
2008-04-14
Revert r49614. As Dan pointed out, some of these aren't correct.
Owen Anderson
2008-04-13
Replace calls of the form V1->setName(V2->getName()) with V1->takeName(V2),
Owen Anderson
2008-04-06
API changes for class Use size reduction, wave 1.
Gabor Greif
2008-02-15
Fix PR2028
Devang Patel
2007-12-29
Remove attribution from file headers, per discussion on llvmdev.
Chris Lattner
2007-11-27
Make LoopInfoBase more generic, in preparation for having MachineLoopInfo. T...
Owen Anderson
2007-11-21
typo
Nick Lewycky
2007-08-21
Use SmallVector instead of std::vector.
Devang Patel
2007-07-30
Loop Rotation pass preserves dominator tree and frontier.
Devang Patel
2007-07-13
Disable claims to preserve analysis until open issues are resolved.
Devang Patel
2007-07-11
Preserve analysis info.
Devang Patel
2007-07-07
Back out Devang's fix for PR1320 because it causes PR1542.
Nick Lewycky
2007-07-06
Request DominanceFrontiner in advance.
Devang Patel
2007-07-06
Preserve various analysis info.
Devang Patel
2007-05-11
Fix typos.
Dan Gohman
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-14
fix long lines
Chris Lattner
2007-04-09
Check _all_ PHINodes.
Devang Patel
2007-04-09
Insert new pre-header before new header. Original pre-header may
Devang Patel
2007-04-09
Preserve canonical loop form.
Devang Patel
2007-04-09
Do not create new pre-header. Reuse original pre-header.
Devang Patel
2007-04-09
Simpler for() loops.
Devang Patel
2007-04-09
Fix future bug. Of course, Chris spotted this.
Devang Patel
2007-04-09
More cosmetic changes.
Devang Patel
2007-04-09
Only cosmetic changes. Zero functionality Change.
Devang Patel
2007-04-07
Add loop rotation pass.
Devang Patel