aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2023-07-22 08:48:13 +0100
committergingerBill <bill@gingerbill.org>2023-07-22 08:48:13 +0100
commitb09ea17f0ecbfc30d9f41bd450fd2010820db28c (patch)
treed17452d66064610ec8f6f44697d9bb19f5d99ca2 /src
parent99ebfc337e7dc3b103dcc77ce6609e4a1c44073f (diff)
Support multiple return values for non-odin calling conventions
Diffstat (limited to 'src')
-rw-r--r--src/tilde.hpp1
-rw-r--r--src/tilde_proc.cpp64
-rw-r--r--src/tilde_stmt.cpp14
3 files changed, 61 insertions, 18 deletions
diff --git a/src/tilde.hpp b/src/tilde.hpp
index 633eb63db..d548de78e 100644
--- a/src/tilde.hpp
+++ b/src/tilde.hpp
@@ -282,6 +282,7 @@ gb_internal void cg_emit_store(cgProcedure *p, cgValue dst, cgValue const &sr
gb_internal cgAddr cg_add_local(cgProcedure *p, Type *type, Entity *e, bool zero_init);
gb_internal cgValue cg_address_from_load_or_generate_local(cgProcedure *p, cgValue value);
+gb_internal cgValue cg_copy_value_to_ptr(cgProcedure *p, cgValue value, Type *original_type, isize min_alignment);
gb_internal cgValue cg_build_call_expr(cgProcedure *p, Ast *expr);
diff --git a/src/tilde_proc.cpp b/src/tilde_proc.cpp
index ec37617fd..8f7b1972e 100644
--- a/src/tilde_proc.cpp
+++ b/src/tilde_proc.cpp
@@ -379,7 +379,6 @@ gb_internal cgValue cg_emit_call(cgProcedure * p, cgValue value, Slice<cgValue>
// TODO(bill): Support more than Win64 ABI
bool is_odin_like_cc = is_calling_convention_odin(pt->calling_convention);
- GB_ASSERT_MSG(is_odin_like_cc, "TODO(bill): non-odin like procedures");
bool return_is_indirect = false;
@@ -394,16 +393,19 @@ gb_internal cgValue cg_emit_call(cgProcedure * p, cgValue value, Slice<cgValue>
isize param_index = 0;
if (pt->result_count != 0) {
- Type *last_result = result_entities[result_entities.count-1]->type;
-
- TB_DebugType *dbg = cg_debug_type(p->module, last_result);
+ Type *return_type = nullptr;
+ if (is_odin_like_cc) {
+ return_type = result_entities[result_entities.count-1]->type;
+ } else {
+ return_type = pt->results;
+ }
+ TB_DebugType *dbg = cg_debug_type(p->module, return_type);
TB_PassingRule rule = tb_get_passing_rule_from_dbg(m, dbg, true);
if (rule == TB_PASSING_INDIRECT) {
return_is_indirect = true;
- TB_CharUnits size = cast(TB_CharUnits)type_size_of(last_result);
- TB_CharUnits align = cast(TB_CharUnits)gb_max(type_align_of(last_result), 16);
+ TB_CharUnits size = cast(TB_CharUnits)type_size_of(return_type);
+ TB_CharUnits align = cast(TB_CharUnits)gb_max(type_align_of(return_type), 16);
TB_Node *local = tb_inst_local(p->func, size, align);
- // TODO(bill): Should this need to be zeroed any way?
tb_inst_memzero(p->func, local, tb_inst_uint(p->func, TB_TYPE_INT, size), align, false);
params[param_index++] = local;
}
@@ -424,8 +426,13 @@ gb_internal cgValue cg_emit_call(cgProcedure * p, cgValue value, Slice<cgValue>
break;
case TB_PASSING_INDIRECT:
{
+ cgValue arg_ptr = {};
// indirect
- cgValue arg_ptr = cg_address_from_load_or_generate_local(p, arg);
+ if (is_odin_like_cc) {
+ arg_ptr = cg_address_from_load_or_generate_local(p, arg);
+ } else {
+ arg_ptr = cg_copy_value_to_ptr(p, arg, param_type, 16);
+ }
GB_ASSERT(arg_ptr.kind == cgValue_Value);
param = arg_ptr.node;
}
@@ -438,15 +445,18 @@ gb_internal cgValue cg_emit_call(cgProcedure * p, cgValue value, Slice<cgValue>
}
// Split returns
- isize split_offset = param_index;
- for (isize i = 0; i < pt->result_count-1; i++) {
- Type *result = result_entities[i]->type;
- TB_CharUnits size = cast(TB_CharUnits)type_size_of(result);
- TB_CharUnits align = cast(TB_CharUnits)gb_max(type_align_of(result), 16);
- TB_Node *local = tb_inst_local(p->func, size, align);
- // TODO(bill): Should this need to be zeroed any way?
- tb_inst_memzero(p->func, local, tb_inst_uint(p->func, TB_TYPE_INT, size), align, false);
- params[param_index++] = local;
+ isize split_offset = -1;
+ if (is_odin_like_cc) {
+ split_offset = param_index;
+ for (isize i = 0; i < pt->result_count-1; i++) {
+ Type *result = result_entities[i]->type;
+ TB_CharUnits size = cast(TB_CharUnits)type_size_of(result);
+ TB_CharUnits align = cast(TB_CharUnits)gb_max(type_align_of(result), 16);
+ TB_Node *local = tb_inst_local(p->func, size, align);
+ // TODO(bill): Should this need to be zeroed any way?
+ tb_inst_memzero(p->func, local, tb_inst_uint(p->func, TB_TYPE_INT, size), align, false);
+ params[param_index++] = local;
+ }
}
if (pt->calling_convention == ProcCC_Odin) {
@@ -483,6 +493,7 @@ gb_internal cgValue cg_emit_call(cgProcedure * p, cgValue value, Slice<cgValue>
multi->values = slice_make<cgValue>(permanent_allocator(), pt->result_count);
if (is_odin_like_cc) {
+ GB_ASSERT(split_offset >= 0);
for (isize i = 0; i < pt->result_count-1; i++) {
multi->values[i] = cg_lvalue_addr(params[split_offset+i], result_entities[i]->type);
}
@@ -506,7 +517,24 @@ gb_internal cgValue cg_emit_call(cgProcedure * p, cgValue value, Slice<cgValue>
}
}
} else {
- GB_PANIC("TODO non-odin like multiple return stuff");
+ TB_Node *the_tuple = {};
+ if (return_is_indirect) {
+ the_tuple = params[0];
+ } else {
+ GB_ASSERT(multi_output.count == 1);
+ TB_Node *res = multi_output.single;
+
+ // struct-like returns passed in registers
+ TB_CharUnits size = cast(TB_CharUnits)type_size_of(pt->results);
+ TB_CharUnits align = cast(TB_CharUnits)type_align_of(pt->results);
+ the_tuple = tb_inst_local(p->func, size, align);
+ tb_inst_store(p->func, res->dt, the_tuple, res, align, false);
+ }
+ for (isize i = 0; i < pt->result_count; i++) {
+ i64 offset = type_offset_of(pt->results, i, nullptr);
+ TB_Node *ptr = tb_inst_member_access(p->func, the_tuple, offset);
+ multi->values[i] = cg_lvalue_addr(ptr, result_entities[i]->type);
+ }
}
return cg_value_multi(multi, pt->results);
diff --git a/src/tilde_stmt.cpp b/src/tilde_stmt.cpp
index 2cdedbacf..f0203e724 100644
--- a/src/tilde_stmt.cpp
+++ b/src/tilde_stmt.cpp
@@ -736,6 +736,20 @@ gb_internal cgAddr cg_add_local(cgProcedure *p, Type *type, Entity *e, bool zero
return addr;
}
+gb_internal cgValue cg_copy_value_to_ptr(cgProcedure *p, cgValue value, Type *original_type, isize min_alignment) {
+ TB_CharUnits size = cast(TB_CharUnits)type_size_of(original_type);
+ TB_CharUnits align = cast(TB_CharUnits)gb_max(type_align_of(original_type), min_alignment);
+ TB_Node *copy = tb_inst_local(p->func, size, align);
+ if (value.kind == cgValue_Value) {
+ tb_inst_store(p->func, cg_data_type(original_type), copy, value.node, align, false);
+ } else {
+ GB_ASSERT(value.kind == cgValue_Addr);
+ tb_inst_memcpy(p->func, copy, value.node, tb_inst_uint(p->func, TB_TYPE_INT, size), align, false);
+ }
+
+ return cg_value(copy, alloc_type_pointer(original_type));
+}
+
gb_internal cgValue cg_address_from_load_or_generate_local(cgProcedure *p, cgValue value) {
switch (value.kind) {
case cgValue_Value: