The P-machine:

The P-machine:

In this assignment, you will implement a virtual machine (VM) known as the P-machine (PM/0). The P-machine is a stack machine with two memory stores: the “stack,” which is organized as a stack and contains the data to be used by the PM/0 CPU, and the “text”, which contains the instructions for the VM. The PM/0 CPU has four registers to handle the stack and text segments: The registers are named base pointer (BP), stack pointer (SP), program counter (PC) and instruction register (IR). They will be explained in detail later on in this document. The machine also has a register file (RF) with eight (8) registers (0-7).

Don't use plagiarized sources. Get Your Custom Essay on
The P-machine:
Just from $13/Page
Order Essay

The Instruction Set Architecture (ISA) of the PM/0 has 24 instructions and the instruction format is as follows: “OP R L M”

Each instruction contains four components (OP R L M) that are separated by one space.

OP
is the operation code.

R
refers to a register

L indicates the lexicographical level or a register in arithmetic and relational instructions.

M
depending of the operators it indicates:

– A number (instructions: LIT, INC).

– A program address (instructions: JMP, JPC, CAL).

– A data address (instructions: LOD, STO)

– A register in arithmetic and logic instructions.

(e.g. ADD R[1], R[2], R[3] )

The list of instructions for the ISA can be found in Appendix A and B.

P-Machine Cycles

The PM/0 instruction cycle is carried out in two steps. This means that it executes two steps for each instruction. The first step is the Fetch Cycle, where the actual instruction is fetched from the “text” memory store and place in the instruction register. The second step is the Execute Cycle, where the instruction that was fetched is executed using the “stack” memory store and the register file (RF). This does not mean the instruction is stored in the “stack.”

Fetch Cycle:

In the Fetch Cycle, an instruction is fetched from the “text” store and placed in the IR register (IR  code[PC]). Afterwards, the program counter is incremented by 1 to point to the next instruction to be executed (PC PC + 1).

Execute Cycle:

In the Execute Cycle, the instruction that was fetched is executed by the VM. The OP component that is stored in the IR register (IR.OP) indicates the operation to be executed. For example, if IR.OP is the instruction ADD (IR.OP = 12), then R, L, M components of the instruction in IR (IR.R, IR.L, IR.M) are used as registers numbers to execute the instruction ADD (IR.R ( IR.L + IR.M)

PM/0 Initial/Default Values:

Initial values for PM/0 CPU registers:

SP = 0; BP = 1; PC = 0; IR = 0;

Initial “stack” store values are all zero:

stack[1] =0, stack[2] =0, stack[3] =0…..stack[39] = 0.

All registers in the register file have initial value zero (R0 = 0, R1= 0, R3 = 0….R7 = 0.

Constant Values:

MAX_STACK_HEIGHT is 40

MAX_CODE_LENGTH is 200

MAX_LEXI_LEVELS is 3

Assignment Instructions and Guidelines:

1. The VM must be written in C and must run on Eustis.

2. Submit to Webcourses:

a) A readme document indicating how to compile and run the VM.

b) The source code of your PM/0 VM.

c) The output of a test program running in the virtual machine. Please provide a copy of the initial state of the stack and the state of stack after the execution of each instruction. Please see the example in Appendix C.

Appendix A

Instruction Set Architecture (ISA)

There are 13 arithmetic/logical operations that manipulate the data within the register file. These operations will be explain after the 11 basic instructions of PM/0.

ISA:

01 –
LIT
R, 0, M
Loads a constant value (literal) M into Register R

02 –
RTN
0, 0, 0
Returns from a subroutine and restore the caller environment

03 –
LOD
R, L, M
Load value into a selected register from the stack location at

offset M from L lexicographical levels down

04 –
STO
R, L, M
Store value from a selected register in the stack location at

offset M from L lexicographical levels down

05 –
CAL
0, L, M
Call procedure at code index M (generates new

Activation Record and pc  M)

06 –
INC
0, 0, M
Allocate M locals (increment sp by M). First four are

Functional Value, Static Link (SL), Dynamic Link (DL),

and Return Address (RA)

07 –
JMP
0, 0, M
Jump to instruction M

08 –
JPC
R, 0, M
Jump to instruction M if R = 0

09 –
SIO
R, 0, 1
Write a register to the screen

10 –
SIO
R, 0, 2
Read in input from the user and store it in a register

11 –
SIO
0, 0, 3
End of program (program stops running)

Appendix B

ISA Pseudo Code

01 – LIT R, 0, M
R[i]  M;

02 – RTN 0, 0, 0
sp ( bp – 1;

bp  stack[sp + 3];

pc  stack[sp + 4];

03 – LOD R, L, M
R[i]  stack[ base(L, bp) + M];

04 – STO R, L, M
stack[ base(L, bp) + M]  R[i];

05 – CAL 0, L, M
stack[sp + 1]  0;

/* space to return value

stack[sp + 2]  base(L, bp);
/* static link (SL)

stack[sp + 3]  bp;

/* dynamic link (DL)

stack[sp + 4]  pc;

/* return address (RA)

bp  sp + 1;

pc  M;

06 – INC 0, 0, M
sp  sp + M;

07 – JMP 0, 0, M
pc  M;

08 – JPC R, 0, M
if R[i] == 0 then { pc  M; }

09 – SIO R, 0, 1
print(R[i]);

10 – SIO R, 0, 2
read(R[i]);

11 – SIO R, 0, 3
Set Halt flag to one; (End of program)

12 – NEG
(R[i]  -R[i])
13 – ADD
(R[i]  R[j] + R[k])
14 – SUB
(R[i]  R[j] – R[k])

15 – MUL
(R[i]  R[j] * R[k])

16 – DIV
(R[i]  R[j] / R[k])
17 – ODD
(R[i]  R[i] mod 2) or ord(odd(R[i]))
18 – MOD
(R[i]  R[j] mod R[k])
19 – EQL
(R[i]  R[j] = = R[k])
20 – NEQ
(R[i]  R[j] != R[k])
21 – LSS
(R[i]  R[j] < R[k])

22 – LEQ
(R[i]  R[j] <= R[k]) 23 - GTR (R[i]  R[j] > R[k])

24 – GEQ
(R[i]  R[j] >= R[k])

NOTE: The result of a logical operation such as (A > B) is defined as 1 if
the condition was met and 0 otherwise.

NOTE: in all arithmetic or relational instructions, “i” refers to operand R, “j” refers to operand L, and “k” refers to operand M. For example, if we have the instruction ADD 7 8 9 (12 7 8 9), we have to interpret this as:

R[7]  R[8] + R[9]

Another example: if we have instruction LIT 5 0 9 (1 5 0 9), we have to interpret this as:

R[5]  9

Appendix C

Example of Execution

This example shows how to print the stack after the execution of each instruction. The following PL/0 program, once compiled, will be translated into a sequence code for the virtual machine PM/0 as shown below in the

INPUT FILE

.

const n = 8;

int i,h;

procedure sub;

const k = 7;

int j,h;

begin

j:=n;

i:=1;

h:=k;

end;

begin

i:=3; h:=9;

call sub;

end.

INPUT FILE

For every line, there must be 4 integers representing OP, R, L and M.

7 0 0 10

7 0 0 2

6 0 0 6

we recommend using the following structure for your instructions:

1 0 0 8

4 0 0 4

struct {

1 0 0 1

int op; /* opcode

4 0 1 4

int l; /* R

1 0 0 7

int m; /* L

4 0 0 5

int m; /* M

2 0 0 0

}instruction;

6 0 0 6

1 0 0 3

4 0 0 4

1 0 0 9

4 0 0 5

5 0 0 2

11 0 0 3

OUTPUT FILE

1) Print out the program in interpreted assembly language with line numbers:

Line
OP
R L
M

0
jmp
0 0
10

1
jmp
0 0
2

2
inc
0 0
6

3
lit
0 0
8

4
sto
0 0
4

5
lit
0 0
1

6
sto
0 1
4

7
lit
0 0
7

8
sto
0 0
5

9
rtn
0 0
0

10
inc
0 0
6

11
lit
0 0
3

12
sto
0 0
4

13
lit
0 0
9

14
sto
0 0
5

15
cal
0 0
2

16
sio
0 0
3

2) Print out the execution of the program in the virtual machine, showing the stack and registers pc, bp, and sp:

pc
bp
sp
registers

Initial values

0
1
0
0 0 0 0 0 0 0 0

Stack: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

pc
bp
sp
registers

0 jmp 0 0 10

10
0
0
0 0 0 0 0 0 0 0

Stack

10 inc 0 0 6

11
1
6
0 0 0 0 0 0 0 0

Stack: 0 0 0 0 0 0

11 lit
0 0 3
12
1
6
3 0 0 0 0 0 0 0

Stack: 0 0 0 0 0 0

12 sto 0 0 4
13
1
6
3 0 0 0 0 0 0 0

Stack: 0 0 0 0 3 0

13 lit
0 0 9
14
1
6
9 0 0 0 0 0 0 0

Stack: 0 0 0 0 3 0

14 sto 0 0 5
15
1
6
9 0 0 0 0 0 0 0

Stack: 0 0 0 0 3 9

15 cal 0 0 2

2
7
6
9 0 0 0 0 0 0 0

Stack: 0 0 0 0 3 9

2 inc 0 0 6
3
7
12
9 0 0 0 0 0 0 0

Stack: 0 0 0 0 3 9 | 0 1 1 16 0 0

3 lit
0 0 8
4
7
12
8 0 0 0 0 0 0 0

Stack: 0 0 0 0 3 9 | 0 1 1 16 0 0

4 sto 0 0 4

5
7
12
8 0 0 0 0 0 0 0

Stack: 0 0 0 0 3 9 | 0 1 1 16 8 0

5 lit
0 0 1
6
7
12
1 0 0 0 0 0 0 0

Stack: 0 0 0 0 3 9 | 0 1 1 16 8 0

6 sto 0 1 4
7
7
12
1 0 0 0 0 0 0 0

Stack: 0 0 0 0 1 9

| 0 1 1 16 8 0

7 lit
0 0 7
8
7
12
7 0 0 0 0 0 0 0

Stack: 0 0 0 0 1 9 | 0 1 1 16 8 0

8 sto 0 0 5
9
7
12
7 0 0 0 0 0 0 0

Stack: 0 0 0 0 1 9 | 0 1 1 16 8 7

9 opr 0 0 0
16 1 6
7 0 0 0 0 0 0 0

Stack: 0 0 0 0 1 9

16 sio 0 0 3
17
1
6
7 0 0 0 0 0 0 0

Stack: 0 0 0 0 1 9

NOTE: It is necessary to separate each Activation Record with a bar “|”.

Appendix D

Helpful Tips

This function will be helpful to find a variable in a different Activation Record some L levels down:

/**********************************************/

/*
Find base L levels down
*/

/*

*/

/**********************************************/
int base(l, base) // l stand for L in the instruction format

{
int b1; //find base L levels down
b1 = base;
while (l > 0)
{
b1 = stack[b1 + 1];
l- -;
}
return b1;

}

For example in the instruction:

STO R, L, M – you can do stack[base(ir.L, bp) + ir[IR.M] = RF[IR.R] to store the content of register into the stack L levels down from the current AR. RF stand for register file.

What Will You Get?

We provide professional writing services to help you score straight A’s by submitting custom written assignments that mirror your guidelines.

Premium Quality

Get result-oriented writing and never worry about grades anymore. We follow the highest quality standards to make sure that you get perfect assignments.

Experienced Writers

Our writers have experience in dealing with papers of every educational level. You can surely rely on the expertise of our qualified professionals.

On-Time Delivery

Your deadline is our threshold for success and we take it very seriously. We make sure you receive your papers before your predefined time.

24/7 Customer Support

Someone from our customer support team is always here to respond to your questions. So, hit us up if you have got any ambiguity or concern.

Complete Confidentiality

Sit back and relax while we help you out with writing your papers. We have an ultimate policy for keeping your personal and order-related details a secret.

Authentic Sources

We assure you that your document will be thoroughly checked for plagiarism and grammatical errors as we use highly authentic and licit sources.

Moneyback Guarantee

Still reluctant about placing an order? Our 100% Moneyback Guarantee backs you up on rare occasions where you aren’t satisfied with the writing.

Order Tracking

You don’t have to wait for an update for hours; you can track the progress of your order any time you want. We share the status after each step.

image

Areas of Expertise

Although you can leverage our expertise for any writing task, we have a knack for creating flawless papers for the following document types.

Areas of Expertise

Although you can leverage our expertise for any writing task, we have a knack for creating flawless papers for the following document types.

image

Trusted Partner of 9650+ Students for Writing

From brainstorming your paper's outline to perfecting its grammar, we perform every step carefully to make your paper worthy of A grade.

Preferred Writer

Hire your preferred writer anytime. Simply specify if you want your preferred expert to write your paper and we’ll make that happen.

Grammar Check Report

Get an elaborate and authentic grammar check report with your work to have the grammar goodness sealed in your document.

One Page Summary

You can purchase this feature if you want our writers to sum up your paper in the form of a concise and well-articulated summary.

Plagiarism Report

You don’t have to worry about plagiarism anymore. Get a plagiarism report to certify the uniqueness of your work.

Free Features $66FREE

  • Most Qualified Writer $10FREE
  • Plagiarism Scan Report $10FREE
  • Unlimited Revisions $08FREE
  • Paper Formatting $05FREE
  • Cover Page $05FREE
  • Referencing & Bibliography $10FREE
  • Dedicated User Area $08FREE
  • 24/7 Order Tracking $05FREE
  • Periodic Email Alerts $05FREE
image

Our Services

Join us for the best experience while seeking writing assistance in your college life. A good grade is all you need to boost up your academic excellence and we are all about it.

  • On-time Delivery
  • 24/7 Order Tracking
  • Access to Authentic Sources
Academic Writing

We create perfect papers according to the guidelines.

Professional Editing

We seamlessly edit out errors from your papers.

Thorough Proofreading

We thoroughly read your final draft to identify errors.

image

Delegate Your Challenging Writing Tasks to Experienced Professionals

Work with ultimate peace of mind because we ensure that your academic work is our responsibility and your grades are a top concern for us!

Check Out Our Sample Work

Dedication. Quality. Commitment. Punctuality

Categories
All samples
Essay (any type)
Essay (any type)
The Value of a Nursing Degree
Undergrad. (yrs 3-4)
Nursing
2
View this sample

It May Not Be Much, but It’s Honest Work!

Here is what we have achieved so far. These numbers are evidence that we go the extra mile to make your college journey successful.

0+

Happy Clients

0+

Words Written This Week

0+

Ongoing Orders

0%

Customer Satisfaction Rate
image

Process as Fine as Brewed Coffee

We have the most intuitive and minimalistic process so that you can easily place an order. Just follow a few steps to unlock success.

See How We Helped 9000+ Students Achieve Success

image

We Analyze Your Problem and Offer Customized Writing

We understand your guidelines first before delivering any writing service. You can discuss your writing needs and we will have them evaluated by our dedicated team.

  • Clear elicitation of your requirements.
  • Customized writing as per your needs.

We Mirror Your Guidelines to Deliver Quality Services

We write your papers in a standardized way. We complete your work in such a way that it turns out to be a perfect description of your guidelines.

  • Proactive analysis of your writing.
  • Active communication to understand requirements.
image
image

We Handle Your Writing Tasks to Ensure Excellent Grades

We promise you excellent grades and academic excellence that you always longed for. Our writers stay in touch with you via email.

  • Thorough research and analysis for every order.
  • Deliverance of reliable writing service to improve your grades.
Place an Order Start Chat Now
image

Order your essay today and save 30% with the discount code Happy