Virtual Machine Where we are at: Part I: Stack Arithmetic. Motivation. Compilation models. direct compilation:... 2-tier compilation:

Similar documents
Virtual Machine. Part I: Stack Arithmetic. Building a Modern Computer From First Principles.

Motivation. Compiler. Our ultimate goal: Hack code. Jack code (example) Translate high-level programs into executable code. return; } } return

Virtual Machine. Part II: Program Control. Building a Modern Computer From First Principles.

Compiler II: Code Generation Human Thought

Chapter 8: Virtual Machine II: Program Control

Assembler. Building a Modern Computer From First Principles.

Introduction: Hello, World Below

Assembler Human Thought

Introduction: From Nand to Tetris

Virtual Machine (Part II)

Chapter 11: Compiler II: Code Generation

Compiler I: Syntax Analysis

Machine (Assembly) Language

Chapter 10: Compiler I: Syntax Analysis

Machine (Assembly) Language Human Thought

Compiler I: Sytnax Analysis

Course overview. Introduction to Computer Yung-Yu Chuang. with slides by Nisan & Schocken (

Course overview. Introduction to Computer Yung-Yu Chuang. with slides by Nisan & Schocken (

Virtual Machine (Part II)

Course overview. Introduction to Computer Yung-Yu Chuang. with slides by Nisan & Schocken (

IWKS 3300: NAND to Tetris Spring John K. Bennett. Assembler

Chapter 6: Assembler

7. The Virtual Machine

EP1200 Introduktion till datorsystemteknik Tentamen tisdagen den 3 juni 2014, till 18.00

IWKS 2300/5300 Fall John K. Bennett. Machine Language

Chapter 9: High Level Language

Boolean Arithmetic. From Nand to Tetris Building a Modern Computer from First Principles. Chapter 2

Computer Architecture

7. The Virtual Machine II: Flow Control 1

Chapter 6: The Assembler The Assembler Hack Assembly-to-Binary Translation Specification

Problem with Scanning an Infix Expression

Comp 204: Computer Systems and Their Implementation. Lecture 22: Code Generation and Optimisation

Compiling Techniques

Compiler Construction

ECS 142 Project: Code generation hints

//converts a string to a non-negative number string2int(string s){

CSC 2400: Computer Systems. Using the Stack for Function Calls

Implementing Procedure Calls

Compiler Construction

Problem with Scanning an Infix Expression

An Overview to Compiler Design. 2008/2/14 \course\cpeg421-08s\topic-1a.ppt 1

Compiler Construction

Stack ADT. ! push(x) puts the element x on top of the stack! pop removes the topmost element from the stack.

Compilers and computer architecture: A realistic compiler to MIPS

Stacks. stacks of dishes or trays in a cafeteria. Last In First Out discipline (LIFO)

Compiler Construction

Compiler Construction D7011E

Code Generation. The Main Idea of Today s Lecture. We can emit stack-machine-style code for expressions via recursion. Lecture Outline.

We can emit stack-machine-style code for expressions via recursion

CSE Lecture In Class Example Handout

Chapter 5. A Closer Look at Instruction Set Architectures. Chapter 5 Objectives. 5.1 Introduction. 5.2 Instruction Formats

Arithmetic Logic Unit (ALU)

Chapter 5. A Closer Look at Instruction Set Architectures

SOURCE LANGUAGE DESCRIPTION

Introduction to Programming in C Department of Computer Science and Engineering. Lecture No. #34. Function with pointer Argument

CS1622. Semantic Analysis. The Compiler So Far. Lecture 15 Semantic Analysis. How to build symbol tables How to use them to find

SaM. 1. Introduction. 2. Stack Machine

10. The Compiler II: Code Generation 1

Compiler Construction

Computer Architecture

What is SaM? SaM is a simple stack machine designed to introduce you to compilers in a few lectures SaM I: written by Dr. Keshav Pingali around 2000

COMP 202 Recursion. CONTENTS: Recursion. COMP Recursion 1

Implementing Functions at the Machine Level

Fun facts about recursion

Digital Forensics Lecture 3 - Reverse Engineering

Exercise 7 Bytecode Verification self-study exercise sheet

Operational Semantics. One-Slide Summary. Lecture Outline

Stack. 4. In Stack all Operations such as Insertion and Deletion are permitted at only one end. Size of the Stack 6. Maximum Value of Stack Top 5

Boolean Arithmetic. Building a Modern Computer From First Principles.

Calling Conventions. Hakim Weatherspoon CS 3410, Spring 2012 Computer Science Cornell University. See P&H 2.8 and 2.12

SPIM Procedure Calls

Outline. Object Oriented Programming. Course goals. Staff. Course resources. Assignments. Course organization Introduction Java overview Autumn 2003

Module 27 Switch-case statements and Run-time storage management

G Programming Languages - Fall 2012

CS61C : Machine Structures

1/30/2018. Conventions Provide Implicit Information. ECE 220: Computer Systems & Programming. Arithmetic with Trees is Unambiguous

Code Generation. Lecture 30

COMP-202. Recursion. COMP Recursion, 2011 Jörg Kienzle and others

Subprograms, Subroutines, and Functions

Compiler Construction

Chapter 2A Instructions: Language of the Computer

Code Generation. Lecture 12

Lecture #31: Code Generation

CIT Week13 Lecture

What is a Compiler? Compiler Construction SMD163. Why Translation is Needed: Know your Target: Lecture 8: Introduction to code generation

Compiler Construction

CmpSci 187: Programming with Data Structures Spring 2015

What the CPU Sees Basic Flow Control Conditional Flow Control Structured Flow Control Functions and Scope. C Flow Control.

CSCI 136 Data Structures & Advanced Programming. Fall 2018 Instructors Bill Lenhart & Bill Jannen

CS 112 Introduction to Computing II. Wayne Snyder Computer Science Department Boston University

5/17/2012. Recap from Last Time. CSE 2021: Computer Organization. The RISC Philosophy. Levels of Programming. Stored Program Computers

Recap from Last Time. CSE 2021: Computer Organization. Levels of Programming. The RISC Philosophy 5/19/2011

Instructor: Randy H. Katz hap://inst.eecs.berkeley.edu/~cs61c/fa13. Fall Lecture #7. Warehouse Scale Computer

CPS311 Lecture: Procedures Last revised 9/9/13. Objectives:

Associate Professor Dr. Raed Ibraheem Hamed

CMPSCI 187: Programming With Data Structures. Lecture 12: Implementing Stacks With Linked Lists 5 October 2011

Imperative Paradigm. Syntax. Role of Programming Languages. Expressions. Expressions. Role of Programming Languages. Symbols.

Lecture 7: Procedures and Program Execution Preview

CS1 Lecture 22 Mar. 6, 2019

CIS Fall Data Structures Midterm exam 10/16/2012

Transcription:

Where we are at: Virtual Machine Part I: Stack Arithmetic Human Thought Abstract design Chapters 9, 12 H.L. Language & Operating Sys. Compiler Chapters 10-11 Virtual Machine Software hierarchy Translator Chapters 7-8 Assembly Language Assembler Chapter 6 Building a Modern Computer From First Principles www.nand2tetris.org Machine Language Computer Architecture Chapters 4-5 Hardware hierarchy Hardware Platform Gate Logic Chapters 1-3 Chips & Logic Gates Electrical Engineering Physics Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 1 Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 2 Motivation Compilation models Jack code (example) class Main { static int x; function void main() { // Inputs and multiplies two numbers var int a, b, x; let a = Keyboard.readInt( Enter a number ); let b = Keyboard.readInt( Enter a number ); let x = mult(a,b); return; // Multiplies two numbers. function int mult(int x, int y) { var int result, j; let result = 0; let j = y; while ~(j = 0) { let result = result + x; let j = j 1; return result; Our ultimate goal: Translate high-level programs into executable code. Compiler Hack code 1110111111001000 0000000000010001 1110101010001000 1111110000010000 0000000000000000 1111010011010000 0000000000010010 1110001100000001 1111110000010000 0000000000010001 1110111111001000 0000000000010001 1110101010001000 1111110000010000 0000000000000000 1111010011010000 0000000000010010 1110001100000001 1111110000010000 0000000000010001... platform 1 direct compilation: 1 2 n platform 2 ruires n m translators Two-tier compilation:. platform m platform 1 2-tier compilation: platform 2 1 2 n intermediate ruires n + m translators platform m First stage: depends only on the details of the source Second stage: depends only on the details of the target. Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 3 Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 4

The big picture Focus of this lecture (yellow): Some Jack The intermediate code: The interface between the 2 compilation stages Some Jack Book chapters and Course projects: implementation over CISC Some imp. over RISC Intermediate code emulator Jack imp. over the Hack platform Must be sufficiently general to support many <high-level, -> pairs Can be modeled as the of an abstract virtual () Can be implemented in several different ways. implementation over CISC Some imp. over RISC emulator Jack imp. over the Hack platform 9, 10, 11, 12 7, 8 (this and the next lecture) CISC RISC written in a high-level Hack CISC RISC written in a high-level Hack 1, 2, 3, 4, 5, 6 CISC RISC other digital, each uipped with its own implementation Any computer Hack computer CISC RISC other digital, each uipped with its implementation Any computer Hack computer Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 5 Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 6 Virtual s A virtual () is an emulation of a particular (real or hypothetical) computer system. System virtual (full virtualization s): a complete stitute for the targeted real and a level of functionality ruired for the execution of a complete operating system, e.g., VirtualBox. Virtual s A virtual () is an emulation of a particular (real or hypothetical) computer system. System virtual (full virtualization s): a complete stitute for the targeted real and a level of functionality ruired for the execution of a complete operating system, e.g., VirtualBox. Process virtual : designed to execute a single computer program by providing an abstracted and platform-independent program execution environment, e.g., Java virtual (J). Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 7 Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 8

The model and Perspective: From here till the end of the next lecture we describe the model used in the Hack-Jack platform Other models (like Java s J/JRE and.net s IL/CLR) are similar in spirit, but differ in scope and details. The model and Several different ways to think about the notion of a virtual : Abstract software engineering view: the is an interesting abstraction that makes sense in its own right (a hypothetical closer to high-level, but could still be built easily. Sometimes, no need to worry about how to implement it in.) Practical software engineering view: the code layer enables managed code (e.g. enhanced security) Pragmatic writing view: a architecture makes writing a much easier (as we ll see later in the course) Opportunistic empire builder view: a architecture allows writing high-level code once and have it run on many target with little or no modification. Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 9 Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 10 Hack virtual Goal: Specify and implement a model and : Arithmetic / Boolean commands Program flow commands label (declaration) neg goto (label) if goto (label) gt lt and or not Chapter 7 Chapter 8 Function calling commands function (declaration) Memory access commands call (a function) pop x (pop into x, which is a variable) return (from a function) push y (y being a variable or a constant) The stack The stack: A classical LIFO data structure Elegant and powerful Several / software implementation options. Our game plan: (a) describe the abstraction (3 types of instructions) (b) propose how to implement it over the Hack platform. Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 11 Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 12

The stack The stack: A classical LIFO data structure Elegant and powerful Several / software implementation options. Several flavors: next empty/available, upward/downward push(x) stack[top]=x; top++; What is the stack good for? Stack can be used for evaluating arithmetic expressions Expression: 5 * (6+2) 12/4 Infix Prefix Postfix pop() top ; return stack[top]; peek(), empty() Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 13 Stack is also good for implementing function call structures, such as routines, local variables and recursive calls. Will discuss it later. Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 14 Our model is stack-oriented All operations are done on a stack Data is saved in several separate memory segments All the memory segments behave the same One of the memory segments m is called static, and we will use it (as an arbitrary example) in the following examples: Data types Our model features a single 16-bit data type that can be used as: an integer value (16-bit 2 s complement: 32768,..., 32767) a Boolean value (0 and 1, standing for true and false) a pointer (memory ress) Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 15 Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 16

Memory access operations Evaluation of arithmetic expressions push static 2 code (example) // z=(2 x) (y+5) push 2 push x push y push 5 pop z (suppose that x refers to static 0, y refers to static 1, z refers to static 2) (before) (after) Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 17 Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 18 Evaluation of Boolean expressions code (example) // (x<7) or (y=8) push x push 7 lt push y push 8 or (suppose that x refers to static 0, y refers to static 1) Arithmetic and Boolean commands in the (wrap-up) (actually true and false are stored as 0 and 1, respectively) Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 19 Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 20

The s Memory segments A program is designed to provide an interim abstraction of a program written in some high-level. Modern OO s normally feature the following variable kinds: Class level: Static variables (class-level variables) Private variables (aka object variables / fields / properties ) Method level: Local variables Argument variables When translated into the, The static, private, local and argument variables are mapped by the on the four memory segments static, this, local, argument In ition, there are four itional memory segments, whose role will be presented later: that, constant, pointer, temp. Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 21 Memory segments and memory access commands The abstraction includes 8 separate memory segments named: static, this, local, argument, that, constant, pointer, temp As far as programming commands go, all memory segments look and behave the same To access a particular segment entry, use the following generic syntax: Memory access commands: pop memorysegment index push memorysegment index Where memorysegment is static, this, local, argument, that, constant, pointer, or temp And index is a non-negative integer (In all our code examples thus far, memorysegment was static) The different roles of the eight memory segments will become relevant when we ll talk about the At the abstraction level, all memory segments are treated the same way. Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 22 programming programs are normally written by s, not by humans However, s are written by humans... In order to write or optimize a, it helps to first understand the spirit of the s target the So, we ll now see an example of a program programming The example includes three new commands: function functionsymbol // function declaration label labelsymbol // label declaration if goto labelsymbol // pop x // if x=true, jump to execute the // command after labelsymbol // else proceed to execute the next // command in the program For example, to effect if (x > n) goto loop, we can use the following commands: push x push n gt if goto loop // Note that x, n, and the truth value // were removed from the stack. Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 23 Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 24

High-level code function mult (x,y) { int result, j; result = 0; j = y; while ~(j = 0) { result = result + x; j = j 1; return result; Pseudo code... loop: if (j=0) goto end result=result+x j=j 1 goto loop end:... code (first approx.) function mult(x,y) push 0 pop result push y pop j label loop push j push 0 if goto end push result push x pop result push j push 1 pop j goto loop label end push result return code function mult 2 push constant 0 pop local 0 push argument 1 pop local 1 label loop push local 1 push constant 0 if goto end push local 0 push argument 0 pop local 0 push local 1 push constant 1 pop local 1 goto loop label end push local 0 return High-level code function mult (x,y) { int result, j; result = 0; j = y; while ~(j = 0) { result = result + x; j = j 1; return result; code (first approx.) function mult(x,y) push 0 pop result push y pop j label loop push j push 0 if goto end push result push x pop result push j push 1 pop j goto loop label end push result return code function mult 2 push constant 0 pop local 0 push argument 1 pop local 1 label loop push local 1 push constant 0 if goto end push local 0 push argument 0 pop local 0 push local 1 push constant 1 pop local 1 goto loop label end push local 0 return programming: multiple functions Compilation: A Jack application is a set of 1 or more class files (just like.java files). When we apply the Jack to these files, the creates a set of 1 or more.vm files (just like.class files). Each method in the Jack app is translated into a function written in the Thus, a file consists of one or more functions. programming: multiple functions Execution: At any given point of time, only one function is executing (the current function ), while 0 or more functions are waiting for it to terminate (the functions up the calling hierarchy ) For example, a main function starts running; at some point we may reach the command call factorial, at which point the factorial function starts running; then we may reach the command call mult, at which point the mult function starts running, while both main and factorial are waiting for it to terminate The stack: a global data structure, used to save and restore the resources (memory segments) of all the functions up the calling hierarchy (e.g. main and factorial). The tip of this stack if the working stack of the current function (e.g. mult). Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 27 Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 28

programming: multiple functions (files) programming: multiple functions (memory) Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 29 Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 30 Handling array int foo() { // some, not Jack int bar[10];... bar[2] = 19; Handling array Alternative push local 0 pop pointer 1 push constant 19 pop that 2 Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 31 Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 32

Handling objects Handling objects Class Ball { // some, not Jack int x, y, radius, color; int SetR(int r) {radius = r; Ball b; b.setr(10); Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 33 Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 34 Lecture plan Summary: Hack has the following instructions and eight memory segments. Arithmetic / Boolean commands Program flow commands label (declaration) neg goto (label) if goto (label) gt lt and or not Chapter 7 Chapter 8 Function calling commands function (declaration) Memory access commands call (a function) pop x (pop into x, which is a variable) return (from a function) push y (y being a variable or a constant) Implementation of on Hack Each instruction must be translated into a set of Hack assembly code segments need to be realized on the host memory Method: (a) specify the abstraction (stack, memory segments, commands) (b) how to implement the abstraction over the Hack platform. Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 35 Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 36

Implementation implementation options: Software implementation: emulator (part of the course software suite) Emulator-based (e.g. emulate the model using Java) Translator-based (e. g. translate programs into the Hack ) Hardware-based (realize the model using dedicated memory and registers) Two well-known translator-based implementations: J: Javac translates Java programs into bytecode; The J translates the bytecode into the of the host computer CLR: C# translates C# programs into IL code; The CLR translated the IL code into the of the host computer. Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 37 Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 38 implementation on the Hack platform (memory) implementation on the Hack platform (memory) Host RAM The stack: a global data structure, used to save and restore the resources of all the functions up the calling hierarchy. The tip of this stack if the working stack of the current function static, constant, temp, pointer: Global memory segments, all functions see the same four segments local,argument,this,that: these segments are local at the function level; each function sees its own, private copy of each one of these four segments The challenge: represent all these logical constructs on the same single physical ress space -- the host RAM. TEMP General purpose SP LCL ARG THIS THAT 0 1 2 3 4 5 12 13 14 15 16 255 256 2047 Host RAM Statics Stack Basic idea: the mapping of the stack and the global segments on the RAM is easy (fixed); the mapping of the function-level segments is dynamic, using pointers The stack: mapped on RAM[256... 2047]; The stack pointer is kept in RAM ress SP static: mapped on RAM[16... 255]; each segment reference static i appearing in a file named f is compiled to the assembly symbol f.i (recall that the assembler further maps such symbols to the RAM, from ress 16 onward) local,argument,this,that: these method-level segments are mapped somewhere from ress 2048 onward, in an area called heap. The base resses of these segments are kept in RAM resses LCL, ARG, THIS, and THAT. Access to the i-th entry of any of these segments is implemented by accessing RAM[segmentBase + i] 2048 Heap constant: a truly a virtual segment: access to constant i is implemented by supplying the constant i. pointer: discussed later. Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 39 Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 40

implementation on the Hack platform (memory) TEMP General purpose SP LCL ARG THIS THAT 0 1 2 3 4 5 12 13 14 15 16 255 256 2047 2048 Host RAM Statics Stack Heap Practice exercises Now that we know how the memory segments are mapped on the host RAM, we can write Hack commands that realize the various commands. for example, let us write the Hack code that implements the following commands: push constant 1 pop static 7 (suppose it appears in a file named f) push constant 5 pop local 2 Tips: 1. The implementation of any one of these commands ruires several Hack assembly commands involving pointer arithmetic (using commands like A=M) 2. If you run out of registers (you have only two...), you may use R13, R14, and R15. Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 41 implementation on the Hack platform (translator) push constant 1 @1 D=A @SP A=M M=D @SP M=M+1 @SP AM=M 1 D+M A=A 1 M=M+D pop local 2 @LCL D=M @2 D=D+A @R15 M=D @SP AM=M 1 D=M @R15 A=M M=D Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 42 Perspective Some Some Jack The big picture In this lecture we began the process of building a implementation over CISC imp. over RISC emulator Translator Modern architecture: CISC RISC Front-end (translates from a high-level to a ) Back-end (translates from the to the of some target platform) written in a high-level Hack J Java CLR C# Jack 7, 8 9 Brief history of virtual s: Java C# Jack 10, 11 1970 s: p-code 1990 s: Java s J 2000 s: Microsoft.NET JRE.NET base class library Mini OS 12 (Book chapters and Course projects) A full blown implementation typically also includes a common software library (can be viewed as a mini, portable OS). We will build such a mini OS later in the course. Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 43 Elements of Computing Systems, Nisan & Schocken, MIT Press, www.nand2tetris.org, Chapter 7: Virutal Machine, Part I slide 44