mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 15:51:12 +00:00
Add refcount decrementing to big strings
This commit is contained in:
parent
9e9552186e
commit
f532a758d9
3 changed files with 110 additions and 4 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,6 @@
|
||||||
target
|
target
|
||||||
.direnv
|
.direnv
|
||||||
*.rs.bk
|
*.rs.bk
|
||||||
|
|
||||||
|
#valgrind
|
||||||
|
vgcore.*
|
|
@ -154,6 +154,10 @@ fn decrement_refcount_builtin<'a, 'ctx, 'env>(
|
||||||
|
|
||||||
todo!();
|
todo!();
|
||||||
}
|
}
|
||||||
|
Str => {
|
||||||
|
let wrapper_struct = value.into_struct_value();
|
||||||
|
build_dec_str(env, layout_ids, layout, wrapper_struct);
|
||||||
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -234,6 +238,9 @@ fn increment_refcount_builtin<'a, 'ctx, 'env>(
|
||||||
|
|
||||||
todo!();
|
todo!();
|
||||||
}
|
}
|
||||||
|
Str => {
|
||||||
|
todo!();
|
||||||
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -265,7 +272,7 @@ pub fn build_inc_list<'a, 'ctx, 'env>(
|
||||||
env.builder.position_at_end(block);
|
env.builder.position_at_end(block);
|
||||||
let call = env
|
let call = env
|
||||||
.builder
|
.builder
|
||||||
.build_call(function, &[original_wrapper.into()], "decrement_union");
|
.build_call(function, &[original_wrapper.into()], "increment_list");
|
||||||
|
|
||||||
call.set_call_convention(FAST_CALL_CONV);
|
call.set_call_convention(FAST_CALL_CONV);
|
||||||
}
|
}
|
||||||
|
@ -361,7 +368,7 @@ pub fn build_dec_list<'a, 'ctx, 'env>(
|
||||||
env.builder.position_at_end(block);
|
env.builder.position_at_end(block);
|
||||||
let call = env
|
let call = env
|
||||||
.builder
|
.builder
|
||||||
.build_call(function, &[original_wrapper.into()], "decrement_union");
|
.build_call(function, &[original_wrapper.into()], "decrement_list");
|
||||||
call.set_call_convention(FAST_CALL_CONV);
|
call.set_call_convention(FAST_CALL_CONV);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -430,6 +437,100 @@ fn build_dec_list_help<'a, 'ctx, 'env>(
|
||||||
builder.build_return(None);
|
builder.build_return(None);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn build_dec_str<'a, 'ctx, 'env>(
|
||||||
|
env: &Env<'a, 'ctx, 'env>,
|
||||||
|
layout_ids: &mut LayoutIds<'a>,
|
||||||
|
layout: &Layout<'a>,
|
||||||
|
original_wrapper: StructValue<'ctx>,
|
||||||
|
) {
|
||||||
|
let block = env.builder.get_insert_block().expect("to be in a function");
|
||||||
|
|
||||||
|
let symbol = Symbol::DEC;
|
||||||
|
let fn_name = layout_ids
|
||||||
|
.get(symbol, &layout)
|
||||||
|
.to_symbol_string(symbol, &env.interns);
|
||||||
|
|
||||||
|
let function = match env.module.get_function(fn_name.as_str()) {
|
||||||
|
Some(function_value) => function_value,
|
||||||
|
None => {
|
||||||
|
let function_value = build_header(env, &layout, fn_name);
|
||||||
|
|
||||||
|
build_dec_str_help(env, layout_ids, layout, function_value);
|
||||||
|
|
||||||
|
function_value
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
env.builder.position_at_end(block);
|
||||||
|
let call = env
|
||||||
|
.builder
|
||||||
|
.build_call(function, &[original_wrapper.into()], "decrement_str");
|
||||||
|
call.set_call_convention(FAST_CALL_CONV);
|
||||||
|
}
|
||||||
|
|
||||||
|
fn build_dec_str_help<'a, 'ctx, 'env>(
|
||||||
|
env: &Env<'a, 'ctx, 'env>,
|
||||||
|
_layout_ids: &mut LayoutIds<'a>,
|
||||||
|
layout: &Layout<'a>,
|
||||||
|
fn_val: FunctionValue<'ctx>,
|
||||||
|
) {
|
||||||
|
let builder = env.builder;
|
||||||
|
let ctx = env.context;
|
||||||
|
|
||||||
|
// Add a basic block for the entry point
|
||||||
|
let entry = ctx.append_basic_block(fn_val, "entry");
|
||||||
|
|
||||||
|
builder.position_at_end(entry);
|
||||||
|
|
||||||
|
let mut scope = Scope::default();
|
||||||
|
|
||||||
|
// Add args to scope
|
||||||
|
let arg_symbol = Symbol::ARG_1;
|
||||||
|
let arg_val = fn_val.get_param_iter().next().unwrap();
|
||||||
|
|
||||||
|
set_name(arg_val, arg_symbol.ident_string(&env.interns));
|
||||||
|
|
||||||
|
let alloca = create_entry_block_alloca(
|
||||||
|
env,
|
||||||
|
fn_val,
|
||||||
|
arg_val.get_type(),
|
||||||
|
arg_symbol.ident_string(&env.interns),
|
||||||
|
);
|
||||||
|
|
||||||
|
builder.build_store(alloca, arg_val);
|
||||||
|
|
||||||
|
scope.insert(arg_symbol, (layout.clone(), alloca));
|
||||||
|
|
||||||
|
let parent = fn_val;
|
||||||
|
|
||||||
|
let str_wrapper = arg_val.into_struct_value();
|
||||||
|
let len = builder
|
||||||
|
.build_extract_value(str_wrapper, Builtin::WRAPPER_LEN, "read_str_ptr")
|
||||||
|
.unwrap()
|
||||||
|
.into_int_value();
|
||||||
|
|
||||||
|
let bitmask = ctx.i64_type().const_int(isize::MIN as u64, false);
|
||||||
|
let is_small = builder.build_int_compare(
|
||||||
|
IntPredicate::NE,
|
||||||
|
ctx.i64_type().const_zero(),
|
||||||
|
builder.build_and(len, bitmask, "is_small"),
|
||||||
|
"is_small_comparison",
|
||||||
|
);
|
||||||
|
|
||||||
|
// the block we'll always jump to when we're done
|
||||||
|
let cont_block = ctx.append_basic_block(parent, "after_decrement_block");
|
||||||
|
let decrement_block = ctx.append_basic_block(parent, "decrement_block");
|
||||||
|
|
||||||
|
builder.build_conditional_branch(is_small, cont_block, decrement_block);
|
||||||
|
builder.position_at_end(decrement_block);
|
||||||
|
|
||||||
|
let refcount_ptr = list_get_refcount_ptr(env, layout, str_wrapper);
|
||||||
|
decrement_refcount_help(env, parent, refcount_ptr, cont_block);
|
||||||
|
|
||||||
|
// this function returns void
|
||||||
|
builder.build_return(None);
|
||||||
|
}
|
||||||
|
|
||||||
fn increment_refcount_ptr<'a, 'ctx, 'env>(
|
fn increment_refcount_ptr<'a, 'ctx, 'env>(
|
||||||
env: &Env<'a, 'ctx, 'env>,
|
env: &Env<'a, 'ctx, 'env>,
|
||||||
_parent: FunctionValue<'ctx>,
|
_parent: FunctionValue<'ctx>,
|
||||||
|
@ -991,6 +1092,7 @@ fn get_refcount_ptr_help<'a, 'ctx, 'env>(
|
||||||
let value_bytes = layout.stack_size(env.ptr_bytes) as u64;
|
let value_bytes = layout.stack_size(env.ptr_bytes) as u64;
|
||||||
let offset = match layout {
|
let offset = match layout {
|
||||||
Layout::Builtin(Builtin::List(_, _)) => env.ptr_bytes as u64,
|
Layout::Builtin(Builtin::List(_, _)) => env.ptr_bytes as u64,
|
||||||
|
Layout::Builtin(Builtin::Str) => env.ptr_bytes as u64,
|
||||||
_ => (env.ptr_bytes as u64).max(value_bytes),
|
_ => (env.ptr_bytes as u64).max(value_bytes),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
app Hello provides [ main ] imports []
|
app Hello provides [ main ] imports []
|
||||||
|
|
||||||
greeting =
|
greeting =
|
||||||
hi = "Hello, World!!!!!!!!!!!!!"
|
hi = "Hello"
|
||||||
|
name = "World"
|
||||||
|
|
||||||
hi
|
"\(hi), \(name)!!!!!!!!!!!!!"
|
||||||
|
|
||||||
main = greeting
|
main = greeting
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue