1 / 29

HLL VM Implementation

HLL VM Implementation. Contents. Typical JVM implementation Dynamic class loading Basic Emulation High-performance Emulation Optimization Framework Optimizations. Memory. Method Area. Heap. Java Stacks. Native Method Stacks. Typical JVM implementation. Binary Classes.

natala
Télécharger la présentation

HLL VM Implementation

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. HLL VM Implementation

  2. Contents • Typical JVM implementation • Dynamic class loading • Basic Emulation • High-performance Emulation • Optimization Framework • Optimizations

  3. Memory Method Area Heap Java Stacks Native Method Stacks Typical JVM implementation Binary Classes Class Loader Subsystem Garbage Collector Addresses Data & Instrs PCs & Implied Regs Native Method Interface Native Method Libs. Emulation Engine

  4. Typical JVM Major Components • Class loader subsystem • Memory system • Including garbage-collected heap • Emulation engine

  5. Class loader subsystem • Convert the class file into an implementation-dependent memory image • Find binary classes • Verify correctness and consistency of binary classes • Part of the security system

  6. Dynamic class loading • Locate the requested binary class • Check the integrity • Make sure the stack values can be tracked statically • Static type checking • Static branch checking • Perform any translation of code and metadata • Check the class file format • Check arguments between caller and callee • Resolve fully qualified references

  7. Garbage Collection • Garbage : objects that are no longer accessible • Collection: memory reuse for new objects • Root set • Set of references point to objects held in the heap • Garbage • Cannot be reached through a sequence of references beginning with the root set • When GC occurs, need to check all accessible objects from the root set and reclaim garbages

  8. Root Set and the Heap Global Heap Root set B A E : D C

  9. Garbage Collection Algorithms • Mark-and-Sweep • Compacting • Copying • Generational

  10. Basic Emulation • The emulation engine in a JVM can be implemented in a number of ways. • interpretation • just-in-time compilation • More efficient strategy • apply optimizations selectively to hot spot • Examples • from interpretation : Sun HotSpot, IBM DK • from compilation : Jikes RVM

  11. Optimization Framework translated code profile data SimpleCompiler OptimizingCompiler Bytecodes Interpreter Profile Data CompiledCode OptimizedCode Host Platform

  12. High-performance Emulation • Code Relayout • Method Inlining • Optimizing Virtual Method Calls • Multiversioning and Specialization • On-Stack Replacement • Optimization of Heap-Allocated Objects • Low-Level Optimizations • Optimizing Garbage Collection

  13. OptimizationCode Relayout • the most commonly followed control flow paths are in contiguous location in memory • improved locality and conditional branch predictability

  14. B FLASHBACKCode Relayout A 3 Br cond1 == false D A Br cond3 == true 30 70 E D B G Br cond4 == true 1 29 68 Br uncond 2 E F C Br cond2 == false 29 68 1 C G Br uncond 97 1 F Br uncond

  15. OptimizationMethod Inlining • Two main effects • calling overheads decrease. • passing parameters • managing stack frame • control transfer • code analysis scope expands.  more optimizations are applicable. • effects can be different by method’s size • small method : beneficial in most of cases • large method : sophisticated cost-benefit analysis is needed code explosion can occur : poor cache behavior, performance losses

  16. OptimizationMethod Inlining (cont’d) • General processing sequence1. profiling by instrument2. constructing call-graph at certain intervals3. if # of call exceeds the threshold, invoke dynamic optimization system • To reduce analysis overhead • profile counters are included in one’s stack frame. • Once meet the threshold, “walk” backward through the stack

  17. OptimizationMethod Inlining (cont’d) MAIN MAIN 900 100 900 A X A 100 1000 1500 25 1500 threshold C B C Y threshold via stack frame using call-graph

  18. OptimizationOptimizing Virtual Method Calls • What if the method code called changes? • Which code should be inlined?  we always deal “the most common case”. • Determination of which code to use is done at run time via a dynamic method table lookup. If (a.isInstanceof(Sqaure)) { inlined code… . . }Else invokevirtual <perimeter> Invokevirtual <perimeter>

  19. OptimizationOptimizing Virtual Method Calls (cont’d) • If inlining is not useful, just removing method table lookup is also helpful • Polymorphic Inline Caching circle perimeter code square perimeter code if type = circle jump to circle perimeter code else if type = square jump to square perimeter codeelse call lookup …invokevirtualperimeter… …call PIC stub… polymorphic Inline Cache stub update PIC stub;method table lookup code

  20. OptimizationMultiversioning and Specialization • Multiversioning by specialization • If some variables or references are always assigned data values or types known to be constant (or from a limited range), then simplified, specialized code can sometimes be used in place of more complex, general code. for (int i=0;i<1000;i++) { if (A[i] ==0 ) B[i] = 0; } for (int i=0;i<1000;i++) { if(A[i]<0) B[i] = -A[i]*C[i]; else B[i] = A[i]*C[i];} general code if(A[i]<0) B[i] = -A[i]*C[i]; else B[i] = A[i]*C[i]; specialized code

  21. OptimizationMultiversioning and Specialization (cont’d) • compile only a single code version and to defer compilation of the general case for (int i=0;i<1000;i++) { if (A[i] ==0 ) B[i] = 0; } for (int i=0;i<1000;i++) { if(A[i]<0) B[i] = -A[i]*C[i]; else B[i] = A[i]*C[i];} jump to dynamic compiler for deferred compilation

  22. OptimizationOn-Stack Replacement • When do we need on-stack replacement? • After inlining, want executing inlined version right away • Currently-executing method is detected as a hot spot • Deferred compilation occurs • Debugging needs un-optimized version of code • Implementationstack needs to be modified on the fly to dynamically changing optimizations • E.g., inlining: merge stacks into a single stack • E.g., JIT compilation: change stack and register map • Complicated, but sometimes useful optimization

  23. OptimizationOn-Stack Replacement (cont’d) optimize/de-optimizemethod code methodcodeopt. level y methodcodeopt. level x stack stack 2. generate a new implementation frame implementationframe A implementationframe B architectedframe 3. replace the current implementation stack frame 1. extract architected state

  24. OptimizationOptimization of Heap-Allocated Objects • the code for the heap allocation and object initialization can be inlined for frequently allocated objects • scalar replacement • escape analysis, that is, an analysis to make sure all references to the object are within the region of code containing the optimization. class square {int side;int area;}void calculate() { a = new square(); a.side = 3; a.area = a.side * a.side; System.out.println(a.area); } void calculate() { int t1 = 3;int t2 = t1 * t1; System.out.println(t2); }

  25. OptimizationOptimization of Heap-Allocated Objects(cont’d) • field ordering for data usage patterns • to improve D-cache performance • to remove redundant object accesses redundant getfield (load) removal a = new square; b = new square; c = a; … a.side = 5; b.side = 10; z = c.side; a = new square; b = new square; c = a; … t1 = 5; a.side = t1; b.side = 10 z = t1;

  26. OptimizationLow-Level Optimizations • Array range and null reference checking may incur two drawbacks. • checking overhead itself • Disable some optimizations for a potential exception thrown p = new Z q = new Z r = p … p.x = … <null check p> … = p.x <null check p> … q.x = … <null check q> … r.x = … <null check r(p)> p = new Z q = new Z r = p … p.x = … <null check p> … = p.x … r.x = … q.x = … <null check q> Removing Redundant Null Checks

  27. OptimizationLow-Level Optimizations (cont’d) • Hoisting an Invariant Check • checking can be hoisted outside the loop if (j < A.length)then for (int i=0;i<j;i++) { sum += A[i]; } else for (int i=0;i<j;i++) { sum += A[i]; <range check A> } for (int i=0;i<j;i++) { sum += A[i]; <range check A> }

  28. OptimizationLow-Level Optimizations (cont’d) • Loop Peeling • the null check is not needed for the remaining loop iterations. r = A[0]; B[0] = r*2; p.x = A[0]; <null check p> for (int i=1;i<100;i++) { r = A[i]; p.x += A[i]; B[i] = r*2; } for (int i=0;i<100;i++) { r = A[i]; B[i] = r*2; p.x += A[i]; <null check p> }

  29. OptimizationOptimizing Garbage Collection • Compiler support • Compiler provide the garbage collector with “yield point” at regular intervals in the code. At these points a thread can guarantee a consistent heap state so that control can be yielded to the garbage collector • Called GC-point in Sun’s CDC VM

More Related