Problem 7.4 When given the C code 1 void cond(int a, int *p) 2 { 3 4 if (p && a > 0) *p += a; a MIPS compiler generates the following assembly code for the body of the instruction: 1 # a at $sp+8, p at $sp+12 2 lw $t0, 8($sp) 3 lw $t1, 12($sp) 4 beq $t1, Szero, L3 5 ble $t0, Szero, L3 6 lw $t2, 0($t1) 7 add $t2, $t0, $t2 8 sw $t2, 0($t1) 9 L3: A. Write a goto version in C that performs the same computation and mimics the control flow of the assembly code. B. Explain why the assembly code contains two conditional branches, even though the C code has only one if statement.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
Problem 7.4
When given the C code
1 void cond(int a, int *p)
2 {
3
4
5}
if (p && a > 0)
*p += a;
a MIPS compiler generates the following assembly code for the body of the instruction:
1 # a at $sp+8, p at $sp+12
2 lw $t0, 8($sp)
3 lw $t1, 12($sp)
4 beq $t1, $zero, L3
5 ble $t0, $zero, L3
6 lw $t2, 0($t1)
7 add $t2, $t0, $t2
8 sw $t2, 0($t1)
9 L3:
A. Write a goto version in C that performs the same computation and mimics the control
flow of the assembly code.
B. Explain why the assembly code contains two conditional branches, even though the C
code has only one if statement.
3
Transcribed Image Text:Problem 7.4 When given the C code 1 void cond(int a, int *p) 2 { 3 4 5} if (p && a > 0) *p += a; a MIPS compiler generates the following assembly code for the body of the instruction: 1 # a at $sp+8, p at $sp+12 2 lw $t0, 8($sp) 3 lw $t1, 12($sp) 4 beq $t1, $zero, L3 5 ble $t0, $zero, L3 6 lw $t2, 0($t1) 7 add $t2, $t0, $t2 8 sw $t2, 0($t1) 9 L3: A. Write a goto version in C that performs the same computation and mimics the control flow of the assembly code. B. Explain why the assembly code contains two conditional branches, even though the C code has only one if statement. 3
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps

Blurred answer
Knowledge Booster
ALU instructions
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
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education