Just-In-Time Compilation Techniques

Total Page:16

File Type:pdf, Size:1020Kb

Just-In-Time Compilation Techniques Just-in-time Compilation Techniques Timo Lilja January 25, 2010 Timo Lilja () Just-in-time Compilation Techniques January 25, 2010 1 / 19 Course arrangements Course code: T-106.5800 Giving one presentation gives you 3 credits, two gives 5 credits Assignment: presentation and 4-page extended abstract Meetings on Mondays, 16-18 at T4 Mandatory attendance: 90% presence required Timo Lilja () Just-in-time Compilation Techniques January 25, 2010 2 / 19 Introduction Contents 1 Introduction 2 Conclusion 3 Topics Timo Lilja () Just-in-time Compilation Techniques January 25, 2010 3 / 19 Introduction Just-in-time compilation A technique that compiles virtual machine byte code into native code during run-time Run-time compilation can give several benets Better information of the specic CPU (i.e., SSE2 instructions) Can use proling information to produce better compilation Better global optimizations even with dynamically linked libraries Can rearrange memory for better cache utilization System start-up can be slower than purely interpreted environments Usually only hot-spot code is JIT-compiled while the rest is only interpreted JIT compilation can be done step-by-step gradually improving hot-spot code Timo Lilja () Just-in-time Compilation Techniques January 25, 2010 4 / 19 Introduction History Earliest JIT compilation in McCarthy's 1960s Lisp systems Thompson's method to compile regular expressions to native code in 1960s LC2: the interpreted code was stored during execution works only for code that is executed Mixed code: program is a mixture of interpreted and native code Throw-away compiling: the end result is not stored permanently Timo Lilja () Just-in-time Compilation Techniques January 25, 2010 5 / 19 Introduction Fortran One of the rst hot-spot JIT compiler by Hansen in 1974 Each block of code maintained a frequency counter with which it was decided wheter to JIT compile the block The more frequent the execution of the block, the more ecient and time consuming optimizations were used Not always faster than statically compiled counterparts Timo Lilja () Just-in-time Compilation Techniques January 25, 2010 6 / 19 Introduction Smalltalk Presented by Schiman and Deutsch in 1984 Smalltalk virtual machine was slow, thus need for optimization JIT was one of the chosen optimization techniques Procedures were compiled lazily when they were entered Native code was thrown away and regenerated if the memory was run out Timo Lilja () Just-in-time Compilation Techniques January 25, 2010 7 / 19 Introduction Self Self is a dynamically typed prototype based high-level language akin to Javascript JIT environment presented in 1898 by Chambers In the rst generation generic functions' code was compiled only in specialized contexts Second generation: deferred compilation of uncommon cases but the system was much slower Third generation: Adaptive compilation were blocks will be compiled with better optimizations based on their execution frequency An observation: the most frequently executed code block is not necessary the best choice for optimization In an object-oriented language it might be worthwhile to JIT compile the method's caller and in-line the most frequently executed method In adaptive compilation there can be multiple versions of the same code executing at the same time Timo Lilja () Just-in-time Compilation Techniques January 25, 2010 8 / 19 Introduction Slim binaries and Oberon A program that is compiled to the least common subset of a processor architecture doesn't use all of the features available in run-time In 1994 Franz presented slim binaries which provide a high-level machine-independent description of a module Entire module was compiled at once instead of a method like in Smalltalk or Clean which resulted better code Fast code generation: code that could be reused was stored and used again instead of recompiling it Kistler 1999: continuous optimization were the code was optimized ad inntum used to optimize data access patterns for better cache locality Burger 1997: Scheme implementation which improved branch prediction and code locality Timo Lilja () Just-in-time Compilation Techniques January 25, 2010 9 / 19 Introduction Staged compilation At rst stage, the code is compiled to templates which are then in the second stage compiled to actual code Templates are specied by user annotations Used in some ML and C implementations Timo Lilja () Just-in-time Compilation Techniques January 25, 2010 10 / 19 Introduction OCaml Dynamically combined sequences of instructions as new virtual machine opcodes (i.e., macro opcodes) in 1999 by Rémy Reduced the overhead of instruction dispatch Provided optimization opportunities which would not have been possible if opcodes were xed Implementation didn't use the run-time execution information and was most suitable for low-level instruction sets where instruction dispatch was using considerable time Timo Lilja () Just-in-time Compilation Techniques January 25, 2010 11 / 19 Introduction Simulation Running native code of one architecture in another Binary translation: transferring a architectures' code into another during run-time These techniques used in most virtual machine nowadays Entire blocks are translated at once and the execution paths and corresponding control ow is considered when doing JIT compilation Execution is proled and only hot code (code that is run more often) is compiled Host and target machines can have the same architecture dynamic compilation provides opportunities for run-time optimizations Translation of legacy code to VLIW architectures provide better instruction level parallelism Timo Lilja () Just-in-time Compilation Techniques January 25, 2010 12 / 19 Introduction Java Cramer 1997: Only 68% of the execution time was used in interpretation Mere translation is not enough but optimizations are needed Statically used compiler optimization algorithms are too slow to be used in JIT compilation Various compilation strategies tried: no interpreter but everything is compiled, annotations, continuous compilation Timo Lilja () Just-in-time Compilation Techniques January 25, 2010 13 / 19 Introduction Feedback directed code generation JIT code generation where the optimization decisions are based on dynamically observed execution prole Inlining procedure calls Code layout organization to maximize code locality frequently executed code paths laid out contiguously Instruction scheduling maximize the ow of instructions through processor pipeline Multiversioning Compile several versions of a code sequence and choose the appropriate in run-time Timo Lilja () Just-in-time Compilation Techniques January 25, 2010 14 / 19 Introduction Classication of JIT systems According to Aycock, JITs can be classied to three categories 1 Invocation: explicit invocation is when the user invokes the JIT compilation manually. Automatic invocation is refered as implicit. 2 Executability: JITs involve source and target language. If they both can be run in the target system, then the system is polyexecutable, if only the target language is applicable, the system is refered as monoexecutable 3 Concurrency: if the JIT compilation can be run without stopping the system, the system is concurrent Hard real-time: an open question whether they constitute their own category Work on concurrent compilation is only beginning Timo Lilja () Just-in-time Compilation Techniques January 25, 2010 15 / 19 Introduction JIT Tools LLVM: compile to low-level virtual machine code which is JIT compiled later can optimized unnecessary static branches out Gnu lightning Lightweight library which compiles its own RISC-like language to native SPARC, x86 or PowerPC architectures Used by MzSchedme, Gnu Smalltalk and CLISP libJIT own intermediate representation and type system opcode form is close to static single assignment Used in DotGNU and some other dot-net implementations Using an existing tool forces the xing of the intermediate language and might not be suitable for all situations On the other hand, an error-prone JIT compiler implementation can be avoided Timo Lilja () Just-in-time Compilation Techniques January 25, 2010 16 / 19 Conclusion Conclusion Virtual machine architectures getting more common Without JIT VM would not be suciently fast even with the fastest hardware available JIT compilation allows one to use dynamic run-time information when optimizing the code Hard real-time requirements and concurrent compilation of JIT-code can be fruitful research topics Timo Lilja () Just-in-time Compilation Techniques January 25, 2010 17 / 19 Conclusion References Aycock, J. A Brief History of Just-in-Time. ACM Computing Surveys, Vol 35. No 2, June 2003 Arnold, M. A Survey of Adaptive Optimization in Virtual Machines. Proceeding of the IEEE, VOL 93. NO 2, February 2005 Timo Lilja () Just-in-time Compilation Techniques January 25, 2010 18 / 19 Topics Topics for presentation Virtual machines and JIT by Arnold et al 2005 JIT and the programming languages How does the source language aect the JIT design? What about the target language? What are the eects of high-levelness of a language in JIT design? Overview of actual JIT usages: Java, JavaScript, Scheme, Python Comparison of JITs vs. interpretation vs. static compiling vs. binary translation (i.e., in QEMU) JIT tools LLVM JIT, JVM, Gnu lighting Future and advanced topics concurrent JIT, real-time, trace tree methods Timo Lilja () Just-in-time Compilation Techniques January 25, 2010 19 / 19.
Recommended publications
  • SNC: a Cloud Service Platform for Symbolic-Numeric Computation Using Just-In-Time Compilation
    This article has been accepted for publication in a future issue of this journal, but has not been fully edited. Content may change prior to final publication. Citation information: DOI 10.1109/TCC.2017.2656088, IEEE Transactions on Cloud Computing IEEE TRANSACTIONS ON CLOUD COMPUTING 1 SNC: A Cloud Service Platform for Symbolic-Numeric Computation using Just-In-Time Compilation Peng Zhang1, Member, IEEE, Yueming Liu1, and Meikang Qiu, Senior Member, IEEE and SQL. Other types of Cloud services include: Software as a Abstract— Cloud services have been widely employed in IT Service (SaaS) in which the software is licensed and hosted in industry and scientific research. By using Cloud services users can Clouds; and Database as a Service (DBaaS) in which managed move computing tasks and data away from local computers to database services are hosted in Clouds. While enjoying these remote datacenters. By accessing Internet-based services over lightweight and mobile devices, users deploy diversified Cloud great services, we must face the challenges raised up by these applications on powerful machines. The key drivers towards this unexploited opportunities within a Cloud environment. paradigm for the scientific computing field include the substantial Complex scientific computing applications are being widely computing capacity, on-demand provisioning and cross-platform interoperability. To fully harness the Cloud services for scientific studied within the emerging Cloud-based services environment computing, however, we need to design an application-specific [4-12]. Traditionally, the focus is given to the parallel scientific platform to help the users efficiently migrate their applications. In HPC (high performance computing) applications [6, 12, 13], this, we propose a Cloud service platform for symbolic-numeric where substantial effort has been given to the integration of computation– SNC.
    [Show full text]
  • A Reader Framework for Guile for Guile-Reader 0.6.2
    A Reader Framework for Guile for Guile-Reader 0.6.2 Ludovic Court`es Edition 0.6.2 8 March 2017 This file documents Guile-Reader. Copyright c 2005, 2006, 2007, 2008, 2009, 2012, 2015, 2017 Ludovic Court`es Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. Permission is granted to copy and distribute modified versions of this manual under the con- ditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. Permission is granted to copy and distribute translations of this manual into another lan- guage, under the above conditions for modified versions, except that this permission notice may be stated in a translation approved by the Free Software Foundation. i Table of Contents A Reader Framework for Guile ................ 1 1 Introduction............................... 3 2 Overview .................................. 5 3 Quick Start................................ 7 4 API Reference............................. 9 4.1 Token Readers .............................................. 9 4.1.1 Defining a New Token Reader............................ 9 4.1.2 Token Reader Calling Convention ........................ 9 4.1.3 Invoking a Reader from a Token Reader ................. 10 4.1.4 Token Reader Library .................................. 11 4.1.5 Limitations............................................ 16 4.1.5.1 Token Delimiters .................................
    [Show full text]
  • PDF File, Or As a Single HTML Page
    MyJIT: Documentation version 0.9.0.x Petr Krajča, 2015 Dept. Computer Science Palacký University Olomouc Contents 1 About MyJIT 1 2 Instruction Set 2 2.1 Registers ............................................ 2 2.2 Notation ............................................ 3 2.3 Instructions .......................................... 3 2.3.1 Transfer Operations ................................. 3 2.3.2 Binary Arithmetic Operations ............................ 3 2.3.3 Unary Arithmetic Operations ............................ 5 2.3.4 Load Operations .................................... 5 2.3.5 Store Operations ................................... 6 2.3.6 Compare Instructions ................................ 6 2.3.7 Conversions ...................................... 7 2.3.8 Function declaration ................................. 7 2.3.9 Function calls ..................................... 8 2.3.10 Jumps .......................................... 9 2.3.11 Branch Operations .................................. 9 2.3.12 Misc ........................................... 11 3 Getting Started 13 4 Debugging 15 4.1 Debugging messages ..................................... 15 4.2 Warnings ............................................ 15 4.3 Code listing ........................................... 16 4.3.1 Example of the IL listing (JIT_DEBUG_OPS) ..................... 16 4.3.2 Example of the machine code listing (JIT_DEBUG_CODE) ............. 17 4.3.3 Example of the combined listing (JIT_DEBUG_COMBINED) ............. 17 5 Optimizations 18 6 Download 19 6.1 Getting
    [Show full text]
  • Latexsample-Thesis
    INTEGRAL ESTIMATION IN QUANTUM PHYSICS by Jane Doe A dissertation submitted to the faculty of The University of Utah in partial fulfillment of the requirements for the degree of Doctor of Philosophy Department of Mathematics The University of Utah May 2016 Copyright c Jane Doe 2016 All Rights Reserved The University of Utah Graduate School STATEMENT OF DISSERTATION APPROVAL The dissertation of Jane Doe has been approved by the following supervisory committee members: Cornelius L´anczos , Chair(s) 17 Feb 2016 Date Approved Hans Bethe , Member 17 Feb 2016 Date Approved Niels Bohr , Member 17 Feb 2016 Date Approved Max Born , Member 17 Feb 2016 Date Approved Paul A. M. Dirac , Member 17 Feb 2016 Date Approved by Petrus Marcus Aurelius Featherstone-Hough , Chair/Dean of the Department/College/School of Mathematics and by Alice B. Toklas , Dean of The Graduate School. ABSTRACT Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah.
    [Show full text]
  • GCC Plugins and MELT Extensions
    GCC plugins and MELT extensions Basile STARYNKEVITCH [email protected] (or [email protected]) June 16th 2011 – ARCHI’11 summer school (Mont Louis, France) These slides are under a Creative Commons Attribution-ShareAlike 3.0 Unported License creativecommons.org/licenses/by-sa/3.0 and downloadable from gcc-melt.org th Basile STARYNKEVITCH GCC plugins and MELT extensions June 16 2011 ARCHI’11 ? 1 / 134 Table of Contents 1 Introduction about you and me about GCC and MELT building GCC 2 GCC Internals complexity of GCC overview inside GCC (cc1) memory management inside GCC optimization passes plugins 3 MELT why MELT? handling GCC internal data with MELT matching GCC data with MELT future work on MELT th Basile STARYNKEVITCH GCC plugins and MELT extensions June 16 2011 ARCHI’11 ? 2 / 134 Introduction Contents 1 Introduction about you and me about GCC and MELT building GCC 2 GCC Internals complexity of GCC overview inside GCC (cc1) memory management inside GCC optimization passes plugins 3 MELT why MELT? handling GCC internal data with MELT matching GCC data with MELT future work on MELT th Basile STARYNKEVITCH GCC plugins and MELT extensions June 16 2011 ARCHI’11 ? 3 / 134 Introduction about you and me opinions are mine only Opinions expressed here are only mine! not of my employer (CEA, LIST) not of the Gcc community not of funding agencies (e.g. DGCIS)1 I don’t understand or know all of Gcc ; there are many parts of Gcc I know nothing about. Beware that I have some strong technical opinions which are not the view of the majority of contributors to Gcc.
    [Show full text]
  • Integral Estimation in Quantum Physics
    INTEGRAL ESTIMATION IN QUANTUM PHYSICS by Jane Doe A dissertation submitted to the faculty of The University of Utah in partial fulfillment of the requirements for the degree of Doctor of Philosophy in Mathematical Physics Department of Mathematics The University of Utah May 2016 Copyright c Jane Doe 2016 All Rights Reserved The University of Utah Graduate School STATEMENT OF DISSERTATION APPROVAL The dissertation of Jane Doe has been approved by the following supervisory committee members: Cornelius L´anczos , Chair(s) 17 Feb 2016 Date Approved Hans Bethe , Member 17 Feb 2016 Date Approved Niels Bohr , Member 17 Feb 2016 Date Approved Max Born , Member 17 Feb 2016 Date Approved Paul A. M. Dirac , Member 17 Feb 2016 Date Approved by Petrus Marcus Aurelius Featherstone-Hough , Chair/Dean of the Department/College/School of Mathematics and by Alice B. Toklas , Dean of The Graduate School. ABSTRACT Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah.
    [Show full text]
  • I Don't Really Want to Read Dave's Book. I Just
    “I don’t really want to read Dave’s book. I just wanted to have one so I could impress people and say, ‘I have Dave’s book.’” -- Tim Wenzl, author, historian 1 Other books by David S. Myers: “Spearville vs. the Aliens” With Jim Myers: “Mr. Brown; A Spirited Story of Friendship” “Mr. Brown and the Golden Locket” Copyright © 2014 David S. Myers All rights reserved. ISBN-10: 1466294485 ISBN-13: 978-1466294486 2 ... And Jesus Chuckled Humorous Stories of Faith, Inspiration, and General Silliness By David S. Myers 3 Special thanks to my wife, Charlene Scott-Myers, for her guidance and editing skills, her love and laughter (Charlene is the author of “The Shroud of Turin: the Research Continues,” “Screechy,” and “The Journeycake Saga”); to my parents, Jim and Ruth Myers, for passing on to me their weird and wonderful sense of humor (Dad and I are co-authors of “Mr. Brown, A Spirited Story of Friendship” and “Mr. Brown and the Golden Locket”); to Bishop Ronald M. Gilmore, for allowing me a voice in the Southwest Kansas Register, and to Bishop John B. Brungardt, for allowing that voice to continue; to the people of southwest Kansas, who have never tried even once to have me run me out of town (that I know of); to my Lab, Sarah, for helping me realize what’s truly important in life; and, as always, to the Good Lord, who has humbly refused any royalties for this book, should there be any. 4 Forward or more than ten years now, I have watched David My- Fers at work.
    [Show full text]
  • Sem Vložte Zadání Vaší Práce
    Sem vložte zadání Vaší práce. České vysoké učení technické v Praze Fakulta informačních technologií Katedra softwarového inženýrství Diplomová práce Integrace a využití JIT překladače a prostředí v PostgreSQL pro OLAP využití Bc. Ondřej Psota Vedoucí práce: Ing. Pavel Stěhule 12. května 2015 Poděkování Rád bych poděkoval svému konzultantovi a vedoucímu práce panu Ing. Pavlu Stěhulemu za jeho cenné rady a vstřícný přístup při řešení problémů. Dále bych chtěl rovněž poděkovat všem, kteří mi byli nápomocni a vytvořily podmínky pro to, abych se své práci mohl plně věnovat. Prohlášení Prohlašuji, že jsem předloženou práci vypracoval(a) samostatně a že jsem uvedl(a) veškeré použité informační zdroje v souladu s Metodickým pokynem o etické přípravě vysokoškolských závěrečných prací. Beru na vědomí, že se na moji práci vztahují práva a povinnosti vyplývající ze zákona č. 121/2000 Sb., autorského zákona, ve znění pozdějších předpisů. V souladu s ust. § 46 odst. 6 tohoto zákona tímto uděluji nevýhradní oprávnění (licenci) k užití této mojí práce, a to včetně všech počítačových programů, jež jsou její součástí či přílohou, a veškeré jejich dokumentace (dále souhrnně jen „Dílo“), a to všem osobám, které si přejí Dílo užít. Tyto osoby jsou oprávněny Dílo užít jakýmkoli způsobem, který nesnižuje hodnotu Díla, a za jakýmkoli účelem (včetně užití k výdělečným účelům). Toto oprávnění je časově, teri- toriálně i množstevně neomezené. Každá osoba, která využije výše uvedenou licenci, se však zavazuje udělit ke každému dílu, které vznikne (byť jen zčásti) na základě Díla, úpravou Díla, spojením Díla s jiným dílem, zařazením Díla do díla souborného či zpracováním Díla (včetně překladu), licenci alespoň ve výše uvedeném rozsahu a zároveň zpřístupnit zdrojový kód takového díla ale- spoň srovnatelným způsobem a ve srovnatelném rozsahu, jako je zpřístupněn zdrojový kód Díla.
    [Show full text]
  • Bulletin Issue 18
    Copyright c 2011 Free Software Foundation How to Contribute 51 Franklin Street, 5th Floor Boston, MA 02110-1301 Associate Membership: (617) 542-5942 Become an associate member of [email protected] the FSF. Members will receive www.fsf.org a bootable USB card and e-mail Issue 18 Bulletin June 2011 forwarding. To sign-up or get This bulletin was published by more information, visit member. the GNU Press (gnupress. fsf.org or write to membership@ Welcome to the org) and produced using only fsf.org. In this issue of free software – Inkscape, GIMP, Bulletin Markdown, and LATEX. Online: Use your credit card or the Bulletin... PayPal account to make a dona- by Matt Lee Remember, if you have any ideas, tion at donate.fsf.org or con- Welcome to the 1 Editor feedback or suggestions for things tact [email protected] for more Bulletin you’d like to see in future editions information on supporting the Why should I care 2 elcome to the first FSF Bulletin of the FSF Bulletin, we’d love to FSF. about that? Wof our 26th year. In this issue hear them! LibrePlanet 2011 4 we have insights on some of the excit- Jobs: List your job offers on our Recommending licenses 5 ing developments in free software, as jobs page. See fsf.org/jobs for The articles in this bulletin are for new projects well as articles reminding us of poten- details. individually licensed under the Thedangerofebooks 6 tial threats to our freedom and auton- Creative Commons Attribu- United Way: As a 501(c)(3) Spotlight: Merlin Cloud 8 omy.
    [Show full text]
  • Bulletin Issue 16 Forwarding
    Copyright c 2010 Free Software Foundation How to Contribute 51 Franklin Street, 5th Floor Boston, MA 02110-1301 Associate Membership: (617)542-5942 Become an associate member of [email protected] the FSF. Members will receive http://www.fsf.org/ a bootable USB card and e-mail Bulletin Issue 16 forwarding. To sign-up or get May 2010 This bulletin was produced using more information, visit member. only free software. fsf.org or write to membership@ fsf.org. The articles in this bulletin are Contents individually licensed under the Online: Use your credit card or Creative Commons Attribu- PayPal account to make a dona- Working together for 1 tion No Derivative Works tion at donate.fsf.org or con- free software 3.0 United States License. tact [email protected] for more LibrePlanet2010 2 To view a copy of this license, information on supporting the Freedom-friendly 4 LibrePlanet shirts now available visit http://creativecommons. FSF. government policy org/licenses/by-nd/3.0/us/ Encouraging nonprofits 5 Jobs: List your job offers on our or send a letter to Creative Com- to work together for free Working together for jobs page. See fsf.org/jobs for mons, 171 Second Street, Suite software details. free software 300, San Francisco, California, End Software Patents 8 Interview: Nina Paley 9 94105, USA. United Way: As a 501(c)(3) by Peter Brown DRM sticker contest 12 tax-exempt organization, the Executive Director Systems update 12 FSF is eligible to receive United Free software needs free 14 few weeks ago, my six-year-old Way funds.
    [Show full text]
  • JIT Technology for Simleon Numerical Emulation of LEON2/LEON3 Processors
    JIT Technology for SimLEON Numerical Emulation of LEON2/LEON3 processors Olivier MEURANT Astrium Satellites 31 rue des Cosmonautes Z.I. du Palays 31402 Toulouse Cedex 4 [email protected] INTRODUCTION SimLEON is a LEON2/LEON3 processor emulator developed by Astrium Satellites as a core component of full software simulation facilities. It is used operationally on most in-house spacecraft projects as well as in some applications in launchers and aircraft fields. LEON processors implement SPARC-V8 with cache and 7-stage pipeline designed to be clocked up to 200MHz, delivering computing power much higher than previous generations. Thus software simulation of such processors is very demanding to be able to meet real-time simulation (with hardware in the loop) or faster (full software simulation). This paper presents JIT technology, successfully implemented into SimLEON and providing a breakthrough in emulation performance. JIT TECHNOLOGY JIT technology is based on two principles: cache and regroup operations. A classical emulator is based on a loop: (See Fig 1) 1. Fetch: read next instruction to be executed 2. Decode: detect instruction type and parameters 3. Execute: execute instruction 4. Timing: compute time in cycle taken by the instruction Fig. 1. Classical emulation loop Emulated flight software is approximately constant: same set of operations is always performed for fetching and decoding. The first principle is then to cache operations in native code (PC-x86) for fetch and decode steps. Fig. 2 presents the new architecture of SimLEON. Fig. 2. Native code is stored in cache to be used later during execution Flight software is composed of sparc assembly instruction.
    [Show full text]
  • A Basis for Ubiquitous Virtual Machines
    Mite a basis for ubiquitous virtual machines Reuben Rhys Thomas St John's College A dissertation submitted for the Ph.D. degree November 2000 Ars est celare artem To Basil Rose, who did it first, and Tony Thomas, who hooked me. Preface Mite is a virtual machine intended to provide fast language and machine-neutral just-in-time translation of binary-portable object code into high quality native code, with a formal foundation. Chapter 1 discusses the need for fast good quality translation of portable code at run time, and, having considered what functionality is needed, sets out a list of goals that Mite should reach, then states the contribution of the thesis. Chapter 2 discusses related work, concentrating on the extent to which the various systems examined fulfil Mite's goals. Chapter 3 elaborates Mite's design, and chapter 4 anal- yses the choices that it makes. Chapter 5 examines the implementation, consisting of a C compiler back end targeting Mite and a virtual code translator for the ARM processor, and shows how it could be extended to other languages and processors. Chapter 6 describes and analyses a series of tests performed on the implementation, then assesses both the design and implementation in their light. Chapter 7 describes future work; finally, chapter 8 concludes the thesis with an appraisal of how well Mite meets its goals, and a final perspective. Appendices A–C give Mite's definition, appendix 6.1 lists two of the benchmark programs used in chapter 6, and appendix E gives the data collected from the tests.
    [Show full text]