mirror of
https://github.com/odin-lang/Odin.git
synced 2026-08-23 21:41:34 +00:00
riscv64: use a Slice for the coerce offsets
This commit is contained in:
@@ -22,8 +22,7 @@ struct lbArgType {
|
||||
// it drops padding, and the dense type it produces puts the surviving members at different offsets
|
||||
// than they really have, eg `struct #min_field_align(16){i8, f32}` flattens to `{i8, float}`, moving
|
||||
// the float from offset 16 to offset 4. These give the real byte offset of each `cast_type` element.
|
||||
i64 *coerce_offsets;
|
||||
isize coerce_offset_count;
|
||||
Slice<i64> coerce_offsets;
|
||||
};
|
||||
|
||||
|
||||
@@ -31,14 +30,13 @@ gb_internal i64 lb_sizeof(LLVMTypeRef type);
|
||||
gb_internal i64 lb_alignof(LLVMTypeRef type);
|
||||
|
||||
gb_internal lbArgType lb_arg_type_direct(LLVMTypeRef type, LLVMTypeRef cast_type, LLVMTypeRef pad_type, LLVMAttributeRef attr) {
|
||||
return lbArgType{lbArg_Direct, type, cast_type, pad_type, attr, nullptr, 0, false};
|
||||
return lbArgType{lbArg_Direct, type, cast_type, pad_type, attr, {}, false};
|
||||
}
|
||||
// Same as above, except coercion reads each element of `cast_type` from its real offset in `type`
|
||||
// instead of reinterpreting the bits from offset zero. See `coerce_offsets`.
|
||||
gb_internal lbArgType lb_arg_type_direct_fields(LLVMTypeRef type, LLVMTypeRef cast_type, i64 *offsets, isize count) {
|
||||
gb_internal lbArgType lb_arg_type_direct_fields(LLVMTypeRef type, LLVMTypeRef cast_type, Slice<i64> offsets) {
|
||||
lbArgType arg = lb_arg_type_direct(type, cast_type, nullptr, nullptr);
|
||||
arg.coerce_offsets = offsets;
|
||||
arg.coerce_offset_count = count;
|
||||
return arg;
|
||||
}
|
||||
gb_internal lbArgType lb_arg_type_direct(LLVMTypeRef type) {
|
||||
@@ -46,7 +44,7 @@ gb_internal lbArgType lb_arg_type_direct(LLVMTypeRef type) {
|
||||
}
|
||||
|
||||
gb_internal lbArgType lb_arg_type_indirect(LLVMTypeRef type, LLVMAttributeRef attr) {
|
||||
return lbArgType{lbArg_Indirect, type, nullptr, nullptr, attr, nullptr, 0, false};
|
||||
return lbArgType{lbArg_Indirect, type, nullptr, nullptr, attr, {}, false};
|
||||
}
|
||||
|
||||
gb_internal lbArgType lb_arg_type_indirect_byval(LLVMContextRef c, LLVMTypeRef type, Type *source_type = nullptr) {
|
||||
@@ -65,7 +63,7 @@ gb_internal lbArgType lb_arg_type_indirect_byval(LLVMContextRef c, LLVMTypeRef t
|
||||
}
|
||||
|
||||
gb_internal lbArgType lb_arg_type_ignore(LLVMTypeRef type) {
|
||||
return lbArgType{lbArg_Ignore, type, nullptr, nullptr, nullptr, nullptr, 0, false};
|
||||
return lbArgType{lbArg_Ignore, type, nullptr, nullptr, nullptr, {}, false};
|
||||
}
|
||||
|
||||
struct lbFunctionType {
|
||||
@@ -2498,8 +2496,7 @@ namespace lbAbiRiscv64 {
|
||||
LLVMTypeRef fp_type = type;
|
||||
LLVMTypeKind fp_kind = kind;
|
||||
i64 fp_size = size;
|
||||
i64 *fp_offsets = nullptr;
|
||||
isize fp_offset_count = 0;
|
||||
Slice<i64> fp_offsets = {};
|
||||
if (kind == LLVMStructTypeKind) {
|
||||
Array<LLVMTypeRef> fields = array_make<LLVMTypeRef>(temporary_allocator(), 0, LLVMCountStructElementTypes(type));
|
||||
flatten(m, &fields, type, false);
|
||||
@@ -2507,11 +2504,7 @@ namespace lbAbiRiscv64 {
|
||||
auto offsets = array_make<i64>(temporary_allocator(), 0, fields.count);
|
||||
flatten_offsets(m, &offsets, type, 0);
|
||||
if (flatten_moved_a_member(fields, offsets)) {
|
||||
fp_offsets = gb_alloc_array(permanent_allocator(), i64, offsets.count);
|
||||
for_array(i, offsets) {
|
||||
fp_offsets[i] = offsets[i];
|
||||
}
|
||||
fp_offset_count = offsets.count;
|
||||
fp_offsets = slice_clone_from_array(permanent_allocator(), offsets);
|
||||
}
|
||||
|
||||
if (fields.count == 1) {
|
||||
@@ -2531,8 +2524,8 @@ namespace lbAbiRiscv64 {
|
||||
if (fp_type != orig_type) {
|
||||
// A struct that flattened to a single float has to be coerced to that float;
|
||||
// handing back the original sends an over-aligned one to integer registers.
|
||||
if (fp_offset_count > 0) {
|
||||
return lb_arg_type_direct_fields(orig_type, fp_type, fp_offsets, fp_offset_count);
|
||||
if (fp_offsets.count > 0) {
|
||||
return lb_arg_type_direct_fields(orig_type, fp_type, fp_offsets);
|
||||
}
|
||||
return lb_arg_type_direct(orig_type, fp_type, nullptr, nullptr);
|
||||
}
|
||||
@@ -2549,8 +2542,8 @@ namespace lbAbiRiscv64 {
|
||||
|
||||
if (is_float(ty1) && is_float(ty2) && ty1s <= flen && ty2s <= flen && *fprs_left >= 2) {
|
||||
*fprs_left -= 2;
|
||||
if (fp_offset_count > 0) {
|
||||
return lb_arg_type_direct_fields(orig_type, fp_type, fp_offsets, fp_offset_count);
|
||||
if (fp_offsets.count > 0) {
|
||||
return lb_arg_type_direct_fields(orig_type, fp_type, fp_offsets);
|
||||
}
|
||||
return lb_arg_type_direct(orig_type, fp_type, nullptr, nullptr);
|
||||
}
|
||||
@@ -2558,8 +2551,8 @@ namespace lbAbiRiscv64 {
|
||||
if (is_float(ty1) && is_int_member(ty2) && ty1s <= flen && ty2s <= xlen && *fprs_left >= 1 && *gprs_left >= 1) {
|
||||
*fprs_left -= 1;
|
||||
*gprs_left -= 1;
|
||||
if (fp_offset_count > 0) {
|
||||
return lb_arg_type_direct_fields(orig_type, fp_type, fp_offsets, fp_offset_count);
|
||||
if (fp_offsets.count > 0) {
|
||||
return lb_arg_type_direct_fields(orig_type, fp_type, fp_offsets);
|
||||
}
|
||||
return lb_arg_type_direct(orig_type, fp_type, nullptr, nullptr);
|
||||
}
|
||||
@@ -2567,8 +2560,8 @@ namespace lbAbiRiscv64 {
|
||||
if (is_int_member(ty1) && is_float(ty2) && ty1s <= xlen && ty2s <= flen && *gprs_left >= 1 && *fprs_left >= 1) {
|
||||
*fprs_left -= 1;
|
||||
*gprs_left -= 1;
|
||||
if (fp_offset_count > 0) {
|
||||
return lb_arg_type_direct_fields(orig_type, fp_type, fp_offsets, fp_offset_count);
|
||||
if (fp_offsets.count > 0) {
|
||||
return lb_arg_type_direct_fields(orig_type, fp_type, fp_offsets);
|
||||
}
|
||||
return lb_arg_type_direct(orig_type, fp_type, nullptr, nullptr);
|
||||
}
|
||||
|
||||
@@ -684,7 +684,7 @@ gb_internal void lb_begin_procedure_body(lbProcedure *p) {
|
||||
if (e->token.string.len != 0 && !is_blank_ident(e->token.string)) {
|
||||
LLVMTypeRef param_type = lb_type(p->module, e->type);
|
||||
LLVMValueRef original_value = LLVMGetParam(p->value, param_offset+llvm_param_index);
|
||||
LLVMValueRef value = arg_type->coerce_offset_count > 0
|
||||
LLVMValueRef value = arg_type->coerce_offsets.count > 0
|
||||
? lb_coerce_fields_store(p, original_value, e->type, arg_type)
|
||||
: OdinLLVMBuildTransmute(p, original_value, param_type);
|
||||
|
||||
@@ -939,14 +939,14 @@ gb_internal LLVMValueRef lb_coerce_fields_load(lbProcedure *p, lbValue x, lbArgT
|
||||
lbValue base = lb_address_from_load_or_generate_local(p, x);
|
||||
|
||||
if (LLVMGetTypeKind(arg->cast_type) != LLVMStructTypeKind) {
|
||||
GB_ASSERT(arg->coerce_offset_count == 1);
|
||||
GB_ASSERT(arg->coerce_offsets.count == 1);
|
||||
LLVMValueRef index = LLVMConstInt(i64t, cast(unsigned long long)arg->coerce_offsets[0], false);
|
||||
LLVMValueRef ptr = LLVMBuildInBoundsGEP2(p->builder, i8, base.value, &index, 1, "");
|
||||
return LLVMBuildLoad2(p->builder, arg->cast_type, ptr, "");
|
||||
}
|
||||
|
||||
unsigned count = LLVMCountStructElementTypes(arg->cast_type);
|
||||
GB_ASSERT(cast(isize)count == arg->coerce_offset_count);
|
||||
GB_ASSERT(cast(isize)count == arg->coerce_offsets.count);
|
||||
LLVMValueRef result = LLVMGetUndef(arg->cast_type);
|
||||
for (unsigned i = 0; i < count; i += 1) {
|
||||
LLVMTypeRef elem_type = LLVMStructGetTypeAtIndex(arg->cast_type, i);
|
||||
@@ -971,7 +971,7 @@ gb_internal LLVMValueRef lb_coerce_fields_store(lbProcedure *p, LLVMValueRef coe
|
||||
if (is_struct) {
|
||||
count = LLVMCountStructElementTypes(arg->cast_type);
|
||||
}
|
||||
GB_ASSERT(cast(isize)count == arg->coerce_offset_count);
|
||||
GB_ASSERT(cast(isize)count == arg->coerce_offsets.count);
|
||||
for (unsigned i = 0; i < count; i += 1) {
|
||||
LLVMValueRef elem = is_struct ? LLVMBuildExtractValue(p->builder, coerced, i, "") : coerced;
|
||||
LLVMValueRef index = LLVMConstInt(i64t, cast(unsigned long long)arg->coerce_offsets[i], false);
|
||||
@@ -1255,7 +1255,7 @@ gb_internal lbValue lb_emit_call(lbProcedure *p, lbValue value, Array<lbValue> c
|
||||
if (!abi_type) {
|
||||
abi_type = arg->type;
|
||||
}
|
||||
if (arg->coerce_offset_count > 0) {
|
||||
if (arg->coerce_offsets.count > 0) {
|
||||
x.value = lb_coerce_fields_load(p, x, arg);
|
||||
array_add(&processed_args, x);
|
||||
} else if (xt == abi_type) {
|
||||
@@ -1328,7 +1328,7 @@ gb_internal lbValue lb_emit_call(lbProcedure *p, lbValue value, Array<lbValue> c
|
||||
result = lb_emit_load(p, return_ptr);
|
||||
} else if (rt != nullptr) {
|
||||
result = lb_emit_call_internal(p, value, {}, processed_args, rt, context_ptr, inlining, tailing);
|
||||
if (ft->ret.coerce_offset_count > 0) {
|
||||
if (ft->ret.coerce_offsets.count > 0) {
|
||||
result.value = lb_coerce_fields_store(p, result.value, rt, &ft->ret);
|
||||
} else {
|
||||
if (ft->ret.cast_type) {
|
||||
|
||||
Reference in New Issue
Block a user