< prev index next >

src/hotspot/share/gc/g1/g1RemSet.hpp

Print this page
rev 53581 : [mq]: move_files
rev 53582 : imported patch rename


   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_GC_G1_G1REMSET_HPP
  26 #define SHARE_GC_G1_G1REMSET_HPP
  27 
  28 #include "gc/g1/dirtyCardQueue.hpp"
  29 #include "gc/g1/g1CardTable.hpp"
  30 #include "gc/g1/g1OopClosures.hpp"
  31 #include "gc/g1/g1GCPhaseTimes.hpp"
  32 #include "gc/g1/g1RemSetSummary.hpp"
  33 #include "gc/g1/heapRegion.hpp"
  34 #include "memory/allocation.hpp"
  35 #include "memory/iterator.hpp"
  36 #include "utilities/ticks.hpp"
  37 
  38 // A G1RemSet provides ways of iterating over pointers into a selected
  39 // collection set.
  40 
  41 class BitMap;
  42 class CardTableBarrierSet;
  43 class G1BlockOffsetTable;
  44 class CodeBlobClosure;
  45 class G1CollectedHeap;
  46 class G1CMBitMap;
  47 class G1HotCardCache;
  48 class G1RemSetScanState;




   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_GC_G1_G1REMSET_HPP
  26 #define SHARE_GC_G1_G1REMSET_HPP
  27 

  28 #include "gc/g1/g1CardTable.hpp"
  29 #include "gc/g1/g1OopClosures.hpp"
  30 #include "gc/g1/g1GCPhaseTimes.hpp"
  31 #include "gc/g1/g1RemSetSummary.hpp"
  32 #include "gc/g1/heapRegion.hpp"
  33 #include "memory/allocation.hpp"
  34 #include "memory/iterator.hpp"
  35 #include "utilities/ticks.hpp"
  36 
  37 // A G1RemSet provides ways of iterating over pointers into a selected
  38 // collection set.
  39 
  40 class BitMap;
  41 class CardTableBarrierSet;
  42 class G1BlockOffsetTable;
  43 class CodeBlobClosure;
  44 class G1CollectedHeap;
  45 class G1CMBitMap;
  46 class G1HotCardCache;
  47 class G1RemSetScanState;


< prev index next >