llvm/llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp

//===- ExecutionEngineTest.cpp - Unit tests for ExecutionEngine -----------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "llvm/ADT/STLExtras.h"
#include "llvm/ExecutionEngine/Interpreter.h"
#include "llvm/ExecutionEngine/RTDyldMemoryManager.h"
#include "llvm/IR/DerivedTypes.h"
#include "llvm/IR/GlobalVariable.h"
#include "llvm/IR/LLVMContext.h"
#include "llvm/IR/Module.h"
#include "llvm/Support/DynamicLibrary.h"
#include "llvm/Support/ManagedStatic.h"
#include "gtest/gtest.h"

usingnamespacellvm;

namespace {

class ExecutionEngineTest : public testing::Test {};

TEST_F(ExecutionEngineTest, ForwardGlobalMapping) {}

TEST_F(ExecutionEngineTest, ReverseGlobalMapping) {}

TEST_F(ExecutionEngineTest, ClearModuleMappings) {}

TEST_F(ExecutionEngineTest, DestructionRemovesGlobalMapping) {}

TEST_F(ExecutionEngineTest, LookupWithMangledAndDemangledSymbol) {}

}