short term memory for self collecting mutators
play

Short-term Memory for Self-collecting Mutators Martin Aigner, Andreas - PowerPoint PPT Presentation

Introduction Self-collecting Mutators Implementation Experiments Short-term Memory for Self-collecting Mutators Martin Aigner, Andreas Haas , Christoph M. Kirsch, Michael Lippautz, Ana Sokolova, Stephanie Stroka, Andreas Unterweger University


  1. Introduction Self-collecting Mutators Implementation Experiments Short-term Memory for Self-collecting Mutators Martin Aigner, Andreas Haas , Christoph M. Kirsch, Michael Lippautz, Ana Sokolova, Stephanie Stroka, Andreas Unterweger University of Salzburg October 12, 2010

  2. Introduction Self-collecting Mutators Implementation Experiments Heap Management Heap Management heap

  3. Introduction Self-collecting Mutators Implementation Experiments Heap Management Heap Management heap needed

  4. Introduction Self-collecting Mutators Implementation Experiments Heap Management Heap Management heap not needed needed

  5. Introduction Self-collecting Mutators Implementation Experiments Heap Management Heap Management heap needed reachable

  6. Introduction Self-collecting Mutators Implementation Experiments Heap Management Heap Management heap unreachable needed reachable

  7. Introduction Self-collecting Mutators Implementation Experiments Heap Management Heap Management heap explicit unreachable memory management deallocates here needed reachable

  8. Introduction Self-collecting Mutators Implementation Experiments Heap Management Heap Management heap explicit unreachable memory management deallocates here needed reachable - memory leaks

  9. Introduction Self-collecting Mutators Implementation Experiments Heap Management Heap Management heap explicit unreachable memory management deallocates here needed reachable - memory leaks - dangling pointers

  10. Introduction Self-collecting Mutators Implementation Experiments Heap Management Heap Management heap explicit garbage unreachable memory collectors management deallocate deallocates here here needed reachable - memory leaks - dangling pointers

  11. Introduction Self-collecting Mutators Implementation Experiments Heap Management Heap Management heap explicit garbage unreachable memory collectors management deallocate deallocates here here needed reachable - memory leaks - tracing - dangling pointers

  12. Introduction Self-collecting Mutators Implementation Experiments Heap Management Heap Management heap explicit garbage unreachable memory collectors management deallocate deallocates here here needed reachable - memory leaks - tracing - dangling pointers - reference counting

  13. Introduction Self-collecting Mutators Implementation Experiments Heap Management Heap Management heap explicit garbage unreachable memory collectors management deallocate deallocates here here needed reachable - memory leaks - tracing - dangling pointers - reference counting - reachable memory leaks

  14. Introduction Self-collecting Mutators Implementation Experiments Persistent Memory Model Persistent Memory Model Allocated memory objects are guaranteed to exist until deallocation Explicit deallocation is not safe (dangling pointers) and can be space-unbounded (memory leaks) Implicit deallocation (unreachable objects) is safe but may be slow or space-consuming (proportional to the size of live memory) and can still be space-unbounded (memory leaks)

  15. Introduction Self-collecting Mutators Implementation Experiments Short-term Memory Short-term Memory Memory objects are only guaranteed to exist for a finite amount of time Memory objects are allocated with a given expiration date Memory objects are neither explicitly nor implicitly deallocated but may be refreshed to extend their expiration date

  16. Introduction Self-collecting Mutators Implementation Experiments Short-term Memory Short-term Memory With short-term memory programmers or algorithms specify which memory objects are still needed and not which memory objects are not needed anymore!

  17. Introduction Self-collecting Mutators Implementation Experiments Short-term Memory Short-term Memory heap unreachable not expired needed reachable

  18. Introduction Self-collecting Mutators Implementation Experiments Short-term Memory Short-term Memory heap not expired needed reachable conservative refresh

  19. Introduction Self-collecting Mutators Implementation Experiments Short-term Memory Short-term Memory heap conservative expiration not expired needed reachable conservative refresh

  20. Introduction Self-collecting Mutators Implementation Experiments Short-term Memory Short-term Memory - Sources of Errors Memory leaks When not-needed objects are continuously refreshed When time does not advance Dangling Pointers When needed objects are not refreshed

  21. Introduction Self-collecting Mutators Implementation Experiments Self-collecting Mutators

  22. Introduction Self-collecting Mutators Implementation Experiments Programming Model Programming Model Explicit memory management The programmer (or an algorithm) adds memory management calls to the program code Hybrid approach for backward compatibility Per default objects are allocated as persistent and managed by the existing memory management (malloc/free, garbage collection) A refresh-call makes an object short-term, e.g. the objects gets an expiration date

  23. Introduction Self-collecting Mutators Implementation Experiments Expiration Date Programming Model - Expiration Date An object gets an expiration date when it gets refreshed and is then managed by our system A programmer refreshes objects explicitly Every refresh-call creates a new expiration date for an object The object expires when all its expiration dates are expired

  24. Introduction Self-collecting Mutators Implementation Experiments Time Programming Model - Time A software clock is used for object expiration An integer counter which is increased by tick-calls An expiration date has expired when its value is less than the time of the software clock Every thread has its own thread-local clock Expiration dates expire according to the clock of the thread which created the expiration date

  25. Introduction Self-collecting Mutators Implementation Experiments Examples Example - Monte Carlo monteCarlo ( int r e p e t i t i o n s ) { Vector r e s u l t s = new Vector ( r e p e t i t i o n s ) ; for ( int i = 0; i < r e p e t i t i o n s ; i++) { RandomWalk walk = createRandomWalk ( ) ; r e s u l t s . add ( d o C a l c u l a t i o n ( walk ) ; } e v a l u a t e R e s u l t s ( r e s u l t s ) ; }

  26. Introduction Self-collecting Mutators Implementation Experiments Examples Example - Monte Carlo monteCarlo ( int r e p e t i t i o n s ) { Vector r e s u l t s = new Vector ( r e p e t i t i o n s ) ; for ( int i = 0; i < r e p e t i t i o n s ; i++) { RandomWalk walk = createRandomWalk ( ) ; SCM. r e f r e s h ( walk , 0 ) ; r e s u l t s . add ( d o C a l c u l a t i o n ( walk ) ; SCM. t i c k ( ) ; } e v a l u a t e R e s u l t s ( r e s u l t s ) ; }

  27. Introduction Self-collecting Mutators Implementation Experiments Examples Example - x264 Video Encoder input frames output concurrent reference buffers 5 push_unused 4 1 unused 6 frame pool or malloc pop_unused refresh 2 2 processing unit 3 tick 7

  28. Introduction Self-collecting Mutators Implementation Experiments Examples Other Use Cases benchmark LoC tick refresh free aux total mpg123 16043 1 0 (-)43 0 44 JLayer 8247 1 6 0 2 9 Monte Carlo 1450 1 3 0 2 6 LuIndex 74584 2 15 0 3 20 Table: Use cases of short-term memory: lines of code of the benchmark, number of tick-calls, number of refresh-calls, number of free-calls, number of auxiliary lines of code, and total number of modified lines of code.

  29. Introduction Self-collecting Mutators Implementation Experiments Implementation

  30. Introduction Self-collecting Mutators Implementation Experiments Implementation Our implementation is called self-collecting mutators (SCM) The threads (mutators) of a program collect their expired objects by themselves At memory management calls a constant number of expired objects are collected We have implementations in C, Java and Go The C implementation is based on ptmalloc2 The Java implementation is based on the Jikes RVM For the Go implementation we extended the 6g Go runtime Available at: tiptoe.cs.uni-salzburg.at/short-term-memory

  31. Introduction Self-collecting Mutators Implementation Experiments Descriptors Implementation - Descriptors An Object can have multiple expiration dates An expiration date is represented by a descriptor, which stores the expiration date and a pointer to the object For each expiration date of an object there exists one descriptor Every object contains a descriptor counter (1 word) in its header which counts the number of descriptors pointing to it 1 Descriptor Object 4 Pointer to Expiration the object Date

  32. Introduction Self-collecting Mutators Implementation Experiments Descriptors Implementation - Descriptors Buffer 2 7 time=4 4 3 4 6 5 expired 5 3 2 descriptor 1 5 7 5 4 4 1 6 5 3 not-expired 7 1 descriptor 6 7 5 7 3

  33. Introduction Self-collecting Mutators Implementation Experiments Descriptors Implementation - Descriptor Buffer time=4 4 5 6 7 expired descriptor list

  34. Introduction Self-collecting Mutators Implementation Experiments Descriptors Implementation - Descriptor Buffer time = 4 maximal expiration extension = 3 4 4 mod 4 = 0 5 5 mod 4 = 1 6 mod 4 = 2 6 7 mod 4 = 3 7 expired descriptor list

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