mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
[NewPM] Add Option handling for SimpleLoopUnswitch
This patch enables passing options to SimpleLoopUnswitch via the passes pipeline. Reviewers: chandlerc, fedor.sergeev, leonardchan, philip.pfaffe Reviewed By: fedor.sergeev Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D60676 llvm-svn: 358880
This commit is contained in:
parent
da517113d2
commit
f82092c57f
@ -1498,6 +1498,24 @@ Expected<LoopVectorizeOptions> parseLoopVectorizeOptions(StringRef Params) {
|
||||
return Opts;
|
||||
}
|
||||
|
||||
Expected<bool> parseLoopUnswitchOptions(StringRef Params) {
|
||||
bool Result = false;
|
||||
while (!Params.empty()) {
|
||||
StringRef ParamName;
|
||||
std::tie(ParamName, Params) = Params.split(';');
|
||||
|
||||
bool Enable = !ParamName.consume_front("no-");
|
||||
if (ParamName == "nontrivial") {
|
||||
Result = Enable;
|
||||
} else {
|
||||
return make_error<StringError>(
|
||||
formatv("invalid LoopUnswitch pass parameter '{0}' ", ParamName)
|
||||
.str(),
|
||||
inconvertibleErrorCode());
|
||||
}
|
||||
}
|
||||
return Result;
|
||||
}
|
||||
} // namespace
|
||||
|
||||
/// Tests whether a pass name starts with a valid prefix for a default pipeline
|
||||
@ -1619,6 +1637,9 @@ static bool isLoopPassName(StringRef Name, CallbacksT &Callbacks) {
|
||||
#define LOOP_PASS(NAME, CREATE_PASS) \
|
||||
if (Name == NAME) \
|
||||
return true;
|
||||
#define LOOP_PASS_WITH_PARAMS(NAME, CREATE_PASS, PARSER) \
|
||||
if (checkParametrizedPassName(Name, NAME)) \
|
||||
return true;
|
||||
#define LOOP_ANALYSIS(NAME, CREATE_PASS) \
|
||||
if (Name == "require<" NAME ">" || Name == "invalidate<" NAME ">") \
|
||||
return true;
|
||||
@ -2006,6 +2027,14 @@ Error PassBuilder::parseLoopPass(LoopPassManager &LPM, const PipelineElement &E,
|
||||
LPM.addPass(CREATE_PASS); \
|
||||
return Error::success(); \
|
||||
}
|
||||
#define LOOP_PASS_WITH_PARAMS(NAME, CREATE_PASS, PARSER) \
|
||||
if (checkParametrizedPassName(Name, NAME)) { \
|
||||
auto Params = parsePassParameters(PARSER, Name, NAME); \
|
||||
if (!Params) \
|
||||
return Params.takeError(); \
|
||||
LPM.addPass(CREATE_PASS(Params.get())); \
|
||||
return Error::success(); \
|
||||
}
|
||||
#define LOOP_ANALYSIS(NAME, CREATE_PASS) \
|
||||
if (Name == "require<" NAME ">") { \
|
||||
LPM.addPass(RequireAnalysisPass< \
|
||||
|
@ -290,9 +290,18 @@ LOOP_PASS("indvars", IndVarSimplifyPass())
|
||||
LOOP_PASS("irce", IRCEPass())
|
||||
LOOP_PASS("unroll-and-jam", LoopUnrollAndJamPass())
|
||||
LOOP_PASS("unroll-full", LoopFullUnrollPass())
|
||||
LOOP_PASS("unswitch", SimpleLoopUnswitchPass())
|
||||
LOOP_PASS("print-access-info", LoopAccessInfoPrinterPass(dbgs()))
|
||||
LOOP_PASS("print<ivusers>", IVUsersPrinterPass(dbgs()))
|
||||
LOOP_PASS("loop-predication", LoopPredicationPass())
|
||||
LOOP_PASS("guard-widening", GuardWideningPass())
|
||||
#undef LOOP_PASS
|
||||
|
||||
#ifndef LOOP_PASS_WITH_PARAMS
|
||||
#define LOOP_PASS_WITH_PARAMS(NAME, CREATE_PASS, PARSER)
|
||||
#endif
|
||||
LOOP_PASS_WITH_PARAMS("unswitch",
|
||||
[](bool NonTrivial) {
|
||||
return SimpleLoopUnswitchPass(NonTrivial);
|
||||
},
|
||||
parseLoopUnswitchOptions)
|
||||
#undef LOOP_PASS_WITH_PARAMS
|
||||
|
@ -1,5 +1,5 @@
|
||||
; RUN: opt < %s -simple-loop-unswitch -enable-nontrivial-unswitch -S 2>&1 | FileCheck %s
|
||||
; RUN: opt < %s -passes=unswitch -enable-nontrivial-unswitch -S 2>&1 | FileCheck %s
|
||||
; RUN: opt < %s -passes='unswitch<nontrivial>' -S 2>&1 | FileCheck %s
|
||||
;
|
||||
; Checking that (dead) blocks from inner loop are deleted after unswitch.
|
||||
;
|
||||
|
@ -2,30 +2,30 @@
|
||||
; There should be just a single copy of each loop when strictest mutiplier
|
||||
; candidates formula (unscaled candidates == 0) is enforced:
|
||||
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: -unswitch-num-initial-unscaled-candidates=0 -unswitch-siblings-toplevel-div=1 \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: -unswitch-num-initial-unscaled-candidates=0 -unswitch-siblings-toplevel-div=16 \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
;
|
||||
;
|
||||
; When we relax the candidates part of a multiplier formula
|
||||
; (unscaled candidates == 4) we start getting some unswitches,
|
||||
; which leads to siblings multiplier kicking in.
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: -unswitch-num-initial-unscaled-candidates=4 -unswitch-siblings-toplevel-div=1 \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | \
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | \
|
||||
; RUN: sort -b -k 1 | FileCheck %s --check-prefixes=LOOP-UNSCALE4-DIV1
|
||||
;
|
||||
; NB: sort -b is essential here and below, otherwise blanks might lead to different
|
||||
; order depending on locale.
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: -unswitch-num-initial-unscaled-candidates=4 -unswitch-siblings-toplevel-div=2 \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | \
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | \
|
||||
; RUN: sort -b -k 1 | FileCheck %s --check-prefixes=LOOP-UNSCALE4-DIV2
|
||||
;
|
||||
;
|
||||
@ -33,8 +33,8 @@
|
||||
; 2^(num conds) == 2^5 = 32
|
||||
; loop nests when cost multiplier is disabled:
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=false \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=false \
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | \
|
||||
; RUN: sort -b -k 1 | FileCheck %s --check-prefixes=LOOP32
|
||||
;
|
||||
; Single loop nest, not unswitched
|
||||
|
@ -7,36 +7,36 @@
|
||||
; There should be just a single copy of each loop when strictest mutiplier
|
||||
; candidates formula (unscaled candidates == 0) is enforced:
|
||||
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: -unswitch-num-initial-unscaled-candidates=0 -unswitch-siblings-toplevel-div=1 \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: -unswitch-num-initial-unscaled-candidates=0 -unswitch-siblings-toplevel-div=16 \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
;
|
||||
;
|
||||
; When we relax the candidates part of a multiplier formula
|
||||
; (unscaled candidates == 2) we start getting some unswitches in outer loops,
|
||||
; which leads to siblings multiplier kicking in.
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: -unswitch-num-initial-unscaled-candidates=3 -unswitch-siblings-toplevel-div=1 \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | \
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | \
|
||||
; RUN: sort -b -k 1 | FileCheck %s --check-prefixes=LOOP-UNSCALE3-DIV1
|
||||
;
|
||||
; NB: sort -b is essential here and below, otherwise blanks might lead to different
|
||||
; order depending on locale.
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: -unswitch-num-initial-unscaled-candidates=3 -unswitch-siblings-toplevel-div=2 \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | \
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | \
|
||||
; RUN: sort -b -k 1 | FileCheck %s --check-prefixes=LOOP-UNSCALE3-DIV2
|
||||
;
|
||||
; With disabled cost-multiplier we get maximal possible amount of unswitches.
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=false \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=false \
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | \
|
||||
; RUN: sort -b -k 1 | FileCheck %s --check-prefixes=LOOP-MAX
|
||||
;
|
||||
; Single loop nest, not unswitched
|
||||
|
@ -2,36 +2,36 @@
|
||||
; There should be just a single copy of loop when strictest mutiplier candidates
|
||||
; formula (unscaled candidates == 0) is enforced:
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: -unswitch-num-initial-unscaled-candidates=0 -unswitch-siblings-toplevel-div=1 \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: -unswitch-num-initial-unscaled-candidates=0 -unswitch-siblings-toplevel-div=8 \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
;
|
||||
; With relaxed candidates multiplier (unscaled candidates == 8) we should allow
|
||||
; some unswitches to happen until siblings multiplier starts kicking in:
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: -unswitch-num-initial-unscaled-candidates=8 -unswitch-siblings-toplevel-div=1 \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP5
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP5
|
||||
;
|
||||
; With relaxed candidates multiplier (unscaled candidates == 8) and with relaxed
|
||||
; siblings multiplier for top-level loops (toplevel-div == 8) we should get
|
||||
; 2^(num conds) == 2^5 == 32
|
||||
; copies of the loop:
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: -unswitch-num-initial-unscaled-candidates=8 -unswitch-siblings-toplevel-div=8 \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP32
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP32
|
||||
;
|
||||
; Similarly get
|
||||
; 2^(num conds) == 2^5 == 32
|
||||
; copies of the loop when cost multiplier is disabled:
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=false \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP32
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=false \
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP32
|
||||
;
|
||||
;
|
||||
; Single loop, not unswitched
|
||||
|
@ -4,24 +4,24 @@
|
||||
;
|
||||
; There we should have just a single loop.
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: -unswitch-num-initial-unscaled-candidates=0 -unswitch-siblings-toplevel-div=1 \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: -unswitch-num-initial-unscaled-candidates=0 -unswitch-siblings-toplevel-div=8 \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: -unswitch-num-initial-unscaled-candidates=8 -unswitch-siblings-toplevel-div=1 \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: -unswitch-num-initial-unscaled-candidates=8 -unswitch-siblings-toplevel-div=8 \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=false \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=false \
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
;
|
||||
;
|
||||
; Single loop, not unswitched
|
||||
|
@ -9,36 +9,36 @@
|
||||
; When we use the stricted multiplier candidates formula (unscaled candidates == 0)
|
||||
; we should be getting just a single loop.
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: -unswitch-num-initial-unscaled-candidates=0 -unswitch-siblings-toplevel-div=1 \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: -unswitch-num-initial-unscaled-candidates=0 -unswitch-siblings-toplevel-div=16 \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | FileCheck %s --check-prefixes=LOOP1
|
||||
;
|
||||
;
|
||||
; With relaxed candidates multiplier (unscaled candidates == 8) we should allow
|
||||
; some unswitches to happen until siblings multiplier starts kicking in:
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: -unswitch-num-initial-unscaled-candidates=8 -unswitch-siblings-toplevel-div=1 \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | \
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | \
|
||||
; RUN: sort -b -k 1 | FileCheck %s --check-prefixes=LOOP-RELAX
|
||||
;
|
||||
; With relaxed candidates multiplier (unscaled candidates == 8) and with relaxed
|
||||
; siblings multiplier for top-level loops (toplevel-div == 8) we should get
|
||||
; considerably more copies of the loop (especially top-level ones).
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=true \
|
||||
; RUN: -unswitch-num-initial-unscaled-candidates=8 -unswitch-siblings-toplevel-div=8 \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | \
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | \
|
||||
; RUN: sort -b -k 1 | FileCheck %s --check-prefixes=LOOP-RELAX2
|
||||
;
|
||||
; We get hundreds of copies of the loop when cost multiplier is disabled:
|
||||
;
|
||||
; RUN: opt < %s -enable-nontrivial-unswitch -enable-unswitch-cost-multiplier=false \
|
||||
; RUN: -passes='loop(unswitch),print<loops>' -disable-output 2>&1 | \
|
||||
; RUN: opt < %s -enable-unswitch-cost-multiplier=false \
|
||||
; RUN: -passes='loop(unswitch<nontrivial>),print<loops>' -disable-output 2>&1 | \
|
||||
; RUN: sort -b -k 1 | FileCheck %s --check-prefixes=LOOP-MAX
|
||||
;
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
; RUN: opt -passes='loop(unswitch),verify<loops>' -enable-nontrivial-unswitch -simple-loop-unswitch-guards -S < %s | FileCheck %s
|
||||
; RUN: opt -passes='loop(unswitch<nontrivial>),verify<loops>' -simple-loop-unswitch-guards -S < %s | FileCheck %s
|
||||
; RUN: opt -simple-loop-unswitch -enable-nontrivial-unswitch -simple-loop-unswitch-guards -S < %s | FileCheck %s
|
||||
; RUN: opt -passes='loop(unswitch),verify<loops>' -enable-nontrivial-unswitch -simple-loop-unswitch-guards -enable-mssa-loop-dependency=true -verify-memoryssa -S < %s | FileCheck %s
|
||||
; RUN: opt -passes='loop(unswitch<nontrivial>),verify<loops>' -simple-loop-unswitch-guards -enable-mssa-loop-dependency=true -verify-memoryssa -S < %s | FileCheck %s
|
||||
|
||||
declare void @llvm.experimental.guard(i1, ...)
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
; Specifically exercise the cost modeling for non-trivial loop unswitching.
|
||||
;
|
||||
; RUN: opt -passes='loop(unswitch),verify<loops>' -enable-nontrivial-unswitch -unswitch-threshold=5 -S < %s | FileCheck %s
|
||||
; RUN: opt -passes='loop(unswitch<nontrivial>),verify<loops>' -unswitch-threshold=5 -S < %s | FileCheck %s
|
||||
; RUN: opt -simple-loop-unswitch -enable-nontrivial-unswitch -unswitch-threshold=5 -S < %s | FileCheck %s
|
||||
; RUN: opt -simple-loop-unswitch -enable-nontrivial-unswitch -unswitch-threshold=5 -enable-mssa-loop-dependency=true -verify-memoryssa -S < %s | FileCheck %s
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: opt -passes='loop(unswitch),verify<loops>' -enable-nontrivial-unswitch -S < %s | FileCheck %s
|
||||
; RUN: opt -passes='loop(unswitch<nontrivial>),verify<loops>' -S < %s | FileCheck %s
|
||||
; RUN: opt -simple-loop-unswitch -enable-nontrivial-unswitch -S < %s | FileCheck %s
|
||||
; RUN: opt -simple-loop-unswitch -enable-nontrivial-unswitch -enable-mssa-loop-dependency=true -verify-memoryssa -S < %s | FileCheck %s
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
; RUN: opt -passes='print<scalar-evolution>,loop(unswitch,loop-instsimplify),print<scalar-evolution>' -enable-nontrivial-unswitch -S < %s 2>%t.scev | FileCheck %s
|
||||
; RUN: opt -enable-mssa-loop-dependency=true -verify-memoryssa -passes='print<scalar-evolution>,loop(unswitch,loop-instsimplify),print<scalar-evolution>' -enable-nontrivial-unswitch -S < %s 2>%t.scev | FileCheck %s
|
||||
; RUN: opt -passes='print<scalar-evolution>,loop(unswitch<nontrivial>,loop-instsimplify),print<scalar-evolution>' -S < %s 2>%t.scev | FileCheck %s
|
||||
; RUN: opt -enable-mssa-loop-dependency=true -verify-memoryssa -passes='print<scalar-evolution>,loop(unswitch<nontrivial>,loop-instsimplify),print<scalar-evolution>' -S < %s 2>%t.scev | FileCheck %s
|
||||
; RUN: FileCheck %s --check-prefix=SCEV < %t.scev
|
||||
|
||||
target triple = "x86_64-unknown-linux-gnu"
|
||||
|
Loading…
Reference in New Issue
Block a user