mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-22 12:04:39 +02:00
8144067: Pass obj directly to G1ParScanThreadState::update_rs
Reviewed-by: tschatzl, mgerdin
This commit is contained in:
parent
86d5c93087
commit
caaac8e679
3 changed files with 4 additions and 4 deletions
|
@ -98,10 +98,10 @@ class G1ParScanThreadState : public CHeapObj<mtGC> {
|
|||
|
||||
template <class T> void push_on_queue(T* ref);
|
||||
|
||||
template <class T> void update_rs(HeapRegion* from, T* p) {
|
||||
template <class T> void update_rs(HeapRegion* from, T* p, oop o) {
|
||||
// If the new value of the field points to the same region or
|
||||
// is the to-space, we don't need to include it in the Rset updates.
|
||||
if (!from->is_in_reserved(oopDesc::load_decode_heap_oop(p)) && !from->is_young()) {
|
||||
if (!from->is_in_reserved(o) && !from->is_young()) {
|
||||
size_t card_index = ctbs()->index_for(p);
|
||||
// If the card hasn't been added to the buffer, do it.
|
||||
if (ctbs()->mark_card_deferred(card_index)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue