Question: Translate function your_function into LEGv8 assembly instructions. Since external_function is not under your control, you must obey LEGv8 function calling conventions regarding registers and stack

Translate function your_function into LEGv8 assembly instructions. Since external_function is not under your control, you must obey LEGv8 function calling conventions regarding registers and stack usage. The function declaration for the external function is:

int64_t external_function(int64_t x, int64_t y);

The code for your function is as follows:

int64_t your_function(int64_t a, int64_t b, int64_t c, int64_t d) {

int64_t tmp1 = external_function(a,b);

int64_t tmp2 = external_function(c,d);

return tmp1 + tmp2;

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!