2009-08-05 01:53:16 +02:00
|
|
|
//===- ExecutionEngineTest.cpp - Unit tests for ExecutionEngine -----------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-12-04 11:23:08 +01:00
|
|
|
#include "llvm/ExecutionEngine/Interpreter.h"
|
|
|
|
#include "llvm/ADT/OwningPtr.h"
|
2013-01-02 12:36:10 +01:00
|
|
|
#include "llvm/IR/DerivedTypes.h"
|
|
|
|
#include "llvm/IR/GlobalVariable.h"
|
|
|
|
#include "llvm/IR/LLVMContext.h"
|
|
|
|
#include "llvm/IR/Module.h"
|
2009-08-05 01:53:16 +02:00
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
class ExecutionEngineTest : public testing::Test {
|
|
|
|
protected:
|
|
|
|
ExecutionEngineTest()
|
2011-12-02 21:53:53 +01:00
|
|
|
: M(new Module("<main>", getGlobalContext())), Error(""),
|
|
|
|
Engine(EngineBuilder(M).setErrorStr(&Error).create()) {
|
2009-08-05 01:53:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual void SetUp() {
|
2011-12-02 21:53:53 +01:00
|
|
|
ASSERT_TRUE(Engine.get() != NULL) << "EngineBuilder returned error: '"
|
|
|
|
<< Error << "'";
|
2009-08-05 01:53:16 +02:00
|
|
|
}
|
|
|
|
|
2011-07-18 06:54:35 +02:00
|
|
|
GlobalVariable *NewExtGlobal(Type *T, const Twine &Name) {
|
2009-08-05 01:53:16 +02:00
|
|
|
return new GlobalVariable(*M, T, false, // Not constant.
|
|
|
|
GlobalValue::ExternalLinkage, NULL, Name);
|
|
|
|
}
|
|
|
|
|
|
|
|
Module *const M;
|
2011-12-02 21:53:53 +01:00
|
|
|
std::string Error;
|
2009-08-05 01:53:16 +02:00
|
|
|
const OwningPtr<ExecutionEngine> Engine;
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST_F(ExecutionEngineTest, ForwardGlobalMapping) {
|
2009-08-13 23:58:54 +02:00
|
|
|
GlobalVariable *G1 =
|
|
|
|
NewExtGlobal(Type::getInt32Ty(getGlobalContext()), "Global1");
|
2009-08-05 01:53:16 +02:00
|
|
|
int32_t Mem1 = 3;
|
|
|
|
Engine->addGlobalMapping(G1, &Mem1);
|
|
|
|
EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G1));
|
|
|
|
int32_t Mem2 = 4;
|
|
|
|
Engine->updateGlobalMapping(G1, &Mem2);
|
|
|
|
EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1));
|
|
|
|
Engine->updateGlobalMapping(G1, NULL);
|
|
|
|
EXPECT_EQ(NULL, Engine->getPointerToGlobalIfAvailable(G1));
|
|
|
|
Engine->updateGlobalMapping(G1, &Mem2);
|
|
|
|
EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1));
|
|
|
|
|
2009-08-13 23:58:54 +02:00
|
|
|
GlobalVariable *G2 =
|
|
|
|
NewExtGlobal(Type::getInt32Ty(getGlobalContext()), "Global1");
|
2009-08-05 01:53:16 +02:00
|
|
|
EXPECT_EQ(NULL, Engine->getPointerToGlobalIfAvailable(G2))
|
|
|
|
<< "The NULL return shouldn't depend on having called"
|
|
|
|
<< " updateGlobalMapping(..., NULL)";
|
|
|
|
// Check that update...() can be called before add...().
|
|
|
|
Engine->updateGlobalMapping(G2, &Mem1);
|
|
|
|
EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G2));
|
|
|
|
EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1))
|
|
|
|
<< "A second mapping shouldn't affect the first.";
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ExecutionEngineTest, ReverseGlobalMapping) {
|
2009-08-13 23:58:54 +02:00
|
|
|
GlobalVariable *G1 =
|
|
|
|
NewExtGlobal(Type::getInt32Ty(getGlobalContext()), "Global1");
|
2009-08-05 01:53:16 +02:00
|
|
|
|
|
|
|
int32_t Mem1 = 3;
|
|
|
|
Engine->addGlobalMapping(G1, &Mem1);
|
|
|
|
EXPECT_EQ(G1, Engine->getGlobalValueAtAddress(&Mem1));
|
|
|
|
int32_t Mem2 = 4;
|
|
|
|
Engine->updateGlobalMapping(G1, &Mem2);
|
|
|
|
EXPECT_EQ(NULL, Engine->getGlobalValueAtAddress(&Mem1));
|
|
|
|
EXPECT_EQ(G1, Engine->getGlobalValueAtAddress(&Mem2));
|
|
|
|
|
2009-08-13 23:58:54 +02:00
|
|
|
GlobalVariable *G2 =
|
|
|
|
NewExtGlobal(Type::getInt32Ty(getGlobalContext()), "Global2");
|
2009-08-05 01:53:16 +02:00
|
|
|
Engine->updateGlobalMapping(G2, &Mem1);
|
|
|
|
EXPECT_EQ(G2, Engine->getGlobalValueAtAddress(&Mem1));
|
|
|
|
EXPECT_EQ(G1, Engine->getGlobalValueAtAddress(&Mem2));
|
|
|
|
Engine->updateGlobalMapping(G1, NULL);
|
|
|
|
EXPECT_EQ(G2, Engine->getGlobalValueAtAddress(&Mem1))
|
|
|
|
<< "Removing one mapping doesn't affect a different one.";
|
|
|
|
EXPECT_EQ(NULL, Engine->getGlobalValueAtAddress(&Mem2));
|
|
|
|
Engine->updateGlobalMapping(G2, &Mem2);
|
|
|
|
EXPECT_EQ(NULL, Engine->getGlobalValueAtAddress(&Mem1));
|
|
|
|
EXPECT_EQ(G2, Engine->getGlobalValueAtAddress(&Mem2))
|
|
|
|
<< "Once a mapping is removed, we can point another GV at the"
|
|
|
|
<< " now-free address.";
|
|
|
|
}
|
|
|
|
|
2009-10-10 00:10:27 +02:00
|
|
|
TEST_F(ExecutionEngineTest, ClearModuleMappings) {
|
|
|
|
GlobalVariable *G1 =
|
|
|
|
NewExtGlobal(Type::getInt32Ty(getGlobalContext()), "Global1");
|
|
|
|
|
|
|
|
int32_t Mem1 = 3;
|
|
|
|
Engine->addGlobalMapping(G1, &Mem1);
|
|
|
|
EXPECT_EQ(G1, Engine->getGlobalValueAtAddress(&Mem1));
|
|
|
|
|
|
|
|
Engine->clearGlobalMappingsFromModule(M);
|
|
|
|
|
|
|
|
EXPECT_EQ(NULL, Engine->getGlobalValueAtAddress(&Mem1));
|
|
|
|
|
|
|
|
GlobalVariable *G2 =
|
|
|
|
NewExtGlobal(Type::getInt32Ty(getGlobalContext()), "Global2");
|
|
|
|
// After clearing the module mappings, we can assign a new GV to the
|
|
|
|
// same address.
|
|
|
|
Engine->addGlobalMapping(G2, &Mem1);
|
|
|
|
EXPECT_EQ(G2, Engine->getGlobalValueAtAddress(&Mem1));
|
|
|
|
}
|
|
|
|
|
2009-10-13 19:42:08 +02:00
|
|
|
TEST_F(ExecutionEngineTest, DestructionRemovesGlobalMapping) {
|
|
|
|
GlobalVariable *G1 =
|
|
|
|
NewExtGlobal(Type::getInt32Ty(getGlobalContext()), "Global1");
|
|
|
|
int32_t Mem1 = 3;
|
|
|
|
Engine->addGlobalMapping(G1, &Mem1);
|
|
|
|
// Make sure the reverse mapping is enabled.
|
|
|
|
EXPECT_EQ(G1, Engine->getGlobalValueAtAddress(&Mem1));
|
|
|
|
// When the GV goes away, the ExecutionEngine should remove any
|
|
|
|
// mappings that refer to it.
|
|
|
|
G1->eraseFromParent();
|
|
|
|
EXPECT_EQ(NULL, Engine->getGlobalValueAtAddress(&Mem1));
|
|
|
|
}
|
|
|
|
|
2009-08-05 01:53:16 +02:00
|
|
|
}
|