forked from JuliaLang/julia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathllvmcalltest.cpp
82 lines (67 loc) · 2.09 KB
/
llvmcalltest.cpp
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// This file is a part of Julia. License is MIT: https://julialang.org/license
#include "llvm-version.h"
#include "support/platform.h"
#include "support/dtypes.h"
#include "llvm/Config/llvm-config.h"
#include "llvm/IR/IRBuilder.h"
#include <llvm/Support/raw_ostream.h>
#include "julia.h"
#include "codegen_shared.h"
using namespace llvm;
// Borrow definition from `support/dtypes.h`
#ifdef _OS_WINDOWS_
# define DLLEXPORT __declspec(dllexport)
#else
# if defined(_OS_LINUX_)
# define DLLEXPORT __attribute__ ((visibility("protected")))
# else
# define DLLEXPORT __attribute__ ((visibility("default")))
# endif
#endif
extern "C" {
DLLEXPORT const char *MakeIdentityFunction(jl_value_t* jl_AnyTy) {
LLVMContext Ctx;
// FIXME: get TrackedTy via jl_type_to_llvm(Ctx, jl_AnyTy)
Type *TrackedTy = PointerType::get(StructType::get(Ctx), AddressSpace::Tracked);
Module *M = new llvm::Module("shadow", Ctx);
Function *F = Function::Create(
FunctionType::get(
TrackedTy, {TrackedTy}, false),
llvm::GlobalValue::ExternalLinkage,
"identity",
M
);
IRBuilder<> Builder(BasicBlock::Create(Ctx, "top", F));
Builder.CreateRet(&*F->arg_begin());
std::string buf;
raw_string_ostream os(buf);
M->print(os, NULL);
os.flush();
return strdup(buf.c_str());
}
DLLEXPORT const char *MakeLoadGlobalFunction() {
LLVMContext Ctx;
auto M = new Module("shadow", Ctx);
auto intType = Type::getInt32Ty(Ctx);
auto G = new GlobalVariable(
*M,
intType,
true,
GlobalValue::InternalLinkage,
Constant::getNullValue(intType),
"test_global_var");
auto resultType = Type::getInt64Ty(Ctx);
auto F = Function::Create(
FunctionType::get(resultType, {}, false),
GlobalValue::ExternalLinkage,
"load_global_var",
M);
IRBuilder<> Builder(BasicBlock::Create(Ctx, "top", F));
Builder.CreateRet(Builder.CreatePtrToInt(G, resultType));
std::string buf;
raw_string_ostream os(buf);
M->print(os, NULL);
os.flush();
return strdup(buf.c_str());
}
}