Proceedings of the 4th International Symposium on Memory Management 2004
DOI: 10.1145/1029873.1029877
|View full text |Cite
|
Sign up to set email alerts
|

Mostly concurrent compaction for mark-sweep GC

Abstract: A memory manager that does not move objects may suffer from memory fragmentation. Compaction is an efficient, and sometimes inevitable, mechanism for reducing fragmentation. A Mark-Sweep garbage collector must occasionally execute a compaction, usually while the application is suspended. Compaction during pause time can have detrimental effects for interactive applications that require guarantees for maximal pause time. This work presents a method for reducing the pause time created by compaction at a negligib… Show more

Help me understand this report

Search citation statements

Order By: Relevance

Paper Sections

Select...
2
1
1
1

Citation Types

0
22
0

Year Published

2005
2005
2023
2023

Publication Types

Select...
3
1
1

Relationship

0
5

Authors

Journals

citations
Cited by 25 publications
(22 citation statements)
references
References 24 publications
0
22
0
Order By: Relevance
“…Because compactors would move objects, they are frequently employed as an auxiliary method to curb memory fragmentation for non-moving collectors [22] [21]. To take advantage of compactors' space efficiency over copying collectors, [16] designs a hot-swapping mechanism based on memory residency, and [10] resorts to compaction in case when its copying reserve prediction falls through.…”
Section: Compact Collectorsmentioning
confidence: 99%
“…Because compactors would move objects, they are frequently employed as an auxiliary method to curb memory fragmentation for non-moving collectors [22] [21]. To take advantage of compactors' space efficiency over copying collectors, [16] designs a hot-swapping mechanism based on memory residency, and [10] resorts to compaction in case when its copying reserve prediction falls through.…”
Section: Compact Collectorsmentioning
confidence: 99%
“…Some compaction algorithms use the virtual memory mechanism to achieve short pause time [11,9]. Although this mechanism is supported in most desktop PCs and server machines, it is not always available in poor environments such as mobile phones.…”
Section: Related Workmentioning
confidence: 99%
“…during compaction. Although there are several incremental compaction algorithms [5,13,11,9], some of them do not reduce the maximum pause time to a level comparable to incremental GC algorithms and the others require readbarriers. Read-barriers involve a large overhead in a situation where no dedicated hardware such as a page protection mechanism is available.…”
Section: Introductionmentioning
confidence: 99%
“…Both Appel [2] [3] and Ossia [25] protect pages that may contain objects with non-forwarded pointers (initially all pages). Accessing a protected page causes an OS trap which the GC handles by forwarding all pointers on that page, then clearing the page protection.…”
Section: Related Workmentioning
confidence: 99%