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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
use std::collections::HashMap;
use std::ffi;
use llvm_sys::core::*;
use llvm_sys::prelude::*;
use llvm_sys::LLVMCallConv;
use crate::mir::ops;
use crate::codegen::analysis::escape::{CaptureKind, Captures};
use crate::codegen::mod_gen::ModCtx;
use crate::codegen::target_gen::TargetCtx;
use crate::codegen::GenAbi;
use crate::libcstr;
pub(crate) struct FunCtx {
pub regs: HashMap<ops::RegId, LLVMValueRef>,
pub function: LLVMValueRef,
pub builder: LLVMBuilderRef,
pub current_task: LLVMValueRef,
}
impl FunCtx {
pub(crate) fn new(
function: LLVMValueRef,
builder: LLVMBuilderRef,
current_task: LLVMValueRef,
) -> FunCtx {
FunCtx {
regs: HashMap::new(),
function,
builder,
current_task,
}
}
}
impl Drop for FunCtx {
fn drop(&mut self) {
unsafe {
LLVMDisposeBuilder(self.builder);
}
}
}
pub(crate) fn declare_fun(
tcx: &mut TargetCtx,
llvm_module: LLVMModuleRef,
fun: &ops::Fun,
) -> LLVMValueRef {
let gen_abi: GenAbi = (&fun.abi).into();
let function_type = tcx.fun_abi_to_llvm_type(&gen_abi);
let fun_symbol = fun
.source_name
.as_ref()
.map(|source_name| ffi::CString::new(source_name.as_bytes()).unwrap())
.unwrap_or_else(|| ffi::CString::new("anon_fun").unwrap());
unsafe {
let llvm_fun = LLVMAddFunction(llvm_module, fun_symbol.as_ptr() as *const _, function_type);
let llvm_call_conv = match fun.abi.call_conv {
ops::CallConv::Ccc => LLVMCallConv::LLVMCCallConv,
ops::CallConv::FastCc => LLVMCallConv::LLVMFastCallConv,
};
LLVMSetFunctionCallConv(llvm_fun, llvm_call_conv as u32);
llvm_fun
}
}
pub(crate) fn define_fun(
tcx: &mut TargetCtx,
mcx: &mut ModCtx<'_, '_, '_>,
fun: &ops::Fun,
captures: &Captures,
llvm_fun: LLVMValueRef,
) {
use crate::codegen::alloc::plan::plan_allocs;
use crate::codegen::op_gen;
use arret_runtime::abitype::{AbiType, RetAbiType};
let alloc_plan = plan_allocs(tcx, captures, &fun.ops);
unsafe {
let builder = LLVMCreateBuilderInContext(tcx.llx);
let bb = LLVMAppendBasicBlockInContext(tcx.llx, llvm_fun, libcstr!("entry"));
LLVMPositionBuilderAtEnd(builder, bb);
let mut fcx = FunCtx::new(llvm_fun, builder, LLVMGetParam(llvm_fun, 0));
fcx.regs.reserve(fun.param_regs.len());
for (param_index, (reg, param_abi_type)) in
fun.param_regs.iter().zip(fun.abi.params.iter()).enumerate()
{
let llvm_offset = (1 + param_index) as u32;
fcx.regs.insert(*reg, LLVMGetParam(llvm_fun, llvm_offset));
if let AbiType::Boxed(_) = param_abi_type {
let no_capture = captures.get(*reg) == CaptureKind::Never;
tcx.add_boxed_param_attrs(llvm_fun, llvm_offset, no_capture);
}
}
if let RetAbiType::Inhabited(AbiType::Boxed(_)) = fun.abi.ret {
tcx.add_boxed_return_attrs(llvm_fun);
}
for alloc_atom in alloc_plan {
op_gen::gen_alloc_atom(tcx, mcx, &mut fcx, alloc_atom);
}
mcx.optimise_function(llvm_fun);
}
}