blob: 571008e07f749bb784f59fe3e9f33339bb8276c4 [file] [log] [blame]
Nick Lewycky1f715782009-09-27 21:39:46 +00001//===- Cloning.cpp - Unit tests for the Cloner ----------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Alon Mishne07d949f2014-03-12 14:42:51 +000010#include "llvm/Transforms/Utils/Cloning.h"
11#include "llvm/ADT/ArrayRef.h"
Chandler Carruth130cec22012-12-04 10:23:08 +000012#include "llvm/ADT/STLExtras.h"
Quentin Colombet4156c982014-04-22 02:17:11 +000013#include "llvm/ADT/SmallPtrSet.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000014#include "llvm/IR/Argument.h"
15#include "llvm/IR/Constant.h"
Alon Mishne07d949f2014-03-12 14:42:51 +000016#include "llvm/IR/DebugInfo.h"
17#include "llvm/IR/DIBuilder.h"
Joey Gouly81259292013-04-10 10:37:38 +000018#include "llvm/IR/Function.h"
Joey Gouly81259292013-04-10 10:37:38 +000019#include "llvm/IR/IRBuilder.h"
Alon Mishne07d949f2014-03-12 14:42:51 +000020#include "llvm/IR/InstIterator.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000021#include "llvm/IR/Instructions.h"
Alon Mishne07d949f2014-03-12 14:42:51 +000022#include "llvm/IR/IntrinsicInst.h"
23#include "llvm/IR/IRBuilder.h"
24#include "llvm/IR/Module.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000025#include "llvm/IR/LLVMContext.h"
Chandler Carruth130cec22012-12-04 10:23:08 +000026#include "gtest/gtest.h"
Nick Lewycky1f715782009-09-27 21:39:46 +000027
28using namespace llvm;
29
David Blaikiea379b1812011-12-20 02:50:00 +000030namespace {
Chandler Carruth35e67062012-06-20 08:39:27 +000031
Nick Lewycky84189ab2010-03-13 19:58:26 +000032class CloneInstruction : public ::testing::Test {
33protected:
34 virtual void SetUp() {
Craig Topper66f09ad2014-06-08 22:29:17 +000035 V = nullptr;
Nick Lewycky84189ab2010-03-13 19:58:26 +000036 }
37
38 template <typename T>
39 T *clone(T *V1) {
40 Value *V2 = V1->clone();
Quentin Colombet4156c982014-04-22 02:17:11 +000041 Orig.insert(V1);
42 Clones.insert(V2);
Nick Lewycky84189ab2010-03-13 19:58:26 +000043 return cast<T>(V2);
44 }
45
Quentin Colombet4156c982014-04-22 02:17:11 +000046 void eraseClones() {
47 DeleteContainerPointers(Clones);
48 }
Nick Lewycky84189ab2010-03-13 19:58:26 +000049
50 virtual void TearDown() {
51 eraseClones();
Quentin Colombet4156c982014-04-22 02:17:11 +000052 DeleteContainerPointers(Orig);
53 delete V;
Nick Lewycky84189ab2010-03-13 19:58:26 +000054 }
55
Quentin Colombet4156c982014-04-22 02:17:11 +000056 SmallPtrSet<Value *, 4> Orig; // Erase on exit
57 SmallPtrSet<Value *, 4> Clones; // Erase in eraseClones
Nick Lewycky84189ab2010-03-13 19:58:26 +000058
Nick Lewycky1f715782009-09-27 21:39:46 +000059 LLVMContext context;
Quentin Colombet4156c982014-04-22 02:17:11 +000060 Value *V;
Nick Lewycky84189ab2010-03-13 19:58:26 +000061};
62
63TEST_F(CloneInstruction, OverflowBits) {
Quentin Colombet4156c982014-04-22 02:17:11 +000064 V = new Argument(Type::getInt32Ty(context));
Nick Lewycky1f715782009-09-27 21:39:46 +000065
Quentin Colombet4156c982014-04-22 02:17:11 +000066 BinaryOperator *Add = BinaryOperator::Create(Instruction::Add, V, V);
67 BinaryOperator *Sub = BinaryOperator::Create(Instruction::Sub, V, V);
68 BinaryOperator *Mul = BinaryOperator::Create(Instruction::Mul, V, V);
Nick Lewycky1f715782009-09-27 21:39:46 +000069
Nick Lewycky84189ab2010-03-13 19:58:26 +000070 BinaryOperator *AddClone = this->clone(Add);
71 BinaryOperator *SubClone = this->clone(Sub);
72 BinaryOperator *MulClone = this->clone(Mul);
73
74 EXPECT_FALSE(AddClone->hasNoUnsignedWrap());
75 EXPECT_FALSE(AddClone->hasNoSignedWrap());
76 EXPECT_FALSE(SubClone->hasNoUnsignedWrap());
77 EXPECT_FALSE(SubClone->hasNoSignedWrap());
78 EXPECT_FALSE(MulClone->hasNoUnsignedWrap());
79 EXPECT_FALSE(MulClone->hasNoSignedWrap());
80
81 eraseClones();
Nick Lewycky1f715782009-09-27 21:39:46 +000082
83 Add->setHasNoUnsignedWrap();
84 Sub->setHasNoUnsignedWrap();
85 Mul->setHasNoUnsignedWrap();
86
Nick Lewycky84189ab2010-03-13 19:58:26 +000087 AddClone = this->clone(Add);
88 SubClone = this->clone(Sub);
89 MulClone = this->clone(Mul);
90
91 EXPECT_TRUE(AddClone->hasNoUnsignedWrap());
92 EXPECT_FALSE(AddClone->hasNoSignedWrap());
93 EXPECT_TRUE(SubClone->hasNoUnsignedWrap());
94 EXPECT_FALSE(SubClone->hasNoSignedWrap());
95 EXPECT_TRUE(MulClone->hasNoUnsignedWrap());
96 EXPECT_FALSE(MulClone->hasNoSignedWrap());
97
98 eraseClones();
Nick Lewycky1f715782009-09-27 21:39:46 +000099
100 Add->setHasNoSignedWrap();
101 Sub->setHasNoSignedWrap();
102 Mul->setHasNoSignedWrap();
103
Nick Lewycky84189ab2010-03-13 19:58:26 +0000104 AddClone = this->clone(Add);
105 SubClone = this->clone(Sub);
106 MulClone = this->clone(Mul);
107
108 EXPECT_TRUE(AddClone->hasNoUnsignedWrap());
109 EXPECT_TRUE(AddClone->hasNoSignedWrap());
110 EXPECT_TRUE(SubClone->hasNoUnsignedWrap());
111 EXPECT_TRUE(SubClone->hasNoSignedWrap());
112 EXPECT_TRUE(MulClone->hasNoUnsignedWrap());
113 EXPECT_TRUE(MulClone->hasNoSignedWrap());
114
115 eraseClones();
Nick Lewycky1f715782009-09-27 21:39:46 +0000116
117 Add->setHasNoUnsignedWrap(false);
118 Sub->setHasNoUnsignedWrap(false);
119 Mul->setHasNoUnsignedWrap(false);
120
Nick Lewycky84189ab2010-03-13 19:58:26 +0000121 AddClone = this->clone(Add);
122 SubClone = this->clone(Sub);
123 MulClone = this->clone(Mul);
124
125 EXPECT_FALSE(AddClone->hasNoUnsignedWrap());
126 EXPECT_TRUE(AddClone->hasNoSignedWrap());
127 EXPECT_FALSE(SubClone->hasNoUnsignedWrap());
128 EXPECT_TRUE(SubClone->hasNoSignedWrap());
129 EXPECT_FALSE(MulClone->hasNoUnsignedWrap());
130 EXPECT_TRUE(MulClone->hasNoSignedWrap());
Nick Lewycky1f715782009-09-27 21:39:46 +0000131}
132
Nick Lewycky84189ab2010-03-13 19:58:26 +0000133TEST_F(CloneInstruction, Inbounds) {
Quentin Colombet4156c982014-04-22 02:17:11 +0000134 V = new Argument(Type::getInt32PtrTy(context));
Nick Lewycky84189ab2010-03-13 19:58:26 +0000135
Nick Lewycky1f715782009-09-27 21:39:46 +0000136 Constant *Z = Constant::getNullValue(Type::getInt32Ty(context));
137 std::vector<Value *> ops;
138 ops.push_back(Z);
Quentin Colombet4156c982014-04-22 02:17:11 +0000139 GetElementPtrInst *GEP = GetElementPtrInst::Create(V, ops);
Nick Lewycky84189ab2010-03-13 19:58:26 +0000140 EXPECT_FALSE(this->clone(GEP)->isInBounds());
Nick Lewycky1f715782009-09-27 21:39:46 +0000141
142 GEP->setIsInBounds();
Nick Lewycky84189ab2010-03-13 19:58:26 +0000143 EXPECT_TRUE(this->clone(GEP)->isInBounds());
Nick Lewycky1f715782009-09-27 21:39:46 +0000144}
145
Nick Lewycky84189ab2010-03-13 19:58:26 +0000146TEST_F(CloneInstruction, Exact) {
Quentin Colombet4156c982014-04-22 02:17:11 +0000147 V = new Argument(Type::getInt32Ty(context));
Nick Lewycky1f715782009-09-27 21:39:46 +0000148
Quentin Colombet4156c982014-04-22 02:17:11 +0000149 BinaryOperator *SDiv = BinaryOperator::Create(Instruction::SDiv, V, V);
Nick Lewycky84189ab2010-03-13 19:58:26 +0000150 EXPECT_FALSE(this->clone(SDiv)->isExact());
Nick Lewycky1f715782009-09-27 21:39:46 +0000151
152 SDiv->setIsExact(true);
Nick Lewycky84189ab2010-03-13 19:58:26 +0000153 EXPECT_TRUE(this->clone(SDiv)->isExact());
Nick Lewycky1f715782009-09-27 21:39:46 +0000154}
Chandler Carruth35e67062012-06-20 08:39:27 +0000155
Joey Gouly81259292013-04-10 10:37:38 +0000156TEST_F(CloneInstruction, Attributes) {
157 Type *ArgTy1[] = { Type::getInt32PtrTy(context) };
158 FunctionType *FT1 = FunctionType::get(Type::getVoidTy(context), ArgTy1, false);
159
160 Function *F1 = Function::Create(FT1, Function::ExternalLinkage);
161 BasicBlock *BB = BasicBlock::Create(context, "", F1);
162 IRBuilder<> Builder(BB);
163 Builder.CreateRetVoid();
164
165 Function *F2 = Function::Create(FT1, Function::ExternalLinkage);
166
167 Attribute::AttrKind AK[] = { Attribute::NoCapture };
168 AttributeSet AS = AttributeSet::get(context, 0, AK);
169 Argument *A = F1->arg_begin();
170 A->addAttr(AS);
171
172 SmallVector<ReturnInst*, 4> Returns;
173 ValueToValueMapTy VMap;
174 VMap[A] = UndefValue::get(A->getType());
175
176 CloneFunctionInto(F2, F1, VMap, false, Returns);
177 EXPECT_FALSE(F2->arg_begin()->hasNoCaptureAttr());
Joey Gouly51f6fb92013-04-10 23:21:26 +0000178
179 delete F1;
180 delete F2;
Joey Gouly81259292013-04-10 10:37:38 +0000181}
182
Reid Kleckner23798a92014-03-26 22:26:35 +0000183TEST_F(CloneInstruction, CallingConvention) {
184 Type *ArgTy1[] = { Type::getInt32PtrTy(context) };
185 FunctionType *FT1 = FunctionType::get(Type::getVoidTy(context), ArgTy1, false);
186
187 Function *F1 = Function::Create(FT1, Function::ExternalLinkage);
188 F1->setCallingConv(CallingConv::Cold);
189 BasicBlock *BB = BasicBlock::Create(context, "", F1);
190 IRBuilder<> Builder(BB);
191 Builder.CreateRetVoid();
192
193 Function *F2 = Function::Create(FT1, Function::ExternalLinkage);
194
195 SmallVector<ReturnInst*, 4> Returns;
196 ValueToValueMapTy VMap;
197 VMap[F1->arg_begin()] = F2->arg_begin();
198
199 CloneFunctionInto(F2, F1, VMap, false, Returns);
200 EXPECT_EQ(CallingConv::Cold, F2->getCallingConv());
201
202 delete F1;
203 delete F2;
204}
205
Alon Mishne07d949f2014-03-12 14:42:51 +0000206class CloneFunc : public ::testing::Test {
207protected:
208 virtual void SetUp() {
209 SetupModule();
210 CreateOldFunc();
211 CreateNewFunc();
212 SetupFinder();
213 }
214
215 virtual void TearDown() {
216 delete Finder;
217 }
218
219 void SetupModule() {
220 M = new Module("", C);
221 }
222
223 void CreateOldFunc() {
224 FunctionType* FuncType = FunctionType::get(Type::getVoidTy(C), false);
225 OldFunc = Function::Create(FuncType, GlobalValue::PrivateLinkage, "f", M);
226 CreateOldFunctionBodyAndDI();
227 }
228
229 void CreateOldFunctionBodyAndDI() {
230 DIBuilder DBuilder(*M);
231 IRBuilder<> IBuilder(C);
232
233 // Function DI
234 DIFile File = DBuilder.createFile("filename.c", "/file/dir/");
Manman Renf8a19672014-07-28 22:24:06 +0000235 DITypeArray ParamTypes = DBuilder.getOrCreateTypeArray(None);
Alon Mishne07d949f2014-03-12 14:42:51 +0000236 DICompositeType FuncType = DBuilder.createSubroutineType(File, ParamTypes);
237 DICompileUnit CU = DBuilder.createCompileUnit(dwarf::DW_LANG_C99,
238 "filename.c", "/file/dir", "CloneFunc", false, "", 0);
239
240 DISubprogram Subprogram = DBuilder.createFunction(CU, "f", "f", File, 4,
241 FuncType, true, true, 3, 0, false, OldFunc);
242
243 // Function body
244 BasicBlock* Entry = BasicBlock::Create(C, "", OldFunc);
245 IBuilder.SetInsertPoint(Entry);
246 DebugLoc Loc = DebugLoc::get(3, 2, Subprogram);
247 IBuilder.SetCurrentDebugLocation(Loc);
248 AllocaInst* Alloca = IBuilder.CreateAlloca(IntegerType::getInt32Ty(C));
249 IBuilder.SetCurrentDebugLocation(DebugLoc::get(4, 2, Subprogram));
250 Value* AllocaContent = IBuilder.getInt32(1);
251 Instruction* Store = IBuilder.CreateStore(AllocaContent, Alloca);
252 IBuilder.SetCurrentDebugLocation(DebugLoc::get(5, 2, Subprogram));
253 Instruction* Terminator = IBuilder.CreateRetVoid();
254
255 // Create a local variable around the alloca
256 DIType IntType = DBuilder.createBasicType("int", 32, 0,
257 dwarf::DW_ATE_signed);
258 DIVariable Variable = DBuilder.createLocalVariable(
259 dwarf::DW_TAG_auto_variable, Subprogram, "x", File, 5, IntType, true);
260 DBuilder.insertDeclare(Alloca, Variable, Store);
261 DBuilder.insertDbgValueIntrinsic(AllocaContent, 0, Variable, Terminator);
262 // Finalize the debug info
263 DBuilder.finalize();
264
265
266 // Create another, empty, compile unit
267 DIBuilder DBuilder2(*M);
268 DBuilder2.createCompileUnit(dwarf::DW_LANG_C99,
269 "extra.c", "/file/dir", "CloneFunc", false, "", 0);
270 DBuilder2.finalize();
271 }
272
273 void CreateNewFunc() {
274 ValueToValueMapTy VMap;
Craig Topper66f09ad2014-06-08 22:29:17 +0000275 NewFunc = CloneFunction(OldFunc, VMap, true, nullptr);
Alon Mishne07d949f2014-03-12 14:42:51 +0000276 M->getFunctionList().push_back(NewFunc);
277 }
278
279 void SetupFinder() {
280 Finder = new DebugInfoFinder();
281 Finder->processModule(*M);
282 }
283
284 LLVMContext C;
285 Function* OldFunc;
286 Function* NewFunc;
287 Module* M;
288 DebugInfoFinder* Finder;
289};
290
291// Test that a new, distinct function was created.
292TEST_F(CloneFunc, NewFunctionCreated) {
293 EXPECT_NE(OldFunc, NewFunc);
294}
295
296// Test that a new subprogram entry was added and is pointing to the new
297// function, while the original subprogram still points to the old one.
298TEST_F(CloneFunc, Subprogram) {
299 unsigned SubprogramCount = Finder->subprogram_count();
Justin Bognerf404b932014-03-12 17:00:52 +0000300 EXPECT_EQ(2U, SubprogramCount);
Alon Mishne07d949f2014-03-12 14:42:51 +0000301
Alon Mishnead312152014-03-18 09:41:07 +0000302 auto Iter = Finder->subprograms().begin();
Alon Mishne07d949f2014-03-12 14:42:51 +0000303 DISubprogram Sub1(*Iter);
304 EXPECT_TRUE(Sub1.Verify());
305 Iter++;
306 DISubprogram Sub2(*Iter);
307 EXPECT_TRUE(Sub2.Verify());
308
Eli Bendersky09a95e02014-03-12 16:14:53 +0000309 EXPECT_TRUE((Sub1.getFunction() == OldFunc && Sub2.getFunction() == NewFunc)
310 || (Sub1.getFunction() == NewFunc && Sub2.getFunction() == OldFunc));
Alon Mishne07d949f2014-03-12 14:42:51 +0000311}
312
313// Test that the new subprogram entry was not added to the CU which doesn't
314// contain the old subprogram entry.
315TEST_F(CloneFunc, SubprogramInRightCU) {
Justin Bognerf404b932014-03-12 17:00:52 +0000316 EXPECT_EQ(2U, Finder->compile_unit_count());
Alon Mishne07d949f2014-03-12 14:42:51 +0000317
Alon Mishnead312152014-03-18 09:41:07 +0000318 auto Iter = Finder->compile_units().begin();
Alon Mishne07d949f2014-03-12 14:42:51 +0000319 DICompileUnit CU1(*Iter);
320 EXPECT_TRUE(CU1.Verify());
321 Iter++;
322 DICompileUnit CU2(*Iter);
323 EXPECT_TRUE(CU2.Verify());
324 EXPECT_TRUE(CU1.getSubprograms().getNumElements() == 0
325 || CU2.getSubprograms().getNumElements() == 0);
326}
327
328// Test that instructions in the old function still belong to it in the
329// metadata, while instruction in the new function belong to the new one.
330TEST_F(CloneFunc, InstructionOwnership) {
331 inst_iterator OldIter = inst_begin(OldFunc);
332 inst_iterator OldEnd = inst_end(OldFunc);
333 inst_iterator NewIter = inst_begin(NewFunc);
334 inst_iterator NewEnd = inst_end(NewFunc);
335 while (OldIter != OldEnd && NewIter != NewEnd) {
336 Instruction& OldI = *OldIter;
337 Instruction& NewI = *NewIter;
338 EXPECT_NE(&OldI, &NewI);
339
340 EXPECT_EQ(OldI.hasMetadata(), NewI.hasMetadata());
341 if (OldI.hasMetadata()) {
342 const DebugLoc& OldDL = OldI.getDebugLoc();
343 const DebugLoc& NewDL = NewI.getDebugLoc();
344
345 // Verify that the debug location data is the same
346 EXPECT_EQ(OldDL.getLine(), NewDL.getLine());
347 EXPECT_EQ(OldDL.getCol(), NewDL.getCol());
348
349 // But that they belong to different functions
350 DISubprogram OldSubprogram(OldDL.getScope(C));
351 DISubprogram NewSubprogram(NewDL.getScope(C));
352 EXPECT_TRUE(OldSubprogram.Verify());
353 EXPECT_TRUE(NewSubprogram.Verify());
354 EXPECT_EQ(OldFunc, OldSubprogram.getFunction());
355 EXPECT_EQ(NewFunc, NewSubprogram.getFunction());
356 }
357
358 ++OldIter;
359 ++NewIter;
360 }
361 EXPECT_EQ(OldEnd, OldIter);
362 EXPECT_EQ(NewEnd, NewIter);
363}
364
365// Test that the arguments for debug intrinsics in the new function were
366// properly cloned
367TEST_F(CloneFunc, DebugIntrinsics) {
368 inst_iterator OldIter = inst_begin(OldFunc);
369 inst_iterator OldEnd = inst_end(OldFunc);
370 inst_iterator NewIter = inst_begin(NewFunc);
371 inst_iterator NewEnd = inst_end(NewFunc);
372 while (OldIter != OldEnd && NewIter != NewEnd) {
373 Instruction& OldI = *OldIter;
374 Instruction& NewI = *NewIter;
375 if (DbgDeclareInst* OldIntrin = dyn_cast<DbgDeclareInst>(&OldI)) {
376 DbgDeclareInst* NewIntrin = dyn_cast<DbgDeclareInst>(&NewI);
377 EXPECT_TRUE(NewIntrin);
378
379 // Old address must belong to the old function
380 EXPECT_EQ(OldFunc, cast<AllocaInst>(OldIntrin->getAddress())->
381 getParent()->getParent());
382 // New address must belong to the new function
383 EXPECT_EQ(NewFunc, cast<AllocaInst>(NewIntrin->getAddress())->
384 getParent()->getParent());
385
386 // Old variable must belong to the old function
387 EXPECT_EQ(OldFunc, DISubprogram(DIVariable(OldIntrin->getVariable())
388 .getContext()).getFunction());
389 // New variable must belong to the New function
390 EXPECT_EQ(NewFunc, DISubprogram(DIVariable(NewIntrin->getVariable())
391 .getContext()).getFunction());
392 } else if (DbgValueInst* OldIntrin = dyn_cast<DbgValueInst>(&OldI)) {
393 DbgValueInst* NewIntrin = dyn_cast<DbgValueInst>(&NewI);
394 EXPECT_TRUE(NewIntrin);
395
396 // Old variable must belong to the old function
397 EXPECT_EQ(OldFunc, DISubprogram(DIVariable(OldIntrin->getVariable())
398 .getContext()).getFunction());
399 // New variable must belong to the New function
400 EXPECT_EQ(NewFunc, DISubprogram(DIVariable(NewIntrin->getVariable())
401 .getContext()).getFunction());
402 }
403
404 ++OldIter;
405 ++NewIter;
406 }
407}
408
Chandler Carruth35e67062012-06-20 08:39:27 +0000409}