The title pretty much says it all - what are these self healing barriers and why are they important in Shenandoah 2.0?
Shenandoah self healing barriers
120 Views Asked by Eugene At
1
There are 1 best solutions below
Related Questions in JAVA
- new thread blocks main thread
- Extracting viewCount & SubscriberCount from YouTube API V3 for a given channel, where channelID does not equal userID
- Display images on Django Template Site
- Difference between list() and dict() with generators
- How can I serialize a numpy array while preserving matrix dimensions?
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Why is my program adding int as string (4+7 = 47)?
- store numpy array in mysql
- how to omit the less frequent words from a dictionary in python?
- Update a text file with ( new words+ \n ) after the words is appended into a list
Related Questions in GARBAGE-COLLECTION
- new thread blocks main thread
- Extracting viewCount & SubscriberCount from YouTube API V3 for a given channel, where channelID does not equal userID
- Display images on Django Template Site
- Difference between list() and dict() with generators
- How can I serialize a numpy array while preserving matrix dimensions?
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Why is my program adding int as string (4+7 = 47)?
- store numpy array in mysql
- how to omit the less frequent words from a dictionary in python?
- Update a text file with ( new words+ \n ) after the words is appended into a list
Related Questions in JVM
- new thread blocks main thread
- Extracting viewCount & SubscriberCount from YouTube API V3 for a given channel, where channelID does not equal userID
- Display images on Django Template Site
- Difference between list() and dict() with generators
- How can I serialize a numpy array while preserving matrix dimensions?
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Why is my program adding int as string (4+7 = 47)?
- store numpy array in mysql
- how to omit the less frequent words from a dictionary in python?
- Update a text file with ( new words+ \n ) after the words is appended into a list
Related Questions in SHENANDOAH
- new thread blocks main thread
- Extracting viewCount & SubscriberCount from YouTube API V3 for a given channel, where channelID does not equal userID
- Display images on Django Template Site
- Difference between list() and dict() with generators
- How can I serialize a numpy array while preserving matrix dimensions?
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Why is my program adding int as string (4+7 = 47)?
- store numpy array in mysql
- how to omit the less frequent words from a dictionary in python?
- Update a text file with ( new words+ \n ) after the words is appended into a list
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This explanation will piggy-back on the first part and the second part of some answers I tried to put around
Shenandoah 2.0
.To really answer this question we need to look at how the
load reference barrier
is implemented and how aGC cycle
acts, in general.When a certain
GC cycle
is triggered, it first chooses the regions with the most garbage; i.e.: objects that are in the collection set are very few (this will matter in the future). The simplest way to understand this topic is via an example. Suppose this is a scheme that now exists in a certain region:There is an object that exists in the region and there are two references pointing to it :
refA
andrefB
.GC
kicks in and this region is chosen to be garbage collected. At the same time there are active threads in the application that try to access this Object viarefA
andrefB
. Since this object isalive
at some point it needs to be evacuated to a new region (part of themark-compact
phase).So:
GC
is active and, at the same time, we read viarefA/refB
. When we do this reading we step on theload-reference-barrier
, implemented here. Notice how internally it has some "filters" (via a bunch ofif/else
statements). Specifically:it checks if "evacuation is currently in progress". This is done via a thread local flag that is set when evacuation first starts. Let's suppose the answer to this is : yes.
it checks if the object that we are currently operating on is in the "collection-set". This means it is currently marked as alive. Let's suppose this is "yes" also.
the last check is to find out if this object was already "copied" to a different region (it was evacuated). Let's suppose the answer to this is "no", i.e. :
obj == fwd
.At this point in time, a few things happen. First a copy is created and
mark
becomes forwardeeOnly later in the code, would
refA
andrefB
be updated to point to the new (copied) object. But that means an interesting thing. It means that untilrefA
andrefB
are actually made to point to the new object, the object that they currently point, is in the "collection set". So, if GC is active and even if theforwardee
has been established, theload-reference-barrier
still needs to do some work.So the very smart people behind
Shenandoah
said this : why not update the references there, immediately after theforwardee
has been established (or when theforwardee
is already known for other references)? And this is exactly what they did.Let's suppose we get back to our initial drawing:
And again, we "enable" all of the filter:
there is a Thread that reads via
refA
GC is active
the object behind
refA
andrefB
is alive.This is what will happen with "self healing barriers":
The difference is obvious:
refA
was moved to point to the new Object viaCAS
, on the spot. If there is going to be a read again viarefA
(GC is still active), this will result in a much faster load-reference-barrier execution. Why? becauserefA
points to an object that is not in the "collection set".But this also means that if we read via
refB
and see thatfwd != obj
- the code can do the same trick and update therefB
in place, at the time the first read happened viarefB
.This improves performance according to the people familiar with the matter, and I trust them.