rearranged the stack for the call operation by pushing a dummy receiver.

the rearrangement is done to make aa plain function call look the same as a message send
This commit is contained in:
2022-01-22 15:40:38 +00:00
parent a7a69d9a11
commit 7ad9b2d499
5 changed files with 178 additions and 19 deletions

View File

@ -312,6 +312,13 @@ struct hcl_cframe_t
hcl_ooi_t nrets;
} call;
/* COP_EMIT_SEND_MESSAGE */
struct
{
hcl_ooi_t nargs;
hcl_ooi_t nrets;
} sendmsg;
/* COP_EMIT_SET */
struct
{