the closer automating resource management in java
play

The CLOSER: Automating Resource Management in Java Isil Dillig - PowerPoint PPT Presentation

The CLOSER: Automating Resource Management in Java The CLOSER: Automating Resource Management in Java Isil Dillig Thomas Dillig Eran Yahav Satish Chandra Computer Science Department IBM T.J. Watson Research Center Stanford University ISMM


  1. The CLOSER: Automating Resource Management in Java Interest Reachability Listener Observed

  2. The CLOSER: Automating Resource Management in Java Interest Reachability o.removeListener(l) Listener Observed

  3. The CLOSER: Automating Resource Management in Java Interest Reachability Listener Observed

  4. The CLOSER: Automating Resource Management in Java How to Achieve this Goal Recall: We want to guarantee that a resource is disposed as soon as it becomes unreachable through interest links.

  5. The CLOSER: Automating Resource Management in Java How to Achieve this Goal To achieve this goal:

  6. The CLOSER: Automating Resource Management in Java How to Achieve this Goal To achieve this goal: Whenever possible, statically identify the first program point where resource becomes unreachable through interest links

  7. The CLOSER: Automating Resource Management in Java How to Achieve this Goal To achieve this goal: Whenever possible, statically identify the first program point where resource becomes unreachable through interest links When this is not possible, identify the correct dispose point using a variation of reference counting.

  8. The CLOSER: Automating Resource Management in Java Problem: Resource Sharing A Font object is shared between two Window objects and should be disposed when last window is closed by the user: window1 window2 font

  9. The CLOSER: Automating Resource Management in Java Overview of Our Approach The user annotates: the set of primitive resources

  10. The CLOSER: Automating Resource Management in Java Overview of Our Approach class WorkbenchWindow { private Listener l; @Obligation(obligates = ‘‘removePerspectiveListener’’, resource=1) public void addPerspectiveListener(Listener l); . . . }

  11. The CLOSER: Automating Resource Management in Java Overview of Our Approach class WorkbenchWindow { private Listener l; @Obligation(obligates = ‘‘removePerspectiveListener’’, resource=1) public void addPerspectiveListener(Listener l); . . . }

  12. The CLOSER: Automating Resource Management in Java Overview of Our Approach class WorkbenchWindow { private Listener l; @Obligation(obligates = ‘‘removePerspectiveListener’’, resource=1) public void addPerspectiveListener(Listener l); . . . }

  13. The CLOSER: Automating Resource Management in Java Overview of Our Approach The user annotates: the set of primitive resources the set of non-interest-links

  14. The CLOSER: Automating Resource Management in Java Overview of Our Approach class WorkbenchWindow { @NonInterest private Listener l; @Obligation(obligates = ‘‘removePerspectiveListener’’, resource=1) public void addPerspectiveListener(Listener l); . . . }

  15. The CLOSER: Automating Resource Management in Java Overview of Our Approach The user annotates: the set of primitive resources the set of non-interest-links CLOSER infers: the set of higher-level resources

  16. The CLOSER: Automating Resource Management in Java Overview of Our Approach The user annotates: the set of primitive resources the set of non-interest-links CLOSER infers: the set of higher-level resources and later automatically synthesizes dispose methods.

  17. The CLOSER: Automating Resource Management in Java Overview of Our Approach The user annotates: the set of primitive resources the set of non-interest-links CLOSER infers: the set of higher-level resources and later automatically synthesizes dispose methods. CLOSER statically analyzes resource lifetimes to identify how and where each resource should be disposed.

  18. The CLOSER: Automating Resource Management in Java Overview of Our Approach The user annotates: the set of primitive resources the set of non-interest-links CLOSER infers: the set of higher-level resources and later automatically synthesizes dispose methods. CLOSER statically analyzes resource lifetimes to identify how and where each resource should be disposed. CLOSER automatically inserts any appropriate resource dispose calls into source code.

  19. The CLOSER: Automating Resource Management in Java Resource Interest Graph To effectively reason about resource lifetimes, CLOSER utilizes a novel flow-sensitive points-to graph, called the resource interest graph (RIG) .

  20. The CLOSER: Automating Resource Management in Java Resource Interest Graph To effectively reason about resource lifetimes, CLOSER utilizes a novel flow-sensitive points-to graph, called the resource interest graph (RIG) . Resource Interest Graph An RIG for a method m at a given point is a tuple � V, E, σ V , σ E � where: V is a finite set of abstract memory locations

  21. The CLOSER: Automating Resource Management in Java Resource Interest Graph To effectively reason about resource lifetimes, CLOSER utilizes a novel flow-sensitive points-to graph, called the resource interest graph (RIG) . Resource Interest Graph An RIG for a method m at a given point is a tuple � V, E, σ V , σ E � where: V is a finite set of abstract memory locations E is a set of directed edges between these locations

  22. The CLOSER: Automating Resource Management in Java Resource Interest Graph To effectively reason about resource lifetimes, CLOSER utilizes a novel flow-sensitive points-to graph, called the resource interest graph (RIG) . Resource Interest Graph An RIG for a method m at a given point is a tuple � V, E, σ V , σ E � where: V is a finite set of abstract memory locations E is a set of directed edges between these locations σ V is a mapping from abstract memory locations to a value in 3-valued logic, identifying whether that location may, must, or must-not be a resource

  23. The CLOSER: Automating Resource Management in Java Resource Interest Graph To effectively reason about resource lifetimes, CLOSER utilizes a novel flow-sensitive points-to graph, called the resource interest graph (RIG) . Resource Interest Graph An RIG for a method m at a given point is a tuple � V, E, σ V , σ E � where: V is a finite set of abstract memory locations E is a set of directed edges between these locations σ V is a mapping from abstract memory locations to a value in 3-valued logic, identifying whether that location may, must, or must-not be a resource σ E is a mapping from edges to a boolean value identifying whether that edge is an interest or non-interest edge

  24. this σ E (e ) = 1 A σ E (e ) = 0 σ v (A) =? buf socket listener B C D σ v (B) = 1 σ v (C) = 1 σ v (D) =? 1 1 1 1 1 1 The CLOSER: Automating Resource Management in Java Example RIG public class BufferPrinter { . . . public BufferPrinter(Buffer buf) { this.buf = buf; this.listener = new BufferListener(this); buf.addListener(listener); this.socket = new Socket(); socket.connect(); } }

  25. The CLOSER: Automating Resource Management in Java Example RIG this σ E (e ) = 1 public class BufferPrinter { A σ E (e ) = 0 σ v (A) =? . . . public BufferPrinter(Buffer buf) { this.buf = buf; buf socket this.listener = listener new BufferListener(this); buf.addListener(listener); B C D this.socket = new Socket(); socket.connect(); σ v (B) = 1 } σ v (C) = 1 σ v (D) =? } 1 1 1 1 1 1

  26. The CLOSER: Automating Resource Management in Java Higher-Level Resource Higher-Level Resource A class T is a higher-level resource if:

  27. The CLOSER: Automating Resource Management in Java Higher-Level Resource Higher-Level Resource A class T is a higher-level resource if: there exists a field l f of some instance of T

  28. The CLOSER: Automating Resource Management in Java Higher-Level Resource Higher-Level Resource A class T is a higher-level resource if: there exists a field l f of some instance of T such that σ V ( l f ) ⊒ 1

  29. The CLOSER: Automating Resource Management in Java Higher-Level Resource Higher-Level Resource A class T is a higher-level resource if: there exists a field l f of some instance of T such that σ V ( l f ) ⊒ 1 σ E ( l T × f → l f ) = true

  30. The CLOSER: Automating Resource Management in Java Higher-Level Resource Higher-Level Resource A class T is a higher-level resource if: there exists a field l f of some instance of T such that σ V ( l f ) ⊒ 1 σ E ( l T × f → l f ) = true If T is inferred to be a higher-level resource,

  31. The CLOSER: Automating Resource Management in Java Higher-Level Resource Higher-Level Resource A class T is a higher-level resource if: there exists a field l f of some instance of T such that σ V ( l f ) ⊒ 1 σ E ( l T × f → l f ) = true If T is inferred to be a higher-level resource, T ’s constructor becomes an obligating method

  32. The CLOSER: Automating Resource Management in Java Higher-Level Resource Higher-Level Resource A class T is a higher-level resource if: there exists a field l f of some instance of T such that σ V ( l f ) ⊒ 1 σ E ( l T × f → l f ) = true If T is inferred to be a higher-level resource, T ’s constructor becomes an obligating method and the dispose method synthesized by CLOSER becomes the corresponding fulfilling method.

  33. The CLOSER: Automating Resource Management in Java Higher-Level Resource Example this σ E (e ) = 1 A σ E (e ) = 0 σ v (A) = 1 socket buf listener B C D σ v (B) = 1 σ v (C) = 1 σ v (D) = 0 1 1 1 1 1 1

  34. The CLOSER: Automating Resource Management in Java Higher-Level Resource Example this σ E (e ) = 1 A σ E (e ) = 0 σ v (A) = 1 socket buf listener B C D σ v (B) = 1 σ v (C) = 1 σ v (D) = 0 1 1 1 1 1 1

  35. The CLOSER: Automating Resource Management in Java Resource Disposal Strategies CLOSER disposes of a resource in one of three ways:

  36. The CLOSER: Automating Resource Management in Java Resource Disposal Strategies CLOSER disposes of a resource in one of three ways: Strong static dispose

  37. The CLOSER: Automating Resource Management in Java Resource Disposal Strategies CLOSER disposes of a resource in one of three ways: Strong static dispose Dispose resource directly by calling fulfilling method No checks necessary

  38. The CLOSER: Automating Resource Management in Java Resource Disposal Strategies CLOSER disposes of a resource in one of three ways: Strong static dispose Dispose resource directly by calling fulfilling method No checks necessary Weak (conditional) static dispose

  39. The CLOSER: Automating Resource Management in Java Resource Disposal Strategies CLOSER disposes of a resource in one of three ways: Strong static dispose Dispose resource directly by calling fulfilling method No checks necessary Weak (conditional) static dispose Checks whether the resource’s obligating method was called before disposing it.

  40. The CLOSER: Automating Resource Management in Java Resource Disposal Strategies CLOSER disposes of a resource in one of three ways: Strong static dispose Dispose resource directly by calling fulfilling method No checks necessary Weak (conditional) static dispose Checks whether the resource’s obligating method was called before disposing it. Dynamic dispose

  41. The CLOSER: Automating Resource Management in Java Resource Disposal Strategies CLOSER disposes of a resource in one of three ways: Strong static dispose Dispose resource directly by calling fulfilling method No checks necessary Weak (conditional) static dispose Checks whether the resource’s obligating method was called before disposing it. Dynamic dispose Requires keeping a run-time “interest-count” Needed whenever CLOSER infers that resource may be shared.

  42. The CLOSER: Automating Resource Management in Java Solicitors CLOSER proves a resource is unshared if it can identify a unique solicitor for it.

  43. The CLOSER: Automating Resource Management in Java Solicitors CLOSER proves a resource is unshared if it can identify a unique solicitor for it. If o is a solicitor for resource r , it has the unique responsibility to dispose r .

  44. The CLOSER: Automating Resource Management in Java Solicitors CLOSER proves a resource is unshared if it can identify a unique solicitor for it. If o is a solicitor for resource r , it has the unique responsibility to dispose r .

  45. The CLOSER: Automating Resource Management in Java Solicitors CLOSER proves a resource is unshared if it can identify a unique solicitor for it. If o is a solicitor for resource r , it has the unique responsibility to dispose r .

  46. The CLOSER: Automating Resource Management in Java Solicitors CLOSER proves a resource is unshared if it can identify a unique solicitor for it. If o is a solicitor for resource r , it has the unique responsibility to dispose r . CLOSER infers a solicitor by:

  47. The CLOSER: Automating Resource Management in Java Solicitors CLOSER proves a resource is unshared if it can identify a unique solicitor for it. If o is a solicitor for resource r , it has the unique responsibility to dispose r . CLOSER infers a solicitor by: First computing a set of solicitor candidates from the resource interest graph for each point in the program

  48. The CLOSER: Automating Resource Management in Java Solicitors CLOSER proves a resource is unshared if it can identify a unique solicitor for it. If o is a solicitor for resource r , it has the unique responsibility to dispose r . CLOSER infers a solicitor by: First computing a set of solicitor candidates from the resource interest graph for each point in the program Then by doing data flow analysis to ensure that the inferred solicitor candidates “agree” at every program point.

  49. The CLOSER: Automating Resource Management in Java Inference of Solicitors To compute a solicitor candidate for resource r :

  50. The CLOSER: Automating Resource Management in Java Inference of Solicitors To compute a solicitor candidate for resource r : CLOSER first computes a set of paths P = � l, f 1 ◦ . . . ◦ f n , May / Must � that reach r

  51. The CLOSER: Automating Resource Management in Java Inference of Solicitors To compute a solicitor candidate for resource r : CLOSER first computes a set of paths P = � l, f 1 ◦ . . . ◦ f n , May / Must � that reach r It then applies a set of unification rules to determine the existence of a canonical path l.f 1 ...f n that may safely be used to dispose r

  52. The CLOSER: Automating Resource Management in Java Inference of Solicitors To compute a solicitor candidate for resource r : CLOSER first computes a set of paths P = � l, f 1 ◦ . . . ◦ f n , May / Must � that reach r It then applies a set of unification rules to determine the existence of a canonical path l.f 1 ...f n that may safely be used to dispose r If such a unique path exists, then l.f 1 ...f n is designated as a solicitor candidate for r

  53. The CLOSER: Automating Resource Management in Java Inference of Solicitors To compute a solicitor candidate for resource r : CLOSER first computes a set of paths P = � l, f 1 ◦ . . . ◦ f n , May / Must � that reach r It then applies a set of unification rules to determine the existence of a canonical path l.f 1 ...f n that may safely be used to dispose r If such a unique path exists, then l.f 1 ...f n is designated as a solicitor candidate for r If the inferred solicior candidates for r are consistent, then r is disposed through the cascading series of dispose calls initiated by l .dispose() , invoked after the last use point of l

  54. The CLOSER: Automating Resource Management in Java Solicitor Example toolBar button button image image pic R

  55. The CLOSER: Automating Resource Management in Java Solicitor Example toolBar ⊲ Inferred solicitor for R: toolBar.button button button image image pic R

  56. The CLOSER: Automating Resource Management in Java Solicitor Example toolBar ⊲ Inferred solicitor for R: toolBar.button button button ⊲ Image disposed via call chain: image image pic R

  57. The CLOSER: Automating Resource Management in Java Solicitor Example toolBar ⊲ Inferred solicitor for R: toolBar.button button button ⊲ Image disposed via call chain: toolBar.dispose() image image pic R

  58. The CLOSER: Automating Resource Management in Java Solicitor Example toolBar ⊲ Inferred solicitor for R: toolBar.button button button ⊲ Image disposed via call chain: toolBar.dispose() ↓ button.dispose() image image pic R

  59. The CLOSER: Automating Resource Management in Java Solicitor Example toolBar ⊲ Inferred solicitor for R: toolBar.button button button ⊲ Image disposed via call chain: toolBar.dispose() ↓ button.dispose() image image ↓ image.dispose() pic R

  60. The CLOSER: Automating Resource Management in Java Implementation Static Analysis: Builds on IBM WALA framework for analysis of Java byte code

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