Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write the following subroutine in x86 assembly: int f(int v1, int v2, int v3) {int x = v1 + v2; return (x + v3) *

image text in transcribed

Write the following subroutine in x86 assembly: int f(int v1, int v2, int v3) {int x = v1 + v2; return (x + v3) * (x - v3);} Recall that: Subroutine arguments are passed on the stack, and can be accessed within the body of the subroutine starting at address EBP+8. At the start of each subroutine: i. Save EBP on the stack ii. Copy the current value of the stack pointer (ESP) to EBP iii. Create space within the stack for each local variable by subtracting the appropriate value from ESP. For example, if your function uses four integer local variables, each of which contains four bytes, subtract 16 from ESP. Local variables can then be accessed starting at the address EBP-4. iv. Save any registers the function uses other than EAX, ECX, and EDX. A subroutine's return value is typically stored in EAX

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Driven Web Sites

Authors: Joline Morrison, Mike Morrison

2nd Edition

? 061906448X, 978-0619064488

More Books

Students also viewed these Databases questions

Question

How do Excel Pivot Tables handle data from non OLAP databases?

Answered: 1 week ago