Question: Using the Assembly Code below, fill in the blanks of the C code: int main () { char loop; _____ count = _____; for (loop
Using the Assembly Code below, fill in the blanks of the C code:
int main () { char loop; _____ count = _____; for (loop = _____; _______; loop = ______) count = ______; } main: .LFB0: pushq %rbp movq %rsp, %rbp movq $10, -8(%rbp) movb $25, -9(%rbp) jmp .L2 .L3: salq $2, -8(%rbp) movzbl -9(%rbp), %eax movl %eax, %edx addl $1, %edx movb %dl, -9(%rbp) movb %al, -9(%rbp) .L2: cmpb $0, -9(%rbp) js .L3 movl $0, %eax popq %rbp ret
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
