LLVM 22.0.0git
MCJIT.h
Go to the documentation of this file.
1//===-- MCJIT.h - MC-Based Just-In-Time Execution Engine --------*- C++ -*-===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8//
9// This file forces the MCJIT to link in on certain operating systems.
10// (Windows).
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_EXECUTIONENGINE_MCJIT_H
15#define LLVM_EXECUTIONENGINE_MCJIT_H
16
20
21extern "C" LLVM_ABI void LLVMLinkInMCJIT();
22
23namespace {
24 struct ForceMCJITLinking {
25 ForceMCJITLinking() {
26 // We must reference MCJIT in such a way that compilers will not
27 // delete it all as dead code, even with whole program optimization, yet
28 // is effectively a NO-OP. This is so that globals in the translation
29 // units where these functions are defined are forced to be initialized,
30 // populating various registries.
32 return;
33
35 }
36 } ForceMCJITLinking;
37}
38
39#endif
#define LLVM_ABI
Definition Compiler.h:213
LLVM_ABI void LLVMLinkInMCJIT()
Empty function used to force the linker to link MCJIT.
Definition MCJIT.cpp:40
bool getNonFoldableAlwaysTrue()
Definition AlwaysTrue.h:15