mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-02 07:32:52 +00:00
d976d43f23
Summary: Doing work in constructors is bad: this change suggests to call SpecialCaseList::create(Path, Error) instead of "new SpecialCaseList(Path)". Currently the latter may crash with report_fatal_error, which is undesirable - sometimes we want to report the error to user gracefully - for example, if he provides an incorrect file as an argument of Clang's -fsanitize-blacklist flag. Reviewers: pcc Reviewed By: pcc CC: llvm-commits Differential Revision: http://llvm-reviews.chandlerc.com/D1327 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188156 91177308-0d34-0410-b5e6-96231b3b80d8
189 lines
6.1 KiB
C++
189 lines
6.1 KiB
C++
//===- SpecialCaseList.cpp - Unit tests for SpecialCaseList ---------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/IR/Function.h"
|
|
#include "llvm/IR/LLVMContext.h"
|
|
#include "llvm/IR/Module.h"
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
#include "llvm/Transforms/Utils/SpecialCaseList.h"
|
|
#include "gtest/gtest.h"
|
|
|
|
using namespace llvm;
|
|
|
|
namespace {
|
|
|
|
class SpecialCaseListTest : public ::testing::Test {
|
|
protected:
|
|
Function *makeFunction(StringRef Name, Module &M) {
|
|
return Function::Create(FunctionType::get(Type::getVoidTy(Ctx), false),
|
|
GlobalValue::ExternalLinkage,
|
|
Name,
|
|
&M);
|
|
}
|
|
|
|
GlobalVariable *makeGlobal(StringRef Name, StringRef StructName, Module &M) {
|
|
StructType *ST =
|
|
StructType::create(StructName, Type::getInt32Ty(Ctx), (Type*)0);
|
|
return new GlobalVariable(
|
|
M, ST, false, GlobalValue::ExternalLinkage, 0, Name);
|
|
}
|
|
|
|
SpecialCaseList *makeSpecialCaseList(StringRef List, std::string &Error) {
|
|
OwningPtr<MemoryBuffer> MB(MemoryBuffer::getMemBuffer(List));
|
|
return SpecialCaseList::create(MB.get(), Error);
|
|
}
|
|
|
|
SpecialCaseList *makeSpecialCaseList(StringRef List) {
|
|
std::string Error;
|
|
SpecialCaseList *SCL = makeSpecialCaseList(List, Error);
|
|
assert(SCL);
|
|
assert(Error == "");
|
|
return SCL;
|
|
}
|
|
|
|
LLVMContext Ctx;
|
|
};
|
|
|
|
TEST_F(SpecialCaseListTest, ModuleIsIn) {
|
|
Module M("hello", Ctx);
|
|
Function *F = makeFunction("foo", M);
|
|
GlobalVariable *GV = makeGlobal("bar", "t", M);
|
|
|
|
OwningPtr<SpecialCaseList> SCL(makeSpecialCaseList("# This is a comment.\n"
|
|
"\n"
|
|
"src:hello\n"));
|
|
EXPECT_TRUE(SCL->isIn(M));
|
|
EXPECT_TRUE(SCL->isIn(*F));
|
|
EXPECT_TRUE(SCL->isIn(*GV));
|
|
|
|
SCL.reset(makeSpecialCaseList("src:he*o\n"));
|
|
EXPECT_TRUE(SCL->isIn(M));
|
|
EXPECT_TRUE(SCL->isIn(*F));
|
|
EXPECT_TRUE(SCL->isIn(*GV));
|
|
|
|
SCL.reset(makeSpecialCaseList("src:hi\n"));
|
|
EXPECT_FALSE(SCL->isIn(M));
|
|
EXPECT_FALSE(SCL->isIn(*F));
|
|
EXPECT_FALSE(SCL->isIn(*GV));
|
|
}
|
|
|
|
TEST_F(SpecialCaseListTest, FunctionIsIn) {
|
|
Module M("hello", Ctx);
|
|
Function *Foo = makeFunction("foo", M);
|
|
Function *Bar = makeFunction("bar", M);
|
|
|
|
OwningPtr<SpecialCaseList> SCL(makeSpecialCaseList("fun:foo\n"));
|
|
EXPECT_TRUE(SCL->isIn(*Foo));
|
|
EXPECT_FALSE(SCL->isIn(*Bar));
|
|
|
|
SCL.reset(makeSpecialCaseList("fun:b*\n"));
|
|
EXPECT_FALSE(SCL->isIn(*Foo));
|
|
EXPECT_TRUE(SCL->isIn(*Bar));
|
|
|
|
SCL.reset(makeSpecialCaseList("fun:f*\n"
|
|
"fun:bar\n"));
|
|
EXPECT_TRUE(SCL->isIn(*Foo));
|
|
EXPECT_TRUE(SCL->isIn(*Bar));
|
|
|
|
SCL.reset(makeSpecialCaseList("fun:foo=functional\n"));
|
|
EXPECT_TRUE(SCL->isIn(*Foo, "functional"));
|
|
StringRef Category;
|
|
EXPECT_TRUE(SCL->findCategory(*Foo, Category));
|
|
EXPECT_EQ("functional", Category);
|
|
EXPECT_FALSE(SCL->isIn(*Bar, "functional"));
|
|
}
|
|
|
|
TEST_F(SpecialCaseListTest, GlobalIsIn) {
|
|
Module M("hello", Ctx);
|
|
GlobalVariable *Foo = makeGlobal("foo", "t1", M);
|
|
GlobalVariable *Bar = makeGlobal("bar", "t2", M);
|
|
|
|
OwningPtr<SpecialCaseList> SCL(makeSpecialCaseList("global:foo\n"));
|
|
EXPECT_TRUE(SCL->isIn(*Foo));
|
|
EXPECT_FALSE(SCL->isIn(*Bar));
|
|
EXPECT_FALSE(SCL->isIn(*Foo, "init"));
|
|
EXPECT_FALSE(SCL->isIn(*Bar, "init"));
|
|
|
|
SCL.reset(makeSpecialCaseList("global:foo=init\n"));
|
|
EXPECT_FALSE(SCL->isIn(*Foo));
|
|
EXPECT_FALSE(SCL->isIn(*Bar));
|
|
EXPECT_TRUE(SCL->isIn(*Foo, "init"));
|
|
EXPECT_FALSE(SCL->isIn(*Bar, "init"));
|
|
|
|
SCL.reset(makeSpecialCaseList("global-init:foo\n"));
|
|
EXPECT_FALSE(SCL->isIn(*Foo));
|
|
EXPECT_FALSE(SCL->isIn(*Bar));
|
|
EXPECT_TRUE(SCL->isIn(*Foo, "init"));
|
|
EXPECT_FALSE(SCL->isIn(*Bar, "init"));
|
|
|
|
SCL.reset(makeSpecialCaseList("type:t2=init\n"));
|
|
EXPECT_FALSE(SCL->isIn(*Foo));
|
|
EXPECT_FALSE(SCL->isIn(*Bar));
|
|
EXPECT_FALSE(SCL->isIn(*Foo, "init"));
|
|
EXPECT_TRUE(SCL->isIn(*Bar, "init"));
|
|
|
|
SCL.reset(makeSpecialCaseList("global-init-type:t2\n"));
|
|
EXPECT_FALSE(SCL->isIn(*Foo));
|
|
EXPECT_FALSE(SCL->isIn(*Bar));
|
|
EXPECT_FALSE(SCL->isIn(*Foo, "init"));
|
|
EXPECT_TRUE(SCL->isIn(*Bar, "init"));
|
|
|
|
SCL.reset(makeSpecialCaseList("src:hello=init\n"));
|
|
EXPECT_FALSE(SCL->isIn(*Foo));
|
|
EXPECT_FALSE(SCL->isIn(*Bar));
|
|
EXPECT_TRUE(SCL->isIn(*Foo, "init"));
|
|
EXPECT_TRUE(SCL->isIn(*Bar, "init"));
|
|
|
|
SCL.reset(makeSpecialCaseList("global-init-src:hello\n"));
|
|
EXPECT_FALSE(SCL->isIn(*Foo));
|
|
EXPECT_FALSE(SCL->isIn(*Bar));
|
|
EXPECT_TRUE(SCL->isIn(*Foo, "init"));
|
|
EXPECT_TRUE(SCL->isIn(*Bar, "init"));
|
|
}
|
|
|
|
TEST_F(SpecialCaseListTest, Substring) {
|
|
Module M("othello", Ctx);
|
|
Function *F = makeFunction("tomfoolery", M);
|
|
GlobalVariable *GV = makeGlobal("bartender", "t", M);
|
|
|
|
OwningPtr<SpecialCaseList> SCL(makeSpecialCaseList("src:hello\n"
|
|
"fun:foo\n"
|
|
"global:bar\n"));
|
|
EXPECT_FALSE(SCL->isIn(M));
|
|
EXPECT_FALSE(SCL->isIn(*F));
|
|
EXPECT_FALSE(SCL->isIn(*GV));
|
|
|
|
SCL.reset(makeSpecialCaseList("fun:*foo*\n"));
|
|
EXPECT_TRUE(SCL->isIn(*F));
|
|
}
|
|
|
|
TEST_F(SpecialCaseListTest, InvalidSpecialCaseList) {
|
|
std::string Error;
|
|
EXPECT_EQ(0, makeSpecialCaseList("badline", Error));
|
|
EXPECT_EQ("Malformed line 1: 'badline'", Error);
|
|
EXPECT_EQ(0, makeSpecialCaseList("src:bad[a-", Error));
|
|
EXPECT_EQ("Malformed regex in line 1: 'bad[a-': invalid character range",
|
|
Error);
|
|
EXPECT_EQ(0, makeSpecialCaseList("src:a.c\n"
|
|
"fun:fun(a\n",
|
|
Error));
|
|
EXPECT_EQ("Malformed regex in line 2: 'fun(a': parentheses not balanced",
|
|
Error);
|
|
EXPECT_EQ(0, SpecialCaseList::create("unexisting", Error));
|
|
EXPECT_EQ("Can't open file 'unexisting': No such file or directory", Error);
|
|
}
|
|
|
|
TEST_F(SpecialCaseListTest, EmptySpecialCaseList) {
|
|
OwningPtr<SpecialCaseList> SCL(makeSpecialCaseList(""));
|
|
Module M("foo", Ctx);
|
|
EXPECT_FALSE(SCL->isIn(M));
|
|
}
|
|
|
|
}
|