You've already forked linux-packaging-mono
acceptance-tests
data
debian
docs
external
Newtonsoft.Json
api-doc-tools
api-snapshot
aspnetwebstack
binary-reference-assemblies
bockbuild
boringssl
cecil
cecil-legacy
corefx
corert
helix-binaries
ikdasm
ikvm
illinker-test-assets
linker
llvm
bindings
cmake
docs
examples
include
lib
projects
resources
runtimes
scripts
test
tools
unittests
ADT
Analysis
AliasAnalysisTest.cpp
AliasSetTrackerTest.cpp
BlockFrequencyInfoTest.cpp
BranchProbabilityInfoTest.cpp
CFGTest.cpp
CGSCCPassManagerTest.cpp
CMakeLists.txt
CallGraphTest.cpp
GlobalsModRefTest.cpp
LazyCallGraphTest.cpp
LoopInfoTest.cpp
MemoryBuiltinsTest.cpp
MemorySSA.cpp
OrderedBasicBlockTest.cpp
ProfileSummaryInfoTest.cpp
ScalarEvolutionTest.cpp
SparsePropagation.cpp
TBAATest.cpp
TargetLibraryInfoTest.cpp
UnrollAnalyzer.cpp
ValueLatticeTest.cpp
ValueTrackingTest.cpp
AsmParser
BinaryFormat
Bitcode
CodeGen
DebugInfo
ExecutionEngine
FuzzMutate
IR
LineEditor
Linker
MC
MI
Object
ObjectYAML
Option
ProfileData
Support
Target
Transforms
XRay
tools
CMakeLists.txt
utils
.arcconfig
.clang-format
.clang-tidy
.gitattributes
.gitignore
CMakeLists.txt
CODE_OWNERS.TXT
CREDITS.TXT
LICENSE.TXT
LLVMBuild.txt
README.txt
RELEASE_TESTERS.TXT
configure
llvm.spec.in
nuget-buildtasks
nunit-lite
roslyn-binaries
rx
xunit-binaries
how-to-bump-roslyn-binaries.md
ikvm-native
libgc
llvm
m4
man
mcs
mk
mono
msvc
po
runtime
samples
scripts
support
tools
COPYING.LIB
LICENSE
Makefile.am
Makefile.in
NEWS
README.md
acinclude.m4
aclocal.m4
autogen.sh
code_of_conduct.md
compile
config.guess
config.h.in
config.rpath
config.sub
configure.REMOVED.git-id
configure.ac.REMOVED.git-id
depcomp
install-sh
ltmain.sh.REMOVED.git-id
missing
mkinstalldirs
mono-uninstalled.pc.in
test-driver
winconfig.h
159 lines
5.8 KiB
C++
159 lines
5.8 KiB
C++
![]() |
//===- LoopInfoTest.cpp - LoopInfo unit tests -----------------------------===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#include "llvm/Analysis/LoopInfo.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);
|
||
|
}
|
||
|
|
||
|
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(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]);
|
||
|
}
|