1 //===- MCJITTest.cpp - Unit tests for the MCJIT -----------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This test suite verifies basic MCJIT functionality when invoked form the C
12 //===----------------------------------------------------------------------===//
14 #include "MCJITTestAPICommon.h"
15 #include "llvm-c/Analysis.h"
16 #include "llvm-c/Core.h"
17 #include "llvm-c/ExecutionEngine.h"
18 #include "llvm-c/Target.h"
19 #include "llvm-c/Transforms/PassManagerBuilder.h"
20 #include "llvm-c/Transforms/Scalar.h"
21 #include "llvm/ExecutionEngine/SectionMemoryManager.h"
22 #include "llvm/Support/Debug.h"
23 #include "llvm/Support/Host.h"
24 #include "gtest/gtest.h"
28 static bool didCallAllocateCodeSection
;
29 static bool didAllocateCompactUnwindSection
;
30 static bool didCallYield
;
32 static uint8_t *roundTripAllocateCodeSection(void *object
, uintptr_t size
,
35 const char *sectionName
) {
36 didCallAllocateCodeSection
= true;
37 return static_cast<SectionMemoryManager
*>(object
)->allocateCodeSection(
38 size
, alignment
, sectionID
, sectionName
);
41 static uint8_t *roundTripAllocateDataSection(void *object
, uintptr_t size
,
44 const char *sectionName
,
45 LLVMBool isReadOnly
) {
46 if (!strcmp(sectionName
, "__compact_unwind"))
47 didAllocateCompactUnwindSection
= true;
48 return static_cast<SectionMemoryManager
*>(object
)->allocateDataSection(
49 size
, alignment
, sectionID
, sectionName
, isReadOnly
);
52 static LLVMBool
roundTripFinalizeMemory(void *object
, char **errMsg
) {
53 std::string errMsgString
;
55 static_cast<SectionMemoryManager
*>(object
)->finalizeMemory(&errMsgString
);
57 *errMsg
= LLVMCreateMessage(errMsgString
.c_str());
63 static void roundTripDestroy(void *object
) {
64 delete static_cast<SectionMemoryManager
*>(object
);
67 static void yield(LLVMContextRef
, void *) {
73 // memory manager to test reserve allocation space callback
74 class TestReserveAllocationSpaceMemoryManager
: public SectionMemoryManager
{
76 uintptr_t ReservedCodeSize
;
77 uintptr_t UsedCodeSize
;
78 uintptr_t ReservedDataSizeRO
;
79 uintptr_t UsedDataSizeRO
;
80 uintptr_t ReservedDataSizeRW
;
81 uintptr_t UsedDataSizeRW
;
83 TestReserveAllocationSpaceMemoryManager() :
84 ReservedCodeSize(0), UsedCodeSize(0), ReservedDataSizeRO(0),
85 UsedDataSizeRO(0), ReservedDataSizeRW(0), UsedDataSizeRW(0) {
88 bool needsToReserveAllocationSpace() override
{ return true; }
90 void reserveAllocationSpace(uintptr_t CodeSize
, uint32_t CodeAlign
,
91 uintptr_t DataSizeRO
, uint32_t RODataAlign
,
93 uint32_t RWDataAlign
) override
{
94 ReservedCodeSize
= CodeSize
;
95 ReservedDataSizeRO
= DataSizeRO
;
96 ReservedDataSizeRW
= DataSizeRW
;
99 void useSpace(uintptr_t* UsedSize
, uintptr_t Size
, unsigned Alignment
) {
100 uintptr_t AlignedSize
= (Size
+ Alignment
- 1) / Alignment
* Alignment
;
101 uintptr_t AlignedBegin
= (*UsedSize
+ Alignment
- 1) / Alignment
* Alignment
;
102 *UsedSize
= AlignedBegin
+ AlignedSize
;
105 uint8_t *allocateDataSection(uintptr_t Size
, unsigned Alignment
,
106 unsigned SectionID
, StringRef SectionName
,
107 bool IsReadOnly
) override
{
108 useSpace(IsReadOnly
? &UsedDataSizeRO
: &UsedDataSizeRW
, Size
, Alignment
);
109 return SectionMemoryManager::allocateDataSection(Size
, Alignment
,
110 SectionID
, SectionName
, IsReadOnly
);
113 uint8_t *allocateCodeSection(uintptr_t Size
, unsigned Alignment
,
115 StringRef SectionName
) override
{
116 useSpace(&UsedCodeSize
, Size
, Alignment
);
117 return SectionMemoryManager::allocateCodeSection(Size
, Alignment
,
118 SectionID
, SectionName
);
122 class MCJITCAPITest
: public testing::Test
, public MCJITTestAPICommon
{
125 // The architectures below are known to be compatible with MCJIT as they
126 // are copied from test/ExecutionEngine/MCJIT/lit.local.cfg and should be
128 SupportedArchs
.push_back(Triple::aarch64
);
129 SupportedArchs
.push_back(Triple::arm
);
130 SupportedArchs
.push_back(Triple::mips
);
131 SupportedArchs
.push_back(Triple::mips64
);
132 SupportedArchs
.push_back(Triple::mips64el
);
133 SupportedArchs
.push_back(Triple::x86
);
134 SupportedArchs
.push_back(Triple::x86_64
);
136 // Some architectures have sub-architectures in which tests will fail, like
137 // ARM. These two vectors will define if they do have sub-archs (to avoid
138 // extra work for those who don't), and if so, if they are listed to work
139 HasSubArchs
.push_back(Triple::arm
);
140 SupportedSubArchs
.push_back("armv6");
141 SupportedSubArchs
.push_back("armv7");
143 // The operating systems below are known to be sufficiently incompatible
144 // that they will fail the MCJIT C API tests.
145 UnsupportedEnvironments
.push_back(Triple::Cygnus
);
148 void SetUp() override
{
149 didCallAllocateCodeSection
= false;
150 didAllocateCompactUnwindSection
= false;
151 didCallYield
= false;
158 void TearDown() override
{
160 LLVMDisposeExecutionEngine(Engine
);
162 LLVMDisposeModule(Module
);
165 void buildSimpleFunction() {
166 Module
= LLVMModuleCreateWithName("simple_module");
168 LLVMSetTarget(Module
, HostTriple
.c_str());
170 Function
= LLVMAddFunction(Module
, "simple_function",
171 LLVMFunctionType(LLVMInt32Type(), nullptr,0, 0));
172 LLVMSetFunctionCallConv(Function
, LLVMCCallConv
);
174 LLVMBasicBlockRef entry
= LLVMAppendBasicBlock(Function
, "entry");
175 LLVMBuilderRef builder
= LLVMCreateBuilder();
176 LLVMPositionBuilderAtEnd(builder
, entry
);
177 LLVMBuildRet(builder
, LLVMConstInt(LLVMInt32Type(), 42, 0));
179 LLVMVerifyModule(Module
, LLVMAbortProcessAction
, &Error
);
180 LLVMDisposeMessage(Error
);
182 LLVMDisposeBuilder(builder
);
185 void buildFunctionThatUsesStackmap() {
186 Module
= LLVMModuleCreateWithName("simple_module");
188 LLVMSetTarget(Module
, HostTriple
.c_str());
190 LLVMTypeRef stackmapParamTypes
[] = { LLVMInt64Type(), LLVMInt32Type() };
191 LLVMValueRef stackmap
= LLVMAddFunction(
192 Module
, "llvm.experimental.stackmap",
193 LLVMFunctionType(LLVMVoidType(), stackmapParamTypes
, 2, 1));
194 LLVMSetLinkage(stackmap
, LLVMExternalLinkage
);
196 Function
= LLVMAddFunction(Module
, "simple_function",
197 LLVMFunctionType(LLVMInt32Type(), nullptr, 0, 0));
199 LLVMBasicBlockRef entry
= LLVMAppendBasicBlock(Function
, "entry");
200 LLVMBuilderRef builder
= LLVMCreateBuilder();
201 LLVMPositionBuilderAtEnd(builder
, entry
);
202 LLVMValueRef stackmapArgs
[] = {
203 LLVMConstInt(LLVMInt64Type(), 0, 0), LLVMConstInt(LLVMInt32Type(), 5, 0),
204 LLVMConstInt(LLVMInt32Type(), 42, 0)
206 LLVMBuildCall(builder
, stackmap
, stackmapArgs
, 3, "");
207 LLVMBuildRet(builder
, LLVMConstInt(LLVMInt32Type(), 42, 0));
209 LLVMVerifyModule(Module
, LLVMAbortProcessAction
, &Error
);
210 LLVMDisposeMessage(Error
);
212 LLVMDisposeBuilder(builder
);
215 void buildModuleWithCodeAndData() {
216 Module
= LLVMModuleCreateWithName("simple_module");
218 LLVMSetTarget(Module
, HostTriple
.c_str());
220 // build a global int32 variable initialized to 42.
221 LLVMValueRef GlobalVar
= LLVMAddGlobal(Module
, LLVMInt32Type(), "intVal");
222 LLVMSetInitializer(GlobalVar
, LLVMConstInt(LLVMInt32Type(), 42, 0));
225 Function
= LLVMAddFunction(Module
, "getGlobal",
226 LLVMFunctionType(LLVMInt32Type(), nullptr, 0, 0));
227 LLVMSetFunctionCallConv(Function
, LLVMCCallConv
);
229 LLVMBasicBlockRef Entry
= LLVMAppendBasicBlock(Function
, "entry");
230 LLVMBuilderRef Builder
= LLVMCreateBuilder();
231 LLVMPositionBuilderAtEnd(Builder
, Entry
);
233 LLVMValueRef IntVal
= LLVMBuildLoad(Builder
, GlobalVar
, "intVal");
234 LLVMBuildRet(Builder
, IntVal
);
236 LLVMVerifyModule(Module
, LLVMAbortProcessAction
, &Error
);
237 LLVMDisposeMessage(Error
);
239 LLVMDisposeBuilder(Builder
);
243 LLVMTypeRef ParamTypes
[] = { LLVMInt32Type() };
244 Function2
= LLVMAddFunction(
245 Module
, "setGlobal", LLVMFunctionType(LLVMVoidType(), ParamTypes
, 1, 0));
246 LLVMSetFunctionCallConv(Function2
, LLVMCCallConv
);
248 LLVMBasicBlockRef Entry
= LLVMAppendBasicBlock(Function2
, "entry");
249 LLVMBuilderRef Builder
= LLVMCreateBuilder();
250 LLVMPositionBuilderAtEnd(Builder
, Entry
);
252 LLVMValueRef Arg
= LLVMGetParam(Function2
, 0);
253 LLVMBuildStore(Builder
, Arg
, GlobalVar
);
254 LLVMBuildRetVoid(Builder
);
256 LLVMVerifyModule(Module
, LLVMAbortProcessAction
, &Error
);
257 LLVMDisposeMessage(Error
);
259 LLVMDisposeBuilder(Builder
);
263 void buildMCJITOptions() {
264 LLVMInitializeMCJITCompilerOptions(&Options
, sizeof(Options
));
265 Options
.OptLevel
= 2;
267 // Just ensure that this field still exists.
268 Options
.NoFramePointerElim
= false;
271 void useRoundTripSectionMemoryManager() {
272 Options
.MCJMM
= LLVMCreateSimpleMCJITMemoryManager(
273 new SectionMemoryManager(),
274 roundTripAllocateCodeSection
,
275 roundTripAllocateDataSection
,
276 roundTripFinalizeMemory
,
280 void buildMCJITEngine() {
282 0, LLVMCreateMCJITCompilerForModule(&Engine
, Module
, &Options
,
283 sizeof(Options
), &Error
));
286 void buildAndRunPasses() {
287 LLVMPassManagerRef pass
= LLVMCreatePassManager();
288 LLVMAddConstantPropagationPass(pass
);
289 LLVMAddInstructionCombiningPass(pass
);
290 LLVMRunPassManager(pass
, Module
);
291 LLVMDisposePassManager(pass
);
294 void buildAndRunOptPasses() {
295 LLVMPassManagerBuilderRef passBuilder
;
297 passBuilder
= LLVMPassManagerBuilderCreate();
298 LLVMPassManagerBuilderSetOptLevel(passBuilder
, 2);
299 LLVMPassManagerBuilderSetSizeLevel(passBuilder
, 0);
301 LLVMPassManagerRef functionPasses
=
302 LLVMCreateFunctionPassManagerForModule(Module
);
303 LLVMPassManagerRef modulePasses
=
304 LLVMCreatePassManager();
306 LLVMPassManagerBuilderPopulateFunctionPassManager(passBuilder
,
308 LLVMPassManagerBuilderPopulateModulePassManager(passBuilder
, modulePasses
);
310 LLVMPassManagerBuilderDispose(passBuilder
);
312 LLVMInitializeFunctionPassManager(functionPasses
);
313 for (LLVMValueRef value
= LLVMGetFirstFunction(Module
);
314 value
; value
= LLVMGetNextFunction(value
))
315 LLVMRunFunctionPassManager(functionPasses
, value
);
316 LLVMFinalizeFunctionPassManager(functionPasses
);
318 LLVMRunPassManager(modulePasses
, Module
);
320 LLVMDisposePassManager(functionPasses
);
321 LLVMDisposePassManager(modulePasses
);
324 LLVMModuleRef Module
;
325 LLVMValueRef Function
;
326 LLVMValueRef Function2
;
327 LLVMMCJITCompilerOptions Options
;
328 LLVMExecutionEngineRef Engine
;
331 } // end anonymous namespace
333 TEST_F(MCJITCAPITest
, simple_function
) {
334 SKIP_UNSUPPORTED_PLATFORM
;
336 buildSimpleFunction();
341 auto *functionPointer
= reinterpret_cast<int (*)()>(
342 reinterpret_cast<uintptr_t>(LLVMGetPointerToGlobal(Engine
, Function
)));
344 EXPECT_EQ(42, functionPointer());
347 TEST_F(MCJITCAPITest
, gva
) {
348 SKIP_UNSUPPORTED_PLATFORM
;
350 Module
= LLVMModuleCreateWithName("simple_module");
351 LLVMSetTarget(Module
, HostTriple
.c_str());
352 LLVMValueRef GlobalVar
= LLVMAddGlobal(Module
, LLVMInt32Type(), "simple_value");
353 LLVMSetInitializer(GlobalVar
, LLVMConstInt(LLVMInt32Type(), 42, 0));
359 uint64_t raw
= LLVMGetGlobalValueAddress(Engine
, "simple_value");
360 int32_t *usable
= (int32_t *) raw
;
362 EXPECT_EQ(42, *usable
);
365 TEST_F(MCJITCAPITest
, gfa
) {
366 SKIP_UNSUPPORTED_PLATFORM
;
368 buildSimpleFunction();
373 uint64_t raw
= LLVMGetFunctionAddress(Engine
, "simple_function");
374 int (*usable
)() = (int (*)()) raw
;
376 EXPECT_EQ(42, usable());
379 TEST_F(MCJITCAPITest
, custom_memory_manager
) {
380 SKIP_UNSUPPORTED_PLATFORM
;
382 buildSimpleFunction();
384 useRoundTripSectionMemoryManager();
388 auto *functionPointer
= reinterpret_cast<int (*)()>(
389 reinterpret_cast<uintptr_t>(LLVMGetPointerToGlobal(Engine
, Function
)));
391 EXPECT_EQ(42, functionPointer());
392 EXPECT_TRUE(didCallAllocateCodeSection
);
395 TEST_F(MCJITCAPITest
, stackmap_creates_compact_unwind_on_darwin
) {
396 SKIP_UNSUPPORTED_PLATFORM
;
398 // This test is also not supported on non-x86 platforms.
399 if (Triple(HostTriple
).getArch() != Triple::x86_64
)
402 buildFunctionThatUsesStackmap();
404 useRoundTripSectionMemoryManager();
406 buildAndRunOptPasses();
408 auto *functionPointer
= reinterpret_cast<int (*)()>(
409 reinterpret_cast<uintptr_t>(LLVMGetPointerToGlobal(Engine
, Function
)));
411 EXPECT_EQ(42, functionPointer());
412 EXPECT_TRUE(didCallAllocateCodeSection
);
414 // Up to this point, the test is specific only to X86-64. But this next
415 // expectation is only valid on Darwin because it assumes that unwind
416 // data is made available only through compact_unwind. It would be
417 // worthwhile to extend this to handle non-Darwin platforms, in which
418 // case you'd want to look for an eh_frame or something.
420 // FIXME: Currently, MCJIT relies on a configure-time check to determine which
421 // sections to emit. The JIT client should have runtime control over this.
423 Triple(HostTriple
).getOS() != Triple::Darwin
||
424 Triple(HostTriple
).isMacOSXVersionLT(10, 7) ||
425 didAllocateCompactUnwindSection
);
428 TEST_F(MCJITCAPITest
, reserve_allocation_space
) {
429 SKIP_UNSUPPORTED_PLATFORM
;
431 TestReserveAllocationSpaceMemoryManager
* MM
= new TestReserveAllocationSpaceMemoryManager();
433 buildModuleWithCodeAndData();
435 Options
.MCJMM
= wrap(MM
);
439 auto GetGlobalFct
= reinterpret_cast<int (*)()>(
440 reinterpret_cast<uintptr_t>(LLVMGetPointerToGlobal(Engine
, Function
)));
442 auto SetGlobalFct
= reinterpret_cast<void (*)(int)>(
443 reinterpret_cast<uintptr_t>(LLVMGetPointerToGlobal(Engine
, Function2
)));
446 EXPECT_EQ(789, GetGlobalFct());
447 EXPECT_LE(MM
->UsedCodeSize
, MM
->ReservedCodeSize
);
448 EXPECT_LE(MM
->UsedDataSizeRO
, MM
->ReservedDataSizeRO
);
449 EXPECT_LE(MM
->UsedDataSizeRW
, MM
->ReservedDataSizeRW
);
450 EXPECT_TRUE(MM
->UsedCodeSize
> 0);
451 EXPECT_TRUE(MM
->UsedDataSizeRW
> 0);
454 TEST_F(MCJITCAPITest
, yield
) {
455 SKIP_UNSUPPORTED_PLATFORM
;
457 buildSimpleFunction();
460 LLVMContextRef C
= LLVMGetGlobalContext();
461 LLVMContextSetYieldCallback(C
, yield
, nullptr);
464 auto *functionPointer
= reinterpret_cast<int (*)()>(
465 reinterpret_cast<uintptr_t>(LLVMGetPointerToGlobal(Engine
, Function
)));
467 EXPECT_EQ(42, functionPointer());
468 EXPECT_TRUE(didCallYield
);
471 static int localTestFunc() {
475 TEST_F(MCJITCAPITest
, addGlobalMapping
) {
476 SKIP_UNSUPPORTED_PLATFORM
;
478 Module
= LLVMModuleCreateWithName("testModule");
479 LLVMSetTarget(Module
, HostTriple
.c_str());
480 LLVMTypeRef FunctionType
= LLVMFunctionType(LLVMInt32Type(), nullptr, 0, 0);
481 LLVMValueRef MappedFn
= LLVMAddFunction(Module
, "mapped_fn", FunctionType
);
483 Function
= LLVMAddFunction(Module
, "test_fn", FunctionType
);
484 LLVMBasicBlockRef Entry
= LLVMAppendBasicBlock(Function
, "");
485 LLVMBuilderRef Builder
= LLVMCreateBuilder();
486 LLVMPositionBuilderAtEnd(Builder
, Entry
);
487 LLVMValueRef RetVal
= LLVMBuildCall(Builder
, MappedFn
, nullptr, 0, "");
488 LLVMBuildRet(Builder
, RetVal
);
489 LLVMDisposeBuilder(Builder
);
491 LLVMVerifyModule(Module
, LLVMAbortProcessAction
, &Error
);
492 LLVMDisposeMessage(Error
);
497 LLVMAddGlobalMapping(
499 reinterpret_cast<void *>(reinterpret_cast<uintptr_t>(&localTestFunc
)));
503 uint64_t raw
= LLVMGetFunctionAddress(Engine
, "test_fn");
504 int (*usable
)() = (int (*)()) raw
;
506 EXPECT_EQ(42, usable());