comparison src/share/vm/memory/genRemSet.cpp @ 14518:d8041d695d19

Merged with jdk9/dev/hotspot changeset 3812c088b945
author twisti
date Tue, 11 Mar 2014 18:45:59 -0700
parents 284953caf7aa
children 4ca6dc0799b6
comparison
equal deleted inserted replaced
14141:f97c5ec83832 14518:d8041d695d19
1 /* 1 /*
2 * Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
29 29
30 // This kind of "BarrierSet" allows a "CollectedHeap" to detect and 30 // This kind of "BarrierSet" allows a "CollectedHeap" to detect and
31 // enumerate ref fields that have been modified (since the last 31 // enumerate ref fields that have been modified (since the last
32 // enumeration.) 32 // enumeration.)
33 33
34 uintx GenRemSet::max_alignment_constraint(Name nm) { 34 uintx GenRemSet::max_alignment_constraint() {
35 assert(nm == GenRemSet::CardTable, "Unrecognized GenRemSet type.");
36 return CardTableRS::ct_max_alignment_constraint(); 35 return CardTableRS::ct_max_alignment_constraint();
37 } 36 }
38 37
39 class HasAccumulatedModifiedOopsClosure : public KlassClosure { 38 class HasAccumulatedModifiedOopsClosure : public KlassClosure {
40 bool _found; 39 bool _found;