index
:
external_llvm.git
replicant-6.0
Android's llvm
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
Transforms
/
Scalar
/
LoopUnroll.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Adjust loop size estimate for full unrolling;
Dale Johannesen
2009-04-20
1
-0
/
+2
*
Rename getAnalysisToUpdate to getAnalysisIfAvailable.
Duncan Sands
2009-01-28
1
-2
/
+2
*
Change create*Pass factory functions to return Pass* instead of
Daniel Dunbar
2008-10-22
1
-1
/
+1
*
Tidy up several unbeseeming casts from pointer to intptr_t.
Dan Gohman
2008-09-04
1
-1
/
+1
*
Add -unroll-allow-partial command line option that enabled the loop unroller to
Matthijs Kooijman
2008-07-29
1
-4
/
+26
*
Preserve dom info.
Devang Patel
2008-07-03
1
-0
/
+15
*
Use Loop::block_iterator.
Dan Gohman
2008-06-22
1
-2
/
+3
*
Bill pointed out that system headers should be
Duncan Sands
2008-05-16
1
-1
/
+1
*
Use of UINT_MAX requires climits, at least when
Duncan Sands
2008-05-15
1
-0
/
+1
*
Split the loop unroll mechanism logic out into a utility function.
Dan Gohman
2008-05-14
1
-379
/
+14
*
Clean up the use of static and anonymous namespaces. This turned up
Dan Gohman
2008-05-13
1
-11
/
+10
*
Make several variable declarations static.
Dan Gohman
2008-05-06
1
-2
/
+2
*
Remove 'unwinds to' support from mainline. This patch undoes r47802 r47989
Nick Lewycky
2008-04-25
1
-7
/
+3
*
Revert r49614. As Dan pointed out, some of these aren't correct.
Owen Anderson
2008-04-14
1
-2
/
+2
*
Replace calls of the form V1->setName(V2->getName()) with V1->takeName(V2),
Owen Anderson
2008-04-13
1
-2
/
+2
*
Add comment.
Devang Patel
2008-03-19
1
-0
/
+4
*
Update heuritics that estimates cost of call instructions.
Devang Patel
2008-03-17
1
-0
/
+5
*
Update the block cloner which fixes bugpoint on code using unwind_to (phew!)
Nick Lewycky
2008-03-09
1
-3
/
+7
*
Unbreak build with gcc 4.3: provide missed includes and silence most annoying...
Anton Korobeynikov
2008-02-20
1
-1
/
+2
*
Be more careful modifying the use_list while also iterating through it.
Nick Lewycky
2008-01-27
1
-1
/
+2
*
fix typo
Wojciech Matyjewicz
2008-01-04
1
-1
/
+1
*
Remove attribution from file headers, per discussion on llvmdev.
Chris Lattner
2007-12-29
1
-2
/
+2
*
Make LoopInfoBase more generic, in preparation for having MachineLoopInfo. T...
Owen Anderson
2007-11-27
1
-1
/
+1
*
If a value is incoming from outside the loop then the value does not need rem...
Devang Patel
2007-11-05
1
-3
/
+0
*
wrap some long lines. Major offenders that are left include
Chris Lattner
2007-08-02
1
-1
/
+1
*
Correct a few comments.
Dan Gohman
2007-05-14
1
-5
/
+5
*
This patch extends the LoopUnroll pass to be able to unroll loops
Dan Gohman
2007-05-11
1
-58
/
+193
*
Fix various whitespace inconsistencies.
Dan Gohman
2007-05-08
1
-10
/
+10
*
Correct the comment for ApproximateLoopSize to reflect what it actually does.
Dan Gohman
2007-05-08
1
-2
/
+1
*
Fix Transforms/LoopUnroll/2007-05-05-UnrollMiscomp.ll and PR1385.
Chris Lattner
2007-05-05
1
-18
/
+17
*
make a temporary for *SI, no functionality change.
Chris Lattner
2007-05-05
1
-6
/
+7
*
Drop 'const'
Devang Patel
2007-05-03
1
-2
/
+2
*
Use 'static const char' instead of 'static const int'.
Devang Patel
2007-05-02
1
-2
/
+2
*
Do not use typeinfo to identify pass in pass manager.
Devang Patel
2007-05-01
1
-0
/
+4
*
Fix
Devang Patel
2007-04-16
1
-0
/
+6
*
Now LoopUnroll is a LoopPass.
Devang Patel
2007-03-07
1
-36
/
+7
*
Guard against huge loop trip counts in an APInt safe way.
Reid Spencer
2007-03-02
1
-2
/
+7
*
Apply the VISIBILITY_HIDDEN field to the remaining anonymous classes in
Reid Spencer
2007-02-05
1
-1
/
+2
*
Switch inliner over to use DenseMap instead of std::map for ValueMap. This
Chris Lattner
2007-02-03
1
-8
/
+8
*
Adjust #includes to match movement of constant folding code from transformuti...
Chris Lattner
2007-01-30
1
-0
/
+1
*
Switch over Transforms/Scalar to use the STATISTIC macro. For each statistic
Chris Lattner
2006-12-19
1
-2
/
+2
*
Detemplatize the Statistic class. The only type it is instantiated with
Chris Lattner
2006-12-06
1
-1
/
+1
*
Removed #include <iostream> and replaced with llvm_* streams.
Bill Wendling
2006-11-26
1
-7
/
+6
*
For PR786:
Reid Spencer
2006-11-02
1
-2
/
+1
*
For PR950:
Reid Spencer
2006-10-20
1
-2
/
+2
*
Clean up a bit.
Owen Anderson
2006-08-29
1
-51
/
+32
*
Make LoopUnroll fold excessive BasicBlocks. This results in a significant sp...
Owen Anderson
2006-08-28
1
-9
/
+89
*
eliminate RegisterOpt. It does the same thing as RegisterPass.
Chris Lattner
2006-08-27
1
-1
/
+1
*
Fix a crash related to updating Phi nodes in the original header block. This...
Owen Anderson
2006-08-25
1
-1
/
+2
*
Implement unrolling of multiblock loops. This significantly improves the
Owen Anderson
2006-08-24
1
-127
/
+125
[next]