forked from llvm/llvm-project
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathFunctionTest.cpp
489 lines (426 loc) · 14 KB
/
FunctionTest.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
//===- FunctionTest.cpp - Function 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/IR/Function.h"
#include "llvm/AsmParser/Parser.h"
#include "llvm/IR/Module.h"
#include "llvm/Support/SourceMgr.h"
#include "gtest/gtest.h"
using namespace llvm;
namespace {
static std::unique_ptr<Module> parseIR(LLVMContext &C, const char *IR) {
SMDiagnostic Err;
std::unique_ptr<Module> Mod = parseAssemblyString(IR, Err, C);
if (!Mod)
Err.print("InstructionsTests", errs());
return Mod;
}
static BasicBlock *getBBWithName(Function *F, StringRef Name) {
auto It = find_if(
*F, [&Name](const BasicBlock &BB) { return BB.getName() == Name; });
assert(It != F->end() && "Not found!");
return &*It;
}
TEST(FunctionTest, hasLazyArguments) {
LLVMContext C;
Type *ArgTypes[] = {Type::getInt8Ty(C), Type::getInt32Ty(C)};
FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), ArgTypes, false);
// Functions start out with lazy arguments.
std::unique_ptr<Function> F(
Function::Create(FTy, GlobalValue::ExternalLinkage, "F"));
EXPECT_TRUE(F->hasLazyArguments());
// Checking for empty or size shouldn't force arguments to be instantiated.
EXPECT_FALSE(F->arg_empty());
EXPECT_TRUE(F->hasLazyArguments());
EXPECT_EQ(2u, F->arg_size());
EXPECT_TRUE(F->hasLazyArguments());
// The argument list should be populated at first access.
(void)F->arg_begin();
EXPECT_FALSE(F->hasLazyArguments());
// Checking that getArg gets the arguments from F1 in the correct order.
unsigned i = 0;
for (Argument &A : F->args()) {
EXPECT_EQ(&A, F->getArg(i));
++i;
}
EXPECT_FALSE(F->hasLazyArguments());
}
TEST(FunctionTest, stealArgumentListFrom) {
LLVMContext C;
Type *ArgTypes[] = {Type::getInt8Ty(C), Type::getInt32Ty(C)};
FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), ArgTypes, false);
std::unique_ptr<Function> F1(
Function::Create(FTy, GlobalValue::ExternalLinkage, "F1"));
std::unique_ptr<Function> F2(
Function::Create(FTy, GlobalValue::ExternalLinkage, "F1"));
EXPECT_TRUE(F1->hasLazyArguments());
EXPECT_TRUE(F2->hasLazyArguments());
// Steal arguments before they've been accessed. Nothing should change; both
// functions should still have lazy arguments.
//
// steal(empty); drop (empty)
F1->stealArgumentListFrom(*F2);
EXPECT_TRUE(F1->hasLazyArguments());
EXPECT_TRUE(F2->hasLazyArguments());
// Save arguments from F1 for later assertions. F1 won't have lazy arguments
// anymore.
SmallVector<Argument *, 4> Args;
for (Argument &A : F1->args())
Args.push_back(&A);
EXPECT_EQ(2u, Args.size());
EXPECT_FALSE(F1->hasLazyArguments());
// Steal arguments from F1 to F2. F1's arguments should be lazy again.
//
// steal(real); drop (empty)
F2->stealArgumentListFrom(*F1);
EXPECT_TRUE(F1->hasLazyArguments());
EXPECT_FALSE(F2->hasLazyArguments());
unsigned I = 0;
for (Argument &A : F2->args()) {
EXPECT_EQ(Args[I], &A);
I++;
}
EXPECT_EQ(2u, I);
// Check that arguments in F1 don't have pointer equality with the saved ones.
// This also instantiates F1's arguments.
I = 0;
for (Argument &A : F1->args()) {
EXPECT_NE(Args[I], &A);
I++;
}
EXPECT_EQ(2u, I);
EXPECT_FALSE(F1->hasLazyArguments());
EXPECT_FALSE(F2->hasLazyArguments());
// Steal back from F2. F2's arguments should be lazy again.
//
// steal(real); drop (real)
F1->stealArgumentListFrom(*F2);
EXPECT_FALSE(F1->hasLazyArguments());
EXPECT_TRUE(F2->hasLazyArguments());
I = 0;
for (Argument &A : F1->args()) {
EXPECT_EQ(Args[I], &A);
I++;
}
EXPECT_EQ(2u, I);
// Steal from F2 a second time. Now both functions should have lazy
// arguments.
//
// steal(empty); drop (real)
F1->stealArgumentListFrom(*F2);
EXPECT_TRUE(F1->hasLazyArguments());
EXPECT_TRUE(F2->hasLazyArguments());
}
// Test setting and removing section information
TEST(FunctionTest, setSection) {
LLVMContext C;
Module M("test", C);
llvm::Function *F =
Function::Create(llvm::FunctionType::get(llvm::Type::getVoidTy(C), false),
llvm::GlobalValue::ExternalLinkage, "F", &M);
F->setSection(".text.test");
EXPECT_TRUE(F->getSection() == ".text.test");
EXPECT_TRUE(F->hasSection());
F->setSection("");
EXPECT_FALSE(F->hasSection());
F->setSection(".text.test");
F->setSection(".text.test2");
EXPECT_TRUE(F->getSection() == ".text.test2");
EXPECT_TRUE(F->hasSection());
}
TEST(FunctionTest, GetPointerAlignment) {
LLVMContext Context;
Type *VoidType(Type::getVoidTy(Context));
FunctionType *FuncType(FunctionType::get(VoidType, false));
std::unique_ptr<Function> Func(Function::Create(
FuncType, GlobalValue::ExternalLinkage));
EXPECT_EQ(Align(1), Func->getPointerAlignment(DataLayout("")));
EXPECT_EQ(Align(1), Func->getPointerAlignment(DataLayout("Fi8")));
EXPECT_EQ(Align(1), Func->getPointerAlignment(DataLayout("Fn8")));
EXPECT_EQ(Align(2), Func->getPointerAlignment(DataLayout("Fi16")));
EXPECT_EQ(Align(2), Func->getPointerAlignment(DataLayout("Fn16")));
EXPECT_EQ(Align(4), Func->getPointerAlignment(DataLayout("Fi32")));
EXPECT_EQ(Align(4), Func->getPointerAlignment(DataLayout("Fn32")));
Func->setAlignment(Align(4));
EXPECT_EQ(Align(1), Func->getPointerAlignment(DataLayout("")));
EXPECT_EQ(Align(1), Func->getPointerAlignment(DataLayout("Fi8")));
EXPECT_EQ(Align(4), Func->getPointerAlignment(DataLayout("Fn8")));
EXPECT_EQ(Align(2), Func->getPointerAlignment(DataLayout("Fi16")));
EXPECT_EQ(Align(4), Func->getPointerAlignment(DataLayout("Fn16")));
EXPECT_EQ(Align(4), Func->getPointerAlignment(DataLayout("Fi32")));
EXPECT_EQ(Align(4), Func->getPointerAlignment(DataLayout("Fn32")));
}
TEST(FunctionTest, InsertBasicBlockAt) {
LLVMContext C;
std::unique_ptr<Module> M = parseIR(C, R"(
define void @foo(i32 %a, i32 %b) {
foo_bb0:
ret void
}
define void @bar() {
bar_bb0:
br label %bar_bb1
bar_bb1:
br label %bar_bb2
bar_bb2:
ret void
}
)");
Function *FooF = M->getFunction("foo");
BasicBlock *FooBB0 = getBBWithName(FooF, "foo_bb0");
Function *BarF = M->getFunction("bar");
BasicBlock *BarBB0 = getBBWithName(BarF, "bar_bb0");
BasicBlock *BarBB1 = getBBWithName(BarF, "bar_bb1");
BasicBlock *BarBB2 = getBBWithName(BarF, "bar_bb2");
// Insert foo_bb0 into bar() at the very top.
FooBB0->removeFromParent();
auto It = BarF->insert(BarF->begin(), FooBB0);
EXPECT_EQ(BarBB0->getPrevNode(), FooBB0);
EXPECT_EQ(It, FooBB0->getIterator());
// Insert foo_bb0 into bar() at the very end.
FooBB0->removeFromParent();
It = BarF->insert(BarF->end(), FooBB0);
EXPECT_EQ(FooBB0->getPrevNode(), BarBB2);
EXPECT_EQ(FooBB0->getNextNode(), nullptr);
EXPECT_EQ(It, FooBB0->getIterator());
// Insert foo_bb0 into bar() just before bar_bb0.
FooBB0->removeFromParent();
It = BarF->insert(BarBB0->getIterator(), FooBB0);
EXPECT_EQ(FooBB0->getPrevNode(), nullptr);
EXPECT_EQ(FooBB0->getNextNode(), BarBB0);
EXPECT_EQ(It, FooBB0->getIterator());
// Insert foo_bb0 into bar() just before bar_bb1.
FooBB0->removeFromParent();
It = BarF->insert(BarBB1->getIterator(), FooBB0);
EXPECT_EQ(FooBB0->getPrevNode(), BarBB0);
EXPECT_EQ(FooBB0->getNextNode(), BarBB1);
EXPECT_EQ(It, FooBB0->getIterator());
// Insert foo_bb0 into bar() just before bar_bb2.
FooBB0->removeFromParent();
It = BarF->insert(BarBB2->getIterator(), FooBB0);
EXPECT_EQ(FooBB0->getPrevNode(), BarBB1);
EXPECT_EQ(FooBB0->getNextNode(), BarBB2);
EXPECT_EQ(It, FooBB0->getIterator());
}
TEST(FunctionTest, SpliceOneBB) {
LLVMContext Ctx;
std::unique_ptr<Module> M = parseIR(Ctx, R"(
define void @from() {
from_bb1:
br label %from_bb2
from_bb2:
br label %from_bb3
from_bb3:
ret void
}
define void @to() {
to_bb1:
br label %to_bb2
to_bb2:
br label %to_bb3
to_bb3:
ret void
}
)");
Function *FromF = M->getFunction("from");
BasicBlock *FromBB1 = getBBWithName(FromF, "from_bb1");
BasicBlock *FromBB2 = getBBWithName(FromF, "from_bb2");
BasicBlock *FromBB3 = getBBWithName(FromF, "from_bb3");
Function *ToF = M->getFunction("to");
BasicBlock *ToBB1 = getBBWithName(ToF, "to_bb1");
BasicBlock *ToBB2 = getBBWithName(ToF, "to_bb2");
BasicBlock *ToBB3 = getBBWithName(ToF, "to_bb3");
// Move from_bb2 before to_bb1.
ToF->splice(ToBB1->getIterator(), FromF, FromBB2->getIterator());
EXPECT_EQ(FromF->size(), 2u);
EXPECT_EQ(ToF->size(), 4u);
auto It = FromF->begin();
EXPECT_EQ(&*It++, FromBB1);
EXPECT_EQ(&*It++, FromBB3);
It = ToF->begin();
EXPECT_EQ(&*It++, FromBB2);
EXPECT_EQ(&*It++, ToBB1);
EXPECT_EQ(&*It++, ToBB2);
EXPECT_EQ(&*It++, ToBB3);
// Cleanup to avoid "Uses remain when a value is destroyed!".
FromF->splice(FromBB3->getIterator(), ToF, FromBB2->getIterator());
}
TEST(FunctionTest, SpliceOneBBWhenFromIsSameAsTo) {
LLVMContext Ctx;
std::unique_ptr<Module> M = parseIR(Ctx, R"(
define void @fromto() {
bb1:
br label %bb2
bb2:
ret void
}
)");
Function *F = M->getFunction("fromto");
BasicBlock *BB1 = getBBWithName(F, "bb1");
BasicBlock *BB2 = getBBWithName(F, "bb2");
// According to ilist's splice() a single-element splice where dst == src
// should be a noop.
F->splice(BB1->getIterator(), F, BB1->getIterator());
auto It = F->begin();
EXPECT_EQ(&*It++, BB1);
EXPECT_EQ(&*It++, BB2);
EXPECT_EQ(F->size(), 2u);
}
TEST(FunctionTest, SpliceLastBB) {
LLVMContext Ctx;
std::unique_ptr<Module> M = parseIR(Ctx, R"(
define void @from() {
from_bb1:
br label %from_bb2
from_bb2:
br label %from_bb3
from_bb3:
ret void
}
define void @to() {
to_bb1:
br label %to_bb2
to_bb2:
br label %to_bb3
to_bb3:
ret void
}
)");
Function *FromF = M->getFunction("from");
BasicBlock *FromBB1 = getBBWithName(FromF, "from_bb1");
BasicBlock *FromBB2 = getBBWithName(FromF, "from_bb2");
BasicBlock *FromBB3 = getBBWithName(FromF, "from_bb3");
Function *ToF = M->getFunction("to");
BasicBlock *ToBB1 = getBBWithName(ToF, "to_bb1");
BasicBlock *ToBB2 = getBBWithName(ToF, "to_bb2");
BasicBlock *ToBB3 = getBBWithName(ToF, "to_bb3");
// Move from_bb2 before to_bb1.
auto ToMove = FromBB2->getIterator();
ToF->splice(ToBB1->getIterator(), FromF, ToMove, std::next(ToMove));
EXPECT_EQ(FromF->size(), 2u);
auto It = FromF->begin();
EXPECT_EQ(&*It++, FromBB1);
EXPECT_EQ(&*It++, FromBB3);
EXPECT_EQ(ToF->size(), 4u);
It = ToF->begin();
EXPECT_EQ(&*It++, FromBB2);
EXPECT_EQ(&*It++, ToBB1);
EXPECT_EQ(&*It++, ToBB2);
EXPECT_EQ(&*It++, ToBB3);
// Cleanup to avoid "Uses remain when a value is destroyed!".
FromF->splice(FromBB3->getIterator(), ToF, ToMove);
}
TEST(FunctionTest, SpliceBBRange) {
LLVMContext Ctx;
std::unique_ptr<Module> M = parseIR(Ctx, R"(
define void @from() {
from_bb1:
br label %from_bb2
from_bb2:
br label %from_bb3
from_bb3:
ret void
}
define void @to() {
to_bb1:
br label %to_bb2
to_bb2:
br label %to_bb3
to_bb3:
ret void
}
)");
Function *FromF = M->getFunction("from");
BasicBlock *FromBB1 = getBBWithName(FromF, "from_bb1");
BasicBlock *FromBB2 = getBBWithName(FromF, "from_bb2");
BasicBlock *FromBB3 = getBBWithName(FromF, "from_bb3");
Function *ToF = M->getFunction("to");
BasicBlock *ToBB1 = getBBWithName(ToF, "to_bb1");
BasicBlock *ToBB2 = getBBWithName(ToF, "to_bb2");
BasicBlock *ToBB3 = getBBWithName(ToF, "to_bb3");
// Move all BBs from @from to @to.
ToF->splice(ToBB2->getIterator(), FromF, FromF->begin(), FromF->end());
EXPECT_EQ(FromF->size(), 0u);
EXPECT_EQ(ToF->size(), 6u);
auto It = ToF->begin();
EXPECT_EQ(&*It++, ToBB1);
EXPECT_EQ(&*It++, FromBB1);
EXPECT_EQ(&*It++, FromBB2);
EXPECT_EQ(&*It++, FromBB3);
EXPECT_EQ(&*It++, ToBB2);
EXPECT_EQ(&*It++, ToBB3);
}
#ifdef EXPENSIVE_CHECKS
TEST(FunctionTest, SpliceEndBeforeBegin) {
LLVMContext Ctx;
std::unique_ptr<Module> M = parseIR(Ctx, R"(
define void @from() {
from_bb1:
br label %from_bb2
from_bb2:
br label %from_bb3
from_bb3:
ret void
}
define void @to() {
to_bb1:
br label %to_bb2
to_bb2:
br label %to_bb3
to_bb3:
ret void
}
)");
Function *FromF = M->getFunction("from");
BasicBlock *FromBB1 = getBBWithName(FromF, "from_bb1");
BasicBlock *FromBB2 = getBBWithName(FromF, "from_bb2");
Function *ToF = M->getFunction("to");
BasicBlock *ToBB2 = getBBWithName(ToF, "to_bb2");
EXPECT_DEATH(ToF->splice(ToBB2->getIterator(), FromF, FromBB2->getIterator(),
FromBB1->getIterator()),
"FromBeginIt not before FromEndIt!");
}
#endif //EXPENSIVE_CHECKS
TEST(FunctionTest, EraseBBs) {
LLVMContext Ctx;
std::unique_ptr<Module> M = parseIR(Ctx, R"(
define void @foo() {
bb1:
br label %bb2
bb2:
br label %bb3
bb3:
br label %bb4
bb4:
br label %bb5
bb5:
ret void
}
)");
Function *F = M->getFunction("foo");
BasicBlock *BB1 = getBBWithName(F, "bb1");
BasicBlock *BB2 = getBBWithName(F, "bb2");
BasicBlock *BB3 = getBBWithName(F, "bb3");
BasicBlock *BB4 = getBBWithName(F, "bb4");
BasicBlock *BB5 = getBBWithName(F, "bb5");
EXPECT_EQ(F->size(), 5u);
// Erase BB2.
BB1->getTerminator()->eraseFromParent();
auto It = F->erase(BB2->getIterator(), std::next(BB2->getIterator()));
EXPECT_EQ(F->size(), 4u);
// Check that the iterator returned matches the node after the erased one.
EXPECT_EQ(It, BB3->getIterator());
It = F->begin();
EXPECT_EQ(&*It++, BB1);
EXPECT_EQ(&*It++, BB3);
EXPECT_EQ(&*It++, BB4);
EXPECT_EQ(&*It++, BB5);
// Erase all BBs.
It = F->erase(F->begin(), F->end());
EXPECT_EQ(F->size(), 0u);
}
} // end namespace