blob: 3ab0ad430b391289fb80e30372bf561db971b077 [file] [log] [blame]
Duncan P. N. Exon Smith71db6422015-02-02 18:20:15 +00001//===- unittests/IR/MetadataTest.cpp - Metadata unit tests ----------------===//
Nick Lewycky49f89192009-04-04 07:22:01 +00002//
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
Chandler Carruth9a67b072017-06-06 11:06:56 +000010#include "llvm/IR/Metadata.h"
Duncan P. N. Exon Smith845755c42015-01-13 00:46:34 +000011#include "llvm/ADT/STLExtras.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000012#include "llvm/IR/Constants.h"
Duncan P. N. Exon Smithb3538492015-03-03 16:45:34 +000013#include "llvm/IR/DebugInfo.h"
Duncan P. N. Exon Smithd9901ff2015-02-02 18:53:21 +000014#include "llvm/IR/DebugInfoMetadata.h"
Duncan P. N. Exon Smithdf523492015-02-18 20:32:57 +000015#include "llvm/IR/Function.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000016#include "llvm/IR/Instructions.h"
17#include "llvm/IR/LLVMContext.h"
18#include "llvm/IR/Module.h"
Duncan P. N. Exon Smith1f8a99a2015-06-27 00:38:26 +000019#include "llvm/IR/ModuleSlotTracker.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000020#include "llvm/IR/Type.h"
Duncan P. N. Exon Smith327e9bd2015-04-24 21:53:27 +000021#include "llvm/IR/Verifier.h"
Chandler Carruth130cec22012-12-04 10:23:08 +000022#include "llvm/Support/raw_ostream.h"
Chandler Carruth130cec22012-12-04 10:23:08 +000023#include "gtest/gtest.h"
Nick Lewycky49f89192009-04-04 07:22:01 +000024using namespace llvm;
25
26namespace {
27
Duncan P. N. Exon Smith2711ca72015-01-19 19:02:06 +000028TEST(ContextAndReplaceableUsesTest, FromContext) {
29 LLVMContext Context;
30 ContextAndReplaceableUses CRU(Context);
31 EXPECT_EQ(&Context, &CRU.getContext());
32 EXPECT_FALSE(CRU.hasReplaceableUses());
33 EXPECT_FALSE(CRU.getReplaceableUses());
34}
35
36TEST(ContextAndReplaceableUsesTest, FromReplaceableUses) {
37 LLVMContext Context;
38 ContextAndReplaceableUses CRU(make_unique<ReplaceableMetadataImpl>(Context));
39 EXPECT_EQ(&Context, &CRU.getContext());
40 EXPECT_TRUE(CRU.hasReplaceableUses());
41 EXPECT_TRUE(CRU.getReplaceableUses());
42}
43
44TEST(ContextAndReplaceableUsesTest, makeReplaceable) {
45 LLVMContext Context;
46 ContextAndReplaceableUses CRU(Context);
47 CRU.makeReplaceable(make_unique<ReplaceableMetadataImpl>(Context));
48 EXPECT_EQ(&Context, &CRU.getContext());
49 EXPECT_TRUE(CRU.hasReplaceableUses());
50 EXPECT_TRUE(CRU.getReplaceableUses());
51}
52
53TEST(ContextAndReplaceableUsesTest, takeReplaceableUses) {
54 LLVMContext Context;
55 auto ReplaceableUses = make_unique<ReplaceableMetadataImpl>(Context);
56 auto *Ptr = ReplaceableUses.get();
57 ContextAndReplaceableUses CRU(std::move(ReplaceableUses));
58 ReplaceableUses = CRU.takeReplaceableUses();
59 EXPECT_EQ(&Context, &CRU.getContext());
60 EXPECT_FALSE(CRU.hasReplaceableUses());
61 EXPECT_FALSE(CRU.getReplaceableUses());
62 EXPECT_EQ(Ptr, ReplaceableUses.get());
63}
64
Jeffrey Yasskinbd8a7592010-03-04 23:24:19 +000065class MetadataTest : public testing::Test {
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +000066public:
Duncan P. N. Exon Smith869db502015-03-30 16:19:15 +000067 MetadataTest() : M("test", Context), Counter(0) {}
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +000068
Jeffrey Yasskinbd8a7592010-03-04 23:24:19 +000069protected:
70 LLVMContext Context;
Duncan P. N. Exon Smith869db502015-03-30 16:19:15 +000071 Module M;
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +000072 int Counter;
73
Duncan P. N. Exon Smithfee167f2014-12-16 07:09:37 +000074 MDNode *getNode() { return MDNode::get(Context, None); }
75 MDNode *getNode(Metadata *MD) { return MDNode::get(Context, MD); }
76 MDNode *getNode(Metadata *MD1, Metadata *MD2) {
77 Metadata *MDs[] = {MD1, MD2};
78 return MDNode::get(Context, MDs);
79 }
Duncan P. N. Exon Smith26489982015-03-26 22:05:04 +000080
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +000081 MDTuple *getTuple() { return MDTuple::getDistinct(Context, None); }
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000082 DISubroutineType *getSubroutineType() {
Leny Kholodov40c62352016-09-06 17:03:02 +000083 return DISubroutineType::getDistinct(Context, DINode::FlagZero, 0,
84 getNode(nullptr));
Duncan P. N. Exon Smith869db502015-03-30 16:19:15 +000085 }
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000086 DISubprogram *getSubprogram() {
87 return DISubprogram::getDistinct(Context, nullptr, "", "", nullptr, 0,
Leny Kholodov40c62352016-09-06 17:03:02 +000088 nullptr, false, false, 0, nullptr, 0, 0, 0,
89 DINode::FlagZero, false, nullptr);
Duncan P. N. Exon Smith26489982015-03-26 22:05:04 +000090 }
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000091 DIFile *getFile() {
92 return DIFile::getDistinct(Context, "file.c", "/path/to/dir");
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +000093 }
Adrian Prantl75819ae2016-04-15 15:57:41 +000094 DICompileUnit *getUnit() {
Peter Collingbourneb52e2362017-09-12 21:50:41 +000095 return DICompileUnit::getDistinct(
96 Context, 1, getFile(), "clang", false, "-g", 2, "",
97 DICompileUnit::FullDebug, getTuple(), getTuple(), getTuple(),
98 getTuple(), getTuple(), 0, true, false, false);
Adrian Prantl75819ae2016-04-15 15:57:41 +000099 }
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +0000100 DIType *getBasicType(StringRef Name) {
101 return DIBasicType::get(Context, dwarf::DW_TAG_unspecified_type, Name);
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +0000102 }
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +0000103 DIType *getDerivedType() {
Leny Kholodov40c62352016-09-06 17:03:02 +0000104 return DIDerivedType::getDistinct(
105 Context, dwarf::DW_TAG_pointer_type, "", nullptr, 0, nullptr,
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +0000106 getBasicType("basictype"), 1, 2, 0, None, DINode::FlagZero);
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +0000107 }
Duncan P. N. Exon Smith7ad0bd52015-04-11 20:27:40 +0000108 Constant *getConstant() {
109 return ConstantInt::get(Type::getInt32Ty(Context), Counter++);
110 }
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +0000111 ConstantAsMetadata *getConstantAsMetadata() {
Duncan P. N. Exon Smith7ad0bd52015-04-11 20:27:40 +0000112 return ConstantAsMetadata::get(getConstant());
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +0000113 }
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +0000114 DIType *getCompositeType() {
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000115 return DICompositeType::getDistinct(
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +0000116 Context, dwarf::DW_TAG_structure_type, "", nullptr, 0, nullptr, nullptr,
Leny Kholodov5fcc4182016-09-06 10:46:28 +0000117 32, 32, 0, DINode::FlagZero, nullptr, 0, nullptr, nullptr, "");
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +0000118 }
Duncan P. N. Exon Smith7ad0bd52015-04-11 20:27:40 +0000119 Function *getFunction(StringRef Name) {
120 return cast<Function>(M.getOrInsertFunction(
Duncan P. N. Exon Smith869db502015-03-30 16:19:15 +0000121 Name, FunctionType::get(Type::getVoidTy(Context), None, false)));
122 }
Jeffrey Yasskinbd8a7592010-03-04 23:24:19 +0000123};
124typedef MetadataTest MDStringTest;
Owen Anderson23587322009-07-31 21:38:10 +0000125
Nick Lewycky49f89192009-04-04 07:22:01 +0000126// Test that construction of MDString with different value produces different
127// MDString objects, even with the same string pointer and nulls in the string.
Jeffrey Yasskinbd8a7592010-03-04 23:24:19 +0000128TEST_F(MDStringTest, CreateDifferent) {
Nick Lewycky49f89192009-04-04 07:22:01 +0000129 char x[3] = { 'f', 0, 'A' };
Owen Anderson23587322009-07-31 21:38:10 +0000130 MDString *s1 = MDString::get(Context, StringRef(&x[0], 3));
Nick Lewycky49f89192009-04-04 07:22:01 +0000131 x[2] = 'B';
Owen Anderson23587322009-07-31 21:38:10 +0000132 MDString *s2 = MDString::get(Context, StringRef(&x[0], 3));
Nick Lewycky49f89192009-04-04 07:22:01 +0000133 EXPECT_NE(s1, s2);
134}
135
136// Test that creation of MDStrings with the same string contents produces the
137// same MDString object, even with different pointers.
Jeffrey Yasskinbd8a7592010-03-04 23:24:19 +0000138TEST_F(MDStringTest, CreateSame) {
Nick Lewycky49f89192009-04-04 07:22:01 +0000139 char x[4] = { 'a', 'b', 'c', 'X' };
140 char y[4] = { 'a', 'b', 'c', 'Y' };
141
Owen Anderson23587322009-07-31 21:38:10 +0000142 MDString *s1 = MDString::get(Context, StringRef(&x[0], 3));
143 MDString *s2 = MDString::get(Context, StringRef(&y[0], 3));
Nick Lewycky49f89192009-04-04 07:22:01 +0000144 EXPECT_EQ(s1, s2);
145}
146
147// Test that MDString prints out the string we fed it.
Jeffrey Yasskinbd8a7592010-03-04 23:24:19 +0000148TEST_F(MDStringTest, PrintingSimple) {
Nick Lewycky49f89192009-04-04 07:22:01 +0000149 char *str = new char[13];
150 strncpy(str, "testing 1 2 3", 13);
Owen Anderson23587322009-07-31 21:38:10 +0000151 MDString *s = MDString::get(Context, StringRef(str, 13));
Nick Lewycky49f89192009-04-04 07:22:01 +0000152 strncpy(str, "aaaaaaaaaaaaa", 13);
153 delete[] str;
154
Chris Lattnerbe354a62009-08-23 04:47:35 +0000155 std::string Str;
156 raw_string_ostream oss(Str);
Nick Lewycky49f89192009-04-04 07:22:01 +0000157 s->print(oss);
Duncan P. N. Exon Smithbb7d2fb2014-12-16 07:40:31 +0000158 EXPECT_STREQ("!\"testing 1 2 3\"", oss.str().c_str());
Nick Lewycky49f89192009-04-04 07:22:01 +0000159}
160
161// Test printing of MDString with non-printable characters.
Jeffrey Yasskinbd8a7592010-03-04 23:24:19 +0000162TEST_F(MDStringTest, PrintingComplex) {
Jeffrey Yasskin065c3572011-08-30 20:53:29 +0000163 char str[5] = {0, '\n', '"', '\\', (char)-1};
Owen Anderson23587322009-07-31 21:38:10 +0000164 MDString *s = MDString::get(Context, StringRef(str+0, 5));
Chris Lattnerbe354a62009-08-23 04:47:35 +0000165 std::string Str;
166 raw_string_ostream oss(Str);
Nick Lewycky49f89192009-04-04 07:22:01 +0000167 s->print(oss);
Duncan P. N. Exon Smithbb7d2fb2014-12-16 07:40:31 +0000168 EXPECT_STREQ("!\"\\00\\0A\\22\\5C\\FF\"", oss.str().c_str());
Nick Lewycky49f89192009-04-04 07:22:01 +0000169}
170
Jeffrey Yasskinbd8a7592010-03-04 23:24:19 +0000171typedef MetadataTest MDNodeTest;
172
Nick Lewycky49f89192009-04-04 07:22:01 +0000173// Test the two constructors, and containing other Constants.
Jeffrey Yasskinbd8a7592010-03-04 23:24:19 +0000174TEST_F(MDNodeTest, Simple) {
Nick Lewycky49f89192009-04-04 07:22:01 +0000175 char x[3] = { 'a', 'b', 'c' };
176 char y[3] = { '1', '2', '3' };
177
Owen Anderson23587322009-07-31 21:38:10 +0000178 MDString *s1 = MDString::get(Context, StringRef(&x[0], 3));
179 MDString *s2 = MDString::get(Context, StringRef(&y[0], 3));
Mehdi Amini03b42e42016-04-14 21:59:01 +0000180 ConstantAsMetadata *CI =
181 ConstantAsMetadata::get(ConstantInt::get(Context, APInt(8, 0)));
Nick Lewycky49f89192009-04-04 07:22:01 +0000182
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000183 std::vector<Metadata *> V;
Nick Lewycky49f89192009-04-04 07:22:01 +0000184 V.push_back(s1);
185 V.push_back(CI);
186 V.push_back(s2);
187
Jay Foad5514afe2011-04-21 19:59:31 +0000188 MDNode *n1 = MDNode::get(Context, V);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000189 Metadata *const c1 = n1;
Jay Foad5514afe2011-04-21 19:59:31 +0000190 MDNode *n2 = MDNode::get(Context, c1);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000191 Metadata *const c2 = n2;
Jay Foad5514afe2011-04-21 19:59:31 +0000192 MDNode *n3 = MDNode::get(Context, V);
Duncan Sands26a80f32012-03-31 08:20:11 +0000193 MDNode *n4 = MDNode::getIfExists(Context, V);
194 MDNode *n5 = MDNode::getIfExists(Context, c1);
195 MDNode *n6 = MDNode::getIfExists(Context, c2);
Nick Lewycky49f89192009-04-04 07:22:01 +0000196 EXPECT_NE(n1, n2);
Devang Patelf7188322009-09-03 01:39:20 +0000197 EXPECT_EQ(n1, n3);
Duncan Sands26a80f32012-03-31 08:20:11 +0000198 EXPECT_EQ(n4, n1);
199 EXPECT_EQ(n5, n2);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000200 EXPECT_EQ(n6, (Metadata *)nullptr);
Nick Lewycky49f89192009-04-04 07:22:01 +0000201
Chris Lattner9b493022009-12-31 01:22:29 +0000202 EXPECT_EQ(3u, n1->getNumOperands());
203 EXPECT_EQ(s1, n1->getOperand(0));
204 EXPECT_EQ(CI, n1->getOperand(1));
205 EXPECT_EQ(s2, n1->getOperand(2));
Nick Lewycky49f89192009-04-04 07:22:01 +0000206
Chris Lattner9b493022009-12-31 01:22:29 +0000207 EXPECT_EQ(1u, n2->getNumOperands());
208 EXPECT_EQ(n1, n2->getOperand(0));
Nick Lewycky49f89192009-04-04 07:22:01 +0000209}
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +0000210
Jeffrey Yasskinbd8a7592010-03-04 23:24:19 +0000211TEST_F(MDNodeTest, Delete) {
Mehdi Amini03b42e42016-04-14 21:59:01 +0000212 Constant *C = ConstantInt::get(Type::getInt32Ty(Context), 1);
213 Instruction *I = new BitCastInst(C, Type::getInt32Ty(Context));
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +0000214
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000215 Metadata *const V = LocalAsMetadata::get(I);
Jay Foad5514afe2011-04-21 19:59:31 +0000216 MDNode *n = MDNode::get(Context, V);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000217 TrackingMDRef wvh(n);
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +0000218
219 EXPECT_EQ(n, wvh);
220
Reid Kleckner96ab8722017-05-18 17:24:10 +0000221 I->deleteValue();
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +0000222}
Devang Patel0924b332009-07-30 00:03:41 +0000223
Duncan P. N. Exon Smithac8ee282014-12-07 19:52:06 +0000224TEST_F(MDNodeTest, SelfReference) {
Duncan P. N. Exon Smith8c662732014-12-16 07:45:05 +0000225 // !0 = !{!0}
226 // !1 = !{!0}
Duncan P. N. Exon Smithac8ee282014-12-07 19:52:06 +0000227 {
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000228 auto Temp = MDNode::getTemporary(Context, None);
229 Metadata *Args[] = {Temp.get()};
Duncan P. N. Exon Smithac8ee282014-12-07 19:52:06 +0000230 MDNode *Self = MDNode::get(Context, Args);
231 Self->replaceOperandWith(0, Self);
Duncan P. N. Exon Smithac8ee282014-12-07 19:52:06 +0000232 ASSERT_EQ(Self, Self->getOperand(0));
233
234 // Self-references should be distinct, so MDNode::get() should grab a
235 // uniqued node that references Self, not Self.
236 Args[0] = Self;
237 MDNode *Ref1 = MDNode::get(Context, Args);
238 MDNode *Ref2 = MDNode::get(Context, Args);
239 EXPECT_NE(Self, Ref1);
240 EXPECT_EQ(Ref1, Ref2);
241 }
242
Duncan P. N. Exon Smith8c662732014-12-16 07:45:05 +0000243 // !0 = !{!0, !{}}
244 // !1 = !{!0, !{}}
Duncan P. N. Exon Smithac8ee282014-12-07 19:52:06 +0000245 {
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000246 auto Temp = MDNode::getTemporary(Context, None);
247 Metadata *Args[] = {Temp.get(), MDNode::get(Context, None)};
Duncan P. N. Exon Smithac8ee282014-12-07 19:52:06 +0000248 MDNode *Self = MDNode::get(Context, Args);
249 Self->replaceOperandWith(0, Self);
Duncan P. N. Exon Smithac8ee282014-12-07 19:52:06 +0000250 ASSERT_EQ(Self, Self->getOperand(0));
251
252 // Self-references should be distinct, so MDNode::get() should grab a
253 // uniqued node that references Self, not Self itself.
254 Args[0] = Self;
255 MDNode *Ref1 = MDNode::get(Context, Args);
256 MDNode *Ref2 = MDNode::get(Context, Args);
257 EXPECT_NE(Self, Ref1);
258 EXPECT_EQ(Ref1, Ref2);
259 }
260}
261
Duncan P. N. Exon Smithfee167f2014-12-16 07:09:37 +0000262TEST_F(MDNodeTest, Print) {
263 Constant *C = ConstantInt::get(Type::getInt32Ty(Context), 7);
264 MDString *S = MDString::get(Context, "foo");
265 MDNode *N0 = getNode();
266 MDNode *N1 = getNode(N0);
267 MDNode *N2 = getNode(N0, N1);
268
269 Metadata *Args[] = {ConstantAsMetadata::get(C), S, nullptr, N0, N1, N2};
270 MDNode *N = MDNode::get(Context, Args);
271
272 std::string Expected;
273 {
274 raw_string_ostream OS(Expected);
Duncan P. N. Exon Smithd6d70e72015-03-14 20:19:36 +0000275 OS << "<" << (void *)N << "> = !{";
Duncan P. N. Exon Smithfee167f2014-12-16 07:09:37 +0000276 C->printAsOperand(OS);
277 OS << ", ";
Duncan P. N. Exon Smithbb7d2fb2014-12-16 07:40:31 +0000278 S->printAsOperand(OS);
Duncan P. N. Exon Smithfee167f2014-12-16 07:09:37 +0000279 OS << ", null";
280 MDNode *Nodes[] = {N0, N1, N2};
281 for (auto *Node : Nodes)
282 OS << ", <" << (void *)Node << ">";
Duncan P. N. Exon Smith738889f2015-02-25 22:46:38 +0000283 OS << "}";
Duncan P. N. Exon Smithfee167f2014-12-16 07:09:37 +0000284 }
285
286 std::string Actual;
287 {
288 raw_string_ostream OS(Actual);
289 N->print(OS);
290 }
291
292 EXPECT_EQ(Expected, Actual);
293}
294
Duncan P. N. Exon Smithd6d70e72015-03-14 20:19:36 +0000295#define EXPECT_PRINTER_EQ(EXPECTED, PRINT) \
296 do { \
297 std::string Actual_; \
298 raw_string_ostream OS(Actual_); \
299 PRINT; \
300 OS.flush(); \
301 std::string Expected_(EXPECTED); \
302 EXPECT_EQ(Expected_, Actual_); \
303 } while (false)
304
Duncan P. N. Exon Smith3d510662015-03-16 21:21:10 +0000305TEST_F(MDNodeTest, PrintTemporary) {
306 MDNode *Arg = getNode();
307 TempMDNode Temp = MDNode::getTemporary(Context, Arg);
308 MDNode *N = getNode(Temp.get());
309 Module M("test", Context);
310 NamedMDNode *NMD = M.getOrInsertNamedMetadata("named");
311 NMD->addOperand(N);
312
313 EXPECT_PRINTER_EQ("!0 = !{!1}", N->print(OS, &M));
314 EXPECT_PRINTER_EQ("!1 = <temporary!> !{!2}", Temp->print(OS, &M));
315 EXPECT_PRINTER_EQ("!2 = !{}", Arg->print(OS, &M));
316
317 // Cleanup.
318 Temp->replaceAllUsesWith(Arg);
319}
320
Duncan P. N. Exon Smithd6d70e72015-03-14 20:19:36 +0000321TEST_F(MDNodeTest, PrintFromModule) {
322 Constant *C = ConstantInt::get(Type::getInt32Ty(Context), 7);
323 MDString *S = MDString::get(Context, "foo");
324 MDNode *N0 = getNode();
325 MDNode *N1 = getNode(N0);
326 MDNode *N2 = getNode(N0, N1);
327
328 Metadata *Args[] = {ConstantAsMetadata::get(C), S, nullptr, N0, N1, N2};
329 MDNode *N = MDNode::get(Context, Args);
330 Module M("test", Context);
331 NamedMDNode *NMD = M.getOrInsertNamedMetadata("named");
332 NMD->addOperand(N);
333
334 std::string Expected;
335 {
336 raw_string_ostream OS(Expected);
337 OS << "!0 = !{";
338 C->printAsOperand(OS);
339 OS << ", ";
340 S->printAsOperand(OS);
341 OS << ", null, !1, !2, !3}";
342 }
343
344 EXPECT_PRINTER_EQ(Expected, N->print(OS, &M));
345}
346
347TEST_F(MDNodeTest, PrintFromFunction) {
348 Module M("test", Context);
349 auto *FTy = FunctionType::get(Type::getVoidTy(Context), false);
350 auto *F0 = Function::Create(FTy, GlobalValue::ExternalLinkage, "F0", &M);
351 auto *F1 = Function::Create(FTy, GlobalValue::ExternalLinkage, "F1", &M);
352 auto *BB0 = BasicBlock::Create(Context, "entry", F0);
353 auto *BB1 = BasicBlock::Create(Context, "entry", F1);
354 auto *R0 = ReturnInst::Create(Context, BB0);
355 auto *R1 = ReturnInst::Create(Context, BB1);
356 auto *N0 = MDNode::getDistinct(Context, None);
357 auto *N1 = MDNode::getDistinct(Context, None);
358 R0->setMetadata("md", N0);
359 R1->setMetadata("md", N1);
360
361 EXPECT_PRINTER_EQ("!0 = distinct !{}", N0->print(OS, &M));
362 EXPECT_PRINTER_EQ("!1 = distinct !{}", N1->print(OS, &M));
Duncan P. N. Exon Smith1f8a99a2015-06-27 00:38:26 +0000363
364 ModuleSlotTracker MST(&M);
365 EXPECT_PRINTER_EQ("!0 = distinct !{}", N0->print(OS, MST));
366 EXPECT_PRINTER_EQ("!1 = distinct !{}", N1->print(OS, MST));
Duncan P. N. Exon Smithd6d70e72015-03-14 20:19:36 +0000367}
368
369TEST_F(MDNodeTest, PrintFromMetadataAsValue) {
370 Module M("test", Context);
371
372 auto *Intrinsic =
373 Function::Create(FunctionType::get(Type::getVoidTy(Context),
374 Type::getMetadataTy(Context), false),
375 GlobalValue::ExternalLinkage, "llvm.intrinsic", &M);
376
377 auto *FTy = FunctionType::get(Type::getVoidTy(Context), false);
378 auto *F0 = Function::Create(FTy, GlobalValue::ExternalLinkage, "F0", &M);
379 auto *F1 = Function::Create(FTy, GlobalValue::ExternalLinkage, "F1", &M);
380 auto *BB0 = BasicBlock::Create(Context, "entry", F0);
381 auto *BB1 = BasicBlock::Create(Context, "entry", F1);
382 auto *N0 = MDNode::getDistinct(Context, None);
383 auto *N1 = MDNode::getDistinct(Context, None);
384 auto *MAV0 = MetadataAsValue::get(Context, N0);
385 auto *MAV1 = MetadataAsValue::get(Context, N1);
386 CallInst::Create(Intrinsic, MAV0, "", BB0);
387 CallInst::Create(Intrinsic, MAV1, "", BB1);
388
389 EXPECT_PRINTER_EQ("!0 = distinct !{}", MAV0->print(OS));
390 EXPECT_PRINTER_EQ("!1 = distinct !{}", MAV1->print(OS));
391 EXPECT_PRINTER_EQ("!0", MAV0->printAsOperand(OS, false));
392 EXPECT_PRINTER_EQ("!1", MAV1->printAsOperand(OS, false));
393 EXPECT_PRINTER_EQ("metadata !0", MAV0->printAsOperand(OS, true));
394 EXPECT_PRINTER_EQ("metadata !1", MAV1->printAsOperand(OS, true));
Duncan P. N. Exon Smith1f8a99a2015-06-27 00:38:26 +0000395
396 ModuleSlotTracker MST(&M);
397 EXPECT_PRINTER_EQ("!0 = distinct !{}", MAV0->print(OS, MST));
398 EXPECT_PRINTER_EQ("!1 = distinct !{}", MAV1->print(OS, MST));
399 EXPECT_PRINTER_EQ("!0", MAV0->printAsOperand(OS, false, MST));
400 EXPECT_PRINTER_EQ("!1", MAV1->printAsOperand(OS, false, MST));
401 EXPECT_PRINTER_EQ("metadata !0", MAV0->printAsOperand(OS, true, MST));
402 EXPECT_PRINTER_EQ("metadata !1", MAV1->printAsOperand(OS, true, MST));
Duncan P. N. Exon Smithd6d70e72015-03-14 20:19:36 +0000403}
404#undef EXPECT_PRINTER_EQ
405
Duncan P. N. Exon Smithbcd960a2015-01-05 23:31:54 +0000406TEST_F(MDNodeTest, NullOperand) {
407 // metadata !{}
408 MDNode *Empty = MDNode::get(Context, None);
409
410 // metadata !{metadata !{}}
411 Metadata *Ops[] = {Empty};
412 MDNode *N = MDNode::get(Context, Ops);
413 ASSERT_EQ(Empty, N->getOperand(0));
414
415 // metadata !{metadata !{}} => metadata !{null}
416 N->replaceOperandWith(0, nullptr);
417 ASSERT_EQ(nullptr, N->getOperand(0));
418
419 // metadata !{null}
420 Ops[0] = nullptr;
421 MDNode *NullOp = MDNode::get(Context, Ops);
422 ASSERT_EQ(nullptr, NullOp->getOperand(0));
423 EXPECT_EQ(N, NullOp);
424}
425
Duncan P. N. Exon Smith136ea3f2015-01-07 21:35:38 +0000426TEST_F(MDNodeTest, DistinctOnUniquingCollision) {
427 // !{}
428 MDNode *Empty = MDNode::get(Context, None);
429 ASSERT_TRUE(Empty->isResolved());
430 EXPECT_FALSE(Empty->isDistinct());
431
432 // !{!{}}
433 Metadata *Wrapped1Ops[] = {Empty};
434 MDNode *Wrapped1 = MDNode::get(Context, Wrapped1Ops);
435 ASSERT_EQ(Empty, Wrapped1->getOperand(0));
436 ASSERT_TRUE(Wrapped1->isResolved());
437 EXPECT_FALSE(Wrapped1->isDistinct());
438
439 // !{!{!{}}}
440 Metadata *Wrapped2Ops[] = {Wrapped1};
441 MDNode *Wrapped2 = MDNode::get(Context, Wrapped2Ops);
442 ASSERT_EQ(Wrapped1, Wrapped2->getOperand(0));
443 ASSERT_TRUE(Wrapped2->isResolved());
444 EXPECT_FALSE(Wrapped2->isDistinct());
445
446 // !{!{!{}}} => !{!{}}
447 Wrapped2->replaceOperandWith(0, Empty);
448 ASSERT_EQ(Empty, Wrapped2->getOperand(0));
449 EXPECT_TRUE(Wrapped2->isDistinct());
450 EXPECT_FALSE(Wrapped1->isDistinct());
451}
452
Duncan P. N. Exon Smith9cbc69d2016-08-03 18:19:43 +0000453TEST_F(MDNodeTest, UniquedOnDeletedOperand) {
454 // temp !{}
455 TempMDTuple T = MDTuple::getTemporary(Context, None);
456
457 // !{temp !{}}
458 Metadata *Ops[] = {T.get()};
459 MDTuple *N = MDTuple::get(Context, Ops);
460
461 // !{temp !{}} => !{null}
462 T.reset();
463 ASSERT_TRUE(N->isUniqued());
464 Metadata *NullOps[] = {nullptr};
465 ASSERT_EQ(N, MDTuple::get(Context, NullOps));
466}
467
468TEST_F(MDNodeTest, DistinctOnDeletedValueOperand) {
469 // i1* @GV
470 Type *Ty = Type::getInt1PtrTy(Context);
471 std::unique_ptr<GlobalVariable> GV(
472 new GlobalVariable(Ty, false, GlobalValue::ExternalLinkage));
473 ConstantAsMetadata *Op = ConstantAsMetadata::get(GV.get());
474
475 // !{i1* @GV}
476 Metadata *Ops[] = {Op};
477 MDTuple *N = MDTuple::get(Context, Ops);
478
479 // !{i1* @GV} => !{null}
480 GV.reset();
481 ASSERT_TRUE(N->isDistinct());
482 ASSERT_EQ(nullptr, N->getOperand(0));
483 Metadata *NullOps[] = {nullptr};
484 ASSERT_NE(N, MDTuple::get(Context, NullOps));
485}
486
Duncan P. N. Exon Smith5e5b8502015-01-07 22:24:46 +0000487TEST_F(MDNodeTest, getDistinct) {
488 // !{}
489 MDNode *Empty = MDNode::get(Context, None);
490 ASSERT_TRUE(Empty->isResolved());
491 ASSERT_FALSE(Empty->isDistinct());
492 ASSERT_EQ(Empty, MDNode::get(Context, None));
493
494 // distinct !{}
495 MDNode *Distinct1 = MDNode::getDistinct(Context, None);
496 MDNode *Distinct2 = MDNode::getDistinct(Context, None);
497 EXPECT_TRUE(Distinct1->isResolved());
498 EXPECT_TRUE(Distinct2->isDistinct());
499 EXPECT_NE(Empty, Distinct1);
500 EXPECT_NE(Empty, Distinct2);
501 EXPECT_NE(Distinct1, Distinct2);
502
503 // !{}
504 ASSERT_EQ(Empty, MDNode::get(Context, None));
505}
506
Duncan P. N. Exon Smithde03a8b2015-01-19 18:45:35 +0000507TEST_F(MDNodeTest, isUniqued) {
508 MDNode *U = MDTuple::get(Context, None);
509 MDNode *D = MDTuple::getDistinct(Context, None);
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000510 auto T = MDTuple::getTemporary(Context, None);
Duncan P. N. Exon Smithde03a8b2015-01-19 18:45:35 +0000511 EXPECT_TRUE(U->isUniqued());
512 EXPECT_FALSE(D->isUniqued());
513 EXPECT_FALSE(T->isUniqued());
Duncan P. N. Exon Smithde03a8b2015-01-19 18:45:35 +0000514}
515
516TEST_F(MDNodeTest, isDistinct) {
517 MDNode *U = MDTuple::get(Context, None);
518 MDNode *D = MDTuple::getDistinct(Context, None);
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000519 auto T = MDTuple::getTemporary(Context, None);
Duncan P. N. Exon Smithde03a8b2015-01-19 18:45:35 +0000520 EXPECT_FALSE(U->isDistinct());
521 EXPECT_TRUE(D->isDistinct());
522 EXPECT_FALSE(T->isDistinct());
Duncan P. N. Exon Smithde03a8b2015-01-19 18:45:35 +0000523}
524
525TEST_F(MDNodeTest, isTemporary) {
526 MDNode *U = MDTuple::get(Context, None);
527 MDNode *D = MDTuple::getDistinct(Context, None);
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000528 auto T = MDTuple::getTemporary(Context, None);
Duncan P. N. Exon Smithde03a8b2015-01-19 18:45:35 +0000529 EXPECT_FALSE(U->isTemporary());
530 EXPECT_FALSE(D->isTemporary());
531 EXPECT_TRUE(T->isTemporary());
Duncan P. N. Exon Smithd1474ee2015-01-12 18:41:26 +0000532}
533
Duncan P. N. Exon Smith5e5b8502015-01-07 22:24:46 +0000534TEST_F(MDNodeTest, getDistinctWithUnresolvedOperands) {
535 // temporary !{}
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000536 auto Temp = MDTuple::getTemporary(Context, None);
Duncan P. N. Exon Smith5e5b8502015-01-07 22:24:46 +0000537 ASSERT_FALSE(Temp->isResolved());
538
539 // distinct !{temporary !{}}
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000540 Metadata *Ops[] = {Temp.get()};
Duncan P. N. Exon Smith5e5b8502015-01-07 22:24:46 +0000541 MDNode *Distinct = MDNode::getDistinct(Context, Ops);
542 EXPECT_TRUE(Distinct->isResolved());
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000543 EXPECT_EQ(Temp.get(), Distinct->getOperand(0));
Duncan P. N. Exon Smith5e5b8502015-01-07 22:24:46 +0000544
545 // temporary !{} => !{}
546 MDNode *Empty = MDNode::get(Context, None);
547 Temp->replaceAllUsesWith(Empty);
Duncan P. N. Exon Smith5e5b8502015-01-07 22:24:46 +0000548 EXPECT_EQ(Empty, Distinct->getOperand(0));
549}
550
Duncan P. N. Exon Smith5f461892015-01-12 19:22:04 +0000551TEST_F(MDNodeTest, handleChangedOperandRecursion) {
552 // !0 = !{}
553 MDNode *N0 = MDNode::get(Context, None);
554
555 // !1 = !{!3, null}
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000556 auto Temp3 = MDTuple::getTemporary(Context, None);
557 Metadata *Ops1[] = {Temp3.get(), nullptr};
Duncan P. N. Exon Smith5f461892015-01-12 19:22:04 +0000558 MDNode *N1 = MDNode::get(Context, Ops1);
559
560 // !2 = !{!3, !0}
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000561 Metadata *Ops2[] = {Temp3.get(), N0};
Duncan P. N. Exon Smith5f461892015-01-12 19:22:04 +0000562 MDNode *N2 = MDNode::get(Context, Ops2);
563
564 // !3 = !{!2}
565 Metadata *Ops3[] = {N2};
566 MDNode *N3 = MDNode::get(Context, Ops3);
567 Temp3->replaceAllUsesWith(N3);
568
569 // !4 = !{!1}
570 Metadata *Ops4[] = {N1};
571 MDNode *N4 = MDNode::get(Context, Ops4);
572
573 // Confirm that the cycle prevented RAUW from getting dropped.
574 EXPECT_TRUE(N0->isResolved());
575 EXPECT_FALSE(N1->isResolved());
576 EXPECT_FALSE(N2->isResolved());
577 EXPECT_FALSE(N3->isResolved());
578 EXPECT_FALSE(N4->isResolved());
579
580 // Create a couple of distinct nodes to observe what's going on.
581 //
582 // !5 = distinct !{!2}
583 // !6 = distinct !{!3}
584 Metadata *Ops5[] = {N2};
585 MDNode *N5 = MDNode::getDistinct(Context, Ops5);
586 Metadata *Ops6[] = {N3};
587 MDNode *N6 = MDNode::getDistinct(Context, Ops6);
588
589 // Mutate !2 to look like !1, causing a uniquing collision (and an RAUW).
590 // This will ripple up, with !3 colliding with !4, and RAUWing. Since !2
591 // references !3, this can cause a re-entry of handleChangedOperand() when !3
592 // is not ready for it.
593 //
594 // !2->replaceOperandWith(1, nullptr)
595 // !2: !{!3, !0} => !{!3, null}
596 // !2->replaceAllUsesWith(!1)
597 // !3: !{!2] => !{!1}
598 // !3->replaceAllUsesWith(!4)
599 N2->replaceOperandWith(1, nullptr);
600
601 // If all has gone well, N2 and N3 will have been RAUW'ed and deleted from
602 // under us. Just check that the other nodes are sane.
603 //
604 // !1 = !{!4, null}
605 // !4 = !{!1}
606 // !5 = distinct !{!1}
607 // !6 = distinct !{!4}
608 EXPECT_EQ(N4, N1->getOperand(0));
609 EXPECT_EQ(N1, N4->getOperand(0));
610 EXPECT_EQ(N1, N5->getOperand(0));
611 EXPECT_EQ(N4, N6->getOperand(0));
612}
613
Duncan P. N. Exon Smith845755c42015-01-13 00:46:34 +0000614TEST_F(MDNodeTest, replaceResolvedOperand) {
615 // Check code for replacing one resolved operand with another. If doing this
616 // directly (via replaceOperandWith()) becomes illegal, change the operand to
617 // a global value that gets RAUW'ed.
618 //
619 // Use a temporary node to keep N from being resolved.
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000620 auto Temp = MDTuple::getTemporary(Context, None);
621 Metadata *Ops[] = {nullptr, Temp.get()};
Duncan P. N. Exon Smith845755c42015-01-13 00:46:34 +0000622
NAKAMURA Takumi2f8f0542015-01-13 08:13:46 +0000623 MDNode *Empty = MDTuple::get(Context, ArrayRef<Metadata *>());
Duncan P. N. Exon Smith845755c42015-01-13 00:46:34 +0000624 MDNode *N = MDTuple::get(Context, Ops);
625 EXPECT_EQ(nullptr, N->getOperand(0));
626 ASSERT_FALSE(N->isResolved());
627
628 // Check code for replacing resolved nodes.
629 N->replaceOperandWith(0, Empty);
630 EXPECT_EQ(Empty, N->getOperand(0));
631
632 // Check code for adding another unresolved operand.
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000633 N->replaceOperandWith(0, Temp.get());
634 EXPECT_EQ(Temp.get(), N->getOperand(0));
Duncan P. N. Exon Smith845755c42015-01-13 00:46:34 +0000635
636 // Remove the references to Temp; required for teardown.
637 Temp->replaceAllUsesWith(nullptr);
638}
639
Duncan P. N. Exon Smithe3353092015-01-19 22:24:52 +0000640TEST_F(MDNodeTest, replaceWithUniqued) {
641 auto *Empty = MDTuple::get(Context, None);
642 MDTuple *FirstUniqued;
643 {
644 Metadata *Ops[] = {Empty};
645 auto Temp = MDTuple::getTemporary(Context, Ops);
646 EXPECT_TRUE(Temp->isTemporary());
647
648 // Don't expect a collision.
649 auto *Current = Temp.get();
650 FirstUniqued = MDNode::replaceWithUniqued(std::move(Temp));
651 EXPECT_TRUE(FirstUniqued->isUniqued());
652 EXPECT_TRUE(FirstUniqued->isResolved());
653 EXPECT_EQ(Current, FirstUniqued);
654 }
655 {
656 Metadata *Ops[] = {Empty};
657 auto Temp = MDTuple::getTemporary(Context, Ops);
658 EXPECT_TRUE(Temp->isTemporary());
659
660 // Should collide with Uniqued above this time.
661 auto *Uniqued = MDNode::replaceWithUniqued(std::move(Temp));
662 EXPECT_TRUE(Uniqued->isUniqued());
663 EXPECT_TRUE(Uniqued->isResolved());
664 EXPECT_EQ(FirstUniqued, Uniqued);
665 }
666 {
667 auto Unresolved = MDTuple::getTemporary(Context, None);
668 Metadata *Ops[] = {Unresolved.get()};
669 auto Temp = MDTuple::getTemporary(Context, Ops);
670 EXPECT_TRUE(Temp->isTemporary());
671
672 // Shouldn't be resolved.
673 auto *Uniqued = MDNode::replaceWithUniqued(std::move(Temp));
674 EXPECT_TRUE(Uniqued->isUniqued());
675 EXPECT_FALSE(Uniqued->isResolved());
676
677 // Should be a different node.
678 EXPECT_NE(FirstUniqued, Uniqued);
679
680 // Should resolve when we update its node (note: be careful to avoid a
681 // collision with any other nodes above).
682 Uniqued->replaceOperandWith(0, nullptr);
683 EXPECT_TRUE(Uniqued->isResolved());
684 }
685}
686
Duncan P. N. Exon Smith014f1b82015-03-31 21:05:06 +0000687TEST_F(MDNodeTest, replaceWithUniquedResolvingOperand) {
Duncan P. N. Exon Smithcb33d6f2015-03-31 20:50:50 +0000688 // temp !{}
689 MDTuple *Op = MDTuple::getTemporary(Context, None).release();
690 EXPECT_FALSE(Op->isResolved());
691
692 // temp !{temp !{}}
693 Metadata *Ops[] = {Op};
694 MDTuple *N = MDTuple::getTemporary(Context, Ops).release();
695 EXPECT_FALSE(N->isResolved());
696
697 // temp !{temp !{}} => !{temp !{}}
698 ASSERT_EQ(N, MDNode::replaceWithUniqued(TempMDTuple(N)));
699 EXPECT_FALSE(N->isResolved());
700
701 // !{temp !{}} => !{!{}}
702 ASSERT_EQ(Op, MDNode::replaceWithUniqued(TempMDTuple(Op)));
703 EXPECT_TRUE(Op->isResolved());
704 EXPECT_TRUE(N->isResolved());
705}
706
Duncan P. N. Exon Smith9cbc69d2016-08-03 18:19:43 +0000707TEST_F(MDNodeTest, replaceWithUniquedDeletedOperand) {
Duncan P. N. Exon Smithcb33d6f2015-03-31 20:50:50 +0000708 // i1* @GV
709 Type *Ty = Type::getInt1PtrTy(Context);
710 std::unique_ptr<GlobalVariable> GV(
711 new GlobalVariable(Ty, false, GlobalValue::ExternalLinkage));
712 ConstantAsMetadata *Op = ConstantAsMetadata::get(GV.get());
713
714 // temp !{i1* @GV}
715 Metadata *Ops[] = {Op};
716 MDTuple *N = MDTuple::getTemporary(Context, Ops).release();
717
718 // temp !{i1* @GV} => !{i1* @GV}
719 ASSERT_EQ(N, MDNode::replaceWithUniqued(TempMDTuple(N)));
720 ASSERT_TRUE(N->isUniqued());
721
722 // !{i1* @GV} => !{null}
723 GV.reset();
Duncan P. N. Exon Smith9cbc69d2016-08-03 18:19:43 +0000724 ASSERT_TRUE(N->isDistinct());
725 ASSERT_EQ(nullptr, N->getOperand(0));
Duncan P. N. Exon Smithcb33d6f2015-03-31 20:50:50 +0000726 Metadata *NullOps[] = {nullptr};
Duncan P. N. Exon Smith9cbc69d2016-08-03 18:19:43 +0000727 ASSERT_NE(N, MDTuple::get(Context, NullOps));
728}
729
730TEST_F(MDNodeTest, replaceWithUniquedChangedOperand) {
731 // i1* @GV
732 Type *Ty = Type::getInt1PtrTy(Context);
733 std::unique_ptr<GlobalVariable> GV(
734 new GlobalVariable(Ty, false, GlobalValue::ExternalLinkage));
735 ConstantAsMetadata *Op = ConstantAsMetadata::get(GV.get());
736
737 // temp !{i1* @GV}
738 Metadata *Ops[] = {Op};
739 MDTuple *N = MDTuple::getTemporary(Context, Ops).release();
740
741 // temp !{i1* @GV} => !{i1* @GV}
742 ASSERT_EQ(N, MDNode::replaceWithUniqued(TempMDTuple(N)));
743 ASSERT_TRUE(N->isUniqued());
744
745 // !{i1* @GV} => !{i1* @GV2}
746 std::unique_ptr<GlobalVariable> GV2(
747 new GlobalVariable(Ty, false, GlobalValue::ExternalLinkage));
748 GV->replaceAllUsesWith(GV2.get());
749 ASSERT_TRUE(N->isUniqued());
750 Metadata *NullOps[] = {ConstantAsMetadata::get(GV2.get())};
Duncan P. N. Exon Smithcb33d6f2015-03-31 20:50:50 +0000751 ASSERT_EQ(N, MDTuple::get(Context, NullOps));
752}
753
Duncan P. N. Exon Smithe3353092015-01-19 22:24:52 +0000754TEST_F(MDNodeTest, replaceWithDistinct) {
755 {
756 auto *Empty = MDTuple::get(Context, None);
757 Metadata *Ops[] = {Empty};
758 auto Temp = MDTuple::getTemporary(Context, Ops);
759 EXPECT_TRUE(Temp->isTemporary());
760
761 // Don't expect a collision.
762 auto *Current = Temp.get();
763 auto *Distinct = MDNode::replaceWithDistinct(std::move(Temp));
764 EXPECT_TRUE(Distinct->isDistinct());
765 EXPECT_TRUE(Distinct->isResolved());
766 EXPECT_EQ(Current, Distinct);
767 }
768 {
769 auto Unresolved = MDTuple::getTemporary(Context, None);
770 Metadata *Ops[] = {Unresolved.get()};
771 auto Temp = MDTuple::getTemporary(Context, Ops);
772 EXPECT_TRUE(Temp->isTemporary());
773
774 // Don't expect a collision.
775 auto *Current = Temp.get();
776 auto *Distinct = MDNode::replaceWithDistinct(std::move(Temp));
777 EXPECT_TRUE(Distinct->isDistinct());
778 EXPECT_TRUE(Distinct->isResolved());
779 EXPECT_EQ(Current, Distinct);
780
781 // Cleanup; required for teardown.
782 Unresolved->replaceAllUsesWith(nullptr);
783 }
784}
785
Duncan P. N. Exon Smith4ee4a982015-02-10 19:13:46 +0000786TEST_F(MDNodeTest, replaceWithPermanent) {
787 Metadata *Ops[] = {nullptr};
788 auto Temp = MDTuple::getTemporary(Context, Ops);
789 auto *T = Temp.get();
790
791 // U is a normal, uniqued node that references T.
792 auto *U = MDTuple::get(Context, T);
793 EXPECT_TRUE(U->isUniqued());
794
795 // Make Temp self-referencing.
796 Temp->replaceOperandWith(0, T);
797
798 // Try to uniquify Temp. This should, despite the name in the API, give a
799 // 'distinct' node, since self-references aren't allowed to be uniqued.
800 //
801 // Since it's distinct, N should have the same address as when it was a
802 // temporary (i.e., be equal to T not U).
803 auto *N = MDNode::replaceWithPermanent(std::move(Temp));
804 EXPECT_EQ(N, T);
805 EXPECT_TRUE(N->isDistinct());
806
807 // U should be the canonical unique node with N as the argument.
808 EXPECT_EQ(U, MDTuple::get(Context, N));
809 EXPECT_TRUE(U->isUniqued());
810
811 // This temporary should collide with U when replaced, but it should still be
812 // uniqued.
813 EXPECT_EQ(U, MDNode::replaceWithPermanent(MDTuple::getTemporary(Context, N)));
814 EXPECT_TRUE(U->isUniqued());
815
816 // This temporary should become a new uniqued node.
817 auto Temp2 = MDTuple::getTemporary(Context, U);
818 auto *V = Temp2.get();
819 EXPECT_EQ(V, MDNode::replaceWithPermanent(std::move(Temp2)));
820 EXPECT_TRUE(V->isUniqued());
821 EXPECT_EQ(U, V->getOperand(0));
822}
823
Duncan P. N. Exon Smith8d536972015-01-22 21:36:45 +0000824TEST_F(MDNodeTest, deleteTemporaryWithTrackingRef) {
825 TrackingMDRef Ref;
826 EXPECT_EQ(nullptr, Ref.get());
827 {
828 auto Temp = MDTuple::getTemporary(Context, None);
829 Ref.reset(Temp.get());
830 EXPECT_EQ(Temp.get(), Ref.get());
831 }
832 EXPECT_EQ(nullptr, Ref.get());
833}
834
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000835typedef MetadataTest DILocationTest;
Duncan P. N. Exon Smithde03ff52015-01-13 20:44:56 +0000836
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000837TEST_F(DILocationTest, Overflow) {
838 DISubprogram *N = getSubprogram();
Duncan P. N. Exon Smithde03ff52015-01-13 20:44:56 +0000839 {
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000840 DILocation *L = DILocation::get(Context, 2, 7, N);
Duncan P. N. Exon Smithde03ff52015-01-13 20:44:56 +0000841 EXPECT_EQ(2u, L->getLine());
842 EXPECT_EQ(7u, L->getColumn());
843 }
Duncan P. N. Exon Smith2f5bb312015-01-16 17:33:08 +0000844 unsigned U16 = 1u << 16;
Duncan P. N. Exon Smithde03ff52015-01-13 20:44:56 +0000845 {
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000846 DILocation *L = DILocation::get(Context, UINT32_MAX, U16 - 1, N);
Duncan P. N. Exon Smithaf677eb2015-02-06 22:50:13 +0000847 EXPECT_EQ(UINT32_MAX, L->getLine());
Duncan P. N. Exon Smith2f5bb312015-01-16 17:33:08 +0000848 EXPECT_EQ(U16 - 1, L->getColumn());
Duncan P. N. Exon Smithde03ff52015-01-13 20:44:56 +0000849 }
850 {
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000851 DILocation *L = DILocation::get(Context, UINT32_MAX, U16, N);
Duncan P. N. Exon Smithaf677eb2015-02-06 22:50:13 +0000852 EXPECT_EQ(UINT32_MAX, L->getLine());
Duncan P. N. Exon Smithde03ff52015-01-13 20:44:56 +0000853 EXPECT_EQ(0u, L->getColumn());
854 }
855 {
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000856 DILocation *L = DILocation::get(Context, UINT32_MAX, U16 + 1, N);
Duncan P. N. Exon Smithaf677eb2015-02-06 22:50:13 +0000857 EXPECT_EQ(UINT32_MAX, L->getLine());
Duncan P. N. Exon Smithde03ff52015-01-13 20:44:56 +0000858 EXPECT_EQ(0u, L->getColumn());
859 }
860}
861
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000862TEST_F(DILocationTest, getDistinct) {
Duncan P. N. Exon Smith26489982015-03-26 22:05:04 +0000863 MDNode *N = getSubprogram();
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000864 DILocation *L0 = DILocation::getDistinct(Context, 2, 7, N);
Duncan P. N. Exon Smithde03ff52015-01-13 20:44:56 +0000865 EXPECT_TRUE(L0->isDistinct());
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000866 DILocation *L1 = DILocation::get(Context, 2, 7, N);
Duncan P. N. Exon Smithde03ff52015-01-13 20:44:56 +0000867 EXPECT_FALSE(L1->isDistinct());
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000868 EXPECT_EQ(L1, DILocation::get(Context, 2, 7, N));
Duncan P. N. Exon Smithde03ff52015-01-13 20:44:56 +0000869}
870
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000871TEST_F(DILocationTest, getTemporary) {
Duncan P. N. Exon Smith799e56a2015-01-19 20:37:44 +0000872 MDNode *N = MDNode::get(Context, None);
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000873 auto L = DILocation::getTemporary(Context, 2, 7, N);
Duncan P. N. Exon Smith799e56a2015-01-19 20:37:44 +0000874 EXPECT_TRUE(L->isTemporary());
875 EXPECT_FALSE(L->isResolved());
Duncan P. N. Exon Smith799e56a2015-01-19 20:37:44 +0000876}
877
Teresa Johnsond98152b62015-12-07 15:05:44 +0000878TEST_F(DILocationTest, cloneTemporary) {
879 MDNode *N = MDNode::get(Context, None);
880 auto L = DILocation::getTemporary(Context, 2, 7, N);
881 EXPECT_TRUE(L->isTemporary());
882 auto L2 = L->clone();
883 EXPECT_TRUE(L2->isTemporary());
884}
885
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000886typedef MetadataTest GenericDINodeTest;
Duncan P. N. Exon Smithfed199a2015-01-20 00:01:43 +0000887
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000888TEST_F(GenericDINodeTest, get) {
Duncan P. N. Exon Smith68ab0232015-01-22 23:10:55 +0000889 StringRef Header = "header";
Duncan P. N. Exon Smithfed199a2015-01-20 00:01:43 +0000890 auto *Empty = MDNode::get(Context, None);
891 Metadata *Ops1[] = {Empty};
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000892 auto *N = GenericDINode::get(Context, 15, Header, Ops1);
Duncan P. N. Exon Smithfed199a2015-01-20 00:01:43 +0000893 EXPECT_EQ(15u, N->getTag());
894 EXPECT_EQ(2u, N->getNumOperands());
895 EXPECT_EQ(Header, N->getHeader());
Duncan P. N. Exon Smith68ab0232015-01-22 23:10:55 +0000896 EXPECT_EQ(MDString::get(Context, Header), N->getOperand(0));
Duncan P. N. Exon Smithfed199a2015-01-20 00:01:43 +0000897 EXPECT_EQ(1u, N->getNumDwarfOperands());
898 EXPECT_EQ(Empty, N->getDwarfOperand(0));
899 EXPECT_EQ(Empty, N->getOperand(1));
900 ASSERT_TRUE(N->isUniqued());
901
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000902 EXPECT_EQ(N, GenericDINode::get(Context, 15, Header, Ops1));
Duncan P. N. Exon Smithfed199a2015-01-20 00:01:43 +0000903
904 N->replaceOperandWith(1, nullptr);
905 EXPECT_EQ(15u, N->getTag());
906 EXPECT_EQ(Header, N->getHeader());
907 EXPECT_EQ(nullptr, N->getDwarfOperand(0));
908 ASSERT_TRUE(N->isUniqued());
909
910 Metadata *Ops2[] = {nullptr};
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000911 EXPECT_EQ(N, GenericDINode::get(Context, 15, Header, Ops2));
Duncan P. N. Exon Smithfed199a2015-01-20 00:01:43 +0000912
913 N->replaceDwarfOperandWith(0, Empty);
914 EXPECT_EQ(15u, N->getTag());
915 EXPECT_EQ(Header, N->getHeader());
916 EXPECT_EQ(Empty, N->getDwarfOperand(0));
917 ASSERT_TRUE(N->isUniqued());
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000918 EXPECT_EQ(N, GenericDINode::get(Context, 15, Header, Ops1));
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +0000919
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000920 TempGenericDINode Temp = N->clone();
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +0000921 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
Duncan P. N. Exon Smithfed199a2015-01-20 00:01:43 +0000922}
923
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000924TEST_F(GenericDINodeTest, getEmptyHeader) {
Duncan P. N. Exon Smith2da09e42015-01-20 00:58:46 +0000925 // Canonicalize !"" to null.
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000926 auto *N = GenericDINode::get(Context, 15, StringRef(), None);
Duncan P. N. Exon Smith68ab0232015-01-22 23:10:55 +0000927 EXPECT_EQ(StringRef(), N->getHeader());
928 EXPECT_EQ(nullptr, N->getOperand(0));
Duncan P. N. Exon Smith2da09e42015-01-20 00:58:46 +0000929}
930
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000931typedef MetadataTest DISubrangeTest;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000932
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000933TEST_F(DISubrangeTest, get) {
934 auto *N = DISubrange::get(Context, 5, 7);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000935 EXPECT_EQ(dwarf::DW_TAG_subrange_type, N->getTag());
936 EXPECT_EQ(5, N->getCount());
Duncan P. N. Exon Smith5dcf6212015-04-07 00:39:59 +0000937 EXPECT_EQ(7, N->getLowerBound());
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000938 EXPECT_EQ(N, DISubrange::get(Context, 5, 7));
939 EXPECT_EQ(DISubrange::get(Context, 5, 0), DISubrange::get(Context, 5));
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +0000940
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000941 TempDISubrange Temp = N->clone();
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +0000942 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000943}
944
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000945TEST_F(DISubrangeTest, getEmptyArray) {
946 auto *N = DISubrange::get(Context, -1, 0);
Duncan P. N. Exon Smith5c9a1772015-02-18 23:17:51 +0000947 EXPECT_EQ(dwarf::DW_TAG_subrange_type, N->getTag());
948 EXPECT_EQ(-1, N->getCount());
Duncan P. N. Exon Smith5dcf6212015-04-07 00:39:59 +0000949 EXPECT_EQ(0, N->getLowerBound());
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000950 EXPECT_EQ(N, DISubrange::get(Context, -1, 0));
Duncan P. N. Exon Smith5c9a1772015-02-18 23:17:51 +0000951}
952
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000953typedef MetadataTest DIEnumeratorTest;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000954
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000955TEST_F(DIEnumeratorTest, get) {
956 auto *N = DIEnumerator::get(Context, 7, "name");
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000957 EXPECT_EQ(dwarf::DW_TAG_enumerator, N->getTag());
958 EXPECT_EQ(7, N->getValue());
959 EXPECT_EQ("name", N->getName());
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000960 EXPECT_EQ(N, DIEnumerator::get(Context, 7, "name"));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000961
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000962 EXPECT_NE(N, DIEnumerator::get(Context, 8, "name"));
963 EXPECT_NE(N, DIEnumerator::get(Context, 7, "nam"));
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +0000964
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000965 TempDIEnumerator Temp = N->clone();
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +0000966 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000967}
968
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000969typedef MetadataTest DIBasicTypeTest;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000970
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000971TEST_F(DIBasicTypeTest, get) {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000972 auto *N =
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000973 DIBasicType::get(Context, dwarf::DW_TAG_base_type, "special", 33, 26, 7);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000974 EXPECT_EQ(dwarf::DW_TAG_base_type, N->getTag());
975 EXPECT_EQ("special", N->getName());
976 EXPECT_EQ(33u, N->getSizeInBits());
977 EXPECT_EQ(26u, N->getAlignInBits());
978 EXPECT_EQ(7u, N->getEncoding());
979 EXPECT_EQ(0u, N->getLine());
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000980 EXPECT_EQ(N, DIBasicType::get(Context, dwarf::DW_TAG_base_type, "special", 33,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000981 26, 7));
982
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000983 EXPECT_NE(N, DIBasicType::get(Context, dwarf::DW_TAG_unspecified_type,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000984 "special", 33, 26, 7));
985 EXPECT_NE(N,
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000986 DIBasicType::get(Context, dwarf::DW_TAG_base_type, "s", 33, 26, 7));
987 EXPECT_NE(N, DIBasicType::get(Context, dwarf::DW_TAG_base_type, "special", 32,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000988 26, 7));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000989 EXPECT_NE(N, DIBasicType::get(Context, dwarf::DW_TAG_base_type, "special", 33,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000990 25, 7));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000991 EXPECT_NE(N, DIBasicType::get(Context, dwarf::DW_TAG_base_type, "special", 33,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000992 26, 6));
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +0000993
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000994 TempDIBasicType Temp = N->clone();
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +0000995 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000996}
997
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000998TEST_F(DIBasicTypeTest, getWithLargeValues) {
999 auto *N = DIBasicType::get(Context, dwarf::DW_TAG_base_type, "special",
Victor Leschuk197aa312016-10-18 14:31:22 +00001000 UINT64_MAX, UINT32_MAX - 1, 7);
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00001001 EXPECT_EQ(UINT64_MAX, N->getSizeInBits());
Victor Leschuk197aa312016-10-18 14:31:22 +00001002 EXPECT_EQ(UINT32_MAX - 1, N->getAlignInBits());
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00001003}
1004
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001005TEST_F(DIBasicTypeTest, getUnspecified) {
Duncan P. N. Exon Smithb3538492015-03-03 16:45:34 +00001006 auto *N =
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001007 DIBasicType::get(Context, dwarf::DW_TAG_unspecified_type, "unspecified");
Duncan P. N. Exon Smithb3538492015-03-03 16:45:34 +00001008 EXPECT_EQ(dwarf::DW_TAG_unspecified_type, N->getTag());
1009 EXPECT_EQ("unspecified", N->getName());
1010 EXPECT_EQ(0u, N->getSizeInBits());
1011 EXPECT_EQ(0u, N->getAlignInBits());
1012 EXPECT_EQ(0u, N->getEncoding());
1013 EXPECT_EQ(0u, N->getLine());
1014}
1015
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001016typedef MetadataTest DITypeTest;
Duncan P. N. Exon Smithb3538492015-03-03 16:45:34 +00001017
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001018TEST_F(DITypeTest, clone) {
1019 // Check that DIType has a specialized clone that returns TempDIType.
1020 DIType *N = DIBasicType::get(Context, dwarf::DW_TAG_base_type, "int", 32, 32,
Duncan P. N. Exon Smithb3538492015-03-03 16:45:34 +00001021 dwarf::DW_ATE_signed);
1022
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001023 TempDIType Temp = N->clone();
Duncan P. N. Exon Smithb3538492015-03-03 16:45:34 +00001024 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
1025}
1026
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001027TEST_F(DITypeTest, setFlags) {
Duncan P. N. Exon Smithb3538492015-03-03 16:45:34 +00001028 // void (void)
1029 Metadata *TypesOps[] = {nullptr};
1030 Metadata *Types = MDTuple::get(Context, TypesOps);
1031
Leny Kholodov40c62352016-09-06 17:03:02 +00001032 DIType *D =
1033 DISubroutineType::getDistinct(Context, DINode::FlagZero, 0, Types);
Leny Kholodov5fcc4182016-09-06 10:46:28 +00001034 EXPECT_EQ(DINode::FlagZero, D->getFlags());
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001035 D->setFlags(DINode::FlagRValueReference);
1036 EXPECT_EQ(DINode::FlagRValueReference, D->getFlags());
Leny Kholodov5fcc4182016-09-06 10:46:28 +00001037 D->setFlags(DINode::FlagZero);
1038 EXPECT_EQ(DINode::FlagZero, D->getFlags());
Duncan P. N. Exon Smithb3538492015-03-03 16:45:34 +00001039
Leny Kholodov40c62352016-09-06 17:03:02 +00001040 TempDIType T =
1041 DISubroutineType::getTemporary(Context, DINode::FlagZero, 0, Types);
Leny Kholodov5fcc4182016-09-06 10:46:28 +00001042 EXPECT_EQ(DINode::FlagZero, T->getFlags());
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001043 T->setFlags(DINode::FlagRValueReference);
1044 EXPECT_EQ(DINode::FlagRValueReference, T->getFlags());
Leny Kholodov5fcc4182016-09-06 10:46:28 +00001045 T->setFlags(DINode::FlagZero);
1046 EXPECT_EQ(DINode::FlagZero, T->getFlags());
Duncan P. N. Exon Smithb3538492015-03-03 16:45:34 +00001047}
1048
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001049typedef MetadataTest DIDerivedTypeTest;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001050
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001051TEST_F(DIDerivedTypeTest, get) {
1052 DIFile *File = getFile();
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +00001053 DIScope *Scope = getSubprogram();
1054 DIType *BaseType = getBasicType("basic");
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +00001055 MDTuple *ExtraData = getTuple();
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001056 unsigned DWARFAddressSpace = 8;
Leny Kholodov5fcc4182016-09-06 10:46:28 +00001057 DINode::DIFlags Flags5 = static_cast<DINode::DIFlags>(5);
1058 DINode::DIFlags Flags4 = static_cast<DINode::DIFlags>(4);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001059
Leny Kholodov40c62352016-09-06 17:03:02 +00001060 auto *N =
1061 DIDerivedType::get(Context, dwarf::DW_TAG_pointer_type, "something", File,
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001062 1, Scope, BaseType, 2, 3, 4, DWARFAddressSpace, Flags5,
1063 ExtraData);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001064 EXPECT_EQ(dwarf::DW_TAG_pointer_type, N->getTag());
1065 EXPECT_EQ("something", N->getName());
1066 EXPECT_EQ(File, N->getFile());
1067 EXPECT_EQ(1u, N->getLine());
1068 EXPECT_EQ(Scope, N->getScope());
1069 EXPECT_EQ(BaseType, N->getBaseType());
1070 EXPECT_EQ(2u, N->getSizeInBits());
1071 EXPECT_EQ(3u, N->getAlignInBits());
1072 EXPECT_EQ(4u, N->getOffsetInBits());
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001073 EXPECT_EQ(DWARFAddressSpace, N->getDWARFAddressSpace().getValue());
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001074 EXPECT_EQ(5u, N->getFlags());
1075 EXPECT_EQ(ExtraData, N->getExtraData());
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001076 EXPECT_EQ(N, DIDerivedType::get(Context, dwarf::DW_TAG_pointer_type,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001077 "something", File, 1, Scope, BaseType, 2, 3,
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001078 4, DWARFAddressSpace, Flags5, ExtraData));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001079
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001080 EXPECT_NE(N, DIDerivedType::get(Context, dwarf::DW_TAG_reference_type,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001081 "something", File, 1, Scope, BaseType, 2, 3,
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001082 4, DWARFAddressSpace, Flags5, ExtraData));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001083 EXPECT_NE(N, DIDerivedType::get(Context, dwarf::DW_TAG_pointer_type, "else",
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001084 File, 1, Scope, BaseType, 2, 3,
1085 4, DWARFAddressSpace, Flags5, ExtraData));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001086 EXPECT_NE(N, DIDerivedType::get(Context, dwarf::DW_TAG_pointer_type,
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +00001087 "something", getFile(), 1, Scope, BaseType, 2,
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001088 3, 4, DWARFAddressSpace, Flags5, ExtraData));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001089 EXPECT_NE(N, DIDerivedType::get(Context, dwarf::DW_TAG_pointer_type,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001090 "something", File, 2, Scope, BaseType, 2, 3,
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001091 4, DWARFAddressSpace, Flags5, ExtraData));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001092 EXPECT_NE(N, DIDerivedType::get(Context, dwarf::DW_TAG_pointer_type,
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +00001093 "something", File, 1, getSubprogram(),
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001094 BaseType, 2, 3, 4, DWARFAddressSpace, Flags5,
1095 ExtraData));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001096 EXPECT_NE(N, DIDerivedType::get(
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +00001097 Context, dwarf::DW_TAG_pointer_type, "something", File, 1,
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001098 Scope, getBasicType("basic2"), 2, 3, 4, DWARFAddressSpace,
1099 Flags5, ExtraData));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001100 EXPECT_NE(N, DIDerivedType::get(Context, dwarf::DW_TAG_pointer_type,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001101 "something", File, 1, Scope, BaseType, 3, 3,
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001102 4, DWARFAddressSpace, Flags5, ExtraData));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001103 EXPECT_NE(N, DIDerivedType::get(Context, dwarf::DW_TAG_pointer_type,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001104 "something", File, 1, Scope, BaseType, 2, 2,
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001105 4, DWARFAddressSpace, Flags5, ExtraData));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001106 EXPECT_NE(N, DIDerivedType::get(Context, dwarf::DW_TAG_pointer_type,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001107 "something", File, 1, Scope, BaseType, 2, 3,
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001108 5, DWARFAddressSpace, Flags5, ExtraData));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001109 EXPECT_NE(N, DIDerivedType::get(Context, dwarf::DW_TAG_pointer_type,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001110 "something", File, 1, Scope, BaseType, 2, 3,
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001111 4, DWARFAddressSpace + 1, Flags5, ExtraData));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001112 EXPECT_NE(N, DIDerivedType::get(Context, dwarf::DW_TAG_pointer_type,
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +00001113 "something", File, 1, Scope, BaseType, 2, 3,
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001114 4, DWARFAddressSpace, Flags4, ExtraData));
1115 EXPECT_NE(N, DIDerivedType::get(Context, dwarf::DW_TAG_pointer_type,
1116 "something", File, 1, Scope, BaseType, 2, 3,
1117 4, DWARFAddressSpace, Flags5, getTuple()));
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001118
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001119 TempDIDerivedType Temp = N->clone();
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001120 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001121}
1122
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001123TEST_F(DIDerivedTypeTest, getWithLargeValues) {
1124 DIFile *File = getFile();
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +00001125 DIScope *Scope = getSubprogram();
1126 DIType *BaseType = getBasicType("basic");
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +00001127 MDTuple *ExtraData = getTuple();
Leny Kholodov5fcc4182016-09-06 10:46:28 +00001128 DINode::DIFlags Flags = static_cast<DINode::DIFlags>(5);
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00001129
Leny Kholodov40c62352016-09-06 17:03:02 +00001130 auto *N = DIDerivedType::get(
1131 Context, dwarf::DW_TAG_pointer_type, "something", File, 1, Scope,
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001132 BaseType, UINT64_MAX, UINT32_MAX - 1, UINT64_MAX - 2, UINT32_MAX - 3,
1133 Flags, ExtraData);
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00001134 EXPECT_EQ(UINT64_MAX, N->getSizeInBits());
Victor Leschuk197aa312016-10-18 14:31:22 +00001135 EXPECT_EQ(UINT32_MAX - 1, N->getAlignInBits());
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00001136 EXPECT_EQ(UINT64_MAX - 2, N->getOffsetInBits());
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001137 EXPECT_EQ(UINT32_MAX - 3, N->getDWARFAddressSpace().getValue());
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00001138}
1139
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001140typedef MetadataTest DICompositeTypeTest;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001141
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001142TEST_F(DICompositeTypeTest, get) {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001143 unsigned Tag = dwarf::DW_TAG_structure_type;
1144 StringRef Name = "some name";
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001145 DIFile *File = getFile();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001146 unsigned Line = 1;
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +00001147 DIScope *Scope = getSubprogram();
1148 DIType *BaseType = getCompositeType();
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00001149 uint64_t SizeInBits = 2;
Victor Leschuk197aa312016-10-18 14:31:22 +00001150 uint32_t AlignInBits = 3;
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00001151 uint64_t OffsetInBits = 4;
Leny Kholodov5fcc4182016-09-06 10:46:28 +00001152 DINode::DIFlags Flags = static_cast<DINode::DIFlags>(5);
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +00001153 MDTuple *Elements = getTuple();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001154 unsigned RuntimeLang = 6;
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +00001155 DIType *VTableHolder = getCompositeType();
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +00001156 MDTuple *TemplateParams = getTuple();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001157 StringRef Identifier = "some id";
1158
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001159 auto *N = DICompositeType::get(Context, Tag, Name, File, Line, Scope,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001160 BaseType, SizeInBits, AlignInBits,
1161 OffsetInBits, Flags, Elements, RuntimeLang,
1162 VTableHolder, TemplateParams, Identifier);
1163 EXPECT_EQ(Tag, N->getTag());
1164 EXPECT_EQ(Name, N->getName());
1165 EXPECT_EQ(File, N->getFile());
1166 EXPECT_EQ(Line, N->getLine());
1167 EXPECT_EQ(Scope, N->getScope());
1168 EXPECT_EQ(BaseType, N->getBaseType());
1169 EXPECT_EQ(SizeInBits, N->getSizeInBits());
1170 EXPECT_EQ(AlignInBits, N->getAlignInBits());
1171 EXPECT_EQ(OffsetInBits, N->getOffsetInBits());
1172 EXPECT_EQ(Flags, N->getFlags());
Duncan P. N. Exon Smith11344732015-04-07 16:50:39 +00001173 EXPECT_EQ(Elements, N->getElements().get());
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001174 EXPECT_EQ(RuntimeLang, N->getRuntimeLang());
1175 EXPECT_EQ(VTableHolder, N->getVTableHolder());
Duncan P. N. Exon Smith11344732015-04-07 16:50:39 +00001176 EXPECT_EQ(TemplateParams, N->getTemplateParams().get());
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001177 EXPECT_EQ(Identifier, N->getIdentifier());
1178
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001179 EXPECT_EQ(N, DICompositeType::get(Context, Tag, Name, File, Line, Scope,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001180 BaseType, SizeInBits, AlignInBits,
1181 OffsetInBits, Flags, Elements, RuntimeLang,
1182 VTableHolder, TemplateParams, Identifier));
1183
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001184 EXPECT_NE(N, DICompositeType::get(Context, Tag + 1, Name, File, Line, Scope,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001185 BaseType, SizeInBits, AlignInBits,
1186 OffsetInBits, Flags, Elements, RuntimeLang,
1187 VTableHolder, TemplateParams, Identifier));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001188 EXPECT_NE(N, DICompositeType::get(Context, Tag, "abc", File, Line, Scope,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001189 BaseType, SizeInBits, AlignInBits,
1190 OffsetInBits, Flags, Elements, RuntimeLang,
1191 VTableHolder, TemplateParams, Identifier));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001192 EXPECT_NE(N, DICompositeType::get(Context, Tag, Name, getFile(), Line, Scope,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001193 BaseType, SizeInBits, AlignInBits,
1194 OffsetInBits, Flags, Elements, RuntimeLang,
1195 VTableHolder, TemplateParams, Identifier));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001196 EXPECT_NE(N, DICompositeType::get(Context, Tag, Name, File, Line + 1, Scope,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001197 BaseType, SizeInBits, AlignInBits,
1198 OffsetInBits, Flags, Elements, RuntimeLang,
1199 VTableHolder, TemplateParams, Identifier));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001200 EXPECT_NE(N, DICompositeType::get(
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +00001201 Context, Tag, Name, File, Line, getSubprogram(), BaseType,
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +00001202 SizeInBits, AlignInBits, OffsetInBits, Flags, Elements,
1203 RuntimeLang, VTableHolder, TemplateParams, Identifier));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001204 EXPECT_NE(N, DICompositeType::get(
Duncan P. N. Exon Smith3ec5fa62015-04-06 19:03:45 +00001205 Context, Tag, Name, File, Line, Scope, getBasicType("other"),
1206 SizeInBits, AlignInBits, OffsetInBits, Flags, Elements,
1207 RuntimeLang, VTableHolder, TemplateParams, Identifier));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001208 EXPECT_NE(N, DICompositeType::get(Context, Tag, Name, File, Line, Scope,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001209 BaseType, SizeInBits + 1, AlignInBits,
1210 OffsetInBits, Flags, Elements, RuntimeLang,
1211 VTableHolder, TemplateParams, Identifier));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001212 EXPECT_NE(N, DICompositeType::get(Context, Tag, Name, File, Line, Scope,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001213 BaseType, SizeInBits, AlignInBits + 1,
1214 OffsetInBits, Flags, Elements, RuntimeLang,
1215 VTableHolder, TemplateParams, Identifier));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001216 EXPECT_NE(N, DICompositeType::get(
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001217 Context, Tag, Name, File, Line, Scope, BaseType, SizeInBits,
1218 AlignInBits, OffsetInBits + 1, Flags, Elements, RuntimeLang,
1219 VTableHolder, TemplateParams, Identifier));
Leny Kholodov5fcc4182016-09-06 10:46:28 +00001220 DINode::DIFlags FlagsPOne = static_cast<DINode::DIFlags>(Flags + 1);
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001221 EXPECT_NE(N, DICompositeType::get(
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001222 Context, Tag, Name, File, Line, Scope, BaseType, SizeInBits,
Leny Kholodov5fcc4182016-09-06 10:46:28 +00001223 AlignInBits, OffsetInBits, FlagsPOne, Elements, RuntimeLang,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001224 VTableHolder, TemplateParams, Identifier));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001225 EXPECT_NE(N, DICompositeType::get(
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +00001226 Context, Tag, Name, File, Line, Scope, BaseType, SizeInBits,
1227 AlignInBits, OffsetInBits, Flags, getTuple(), RuntimeLang,
1228 VTableHolder, TemplateParams, Identifier));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001229 EXPECT_NE(N, DICompositeType::get(
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001230 Context, Tag, Name, File, Line, Scope, BaseType, SizeInBits,
1231 AlignInBits, OffsetInBits, Flags, Elements, RuntimeLang + 1,
1232 VTableHolder, TemplateParams, Identifier));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001233 EXPECT_NE(N, DICompositeType::get(
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +00001234 Context, Tag, Name, File, Line, Scope, BaseType, SizeInBits,
1235 AlignInBits, OffsetInBits, Flags, Elements, RuntimeLang,
1236 getCompositeType(), TemplateParams, Identifier));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001237 EXPECT_NE(N, DICompositeType::get(Context, Tag, Name, File, Line, Scope,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001238 BaseType, SizeInBits, AlignInBits,
1239 OffsetInBits, Flags, Elements, RuntimeLang,
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +00001240 VTableHolder, getTuple(), Identifier));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001241 EXPECT_NE(N, DICompositeType::get(Context, Tag, Name, File, Line, Scope,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001242 BaseType, SizeInBits, AlignInBits,
1243 OffsetInBits, Flags, Elements, RuntimeLang,
1244 VTableHolder, TemplateParams, "other"));
1245
1246 // Be sure that missing identifiers get null pointers.
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001247 EXPECT_FALSE(DICompositeType::get(Context, Tag, Name, File, Line, Scope,
1248 BaseType, SizeInBits, AlignInBits,
1249 OffsetInBits, Flags, Elements, RuntimeLang,
1250 VTableHolder, TemplateParams, "")
1251 ->getRawIdentifier());
1252 EXPECT_FALSE(DICompositeType::get(Context, Tag, Name, File, Line, Scope,
1253 BaseType, SizeInBits, AlignInBits,
1254 OffsetInBits, Flags, Elements, RuntimeLang,
1255 VTableHolder, TemplateParams)
1256 ->getRawIdentifier());
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001257
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001258 TempDICompositeType Temp = N->clone();
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001259 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001260}
1261
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001262TEST_F(DICompositeTypeTest, getWithLargeValues) {
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00001263 unsigned Tag = dwarf::DW_TAG_structure_type;
1264 StringRef Name = "some name";
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001265 DIFile *File = getFile();
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00001266 unsigned Line = 1;
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +00001267 DIScope *Scope = getSubprogram();
1268 DIType *BaseType = getCompositeType();
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00001269 uint64_t SizeInBits = UINT64_MAX;
Victor Leschuk197aa312016-10-18 14:31:22 +00001270 uint32_t AlignInBits = UINT32_MAX - 1;
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00001271 uint64_t OffsetInBits = UINT64_MAX - 2;
Leny Kholodov5fcc4182016-09-06 10:46:28 +00001272 DINode::DIFlags Flags = static_cast<DINode::DIFlags>(5);
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +00001273 MDTuple *Elements = getTuple();
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00001274 unsigned RuntimeLang = 6;
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +00001275 DIType *VTableHolder = getCompositeType();
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +00001276 MDTuple *TemplateParams = getTuple();
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00001277 StringRef Identifier = "some id";
1278
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001279 auto *N = DICompositeType::get(Context, Tag, Name, File, Line, Scope,
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00001280 BaseType, SizeInBits, AlignInBits,
1281 OffsetInBits, Flags, Elements, RuntimeLang,
1282 VTableHolder, TemplateParams, Identifier);
1283 EXPECT_EQ(SizeInBits, N->getSizeInBits());
1284 EXPECT_EQ(AlignInBits, N->getAlignInBits());
1285 EXPECT_EQ(OffsetInBits, N->getOffsetInBits());
1286}
1287
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001288TEST_F(DICompositeTypeTest, replaceOperands) {
Duncan P. N. Exon Smithf51e00d2015-02-18 20:47:52 +00001289 unsigned Tag = dwarf::DW_TAG_structure_type;
1290 StringRef Name = "some name";
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001291 DIFile *File = getFile();
Duncan P. N. Exon Smithf51e00d2015-02-18 20:47:52 +00001292 unsigned Line = 1;
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +00001293 DIScope *Scope = getSubprogram();
1294 DIType *BaseType = getCompositeType();
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00001295 uint64_t SizeInBits = 2;
Victor Leschuk197aa312016-10-18 14:31:22 +00001296 uint32_t AlignInBits = 3;
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00001297 uint64_t OffsetInBits = 4;
Leny Kholodov5fcc4182016-09-06 10:46:28 +00001298 DINode::DIFlags Flags = static_cast<DINode::DIFlags>(5);
Duncan P. N. Exon Smithf51e00d2015-02-18 20:47:52 +00001299 unsigned RuntimeLang = 6;
1300 StringRef Identifier = "some id";
1301
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001302 auto *N = DICompositeType::get(
1303 Context, Tag, Name, File, Line, Scope, BaseType, SizeInBits, AlignInBits,
1304 OffsetInBits, Flags, nullptr, RuntimeLang, nullptr, nullptr, Identifier);
Duncan P. N. Exon Smithf51e00d2015-02-18 20:47:52 +00001305
1306 auto *Elements = MDTuple::getDistinct(Context, None);
Duncan P. N. Exon Smith11344732015-04-07 16:50:39 +00001307 EXPECT_EQ(nullptr, N->getElements().get());
Duncan P. N. Exon Smithf51e00d2015-02-18 20:47:52 +00001308 N->replaceElements(Elements);
Duncan P. N. Exon Smith11344732015-04-07 16:50:39 +00001309 EXPECT_EQ(Elements, N->getElements().get());
Duncan P. N. Exon Smithf51e00d2015-02-18 20:47:52 +00001310 N->replaceElements(nullptr);
Duncan P. N. Exon Smith11344732015-04-07 16:50:39 +00001311 EXPECT_EQ(nullptr, N->getElements().get());
Duncan P. N. Exon Smithf51e00d2015-02-18 20:47:52 +00001312
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +00001313 DIType *VTableHolder = getCompositeType();
Duncan P. N. Exon Smithf51e00d2015-02-18 20:47:52 +00001314 EXPECT_EQ(nullptr, N->getVTableHolder());
1315 N->replaceVTableHolder(VTableHolder);
1316 EXPECT_EQ(VTableHolder, N->getVTableHolder());
1317 N->replaceVTableHolder(nullptr);
1318 EXPECT_EQ(nullptr, N->getVTableHolder());
1319
1320 auto *TemplateParams = MDTuple::getDistinct(Context, None);
Duncan P. N. Exon Smith11344732015-04-07 16:50:39 +00001321 EXPECT_EQ(nullptr, N->getTemplateParams().get());
Duncan P. N. Exon Smithf51e00d2015-02-18 20:47:52 +00001322 N->replaceTemplateParams(TemplateParams);
Duncan P. N. Exon Smith11344732015-04-07 16:50:39 +00001323 EXPECT_EQ(TemplateParams, N->getTemplateParams().get());
Duncan P. N. Exon Smithf51e00d2015-02-18 20:47:52 +00001324 N->replaceTemplateParams(nullptr);
Duncan P. N. Exon Smith11344732015-04-07 16:50:39 +00001325 EXPECT_EQ(nullptr, N->getTemplateParams().get());
Duncan P. N. Exon Smithf51e00d2015-02-18 20:47:52 +00001326}
1327
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001328typedef MetadataTest DISubroutineTypeTest;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001329
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001330TEST_F(DISubroutineTypeTest, get) {
Leny Kholodov5fcc4182016-09-06 10:46:28 +00001331 DINode::DIFlags Flags = static_cast<DINode::DIFlags>(1);
1332 DINode::DIFlags FlagsPOne = static_cast<DINode::DIFlags>(Flags + 1);
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +00001333 MDTuple *TypeArray = getTuple();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001334
Reid Klecknerde3d8b52016-06-08 20:34:29 +00001335 auto *N = DISubroutineType::get(Context, Flags, 0, TypeArray);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001336 EXPECT_EQ(dwarf::DW_TAG_subroutine_type, N->getTag());
1337 EXPECT_EQ(Flags, N->getFlags());
Duncan P. N. Exon Smith11344732015-04-07 16:50:39 +00001338 EXPECT_EQ(TypeArray, N->getTypeArray().get());
Reid Klecknerde3d8b52016-06-08 20:34:29 +00001339 EXPECT_EQ(N, DISubroutineType::get(Context, Flags, 0, TypeArray));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001340
Leny Kholodov5fcc4182016-09-06 10:46:28 +00001341 EXPECT_NE(N, DISubroutineType::get(Context, FlagsPOne, 0, TypeArray));
Reid Klecknerde3d8b52016-06-08 20:34:29 +00001342 EXPECT_NE(N, DISubroutineType::get(Context, Flags, 0, getTuple()));
1343
1344 // Test the hashing of calling conventions.
1345 auto *Fast = DISubroutineType::get(
1346 Context, Flags, dwarf::DW_CC_BORLAND_msfastcall, TypeArray);
1347 auto *Std = DISubroutineType::get(Context, Flags,
1348 dwarf::DW_CC_BORLAND_stdcall, TypeArray);
1349 EXPECT_EQ(Fast,
1350 DISubroutineType::get(Context, Flags,
1351 dwarf::DW_CC_BORLAND_msfastcall, TypeArray));
1352 EXPECT_EQ(Std, DISubroutineType::get(
1353 Context, Flags, dwarf::DW_CC_BORLAND_stdcall, TypeArray));
1354
1355 EXPECT_NE(N, Fast);
1356 EXPECT_NE(N, Std);
1357 EXPECT_NE(Fast, Std);
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001358
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001359 TempDISubroutineType Temp = N->clone();
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001360 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
Duncan P. N. Exon Smitha9f0a8d2015-02-19 23:25:21 +00001361
1362 // Test always-empty operands.
1363 EXPECT_EQ(nullptr, N->getScope());
1364 EXPECT_EQ(nullptr, N->getFile());
1365 EXPECT_EQ("", N->getName());
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001366}
1367
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001368typedef MetadataTest DIFileTest;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001369
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001370TEST_F(DIFileTest, get) {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001371 StringRef Filename = "file";
1372 StringRef Directory = "dir";
Amjad Aboud7faeecc2016-12-25 10:12:09 +00001373 DIFile::ChecksumKind CSKind = DIFile::CSK_MD5;
1374 StringRef Checksum = "000102030405060708090a0b0c0d0e0f";
1375 auto *N = DIFile::get(Context, Filename, Directory, CSKind, Checksum);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001376
1377 EXPECT_EQ(dwarf::DW_TAG_file_type, N->getTag());
1378 EXPECT_EQ(Filename, N->getFilename());
1379 EXPECT_EQ(Directory, N->getDirectory());
Amjad Aboud7faeecc2016-12-25 10:12:09 +00001380 EXPECT_EQ(CSKind, N->getChecksumKind());
1381 EXPECT_EQ(Checksum, N->getChecksum());
1382 EXPECT_EQ(N, DIFile::get(Context, Filename, Directory, CSKind, Checksum));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001383
Amjad Aboud7faeecc2016-12-25 10:12:09 +00001384 EXPECT_NE(N, DIFile::get(Context, "other", Directory, CSKind, Checksum));
1385 EXPECT_NE(N, DIFile::get(Context, Filename, "other", CSKind, Checksum));
Reid Kleckner26fa1bf2017-09-19 18:14:45 +00001386 EXPECT_NE(
1387 N, DIFile::get(Context, Filename, Directory, DIFile::CSK_SHA1, Checksum));
Amjad Aboud7faeecc2016-12-25 10:12:09 +00001388 EXPECT_NE(N, DIFile::get(Context, Filename, Directory));
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001389
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001390 TempDIFile Temp = N->clone();
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001391 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001392}
1393
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001394TEST_F(DIFileTest, ScopeGetFile) {
1395 // Ensure that DIScope::getFile() returns itself.
1396 DIScope *N = DIFile::get(Context, "file", "dir");
Duncan P. N. Exon Smith2c6a0a92015-02-28 21:47:02 +00001397 EXPECT_EQ(N, N->getFile());
1398}
1399
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001400typedef MetadataTest DICompileUnitTest;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001401
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001402TEST_F(DICompileUnitTest, get) {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001403 unsigned SourceLanguage = 1;
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001404 DIFile *File = getFile();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001405 StringRef Producer = "some producer";
1406 bool IsOptimized = false;
1407 StringRef Flags = "flag after flag";
1408 unsigned RuntimeVersion = 2;
1409 StringRef SplitDebugFilename = "another/file";
Adrian Prantlb939a252016-03-31 23:56:58 +00001410 auto EmissionKind = DICompileUnit::FullDebug;
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +00001411 MDTuple *EnumTypes = getTuple();
1412 MDTuple *RetainedTypes = getTuple();
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +00001413 MDTuple *GlobalVariables = getTuple();
1414 MDTuple *ImportedEntities = getTuple();
Adrian Prantle3b49e02015-09-22 23:42:47 +00001415 uint64_t DWOId = 0x10000000c0ffee;
Amjad Abouda9bcf162015-12-10 12:56:35 +00001416 MDTuple *Macros = getTuple();
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00001417 auto *N = DICompileUnit::getDistinct(
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001418 Context, SourceLanguage, File, Producer, IsOptimized, Flags,
1419 RuntimeVersion, SplitDebugFilename, EmissionKind, EnumTypes,
Dehao Chen0944a8c2017-02-01 22:45:09 +00001420 RetainedTypes, GlobalVariables, ImportedEntities, Macros, DWOId, true,
Peter Collingbourneb52e2362017-09-12 21:50:41 +00001421 false, false);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001422
1423 EXPECT_EQ(dwarf::DW_TAG_compile_unit, N->getTag());
1424 EXPECT_EQ(SourceLanguage, N->getSourceLanguage());
1425 EXPECT_EQ(File, N->getFile());
1426 EXPECT_EQ(Producer, N->getProducer());
1427 EXPECT_EQ(IsOptimized, N->isOptimized());
1428 EXPECT_EQ(Flags, N->getFlags());
1429 EXPECT_EQ(RuntimeVersion, N->getRuntimeVersion());
1430 EXPECT_EQ(SplitDebugFilename, N->getSplitDebugFilename());
1431 EXPECT_EQ(EmissionKind, N->getEmissionKind());
Duncan P. N. Exon Smith11344732015-04-07 16:50:39 +00001432 EXPECT_EQ(EnumTypes, N->getEnumTypes().get());
1433 EXPECT_EQ(RetainedTypes, N->getRetainedTypes().get());
Duncan P. N. Exon Smith11344732015-04-07 16:50:39 +00001434 EXPECT_EQ(GlobalVariables, N->getGlobalVariables().get());
1435 EXPECT_EQ(ImportedEntities, N->getImportedEntities().get());
Amjad Abouda9bcf162015-12-10 12:56:35 +00001436 EXPECT_EQ(Macros, N->getMacros().get());
Adrian Prantl1f599f92015-05-21 20:37:30 +00001437 EXPECT_EQ(DWOId, N->getDWOId());
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001438
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001439 TempDICompileUnit Temp = N->clone();
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00001440 EXPECT_EQ(dwarf::DW_TAG_compile_unit, Temp->getTag());
1441 EXPECT_EQ(SourceLanguage, Temp->getSourceLanguage());
1442 EXPECT_EQ(File, Temp->getFile());
1443 EXPECT_EQ(Producer, Temp->getProducer());
1444 EXPECT_EQ(IsOptimized, Temp->isOptimized());
1445 EXPECT_EQ(Flags, Temp->getFlags());
1446 EXPECT_EQ(RuntimeVersion, Temp->getRuntimeVersion());
1447 EXPECT_EQ(SplitDebugFilename, Temp->getSplitDebugFilename());
1448 EXPECT_EQ(EmissionKind, Temp->getEmissionKind());
1449 EXPECT_EQ(EnumTypes, Temp->getEnumTypes().get());
1450 EXPECT_EQ(RetainedTypes, Temp->getRetainedTypes().get());
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00001451 EXPECT_EQ(GlobalVariables, Temp->getGlobalVariables().get());
1452 EXPECT_EQ(ImportedEntities, Temp->getImportedEntities().get());
Amjad Abouda9bcf162015-12-10 12:56:35 +00001453 EXPECT_EQ(Macros, Temp->getMacros().get());
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00001454 EXPECT_EQ(DWOId, Temp->getDWOId());
1455
1456 auto *TempAddress = Temp.get();
1457 auto *Clone = MDNode::replaceWithPermanent(std::move(Temp));
1458 EXPECT_TRUE(Clone->isDistinct());
1459 EXPECT_EQ(TempAddress, Clone);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001460}
1461
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001462TEST_F(DICompileUnitTest, replaceArrays) {
Duncan P. N. Exon Smith94bbbf02015-02-18 20:36:09 +00001463 unsigned SourceLanguage = 1;
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001464 DIFile *File = getFile();
Duncan P. N. Exon Smith94bbbf02015-02-18 20:36:09 +00001465 StringRef Producer = "some producer";
1466 bool IsOptimized = false;
1467 StringRef Flags = "flag after flag";
1468 unsigned RuntimeVersion = 2;
1469 StringRef SplitDebugFilename = "another/file";
Adrian Prantlb939a252016-03-31 23:56:58 +00001470 auto EmissionKind = DICompileUnit::FullDebug;
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +00001471 MDTuple *EnumTypes = MDTuple::getDistinct(Context, None);
1472 MDTuple *RetainedTypes = MDTuple::getDistinct(Context, None);
1473 MDTuple *ImportedEntities = MDTuple::getDistinct(Context, None);
Adrian Prantl1f599f92015-05-21 20:37:30 +00001474 uint64_t DWOId = 0xc0ffee;
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00001475 auto *N = DICompileUnit::getDistinct(
Duncan P. N. Exon Smith94bbbf02015-02-18 20:36:09 +00001476 Context, SourceLanguage, File, Producer, IsOptimized, Flags,
1477 RuntimeVersion, SplitDebugFilename, EmissionKind, EnumTypes,
Peter Collingbourneb52e2362017-09-12 21:50:41 +00001478 RetainedTypes, nullptr, ImportedEntities, nullptr, DWOId, true, false,
1479 false);
Duncan P. N. Exon Smith94bbbf02015-02-18 20:36:09 +00001480
1481 auto *GlobalVariables = MDTuple::getDistinct(Context, None);
Duncan P. N. Exon Smith11344732015-04-07 16:50:39 +00001482 EXPECT_EQ(nullptr, N->getGlobalVariables().get());
Duncan P. N. Exon Smith94bbbf02015-02-18 20:36:09 +00001483 N->replaceGlobalVariables(GlobalVariables);
Duncan P. N. Exon Smith11344732015-04-07 16:50:39 +00001484 EXPECT_EQ(GlobalVariables, N->getGlobalVariables().get());
Duncan P. N. Exon Smith94bbbf02015-02-18 20:36:09 +00001485 N->replaceGlobalVariables(nullptr);
Duncan P. N. Exon Smith11344732015-04-07 16:50:39 +00001486 EXPECT_EQ(nullptr, N->getGlobalVariables().get());
Amjad Abouda9bcf162015-12-10 12:56:35 +00001487
1488 auto *Macros = MDTuple::getDistinct(Context, None);
1489 EXPECT_EQ(nullptr, N->getMacros().get());
1490 N->replaceMacros(Macros);
1491 EXPECT_EQ(Macros, N->getMacros().get());
1492 N->replaceMacros(nullptr);
1493 EXPECT_EQ(nullptr, N->getMacros().get());
Duncan P. N. Exon Smith94bbbf02015-02-18 20:36:09 +00001494}
1495
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001496typedef MetadataTest DISubprogramTest;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001497
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001498TEST_F(DISubprogramTest, get) {
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +00001499 DIScope *Scope = getCompositeType();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001500 StringRef Name = "name";
1501 StringRef LinkageName = "linkage";
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001502 DIFile *File = getFile();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001503 unsigned Line = 2;
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001504 DISubroutineType *Type = getSubroutineType();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001505 bool IsLocalToUnit = false;
1506 bool IsDefinition = true;
1507 unsigned ScopeLine = 3;
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +00001508 DIType *ContainingType = getCompositeType();
Davide Italiano236e7442016-04-13 20:17:42 +00001509 unsigned Virtuality = 2;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001510 unsigned VirtualIndex = 5;
Reid Klecknerb5af11d2016-07-01 02:41:21 +00001511 int ThisAdjustment = -3;
Leny Kholodov5fcc4182016-09-06 10:46:28 +00001512 DINode::DIFlags Flags = static_cast<DINode::DIFlags>(6);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001513 bool IsOptimized = false;
Duncan P. N. Exon Smith869db502015-03-30 16:19:15 +00001514 MDTuple *TemplateParams = getTuple();
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001515 DISubprogram *Declaration = getSubprogram();
Duncan P. N. Exon Smith869db502015-03-30 16:19:15 +00001516 MDTuple *Variables = getTuple();
Adrian Prantl1d12b882017-04-26 22:56:44 +00001517 MDTuple *ThrownTypes = getTuple();
Adrian Prantl75819ae2016-04-15 15:57:41 +00001518 DICompileUnit *Unit = getUnit();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001519
Adrian Prantl1d12b882017-04-26 22:56:44 +00001520 auto *N = DISubprogram::get(
1521 Context, Scope, Name, LinkageName, File, Line, Type, IsLocalToUnit,
1522 IsDefinition, ScopeLine, ContainingType, Virtuality, VirtualIndex,
1523 ThisAdjustment, Flags, IsOptimized, Unit, TemplateParams, Declaration,
1524 Variables, ThrownTypes);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001525
1526 EXPECT_EQ(dwarf::DW_TAG_subprogram, N->getTag());
1527 EXPECT_EQ(Scope, N->getScope());
1528 EXPECT_EQ(Name, N->getName());
1529 EXPECT_EQ(LinkageName, N->getLinkageName());
1530 EXPECT_EQ(File, N->getFile());
1531 EXPECT_EQ(Line, N->getLine());
1532 EXPECT_EQ(Type, N->getType());
1533 EXPECT_EQ(IsLocalToUnit, N->isLocalToUnit());
1534 EXPECT_EQ(IsDefinition, N->isDefinition());
1535 EXPECT_EQ(ScopeLine, N->getScopeLine());
1536 EXPECT_EQ(ContainingType, N->getContainingType());
1537 EXPECT_EQ(Virtuality, N->getVirtuality());
1538 EXPECT_EQ(VirtualIndex, N->getVirtualIndex());
Reid Klecknerb5af11d2016-07-01 02:41:21 +00001539 EXPECT_EQ(ThisAdjustment, N->getThisAdjustment());
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001540 EXPECT_EQ(Flags, N->getFlags());
1541 EXPECT_EQ(IsOptimized, N->isOptimized());
Adrian Prantl75819ae2016-04-15 15:57:41 +00001542 EXPECT_EQ(Unit, N->getUnit());
Duncan P. N. Exon Smith11344732015-04-07 16:50:39 +00001543 EXPECT_EQ(TemplateParams, N->getTemplateParams().get());
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001544 EXPECT_EQ(Declaration, N->getDeclaration());
Duncan P. N. Exon Smith11344732015-04-07 16:50:39 +00001545 EXPECT_EQ(Variables, N->getVariables().get());
Adrian Prantl1d12b882017-04-26 22:56:44 +00001546 EXPECT_EQ(ThrownTypes, N->getThrownTypes().get());
1547 EXPECT_EQ(N, DISubprogram::get(
1548 Context, Scope, Name, LinkageName, File, Line, Type,
1549 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType,
1550 Virtuality, VirtualIndex, ThisAdjustment, Flags, IsOptimized,
1551 Unit, TemplateParams, Declaration, Variables, ThrownTypes));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001552
Reid Klecknerb5af11d2016-07-01 02:41:21 +00001553 EXPECT_NE(N, DISubprogram::get(
1554 Context, getCompositeType(), Name, LinkageName, File, Line,
1555 Type, IsLocalToUnit, IsDefinition, ScopeLine, ContainingType,
1556 Virtuality, VirtualIndex, ThisAdjustment, Flags, IsOptimized,
Adrian Prantl1d12b882017-04-26 22:56:44 +00001557 Unit, TemplateParams, Declaration, Variables, ThrownTypes));
Reid Klecknerb5af11d2016-07-01 02:41:21 +00001558 EXPECT_NE(N, DISubprogram::get(
1559 Context, Scope, "other", LinkageName, File, Line, Type,
1560 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType,
1561 Virtuality, VirtualIndex, ThisAdjustment, Flags, IsOptimized,
Adrian Prantl1d12b882017-04-26 22:56:44 +00001562 Unit, TemplateParams, Declaration, Variables, ThrownTypes));
1563 EXPECT_NE(N, DISubprogram::get(
1564 Context, Scope, Name, "other", File, Line, Type,
1565 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType,
1566 Virtuality, VirtualIndex, ThisAdjustment, Flags, IsOptimized,
1567 Unit, TemplateParams, Declaration, Variables, ThrownTypes));
Reid Klecknerb5af11d2016-07-01 02:41:21 +00001568 EXPECT_NE(N, DISubprogram::get(
1569 Context, Scope, Name, LinkageName, getFile(), Line, Type,
1570 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType,
1571 Virtuality, VirtualIndex, ThisAdjustment, Flags, IsOptimized,
Adrian Prantl1d12b882017-04-26 22:56:44 +00001572 Unit, TemplateParams, Declaration, Variables, ThrownTypes));
Reid Klecknerb5af11d2016-07-01 02:41:21 +00001573 EXPECT_NE(N, DISubprogram::get(
1574 Context, Scope, Name, LinkageName, File, Line + 1, Type,
1575 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType,
1576 Virtuality, VirtualIndex, ThisAdjustment, Flags, IsOptimized,
Adrian Prantl1d12b882017-04-26 22:56:44 +00001577 Unit, TemplateParams, Declaration, Variables, ThrownTypes));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001578 EXPECT_NE(N, DISubprogram::get(Context, Scope, Name, LinkageName, File, Line,
Adrian Prantl1d12b882017-04-26 22:56:44 +00001579 getSubroutineType(), IsLocalToUnit,
1580 IsDefinition, ScopeLine, ContainingType,
1581 Virtuality, VirtualIndex, ThisAdjustment,
1582 Flags, IsOptimized, Unit, TemplateParams,
1583 Declaration, Variables, ThrownTypes));
1584 EXPECT_NE(N, DISubprogram::get(
1585 Context, Scope, Name, LinkageName, File, Line, Type,
1586 !IsLocalToUnit, IsDefinition, ScopeLine, ContainingType,
1587 Virtuality, VirtualIndex, ThisAdjustment, Flags, IsOptimized,
1588 Unit, TemplateParams, Declaration, Variables, ThrownTypes));
1589 EXPECT_NE(N, DISubprogram::get(
1590 Context, Scope, Name, LinkageName, File, Line, Type,
1591 IsLocalToUnit, !IsDefinition, ScopeLine, ContainingType,
1592 Virtuality, VirtualIndex, ThisAdjustment, Flags, IsOptimized,
1593 Unit, TemplateParams, Declaration, Variables, ThrownTypes));
Reid Klecknerb5af11d2016-07-01 02:41:21 +00001594 EXPECT_NE(N, DISubprogram::get(
1595 Context, Scope, Name, LinkageName, File, Line, Type,
1596 IsLocalToUnit, IsDefinition, ScopeLine + 1, ContainingType,
1597 Virtuality, VirtualIndex, ThisAdjustment, Flags, IsOptimized,
Adrian Prantl1d12b882017-04-26 22:56:44 +00001598 Unit, TemplateParams, Declaration, Variables, ThrownTypes));
1599 EXPECT_NE(N, DISubprogram::get(
1600 Context, Scope, Name, LinkageName, File, Line, Type,
1601 IsLocalToUnit, IsDefinition, ScopeLine, getCompositeType(),
1602 Virtuality, VirtualIndex, ThisAdjustment, Flags, IsOptimized,
1603 Unit, TemplateParams, Declaration, Variables, ThrownTypes));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001604 EXPECT_NE(N, DISubprogram::get(Context, Scope, Name, LinkageName, File, Line,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001605 Type, IsLocalToUnit, IsDefinition, ScopeLine,
1606 ContainingType, Virtuality + 1, VirtualIndex,
Reid Klecknerb5af11d2016-07-01 02:41:21 +00001607 ThisAdjustment, Flags, IsOptimized, Unit,
Adrian Prantl1d12b882017-04-26 22:56:44 +00001608 TemplateParams, Declaration, Variables,
1609 ThrownTypes));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001610 EXPECT_NE(N, DISubprogram::get(Context, Scope, Name, LinkageName, File, Line,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001611 Type, IsLocalToUnit, IsDefinition, ScopeLine,
1612 ContainingType, Virtuality, VirtualIndex + 1,
Reid Klecknerb5af11d2016-07-01 02:41:21 +00001613 ThisAdjustment, Flags, IsOptimized, Unit,
Adrian Prantl1d12b882017-04-26 22:56:44 +00001614 TemplateParams, Declaration, Variables,
1615 ThrownTypes));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001616 EXPECT_NE(N, DISubprogram::get(Context, Scope, Name, LinkageName, File, Line,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001617 Type, IsLocalToUnit, IsDefinition, ScopeLine,
1618 ContainingType, Virtuality, VirtualIndex,
Reid Klecknerb5af11d2016-07-01 02:41:21 +00001619 ThisAdjustment, Flags, !IsOptimized, Unit,
Adrian Prantl1d12b882017-04-26 22:56:44 +00001620 TemplateParams, Declaration, Variables,
1621 ThrownTypes));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001622 EXPECT_NE(N, DISubprogram::get(Context, Scope, Name, LinkageName, File, Line,
Duncan P. N. Exon Smith7ad0bd52015-04-11 20:27:40 +00001623 Type, IsLocalToUnit, IsDefinition, ScopeLine,
1624 ContainingType, Virtuality, VirtualIndex,
Reid Klecknerb5af11d2016-07-01 02:41:21 +00001625 ThisAdjustment, Flags, IsOptimized, nullptr,
Adrian Prantl1d12b882017-04-26 22:56:44 +00001626 TemplateParams, Declaration, Variables,
1627 ThrownTypes));
1628 EXPECT_NE(N, DISubprogram::get(
1629 Context, Scope, Name, LinkageName, File, Line, Type,
1630 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType,
1631 Virtuality, VirtualIndex, ThisAdjustment, Flags, IsOptimized,
1632 Unit, getTuple(), Declaration, Variables, ThrownTypes));
Adrian Prantl75819ae2016-04-15 15:57:41 +00001633 EXPECT_NE(N, DISubprogram::get(Context, Scope, Name, LinkageName, File, Line,
1634 Type, IsLocalToUnit, IsDefinition, ScopeLine,
1635 ContainingType, Virtuality, VirtualIndex,
Reid Klecknerb5af11d2016-07-01 02:41:21 +00001636 ThisAdjustment, Flags, IsOptimized, Unit,
Adrian Prantl1d12b882017-04-26 22:56:44 +00001637 TemplateParams, getSubprogram(), Variables,
1638 ThrownTypes));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001639 EXPECT_NE(N, DISubprogram::get(Context, Scope, Name, LinkageName, File, Line,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001640 Type, IsLocalToUnit, IsDefinition, ScopeLine,
1641 ContainingType, Virtuality, VirtualIndex,
Reid Klecknerb5af11d2016-07-01 02:41:21 +00001642 ThisAdjustment, Flags, IsOptimized, Unit,
1643 TemplateParams, Declaration, getTuple()));
Adrian Prantl1d12b882017-04-26 22:56:44 +00001644 EXPECT_NE(N, DISubprogram::get(
1645 Context, Scope, Name, LinkageName, File, Line, Type,
1646 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType,
1647 Virtuality, VirtualIndex, ThisAdjustment, Flags, IsOptimized,
1648 Unit, TemplateParams, Declaration, Variables, getTuple()));
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001649
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001650 TempDISubprogram Temp = N->clone();
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001651 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001652}
1653
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001654typedef MetadataTest DILexicalBlockTest;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001655
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001656TEST_F(DILexicalBlockTest, get) {
1657 DILocalScope *Scope = getSubprogram();
1658 DIFile *File = getFile();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001659 unsigned Line = 5;
1660 unsigned Column = 8;
1661
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001662 auto *N = DILexicalBlock::get(Context, Scope, File, Line, Column);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001663
1664 EXPECT_EQ(dwarf::DW_TAG_lexical_block, N->getTag());
1665 EXPECT_EQ(Scope, N->getScope());
1666 EXPECT_EQ(File, N->getFile());
1667 EXPECT_EQ(Line, N->getLine());
1668 EXPECT_EQ(Column, N->getColumn());
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001669 EXPECT_EQ(N, DILexicalBlock::get(Context, Scope, File, Line, Column));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001670
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00001671 EXPECT_NE(N,
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001672 DILexicalBlock::get(Context, getSubprogram(), File, Line, Column));
1673 EXPECT_NE(N, DILexicalBlock::get(Context, Scope, getFile(), Line, Column));
1674 EXPECT_NE(N, DILexicalBlock::get(Context, Scope, File, Line + 1, Column));
1675 EXPECT_NE(N, DILexicalBlock::get(Context, Scope, File, Line, Column + 1));
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001676
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001677 TempDILexicalBlock Temp = N->clone();
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001678 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001679}
1680
Duncan P. N. Exon Smithb09eb9f2015-08-28 22:58:50 +00001681TEST_F(DILexicalBlockTest, Overflow) {
1682 DISubprogram *SP = getSubprogram();
1683 DIFile *F = getFile();
1684 {
1685 auto *LB = DILexicalBlock::get(Context, SP, F, 2, 7);
1686 EXPECT_EQ(2u, LB->getLine());
1687 EXPECT_EQ(7u, LB->getColumn());
1688 }
1689 unsigned U16 = 1u << 16;
1690 {
1691 auto *LB = DILexicalBlock::get(Context, SP, F, UINT32_MAX, U16 - 1);
1692 EXPECT_EQ(UINT32_MAX, LB->getLine());
1693 EXPECT_EQ(U16 - 1, LB->getColumn());
1694 }
1695 {
1696 auto *LB = DILexicalBlock::get(Context, SP, F, UINT32_MAX, U16);
1697 EXPECT_EQ(UINT32_MAX, LB->getLine());
1698 EXPECT_EQ(0u, LB->getColumn());
1699 }
1700 {
1701 auto *LB = DILexicalBlock::get(Context, SP, F, UINT32_MAX, U16 + 1);
1702 EXPECT_EQ(UINT32_MAX, LB->getLine());
1703 EXPECT_EQ(0u, LB->getColumn());
1704 }
1705}
1706
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001707typedef MetadataTest DILexicalBlockFileTest;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001708
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001709TEST_F(DILexicalBlockFileTest, get) {
1710 DILocalScope *Scope = getSubprogram();
1711 DIFile *File = getFile();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001712 unsigned Discriminator = 5;
1713
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001714 auto *N = DILexicalBlockFile::get(Context, Scope, File, Discriminator);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001715
1716 EXPECT_EQ(dwarf::DW_TAG_lexical_block, N->getTag());
1717 EXPECT_EQ(Scope, N->getScope());
1718 EXPECT_EQ(File, N->getFile());
1719 EXPECT_EQ(Discriminator, N->getDiscriminator());
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001720 EXPECT_EQ(N, DILexicalBlockFile::get(Context, Scope, File, Discriminator));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001721
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001722 EXPECT_NE(N, DILexicalBlockFile::get(Context, getSubprogram(), File,
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00001723 Discriminator));
1724 EXPECT_NE(N,
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001725 DILexicalBlockFile::get(Context, Scope, getFile(), Discriminator));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001726 EXPECT_NE(N,
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001727 DILexicalBlockFile::get(Context, Scope, File, Discriminator + 1));
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001728
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001729 TempDILexicalBlockFile Temp = N->clone();
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001730 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001731}
1732
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001733typedef MetadataTest DINamespaceTest;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001734
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001735TEST_F(DINamespaceTest, get) {
1736 DIScope *Scope = getFile();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001737 StringRef Name = "namespace";
Adrian Prantldbfda632016-11-03 19:42:02 +00001738 bool ExportSymbols = true;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001739
Adrian Prantlfed4f392017-04-28 22:25:46 +00001740 auto *N = DINamespace::get(Context, Scope, Name, ExportSymbols);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001741
1742 EXPECT_EQ(dwarf::DW_TAG_namespace, N->getTag());
1743 EXPECT_EQ(Scope, N->getScope());
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001744 EXPECT_EQ(Name, N->getName());
Adrian Prantlfed4f392017-04-28 22:25:46 +00001745 EXPECT_EQ(N, DINamespace::get(Context, Scope, Name, ExportSymbols));
1746 EXPECT_NE(N, DINamespace::get(Context, getFile(), Name, ExportSymbols));
1747 EXPECT_NE(N, DINamespace::get(Context, Scope, "other", ExportSymbols));
1748 EXPECT_NE(N, DINamespace::get(Context, Scope, Name, !ExportSymbols));
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001749
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001750 TempDINamespace Temp = N->clone();
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001751 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001752}
1753
Adrian Prantlab1243f2015-06-29 23:03:47 +00001754typedef MetadataTest DIModuleTest;
1755
1756TEST_F(DIModuleTest, get) {
1757 DIScope *Scope = getFile();
1758 StringRef Name = "module";
1759 StringRef ConfigMacro = "-DNDEBUG";
1760 StringRef Includes = "-I.";
1761 StringRef Sysroot = "/";
1762
1763 auto *N = DIModule::get(Context, Scope, Name, ConfigMacro, Includes, Sysroot);
1764
1765 EXPECT_EQ(dwarf::DW_TAG_module, N->getTag());
1766 EXPECT_EQ(Scope, N->getScope());
1767 EXPECT_EQ(Name, N->getName());
1768 EXPECT_EQ(ConfigMacro, N->getConfigurationMacros());
1769 EXPECT_EQ(Includes, N->getIncludePath());
1770 EXPECT_EQ(Sysroot, N->getISysRoot());
1771 EXPECT_EQ(N, DIModule::get(Context, Scope, Name,
1772 ConfigMacro, Includes, Sysroot));
1773 EXPECT_NE(N, DIModule::get(Context, getFile(), Name,
1774 ConfigMacro, Includes, Sysroot));
1775 EXPECT_NE(N, DIModule::get(Context, Scope, "other",
1776 ConfigMacro, Includes, Sysroot));
1777 EXPECT_NE(N, DIModule::get(Context, Scope, Name,
1778 "other", Includes, Sysroot));
1779 EXPECT_NE(N, DIModule::get(Context, Scope, Name,
1780 ConfigMacro, "other", Sysroot));
1781 EXPECT_NE(N, DIModule::get(Context, Scope, Name,
1782 ConfigMacro, Includes, "other"));
1783
1784 TempDIModule Temp = N->clone();
1785 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
1786}
1787
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001788typedef MetadataTest DITemplateTypeParameterTest;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001789
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001790TEST_F(DITemplateTypeParameterTest, get) {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001791 StringRef Name = "template";
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +00001792 DIType *Type = getBasicType("basic");
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001793
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001794 auto *N = DITemplateTypeParameter::get(Context, Name, Type);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001795
1796 EXPECT_EQ(dwarf::DW_TAG_template_type_parameter, N->getTag());
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001797 EXPECT_EQ(Name, N->getName());
1798 EXPECT_EQ(Type, N->getType());
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001799 EXPECT_EQ(N, DITemplateTypeParameter::get(Context, Name, Type));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001800
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001801 EXPECT_NE(N, DITemplateTypeParameter::get(Context, "other", Type));
Duncan P. N. Exon Smithf9b47752015-03-30 17:21:38 +00001802 EXPECT_NE(N,
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001803 DITemplateTypeParameter::get(Context, Name, getBasicType("other")));
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001804
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001805 TempDITemplateTypeParameter Temp = N->clone();
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001806 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001807}
1808
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001809typedef MetadataTest DITemplateValueParameterTest;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001810
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001811TEST_F(DITemplateValueParameterTest, get) {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001812 unsigned Tag = dwarf::DW_TAG_template_value_parameter;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001813 StringRef Name = "template";
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +00001814 DIType *Type = getBasicType("basic");
Duncan P. N. Exon Smithf9b47752015-03-30 17:21:38 +00001815 Metadata *Value = getConstantAsMetadata();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001816
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001817 auto *N = DITemplateValueParameter::get(Context, Tag, Name, Type, Value);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001818 EXPECT_EQ(Tag, N->getTag());
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001819 EXPECT_EQ(Name, N->getName());
1820 EXPECT_EQ(Type, N->getType());
1821 EXPECT_EQ(Value, N->getValue());
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001822 EXPECT_EQ(N, DITemplateValueParameter::get(Context, Tag, Name, Type, Value));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001823
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001824 EXPECT_NE(N, DITemplateValueParameter::get(
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00001825 Context, dwarf::DW_TAG_GNU_template_template_param, Name,
1826 Type, Value));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001827 EXPECT_NE(N,
1828 DITemplateValueParameter::get(Context, Tag, "other", Type, Value));
1829 EXPECT_NE(N, DITemplateValueParameter::get(Context, Tag, Name,
Duncan P. N. Exon Smithf9b47752015-03-30 17:21:38 +00001830 getBasicType("other"), Value));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001831 EXPECT_NE(N, DITemplateValueParameter::get(Context, Tag, Name, Type,
Duncan P. N. Exon Smithf9b47752015-03-30 17:21:38 +00001832 getConstantAsMetadata()));
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001833
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001834 TempDITemplateValueParameter Temp = N->clone();
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001835 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001836}
1837
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001838typedef MetadataTest DIGlobalVariableTest;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001839
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001840TEST_F(DIGlobalVariableTest, get) {
1841 DIScope *Scope = getSubprogram();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001842 StringRef Name = "name";
1843 StringRef LinkageName = "linkage";
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001844 DIFile *File = getFile();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001845 unsigned Line = 5;
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +00001846 DIType *Type = getDerivedType();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001847 bool IsLocalToUnit = false;
1848 bool IsDefinition = true;
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001849 DIDerivedType *StaticDataMemberDeclaration =
1850 cast<DIDerivedType>(getDerivedType());
Victor Leschuka37660c2016-10-26 21:32:29 +00001851 uint32_t AlignInBits = 8;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001852
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001853 auto *N = DIGlobalVariable::get(Context, Scope, Name, LinkageName, File, Line,
Peter Collingbourned4135bb2016-09-13 01:12:59 +00001854 Type, IsLocalToUnit, IsDefinition,
Adrian Prantlbceaaa92016-12-20 02:09:43 +00001855 StaticDataMemberDeclaration, AlignInBits);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001856 EXPECT_EQ(dwarf::DW_TAG_variable, N->getTag());
1857 EXPECT_EQ(Scope, N->getScope());
1858 EXPECT_EQ(Name, N->getName());
1859 EXPECT_EQ(LinkageName, N->getLinkageName());
1860 EXPECT_EQ(File, N->getFile());
1861 EXPECT_EQ(Line, N->getLine());
1862 EXPECT_EQ(Type, N->getType());
1863 EXPECT_EQ(IsLocalToUnit, N->isLocalToUnit());
1864 EXPECT_EQ(IsDefinition, N->isDefinition());
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001865 EXPECT_EQ(StaticDataMemberDeclaration, N->getStaticDataMemberDeclaration());
Victor Leschuk2ede1262016-10-20 00:13:12 +00001866 EXPECT_EQ(AlignInBits, N->getAlignInBits());
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001867 EXPECT_EQ(N, DIGlobalVariable::get(Context, Scope, Name, LinkageName, File,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001868 Line, Type, IsLocalToUnit, IsDefinition,
Adrian Prantlbceaaa92016-12-20 02:09:43 +00001869 StaticDataMemberDeclaration, AlignInBits));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001870
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00001871 EXPECT_NE(N,
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001872 DIGlobalVariable::get(Context, getSubprogram(), Name, LinkageName,
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00001873 File, Line, Type, IsLocalToUnit, IsDefinition,
Adrian Prantlbceaaa92016-12-20 02:09:43 +00001874 StaticDataMemberDeclaration, AlignInBits));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001875 EXPECT_NE(N, DIGlobalVariable::get(Context, Scope, "other", LinkageName, File,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001876 Line, Type, IsLocalToUnit, IsDefinition,
Adrian Prantlbceaaa92016-12-20 02:09:43 +00001877 StaticDataMemberDeclaration, AlignInBits));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001878 EXPECT_NE(N, DIGlobalVariable::get(Context, Scope, Name, "other", File, Line,
Adrian Prantlbceaaa92016-12-20 02:09:43 +00001879 Type, IsLocalToUnit, IsDefinition,
1880 StaticDataMemberDeclaration, AlignInBits));
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00001881 EXPECT_NE(N,
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001882 DIGlobalVariable::get(Context, Scope, Name, LinkageName, getFile(),
Adrian Prantlbceaaa92016-12-20 02:09:43 +00001883 Line, Type, IsLocalToUnit, IsDefinition,
1884 StaticDataMemberDeclaration, AlignInBits));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001885 EXPECT_NE(N,
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001886 DIGlobalVariable::get(Context, Scope, Name, LinkageName, File,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001887 Line + 1, Type, IsLocalToUnit, IsDefinition,
Adrian Prantlbceaaa92016-12-20 02:09:43 +00001888 StaticDataMemberDeclaration, AlignInBits));
Duncan P. N. Exon Smith3ec5fa62015-04-06 19:03:45 +00001889 EXPECT_NE(N,
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001890 DIGlobalVariable::get(Context, Scope, Name, LinkageName, File, Line,
Duncan P. N. Exon Smith3ec5fa62015-04-06 19:03:45 +00001891 getDerivedType(), IsLocalToUnit, IsDefinition,
Adrian Prantlbceaaa92016-12-20 02:09:43 +00001892 StaticDataMemberDeclaration, AlignInBits));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001893 EXPECT_NE(N, DIGlobalVariable::get(Context, Scope, Name, LinkageName, File,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001894 Line, Type, !IsLocalToUnit, IsDefinition,
Adrian Prantlbceaaa92016-12-20 02:09:43 +00001895 StaticDataMemberDeclaration, AlignInBits));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001896 EXPECT_NE(N, DIGlobalVariable::get(Context, Scope, Name, LinkageName, File,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001897 Line, Type, IsLocalToUnit, !IsDefinition,
Adrian Prantlbceaaa92016-12-20 02:09:43 +00001898 StaticDataMemberDeclaration, AlignInBits));
1899 EXPECT_NE(N, DIGlobalVariable::get(Context, Scope, Name, LinkageName, File,
1900 Line, Type, IsLocalToUnit, IsDefinition,
1901 cast<DIDerivedType>(getDerivedType()),
Victor Leschuk2ede1262016-10-20 00:13:12 +00001902 AlignInBits));
Peter Collingbourned4135bb2016-09-13 01:12:59 +00001903 EXPECT_NE(N, DIGlobalVariable::get(Context, Scope, Name, LinkageName, File,
1904 Line, Type, IsLocalToUnit, IsDefinition,
Adrian Prantlbceaaa92016-12-20 02:09:43 +00001905 StaticDataMemberDeclaration,
Victor Leschuk2ede1262016-10-20 00:13:12 +00001906 (AlignInBits << 1)));
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001907
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001908 TempDIGlobalVariable Temp = N->clone();
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001909 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001910}
1911
Adrian Prantlbceaaa92016-12-20 02:09:43 +00001912typedef MetadataTest DIGlobalVariableExpressionTest;
1913
1914TEST_F(DIGlobalVariableExpressionTest, get) {
1915 DIScope *Scope = getSubprogram();
1916 StringRef Name = "name";
1917 StringRef LinkageName = "linkage";
1918 DIFile *File = getFile();
1919 unsigned Line = 5;
1920 DIType *Type = getDerivedType();
1921 bool IsLocalToUnit = false;
1922 bool IsDefinition = true;
1923 auto *Expr = DIExpression::get(Context, {1, 2});
1924 auto *Expr2 = DIExpression::get(Context, {1, 2, 3});
1925 DIDerivedType *StaticDataMemberDeclaration =
1926 cast<DIDerivedType>(getDerivedType());
1927 uint32_t AlignInBits = 8;
1928
1929 auto *Var = DIGlobalVariable::get(Context, Scope, Name, LinkageName, File,
1930 Line, Type, IsLocalToUnit, IsDefinition,
1931 StaticDataMemberDeclaration, AlignInBits);
1932 auto *Var2 = DIGlobalVariable::get(Context, Scope, "other", LinkageName, File,
1933 Line, Type, IsLocalToUnit, IsDefinition,
1934 StaticDataMemberDeclaration, AlignInBits);
1935 auto *N = DIGlobalVariableExpression::get(Context, Var, Expr);
1936
1937 EXPECT_EQ(Var, N->getVariable());
1938 EXPECT_EQ(Expr, N->getExpression());
1939 EXPECT_EQ(N, DIGlobalVariableExpression::get(Context, Var, Expr));
1940 EXPECT_NE(N, DIGlobalVariableExpression::get(Context, Var2, Expr));
1941 EXPECT_NE(N, DIGlobalVariableExpression::get(Context, Var, Expr2));
1942
1943 TempDIGlobalVariableExpression Temp = N->clone();
1944 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
1945}
1946
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001947typedef MetadataTest DILocalVariableTest;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001948
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001949TEST_F(DILocalVariableTest, get) {
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001950 DILocalScope *Scope = getSubprogram();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001951 StringRef Name = "name";
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001952 DIFile *File = getFile();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001953 unsigned Line = 5;
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +00001954 DIType *Type = getDerivedType();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001955 unsigned Arg = 6;
Leny Kholodov5fcc4182016-09-06 10:46:28 +00001956 DINode::DIFlags Flags = static_cast<DINode::DIFlags>(7);
Victor Leschuka37660c2016-10-26 21:32:29 +00001957 uint32_t AlignInBits = 8;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001958
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00001959 auto *N =
Victor Leschuk2ede1262016-10-20 00:13:12 +00001960 DILocalVariable::get(Context, Scope, Name, File, Line, Type, Arg, Flags,
1961 AlignInBits);
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00001962 EXPECT_TRUE(N->isParameter());
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001963 EXPECT_EQ(Scope, N->getScope());
1964 EXPECT_EQ(Name, N->getName());
1965 EXPECT_EQ(File, N->getFile());
1966 EXPECT_EQ(Line, N->getLine());
1967 EXPECT_EQ(Type, N->getType());
1968 EXPECT_EQ(Arg, N->getArg());
1969 EXPECT_EQ(Flags, N->getFlags());
Victor Leschuk2ede1262016-10-20 00:13:12 +00001970 EXPECT_EQ(AlignInBits, N->getAlignInBits());
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00001971 EXPECT_EQ(N, DILocalVariable::get(Context, Scope, Name, File, Line, Type, Arg,
Victor Leschuk2ede1262016-10-20 00:13:12 +00001972 Flags, AlignInBits));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001973
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00001974 EXPECT_FALSE(
Victor Leschuk2ede1262016-10-20 00:13:12 +00001975 DILocalVariable::get(Context, Scope, Name, File, Line, Type, 0, Flags,
1976 AlignInBits)->isParameter());
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00001977 EXPECT_NE(N, DILocalVariable::get(Context, getSubprogram(), Name, File, Line,
Victor Leschuk2ede1262016-10-20 00:13:12 +00001978 Type, Arg, Flags, AlignInBits));
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00001979 EXPECT_NE(N, DILocalVariable::get(Context, Scope, "other", File, Line, Type,
Victor Leschuk2ede1262016-10-20 00:13:12 +00001980 Arg, Flags, AlignInBits));
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00001981 EXPECT_NE(N, DILocalVariable::get(Context, Scope, Name, getFile(), Line, Type,
Victor Leschuk2ede1262016-10-20 00:13:12 +00001982 Arg, Flags, AlignInBits));
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00001983 EXPECT_NE(N, DILocalVariable::get(Context, Scope, Name, File, Line + 1, Type,
Victor Leschuk2ede1262016-10-20 00:13:12 +00001984 Arg, Flags, AlignInBits));
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00001985 EXPECT_NE(N, DILocalVariable::get(Context, Scope, Name, File, Line,
Victor Leschuk2ede1262016-10-20 00:13:12 +00001986 getDerivedType(), Arg, Flags, AlignInBits));
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00001987 EXPECT_NE(N, DILocalVariable::get(Context, Scope, Name, File, Line, Type,
Victor Leschuk2ede1262016-10-20 00:13:12 +00001988 Arg + 1, Flags, AlignInBits));
1989 EXPECT_NE(N, DILocalVariable::get(Context, Scope, Name, File, Line, Type,
1990 Arg, Flags, (AlignInBits << 1)));
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001991
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001992 TempDILocalVariable Temp = N->clone();
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00001993 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001994}
1995
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001996TEST_F(DILocalVariableTest, getArg256) {
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00001997 EXPECT_EQ(255u, DILocalVariable::get(Context, getSubprogram(), "", getFile(),
Victor Leschuk2ede1262016-10-20 00:13:12 +00001998 0, nullptr, 255, DINode::FlagZero, 0)
Duncan P. N. Exon Smith1ec75ae2015-04-28 01:07:33 +00001999 ->getArg());
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00002000 EXPECT_EQ(256u, DILocalVariable::get(Context, getSubprogram(), "", getFile(),
Victor Leschuk2ede1262016-10-20 00:13:12 +00002001 0, nullptr, 256, DINode::FlagZero, 0)
Duncan P. N. Exon Smith1ec75ae2015-04-28 01:07:33 +00002002 ->getArg());
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00002003 EXPECT_EQ(257u, DILocalVariable::get(Context, getSubprogram(), "", getFile(),
Victor Leschuk2ede1262016-10-20 00:13:12 +00002004 0, nullptr, 257, DINode::FlagZero, 0)
Duncan P. N. Exon Smith1ec75ae2015-04-28 01:07:33 +00002005 ->getArg());
2006 unsigned Max = UINT16_MAX;
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00002007 EXPECT_EQ(Max, DILocalVariable::get(Context, getSubprogram(), "", getFile(),
Victor Leschuk2ede1262016-10-20 00:13:12 +00002008 0, nullptr, Max, DINode::FlagZero, 0)
Duncan P. N. Exon Smith1ec75ae2015-04-28 01:07:33 +00002009 ->getArg());
2010}
2011
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002012typedef MetadataTest DIExpressionTest;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002013
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002014TEST_F(DIExpressionTest, get) {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002015 uint64_t Elements[] = {2, 6, 9, 78, 0};
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002016 auto *N = DIExpression::get(Context, Elements);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002017 EXPECT_EQ(makeArrayRef(Elements), N->getElements());
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002018 EXPECT_EQ(N, DIExpression::get(Context, Elements));
Duncan P. N. Exon Smithdddc5372015-02-10 01:36:46 +00002019
2020 EXPECT_EQ(5u, N->getNumElements());
2021 EXPECT_EQ(2u, N->getElement(0));
2022 EXPECT_EQ(6u, N->getElement(1));
2023 EXPECT_EQ(9u, N->getElement(2));
2024 EXPECT_EQ(78u, N->getElement(3));
2025 EXPECT_EQ(0u, N->getElement(4));
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00002026
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002027 TempDIExpression Temp = N->clone();
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00002028 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002029}
2030
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002031TEST_F(DIExpressionTest, isValid) {
Duncan P. N. Exon Smith193a4fd2015-02-13 01:07:46 +00002032#define EXPECT_VALID(...) \
2033 do { \
2034 uint64_t Elements[] = {__VA_ARGS__}; \
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002035 EXPECT_TRUE(DIExpression::get(Context, Elements)->isValid()); \
Duncan P. N. Exon Smith193a4fd2015-02-13 01:07:46 +00002036 } while (false)
2037#define EXPECT_INVALID(...) \
2038 do { \
2039 uint64_t Elements[] = {__VA_ARGS__}; \
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002040 EXPECT_FALSE(DIExpression::get(Context, Elements)->isValid()); \
Duncan P. N. Exon Smith193a4fd2015-02-13 01:07:46 +00002041 } while (false)
2042
2043 // Empty expression should be valid.
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002044 EXPECT_TRUE(DIExpression::get(Context, None));
Duncan P. N. Exon Smith193a4fd2015-02-13 01:07:46 +00002045
2046 // Valid constructions.
Florian Hahnc9c403c2017-06-13 16:54:44 +00002047 EXPECT_VALID(dwarf::DW_OP_plus_uconst, 6);
Florian Hahnffc498d2017-06-14 13:14:38 +00002048 EXPECT_VALID(dwarf::DW_OP_constu, 6, dwarf::DW_OP_plus);
Duncan P. N. Exon Smith193a4fd2015-02-13 01:07:46 +00002049 EXPECT_VALID(dwarf::DW_OP_deref);
Adrian Prantl941fa752016-12-05 18:04:47 +00002050 EXPECT_VALID(dwarf::DW_OP_LLVM_fragment, 3, 7);
Florian Hahnffc498d2017-06-14 13:14:38 +00002051 EXPECT_VALID(dwarf::DW_OP_plus_uconst, 6, dwarf::DW_OP_deref);
2052 EXPECT_VALID(dwarf::DW_OP_deref, dwarf::DW_OP_plus_uconst, 6);
Adrian Prantl941fa752016-12-05 18:04:47 +00002053 EXPECT_VALID(dwarf::DW_OP_deref, dwarf::DW_OP_LLVM_fragment, 3, 7);
Florian Hahnffc498d2017-06-14 13:14:38 +00002054 EXPECT_VALID(dwarf::DW_OP_deref, dwarf::DW_OP_plus_uconst, 6,
Adrian Prantl941fa752016-12-05 18:04:47 +00002055 dwarf::DW_OP_LLVM_fragment, 3, 7);
Duncan P. N. Exon Smith193a4fd2015-02-13 01:07:46 +00002056
2057 // Invalid constructions.
2058 EXPECT_INVALID(~0u);
Florian Hahnffc498d2017-06-14 13:14:38 +00002059 EXPECT_INVALID(dwarf::DW_OP_plus, 0);
Florian Hahnc9c403c2017-06-13 16:54:44 +00002060 EXPECT_INVALID(dwarf::DW_OP_plus_uconst);
Adrian Prantl941fa752016-12-05 18:04:47 +00002061 EXPECT_INVALID(dwarf::DW_OP_LLVM_fragment);
2062 EXPECT_INVALID(dwarf::DW_OP_LLVM_fragment, 3);
Florian Hahnffc498d2017-06-14 13:14:38 +00002063 EXPECT_INVALID(dwarf::DW_OP_LLVM_fragment, 3, 7, dwarf::DW_OP_plus_uconst, 3);
Adrian Prantl941fa752016-12-05 18:04:47 +00002064 EXPECT_INVALID(dwarf::DW_OP_LLVM_fragment, 3, 7, dwarf::DW_OP_deref);
Duncan P. N. Exon Smith193a4fd2015-02-13 01:07:46 +00002065
2066#undef EXPECT_VALID
2067#undef EXPECT_INVALID
2068}
2069
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002070typedef MetadataTest DIObjCPropertyTest;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002071
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002072TEST_F(DIObjCPropertyTest, get) {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002073 StringRef Name = "name";
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002074 DIFile *File = getFile();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002075 unsigned Line = 5;
2076 StringRef GetterName = "getter";
2077 StringRef SetterName = "setter";
2078 unsigned Attributes = 7;
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +00002079 DIType *Type = getBasicType("basic");
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002080
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002081 auto *N = DIObjCProperty::get(Context, Name, File, Line, GetterName,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002082 SetterName, Attributes, Type);
2083
2084 EXPECT_EQ(dwarf::DW_TAG_APPLE_property, N->getTag());
2085 EXPECT_EQ(Name, N->getName());
2086 EXPECT_EQ(File, N->getFile());
2087 EXPECT_EQ(Line, N->getLine());
2088 EXPECT_EQ(GetterName, N->getGetterName());
2089 EXPECT_EQ(SetterName, N->getSetterName());
2090 EXPECT_EQ(Attributes, N->getAttributes());
2091 EXPECT_EQ(Type, N->getType());
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002092 EXPECT_EQ(N, DIObjCProperty::get(Context, Name, File, Line, GetterName,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002093 SetterName, Attributes, Type));
2094
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002095 EXPECT_NE(N, DIObjCProperty::get(Context, "other", File, Line, GetterName,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002096 SetterName, Attributes, Type));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002097 EXPECT_NE(N, DIObjCProperty::get(Context, Name, getFile(), Line, GetterName,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002098 SetterName, Attributes, Type));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002099 EXPECT_NE(N, DIObjCProperty::get(Context, Name, File, Line + 1, GetterName,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002100 SetterName, Attributes, Type));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002101 EXPECT_NE(N, DIObjCProperty::get(Context, Name, File, Line, "other",
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002102 SetterName, Attributes, Type));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002103 EXPECT_NE(N, DIObjCProperty::get(Context, Name, File, Line, GetterName,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002104 "other", Attributes, Type));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002105 EXPECT_NE(N, DIObjCProperty::get(Context, Name, File, Line, GetterName,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002106 SetterName, Attributes + 1, Type));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002107 EXPECT_NE(N, DIObjCProperty::get(Context, Name, File, Line, GetterName,
Duncan P. N. Exon Smith3ec5fa62015-04-06 19:03:45 +00002108 SetterName, Attributes,
Adrian Prantl8ff53b32015-06-15 23:18:03 +00002109 getBasicType("other")));
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00002110
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002111 TempDIObjCProperty Temp = N->clone();
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00002112 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002113}
2114
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002115typedef MetadataTest DIImportedEntityTest;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002116
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002117TEST_F(DIImportedEntityTest, get) {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002118 unsigned Tag = dwarf::DW_TAG_imported_module;
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002119 DIScope *Scope = getSubprogram();
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +00002120 DINode *Entity = getCompositeType();
Adrian Prantld63bfd22017-07-19 00:09:54 +00002121 DIFile *File = getFile();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002122 unsigned Line = 5;
2123 StringRef Name = "name";
2124
Adrian Prantld63bfd22017-07-19 00:09:54 +00002125 auto *N =
2126 DIImportedEntity::get(Context, Tag, Scope, Entity, File, Line, Name);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002127
2128 EXPECT_EQ(Tag, N->getTag());
2129 EXPECT_EQ(Scope, N->getScope());
2130 EXPECT_EQ(Entity, N->getEntity());
Adrian Prantld63bfd22017-07-19 00:09:54 +00002131 EXPECT_EQ(File, N->getFile());
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002132 EXPECT_EQ(Line, N->getLine());
2133 EXPECT_EQ(Name, N->getName());
Adrian Prantld63bfd22017-07-19 00:09:54 +00002134 EXPECT_EQ(
2135 N, DIImportedEntity::get(Context, Tag, Scope, Entity, File, Line, Name));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002136
2137 EXPECT_NE(N,
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002138 DIImportedEntity::get(Context, dwarf::DW_TAG_imported_declaration,
Adrian Prantld63bfd22017-07-19 00:09:54 +00002139 Scope, Entity, File, Line, Name));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002140 EXPECT_NE(N, DIImportedEntity::get(Context, Tag, getSubprogram(), Entity,
Adrian Prantld63bfd22017-07-19 00:09:54 +00002141 File, Line, Name));
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002142 EXPECT_NE(N, DIImportedEntity::get(Context, Tag, Scope, getCompositeType(),
Adrian Prantld63bfd22017-07-19 00:09:54 +00002143 File, Line, Name));
2144 EXPECT_NE(N, DIImportedEntity::get(Context, Tag, Scope, Entity, nullptr, Line,
2145 Name));
2146 EXPECT_NE(N, DIImportedEntity::get(Context, Tag, Scope, Entity, File,
2147 Line + 1, Name));
2148 EXPECT_NE(N, DIImportedEntity::get(Context, Tag, Scope, Entity, File, Line,
2149 "other"));
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00002150
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002151 TempDIImportedEntity Temp = N->clone();
Duncan P. N. Exon Smith6873fea2015-02-17 23:10:13 +00002152 EXPECT_EQ(N, MDNode::replaceWithUniqued(std::move(Temp)));
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00002153}
2154
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00002155typedef MetadataTest MetadataAsValueTest;
2156
2157TEST_F(MetadataAsValueTest, MDNode) {
2158 MDNode *N = MDNode::get(Context, None);
2159 auto *V = MetadataAsValue::get(Context, N);
2160 EXPECT_TRUE(V->getType()->isMetadataTy());
2161 EXPECT_EQ(N, V->getMetadata());
2162
2163 auto *V2 = MetadataAsValue::get(Context, N);
2164 EXPECT_EQ(V, V2);
2165}
2166
2167TEST_F(MetadataAsValueTest, MDNodeMDNode) {
2168 MDNode *N = MDNode::get(Context, None);
2169 Metadata *Ops[] = {N};
2170 MDNode *N2 = MDNode::get(Context, Ops);
2171 auto *V = MetadataAsValue::get(Context, N2);
2172 EXPECT_TRUE(V->getType()->isMetadataTy());
2173 EXPECT_EQ(N2, V->getMetadata());
2174
2175 auto *V2 = MetadataAsValue::get(Context, N2);
2176 EXPECT_EQ(V, V2);
2177
2178 auto *V3 = MetadataAsValue::get(Context, N);
2179 EXPECT_TRUE(V3->getType()->isMetadataTy());
2180 EXPECT_NE(V, V3);
2181 EXPECT_EQ(N, V3->getMetadata());
2182}
2183
2184TEST_F(MetadataAsValueTest, MDNodeConstant) {
2185 auto *C = ConstantInt::getTrue(Context);
2186 auto *MD = ConstantAsMetadata::get(C);
2187 Metadata *Ops[] = {MD};
2188 auto *N = MDNode::get(Context, Ops);
2189
2190 auto *V = MetadataAsValue::get(Context, MD);
2191 EXPECT_TRUE(V->getType()->isMetadataTy());
2192 EXPECT_EQ(MD, V->getMetadata());
2193
2194 auto *V2 = MetadataAsValue::get(Context, N);
2195 EXPECT_EQ(MD, V2->getMetadata());
2196 EXPECT_EQ(V, V2);
2197}
2198
Duncan P. N. Exon Smith121eeff2014-12-12 19:24:33 +00002199typedef MetadataTest ValueAsMetadataTest;
2200
2201TEST_F(ValueAsMetadataTest, UpdatesOnRAUW) {
2202 Type *Ty = Type::getInt1PtrTy(Context);
2203 std::unique_ptr<GlobalVariable> GV0(
2204 new GlobalVariable(Ty, false, GlobalValue::ExternalLinkage));
2205 auto *MD = ValueAsMetadata::get(GV0.get());
2206 EXPECT_TRUE(MD->getValue() == GV0.get());
2207 ASSERT_TRUE(GV0->use_empty());
2208
2209 std::unique_ptr<GlobalVariable> GV1(
2210 new GlobalVariable(Ty, false, GlobalValue::ExternalLinkage));
2211 GV0->replaceAllUsesWith(GV1.get());
2212 EXPECT_TRUE(MD->getValue() == GV1.get());
2213}
2214
Adrian Prantlcbec1602016-02-08 17:02:34 +00002215TEST_F(ValueAsMetadataTest, TempTempReplacement) {
2216 // Create a constant.
Mehdi Amini03b42e42016-04-14 21:59:01 +00002217 ConstantAsMetadata *CI =
2218 ConstantAsMetadata::get(ConstantInt::get(Context, APInt(8, 0)));
Adrian Prantlcbec1602016-02-08 17:02:34 +00002219
Adrian Prantlcbec1602016-02-08 17:02:34 +00002220 auto Temp1 = MDTuple::getTemporary(Context, None);
Adrian Prantl817c47b2016-02-08 19:13:15 +00002221 auto Temp2 = MDTuple::getTemporary(Context, {CI});
2222 auto *N = MDTuple::get(Context, {Temp1.get()});
Adrian Prantlcbec1602016-02-08 17:02:34 +00002223
2224 // Test replacing a temporary node with another temporary node.
2225 Temp1->replaceAllUsesWith(Temp2.get());
2226 EXPECT_EQ(N->getOperand(0), Temp2.get());
2227
2228 // Clean up Temp2 for teardown.
2229 Temp2->replaceAllUsesWith(nullptr);
2230}
2231
Duncan P. N. Exon Smith4a4f7852015-01-14 19:56:10 +00002232TEST_F(ValueAsMetadataTest, CollidingDoubleUpdates) {
2233 // Create a constant.
Mehdi Amini03b42e42016-04-14 21:59:01 +00002234 ConstantAsMetadata *CI =
2235 ConstantAsMetadata::get(ConstantInt::get(Context, APInt(8, 0)));
Duncan P. N. Exon Smith4a4f7852015-01-14 19:56:10 +00002236
2237 // Create a temporary to prevent nodes from resolving.
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +00002238 auto Temp = MDTuple::getTemporary(Context, None);
Duncan P. N. Exon Smith4a4f7852015-01-14 19:56:10 +00002239
2240 // When the first operand of N1 gets reset to nullptr, it'll collide with N2.
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +00002241 Metadata *Ops1[] = {CI, CI, Temp.get()};
2242 Metadata *Ops2[] = {nullptr, CI, Temp.get()};
Duncan P. N. Exon Smith4a4f7852015-01-14 19:56:10 +00002243
2244 auto *N1 = MDTuple::get(Context, Ops1);
2245 auto *N2 = MDTuple::get(Context, Ops2);
2246 ASSERT_NE(N1, N2);
2247
2248 // Tell metadata that the constant is getting deleted.
2249 //
2250 // After this, N1 will be invalid, so don't touch it.
2251 ValueAsMetadata::handleDeletion(CI->getValue());
2252 EXPECT_EQ(nullptr, N2->getOperand(0));
2253 EXPECT_EQ(nullptr, N2->getOperand(1));
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +00002254 EXPECT_EQ(Temp.get(), N2->getOperand(2));
Duncan P. N. Exon Smith4a4f7852015-01-14 19:56:10 +00002255
2256 // Clean up Temp for teardown.
2257 Temp->replaceAllUsesWith(nullptr);
2258}
2259
Duncan P. N. Exon Smith121eeff2014-12-12 19:24:33 +00002260typedef MetadataTest TrackingMDRefTest;
2261
2262TEST_F(TrackingMDRefTest, UpdatesOnRAUW) {
2263 Type *Ty = Type::getInt1PtrTy(Context);
2264 std::unique_ptr<GlobalVariable> GV0(
2265 new GlobalVariable(Ty, false, GlobalValue::ExternalLinkage));
2266 TypedTrackingMDRef<ValueAsMetadata> MD(ValueAsMetadata::get(GV0.get()));
2267 EXPECT_TRUE(MD->getValue() == GV0.get());
2268 ASSERT_TRUE(GV0->use_empty());
2269
2270 std::unique_ptr<GlobalVariable> GV1(
2271 new GlobalVariable(Ty, false, GlobalValue::ExternalLinkage));
2272 GV0->replaceAllUsesWith(GV1.get());
2273 EXPECT_TRUE(MD->getValue() == GV1.get());
2274
2275 // Reset it, so we don't inadvertently test deletion.
2276 MD.reset();
2277}
2278
2279TEST_F(TrackingMDRefTest, UpdatesOnDeletion) {
2280 Type *Ty = Type::getInt1PtrTy(Context);
2281 std::unique_ptr<GlobalVariable> GV(
2282 new GlobalVariable(Ty, false, GlobalValue::ExternalLinkage));
2283 TypedTrackingMDRef<ValueAsMetadata> MD(ValueAsMetadata::get(GV.get()));
2284 EXPECT_TRUE(MD->getValue() == GV.get());
2285 ASSERT_TRUE(GV->use_empty());
2286
2287 GV.reset();
2288 EXPECT_TRUE(!MD);
2289}
2290
Devang Patel0924b332009-07-30 00:03:41 +00002291TEST(NamedMDNodeTest, Search) {
Jeffrey Yasskinbd8a7592010-03-04 23:24:19 +00002292 LLVMContext Context;
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00002293 ConstantAsMetadata *C =
2294 ConstantAsMetadata::get(ConstantInt::get(Type::getInt32Ty(Context), 1));
2295 ConstantAsMetadata *C2 =
2296 ConstantAsMetadata::get(ConstantInt::get(Type::getInt32Ty(Context), 2));
Devang Patel0924b332009-07-30 00:03:41 +00002297
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00002298 Metadata *const V = C;
2299 Metadata *const V2 = C2;
Jay Foad5514afe2011-04-21 19:59:31 +00002300 MDNode *n = MDNode::get(Context, V);
2301 MDNode *n2 = MDNode::get(Context, V2);
Devang Patel0924b332009-07-30 00:03:41 +00002302
Jeffrey Yasskin3d73d1a2010-03-13 01:39:20 +00002303 Module M("MyModule", Context);
Devang Patel0924b332009-07-30 00:03:41 +00002304 const char *Name = "llvm.NMD1";
Dan Gohman2637cc12010-07-21 23:38:33 +00002305 NamedMDNode *NMD = M.getOrInsertNamedMetadata(Name);
2306 NMD->addOperand(n);
2307 NMD->addOperand(n2);
2308
Chris Lattnerbe354a62009-08-23 04:47:35 +00002309 std::string Str;
2310 raw_string_ostream oss(Str);
Devang Patel0924b332009-07-30 00:03:41 +00002311 NMD->print(oss);
Chris Lattner1e6e3672009-12-31 02:12:13 +00002312 EXPECT_STREQ("!llvm.NMD1 = !{!0, !1}\n",
Devang Patel0924b332009-07-30 00:03:41 +00002313 oss.str().c_str());
2314}
Duncan P. N. Exon Smithe2510cd2015-04-24 21:51:02 +00002315
2316typedef MetadataTest FunctionAttachmentTest;
2317TEST_F(FunctionAttachmentTest, setMetadata) {
2318 Function *F = getFunction("foo");
2319 ASSERT_FALSE(F->hasMetadata());
2320 EXPECT_EQ(nullptr, F->getMetadata(LLVMContext::MD_dbg));
2321 EXPECT_EQ(nullptr, F->getMetadata("dbg"));
2322 EXPECT_EQ(nullptr, F->getMetadata("other"));
2323
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002324 DISubprogram *SP1 = getSubprogram();
2325 DISubprogram *SP2 = getSubprogram();
Duncan P. N. Exon Smithe2510cd2015-04-24 21:51:02 +00002326 ASSERT_NE(SP1, SP2);
2327
2328 F->setMetadata("dbg", SP1);
2329 EXPECT_TRUE(F->hasMetadata());
2330 EXPECT_EQ(SP1, F->getMetadata(LLVMContext::MD_dbg));
2331 EXPECT_EQ(SP1, F->getMetadata("dbg"));
2332 EXPECT_EQ(nullptr, F->getMetadata("other"));
2333
2334 F->setMetadata(LLVMContext::MD_dbg, SP2);
2335 EXPECT_TRUE(F->hasMetadata());
2336 EXPECT_EQ(SP2, F->getMetadata(LLVMContext::MD_dbg));
2337 EXPECT_EQ(SP2, F->getMetadata("dbg"));
2338 EXPECT_EQ(nullptr, F->getMetadata("other"));
2339
2340 F->setMetadata("dbg", nullptr);
2341 EXPECT_FALSE(F->hasMetadata());
2342 EXPECT_EQ(nullptr, F->getMetadata(LLVMContext::MD_dbg));
2343 EXPECT_EQ(nullptr, F->getMetadata("dbg"));
2344 EXPECT_EQ(nullptr, F->getMetadata("other"));
2345
2346 MDTuple *T1 = getTuple();
2347 MDTuple *T2 = getTuple();
2348 ASSERT_NE(T1, T2);
2349
2350 F->setMetadata("other1", T1);
2351 F->setMetadata("other2", T2);
2352 EXPECT_TRUE(F->hasMetadata());
2353 EXPECT_EQ(T1, F->getMetadata("other1"));
2354 EXPECT_EQ(T2, F->getMetadata("other2"));
2355 EXPECT_EQ(nullptr, F->getMetadata("dbg"));
2356
2357 F->setMetadata("other1", T2);
2358 F->setMetadata("other2", T1);
2359 EXPECT_EQ(T2, F->getMetadata("other1"));
2360 EXPECT_EQ(T1, F->getMetadata("other2"));
2361
2362 F->setMetadata("other1", nullptr);
2363 F->setMetadata("other2", nullptr);
2364 EXPECT_FALSE(F->hasMetadata());
2365 EXPECT_EQ(nullptr, F->getMetadata("other1"));
2366 EXPECT_EQ(nullptr, F->getMetadata("other2"));
2367}
2368
2369TEST_F(FunctionAttachmentTest, getAll) {
2370 Function *F = getFunction("foo");
2371
2372 MDTuple *T1 = getTuple();
2373 MDTuple *T2 = getTuple();
2374 MDTuple *P = getTuple();
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00002375 DISubprogram *SP = getSubprogram();
Duncan P. N. Exon Smithe2510cd2015-04-24 21:51:02 +00002376
2377 F->setMetadata("other1", T2);
2378 F->setMetadata(LLVMContext::MD_dbg, SP);
2379 F->setMetadata("other2", T1);
2380 F->setMetadata(LLVMContext::MD_prof, P);
2381 F->setMetadata("other2", T2);
2382 F->setMetadata("other1", T1);
2383
2384 SmallVector<std::pair<unsigned, MDNode *>, 4> MDs;
2385 F->getAllMetadata(MDs);
2386 ASSERT_EQ(4u, MDs.size());
2387 EXPECT_EQ(LLVMContext::MD_dbg, MDs[0].first);
2388 EXPECT_EQ(LLVMContext::MD_prof, MDs[1].first);
2389 EXPECT_EQ(Context.getMDKindID("other1"), MDs[2].first);
2390 EXPECT_EQ(Context.getMDKindID("other2"), MDs[3].first);
2391 EXPECT_EQ(SP, MDs[0].second);
2392 EXPECT_EQ(P, MDs[1].second);
2393 EXPECT_EQ(T1, MDs[2].second);
2394 EXPECT_EQ(T2, MDs[3].second);
2395}
2396
Duncan P. N. Exon Smith327e9bd2015-04-24 21:53:27 +00002397TEST_F(FunctionAttachmentTest, Verifier) {
2398 Function *F = getFunction("foo");
2399 F->setMetadata("attach", getTuple());
Peter Collingbournebb738172016-06-06 23:21:27 +00002400 F->setIsMaterializable(true);
Peter Collingbournebb738172016-06-06 23:21:27 +00002401
Peter Collingbourne21521892016-06-21 23:42:48 +00002402 // Confirm this is materializable.
2403 ASSERT_TRUE(F->isMaterializable());
2404
2405 // Materializable functions cannot have metadata attachments.
2406 EXPECT_TRUE(verifyFunction(*F));
2407
2408 // Function declarations can.
Peter Collingbournebb738172016-06-06 23:21:27 +00002409 F->setIsMaterializable(false);
Peter Collingbourne21521892016-06-21 23:42:48 +00002410 EXPECT_FALSE(verifyModule(*F->getParent()));
2411 EXPECT_FALSE(verifyFunction(*F));
2412
2413 // So can definitions.
Duncan P. N. Exon Smith327e9bd2015-04-24 21:53:27 +00002414 (void)new UnreachableInst(Context, BasicBlock::Create(Context, "bb", F));
2415 EXPECT_FALSE(verifyModule(*F->getParent()));
2416 EXPECT_FALSE(verifyFunction(*F));
2417}
2418
Diego Novillo2567f3d2015-05-13 15:13:45 +00002419TEST_F(FunctionAttachmentTest, EntryCount) {
2420 Function *F = getFunction("foo");
2421 EXPECT_FALSE(F->getEntryCount().hasValue());
2422 F->setEntryCount(12304);
2423 EXPECT_TRUE(F->getEntryCount().hasValue());
2424 EXPECT_EQ(12304u, *F->getEntryCount());
2425}
2426
Duncan P. N. Exon Smithb56b5af2015-08-28 21:55:35 +00002427TEST_F(FunctionAttachmentTest, SubprogramAttachment) {
2428 Function *F = getFunction("foo");
2429 DISubprogram *SP = getSubprogram();
2430 F->setSubprogram(SP);
2431
2432 // Note that the static_cast confirms that F->getSubprogram() actually
2433 // returns an DISubprogram.
2434 EXPECT_EQ(SP, static_cast<DISubprogram *>(F->getSubprogram()));
2435 EXPECT_EQ(SP, F->getMetadata("dbg"));
2436 EXPECT_EQ(SP, F->getMetadata(LLVMContext::MD_dbg));
2437}
2438
Duncan P. N. Exon Smith4b1bc642016-04-23 04:15:56 +00002439typedef MetadataTest DistinctMDOperandPlaceholderTest;
2440TEST_F(DistinctMDOperandPlaceholderTest, getID) {
2441 EXPECT_EQ(7u, DistinctMDOperandPlaceholder(7).getID());
2442}
2443
2444TEST_F(DistinctMDOperandPlaceholderTest, replaceUseWith) {
2445 // Set up some placeholders.
2446 DistinctMDOperandPlaceholder PH0(7);
2447 DistinctMDOperandPlaceholder PH1(3);
2448 DistinctMDOperandPlaceholder PH2(0);
2449 Metadata *Ops[] = {&PH0, &PH1, &PH2};
2450 auto *D = MDTuple::getDistinct(Context, Ops);
2451 ASSERT_EQ(&PH0, D->getOperand(0));
2452 ASSERT_EQ(&PH1, D->getOperand(1));
2453 ASSERT_EQ(&PH2, D->getOperand(2));
2454
2455 // Replace them.
2456 auto *N0 = MDTuple::get(Context, None);
2457 auto *N1 = MDTuple::get(Context, N0);
2458 PH0.replaceUseWith(N0);
2459 PH1.replaceUseWith(N1);
2460 PH2.replaceUseWith(nullptr);
2461 EXPECT_EQ(N0, D->getOperand(0));
2462 EXPECT_EQ(N1, D->getOperand(1));
2463 EXPECT_EQ(nullptr, D->getOperand(2));
2464}
2465
2466TEST_F(DistinctMDOperandPlaceholderTest, replaceUseWithNoUser) {
2467 // There is no user, but we can still call replace.
2468 DistinctMDOperandPlaceholder(7).replaceUseWith(MDTuple::get(Context, None));
2469}
2470
Reid Kleckner6be1ed02017-08-10 21:14:07 +00002471// Test various assertions in metadata tracking. Don't run these tests if gtest
2472// will use SEH to recover from them. Two of these tests get halfway through
2473// inserting metadata into DenseMaps for tracking purposes, and then they
2474// assert, and we attempt to destroy an LLVMContext with broken invariants,
2475// leading to infinite loops.
2476#if defined(GTEST_HAS_DEATH_TEST) && !defined(NDEBUG) && !defined(GTEST_HAS_SEH)
Duncan P. N. Exon Smith4b1bc642016-04-23 04:15:56 +00002477TEST_F(DistinctMDOperandPlaceholderTest, MetadataAsValue) {
2478 // This shouldn't crash.
2479 DistinctMDOperandPlaceholder PH(7);
2480 EXPECT_DEATH(MetadataAsValue::get(Context, &PH),
2481 "Unexpected callback to owner");
2482}
2483
2484TEST_F(DistinctMDOperandPlaceholderTest, UniquedMDNode) {
2485 // This shouldn't crash.
2486 DistinctMDOperandPlaceholder PH(7);
2487 EXPECT_DEATH(MDTuple::get(Context, &PH), "Unexpected callback to owner");
2488}
2489
2490TEST_F(DistinctMDOperandPlaceholderTest, SecondDistinctMDNode) {
2491 // This shouldn't crash.
2492 DistinctMDOperandPlaceholder PH(7);
2493 MDTuple::getDistinct(Context, &PH);
2494 EXPECT_DEATH(MDTuple::getDistinct(Context, &PH),
2495 "Placeholders can only be used once");
2496}
2497
2498TEST_F(DistinctMDOperandPlaceholderTest, TrackingMDRefAndDistinctMDNode) {
2499 // TrackingMDRef doesn't install an owner callback, so it can't be detected
2500 // as an invalid use. However, using a placeholder in a TrackingMDRef *and*
2501 // a distinct node isn't possible and we should assert.
2502 //
2503 // (There's no positive test for using TrackingMDRef because it's not a
2504 // useful thing to do.)
2505 {
2506 DistinctMDOperandPlaceholder PH(7);
2507 MDTuple::getDistinct(Context, &PH);
2508 EXPECT_DEATH(TrackingMDRef Ref(&PH), "Placeholders can only be used once");
2509 }
2510 {
2511 DistinctMDOperandPlaceholder PH(7);
2512 TrackingMDRef Ref(&PH);
2513 EXPECT_DEATH(MDTuple::getDistinct(Context, &PH),
2514 "Placeholders can only be used once");
2515 }
2516}
2517#endif
2518
Duncan P. N. Exon Smith2923a432016-04-23 04:02:39 +00002519} // end namespace