2013-01-07 15:35:46 +00:00
|
|
|
//===- llvm/unittest/IR/Metadata.cpp - Metadata unit tests ----------------===//
|
2009-04-04 07:22:01 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Metadata.h"
|
|
|
|
#include "llvm/IR/Constants.h"
|
|
|
|
#include "llvm/IR/Instructions.h"
|
|
|
|
#include "llvm/IR/LLVMContext.h"
|
|
|
|
#include "llvm/IR/Module.h"
|
|
|
|
#include "llvm/IR/Type.h"
|
2014-03-04 11:17:44 +00:00
|
|
|
#include "llvm/IR/ValueHandle.h"
|
2012-12-04 10:23:08 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
#include "gtest/gtest.h"
|
2009-04-04 07:22:01 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2010-03-04 23:24:19 +00:00
|
|
|
class MetadataTest : public testing::Test {
|
|
|
|
protected:
|
|
|
|
LLVMContext Context;
|
|
|
|
};
|
|
|
|
typedef MetadataTest MDStringTest;
|
2009-07-31 21:38:10 +00:00
|
|
|
|
2009-04-04 07:22:01 +00:00
|
|
|
// Test that construction of MDString with different value produces different
|
|
|
|
// MDString objects, even with the same string pointer and nulls in the string.
|
2010-03-04 23:24:19 +00:00
|
|
|
TEST_F(MDStringTest, CreateDifferent) {
|
2009-04-04 07:22:01 +00:00
|
|
|
char x[3] = { 'f', 0, 'A' };
|
2009-07-31 21:38:10 +00:00
|
|
|
MDString *s1 = MDString::get(Context, StringRef(&x[0], 3));
|
2009-04-04 07:22:01 +00:00
|
|
|
x[2] = 'B';
|
2009-07-31 21:38:10 +00:00
|
|
|
MDString *s2 = MDString::get(Context, StringRef(&x[0], 3));
|
2009-04-04 07:22:01 +00:00
|
|
|
EXPECT_NE(s1, s2);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that creation of MDStrings with the same string contents produces the
|
|
|
|
// same MDString object, even with different pointers.
|
2010-03-04 23:24:19 +00:00
|
|
|
TEST_F(MDStringTest, CreateSame) {
|
2009-04-04 07:22:01 +00:00
|
|
|
char x[4] = { 'a', 'b', 'c', 'X' };
|
|
|
|
char y[4] = { 'a', 'b', 'c', 'Y' };
|
|
|
|
|
2009-07-31 21:38:10 +00:00
|
|
|
MDString *s1 = MDString::get(Context, StringRef(&x[0], 3));
|
|
|
|
MDString *s2 = MDString::get(Context, StringRef(&y[0], 3));
|
2009-04-04 07:22:01 +00:00
|
|
|
EXPECT_EQ(s1, s2);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that MDString prints out the string we fed it.
|
2010-03-04 23:24:19 +00:00
|
|
|
TEST_F(MDStringTest, PrintingSimple) {
|
2009-04-04 07:22:01 +00:00
|
|
|
char *str = new char[13];
|
|
|
|
strncpy(str, "testing 1 2 3", 13);
|
2009-07-31 21:38:10 +00:00
|
|
|
MDString *s = MDString::get(Context, StringRef(str, 13));
|
2009-04-04 07:22:01 +00:00
|
|
|
strncpy(str, "aaaaaaaaaaaaa", 13);
|
|
|
|
delete[] str;
|
|
|
|
|
2009-08-23 04:47:35 +00:00
|
|
|
std::string Str;
|
|
|
|
raw_string_ostream oss(Str);
|
2009-04-04 07:22:01 +00:00
|
|
|
s->print(oss);
|
2009-05-30 05:06:04 +00:00
|
|
|
EXPECT_STREQ("metadata !\"testing 1 2 3\"", oss.str().c_str());
|
2009-04-04 07:22:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Test printing of MDString with non-printable characters.
|
2010-03-04 23:24:19 +00:00
|
|
|
TEST_F(MDStringTest, PrintingComplex) {
|
2011-08-30 20:53:29 +00:00
|
|
|
char str[5] = {0, '\n', '"', '\\', (char)-1};
|
2009-07-31 21:38:10 +00:00
|
|
|
MDString *s = MDString::get(Context, StringRef(str+0, 5));
|
2009-08-23 04:47:35 +00:00
|
|
|
std::string Str;
|
|
|
|
raw_string_ostream oss(Str);
|
2009-04-04 07:22:01 +00:00
|
|
|
s->print(oss);
|
2009-05-30 05:06:04 +00:00
|
|
|
EXPECT_STREQ("metadata !\"\\00\\0A\\22\\5C\\FF\"", oss.str().c_str());
|
2009-04-04 07:22:01 +00:00
|
|
|
}
|
|
|
|
|
2010-03-04 23:24:19 +00:00
|
|
|
typedef MetadataTest MDNodeTest;
|
|
|
|
|
2009-04-04 07:22:01 +00:00
|
|
|
// Test the two constructors, and containing other Constants.
|
2010-03-04 23:24:19 +00:00
|
|
|
TEST_F(MDNodeTest, Simple) {
|
2009-04-04 07:22:01 +00:00
|
|
|
char x[3] = { 'a', 'b', 'c' };
|
|
|
|
char y[3] = { '1', '2', '3' };
|
|
|
|
|
2009-07-31 21:38:10 +00:00
|
|
|
MDString *s1 = MDString::get(Context, StringRef(&x[0], 3));
|
|
|
|
MDString *s2 = MDString::get(Context, StringRef(&y[0], 3));
|
2009-07-24 23:12:02 +00:00
|
|
|
ConstantInt *CI = ConstantInt::get(getGlobalContext(), APInt(8, 0));
|
2009-04-04 07:22:01 +00:00
|
|
|
|
2009-05-10 20:57:05 +00:00
|
|
|
std::vector<Value *> V;
|
2009-04-04 07:22:01 +00:00
|
|
|
V.push_back(s1);
|
|
|
|
V.push_back(CI);
|
|
|
|
V.push_back(s2);
|
|
|
|
|
2011-04-21 19:59:31 +00:00
|
|
|
MDNode *n1 = MDNode::get(Context, V);
|
2009-05-10 20:57:05 +00:00
|
|
|
Value *const c1 = n1;
|
2011-04-21 19:59:31 +00:00
|
|
|
MDNode *n2 = MDNode::get(Context, c1);
|
2012-03-31 08:20:11 +00:00
|
|
|
Value *const c2 = n2;
|
2011-04-21 19:59:31 +00:00
|
|
|
MDNode *n3 = MDNode::get(Context, V);
|
2012-03-31 08:20:11 +00:00
|
|
|
MDNode *n4 = MDNode::getIfExists(Context, V);
|
|
|
|
MDNode *n5 = MDNode::getIfExists(Context, c1);
|
|
|
|
MDNode *n6 = MDNode::getIfExists(Context, c2);
|
2009-04-04 07:22:01 +00:00
|
|
|
EXPECT_NE(n1, n2);
|
2009-09-07 04:19:02 +00:00
|
|
|
#ifdef ENABLE_MDNODE_UNIQUING
|
2009-09-03 01:39:20 +00:00
|
|
|
EXPECT_EQ(n1, n3);
|
2009-09-07 04:19:02 +00:00
|
|
|
#else
|
|
|
|
(void) n3;
|
|
|
|
#endif
|
2012-03-31 08:20:11 +00:00
|
|
|
EXPECT_EQ(n4, n1);
|
|
|
|
EXPECT_EQ(n5, n2);
|
|
|
|
EXPECT_EQ(n6, (Value*)0);
|
2009-04-04 07:22:01 +00:00
|
|
|
|
2009-12-31 01:22:29 +00:00
|
|
|
EXPECT_EQ(3u, n1->getNumOperands());
|
|
|
|
EXPECT_EQ(s1, n1->getOperand(0));
|
|
|
|
EXPECT_EQ(CI, n1->getOperand(1));
|
|
|
|
EXPECT_EQ(s2, n1->getOperand(2));
|
2009-04-04 07:22:01 +00:00
|
|
|
|
2009-12-31 01:22:29 +00:00
|
|
|
EXPECT_EQ(1u, n2->getNumOperands());
|
|
|
|
EXPECT_EQ(n1, n2->getOperand(0));
|
2009-04-04 07:22:01 +00:00
|
|
|
}
|
2009-05-10 20:57:05 +00:00
|
|
|
|
2010-03-04 23:24:19 +00:00
|
|
|
TEST_F(MDNodeTest, Delete) {
|
2009-08-13 21:58:54 +00:00
|
|
|
Constant *C = ConstantInt::get(Type::getInt32Ty(getGlobalContext()), 1);
|
|
|
|
Instruction *I = new BitCastInst(C, Type::getInt32Ty(getGlobalContext()));
|
2009-05-10 20:57:05 +00:00
|
|
|
|
|
|
|
Value *const V = I;
|
2011-04-21 19:59:31 +00:00
|
|
|
MDNode *n = MDNode::get(Context, V);
|
2009-05-10 20:57:05 +00:00
|
|
|
WeakVH wvh = n;
|
|
|
|
|
|
|
|
EXPECT_EQ(n, wvh);
|
|
|
|
|
|
|
|
delete I;
|
|
|
|
}
|
2009-07-30 00:03:41 +00:00
|
|
|
|
|
|
|
TEST(NamedMDNodeTest, Search) {
|
2010-03-04 23:24:19 +00:00
|
|
|
LLVMContext Context;
|
|
|
|
Constant *C = ConstantInt::get(Type::getInt32Ty(Context), 1);
|
|
|
|
Constant *C2 = ConstantInt::get(Type::getInt32Ty(Context), 2);
|
2009-07-30 00:03:41 +00:00
|
|
|
|
|
|
|
Value *const V = C;
|
|
|
|
Value *const V2 = C2;
|
2011-04-21 19:59:31 +00:00
|
|
|
MDNode *n = MDNode::get(Context, V);
|
|
|
|
MDNode *n2 = MDNode::get(Context, V2);
|
2009-07-30 00:03:41 +00:00
|
|
|
|
2010-03-13 01:39:20 +00:00
|
|
|
Module M("MyModule", Context);
|
2009-07-30 00:03:41 +00:00
|
|
|
const char *Name = "llvm.NMD1";
|
2010-07-21 23:38:33 +00:00
|
|
|
NamedMDNode *NMD = M.getOrInsertNamedMetadata(Name);
|
|
|
|
NMD->addOperand(n);
|
|
|
|
NMD->addOperand(n2);
|
|
|
|
|
2009-08-23 04:47:35 +00:00
|
|
|
std::string Str;
|
|
|
|
raw_string_ostream oss(Str);
|
2009-07-30 00:03:41 +00:00
|
|
|
NMD->print(oss);
|
2009-12-31 02:12:13 +00:00
|
|
|
EXPECT_STREQ("!llvm.NMD1 = !{!0, !1}\n",
|
2009-07-30 00:03:41 +00:00
|
|
|
oss.str().c_str());
|
|
|
|
}
|
2009-04-04 07:22:01 +00:00
|
|
|
}
|