Merge branch 'zig-has-tag-id' into tag-representation

This commit is contained in:
Folkert 2021-06-24 22:28:48 +02:00
commit 3e5d2351a5
3 changed files with 119 additions and 42 deletions

View file

@ -409,9 +409,11 @@ pub fn listKeepOks(
has_tag_id: HasTagId, has_tag_id: HasTagId,
dec_result: Dec, dec_result: Dec,
) callconv(.C) RocList { ) callconv(.C) RocList {
const good_constructor: u16 = 1;
return listKeepResult( return listKeepResult(
list, list,
RocResult.isOk, good_constructor,
caller, caller,
data, data,
inc_n_data, inc_n_data,
@ -438,9 +440,11 @@ pub fn listKeepErrs(
has_tag_id: HasTagId, has_tag_id: HasTagId,
dec_result: Dec, dec_result: Dec,
) callconv(.C) RocList { ) callconv(.C) RocList {
const good_constructor: u16 = 0;
return listKeepResult( return listKeepResult(
list, list,
RocResult.isErr, good_constructor,
caller, caller,
data, data,
inc_n_data, inc_n_data,
@ -456,7 +460,7 @@ pub fn listKeepErrs(
pub fn listKeepResult( pub fn listKeepResult(
list: RocList, list: RocList,
is_good_constructor: fn (RocResult) bool, good_constructor: u16,
caller: Caller1, caller: Caller1,
data: Opaque, data: Opaque,
inc_n_data: IncN, inc_n_data: IncN,
@ -485,9 +489,15 @@ pub fn listKeepResult(
const before_element = source_ptr + (i * before_width); const before_element = source_ptr + (i * before_width);
caller(data, before_element, temporary); caller(data, before_element, temporary);
const foo = has_tag_id(1, temporary); // a record { matched: bool, data: ?[*]u8 }
if (foo.matched) { // for now, that data pointer is just the input `temporary` pointer
@memcpy(target_ptr + (kept * after_width), foo.data orelse unreachable, after_width); // this will change in the future to only return a pointer to the
// payload of the tag
const answer = has_tag_id(good_constructor, temporary);
if (answer.matched) {
// drop the tag id
const contents = (answer.data orelse unreachable) + @sizeOf(i64);
@memcpy(target_ptr + (kept * after_width), contents, after_width);
kept += 1; kept += 1;
} else { } else {
dec_result(temporary); dec_result(temporary);

View file

@ -1,8 +1,6 @@
/// Helpers for interacting with the zig that generates bitcode /// Helpers for interacting with the zig that generates bitcode
use crate::debug_info_init; use crate::debug_info_init;
use crate::llvm::build::{ use crate::llvm::build::{struct_from_fields, Env, C_CALL_CONV, FAST_CALL_CONV};
struct_from_fields, Env, C_CALL_CONV, FAST_CALL_CONV, TAG_DATA_INDEX, TAG_ID_INDEX,
};
use crate::llvm::convert::basic_type_from_layout; use crate::llvm::convert::basic_type_from_layout;
use crate::llvm::refcounting::{ use crate::llvm::refcounting::{
decrement_refcount_layout, increment_n_refcount_layout, increment_refcount_layout, decrement_refcount_layout, increment_n_refcount_layout, increment_refcount_layout,
@ -136,27 +134,18 @@ fn build_has_tag_id_help<'a, 'ctx, 'env>(
) )
.into_pointer_value(); .into_pointer_value();
let input = env.builder.build_load(argument_cast, "get_value"); let tag_value = env.builder.build_load(argument_cast, "get_value");
let tag_value = let actual_tag_id = {
crate::llvm::build::get_tag_id(env, function_value, &union_layout, input) let tag_id_i64 = crate::llvm::build::extract_tag_discriminant(
.into_int_value(); env,
function_value,
union_layout,
tag_value,
);
let actual_tag_id =
env.builder env.builder
.build_int_cast(tag_value, env.context.i16_type(), "to_i16"); .build_int_cast(tag_id_i64, env.context.i16_type(), "to_i16")
let data_ptr = {
let index = env
.context
.i64_type()
.const_int(TAG_DATA_INDEX as u64, false);
let ptr = unsafe {
env.builder
.build_in_bounds_gep(argument_cast, &[index], "get_tag_id")
};
env.builder.build_bitcast(ptr, i8_ptr_type, "to_opaque")
}; };
let answer = env.builder.build_int_compare( let answer = env.builder.build_int_compare(
@ -166,7 +155,7 @@ fn build_has_tag_id_help<'a, 'ctx, 'env>(
"compare", "compare",
); );
let field_vals = [(0, answer.into()), (1, data_ptr)]; let field_vals = [(0, answer.into()), (1, *tag_value_ptr)];
let output = struct_from_fields(env, output_type, field_vals.iter().copied()); let output = struct_from_fields(env, output_type, field_vals.iter().copied());

View file

@ -1015,19 +1015,10 @@ pub fn build_exp_expr<'a, 'ctx, 'env>(
// Create the struct_type // Create the struct_type
let struct_type = ctx.struct_type(field_types.into_bump_slice(), false); let struct_type = ctx.struct_type(field_types.into_bump_slice(), false);
let mut struct_val = struct_type.const_zero().into();
// Insert field exprs into struct_val // Insert field exprs into struct_val
for (index, field_val) in field_vals.into_iter().enumerate() { let struct_val =
struct_val = builder struct_from_fields(env, struct_type, field_vals.into_iter().enumerate());
.build_insert_value(
struct_val,
field_val,
index as u32,
"insert_multi_tag_field",
)
.unwrap();
}
// How we create tag values // How we create tag values
// //
@ -1055,8 +1046,7 @@ pub fn build_exp_expr<'a, 'ctx, 'env>(
let internal_type = block_of_memory(env.context, layout, env.ptr_bytes); let internal_type = block_of_memory(env.context, layout, env.ptr_bytes);
let data = let data = cast_tag_to_block_of_memory(builder, struct_val, internal_type);
cast_tag_to_block_of_memory(builder, struct_val.into_struct_value(), internal_type);
let wrapper_type = env let wrapper_type = env
.context .context
.struct_type(&[data.get_type(), env.context.i64_type().into()], false); .struct_type(&[data.get_type(), env.context.i64_type().into()], false);
@ -1068,6 +1058,7 @@ pub fn build_exp_expr<'a, 'ctx, 'env>(
(TAG_DATA_INDEX as usize, data), (TAG_DATA_INDEX as usize, data),
]; ];
// cast_tag_to_block_of_memory(builder, struct_val, internal_type)
struct_from_fields(env, wrapper_type, field_vals.iter().copied()).into() struct_from_fields(env, wrapper_type, field_vals.iter().copied()).into()
} }
Tag { Tag {
@ -2473,6 +2464,89 @@ pub fn complex_bitcast<'ctx>(
} }
} }
pub fn extract_tag_discriminant<'a, 'ctx, 'env>(
env: &Env<'a, 'ctx, 'env>,
parent: FunctionValue<'ctx>,
union_layout: UnionLayout<'a>,
cond_value: BasicValueEnum<'ctx>,
) -> IntValue<'ctx> {
let builder = env.builder;
match union_layout {
UnionLayout::NonRecursive(_) => {
let pointer = builder.build_alloca(cond_value.get_type(), "get_type");
builder.build_store(pointer, cond_value);
let tag_id_pointer = builder.build_bitcast(
pointer,
env.context.i64_type().ptr_type(AddressSpace::Generic),
"tag_id_pointer",
);
builder
.build_load(tag_id_pointer.into_pointer_value(), "load_tag_id")
.into_int_value()
}
UnionLayout::Recursive(_) => {
let pointer = cond_value.into_pointer_value();
let tag_id_pointer = builder.build_bitcast(
pointer,
env.context.i64_type().ptr_type(AddressSpace::Generic),
"tag_id_pointer",
);
builder
.build_load(tag_id_pointer.into_pointer_value(), "load_tag_id")
.into_int_value()
}
UnionLayout::NonNullableUnwrapped(_) => env.context.i64_type().const_zero(),
UnionLayout::NullableWrapped { nullable_id, .. } => {
let argument_ptr = cond_value.into_pointer_value();
let is_null = env.builder.build_is_null(argument_ptr, "is_null");
let ctx = env.context;
let then_block = ctx.append_basic_block(parent, "then");
let else_block = ctx.append_basic_block(parent, "else");
let cont_block = ctx.append_basic_block(parent, "cont");
let result = builder.build_alloca(ctx.i64_type(), "result");
env.builder
.build_conditional_branch(is_null, then_block, else_block);
{
env.builder.position_at_end(then_block);
let tag_id = ctx.i64_type().const_int(nullable_id as u64, false);
env.builder.build_store(result, tag_id);
env.builder.build_unconditional_branch(cont_block);
}
{
env.builder.position_at_end(else_block);
let tag_id = extract_tag_discriminant_ptr(env, argument_ptr);
env.builder.build_store(result, tag_id);
env.builder.build_unconditional_branch(cont_block);
}
env.builder.position_at_end(cont_block);
env.builder
.build_load(result, "load_result")
.into_int_value()
}
UnionLayout::NullableUnwrapped { nullable_id, .. } => {
let argument_ptr = cond_value.into_pointer_value();
let is_null = env.builder.build_is_null(argument_ptr, "is_null");
let ctx = env.context;
let then_value = ctx.i64_type().const_int(nullable_id as u64, false);
let else_value = ctx.i64_type().const_int(!nullable_id as u64, false);
env.builder
.build_select(is_null, then_value, else_value, "select_tag_id")
.into_int_value()
}
}
}
fn extract_tag_discriminant_ptr<'a, 'ctx, 'env>( fn extract_tag_discriminant_ptr<'a, 'ctx, 'env>(
env: &Env<'a, 'ctx, 'env>, env: &Env<'a, 'ctx, 'env>,
from_value: PointerValue<'ctx>, from_value: PointerValue<'ctx>,
@ -2563,7 +2637,11 @@ fn build_switch_ir<'a, 'ctx, 'env>(
.build_bitcast(cond_value, env.context.i32_type(), "") .build_bitcast(cond_value, env.context.i32_type(), "")
.into_int_value() .into_int_value()
} }
Layout::Union(variant) => get_tag_id(env, parent, &variant, cond_value).into_int_value(), Layout::Union(variant) => {
cond_layout = Layout::Builtin(Builtin::Int64);
extract_tag_discriminant(env, parent, variant, cond_value)
}
Layout::Builtin(_) => cond_value.into_int_value(), Layout::Builtin(_) => cond_value.into_int_value(),
other => todo!("Build switch value from layout: {:?}", other), other => todo!("Build switch value from layout: {:?}", other),
}; };