12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112 |
- //===- 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/PostDominators.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,
- PostDominatorTree &PDT)>
- 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);
- PostDominatorTree PDT(*F);
- Test(*F, LI, SE, PDT);
- }
- 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,
- PostDominatorTree &PDT) {
- 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");
- });
- }
- 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,
- PostDominatorTree &PDT) {
- 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");
- });
- }
- 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,
- PostDominatorTree &PDT) {
- 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");
- });
- }
- 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,
- PostDominatorTree &PDT) {
- 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");
- });
- }
- 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,
- PostDominatorTree &PDT) {
- 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");
- });
- }
- 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,
- PostDominatorTree &PDT) {
- 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(), "ubPlusOne");
- EXPECT_EQ(Bounds->getCanonicalPredicate(), ICmpInst::ICMP_SLT);
- EXPECT_EQ(Bounds->getDirection(),
- Loop::LoopBounds::Direction::Increasing);
- EXPECT_EQ(L->getInductionVariable(SE)->getName(), "i");
- });
- }
- 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,
- PostDominatorTree &PDT) {
- 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");
- 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");
- });
- }
- 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,
- PostDominatorTree &PDT) {
- 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_ULT);
- EXPECT_EQ(Bounds->getDirection(),
- Loop::LoopBounds::Direction::Increasing);
- EXPECT_EQ(L->getInductionVariable(SE)->getName(), "i");
- });
- }
- 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,
- PostDominatorTree &PDT) {
- 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);
- 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");
- });
- }
- 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,
- PostDominatorTree &PDT) {
- 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");
- 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");
- });
- }
- 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,
- PostDominatorTree &PDT) {
- 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(), "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");
- });
- }
- 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,
- PostDominatorTree &PDT) {
- 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");
- });
- }
- 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,
- PostDominatorTree &PDT) {
- 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");
- });
- }
- 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,
- PostDominatorTree &PDT) {
- Function::iterator FI = F.begin();
- // First two basic block are entry and for.outer.preheader - skip them.
- ++FI;
- BasicBlock *Header = &*(++FI);
- assert(Header->getName() == "for.outer");
- 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");
- // 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");
- });
- }
- 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,
- PostDominatorTree &PDT) {
- 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");
- 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));
- });
- }
|