high level language vm outline
play

High-Level Language VM Outline Introduction Virtualizing - PowerPoint PPT Presentation

High-Level Language VM Outline Introduction Virtualizing conventional ISA Vs. HLL VM ISA Pascal P-code virtual machine OO HLL virtual machines properties, architecture, terms Implementation of HLL virtual machine


  1. High-Level Language VM – Outline • Introduction • Virtualizing conventional ISA Vs. HLL VM ISA • Pascal P-code virtual machine • OO HLL virtual machines – properties, architecture, terms • Implementation of HLL virtual machine – class loading, security, GC, JNI EECS 768 Virtual Machines 1

  2. Introduction • HLL PVM similar to a conventional PVM – V-ISA not designed for a real hardware processor HLL Program HLL Program Compiler front-end Compiler Intermediate Code Portable Code ( Virtual ISA ) Compiler back-end VM loader Object Code ( ISA ) Virt. Mem. Image VM Interpreter/Translator Loader Memory Image Host Instructions HLL VM Traditional EECS 768 Virtual Machines 2

  3. Virtualizing Conventional ISA Vs. High-Level-Language VM ISA • Drawbacks of virtualizing a conventional ISA – not developed for being virtualized! – operating system dependencies – issues with fjxed-size address space, page-size – memory address formation – maintaining precise exceptions – instruction set features – instruction discovery during indirect jumps – self-modifying and self-referencing code EECS 768 Virtual Machines 3

  4. C-ISA Not for Being Virtualized • Conventional ISA – after the fact solution for portability – no built-in ISA support for virtualization • High-level language V-ISA – VM based portability is a primary design goal – generous use of metadata – metadata allows better type-safe code verifjcation, interoperability, and performance EECS 768 Virtual Machines 4

  5. Operating System Dependencies • Conventional ISA – most diffjcult to emulate – exact emulation may be impossible (difgerent OS) • High-level language V-ISA – fjnd a least common denominator set of functions – programs interact with the library API – library interface is higher level than conventional OS interface EECS 768 Virtual Machines 5

  6. Memory Architecture • Conventional ISA – fjxed-size address spaces – specifjc addresses visible to user programs • High-level language V-ISA – abstract memory model of indefjnite size – memory regions allocated based on need – actual memory addresses are never visible – out-of-memory error reported if process requests more that is available of platform EECS 768 Virtual Machines 6

  7. Memory Address Formation • Conventional ISA – unrestricted address computation – diffjcult to protect runtime from un- authorized guest program accesses • High-level-language V-ISA – pointer arithmetic not permitted – memory access only through explicit memory pointers – static/dynamic type checking employed EECS 768 Virtual Machines 7

  8. Precise Exceptions • Conventional ISA – many instructions trap, precise state needed – global fmags enable/disable exceptions • High-level language V-ISA – few instructions trap – test for exception encoded in the program – requirements for precise exceptions are relaxed EECS 768 Virtual Machines 8

  9. Instruction Set Features • Conventional ISA – guest ISA registers > host registers is a problem – ISAs with condition codes are diffjcult to emulate • High-level language V-ISA – stack-oriented – condition codes are avoided EECS 768 Virtual Machines 9

  10. Instruction Discovery • Conventional ISA – indirect jumps to potentially arbitrary locations – variable-length instruction, embedded data, padding • High-level-language V-ISA – restricted indirect jumps – no mixing of code and data – variable-length instructions permitted EECS 768 Virtual Machines 10

  11. Self-Modifying/Referencing Code • Conventional ISA – pose problems for translated code • High-level language V-ISA – self-modifying and self-referencing code not permitted EECS 768 Virtual Machines 11

  12. Pascal P-code • Popularized the Pascal language – simplifjed porting of a Pascal compiler • Introduced several concepts used in HLL VMs – stack-based instruction set – memory architecture is implementation independent – undefjned stack and heap sizes – standard libraries used to interface with the OS • Objective was compiler portability (and application portability) EECS 768 Virtual Machines 12

  13. Pascal P-Code (2) • Protection via trusted interpreter. • Advantages – porting is simplifjed • don't have to develop compilers for all platforms – VM implementation is smaller/simpler than a compiler – VM provides concise defjnition of semantics • Disadvantages – achieving OS independence reduces API functionality to least common denominator – tendency to add platform-specifjc API extensions EECS 768 Virtual Machines 13

  14. Object Oriented HLL Virtual Machines • Used in a networked computing environment • Important features of HLL VMs – security and protection • protect remote resources, local fjles, VM runtime – robustness • OOP model provides component-based programming, strong type-checking, and garbage collection – networking • incremental loading, and small code-size – performance • easy code discovery allows entire method compilation EECS 768 Virtual Machines 14

  15. T erminology • Java Virtual Machine Architecture  CLI – analogous to an ISA • Java Virtual Machine Implementation  CLR – analogous to a computer implementation • Java bytecodes  Microsoft Intermediate Language (MSIL), CIL, IL – the instruction part of the ISA • Java Platform  .NET framework – ISA + Libraries; a higher level ABI EECS 768 Virtual Machines 15

  16. Modern HLL VM • Compiler frontend produces binary fjles – standard format common to all architectures • Binary fjles contain both code and metadata Virtual Machine Implementation Machine Independent Program File Internal Data Loader Structures Metadata Interpreter Code Translator Native Code EECS 768 Virtual Machines 16

  17. Security Remote System • A key aspect of modern network-oriented Vms Other File – “protection sandbox” Public File • Must protect: – remote resources (fjles) Sandbox Boundary Network – local fjles – runtime application • Java's fjrst generation Accessible Local File security method VMM User Process – still the default Other Local File Local System EECS 768 Virtual Machines 17

  18. Protection Sandbox • Remote resources class file class file class file class file – protected by remote Network, File System system • Local resources loaded loaded method loaded method method – protected by security manager loaded method lib. method lib. • VM software method loaded method – protected via native loaded method method local static/dynamic native file method local standard file libraries checking trusted security Emulation Engine loader agent trusted trusted trusted EECS 768 Virtual Machines 18

  19. Java 1.1 Security: Signing • Identifjes source of the input program – can implement difgerent security policies for programs from difgerent vendors Binary hash Class match => Transmit compare signature OK Binary Signed hash encrypt decrypt Class Hash public key private key EECS 768 Virtual Machines 19

  20. Java 2 Security: Stack Walking • Inspect privileges of all methods on stack Method 1 System Full – append method operation X Write A prohibited permissions Method 2 Untrusted only – method 4 Full Method 3 System attempts to write fjle B via Write B Inspect io.method5 Method 4 Untrusted only Stack – call fails since Method 5 method2 does not System Full (in io API) have privileges Check Method System Full principal permissions EECS 768 Virtual Machines 20

  21. Garbage Collection • Issues with traditional malloc/free, new/delete – explicit memory allocation places burden on programmer – dangling pointer, double free errors • Garbage collection – objects with no references are garbage – must be collected to free up memory • for future object allocation • OS limits memory use by a process – eliminates programmer pointer errors EECS 768 Virtual Machines 21

  22. Network Friendliness • Support dynamic class loading on demand – load classes only when needed – spread loading over time • Compact instruction encoding – zero-address stack-based bytecode to reduce code size – contain signifjcant metadata • maybe a slight code size win over RISC fjxed-width ISAs EECS 768 Virtual Machines 22

  23. Java ISA • Formalized in classfjle specifjcation. • Includes instruction defjnitions ( bytecodes ). • Includes data defjnitions and interrelationships ( metadata ). EECS 768 Virtual Machines 23

  24. Java Architected State • Implied registers – program counter, local variable pointer, operand stack pointer, current frame pointer, constant pool base • Stack – arguments, locals, and operands • Heap – objects and arrays – implementation-dependent object representation • Class fjle content – constant pool holds immediates (and other constant information) EECS 768 Virtual Machines 24

  25. Data Items • T ypes are defjned in specifjcation – implementation free to choose representation – reference (pointers) and primitive (byte, int, etc.) types • Range of values that can be held are given – e.g., byte is between -127 and +128 – data is located via • references; as fjelds of objects in heap • ofgsets using constant pool pointer, stack pointer EECS 768 Virtual Machines 25

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend