1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00
llvm-mirror/test/Transforms/LoopInterchange
Florian Hahn e48aac838f [LoopInterchange] Do not interchange loops with function calls.
Summary:
Without any information about the called function, we cannot be sure
that it is safe to interchange loops which contain function calls. For
example there could be dependences that prevent interchanging between
accesses in the called function and the loops. Even functions without any
parameters could cause problems, as they could access memory using
global pointers.

For now, I think it is only safe to interchange loops with calls marked
as readnone.

With this patch, the LLVM test suite passes with `-O3 -mllvm
-enable-loopinterchange` and LoopInterchangeProfitability::isProfitable
returning true for all loops. check-llvm and check-clang also pass when
bootstrapped in a similar fashion, although only 3 loops got
interchanged.

Reviewers: karthikthecool, blitz.opensource, hfinkel, mcrosier, mkuper

Reviewed By: mcrosier

Subscribers: mzolotukhin, llvm-commits

Differential Revision: https://reviews.llvm.org/D35489

llvm-svn: 309547
2017-07-31 09:00:52 +00:00
..
call-instructions.ll [LoopInterchange] Do not interchange loops with function calls. 2017-07-31 09:00:52 +00:00
current-limitations-lcssa.ll
currentLimitation.ll
interchange-flow-dep-outer.ll [LoopInterchange] Do not interchange loops with function calls. 2017-07-31 09:00:52 +00:00
interchange-not-profitable.ll
interchange-output-dependencies.ll
interchange-simple-count-down.ll
interchange-simple-count-up.ll
loop-interchange-optimization-remarks.ll
not-interchanged-dependencies-1.ll
not-interchanged-loop-nest-3.ll
not-interchanged-tightly-nested.ll [LoopInterchange] Do not interchange loops with function calls. 2017-07-31 09:00:52 +00:00
profitability.ll
reductions.ll