2013-01-07 16:35:46 +01:00
|
|
|
//===- llvm/unittest/IR/VerifierTest.cpp - Verifier unit tests ------------===//
|
2010-02-15 23:09:09 +01:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-01-13 10:26:24 +01:00
|
|
|
#include "llvm/IR/Verifier.h"
|
2013-01-02 12:36:10 +01:00
|
|
|
#include "llvm/IR/Constants.h"
|
|
|
|
#include "llvm/IR/DerivedTypes.h"
|
|
|
|
#include "llvm/IR/Function.h"
|
|
|
|
#include "llvm/IR/GlobalAlias.h"
|
|
|
|
#include "llvm/IR/GlobalVariable.h"
|
|
|
|
#include "llvm/IR/Instructions.h"
|
|
|
|
#include "llvm/IR/LLVMContext.h"
|
|
|
|
#include "llvm/IR/Module.h"
|
2010-02-15 23:09:09 +01:00
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
TEST(VerifierTest, Branch_i1) {
|
|
|
|
LLVMContext &C = getGlobalContext();
|
2013-10-30 23:37:51 +01:00
|
|
|
Module M("M", C);
|
2010-02-15 23:09:09 +01:00
|
|
|
FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), /*isVarArg=*/false);
|
2013-10-30 23:37:51 +01:00
|
|
|
Function *F = cast<Function>(M.getOrInsertFunction("foo", FTy));
|
|
|
|
BasicBlock *Entry = BasicBlock::Create(C, "entry", F);
|
|
|
|
BasicBlock *Exit = BasicBlock::Create(C, "exit", F);
|
2010-02-15 23:09:09 +01:00
|
|
|
ReturnInst::Create(C, Exit);
|
|
|
|
|
|
|
|
// To avoid triggering an assertion in BranchInst::Create, we first create
|
|
|
|
// a branch with an 'i1' condition ...
|
|
|
|
|
|
|
|
Constant *False = ConstantInt::getFalse(C);
|
|
|
|
BranchInst *BI = BranchInst::Create(Exit, Exit, False, Entry);
|
|
|
|
|
|
|
|
// ... then use setOperand to redirect it to a value of different type.
|
|
|
|
|
|
|
|
Constant *Zero32 = ConstantInt::get(IntegerType::get(C, 32), 0);
|
|
|
|
BI->setOperand(0, Zero32);
|
|
|
|
|
2014-01-19 03:22:18 +01:00
|
|
|
EXPECT_TRUE(verifyFunction(*F));
|
2010-02-15 23:09:09 +01:00
|
|
|
}
|
|
|
|
|
2013-06-19 21:26:44 +02:00
|
|
|
TEST(VerifierTest, InvalidRetAttribute) {
|
|
|
|
LLVMContext &C = getGlobalContext();
|
|
|
|
Module M("M", C);
|
|
|
|
FunctionType *FTy = FunctionType::get(Type::getInt32Ty(C), /*isVarArg=*/false);
|
|
|
|
Function *F = cast<Function>(M.getOrInsertFunction("foo", FTy));
|
|
|
|
AttributeSet AS = F->getAttributes();
|
|
|
|
F->setAttributes(AS.addAttribute(C, AttributeSet::ReturnIndex,
|
|
|
|
Attribute::UWTable));
|
|
|
|
|
|
|
|
std::string Error;
|
2014-01-19 03:22:18 +01:00
|
|
|
raw_string_ostream ErrorOS(Error);
|
|
|
|
EXPECT_TRUE(verifyModule(M, &ErrorOS));
|
|
|
|
EXPECT_TRUE(StringRef(ErrorOS.str()).startswith(
|
|
|
|
"Attribute 'uwtable' only applies to functions!"));
|
2013-06-19 21:26:44 +02:00
|
|
|
}
|
|
|
|
|
2010-02-15 23:09:09 +01:00
|
|
|
}
|
|
|
|
}
|