Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

2 Lexical Scoping This problem uses the following procedure. This procedure uses static (lexi- cal) scoping. procedure main) int a; procedure proc1(int i): int b;

image text in transcribed

image text in transcribed

2 Lexical Scoping This problem uses the following procedure. This procedure uses static (lexi- cal) scoping. procedure main) int a; procedure proc1(int i): int b; b-a 1: procedure recursion(int k): print b; b-b 1; if (b> 1) recursion(k *b); else: end recursion b-bi; recursion(1); end proc1 proc1(4); print a; end main (a) What does this procedure print? (Give the output of procedure main().) (b) Rewrite the procedure main() where each variable (argument vari ables, declared variables, procedure names) is renamed by their (level offset) pairs (c) How does procedure procl find variable a in instruction b a + 1;? Show the RISC instructions corresponding to the high-level instruc- tion b = a 1; in this procedure. You should use the sarne ILOC instruction format as used in class (d) Show the stack frames at the beginning of procedure procl. Label each frame with its procedures name, and make sure you include the 2 Lexical Scoping This problem uses the following procedure. This procedure uses static (lexi- cal) scoping. procedure main) int a; procedure proc1(int i): int b; b-a 1: procedure recursion(int k): print b; b-b 1; if (b> 1) recursion(k *b); else: end recursion b-bi; recursion(1); end proc1 proc1(4); print a; end main (a) What does this procedure print? (Give the output of procedure main().) (b) Rewrite the procedure main() where each variable (argument vari ables, declared variables, procedure names) is renamed by their (level offset) pairs (c) How does procedure procl find variable a in instruction b a + 1;? Show the RISC instructions corresponding to the high-level instruc- tion b = a 1; in this procedure. You should use the sarne ILOC instruction format as used in class (d) Show the stack frames at the beginning of procedure procl. Label each frame with its procedures name, and make sure you include the

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 And Transaction Processing

Authors: Philip M. Lewis, Arthur Bernstein, Michael Kifer

1st Edition

0201708728, 978-0201708721

More Books

Students also viewed these Databases questions

Question

Recognize the four core purposes service environments fulfill.

Answered: 1 week ago

Question

Know the three main dimensions of the service environment.

Answered: 1 week ago