making resource analysis practical for real time java
play

Making Resource Analysis Practical for Real-Time Java Rody Kersten, - PowerPoint PPT Presentation

Making Resource Analysis Practical for Real-Time Java Rody Kersten, Olha Shkaravska, Bernard van Gastel, Manuel Montenegro and Marko van Eekelen Institute for Computing and Information Sciences Radboud University Nijmegen October 25, 2012


  1. Making Resource Analysis Practical for Real-Time Java Rody Kersten, Olha Shkaravska, Bernard van Gastel, Manuel Montenegro and Marko van Eekelen Institute for Computing and Information Sciences Radboud University Nijmegen October 25, 2012

  2. Introduction Loop-Bound Analysis Heap Analysis Stack Analysis Conclusions CHARTER • C ritical and H igh A ssurance R equirements T ransformed through E ngineering R igour • ARTEMIS Embedded Computing Systems Initiative project • April 2009 – June 2012 • 3 times in a row the highest ratings • Project partners: aicas GmbH, Atego Ltd, Chalmers University of Technology, Impronova AB, Lero at Dundalk Institute of Technology, Luminis, NLR, QRTECH AB, Radboud Universiteit Nijmegen, The Open Group, Universiteit Twente Rody Kersten Making Resource AnalysisPractical for Real-Time Java October 25, 2012 2 / 41

  3. Introduction Loop-Bound Analysis Heap Analysis Stack Analysis Conclusions CHARTER • Aim: improve certification process of critical embedded systems • Automotive, health care, avionics, surveillance • By means of: • Model Driven Development • Rule Based Compilation • Formal Verification • Focus on Real-Time Java (JamaicaVM) • Radboud University’s focus was on resource analysis and formal specification of the Real-Time Java API Rody Kersten Making Resource AnalysisPractical for Real-Time Java October 25, 2012 3 / 41

  4. Introduction Loop-Bound Analysis Heap Analysis Stack Analysis Conclusions Resource Analysis in CHARTER • Loop-Bound Analysis • Prove termination • Prerequisite for other resource analysis • Memory Usage Analysis (Heap and Stack) • In safety and security critical applications: to prevent abrupt termination due to the lack of memory, because output and intermediate structures are too large (DOS attack) • To optimise memory management, e.g. by allocation in advance chunks of a heap • To be able to physically configure embedded systems for small devices in an optimal way Rody Kersten Making Resource AnalysisPractical for Real-Time Java October 25, 2012 4 / 41

  5. Introduction Loop-Bound Analysis Heap Analysis Stack Analysis Conclusions ResAna ResAna Loop Bounds COSTA++ VeriFlux Inference module Rody Kersten Making Resource AnalysisPractical for Real-Time Java October 25, 2012 5 / 41

  6. Introduction Loop-Bound Analysis Heap Analysis Stack Analysis Conclusions ResAna: Loop Bound Analysis ResAna Loop Bounds COSTA++ VeriFlux Inference module Rody Kersten Making Resource AnalysisPractical for Real-Time Java October 25, 2012 6 / 41

  7. Introduction Loop-Bound Analysis Heap Analysis Stack Analysis Conclusions ResAna: Heap Analysis ResAna Loop Bounds COSTA++ VeriFlux Inference module Rody Kersten Making Resource AnalysisPractical for Real-Time Java October 25, 2012 7 / 41

  8. Introduction Loop-Bound Analysis Heap Analysis Stack Analysis Conclusions ResAna: Stack Analysis ResAna Loop Bounds COSTA++ VeriFlux Inference module Rody Kersten Making Resource AnalysisPractical for Real-Time Java October 25, 2012 8 / 41

  9. Introduction Loop-Bound Analysis Heap Analysis Stack Analysis Conclusions Loop Bound Analysis ResAna Loop Bounds COSTA++ VeriFlux Inference module Rody Kersten Making Resource AnalysisPractical for Real-Time Java October 25, 2012 9 / 41

  10. Introduction Loop-Bound Analysis Heap Analysis Stack Analysis Conclusions Ranking Function • Decreases in every basic block • Here: in every loop iteration • Bounded by zero 1 while ( i < 15) { 2 i ++; 3 } • Ranking function for the loop above is 15 − i Rody Kersten Making Resource AnalysisPractical for Real-Time Java October 25, 2012 10 / 41

  11. Introduction Loop-Bound Analysis Heap Analysis Stack Analysis Conclusions Prerequisite for Resource Analysis 1 while ( i < 15) { 2 consumeResource ( ) ; 3 i ++; 4 } Rody Kersten Making Resource AnalysisPractical for Real-Time Java October 25, 2012 11 / 41

  12. Introduction Loop-Bound Analysis Heap Analysis Stack Analysis Conclusions Applicable Loops • The basic polynomial interpolation method considers loops with conditions in the following form: C := sC | C 1 ∧ C 2 sC := e 1 [ <, >, ≤ , ≥ , = , � =] e 2 • where e i are arithmetical expressions • i.e. conjunctions over arithmetical (in)equalities Rody Kersten Making Resource AnalysisPractical for Real-Time Java October 25, 2012 12 / 41

  13. Introduction Loop-Bound Analysis Heap Analysis Stack Analysis Conclusions Test-Based Approach 1 Instrument loop with a counter � d + k 2 Do test runs for a set of N k � d = input values satisfying k NCA and the exit condition 3 Interpolate a polynomial from the results Rody Kersten Making Resource AnalysisPractical for Real-Time Java October 25, 2012 13 / 41

  14. Introduction Loop-Bound Analysis Heap Analysis Stack Analysis Conclusions Test-Based Approach 1 Instrument loop with a counter � d + k 2 Do test runs for a set of N k � d = input values satisfying k NCA and the exit condition 3 Interpolate a polynomial from the results Rody Kersten Making Resource AnalysisPractical for Real-Time Java October 25, 2012 13 / 41

  15. Introduction Loop-Bound Analysis Heap Analysis Stack Analysis Conclusions Test-Based Approach 1 Instrument loop with a counter � d + k 2 Do test runs for a set of N k � d = input values satisfying k NCA and the exit condition 3 Interpolate a polynomial from the results Rody Kersten Making Resource AnalysisPractical for Real-Time Java October 25, 2012 13 / 41

  16. Introduction Loop-Bound Analysis Heap Analysis Stack Analysis Conclusions Quadratic Example public void m(int a, int b, int c) { while (a > 0 && c <= b && c > 0) { if ( c == b ) { a−−; c = 0; } c++; Test runs } } 1 st group: degree 2 NCA on plane a=1, b=1, c=1 => count=1 a=1, b=1, c=2 => count=2 a=1, b=1, c=3 => count=3 public int m(int a, int b, int c) { a=1, b=2, c=2 => count=1 int count=0; Find the interpolating a=1, b=2, c=3 => count=2 while (a > 0 && c <= b && c > 0) { polynomial and generate a=1, b=3, c=3 => count=1 if ( c == b ) { a−−; c = 0; } the method annotated c++; with the corresponding 2 nd group: degree 1 NCA on plane count++; ranking function: a=2, b=1, c=1 => count=2 } RF(a, b, c) = a*b – c + 1 a=2, b=1, c=2 => count=4 return count; a=2, b=2, c=2 => count=3 } 3 rd group: degree 0 NCA on plane a=3, b=1, c=1 => count=3 Expected degree of polynomial (here: d=2) Rody Kersten Making Resource AnalysisPractical for Real-Time Java October 25, 2012 14 / 41

  17. Introduction Loop-Bound Analysis Heap Analysis Stack Analysis Conclusions Soundness • The procedure itself is unsound • Use external prover to verify the inferred ranking functions • KeY: http://www.key-project.org/ • Ranking function can be expressed in JML as a decreases clause 1 //@ d e c r e a s e s i < 15 ? 15 − i : 0; 2 while ( i < 15) { 3 i ++; 4 } Rody Kersten Making Resource AnalysisPractical for Real-Time Java October 25, 2012 15 / 41

  18. Introduction Loop-Bound Analysis Heap Analysis Stack Analysis Conclusions Helicopter View Not verifiable automatically Manual steps Annotated Java generated method Test-based External source with a chosen loop inference checking tool Verified RF procedure (KeY) Rejection: repeat testing with a higher degree Rody Kersten Making Resource AnalysisPractical for Real-Time Java October 25, 2012 16 / 41

  19. Introduction Loop-Bound Analysis Heap Analysis Stack Analysis Conclusions Further Reading O. Shkaravska, R. Kersten, M. van Eekelen. Test-Based Inference of Polynomial Loop-Bound Functions. PPPJ’10: Proceedings of the 8th International Conference on the Principles and Practice of Programming in Java http://resourceanalysis.cs.ru.nl/ Rody Kersten Making Resource AnalysisPractical for Real-Time Java October 25, 2012 17 / 41

  20. Introduction Loop-Bound Analysis Heap Analysis Stack Analysis Conclusions Heap Analysis ResAna Loop Bounds COSTA++ VeriFlux Inference module Rody Kersten Making Resource AnalysisPractical for Real-Time Java October 25, 2012 18 / 41

  21. Introduction Loop-Bound Analysis Heap Analysis Stack Analysis Conclusions The COSTA System COSTA = COSt and Termination Analyzer for Java Bytecode Universidad Complutense de Universidad Polit´ ecnica de Madrid (UCM) Madrid (UPM) Elvira Albert Germ´ an Puebla Puri Arenas Damiano Zanardini Samir Genaim Abu Naser Masud Diego Alonso Diana Ramrez Jes´ us Correas Jos´ e Miguel Rojas Miguel G´ omez-Zamalloa Guillermo Rom´ an Aim: Compute an upper bound to the cost of a given program in terms of the size of the input. Rody Kersten Making Resource AnalysisPractical for Real-Time Java October 25, 2012 19 / 41

  22. Introduction Loop-Bound Analysis Heap Analysis Stack Analysis Conclusions The COSTA System Approach based on [Wegbreit 1975]: 1 Given a program and a cost model, produce a set of equations specifying the cost of the program. COSTA public void f( int n) { while (n > 0) { int [] array = new int [n]; n--; } } 2 Compute a nonrecursive form of the solution (closed form) f ( n ) = 4 n 2 Rody Kersten Making Resource AnalysisPractical for Real-Time Java October 25, 2012 20 / 41

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