summaryrefslogtreecommitdiff
path: root/include/llvm/ExecutionEngine/JIT.h
blob: 76c2cbda0a81b0d62d2c615863f58a4d6d8c8569 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//===-- JIT.h - Abstract Execution Engine Interface -------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file was developed by Jeff Cohen and is distributed under the
// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file forces the JIT to link in on certain operating systems.
// (Windows).
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_EXECUTION_ENGINE_JIT_H
#define LLVM_EXECUTION_ENGINE_JIT_H

#include "llvm/ExecutionEngine/ExecutionEngine.h"
#include <cstdlib>

namespace llvm {
  extern void LinkInJIT();
}

namespace {
  struct ForceJITLinking {
    ForceJITLinking() {
      // We must reference the passes in such a way that compilers will not
      // delete it all as dead code, even with whole program optimization,
      // yet is effectively a NO-OP. As the compiler isn't smart enough
      // to know that getenv() never returns -1, this will do the job.
      if (std::getenv("bar") != (char*) -1)
        return;

      llvm::LinkInJIT();
    }
  } ForceJITLinking;
}

#endif