basics of garbage collection
play

Basics of Garbage Collection Merlin Laue Universitt zu Lbeck 9. - PowerPoint PPT Presentation

Motivation Problems Algorithms Exact vs. Conservative Conclusion Basics of Garbage Collection Merlin Laue Universitt zu Lbeck 9. November 2015 Merlin Laue (Uni Lbeck) Basics of Garbage Collection 9. November 2015 1 Motivation


  1. Motivation Problems Algorithms Exact vs. Conservative Conclusion Basics of Garbage Collection Merlin Laue Universität zu Lübeck 9. November 2015 Merlin Laue (Uni Lübeck) Basics of Garbage Collection 9. November 2015 1

  2. Motivation Algorithms 9. November 2015 Basics of Garbage Collection Merlin Laue (Uni Lübeck) Conclusion 5 Exact vs. Conservative 4 3 Problems Problems 2 Motivation 1 Table of Contents Conclusion Exact vs. Conservative Algorithms 2

  3. Motivation Problems Algorithms Exact vs. Conservative Conclusion Motivation Managing memory manually is time consuming Very precise work required to prevent memory leaks Merlin Laue (Uni Lübeck) Basics of Garbage Collection 9. November 2015 3 Solution → Automatic memory management

  4. Motivation view it mutates the graph of objects. 9. November 2015 Basics of Garbage Collection Merlin Laue (Uni Lübeck) a linked list. Newly freed memory is added to the list. A free-list works by linking unallocated regions of memory together in Definition (Free-list) code. Its name is based on the fact that from the collector’s point of Problems A mutator is part of a running program which executes application Definition (Mutator) Basic Terms Conclusion Exact vs. Conservative Algorithms 4

  5. Motivation Problems Algorithms Exact vs. Conservative Conclusion Timings Merlin Laue (Uni Lübeck) Basics of Garbage Collection 9. November 2015 5

  6. Motivation Problems Algorithms Exact vs. Conservative Conclusion Problems Merlin Laue (Uni Lübeck) Basics of Garbage Collection 9. November 2015 6 1 Memory Usage 2 Fragmentation 3 Determinism 4 Time Effiency

  7. Motivation Problems Algorithms Exact vs. Conservative Conclusion Memory Usage Free-lists or tables Overhead consisting of state, location, or size of an object Copy spaces and Barriers Finalization Cyclic data structures Merlin Laue (Uni Lübeck) Basics of Garbage Collection 9. November 2015 7

  8. Motivation Problems Algorithms Exact vs. Conservative Conclusion Fragmentation Method of collection is a big influence Performance can drop drasticially. Countering fragmentation is expensive if it is not inherently implemented Merlin Laue (Uni Lübeck) Basics of Garbage Collection 9. November 2015 8

  9. Motivation Problems Algorithms Exact vs. Conservative Conclusion Determinism Finalization most important influence Occupation of shared resources can be problematic Merlin Laue (Uni Lübeck) Basics of Garbage Collection 9. November 2015 9 Destructor → Immediate freeing Finalization → Unforseeable

  10. Motivation Problems Algorithms Exact vs. Conservative Conclusion Time Efficiency Garbage collection show close affinity to the amount of allocated memory Number of collection cycles < Mutator Locality with contiguous allocation Merlin Laue (Uni Lübeck) Basics of Garbage Collection 9. November 2015 10

  11. Motivation Problems Algorithms Exact vs. Conservative Conclusion Algorithms Merlin Laue (Uni Lübeck) Basics of Garbage Collection 9. November 2015 11 1 Semi Space 2 Reference Counting 3 Mark and Sweep 4 Mark and Compact 5 Generational

  12. Motivation Problems Algorithms Exact vs. Conservative Conclusion Semi Space Requires 2 spaces : To-Space and From-Space Collection time is proportional to the number of survivors inhabiting the full copy space Collects the entire heap everytime ’Stop the World’ - collector Merlin Laue (Uni Lübeck) Basics of Garbage Collection 9. November 2015 12

  13. Motivation Problems Algorithms Exact vs. Conservative Conclusion complementary half Merlin Laue (Uni Lübeck) Basics of Garbage Collection 9. November 2015 13 1 Swaps both spaces 2 Traces all root referents and copies uncopied objects to the 3 Leaves forwarding pointers in the old object 4 Adjusts references to point towards the new adress.

  14. Motivation Problems Algorithms Exact vs. Conservative Conclusion Reference Counting Uses free-lists to note the amount of references pointing towards any given object Requires write barriers to count The burden on the mutator is significantly increased Cyclic data structures are a big problem ’Stop the World’ - collector Merlin Laue (Uni Lübeck) Basics of Garbage Collection 9. November 2015 14

  15. Motivation Problems Algorithms Exact vs. Conservative Conclusion free-list set mand all all references are recursivly decreased Merlin Laue (Uni Lübeck) Basics of Garbage Collection 9. November 2015 15 1 Upon first allocation an entry in the free-list is created 2 The write barrier records increases and decreases of references 3 Afterwards the amount of references is only buffered in the 4 If the references of an object reach 0 then a bit in the free-list is

  16. Motivation Problems Algorithms Exact vs. Conservative Conclusion Mark and Sweep Uses a free-list with a tracing collection Uses a bitmap to mark objects 2 Phases of collection : Marking and Sweeping, hence its name Handles cycles due to whole heap scanning Severe fragmentation ’Stop the World’ - collector Merlin Laue (Uni Lübeck) Basics of Garbage Collection 9. November 2015 16

  17. Motivation Problems Algorithms Exact vs. Conservative Conclusion these parts Merlin Laue (Uni Lübeck) Basics of Garbage Collection 9. November 2015 17 1 Stopping of the program and mutator activity 2 Marking of alive objects 3 Sweeping : Scanning the heap for unmarked objects and freeing 4 Resuming mutator activity when reaching the end of the heap

  18. Motivation Problems Algorithms Exact vs. Conservative Conclusion Mark and Compact Essentially a Mark and Sweep algorithm Better allocation times due to compact memory Memory efficient if only the objects are observed Overhead for forwarding pointers extremely big 3 runs for each compacing phase Merlin Laue (Uni Lübeck) Basics of Garbage Collection 9. November 2015 18

  19. Motivation Problems Algorithms Exact vs. Conservative Conclusion Merlin Laue (Uni Lübeck) Basics of Garbage Collection 9. November 2015 19 1 Marking of alive objects 2 Compute forwarding adresses 3 Update pointers for the referents 4 Relocation of objects

  20. Motivation 2 9. November 2015 Basics of Garbage Collection Merlin Laue (Uni Lübeck) (Generational collectors are hybrids) Use the different algorithms to collect each generation Promote objects who survive collection to an older generation Permanent 3 mature Young (Nursery) Problems 1 Partition the memory in 3 generations: much longer. Newly created objects tend to die very young while old objects persist Theorem (Weak generational Hypothesis) A new View : Generational Conclusion Exact vs. Conservative Algorithms 20

  21. Motivation Problems Algorithms Exact vs. Conservative Conclusion Different size policies for the young generation: 1 Flexible - Expands and retracts with collection and allocation 2 Fixed - Fixed size which will never expand or retract 3 Bound - Uses upper and lower boundry Merlin Laue (Uni Lübeck) Basics of Garbage Collection 9. November 2015 21

  22. Motivation Problems Algorithms Exact vs. Conservative Conclusion Merlin Laue (Uni Lübeck) Basics of Garbage Collection 9. November 2015 22

  23. Motivation Definition (Conservative) 9. November 2015 Basics of Garbage Collection Merlin Laue (Uni Lübeck) valid reference. These references are called ambigiuous references. a reference and then makes the conservative assumption that it is a the memory (most notably the execution stack) for words looking like A conservative collection algorithm ’guesses’ the references. It scans used for exact collection making them uncooperative exact. Problems case of strongly typed languages such as C, a shadowstack has to be Exact algorithms are assisted by the compiler and language runtime. In Definition (Exact) Worlds collide - Exact vs. Conservative Conclusion Exact vs. Conservative Algorithms 23

  24. Motivation Excess retention 9. November 2015 Basics of Garbage Collection Merlin Laue (Uni Lübeck) conservative algorithms Immix collectors are a recent way to show heavily optimized Excess retention is space overhead Filtering adds additional workload Pinning incurs fragmentation 3 Problems Filtering 2 Pinning 1 Leads to 3 major restrictions and drawbacks: Conclusion Exact vs. Conservative Algorithms 24

  25. Motivation collectors 9. November 2015 Basics of Garbage Collection Merlin Laue (Uni Lübeck) future. The Performance of garbage collection will steadily increase in the Garbage collection does not necessarily need support. Compiler and language runtime limit the choice of garbage Problems collections Locality of the mutator is more important then the number of Conclusion Conclusion Exact vs. Conservative Algorithms 25

  26. Motivation Problems Algorithms Exact vs. Conservative Conclusion Thank you for your attention Feel free to ask questions Merlin Laue (Uni Lübeck) Basics of Garbage Collection 9. November 2015 26

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