1. A C procedure that swaps two locations in memory is shown below: void swap (int v[ ], int k) ( } int temp; temp v[k]; v[k] = v[k+1]; temp; v [k+1] MIPS code for this procedure (leaf) is given by: swap: sll $t1, $al, 2 # $t1 = k * 4 add $t1, $a0, $t1 # $t1 = v+(k*4) # (address of v[k]) # $t0 (temp) = v[k] # $t2 = w $t0, 0($t1) lw $t2, 4($t1) sw $t2, 0($t1) sw $t0, 4($t1) jr $ra v[k+1] # v[k] $t2 (v[k+1]) # v[k+1] = $t0 (temp) # return to calling routine a) Use QtSpim MIPS simulator to run the code for v [ k] =20 and v [k+1] =10 b) Report a print screen of the code and result.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 8SA
icon
Related questions
Question

Please send me answer within 10 min!Q! I will rate you good for sure!! Please answer all the questions with explanation with screen shot if needed.

1. A C procedure that swaps two locations in memory is shown below:
void swap (int v[ ], int k)
{
}
int temp;
temp v[k];
v[k] = v[k+1];
v [k+1]
temp;
=
=
MIPS code for this procedure (leaf) is given by:
swap: s11 $t1, $al, 2 # $t1 = k * 4
add $t1, $a0, $t1 # $t1 = v+(k*4)
lw $t0, 0($t1)
lw $t2, 4($t1)
sw $t2, 0($t1)
sw $t0, 4($t1)
jr $ra
# (address of v[k])
# $t0 (temp) = v[k]
# $t2 = v[k+1]
# v[k] =
$t2 (v[k+1])
$t0 (temp)
# v[k+1]
# return to calling routine
a) Use QtSpim MIPS simulator to run the code for v [k] =20 and v[k+1] =10
b) Report a print screen of the code and result.
Transcribed Image Text:1. A C procedure that swaps two locations in memory is shown below: void swap (int v[ ], int k) { } int temp; temp v[k]; v[k] = v[k+1]; v [k+1] temp; = = MIPS code for this procedure (leaf) is given by: swap: s11 $t1, $al, 2 # $t1 = k * 4 add $t1, $a0, $t1 # $t1 = v+(k*4) lw $t0, 0($t1) lw $t2, 4($t1) sw $t2, 0($t1) sw $t0, 4($t1) jr $ra # (address of v[k]) # $t0 (temp) = v[k] # $t2 = v[k+1] # v[k] = $t2 (v[k+1]) $t0 (temp) # v[k+1] # return to calling routine a) Use QtSpim MIPS simulator to run the code for v [k] =20 and v[k+1] =10 b) Report a print screen of the code and result.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Stack
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning