From 77f239c97ce5d496998c3b8a07d84d27b5d5984f Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Wed, 25 Nov 2015 08:40:45 -0800 Subject: Partially working change to do proper stack alignment rather than doing a lame alignment check when calling a C compile dfunction. 68K core seems okay, but Z80 is busted. --- gen.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gen.h') diff --git a/gen.h b/gen.h index 5087b57..16dcab8 100644 --- a/gen.h +++ b/gen.h @@ -15,6 +15,7 @@ typedef code_word * code_ptr; typedef struct { code_ptr cur; code_ptr last; + uint32_t stack_off; } code_info; void check_alloc_code(code_info *code, uint32_t inst_size); @@ -26,7 +27,8 @@ void jmp_r(code_info *code, uint8_t dst); //call a function and put the arguments in the appropriate place according to the host ABI void call_args(code_info *code, code_ptr fun, uint32_t num_args, ...); //like the above, but follows other aspects of the ABI like stack alignment -void call_args_abi(code_info *code, code_ptr fun, uint32_t num_args, ...); +//void call_args_abi(code_info *code, code_ptr fun, uint32_t num_args, ...); +#define call_args_abi call_args void save_callee_save_regs(code_info *code); void restore_callee_save_regs(code_info *code); -- cgit v1.2.3