1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447 |
- //===- LoopInfoTest.cpp - LoopInfo unit tests -----------------------------===//
- //
- // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
- // See https://llvm.org/LICENSE.txt for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- //===----------------------------------------------------------------------===//
- #include "llvm/Analysis/LoopInfo.h"
- #include "llvm/Analysis/AssumptionCache.h"
- #include "llvm/Analysis/ScalarEvolution.h"
- #include "llvm/Analysis/TargetLibraryInfo.h"
- #include "llvm/AsmParser/Parser.h"
- #include "llvm/IR/Dominators.h"
- #include "llvm/Support/SourceMgr.h"
- #include "gtest/gtest.h"
- using namespace llvm;
- /// Build the loop info for the function and run the Test.
- static void
- runWithLoopInfo(Module &M, StringRef FuncName,
- function_ref<void(Function &F, LoopInfo &LI)> Test) {
- auto *F = M.getFunction(FuncName);
- ASSERT_NE(F, nullptr) << "Could not find " << FuncName;
- // Compute the dominator tree and the loop info for the function.
- DominatorTree DT(*F);
- LoopInfo LI(DT);
- Test(*F, LI);
- }
- /// Build the loop info and scalar evolution for the function and run the Test.
- static void runWithLoopInfoPlus(
- Module &M, StringRef FuncName,
- function_ref<void(Function &F, LoopInfo &LI, ScalarEvolution &SE)> Test) {
- auto *F = M.getFunction(FuncName);
- ASSERT_NE(F, nullptr) << "Could not find " << FuncName;
- TargetLibraryInfoImpl TLII;
- TargetLibraryInfo TLI(TLII);
- AssumptionCache AC(*F);
- DominatorTree DT(*F);
- LoopInfo LI(DT);
- ScalarEvolution SE(*F, TLI, AC, DT, LI);
- Test(*F, LI, SE);
- }
- static std::unique_ptr<Module> makeLLVMModule(LLVMContext &Context,
- const char *ModuleStr) {
- SMDiagnostic Err;
- return parseAssemblyString(ModuleStr, Err, Context);
- }
- // This tests that for a loop with a single latch, we get the loop id from
- // its only latch, even in case the loop may not be in a simplified form.
- TEST(LoopInfoTest, LoopWithSingleLatch) {
- const char *ModuleStr =
- "target datalayout = \"e-m:o-i64:64-f80:128-n8:16:32:64-S128\"\n"
- "define void @foo(i32 %n) {\n"
- "entry:\n"
- " br i1 undef, label %for.cond, label %for.end\n"
- "for.cond:\n"
- " %i.0 = phi i32 [ 0, %entry ], [ %inc, %for.inc ]\n"
- " %cmp = icmp slt i32 %i.0, %n\n"
- " br i1 %cmp, label %for.inc, label %for.end\n"
- "for.inc:\n"
- " %inc = add nsw i32 %i.0, 1\n"
- " br label %for.cond, !llvm.loop !0\n"
- "for.end:\n"
- " ret void\n"
- "}\n"
- "!0 = distinct !{!0, !1}\n"
- "!1 = !{!\"llvm.loop.distribute.enable\", i1 true}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfo(*M, "foo", [&](Function &F, LoopInfo &LI) {
- Function::iterator FI = F.begin();
- // First basic block is entry - skip it.
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.cond");
- Loop *L = LI.getLoopFor(Header);
- // This loop is not in simplified form.
- EXPECT_FALSE(L->isLoopSimplifyForm());
- // Analyze the loop metadata id.
- bool loopIDFoundAndSet = false;
- // Try to get and set the metadata id for the loop.
- if (MDNode *D = L->getLoopID()) {
- L->setLoopID(D);
- loopIDFoundAndSet = true;
- }
- // We must have successfully found and set the loop id in the
- // only latch the loop has.
- EXPECT_TRUE(loopIDFoundAndSet);
- });
- }
- // Test loop id handling for a loop with multiple latches.
- TEST(LoopInfoTest, LoopWithMultipleLatches) {
- const char *ModuleStr =
- "target datalayout = \"e-m:o-i64:64-f80:128-n8:16:32:64-S128\"\n"
- "define void @foo(i32 %n) {\n"
- "entry:\n"
- " br i1 undef, label %for.cond, label %for.end\n"
- "for.cond:\n"
- " %i.0 = phi i32 [ 0, %entry ], [ %inc, %latch.1 ], [ %inc, %latch.2 ]\n"
- " %inc = add nsw i32 %i.0, 1\n"
- " %cmp = icmp slt i32 %i.0, %n\n"
- " br i1 %cmp, label %latch.1, label %for.end\n"
- "latch.1:\n"
- " br i1 undef, label %for.cond, label %latch.2, !llvm.loop !0\n"
- "latch.2:\n"
- " br label %for.cond, !llvm.loop !0\n"
- "for.end:\n"
- " ret void\n"
- "}\n"
- "!0 = distinct !{!0, !1}\n"
- "!1 = !{!\"llvm.loop.distribute.enable\", i1 true}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfo(*M, "foo", [&](Function &F, LoopInfo &LI) {
- Function::iterator FI = F.begin();
- // First basic block is entry - skip it.
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.cond");
- Loop *L = LI.getLoopFor(Header);
- EXPECT_NE(L, nullptr);
- // This loop is not in simplified form.
- EXPECT_FALSE(L->isLoopSimplifyForm());
- // Try to get and set the metadata id for the loop.
- MDNode *OldLoopID = L->getLoopID();
- EXPECT_NE(OldLoopID, nullptr);
- MDNode *NewLoopID = MDNode::get(Context, {nullptr});
- // Set operand 0 to refer to the loop id itself.
- NewLoopID->replaceOperandWith(0, NewLoopID);
- L->setLoopID(NewLoopID);
- EXPECT_EQ(L->getLoopID(), NewLoopID);
- EXPECT_NE(L->getLoopID(), OldLoopID);
- L->setLoopID(OldLoopID);
- EXPECT_EQ(L->getLoopID(), OldLoopID);
- EXPECT_NE(L->getLoopID(), NewLoopID);
- });
- }
- TEST(LoopInfoTest, PreorderTraversals) {
- const char *ModuleStr = "define void @f() {\n"
- "entry:\n"
- " br label %loop.0\n"
- "loop.0:\n"
- " br i1 undef, label %loop.0.0, label %loop.1\n"
- "loop.0.0:\n"
- " br i1 undef, label %loop.0.0, label %loop.0.1\n"
- "loop.0.1:\n"
- " br i1 undef, label %loop.0.1, label %loop.0.2\n"
- "loop.0.2:\n"
- " br i1 undef, label %loop.0.2, label %loop.0\n"
- "loop.1:\n"
- " br i1 undef, label %loop.1.0, label %end\n"
- "loop.1.0:\n"
- " br i1 undef, label %loop.1.0, label %loop.1.1\n"
- "loop.1.1:\n"
- " br i1 undef, label %loop.1.1, label %loop.1.2\n"
- "loop.1.2:\n"
- " br i1 undef, label %loop.1.2, label %loop.1\n"
- "end:\n"
- " ret void\n"
- "}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- Function &F = *M->begin();
- DominatorTree DT(F);
- LoopInfo LI;
- LI.analyze(DT);
- Function::iterator I = F.begin();
- ASSERT_EQ("entry", I->getName());
- ++I;
- Loop &L_0 = *LI.getLoopFor(&*I++);
- ASSERT_EQ("loop.0", L_0.getHeader()->getName());
- Loop &L_0_0 = *LI.getLoopFor(&*I++);
- ASSERT_EQ("loop.0.0", L_0_0.getHeader()->getName());
- Loop &L_0_1 = *LI.getLoopFor(&*I++);
- ASSERT_EQ("loop.0.1", L_0_1.getHeader()->getName());
- Loop &L_0_2 = *LI.getLoopFor(&*I++);
- ASSERT_EQ("loop.0.2", L_0_2.getHeader()->getName());
- Loop &L_1 = *LI.getLoopFor(&*I++);
- ASSERT_EQ("loop.1", L_1.getHeader()->getName());
- Loop &L_1_0 = *LI.getLoopFor(&*I++);
- ASSERT_EQ("loop.1.0", L_1_0.getHeader()->getName());
- Loop &L_1_1 = *LI.getLoopFor(&*I++);
- ASSERT_EQ("loop.1.1", L_1_1.getHeader()->getName());
- Loop &L_1_2 = *LI.getLoopFor(&*I++);
- ASSERT_EQ("loop.1.2", L_1_2.getHeader()->getName());
- auto Preorder = LI.getLoopsInPreorder();
- ASSERT_EQ(8u, Preorder.size());
- EXPECT_EQ(&L_0, Preorder[0]);
- EXPECT_EQ(&L_0_0, Preorder[1]);
- EXPECT_EQ(&L_0_1, Preorder[2]);
- EXPECT_EQ(&L_0_2, Preorder[3]);
- EXPECT_EQ(&L_1, Preorder[4]);
- EXPECT_EQ(&L_1_0, Preorder[5]);
- EXPECT_EQ(&L_1_1, Preorder[6]);
- EXPECT_EQ(&L_1_2, Preorder[7]);
- auto ReverseSiblingPreorder = LI.getLoopsInReverseSiblingPreorder();
- ASSERT_EQ(8u, ReverseSiblingPreorder.size());
- EXPECT_EQ(&L_1, ReverseSiblingPreorder[0]);
- EXPECT_EQ(&L_1_2, ReverseSiblingPreorder[1]);
- EXPECT_EQ(&L_1_1, ReverseSiblingPreorder[2]);
- EXPECT_EQ(&L_1_0, ReverseSiblingPreorder[3]);
- EXPECT_EQ(&L_0, ReverseSiblingPreorder[4]);
- EXPECT_EQ(&L_0_2, ReverseSiblingPreorder[5]);
- EXPECT_EQ(&L_0_1, ReverseSiblingPreorder[6]);
- EXPECT_EQ(&L_0_0, ReverseSiblingPreorder[7]);
- }
- TEST(LoopInfoTest, CanonicalLoop) {
- const char *ModuleStr =
- "define void @foo(i32* %A, i32 %ub) {\n"
- "entry:\n"
- " %guardcmp = icmp slt i32 0, %ub\n"
- " br i1 %guardcmp, label %for.preheader, label %for.end\n"
- "for.preheader:\n"
- " br label %for.body\n"
- "for.body:\n"
- " %i = phi i32 [ 0, %for.preheader ], [ %inc, %for.body ]\n"
- " %idxprom = sext i32 %i to i64\n"
- " %arrayidx = getelementptr inbounds i32, i32* %A, i64 %idxprom\n"
- " store i32 %i, i32* %arrayidx, align 4\n"
- " %inc = add nsw i32 %i, 1\n"
- " %cmp = icmp slt i32 %inc, %ub\n"
- " br i1 %cmp, label %for.body, label %for.exit\n"
- "for.exit:\n"
- " br label %for.end\n"
- "for.end:\n"
- " ret void\n"
- "}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfoPlus(
- *M, "foo",
- [&](Function &F, LoopInfo &LI, ScalarEvolution &SE) {
- Function::iterator FI = F.begin();
- BasicBlock *Entry = &*(FI);
- BranchInst *Guard = dyn_cast<BranchInst>(Entry->getTerminator());
- // First two basic block are entry and for.preheader - skip them.
- ++FI;
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.body");
- Loop *L = LI.getLoopFor(Header);
- EXPECT_NE(L, nullptr);
- Optional<Loop::LoopBounds> Bounds = L->getBounds(SE);
- EXPECT_NE(Bounds, None);
- ConstantInt *InitialIVValue =
- dyn_cast<ConstantInt>(&Bounds->getInitialIVValue());
- EXPECT_TRUE(InitialIVValue && InitialIVValue->isZero());
- EXPECT_EQ(Bounds->getStepInst().getName(), "inc");
- ConstantInt *StepValue =
- dyn_cast_or_null<ConstantInt>(Bounds->getStepValue());
- EXPECT_TRUE(StepValue && StepValue->isOne());
- EXPECT_EQ(Bounds->getFinalIVValue().getName(), "ub");
- EXPECT_EQ(Bounds->getCanonicalPredicate(), ICmpInst::ICMP_SLT);
- EXPECT_EQ(Bounds->getDirection(),
- Loop::LoopBounds::Direction::Increasing);
- EXPECT_EQ(L->getInductionVariable(SE)->getName(), "i");
- EXPECT_EQ(L->getLoopGuardBranch(), Guard);
- EXPECT_TRUE(L->isGuarded());
- });
- }
- TEST(LoopInfoTest, LoopWithInverseGuardSuccs) {
- const char *ModuleStr =
- "define void @foo(i32* %A, i32 %ub) {\n"
- "entry:\n"
- " %guardcmp = icmp sge i32 0, %ub\n"
- " br i1 %guardcmp, label %for.end, label %for.preheader\n"
- "for.preheader:\n"
- " br label %for.body\n"
- "for.body:\n"
- " %i = phi i32 [ 0, %for.preheader ], [ %inc, %for.body ]\n"
- " %idxprom = sext i32 %i to i64\n"
- " %arrayidx = getelementptr inbounds i32, i32* %A, i64 %idxprom\n"
- " store i32 %i, i32* %arrayidx, align 4\n"
- " %inc = add nsw i32 %i, 1\n"
- " %cmp = icmp slt i32 %inc, %ub\n"
- " br i1 %cmp, label %for.body, label %for.exit\n"
- "for.exit:\n"
- " br label %for.end\n"
- "for.end:\n"
- " ret void\n"
- "}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfoPlus(
- *M, "foo",
- [&](Function &F, LoopInfo &LI, ScalarEvolution &SE) {
- Function::iterator FI = F.begin();
- BasicBlock *Entry = &*(FI);
- BranchInst *Guard = dyn_cast<BranchInst>(Entry->getTerminator());
- // First two basic block are entry and for.preheader - skip them.
- ++FI;
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.body");
- Loop *L = LI.getLoopFor(Header);
- EXPECT_NE(L, nullptr);
- Optional<Loop::LoopBounds> Bounds = L->getBounds(SE);
- EXPECT_NE(Bounds, None);
- ConstantInt *InitialIVValue =
- dyn_cast<ConstantInt>(&Bounds->getInitialIVValue());
- EXPECT_TRUE(InitialIVValue && InitialIVValue->isZero());
- EXPECT_EQ(Bounds->getStepInst().getName(), "inc");
- ConstantInt *StepValue =
- dyn_cast_or_null<ConstantInt>(Bounds->getStepValue());
- EXPECT_TRUE(StepValue && StepValue->isOne());
- EXPECT_EQ(Bounds->getFinalIVValue().getName(), "ub");
- EXPECT_EQ(Bounds->getCanonicalPredicate(), ICmpInst::ICMP_SLT);
- EXPECT_EQ(Bounds->getDirection(),
- Loop::LoopBounds::Direction::Increasing);
- EXPECT_EQ(L->getInductionVariable(SE)->getName(), "i");
- EXPECT_EQ(L->getLoopGuardBranch(), Guard);
- EXPECT_TRUE(L->isGuarded());
- });
- }
- TEST(LoopInfoTest, LoopWithSwappedGuardCmp) {
- const char *ModuleStr =
- "define void @foo(i32* %A, i32 %ub) {\n"
- "entry:\n"
- " %guardcmp = icmp sgt i32 %ub, 0\n"
- " br i1 %guardcmp, label %for.preheader, label %for.end\n"
- "for.preheader:\n"
- " br label %for.body\n"
- "for.body:\n"
- " %i = phi i32 [ 0, %for.preheader ], [ %inc, %for.body ]\n"
- " %idxprom = sext i32 %i to i64\n"
- " %arrayidx = getelementptr inbounds i32, i32* %A, i64 %idxprom\n"
- " store i32 %i, i32* %arrayidx, align 4\n"
- " %inc = add nsw i32 %i, 1\n"
- " %cmp = icmp sge i32 %inc, %ub\n"
- " br i1 %cmp, label %for.exit, label %for.body\n"
- "for.exit:\n"
- " br label %for.end\n"
- "for.end:\n"
- " ret void\n"
- "}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfoPlus(
- *M, "foo",
- [&](Function &F, LoopInfo &LI, ScalarEvolution &SE) {
- Function::iterator FI = F.begin();
- BasicBlock *Entry = &*(FI);
- BranchInst *Guard = dyn_cast<BranchInst>(Entry->getTerminator());
- // First two basic block are entry and for.preheader - skip them.
- ++FI;
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.body");
- Loop *L = LI.getLoopFor(Header);
- EXPECT_NE(L, nullptr);
- Optional<Loop::LoopBounds> Bounds = L->getBounds(SE);
- EXPECT_NE(Bounds, None);
- ConstantInt *InitialIVValue =
- dyn_cast<ConstantInt>(&Bounds->getInitialIVValue());
- EXPECT_TRUE(InitialIVValue && InitialIVValue->isZero());
- EXPECT_EQ(Bounds->getStepInst().getName(), "inc");
- ConstantInt *StepValue =
- dyn_cast_or_null<ConstantInt>(Bounds->getStepValue());
- EXPECT_TRUE(StepValue && StepValue->isOne());
- EXPECT_EQ(Bounds->getFinalIVValue().getName(), "ub");
- EXPECT_EQ(Bounds->getCanonicalPredicate(), ICmpInst::ICMP_SLT);
- EXPECT_EQ(Bounds->getDirection(),
- Loop::LoopBounds::Direction::Increasing);
- EXPECT_EQ(L->getInductionVariable(SE)->getName(), "i");
- EXPECT_EQ(L->getLoopGuardBranch(), Guard);
- EXPECT_TRUE(L->isGuarded());
- });
- }
- TEST(LoopInfoTest, LoopWithInverseLatchSuccs) {
- const char *ModuleStr =
- "define void @foo(i32* %A, i32 %ub) {\n"
- "entry:\n"
- " %guardcmp = icmp slt i32 0, %ub\n"
- " br i1 %guardcmp, label %for.preheader, label %for.end\n"
- "for.preheader:\n"
- " br label %for.body\n"
- "for.body:\n"
- " %i = phi i32 [ 0, %for.preheader ], [ %inc, %for.body ]\n"
- " %idxprom = sext i32 %i to i64\n"
- " %arrayidx = getelementptr inbounds i32, i32* %A, i64 %idxprom\n"
- " store i32 %i, i32* %arrayidx, align 4\n"
- " %inc = add nsw i32 %i, 1\n"
- " %cmp = icmp sge i32 %inc, %ub\n"
- " br i1 %cmp, label %for.exit, label %for.body\n"
- "for.exit:\n"
- " br label %for.end\n"
- "for.end:\n"
- " ret void\n"
- "}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfoPlus(
- *M, "foo",
- [&](Function &F, LoopInfo &LI, ScalarEvolution &SE) {
- Function::iterator FI = F.begin();
- BasicBlock *Entry = &*(FI);
- BranchInst *Guard = dyn_cast<BranchInst>(Entry->getTerminator());
- // First two basic block are entry and for.preheader - skip them.
- ++FI;
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.body");
- Loop *L = LI.getLoopFor(Header);
- EXPECT_NE(L, nullptr);
- Optional<Loop::LoopBounds> Bounds = L->getBounds(SE);
- EXPECT_NE(Bounds, None);
- ConstantInt *InitialIVValue =
- dyn_cast<ConstantInt>(&Bounds->getInitialIVValue());
- EXPECT_TRUE(InitialIVValue && InitialIVValue->isZero());
- EXPECT_EQ(Bounds->getStepInst().getName(), "inc");
- ConstantInt *StepValue =
- dyn_cast_or_null<ConstantInt>(Bounds->getStepValue());
- EXPECT_TRUE(StepValue && StepValue->isOne());
- EXPECT_EQ(Bounds->getFinalIVValue().getName(), "ub");
- EXPECT_EQ(Bounds->getCanonicalPredicate(), ICmpInst::ICMP_SLT);
- EXPECT_EQ(Bounds->getDirection(),
- Loop::LoopBounds::Direction::Increasing);
- EXPECT_EQ(L->getInductionVariable(SE)->getName(), "i");
- EXPECT_EQ(L->getLoopGuardBranch(), Guard);
- EXPECT_TRUE(L->isGuarded());
- });
- }
- TEST(LoopInfoTest, LoopWithLatchCmpNE) {
- const char *ModuleStr =
- "define void @foo(i32* %A, i32 %ub) {\n"
- "entry:\n"
- " %guardcmp = icmp slt i32 0, %ub\n"
- " br i1 %guardcmp, label %for.preheader, label %for.end\n"
- "for.preheader:\n"
- " br label %for.body\n"
- "for.body:\n"
- " %i = phi i32 [ 0, %for.preheader ], [ %inc, %for.body ]\n"
- " %idxprom = sext i32 %i to i64\n"
- " %arrayidx = getelementptr inbounds i32, i32* %A, i64 %idxprom\n"
- " store i32 %i, i32* %arrayidx, align 4\n"
- " %inc = add nsw i32 %i, 1\n"
- " %cmp = icmp ne i32 %i, %ub\n"
- " br i1 %cmp, label %for.body, label %for.exit\n"
- "for.exit:\n"
- " br label %for.end\n"
- "for.end:\n"
- " ret void\n"
- "}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfoPlus(
- *M, "foo",
- [&](Function &F, LoopInfo &LI, ScalarEvolution &SE) {
- Function::iterator FI = F.begin();
- BasicBlock *Entry = &*(FI);
- BranchInst *Guard = dyn_cast<BranchInst>(Entry->getTerminator());
- // First two basic block are entry and for.preheader - skip them.
- ++FI;
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.body");
- Loop *L = LI.getLoopFor(Header);
- EXPECT_NE(L, nullptr);
- Optional<Loop::LoopBounds> Bounds = L->getBounds(SE);
- EXPECT_NE(Bounds, None);
- ConstantInt *InitialIVValue =
- dyn_cast<ConstantInt>(&Bounds->getInitialIVValue());
- EXPECT_TRUE(InitialIVValue && InitialIVValue->isZero());
- EXPECT_EQ(Bounds->getStepInst().getName(), "inc");
- ConstantInt *StepValue =
- dyn_cast_or_null<ConstantInt>(Bounds->getStepValue());
- EXPECT_TRUE(StepValue && StepValue->isOne());
- EXPECT_EQ(Bounds->getFinalIVValue().getName(), "ub");
- EXPECT_EQ(Bounds->getCanonicalPredicate(), ICmpInst::ICMP_SLT);
- EXPECT_EQ(Bounds->getDirection(),
- Loop::LoopBounds::Direction::Increasing);
- EXPECT_EQ(L->getInductionVariable(SE)->getName(), "i");
- EXPECT_EQ(L->getLoopGuardBranch(), Guard);
- EXPECT_TRUE(L->isGuarded());
- });
- }
- TEST(LoopInfoTest, LoopWithGuardCmpSLE) {
- const char *ModuleStr =
- "define void @foo(i32* %A, i32 %ub) {\n"
- "entry:\n"
- " %ubPlusOne = add i32 %ub, 1\n"
- " %guardcmp = icmp sle i32 0, %ub\n"
- " br i1 %guardcmp, label %for.preheader, label %for.end\n"
- "for.preheader:\n"
- " br label %for.body\n"
- "for.body:\n"
- " %i = phi i32 [ 0, %for.preheader ], [ %inc, %for.body ]\n"
- " %idxprom = sext i32 %i to i64\n"
- " %arrayidx = getelementptr inbounds i32, i32* %A, i64 %idxprom\n"
- " store i32 %i, i32* %arrayidx, align 4\n"
- " %inc = add nsw i32 %i, 1\n"
- " %cmp = icmp ne i32 %i, %ubPlusOne\n"
- " br i1 %cmp, label %for.body, label %for.exit\n"
- "for.exit:\n"
- " br label %for.end\n"
- "for.end:\n"
- " ret void\n"
- "}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfoPlus(
- *M, "foo",
- [&](Function &F, LoopInfo &LI, ScalarEvolution &SE) {
- Function::iterator FI = F.begin();
- BasicBlock *Entry = &*(FI);
- BranchInst *Guard = dyn_cast<BranchInst>(Entry->getTerminator());
- // First two basic block are entry and for.preheader - skip them.
- ++FI;
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.body");
- Loop *L = LI.getLoopFor(Header);
- EXPECT_NE(L, nullptr);
- Optional<Loop::LoopBounds> Bounds = L->getBounds(SE);
- EXPECT_NE(Bounds, None);
- ConstantInt *InitialIVValue =
- dyn_cast<ConstantInt>(&Bounds->getInitialIVValue());
- EXPECT_TRUE(InitialIVValue && InitialIVValue->isZero());
- EXPECT_EQ(Bounds->getStepInst().getName(), "inc");
- ConstantInt *StepValue =
- dyn_cast_or_null<ConstantInt>(Bounds->getStepValue());
- EXPECT_TRUE(StepValue && StepValue->isOne());
- EXPECT_EQ(Bounds->getFinalIVValue().getName(), "ubPlusOne");
- EXPECT_EQ(Bounds->getCanonicalPredicate(), ICmpInst::ICMP_SLT);
- EXPECT_EQ(Bounds->getDirection(),
- Loop::LoopBounds::Direction::Increasing);
- EXPECT_EQ(L->getInductionVariable(SE)->getName(), "i");
- EXPECT_EQ(L->getLoopGuardBranch(), Guard);
- EXPECT_TRUE(L->isGuarded());
- });
- }
- TEST(LoopInfoTest, LoopNonConstantStep) {
- const char *ModuleStr =
- "define void @foo(i32* %A, i32 %ub, i32 %step) {\n"
- "entry:\n"
- " %guardcmp = icmp slt i32 0, %ub\n"
- " br i1 %guardcmp, label %for.preheader, label %for.end\n"
- "for.preheader:\n"
- " br label %for.body\n"
- "for.body:\n"
- " %i = phi i32 [ 0, %for.preheader ], [ %inc, %for.body ]\n"
- " %idxprom = zext i32 %i to i64\n"
- " %arrayidx = getelementptr inbounds i32, i32* %A, i64 %idxprom\n"
- " store i32 %i, i32* %arrayidx, align 4\n"
- " %inc = add nsw i32 %i, %step\n"
- " %cmp = icmp slt i32 %inc, %ub\n"
- " br i1 %cmp, label %for.body, label %for.exit\n"
- "for.exit:\n"
- " br label %for.end\n"
- "for.end:\n"
- " ret void\n"
- "}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfoPlus(
- *M, "foo",
- [&](Function &F, LoopInfo &LI, ScalarEvolution &SE) {
- Function::iterator FI = F.begin();
- BasicBlock *Entry = &*(FI);
- BranchInst *Guard = dyn_cast<BranchInst>(Entry->getTerminator());
- // First two basic block are entry and for.preheader - skip them.
- ++FI;
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.body");
- Loop *L = LI.getLoopFor(Header);
- EXPECT_NE(L, nullptr);
- Optional<Loop::LoopBounds> Bounds = L->getBounds(SE);
- EXPECT_NE(Bounds, None);
- ConstantInt *InitialIVValue =
- dyn_cast<ConstantInt>(&Bounds->getInitialIVValue());
- EXPECT_TRUE(InitialIVValue && InitialIVValue->isZero());
- EXPECT_EQ(Bounds->getStepInst().getName(), "inc");
- EXPECT_EQ(Bounds->getStepValue()->getName(), "step");
- EXPECT_EQ(Bounds->getFinalIVValue().getName(), "ub");
- EXPECT_EQ(Bounds->getCanonicalPredicate(), ICmpInst::ICMP_SLT);
- EXPECT_EQ(Bounds->getDirection(), Loop::LoopBounds::Direction::Unknown);
- EXPECT_EQ(L->getInductionVariable(SE)->getName(), "i");
- EXPECT_EQ(L->getLoopGuardBranch(), Guard);
- EXPECT_TRUE(L->isGuarded());
- });
- }
- TEST(LoopInfoTest, LoopUnsignedBounds) {
- const char *ModuleStr =
- "define void @foo(i32* %A, i32 %ub) {\n"
- "entry:\n"
- " %guardcmp = icmp ult i32 0, %ub\n"
- " br i1 %guardcmp, label %for.preheader, label %for.end\n"
- "for.preheader:\n"
- " br label %for.body\n"
- "for.body:\n"
- " %i = phi i32 [ 0, %for.preheader ], [ %inc, %for.body ]\n"
- " %idxprom = zext i32 %i to i64\n"
- " %arrayidx = getelementptr inbounds i32, i32* %A, i64 %idxprom\n"
- " store i32 %i, i32* %arrayidx, align 4\n"
- " %inc = add i32 %i, 1\n"
- " %cmp = icmp ult i32 %inc, %ub\n"
- " br i1 %cmp, label %for.body, label %for.exit\n"
- "for.exit:\n"
- " br label %for.end\n"
- "for.end:\n"
- " ret void\n"
- "}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfoPlus(
- *M, "foo",
- [&](Function &F, LoopInfo &LI, ScalarEvolution &SE) {
- Function::iterator FI = F.begin();
- BasicBlock *Entry = &*(FI);
- BranchInst *Guard = dyn_cast<BranchInst>(Entry->getTerminator());
- // First two basic block are entry and for.preheader - skip them.
- ++FI;
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.body");
- Loop *L = LI.getLoopFor(Header);
- EXPECT_NE(L, nullptr);
- Optional<Loop::LoopBounds> Bounds = L->getBounds(SE);
- EXPECT_NE(Bounds, None);
- ConstantInt *InitialIVValue =
- dyn_cast<ConstantInt>(&Bounds->getInitialIVValue());
- EXPECT_TRUE(InitialIVValue && InitialIVValue->isZero());
- EXPECT_EQ(Bounds->getStepInst().getName(), "inc");
- ConstantInt *StepValue =
- dyn_cast_or_null<ConstantInt>(Bounds->getStepValue());
- EXPECT_TRUE(StepValue && StepValue->isOne());
- EXPECT_EQ(Bounds->getFinalIVValue().getName(), "ub");
- EXPECT_EQ(Bounds->getCanonicalPredicate(), ICmpInst::ICMP_ULT);
- EXPECT_EQ(Bounds->getDirection(),
- Loop::LoopBounds::Direction::Increasing);
- EXPECT_EQ(L->getInductionVariable(SE)->getName(), "i");
- EXPECT_EQ(L->getLoopGuardBranch(), Guard);
- EXPECT_TRUE(L->isGuarded());
- });
- }
- TEST(LoopInfoTest, DecreasingLoop) {
- const char *ModuleStr =
- "define void @foo(i32* %A, i32 %ub) {\n"
- "entry:\n"
- " %guardcmp = icmp slt i32 0, %ub\n"
- " br i1 %guardcmp, label %for.preheader, label %for.end\n"
- "for.preheader:\n"
- " br label %for.body\n"
- "for.body:\n"
- " %i = phi i32 [ %ub, %for.preheader ], [ %inc, %for.body ]\n"
- " %idxprom = sext i32 %i to i64\n"
- " %arrayidx = getelementptr inbounds i32, i32* %A, i64 %idxprom\n"
- " store i32 %i, i32* %arrayidx, align 4\n"
- " %inc = sub nsw i32 %i, 1\n"
- " %cmp = icmp sgt i32 %inc, 0\n"
- " br i1 %cmp, label %for.body, label %for.exit\n"
- "for.exit:\n"
- " br label %for.end\n"
- "for.end:\n"
- " ret void\n"
- "}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfoPlus(
- *M, "foo",
- [&](Function &F, LoopInfo &LI, ScalarEvolution &SE) {
- Function::iterator FI = F.begin();
- BasicBlock *Entry = &*(FI);
- BranchInst *Guard = dyn_cast<BranchInst>(Entry->getTerminator());
- // First two basic block are entry and for.preheader - skip them.
- ++FI;
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.body");
- Loop *L = LI.getLoopFor(Header);
- EXPECT_NE(L, nullptr);
- Optional<Loop::LoopBounds> Bounds = L->getBounds(SE);
- EXPECT_NE(Bounds, None);
- EXPECT_EQ(Bounds->getInitialIVValue().getName(), "ub");
- EXPECT_EQ(Bounds->getStepInst().getName(), "inc");
- ConstantInt *StepValue =
- dyn_cast_or_null<ConstantInt>(Bounds->getStepValue());
- EXPECT_EQ(StepValue, nullptr);
- ConstantInt *FinalIVValue =
- dyn_cast<ConstantInt>(&Bounds->getFinalIVValue());
- EXPECT_TRUE(FinalIVValue && FinalIVValue->isZero());
- EXPECT_EQ(Bounds->getCanonicalPredicate(), ICmpInst::ICMP_SGT);
- EXPECT_EQ(Bounds->getDirection(),
- Loop::LoopBounds::Direction::Decreasing);
- EXPECT_EQ(L->getInductionVariable(SE)->getName(), "i");
- EXPECT_EQ(L->getLoopGuardBranch(), Guard);
- EXPECT_TRUE(L->isGuarded());
- });
- }
- TEST(LoopInfoTest, CannotFindDirection) {
- const char *ModuleStr =
- "define void @foo(i32* %A, i32 %ub, i32 %step) {\n"
- "entry:\n"
- " %guardcmp = icmp slt i32 0, %ub\n"
- " br i1 %guardcmp, label %for.preheader, label %for.end\n"
- "for.preheader:\n"
- " br label %for.body\n"
- "for.body:\n"
- " %i = phi i32 [ 0, %for.preheader ], [ %inc, %for.body ]\n"
- " %idxprom = sext i32 %i to i64\n"
- " %arrayidx = getelementptr inbounds i32, i32* %A, i64 %idxprom\n"
- " store i32 %i, i32* %arrayidx, align 4\n"
- " %inc = add nsw i32 %i, %step\n"
- " %cmp = icmp ne i32 %i, %ub\n"
- " br i1 %cmp, label %for.body, label %for.exit\n"
- "for.exit:\n"
- " br label %for.end\n"
- "for.end:\n"
- " ret void\n"
- "}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfoPlus(
- *M, "foo",
- [&](Function &F, LoopInfo &LI, ScalarEvolution &SE) {
- Function::iterator FI = F.begin();
- BasicBlock *Entry = &*(FI);
- BranchInst *Guard = dyn_cast<BranchInst>(Entry->getTerminator());
- // First two basic block are entry and for.preheader
- // - skip them.
- ++FI;
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.body");
- Loop *L = LI.getLoopFor(Header);
- EXPECT_NE(L, nullptr);
- Optional<Loop::LoopBounds> Bounds = L->getBounds(SE);
- EXPECT_NE(Bounds, None);
- ConstantInt *InitialIVValue =
- dyn_cast<ConstantInt>(&Bounds->getInitialIVValue());
- EXPECT_TRUE(InitialIVValue && InitialIVValue->isZero());
- EXPECT_EQ(Bounds->getStepInst().getName(), "inc");
- EXPECT_EQ(Bounds->getStepValue()->getName(), "step");
- EXPECT_EQ(Bounds->getFinalIVValue().getName(), "ub");
- EXPECT_EQ(Bounds->getCanonicalPredicate(),
- ICmpInst::BAD_ICMP_PREDICATE);
- EXPECT_EQ(Bounds->getDirection(), Loop::LoopBounds::Direction::Unknown);
- EXPECT_EQ(L->getInductionVariable(SE)->getName(), "i");
- EXPECT_EQ(L->getLoopGuardBranch(), Guard);
- EXPECT_TRUE(L->isGuarded());
- });
- }
- TEST(LoopInfoTest, ZextIndVar) {
- const char *ModuleStr =
- "define void @foo(i32* %A, i32 %ub) {\n"
- "entry:\n"
- " %guardcmp = icmp slt i32 0, %ub\n"
- " br i1 %guardcmp, label %for.preheader, label %for.end\n"
- "for.preheader:\n"
- " br label %for.body\n"
- "for.body:\n"
- " %indvars.iv = phi i64 [ 0, %for.preheader ], [ %indvars.iv.next, %for.body ]\n"
- " %i = phi i32 [ 0, %for.preheader ], [ %inc, %for.body ]\n"
- " %idxprom = sext i32 %i to i64\n"
- " %arrayidx = getelementptr inbounds i32, i32* %A, i64 %idxprom\n"
- " store i32 %i, i32* %arrayidx, align 4\n"
- " %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1\n"
- " %inc = add nsw i32 %i, 1\n"
- " %wide.trip.count = zext i32 %ub to i64\n"
- " %exitcond = icmp ne i64 %indvars.iv.next, %wide.trip.count\n"
- " br i1 %exitcond, label %for.body, label %for.exit\n"
- "for.exit:\n"
- " br label %for.end\n"
- "for.end:\n"
- " ret void\n"
- "}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfoPlus(
- *M, "foo",
- [&](Function &F, LoopInfo &LI, ScalarEvolution &SE) {
- Function::iterator FI = F.begin();
- BasicBlock *Entry = &*(FI);
- BranchInst *Guard = dyn_cast<BranchInst>(Entry->getTerminator());
- // First two basic block are entry and for.preheader - skip them.
- ++FI;
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.body");
- Loop *L = LI.getLoopFor(Header);
- EXPECT_NE(L, nullptr);
- Optional<Loop::LoopBounds> Bounds = L->getBounds(SE);
- EXPECT_NE(Bounds, None);
- ConstantInt *InitialIVValue =
- dyn_cast<ConstantInt>(&Bounds->getInitialIVValue());
- EXPECT_TRUE(InitialIVValue && InitialIVValue->isZero());
- EXPECT_EQ(Bounds->getStepInst().getName(), "indvars.iv.next");
- ConstantInt *StepValue =
- dyn_cast_or_null<ConstantInt>(Bounds->getStepValue());
- EXPECT_TRUE(StepValue && StepValue->isOne());
- EXPECT_EQ(Bounds->getFinalIVValue().getName(), "wide.trip.count");
- EXPECT_EQ(Bounds->getCanonicalPredicate(), ICmpInst::ICMP_NE);
- EXPECT_EQ(Bounds->getDirection(),
- Loop::LoopBounds::Direction::Increasing);
- EXPECT_EQ(L->getInductionVariable(SE)->getName(), "indvars.iv");
- EXPECT_EQ(L->getLoopGuardBranch(), Guard);
- EXPECT_TRUE(L->isGuarded());
- });
- }
- TEST(LoopInfoTest, MultiExitingLoop) {
- const char *ModuleStr =
- "define void @foo(i32* %A, i32 %ub, i1 %cond) {\n"
- "entry:\n"
- " %guardcmp = icmp slt i32 0, %ub\n"
- " br i1 %guardcmp, label %for.preheader, label %for.end\n"
- "for.preheader:\n"
- " br label %for.body\n"
- "for.body:\n"
- " %i = phi i32 [ 0, %for.preheader ], [ %inc, %for.body.1 ]\n"
- " br i1 %cond, label %for.body.1, label %for.exit\n"
- "for.body.1:\n"
- " %idxprom = sext i32 %i to i64\n"
- " %arrayidx = getelementptr inbounds i32, i32* %A, i64 %idxprom\n"
- " store i32 %i, i32* %arrayidx, align 4\n"
- " %inc = add nsw i32 %i, 1\n"
- " %cmp = icmp slt i32 %inc, %ub\n"
- " br i1 %cmp, label %for.body, label %for.exit\n"
- "for.exit:\n"
- " br label %for.end\n"
- "for.end:\n"
- " ret void\n"
- "}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfoPlus(
- *M, "foo",
- [&](Function &F, LoopInfo &LI, ScalarEvolution &SE) {
- Function::iterator FI = F.begin();
- BasicBlock *Entry = &*(FI);
- BranchInst *Guard = dyn_cast<BranchInst>(Entry->getTerminator());
- // First two basic block are entry and for.preheader - skip them.
- ++FI;
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.body");
- Loop *L = LI.getLoopFor(Header);
- EXPECT_NE(L, nullptr);
- Optional<Loop::LoopBounds> Bounds = L->getBounds(SE);
- EXPECT_NE(Bounds, None);
- ConstantInt *InitialIVValue =
- dyn_cast<ConstantInt>(&Bounds->getInitialIVValue());
- EXPECT_TRUE(InitialIVValue && InitialIVValue->isZero());
- EXPECT_EQ(Bounds->getStepInst().getName(), "inc");
- ConstantInt *StepValue =
- dyn_cast_or_null<ConstantInt>(Bounds->getStepValue());
- EXPECT_TRUE(StepValue && StepValue->isOne());
- EXPECT_EQ(Bounds->getFinalIVValue().getName(), "ub");
- EXPECT_EQ(Bounds->getCanonicalPredicate(), ICmpInst::ICMP_SLT);
- EXPECT_EQ(Bounds->getDirection(),
- Loop::LoopBounds::Direction::Increasing);
- EXPECT_EQ(L->getInductionVariable(SE)->getName(), "i");
- EXPECT_EQ(L->getLoopGuardBranch(), Guard);
- EXPECT_TRUE(L->isGuarded());
- });
- }
- TEST(LoopInfoTest, MultiExitLoop) {
- const char *ModuleStr =
- "define void @foo(i32* %A, i32 %ub, i1 %cond) {\n"
- "entry:\n"
- " %guardcmp = icmp slt i32 0, %ub\n"
- " br i1 %guardcmp, label %for.preheader, label %for.end\n"
- "for.preheader:\n"
- " br label %for.body\n"
- "for.body:\n"
- " %i = phi i32 [ 0, %for.preheader ], [ %inc, %for.body.1 ]\n"
- " br i1 %cond, label %for.body.1, label %for.exit\n"
- "for.body.1:\n"
- " %idxprom = sext i32 %i to i64\n"
- " %arrayidx = getelementptr inbounds i32, i32* %A, i64 %idxprom\n"
- " store i32 %i, i32* %arrayidx, align 4\n"
- " %inc = add nsw i32 %i, 1\n"
- " %cmp = icmp slt i32 %inc, %ub\n"
- " br i1 %cmp, label %for.body, label %for.exit.1\n"
- "for.exit:\n"
- " br label %for.end\n"
- "for.exit.1:\n"
- " br label %for.end\n"
- "for.end:\n"
- " ret void\n"
- "}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfoPlus(
- *M, "foo",
- [&](Function &F, LoopInfo &LI, ScalarEvolution &SE) {
- Function::iterator FI = F.begin();
- // First two basic block are entry and for.preheader - skip them.
- ++FI;
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.body");
- Loop *L = LI.getLoopFor(Header);
- EXPECT_NE(L, nullptr);
- Optional<Loop::LoopBounds> Bounds = L->getBounds(SE);
- EXPECT_NE(Bounds, None);
- ConstantInt *InitialIVValue =
- dyn_cast<ConstantInt>(&Bounds->getInitialIVValue());
- EXPECT_TRUE(InitialIVValue && InitialIVValue->isZero());
- EXPECT_EQ(Bounds->getStepInst().getName(), "inc");
- ConstantInt *StepValue =
- dyn_cast_or_null<ConstantInt>(Bounds->getStepValue());
- EXPECT_TRUE(StepValue && StepValue->isOne());
- EXPECT_EQ(Bounds->getFinalIVValue().getName(), "ub");
- EXPECT_EQ(Bounds->getCanonicalPredicate(), ICmpInst::ICMP_SLT);
- EXPECT_EQ(Bounds->getDirection(),
- Loop::LoopBounds::Direction::Increasing);
- EXPECT_EQ(L->getInductionVariable(SE)->getName(), "i");
- EXPECT_EQ(L->getLoopGuardBranch(), nullptr);
- EXPECT_FALSE(L->isGuarded());
- });
- }
- TEST(LoopInfoTest, UnguardedLoop) {
- const char *ModuleStr =
- "define void @foo(i32* %A, i32 %ub) {\n"
- "entry:\n"
- " br label %for.body\n"
- "for.body:\n"
- " %i = phi i32 [ 0, %entry ], [ %inc, %for.body ]\n"
- " %idxprom = sext i32 %i to i64\n"
- " %arrayidx = getelementptr inbounds i32, i32* %A, i64 %idxprom\n"
- " store i32 %i, i32* %arrayidx, align 4\n"
- " %inc = add nsw i32 %i, 1\n"
- " %cmp = icmp slt i32 %inc, %ub\n"
- " br i1 %cmp, label %for.body, label %for.exit\n"
- "for.exit:\n"
- " br label %for.end\n"
- "for.end:\n"
- " ret void\n"
- "}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfoPlus(
- *M, "foo",
- [&](Function &F, LoopInfo &LI, ScalarEvolution &SE) {
- Function::iterator FI = F.begin();
- // First basic block is entry - skip it.
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.body");
- Loop *L = LI.getLoopFor(Header);
- EXPECT_NE(L, nullptr);
- Optional<Loop::LoopBounds> Bounds = L->getBounds(SE);
- EXPECT_NE(Bounds, None);
- ConstantInt *InitialIVValue =
- dyn_cast<ConstantInt>(&Bounds->getInitialIVValue());
- EXPECT_TRUE(InitialIVValue && InitialIVValue->isZero());
- EXPECT_EQ(Bounds->getStepInst().getName(), "inc");
- ConstantInt *StepValue =
- dyn_cast_or_null<ConstantInt>(Bounds->getStepValue());
- EXPECT_TRUE(StepValue && StepValue->isOne());
- EXPECT_EQ(Bounds->getFinalIVValue().getName(), "ub");
- EXPECT_EQ(Bounds->getCanonicalPredicate(), ICmpInst::ICMP_SLT);
- EXPECT_EQ(Bounds->getDirection(),
- Loop::LoopBounds::Direction::Increasing);
- EXPECT_EQ(L->getInductionVariable(SE)->getName(), "i");
- EXPECT_EQ(L->getLoopGuardBranch(), nullptr);
- EXPECT_FALSE(L->isGuarded());
- });
- }
- TEST(LoopInfoTest, UnguardedLoopWithControlFlow) {
- const char *ModuleStr =
- "define void @foo(i32* %A, i32 %ub, i1 %cond) {\n"
- "entry:\n"
- " br i1 %cond, label %for.preheader, label %for.end\n"
- "for.preheader:\n"
- " br label %for.body\n"
- "for.body:\n"
- " %i = phi i32 [ 0, %for.preheader ], [ %inc, %for.body ]\n"
- " %idxprom = sext i32 %i to i64\n"
- " %arrayidx = getelementptr inbounds i32, i32* %A, i64 %idxprom\n"
- " store i32 %i, i32* %arrayidx, align 4\n"
- " %inc = add nsw i32 %i, 1\n"
- " %cmp = icmp slt i32 %inc, %ub\n"
- " br i1 %cmp, label %for.body, label %for.exit\n"
- "for.exit:\n"
- " br label %for.end\n"
- "for.end:\n"
- " ret void\n"
- "}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfoPlus(
- *M, "foo",
- [&](Function &F, LoopInfo &LI, ScalarEvolution &SE) {
- Function::iterator FI = F.begin();
- BasicBlock *Entry = &*(FI);
- BranchInst *Guard = dyn_cast<BranchInst>(Entry->getTerminator());
- // First two basic block are entry and for.preheader - skip them.
- ++FI;
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.body");
- Loop *L = LI.getLoopFor(Header);
- EXPECT_NE(L, nullptr);
- Optional<Loop::LoopBounds> Bounds = L->getBounds(SE);
- EXPECT_NE(Bounds, None);
- ConstantInt *InitialIVValue =
- dyn_cast<ConstantInt>(&Bounds->getInitialIVValue());
- EXPECT_TRUE(InitialIVValue && InitialIVValue->isZero());
- EXPECT_EQ(Bounds->getStepInst().getName(), "inc");
- ConstantInt *StepValue =
- dyn_cast_or_null<ConstantInt>(Bounds->getStepValue());
- EXPECT_TRUE(StepValue && StepValue->isOne());
- EXPECT_EQ(Bounds->getFinalIVValue().getName(), "ub");
- EXPECT_EQ(Bounds->getCanonicalPredicate(), ICmpInst::ICMP_SLT);
- EXPECT_EQ(Bounds->getDirection(),
- Loop::LoopBounds::Direction::Increasing);
- EXPECT_EQ(L->getInductionVariable(SE)->getName(), "i");
- EXPECT_EQ(L->getLoopGuardBranch(), Guard);
- EXPECT_TRUE(L->isGuarded());
- });
- }
- TEST(LoopInfoTest, LoopNest) {
- const char *ModuleStr =
- "define void @foo(i32* %A, i32 %ub) {\n"
- "entry:\n"
- " %guardcmp = icmp slt i32 0, %ub\n"
- " br i1 %guardcmp, label %for.outer.preheader, label %for.end\n"
- "for.outer.preheader:\n"
- " br label %for.outer\n"
- "for.outer:\n"
- " %j = phi i32 [ 0, %for.outer.preheader ], [ %inc.outer, %for.outer.latch ]\n"
- " br i1 %guardcmp, label %for.inner.preheader, label %for.outer.latch\n"
- "for.inner.preheader:\n"
- " br label %for.inner\n"
- "for.inner:\n"
- " %i = phi i32 [ 0, %for.inner.preheader ], [ %inc, %for.inner ]\n"
- " %idxprom = sext i32 %i to i64\n"
- " %arrayidx = getelementptr inbounds i32, i32* %A, i64 %idxprom\n"
- " store i32 %i, i32* %arrayidx, align 4\n"
- " %inc = add nsw i32 %i, 1\n"
- " %cmp = icmp slt i32 %inc, %ub\n"
- " br i1 %cmp, label %for.inner, label %for.inner.exit\n"
- "for.inner.exit:\n"
- " br label %for.outer.latch\n"
- "for.outer.latch:\n"
- " %inc.outer = add nsw i32 %j, 1\n"
- " %cmp.outer = icmp slt i32 %inc.outer, %ub\n"
- " br i1 %cmp.outer, label %for.outer, label %for.outer.exit\n"
- "for.outer.exit:\n"
- " br label %for.end\n"
- "for.end:\n"
- " ret void\n"
- "}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfoPlus(
- *M, "foo",
- [&](Function &F, LoopInfo &LI, ScalarEvolution &SE) {
- Function::iterator FI = F.begin();
- BasicBlock *Entry = &*(FI);
- BranchInst *OuterGuard = dyn_cast<BranchInst>(Entry->getTerminator());
- // First two basic block are entry and for.outer.preheader - skip them.
- ++FI;
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.outer");
- BranchInst *InnerGuard = dyn_cast<BranchInst>(Header->getTerminator());
- Loop *L = LI.getLoopFor(Header);
- EXPECT_NE(L, nullptr);
- Optional<Loop::LoopBounds> Bounds = L->getBounds(SE);
- EXPECT_NE(Bounds, None);
- ConstantInt *InitialIVValue =
- dyn_cast<ConstantInt>(&Bounds->getInitialIVValue());
- EXPECT_TRUE(InitialIVValue && InitialIVValue->isZero());
- EXPECT_EQ(Bounds->getStepInst().getName(), "inc.outer");
- ConstantInt *StepValue =
- dyn_cast_or_null<ConstantInt>(Bounds->getStepValue());
- EXPECT_TRUE(StepValue && StepValue->isOne());
- EXPECT_EQ(Bounds->getFinalIVValue().getName(), "ub");
- EXPECT_EQ(Bounds->getCanonicalPredicate(), ICmpInst::ICMP_SLT);
- EXPECT_EQ(Bounds->getDirection(),
- Loop::LoopBounds::Direction::Increasing);
- EXPECT_EQ(L->getInductionVariable(SE)->getName(), "j");
- EXPECT_EQ(L->getLoopGuardBranch(), OuterGuard);
- EXPECT_TRUE(L->isGuarded());
- // Next two basic blocks are for.outer and for.inner.preheader - skip
- // them.
- ++FI;
- Header = &*(++FI);
- assert(Header->getName() == "for.inner");
- L = LI.getLoopFor(Header);
- EXPECT_NE(L, nullptr);
- Optional<Loop::LoopBounds> InnerBounds = L->getBounds(SE);
- EXPECT_NE(InnerBounds, None);
- InitialIVValue =
- dyn_cast<ConstantInt>(&InnerBounds->getInitialIVValue());
- EXPECT_TRUE(InitialIVValue && InitialIVValue->isZero());
- EXPECT_EQ(InnerBounds->getStepInst().getName(), "inc");
- StepValue = dyn_cast_or_null<ConstantInt>(InnerBounds->getStepValue());
- EXPECT_TRUE(StepValue && StepValue->isOne());
- EXPECT_EQ(InnerBounds->getFinalIVValue().getName(), "ub");
- EXPECT_EQ(InnerBounds->getCanonicalPredicate(), ICmpInst::ICMP_SLT);
- EXPECT_EQ(InnerBounds->getDirection(),
- Loop::LoopBounds::Direction::Increasing);
- EXPECT_EQ(L->getInductionVariable(SE)->getName(), "i");
- EXPECT_EQ(L->getLoopGuardBranch(), InnerGuard);
- EXPECT_TRUE(L->isGuarded());
- });
- }
- TEST(LoopInfoTest, AuxiliaryIV) {
- const char *ModuleStr =
- "define void @foo(i32* %A, i32 %ub) {\n"
- "entry:\n"
- " %guardcmp = icmp slt i32 0, %ub\n"
- " br i1 %guardcmp, label %for.preheader, label %for.end\n"
- "for.preheader:\n"
- " br label %for.body\n"
- "for.body:\n"
- " %i = phi i32 [ 0, %for.preheader ], [ %inc, %for.body ]\n"
- " %aux = phi i32 [ 0, %for.preheader ], [ %auxinc, %for.body ]\n"
- " %loopvariant = phi i32 [ 0, %for.preheader ], [ %loopvariantinc, %for.body ]\n"
- " %usedoutside = phi i32 [ 0, %for.preheader ], [ %usedoutsideinc, %for.body ]\n"
- " %mulopcode = phi i32 [ 0, %for.preheader ], [ %mulopcodeinc, %for.body ]\n"
- " %idxprom = sext i32 %i to i64\n"
- " %arrayidx = getelementptr inbounds i32, i32* %A, i64 %idxprom\n"
- " store i32 %i, i32* %arrayidx, align 4\n"
- " %mulopcodeinc = mul nsw i32 %mulopcode, 5\n"
- " %usedoutsideinc = add nsw i32 %usedoutside, 5\n"
- " %loopvariantinc = add nsw i32 %loopvariant, %i\n"
- " %auxinc = add nsw i32 %aux, 5\n"
- " %inc = add nsw i32 %i, 1\n"
- " %cmp = icmp slt i32 %inc, %ub\n"
- " br i1 %cmp, label %for.body, label %for.exit\n"
- "for.exit:\n"
- " %lcssa = phi i32 [ %usedoutside, %for.body ]\n"
- " br label %for.end\n"
- "for.end:\n"
- " ret void\n"
- "}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfoPlus(
- *M, "foo",
- [&](Function &F, LoopInfo &LI, ScalarEvolution &SE) {
- Function::iterator FI = F.begin();
- BasicBlock *Entry = &*(FI);
- BranchInst *Guard = dyn_cast<BranchInst>(Entry->getTerminator());
- // First two basic block are entry and for.preheader - skip them.
- ++FI;
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.body");
- Loop *L = LI.getLoopFor(Header);
- EXPECT_NE(L, nullptr);
- Optional<Loop::LoopBounds> Bounds = L->getBounds(SE);
- EXPECT_NE(Bounds, None);
- ConstantInt *InitialIVValue =
- dyn_cast<ConstantInt>(&Bounds->getInitialIVValue());
- EXPECT_TRUE(InitialIVValue && InitialIVValue->isZero());
- EXPECT_EQ(Bounds->getStepInst().getName(), "inc");
- ConstantInt *StepValue =
- dyn_cast_or_null<ConstantInt>(Bounds->getStepValue());
- EXPECT_TRUE(StepValue && StepValue->isOne());
- EXPECT_EQ(Bounds->getFinalIVValue().getName(), "ub");
- EXPECT_EQ(Bounds->getCanonicalPredicate(), ICmpInst::ICMP_SLT);
- EXPECT_EQ(Bounds->getDirection(),
- Loop::LoopBounds::Direction::Increasing);
- EXPECT_EQ(L->getInductionVariable(SE)->getName(), "i");
- BasicBlock::iterator II = Header->begin();
- PHINode &Instruction_i = cast<PHINode>(*(II));
- EXPECT_TRUE(L->isAuxiliaryInductionVariable(Instruction_i, SE));
- PHINode &Instruction_aux = cast<PHINode>(*(++II));
- EXPECT_TRUE(L->isAuxiliaryInductionVariable(Instruction_aux, SE));
- PHINode &Instruction_loopvariant = cast<PHINode>(*(++II));
- EXPECT_FALSE(
- L->isAuxiliaryInductionVariable(Instruction_loopvariant, SE));
- PHINode &Instruction_usedoutside = cast<PHINode>(*(++II));
- EXPECT_FALSE(
- L->isAuxiliaryInductionVariable(Instruction_usedoutside, SE));
- PHINode &Instruction_mulopcode = cast<PHINode>(*(++II));
- EXPECT_FALSE(
- L->isAuxiliaryInductionVariable(Instruction_mulopcode, SE));
- EXPECT_EQ(L->getLoopGuardBranch(), Guard);
- EXPECT_TRUE(L->isGuarded());
- });
- }
- TEST(LoopInfoTest, LoopNotInSimplifyForm) {
- const char *ModuleStr =
- "define void @foo(i32 %n) {\n"
- "entry:\n"
- " %guard.cmp = icmp sgt i32 %n, 0\n"
- " br i1 %guard.cmp, label %for.cond, label %for.end\n"
- "for.cond:\n"
- " %i.0 = phi i32 [ 0, %entry ], [ %inc, %latch.1 ], [ %inc, %latch.2 ]\n"
- " %inc = add nsw i32 %i.0, 1\n"
- " %cmp = icmp slt i32 %i.0, %n\n"
- " br i1 %cmp, label %latch.1, label %for.end\n"
- "latch.1:\n"
- " br i1 undef, label %for.cond, label %latch.2\n"
- "latch.2:\n"
- " br label %for.cond\n"
- "for.end:\n"
- " ret void\n"
- "}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfo(*M, "foo", [&](Function &F, LoopInfo &LI) {
- Function::iterator FI = F.begin();
- // First basic block is entry - skip it.
- BasicBlock *Header = &*(++FI);
- assert(Header && "No header");
- Loop *L = LI.getLoopFor(Header);
- EXPECT_NE(L, nullptr);
- EXPECT_FALSE(L->isLoopSimplifyForm());
- // No loop guard because loop in not in simplify form.
- EXPECT_EQ(L->getLoopGuardBranch(), nullptr);
- EXPECT_FALSE(L->isGuarded());
- });
- }
- TEST(LoopInfoTest, LoopLatchNotExiting) {
- const char *ModuleStr =
- "define void @foo(i32* %A, i32 %ub) {\n"
- "entry:\n"
- " %guardcmp = icmp slt i32 0, %ub\n"
- " br i1 %guardcmp, label %for.preheader, label %for.end\n"
- "for.preheader:\n"
- " br label %for.body\n"
- "for.body:\n"
- " %i = phi i32 [ 0, %for.preheader ], [ %inc, %for.body ]\n"
- " %idxprom = sext i32 %i to i64\n"
- " %arrayidx = getelementptr inbounds i32, i32* %A, i64 %idxprom\n"
- " store i32 %i, i32* %arrayidx, align 4\n"
- " %inc = add nsw i32 %i, 1\n"
- " %cmp = icmp slt i32 %inc, %ub\n"
- " br i1 %cmp, label %for.latch, label %for.exit\n"
- "for.latch:\n"
- " br label %for.body\n"
- "for.exit:\n"
- " br label %for.end\n"
- "for.end:\n"
- " ret void\n"
- "}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfoPlus(
- *M, "foo",
- [&](Function &F, LoopInfo &LI, ScalarEvolution &SE) {
- Function::iterator FI = F.begin();
- // First two basic block are entry and for.preheader - skip them.
- ++FI;
- BasicBlock *Header = &*(++FI);
- BasicBlock *Latch = &*(++FI);
- assert(Header && "No header");
- Loop *L = LI.getLoopFor(Header);
- EXPECT_NE(L, nullptr);
- EXPECT_TRUE(L->isLoopSimplifyForm());
- EXPECT_EQ(L->getLoopLatch(), Latch);
- EXPECT_FALSE(L->isLoopExiting(Latch));
- // No loop guard becuase loop is not exiting on latch.
- EXPECT_EQ(L->getLoopGuardBranch(), nullptr);
- EXPECT_FALSE(L->isGuarded());
- });
- }
- // Examine getUniqueExitBlocks/getUniqueNonLatchExitBlocks functions.
- TEST(LoopInfoTest, LoopUniqueExitBlocks) {
- const char *ModuleStr =
- "target datalayout = \"e-m:o-i64:64-f80:128-n8:16:32:64-S128\"\n"
- "define void @foo(i32 %n, i1 %cond) {\n"
- "entry:\n"
- " br label %for.cond\n"
- "for.cond:\n"
- " %i.0 = phi i32 [ 0, %entry ], [ %inc, %for.inc ]\n"
- " %cmp = icmp slt i32 %i.0, %n\n"
- " br i1 %cond, label %for.inc, label %for.end1\n"
- "for.inc:\n"
- " %inc = add nsw i32 %i.0, 1\n"
- " br i1 %cmp, label %for.cond, label %for.end2, !llvm.loop !0\n"
- "for.end1:\n"
- " br label %for.end\n"
- "for.end2:\n"
- " br label %for.end\n"
- "for.end:\n"
- " ret void\n"
- "}\n"
- "!0 = distinct !{!0, !1}\n"
- "!1 = !{!\"llvm.loop.distribute.enable\", i1 true}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfo(*M, "foo", [&](Function &F, LoopInfo &LI) {
- Function::iterator FI = F.begin();
- // First basic block is entry - skip it.
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.cond");
- Loop *L = LI.getLoopFor(Header);
- SmallVector<BasicBlock *, 2> Exits;
- // This loop has 2 unique exits.
- L->getUniqueExitBlocks(Exits);
- EXPECT_TRUE(Exits.size() == 2);
- // And one unique non latch exit.
- Exits.clear();
- L->getUniqueNonLatchExitBlocks(Exits);
- EXPECT_TRUE(Exits.size() == 1);
- });
- }
- // Regression test for getUniqueNonLatchExitBlocks functions.
- // It should detect the exit if it comes from both latch and non-latch blocks.
- TEST(LoopInfoTest, LoopNonLatchUniqueExitBlocks) {
- const char *ModuleStr =
- "target datalayout = \"e-m:o-i64:64-f80:128-n8:16:32:64-S128\"\n"
- "define void @foo(i32 %n, i1 %cond) {\n"
- "entry:\n"
- " br label %for.cond\n"
- "for.cond:\n"
- " %i.0 = phi i32 [ 0, %entry ], [ %inc, %for.inc ]\n"
- " %cmp = icmp slt i32 %i.0, %n\n"
- " br i1 %cond, label %for.inc, label %for.end\n"
- "for.inc:\n"
- " %inc = add nsw i32 %i.0, 1\n"
- " br i1 %cmp, label %for.cond, label %for.end, !llvm.loop !0\n"
- "for.end:\n"
- " ret void\n"
- "}\n"
- "!0 = distinct !{!0, !1}\n"
- "!1 = !{!\"llvm.loop.distribute.enable\", i1 true}\n";
- // Parse the module.
- LLVMContext Context;
- std::unique_ptr<Module> M = makeLLVMModule(Context, ModuleStr);
- runWithLoopInfo(*M, "foo", [&](Function &F, LoopInfo &LI) {
- Function::iterator FI = F.begin();
- // First basic block is entry - skip it.
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.cond");
- Loop *L = LI.getLoopFor(Header);
- SmallVector<BasicBlock *, 2> Exits;
- // This loop has 1 unique exit.
- L->getUniqueExitBlocks(Exits);
- EXPECT_TRUE(Exits.size() == 1);
- // And one unique non latch exit.
- Exits.clear();
- L->getUniqueNonLatchExitBlocks(Exits);
- EXPECT_TRUE(Exits.size() == 1);
- });
- }
|