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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
use super::LLVMRef;
use super::module::Module;
use super::builder::BasicBlock;
use libc::c_char;
use llvm::analysis::{
LLVMVerifierFailureAction,
LLVMVerifyFunction
};
use llvm::core::{
LLVMAddFunction,
LLVMAppendBasicBlockInContext,
LLVMCountParams,
LLVMFunctionType,
LLVMGetTypeContext,
LLVMTypeOf
};
use llvm::prelude::{
LLVMBool,
LLVMTypeRef,
LLVMValueRef
};
use std::ffi::CString;
pub struct Function {
function: LLVMValueRef
}
impl Function {
pub fn new(module: &Module, function_name: &str, function_arguments: &mut [LLVMTypeRef], function_return: LLVMTypeRef) -> Function {
let function_name = CString::new(function_name).unwrap();
let function_type = unsafe {
LLVMFunctionType(
function_return,
function_arguments.as_mut_ptr(),
function_arguments.len() as u32,
0 as LLVMBool
)
};
Function {
function: unsafe {
LLVMAddFunction(
module.to_ref(),
function_name.as_ptr() as *const c_char,
function_type
)
}
}
}
pub fn new_basic_block(&self, basic_block_name: &str) -> BasicBlock {
let basic_block_name = CString::new(basic_block_name).unwrap();
BasicBlock::from_ref(
unsafe {
LLVMAppendBasicBlockInContext(
LLVMGetTypeContext(
LLVMTypeOf(
self.to_ref()
)
),
self.to_ref(),
basic_block_name.as_ptr() as *const c_char
)
}
)
}
pub fn arity(&self) -> u32 {
unsafe {
LLVMCountParams(self.to_ref()) as u32
}
}
pub fn verify(&self) -> Result<(), String> {
let status;
unsafe {
status = LLVMVerifyFunction(
self.to_ref(),
LLVMVerifierFailureAction::LLVMReturnStatusAction
)
}
if 1 == status {
Err("Unknown error".to_string())
} else {
Ok(())
}
}
}
impl LLVMRef<LLVMValueRef> for Function {
fn to_ref(&self) -> LLVMValueRef {
self.function
}
}
#[cfg(test)]
mod tests {
use super::Function;
use super::super::builder::Builder;
use super::super::context::Context;
use super::super::module::Module;
use super::super::native_type::{
VMRepresentation,
array_type,
double_type,
int1_type,
int8_type,
void_type
};
#[test]
fn case_declare_void_void() {
let context = Context::new();
let module = Module::new("foobar", &context);
let _function = Function::new(
&module,
"f",
&mut [],
void_type(&context)
);
assert_eq!(
"; ModuleID = 'foobar'\n".to_string() +
"source_filename = \"foobar\"\n" +
"\n" +
"declare void @f()\n",
format!("{}", module)
);
}
#[test]
fn case_declare_int8_array_double() {
let context = Context::new();
let module = Module::new("foobar", &context);
let _function = Function::new(
&module,
"f",
&mut [int8_type(&context), array_type(int1_type(&context), 7)],
double_type(&context)
);
assert_eq!(
"; ModuleID = 'foobar'\n".to_string() +
"source_filename = \"foobar\"\n" +
"\n" +
"declare double @f(i8, [7 x i1])\n",
format!("{}", module)
);
}
#[test]
fn case_define_void_void() {
let context = Context::new();
let module = Module::new("foobar", &context);
let function = Function::new(
&module,
"f",
&mut [],
void_type(&context)
);
function.new_basic_block("entry");
assert_eq!(
"; ModuleID = 'foobar'\n".to_string() +
"source_filename = \"foobar\"\n" +
"\n" +
"define void @f() {\n" +
"entry:\n" +
"}\n",
format!("{}", module)
);
match function.verify() {
Ok(_) =>
assert!(false),
Err(_) =>
assert!(true)
}
}
macro_rules! test_arity {
($test_case_name:ident: (#$function:ident([$($argument_types:ident),*]) -> $return_type:ident, $arity:expr)) => (
#[test]
fn $test_case_name() {
let context = Context::new();
let module = Module::new("foobar", &context);
let function = Function::new(
&module,
stringify!($function),
&mut [$($argument_types(&context)),*],
$return_type(&context)
);
assert_eq!(
$arity,
function.arity()
);
}
)
}
test_arity!(case_arity_zero: (#f([]) -> void_type, 0));
test_arity!(case_arity_one : (#f([int1_type]) -> void_type, 1));
test_arity!(case_arity_two : (#f([int1_type, int1_type]) -> void_type, 2));
#[test]
fn case_verify() {
let mut context = Context::new();
let mut module = Module::new("foobar", &mut context);
let mut builder = Builder::new(&mut context);
let function = Function::new(&mut module, "fgi", &mut[], int8_type(&context));
let basic_block = function.new_basic_block("entry");
builder.move_to_end(basic_block);
let addition = builder.add(
7u8.to_vm_representation(&context),
42u8.to_vm_representation(&context),
"addition"
);
builder.return_value(addition);
match function.verify() {
Ok(_) =>
assert!(true),
Err(_) =>
assert!(false)
}
}
}