aboutsummaryrefslogtreecommitdiff
path: root/src/ir.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-03-01 17:54:49 +0000
committergingerBill <bill@gingerbill.org>2021-03-01 17:54:49 +0000
commit667aa3671e585fb348a2e05ddf0992c637b40ec4 (patch)
treea5b8102f5dea54caaee41c4dd240fef8ffc1c131 /src/ir.cpp
parentb428e9ee142659de62064a0c6829b998b9446375 (diff)
Fix Addressing for SOA on store; Add intrinsics.type_struct_field_count(T)
Diffstat (limited to 'src/ir.cpp')
-rw-r--r--src/ir.cpp29
1 files changed, 23 insertions, 6 deletions
diff --git a/src/ir.cpp b/src/ir.cpp
index 4841402f5..c54e91f17 100644
--- a/src/ir.cpp
+++ b/src/ir.cpp
@@ -3932,22 +3932,39 @@ void ir_addr_store(irProcedure *proc, irAddr addr, irValue *value) {
Type *t = type_deref(ir_type(addr.addr));
t = base_type(t);
GB_ASSERT(t->kind == Type_Struct && t->Struct.soa_kind != StructSoa_None);
- value = ir_emit_conv(proc, value, t->Struct.soa_elem);
+ Type *elem_type = t->Struct.soa_elem;
+ value = ir_emit_conv(proc, value, elem_type);
+ elem_type = base_type(elem_type);
irValue *index = addr.soa.index;
if (index->kind != irValue_Constant || t->Struct.soa_kind != StructSoa_Fixed) {
Type *t = base_type(type_deref(ir_type(addr.addr)));
GB_ASSERT(t->kind == Type_Struct && t->Struct.soa_kind != StructSoa_None);
- i64 count = t->Struct.soa_count;
- irValue *len = ir_const_int(count);
+ irValue *len = ir_soa_struct_len(proc, addr.addr);
ir_emit_bounds_check(proc, ast_token(addr.soa.index_expr), index, len);
}
- for_array(i, t->Struct.fields) {
+ isize field_count = 0;
+
+ switch (elem_type->kind) {
+ case Type_Struct:
+ field_count = elem_type->Struct.fields.count;
+ break;
+ case Type_Array:
+ field_count = elem_type->Array.count;
+ break;
+ }
+ for (isize i = 0; i < field_count; i++) {
irValue *dst = ir_emit_struct_ep(proc, addr.addr, cast(i32)i);
- dst = ir_emit_array_ep(proc, dst, index);
irValue *src = ir_emit_struct_ev(proc, value, cast(i32)i);
- ir_emit_store(proc, dst, src);
+ if (t->Struct.soa_kind == StructSoa_Fixed) {
+ dst = ir_emit_array_ep(proc, dst, index);
+ ir_emit_store(proc, dst, src);
+ } else {
+ irValue *field = ir_emit_load(proc, dst);
+ dst = ir_emit_ptr_offset(proc, field, index);
+ ir_emit_store(proc, dst, src);
+ }
}
return;
}