Skip to content

Commit 0767f25

Browse files
committed
Renamed alloca and malloc to be closer to LLVM name
Also added get_context for BasicBlocks.
1 parent 988a128 commit 0767f25

File tree

7 files changed

+68
-10
lines changed

7 files changed

+68
-10
lines changed

examples/kaleidoscope/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,7 @@ impl<'a> Compiler<'a> {
874874
None => builder.position_at_end(entry)
875875
}
876876

877-
builder.build_stack_allocation(&self.context.f64_type(), name)
877+
builder.build_alloca(&self.context.f64_type(), name)
878878
}
879879

880880
/// Compiles the specified `Expr` into an LLVM `FloatValue`.

src/basic_block.rs

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
use llvm_sys::core::{LLVMGetBasicBlockParent, LLVMGetBasicBlockTerminator, LLVMGetNextBasicBlock, LLVMInsertBasicBlock, LLVMIsABasicBlock, LLVMIsConstant, LLVMMoveBasicBlockAfter, LLVMMoveBasicBlockBefore, LLVMPrintTypeToString, LLVMPrintValueToString, LLVMTypeOf, LLVMDeleteBasicBlock, LLVMGetPreviousBasicBlock, LLVMRemoveBasicBlockFromParent, LLVMGetFirstInstruction, LLVMGetLastInstruction};
1+
use llvm_sys::core::{LLVMGetBasicBlockParent, LLVMGetBasicBlockTerminator, LLVMGetNextBasicBlock, LLVMInsertBasicBlock, LLVMIsABasicBlock, LLVMIsConstant, LLVMMoveBasicBlockAfter, LLVMMoveBasicBlockBefore, LLVMPrintTypeToString, LLVMPrintValueToString, LLVMTypeOf, LLVMDeleteBasicBlock, LLVMGetPreviousBasicBlock, LLVMRemoveBasicBlockFromParent, LLVMGetFirstInstruction, LLVMGetLastInstruction, LLVMGetTypeContext, LLVMBasicBlockAsValue};
22
use llvm_sys::prelude::{LLVMValueRef, LLVMBasicBlockRef};
33

4+
use context::{Context, ContextRef};
45
use values::{FunctionValue, InstructionValue};
56

67
use std::fmt;
@@ -126,6 +127,14 @@ impl BasicBlock {
126127
LLVMDeleteBasicBlock(self.basic_block)
127128
// }
128129
}
130+
131+
pub fn get_context(&self) -> ContextRef {
132+
let context = unsafe {
133+
LLVMGetTypeContext(LLVMTypeOf(LLVMBasicBlockAsValue(self.basic_block)))
134+
};
135+
136+
ContextRef::new(Context::new(context))
137+
}
129138
}
130139

131140
impl fmt::Debug for BasicBlock {

src/builder.rs

+11-7
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,8 @@ impl Builder {
168168
BasicValueEnum::new(value)
169169
}
170170

171-
pub fn build_stack_allocation(&self, type_: &BasicType, name: &str) -> PointerValue {
171+
// TODOC: Stack allocation
172+
pub fn build_alloca(&self, type_: &BasicType, name: &str) -> PointerValue {
172173
let c_string = CString::new(name).expect("Conversion to CString failed unexpectedly");
173174

174175
let value = unsafe {
@@ -178,31 +179,34 @@ impl Builder {
178179
PointerValue::new(value)
179180
}
180181

181-
pub fn build_heap_allocation(&self, type_: &BasicType, name: &str) -> PointerValue {
182+
// TODOC: Stack allocation
183+
pub fn build_array_alloca(&self, type_: &BasicType, size: &IntValue, name: &str) -> PointerValue {
182184
let c_string = CString::new(name).expect("Conversion to CString failed unexpectedly");
183185

184186
let value = unsafe {
185-
LLVMBuildMalloc(self.builder, type_.as_type_ref(), c_string.as_ptr())
187+
LLVMBuildArrayAlloca(self.builder, type_.as_type_ref(), size.as_value_ref(), c_string.as_ptr())
186188
};
187189

188190
PointerValue::new(value)
189191
}
190192

191-
pub fn build_heap_allocated_array(&self, type_: &BasicType, size: &IntValue, name: &str) -> PointerValue {
193+
// TODOC: Heap allocation
194+
pub fn build_malloc(&self, type_: &BasicType, name: &str) -> PointerValue {
192195
let c_string = CString::new(name).expect("Conversion to CString failed unexpectedly");
193196

194197
let value = unsafe {
195-
LLVMBuildArrayMalloc(self.builder, type_.as_type_ref(), size.as_value_ref(), c_string.as_ptr())
198+
LLVMBuildMalloc(self.builder, type_.as_type_ref(), c_string.as_ptr())
196199
};
197200

198201
PointerValue::new(value)
199202
}
200203

201-
pub fn build_stack_allocated_array(&self, type_: &BasicType, size: &IntValue, name: &str) -> PointerValue {
204+
// TODOC: Heap allocation
205+
pub fn build_array_malloc(&self, type_: &BasicType, size: &IntValue, name: &str) -> PointerValue {
202206
let c_string = CString::new(name).expect("Conversion to CString failed unexpectedly");
203207

204208
let value = unsafe {
205-
LLVMBuildArrayAlloca(self.builder, type_.as_type_ref(), size.as_value_ref(), c_string.as_ptr())
209+
LLVMBuildArrayMalloc(self.builder, type_.as_type_ref(), size.as_value_ref(), c_string.as_ptr())
206210
};
207211

208212
PointerValue::new(value)

src/types/traits.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
use llvm_sys::prelude::LLVMTypeRef;
22

3+
use std::fmt::Debug;
4+
35
use types::{IntType, FunctionType, FloatType, PointerType, StructType, ArrayType, VectorType, VoidType};
46
use types::enums::{AnyTypeEnum, BasicTypeEnum};
57

@@ -12,7 +14,7 @@ pub trait AsTypeRef {
1214

1315
macro_rules! trait_type_set {
1416
($trait_name:ident: $($args:ident),*) => (
15-
pub trait $trait_name: AsTypeRef {}
17+
pub trait $trait_name: AsTypeRef + Debug {}
1618

1719
$(
1820
impl $trait_name for $args {}

src/values/fn_value.rs

+2
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,8 @@ impl FunctionValue {
135135
BasicBlock::new(bb)
136136
}
137137

138+
// TODOC: This applies the global context to the basic block. To keep the existing context
139+
// prefer context.append_basic_block()
138140
pub fn append_basic_block(&self, name: &str) -> BasicBlock {
139141
let c_string = CString::new(name).expect("Conversion to CString failed unexpectedly");
140142

tests/test_context.rs

+16
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,19 @@ fn test_get_context_from_contextless_value() {
4242
assert_ne!(*int.get_context(), context);
4343
assert_ne!(*global_context, context);
4444
}
45+
46+
#[test]
47+
fn test_basic_block_context() {
48+
let context = Context::create();
49+
let module = context.create_module("my_mod");
50+
let void_type = context.void_type();
51+
let fn_type = void_type.fn_type(&[], false);
52+
let fn_value = module.add_function("my_fn", &fn_type, None);
53+
let basic_block = fn_value.append_basic_block("entry");
54+
55+
assert_eq!(basic_block.get_context(), Context::get_global());
56+
57+
let basic_block2 = context.append_basic_block(&fn_value, "entry2");
58+
59+
assert_eq!(*basic_block2.get_context(), context);
60+
}

tests/test_values.rs

+25
Original file line numberDiff line numberDiff line change
@@ -853,3 +853,28 @@ fn test_phi_values() {
853853
assert_eq!(else_bb, else_block);
854854
assert!(phi.get_incoming(2).is_none());
855855
}
856+
857+
#[test]
858+
fn test_allocations() {
859+
let context = Context::create();
860+
let i32_type = context.i32_type();
861+
let i32_three = i32_type.const_int(3, false);
862+
let builder = context.create_builder();
863+
let stack_ptr = builder.build_alloca(&i32_type, "stack_ptr");
864+
865+
assert_eq!(stack_ptr.get_type().print_to_string(), &*CString::new("i32*").unwrap());
866+
867+
let stack_array = builder.build_array_alloca(&i32_type, &i32_three, "stack_array");
868+
869+
assert_eq!(stack_array.get_type().print_to_string(), &*CString::new("i32*").unwrap());
870+
871+
// REVIEW: Heap allocations are not working:
872+
873+
// let heap_ptr = builder.build_malloc(&i32_type, "heap_ptr");
874+
875+
// assert_eq!(heap_ptr.get_type().print_to_string(), &*CString::new("i32*").unwrap());
876+
877+
// let heap_array = builder.build_array_malloc(&i32_type, &i32_three, "heap_array");
878+
879+
// assert_eq!(heap_array.get_type().print_to_string(), &*CString::new("i32*").unwrap());
880+
}

0 commit comments

Comments
 (0)