LaTTe: An Open-Source Java VM Just-in Compiler
|
|
|
- Gerald Brooks
- 10 years ago
- Views:
Transcription
1 LaTTe: An Open-Source Java VM Just-in in-time Compiler S.-M. Moon, B.-S. Yang, S. Park, J. Lee, S. Lee, J. Park, Y. C. Chung, S. Kim Seoul National University Kemal Ebcioglu, Erik Altman IBM T.J. Watson Research Center Sponsored by the IBM T. J. Watson Research Center
2 Introduction to the LaTTe Project Brief history LaTTe is a university collaboration project between IBM and SNU, which begun on Nov Released the source code of LaTTe version on Oct Released the new version of LaTTe on Oct With additional performance enhancements More than 1000 copies have been downloaded so far Close interaction between SNU and IBM Active participants: 7 in SNU and 2 in IBM Watson Many video and phone conferences
3 Overview of LaTTe JVM Includes a fast and efficient JIT compiler Fast and efficient register allocation for RISCs [PACT 99] Classical optimizations: redundancy elimination, CSE,.. OO optimizations: customization, dynamic CHA Optimized JVM run-time components Lightweight monitor [INTERACT-3] Efficient exception handling [JavaGrande 00] Efficient GC and memory management [POPL 00]
4 Current Status of LaTTe LaTTe JVM works on UltraSPARC. Faster than JDK JIT by a factor of 2.8 (SPECjvm98) Faster than JDK 1.2 PR by a factor of 1.08 Faster than JDK 1.3 (HotSpot) by a factor of 1.26 Translation overhead : 12,000 cycles per bytecode on SPARC Started from Kaffe Supports JAVA 1.1
5 Outline JIT compilation technique Fast and aggressive register allocation Classical optimizations OO optimizations: virtual call inlining VM run-time optimizations Lightweight monitor handling Efficient exception handling Memory management Experimental results
6 Two Issues in JIT Register Allocation Efficient allocation of Java stack into registers Bytecode is stack-based, RISC code is register-based. Map stack entries and local variables into registers Must coalesce copies corresponding to pushes and pops between stack and local variables Fast allocation Do not want to use graph-coloring register allocation with copy coalescing
7 Approach of LaTTe Two-pass code generation with CFG Build CFG of pseudo code with symbolic registers Allocate real registers while coalescing copies Slower but better register allocation than singlepass algorithms (e.g., Kaffe and old VTune) Our engineering solution just enough for Java JIT JIT overhead consistently takes 1~2 seconds for SPECjvm98 which run 40~70 seconds with LaTTe.
8 JIT Compilation Phases in LaTTe Bytecode CFG of Pseudo SPARC Code CFG of Real SPARC Code Native SPARC Code Bytecode translation Java stack is mapped to symbolic registers. Register allocation & Optimizations Symbolic registers are allocated to machine registers. Code emission Binary image is generated from the CFG. Determines locations of basic blocks
9 Bytecode Translation Example Java source int work_on_max(int x,int y,int tip) { int val=((x>=y)?x:y)+tip; return work(val); } bytecode 0: iload_1 1: iload_2 2: if_icmplt 9 5: iload_1 6: goto 10 9: iload_2 10: iload_3 12: istore 4 14: aload_0 15: iload 4 17: invokevirtual <int work(int)> 20: ireturn Control Flow Graph F 0: mov il1, is0 1: mov il2, is1 2: cmp is0, is1 bl 5: mov il1, is0 9: mov il2, is0 10: mov il3, is1 11: add is0,is1,is0 12: mov is0, il4 14: mov al0, as0 15: mov il4,is1 17: ld [as0], at0 ld [at0+48], at1 call at1 20: ret T Many COPIES!! 8 copies out of 15 instructions
10 Register Allocation (1) Enhanced left-edge algorithm [Tucker, 1975] Tree region Unit of register allocation in LaTTe Single entry, multiple exits (same as extended basic block) Tradeoffs between quality and speed of register allocation
11 Register Allocation (2) Visit tree regions in reverse post order Register allocation result of a region is propagated to next regions At join points of regions, reconcile conflict of register allocation using copies Similar to replacing SSA φ nodes with copies
12 Register Allocation (3) In each region, the tree is traversed twice Backward sweep : collects allocation hints for target registers using pre-allocation results at calls/join points (works as a local lookahead) preferred map (p_map) is propagated backward set of (symbolic, hardware) register pairs Forward sweep : performs actual register allocation based on the hints h/w register map (h_map) is propagated forward
13 Register Allocation (4) Aggressive copy elimination Pseudo code has many copies from push and pop. Source and target are mapped to the same register. Copies do not generate code, but only update h_map. Generation of bookkeeping copies To satisfy calling conventions To reconcile h_map conflicts at join points of regions Backward sweep reduces these copies.
14 Register Allocation Example 0: mov il1, is0 1: mov il2, is1 2: cmp is0, is1 bl Tree Region A F T 5: mov il1, is0 9: mov il2, is0 10: mov il3, is1 11: add is0,is1,is0 12: mov is0, il4 14: mov al0, as0 15: mov il4,is1 17: ld [as0], at0 ld [at0+48], at1 call at1 20: ret Tree Region B
15 Allocation Result of Region A 2: cmp %i1,%i2 bl mov %i2,%i1 bookkeeping copy to reconcile allocation conflict at the join 10: mov il3,is1 11: add is0,is1,is0 (o1) 12: mov is0,il4 14: mov al0,as0 15: mov il4,is1 17: ld [as0],at0 17: ld [at0+48], at1 17: call at1 (as0,is1) 20: ret h={(al0,%i0) (il3,%i3) (is0,%i1)} This map is passed from Region A to Region B.
16 Register Allocation Result - After register allocation of Region B 0: mov il1, is0 1: mov il2, is1 2: cmp is0, is1 bl 8 copies are reduced to only 3 copies. 2: cmp %i1,%i2 2: bl F T mov %i2,%i1 5: mov il1, is0 9: mov il2, is0 10: mov il3, is1 11: add is0,is1,is0 12: mov is0, il4 14: mov al0, as0 15: mov il4,is1 17: ld [as0], at0 ld [at0+48], at1 call at1 20: ret 11: add %i1,%i3,%o1 17: ld [%i0],%l0 17: ld [%l0+48], %l0 mov %i0, %o0 17: call %l0 mov %o0, %i0 20: ret is0 is mapped to %o1. The value of is0 will be used as the 2nd arg. bookkeeping copies due to SPARC calling convention
17 Classical Optimizations LaTTe performs Redundancy elimination : CSE, check code elimination Based on value numbering Loop invariant code motion/register promotion Copy propagation Constant propagation, folding Method inlining : static/private/final methods Unit of optimizations : tree region
18 Object-Oriented Oriented Optimizations Reduce virtual call overheads Virtual calls are normally translated into ld-ld-jmpl With OO optimization, virtual calls can be translated into static calls or can even be inlined Two kinds of VC optimizations in LaTTe Customization and specialization Inline of de facto final methods through backpatching Assume a virtual method is final at first. Create backpatching code when the method is overriden. The latter outperforms the former.
19 VM Run-time Optimization Lightweight monitor [INTERACT-3] Optimized for single-threaded programs Efficient exception handling [JavaGrande 00] On-demand translation of exception handlers Exception type prediction Fast mark-and-sweep GC [POPL 00] Fast object allocation Short mark and sweep time
20 Lightweight Monitor Make frequent operations faster Frequent : free lock manipulation Infrequent: lock contention or wait/notify lock Accessed frequently Embedded in the object header as a 32-bit field nest_count[31:17] has_waiters[16] owner_thread_id[15:0] lock queue, wait set Accessed infrequently Managed in a hash table Created only when they are actually accessed
21 Efficient Exception Handling No performance degradation of the normal flow due to exception handlers Do not translate EHs on JITing a method Only if an EH is to be used, translate it. Fast control transfer to an EH Predict the exception type of an exception instruction Directly connect the predicted EH to the instruction No intervention of the JVM exception manager
22 Memory Management Small object allocation Very frequent : Speed is important. Uses pointer increments in the most common case Worst-fit if allocation failed with pointer increment Large object allocation Not very frequent : Avoiding fragmentation is important. Use a best-fit algorithm Partially conservative mark and sweep Run-time generation of marking functions Selective sweeping at low heap occupancies (POPL 00)
23 Experimental Results Test environment SUN UltraSPARC II 270MHz with 256MB of memory, Solaris 2.6 single-user mode run 5 times and take minimum value Benchmarks SPECjvm98, Java Grande Benchmark Configuration LaTTe(B) : LaTTe with fast register allocation w/o optimization LaTTe(O) : LaTTe with full optimization LaTTe(K) : LaTTe with Kaffe s JIT compiler JDK1.1.8 : SUN JDK Production Release with JIT on SPARC JDK1.2 PR : SUN JDK 1.2 Production Release JDK 1.3 HotSpot : SUN JDK 1.3 HotSpot Client
24 Total Running Time of 3 JITs in LaTTe EX (Total Time - TR) TR L(B) L(O) L(A) L(B) L(O) L(A) L(B) L(O) L(A) L(B) L(O) L(A) L(B) L(O) L(A) L(B) L(O) L(A) L(B) L(O) L(A) _ _ compress jess db javac mpegaudio mtrt jack
25 Analysis of LaTTe JIT Compiler TR overhead is negligible in L(B) and even in L(O) TR time in L(B) takes consistently 1-2 seconds for all programs that run seconds with LaTTe Except for _213_javac, TR time is small even in L(O). L(B) spends more TR time than L(K) by factor of 3. LaTTe JIT of L(B) : 12,000 SPARC cycles/bytecode Kaffe JIT : 4,000 SPARC cycles/bytecode Compared to Kaffe JIT, LaTTe JIT of L(B) improves JVM performance by factor of 2.2.
26 Overall Performance of LaTTe Relative performance compared to SUN JDKs SUN JDK1.1.8 PR SUN JDK1.2 PR JDK 1.3 HotSpot LaTTe(base) LaTTe(opt) LaTTe(kaffe) _201_com press _202_jess _209_db _213_javac _222_mpegaudio _227_m trt _228_jack GEOMEAN
27 Overall Performance of LaTTe Overall Performance of LaTTe Relative performance compared to SUN JDKs SUN JDK1.1.8 PR SUN JDK1.2 PR JDK 1.3 HotSpot LaTTe(base) LaTTe(opt) LaTTe(kaffe) Series LUFact SOR He apsor t Crypt FFT Spar sematm ult Search Eule r M oldyn M ontecar lo RayTr acer GEOM EAN
28 Summary LaTTe s performance is competitive, due to Fast and efficient JIT compilation and optimizations Virtual call overhead reduction technique Lightweight monitor implementation Efficient exception handling Highly-engineered memory management module Source code available at BSD-like license
29 Future Work Proceed with further optimizations (a lot of leeway still available) Aggressive re-optimization of frequent code VLaTTe: JIT compiler for VLIW Re-integration with Kaffe, multiple platforms We invite volunteers worldwide to join our LaTTe open source development team and help us implement the exciting, leading edge JIT compiler, VM and instruction level parallelism optimizations to come
HOTPATH VM. An Effective JIT Compiler for Resource-constrained Devices
HOTPATH VM An Effective JIT Compiler for Resource-constrained Devices based on the paper by Andreas Gal, Christian W. Probst and Michael Franz, VEE 06 INTRODUCTION INTRODUCTION Most important factor: speed
Interpreters and virtual machines. Interpreters. Interpreters. Why interpreters? Tree-based interpreters. Text-based interpreters
Interpreters and virtual machines Michel Schinz 2007 03 23 Interpreters Interpreters Why interpreters? An interpreter is a program that executes another program, represented as some kind of data-structure.
Virtual Machine Learning: Thinking Like a Computer Architect
Virtual Machine Learning: Thinking Like a Computer Architect Michael Hind IBM T.J. Watson Research Center March 21, 2005 CGO 05 Keynote 2005 IBM Corporation What is this talk about? Virtual Machines? 2
CSCI E 98: Managed Environments for the Execution of Programs
CSCI E 98: Managed Environments for the Execution of Programs Draft Syllabus Instructor Phil McGachey, PhD Class Time: Mondays beginning Sept. 8, 5:30-7:30 pm Location: 1 Story Street, Room 304. Office
02 B The Java Virtual Machine
02 B The Java Virtual Machine CS1102S: Data Structures and Algorithms Martin Henz January 22, 2010 Generated on Friday 22 nd January, 2010, 09:46 CS1102S: Data Structures and Algorithms 02 B The Java Virtual
picojava TM : A Hardware Implementation of the Java Virtual Machine
picojava TM : A Hardware Implementation of the Java Virtual Machine Marc Tremblay and Michael O Connor Sun Microelectronics Slide 1 The Java picojava Synergy Java s origins lie in improving the consumer
Jonathan Worthington Scarborough Linux User Group
Jonathan Worthington Scarborough Linux User Group Introduction What does a Virtual Machine do? Hides away the details of the hardware platform and operating system. Defines a common set of instructions.
Armed E-Bunny: A Selective Dynamic Compiler for Embedded Java Virtual Machine Targeting ARM Processors
2005 ACM Symposium on Applied Computing Armed E-Bunny: A Selective Dynamic Compiler for Embedded Java Virtual Machine Targeting ARM Processors Mourad Debbabi Computer Security Research Group CIISE, Concordia
language 1 (source) compiler language 2 (target) Figure 1: Compiling a program
CS 2112 Lecture 27 Interpreters, compilers, and the Java Virtual Machine 1 May 2012 Lecturer: Andrew Myers 1 Interpreters vs. compilers There are two strategies for obtaining runnable code from a program
Habanero Extreme Scale Software Research Project
Habanero Extreme Scale Software Research Project Comp215: Java Method Dispatch Zoran Budimlić (Rice University) Always remember that you are absolutely unique. Just like everyone else. - Margaret Mead
General Introduction
Managed Runtime Technology: General Introduction Xiao-Feng Li ([email protected]) 2012-10-10 Agenda Virtual machines Managed runtime systems EE and MM (JIT and GC) Summary 10/10/2012 Managed Runtime
Java Garbage Collection Basics
Java Garbage Collection Basics Overview Purpose This tutorial covers the basics of how Garbage Collection works with the Hotspot JVM. Once you have learned how the garbage collector functions, learn how
Constant-Time Root Scanning for Deterministic Garbage Collection
Constant-Time Root Scanning for Deterministic Garbage Collection Fridtjof Siebert Institut für Programmstrukturen and Datenorganisation (IPD) Universität Karlsruhe Am Fasanengarten 5 76128 Karlsruhe, Germany
Garbage Collection in the Java HotSpot Virtual Machine
http://www.devx.com Printed from http://www.devx.com/java/article/21977/1954 Garbage Collection in the Java HotSpot Virtual Machine Gain a better understanding of how garbage collection in the Java HotSpot
Reducing Transfer Delay Using Java Class File Splitting and Prefetching
Reducing Transfer Delay Using Java Class File Splitting and Prefetching Chandra Krintz Brad Calder Urs Hölzle Department of Computer Science and Engineering University of California, San Diego ckrintz,calder
Replication on Virtual Machines
Replication on Virtual Machines Siggi Cherem CS 717 November 23rd, 2004 Outline 1 Introduction The Java Virtual Machine 2 Napper, Alvisi, Vin - DSN 2003 Introduction JVM as state machine Addressing non-determinism
HVM TP : A Time Predictable and Portable Java Virtual Machine for Hard Real-Time Embedded Systems JTRES 2014
: A Time Predictable and Portable Java Virtual Machine for Hard Real-Time Embedded Systems JTRES 2014 Kasper Søe Luckow 1 Bent Thomsen 1 Stephan Erbs Korsholm 2 1 Department of Computer Science Aalborg
The Design of the Inferno Virtual Machine. Introduction
The Design of the Inferno Virtual Machine Phil Winterbottom Rob Pike Bell Labs, Lucent Technologies {philw, rob}@plan9.bell-labs.com http://www.lucent.com/inferno Introduction Virtual Machine are topical
2) Write in detail the issues in the design of code generator.
COMPUTER SCIENCE AND ENGINEERING VI SEM CSE Principles of Compiler Design Unit-IV Question and answers UNIT IV CODE GENERATION 9 Issues in the design of code generator The target machine Runtime Storage
The Java Virtual Machine and Mobile Devices. John Buford, Ph.D. [email protected] Oct 2003 Presented to Gordon College CS 311
The Java Virtual Machine and Mobile Devices John Buford, Ph.D. [email protected] Oct 2003 Presented to Gordon College CS 311 Objectives Review virtual machine concept Introduce stack machine architecture
Cloud Computing. Up until now
Cloud Computing Lecture 11 Virtualization 2011-2012 Up until now Introduction. Definition of Cloud Computing Grid Computing Content Distribution Networks Map Reduce Cycle-Sharing 1 Process Virtual Machines
Java and Real Time Storage Applications
Java and Real Time Storage Applications Gary Mueller Janet Borzuchowski 1 Flavors of Java for Embedded Systems Software Java Virtual Machine(JVM) Compiled Java Hardware Java Virtual Machine Java Virtual
Precise and Efficient Garbage Collection in VMKit with MMTk
Precise and Efficient Garbage Collection in VMKit with MMTk LLVM Developer s Meeting Nicolas Geoffray [email protected] 2 Background VMKit: Java and.net on top of LLVM Uses LLVM s JIT for executing
A Lazy Developer Approach: Building a JVM with Third Party Software
A Lazy Developer Approach: Building a JVM with Third Party Software Nicolas Geoffray, Gaël Thomas, Charles Clément and Bertil Folliot Université Pierre et Marie Curie - LIP6/CNRS/INRIA - Regal 04 avenue
1. Overview of the Java Language
1. Overview of the Java Language What Is the Java Technology? Java technology is: A programming language A development environment An application environment A deployment environment It is similar in syntax
Effective Java Programming. efficient software development
Effective Java Programming efficient software development Structure efficient software development what is efficiency? development process profiling during development what determines the performance of
Characteristics of Java (Optional) Y. Daniel Liang Supplement for Introduction to Java Programming
Characteristics of Java (Optional) Y. Daniel Liang Supplement for Introduction to Java Programming Java has become enormously popular. Java s rapid rise and wide acceptance can be traced to its design
Using inter-procedural side-effect information in JIT optimizations
Using inter-procedural side-effect information in JIT optimizations Anatole Le Ondřej Lhoták Laurie Hendren {ale44,olhotak,hendren}@sable.mcgill.ca Sable Research Group, McGill University, Montreal, Canada
Language Based Virtual Machines... or why speed matters. by Lars Bak, Google Inc
Language Based Virtual Machines... or why speed matters by Lars Bak, Google Inc Agenda Motivation for virtual machines HotSpot V8 Dart What I ve learned Background 25+ years optimizing implementations
Advanced compiler construction. General course information. Teacher & assistant. Course goals. Evaluation. Grading scheme. Michel Schinz 2007 03 16
Advanced compiler construction Michel Schinz 2007 03 16 General course information Teacher & assistant Course goals Teacher: Michel Schinz [email protected] Assistant: Iulian Dragos INR 321, 368 64
Using jvmstat and visualgc to Solve Memory Management Problems
Using jvmstat and visualgc to Solve Memory Management Problems java.sun.com/javaone/sf 1 Wally Wedel Sun Software Services Brian Doherty Sun Microsystems, Inc. Analyze JVM Machine Memory Management Problems
Can You Trust Your JVM Diagnostic Tools?
Can You Trust Your JVM Diagnostic Tools? Isaac Sjoblom, Tim S. Snyder, and Elena Machkasova Computer Science Discipline University of Minnesota Morris Morris, MN 56267 [email protected], [email protected],
Java Programming. Binnur Kurt [email protected]. Istanbul Technical University Computer Engineering Department. Java Programming. Version 0.0.
Java Programming Binnur Kurt [email protected] Istanbul Technical University Computer Engineering Department Java Programming 1 Version 0.0.4 About the Lecturer BSc İTÜ, Computer Engineering Department,
Last Class: OS and Computer Architecture. Last Class: OS and Computer Architecture
Last Class: OS and Computer Architecture System bus Network card CPU, memory, I/O devices, network card, system bus Lecture 3, page 1 Last Class: OS and Computer Architecture OS Service Protection Interrupts
Performance Measurement of Dynamically Compiled Java Executions
Performance Measurement of Dynamically Compiled Java Executions Tia Newhall and Barton P. Miller University of Wisconsin Madison Madison, WI 53706-1685 USA +1 (608) 262-1204 {newhall,bart}@cs.wisc.edu
Extreme Performance with Java
Extreme Performance with Java QCon NYC - June 2012 Charlie Hunt Architect, Performance Engineering Salesforce.com sfdc_ppt_corp_template_01_01_2012.ppt In a Nutshell What you need to know about a modern
2 Introduction to Java. Introduction to Programming 1 1
2 Introduction to Java Introduction to Programming 1 1 Objectives At the end of the lesson, the student should be able to: Describe the features of Java technology such as the Java virtual machine, garbage
Programming the Android Platform. Logistics
Programming the Android Platform CMSC498G Logistics Professor Adam Porter 4125 AVW [email protected] Course meets W 3:00 3:50 in CSI 3118 1 Goals Learn more about Mobile devices Mobile device programming
Optimizations for a Java Interpreter Using Instruction Set Enhancement
Optimizations for a Java Interpreter Using Instruction Set Enhancement Kevin Casey Dept.of Computer Science University of Dublin Trinity College Dublin 2, Ireland [email protected] M. Anton Ertl David
11.1 inspectit. 11.1. inspectit
11.1. inspectit Figure 11.1. Overview on the inspectit components [Siegl and Bouillet 2011] 11.1 inspectit The inspectit monitoring tool (website: http://www.inspectit.eu/) has been developed by NovaTec.
Programming Languages
Programming Languages In the beginning To use a computer, you needed to know how to program it. Today People no longer need to know how to program in order to use the computer. To see how this was accomplished,
How Java Software Solutions Outperform Hardware Accelerators
How Java Software Solutions Outperform Hardware Accelerators MIPS Technologies, Inc. April 2005 Java is a programming language which has one big advantage and one big disadvantage: the big advantage is
C Compiler Targeting the Java Virtual Machine
C Compiler Targeting the Java Virtual Machine Jack Pien Senior Honors Thesis (Advisor: Javed A. Aslam) Dartmouth College Computer Science Technical Report PCS-TR98-334 May 30, 1998 Abstract One of the
Java Coding Practices for Improved Application Performance
1 Java Coding Practices for Improved Application Performance Lloyd Hagemo Senior Director Application Infrastructure Management Group Candle Corporation In the beginning, Java became the language of the
On-line Trace Based Automatic Parallelization of Java Programs on Multicore Platforms
Regular Paper Journal of Computing Science and Engineering, Vol. 6, No. 2, June 2012, pp. 105-118 On-line Trace Based Automatic Parallelization of Java Programs on Multicore Platforms Yu Sun and Wei Zhang*
Java Performance. Adrian Dozsa TM-JUG 18.09.2014
Java Performance Adrian Dozsa TM-JUG 18.09.2014 Agenda Requirements Performance Testing Micro-benchmarks Concurrency GC Tools Why is performance important? We hate slow web pages/apps We hate timeouts
Memory Allocation. Static Allocation. Dynamic Allocation. Memory Management. Dynamic Allocation. Dynamic Storage Allocation
Dynamic Storage Allocation CS 44 Operating Systems Fall 5 Presented By Vibha Prasad Memory Allocation Static Allocation (fixed in size) Sometimes we create data structures that are fixed and don t need
System Structures. Services Interface Structure
System Structures Services Interface Structure Operating system services (1) Operating system services (2) Functions that are helpful to the user User interface Command line interpreter Batch interface
Java Virtual Machine: the key for accurated memory prefetching
Java Virtual Machine: the key for accurated memory prefetching Yolanda Becerra Jordi Garcia Toni Cortes Nacho Navarro Computer Architecture Department Universitat Politècnica de Catalunya Barcelona, Spain
Reconfigurable Architecture Requirements for Co-Designed Virtual Machines
Reconfigurable Architecture Requirements for Co-Designed Virtual Machines Kenneth B. Kent University of New Brunswick Faculty of Computer Science Fredericton, New Brunswick, Canada [email protected] Micaela Serra
A Thread Monitoring System for Multithreaded Java Programs
A Thread Monitoring System for Multithreaded Java Programs Sewon Moon and Byeong-Mo Chang Department of Computer Science Sookmyung Women s University, Seoul 140-742, Korea [email protected], [email protected]
2 2011 Oracle Corporation Proprietary and Confidential
The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material,
Real-time Java Processor for Monitoring and Test
Real-time Java Processor for Monitoring and Test Martin Zabel, Thomas B. Preußer, Rainer G. Spallek Technische Universität Dresden {zabel,preusser,rgs}@ite.inf.tu-dresden.de Abstract This paper introduces
Eclipse Visualization and Performance Monitoring
Eclipse Visualization and Performance Monitoring Chris Laffra IBM Ottawa Labs http://eclipsefaq.org/chris Chris Laffra Eclipse Visualization and Performance Monitoring Page 1 Roadmap Introduction Introspection
Write Barrier Removal by Static Analysis
Write Barrier Removal by Static Analysis Karen Zee and Martin Rinard Laboratory for Computer Science Massachusetts Institute of Technology Cambridge, MA 02139 {kkz, [email protected] ABSTRACT We present
What s Cool in the SAP JVM (CON3243)
What s Cool in the SAP JVM (CON3243) Volker Simonis, SAP SE September, 2014 Public Agenda SAP JVM Supportability SAP JVM Profiler SAP JVM Debugger 2014 SAP SE. All rights reserved. Public 2 SAP JVM SAP
The V8 JavaScript Engine
The V8 JavaScript Engine Design, Implementation, Testing and Benchmarking Mads Ager, Software Engineer Agenda Part 1: What is JavaScript? Part 2: V8 internals Part 3: V8 testing and benchmarking What is
What is Software Watermarking? Software Watermarking Through Register Allocation: Implementation, Analysis, and Attacks
hat is Software atermarking? Software atermarking Through Register Allocation: Implementation, Analysis, and Attacks Ginger Myles Christian Collberg {mylesg,collberg}@cs.arizona.edu University of Arizona
Embedded Programming in C/C++: Lesson-1: Programming Elements and Programming in C
Embedded Programming in C/C++: Lesson-1: Programming Elements and Programming in C 1 An essential part of any embedded system design Programming 2 Programming in Assembly or HLL Processor and memory-sensitive
The Java Virtual Machine (JVM) Pat Morin COMP 3002
The Java Virtual Machine (JVM) Pat Morin COMP 3002 Outline Topic 1 Topic 2 Subtopic 2.1 Subtopic 2.2 Topic 3 2 What is the JVM? The JVM is a specification of a computing machine Instruction set Primitive
Virtual Machine Showdown: Stack Versus Registers
Virtual Machine Showdown: Stack Versus Registers Yunhe Shi, David Gregg, Andrew Beatty Department of Computer Science University of Dublin, Trinity College Dublin 2, Ireland {yshi, David.Gregg, Andrew.Beatty}@cs.tcd.ie
Validating Java for Safety-Critical Applications
Validating Java for Safety-Critical Applications Jean-Marie Dautelle * Raytheon Company, Marlborough, MA, 01752 With the real-time extensions, Java can now be used for safety critical systems. It is therefore
Building Applications Using Micro Focus COBOL
Building Applications Using Micro Focus COBOL Abstract If you look through the Micro Focus COBOL documentation, you will see many different executable file types referenced: int, gnt, exe, dll and others.
Introduction. Application Security. Reasons For Reverse Engineering. This lecture. Java Byte Code
Introduction Application Security Tom Chothia Computer Security, Lecture 16 Compiled code is really just data which can be edit and inspected. By examining low level code protections can be removed and
9/11/15. What is Programming? CSCI 209: Software Development. Discussion: What Is Good Software? Characteristics of Good Software?
What is Programming? CSCI 209: Software Development Sara Sprenkle [email protected] "If you don't think carefully, you might think that programming is just typing statements in a programming language."
DISK: A Distributed Java Virtual Machine For DSP Architectures
DISK: A Distributed Java Virtual Machine For DSP Architectures Mihai Surdeanu Southern Methodist University, Computer Science Department [email protected] Abstract Java is for sure the most popular programming
A Scalable Technique for Characterizing the Usage of Temporaries in Framework-intensive Java Applications
A Scalable Technique for Characterizing the Usage of Temporaries in Framework-intensive Java Applications Bruno Dufour Dept of Computer Science Rutgers University [email protected] Barbara G. Ryder
The Fundamentals of Tuning OpenJDK
The Fundamentals of Tuning OpenJDK OSCON 2013 Portland, OR Charlie Hunt Architect, Performance Engineering Salesforce.com sfdc_ppt_corp_template_01_01_2012.ppt In a Nutshell What you need to know about
Eastern Washington University Department of Computer Science. Questionnaire for Prospective Masters in Computer Science Students
Eastern Washington University Department of Computer Science Questionnaire for Prospective Masters in Computer Science Students I. Personal Information Name: Last First M.I. Mailing Address: Permanent
Instruction Folding in a Hardware-Translation Based Java Virtual Machine
Instruction Folding in a Hardware-Translation Based Java Virtual Machine Hitoshi Oi Department of Computer Science The University of Aizu Aizu-Wakamatsu, JAPAN hitoshi at u-aizu.ac.jp ABSTRACT Bytecode
Physical Data Organization
Physical Data Organization Database design using logical model of the database - appropriate level for users to focus on - user independence from implementation details Performance - other major factor
Chapter 7D The Java Virtual Machine
This sub chapter discusses another architecture, that of the JVM (Java Virtual Machine). In general, a VM (Virtual Machine) is a hypothetical machine (implemented in either hardware or software) that directly
Trace-Based and Sample-Based Profiling in Rational Application Developer
Trace-Based and Sample-Based Profiling in Rational Application Developer This document is aimed at highlighting the importance of profiling in software development and talks about the profiling tools offered
İSTANBUL AYDIN UNIVERSITY
İSTANBUL AYDIN UNIVERSITY FACULTY OF ENGİNEERİNG SOFTWARE ENGINEERING THE PROJECT OF THE INSTRUCTION SET COMPUTER ORGANIZATION GÖZDE ARAS B1205.090015 Instructor: Prof. Dr. HASAN HÜSEYİN BALIK DECEMBER
Instruction Set Design
Instruction Set Design Instruction Set Architecture: to what purpose? ISA provides the level of abstraction between the software and the hardware One of the most important abstraction in CS It s narrow,
NetBeans Profiler is an
NetBeans Profiler Exploring the NetBeans Profiler From Installation to a Practical Profiling Example* Gregg Sporar* NetBeans Profiler is an optional feature of the NetBeans IDE. It is a powerful tool that
Section 1.4. Java s Magic: Bytecode, Java Virtual Machine, JIT,
J A V A T U T O R I A L S : Section 1.4. Java s Magic: Bytecode, Java Virtual Machine, JIT, JRE and JDK This section clearly explains the Java s revolutionary features in the programming world. Java basic
