1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 04:32:44 +01:00
llvm-mirror/lib/Transforms/Scalar
Chris Lattner 83284453a1 reenable load address insertion in load pre. This allows us to
handle cases like this:
void test(int N, double* G) {
  long j;
  for (j = 1; j < N - 1; j++)
      G[j+1] = G[j] + G[j+1];
}

where G[1] isn't live into the loop.

llvm-svn: 90041
2009-11-28 16:08:18 +00:00
..
ABCD.cpp
ADCE.cpp
BasicBlockPlacement.cpp
CMakeLists.txt
CodeGenPrepare.cpp
ConstantProp.cpp
DCE.cpp
DeadStoreElimination.cpp
GEPSplitter.cpp
GVN.cpp reenable load address insertion in load pre. This allows us to 2009-11-28 16:08:18 +00:00
IndVarSimplify.cpp
InstructionCombining.cpp factor some logic out of instcombine into a new SimplifyAddInst method. 2009-11-27 17:42:22 +00:00
JumpThreading.cpp make PRE of loads preserve the alignment of the moved load instruction. 2009-11-15 19:58:31 +00:00
LICM.cpp Pull LLVMContext out of PromoteMemToReg. 2009-11-23 03:50:44 +00:00
LoopDeletion.cpp
LoopIndexSplit.cpp
LoopRotation.cpp
LoopStrengthReduce.cpp grammar 2009-11-17 21:37:04 +00:00
LoopUnrollPass.cpp
LoopUnswitch.cpp Reverting patch in revision 89758, initial attempt at fixing PR5373 has proven to be bogus. 2009-11-25 05:38:41 +00:00
Makefile
MemCpyOptimizer.cpp
Reassociate.cpp Remove LLVMContext from reassociate. It was threaded through every function but 2009-11-14 07:25:54 +00:00
Reg2Mem.cpp
Scalar.cpp
ScalarReplAggregates.cpp fix PR5436 by making the 'simple' case of SRoA not promote out of range 2009-11-27 16:37:41 +00:00
SCCP.cpp Fix a use of an invalidated iterator in the case where there are multiple 2009-11-23 16:13:39 +00:00
SCCVN.cpp Re-enable this code, since redundant PHIs are now being better nuked. 2009-11-12 23:22:41 +00:00
SimplifyCFGPass.cpp Remove LLVMContext and its include. 2009-11-23 03:34:29 +00:00
SimplifyHalfPowrLibCalls.cpp
SimplifyLibCalls.cpp Add more optimizations for object size checking, enable handling of 2009-11-21 01:01:30 +00:00
TailDuplication.cpp
TailRecursionElimination.cpp