diff src/share/vm/prims/jni.cpp @ 12305:a19bea467577

7163191: G1: introduce a "heap spanning table" abstraction Summary: Add G1BiasedArray<T> that is an array where each element represents a fixed-sized subdivision of the heap. Use this abstraction to refactor the HeapRegionSeq class. Reviewed-by: brutisso
author tschatzl
date Wed, 25 Sep 2013 13:25:24 +0200
parents da051ce490eb
children 03f493ce3a71
line wrap: on
line diff
--- a/src/share/vm/prims/jni.cpp	Tue Sep 24 10:14:02 2013 +0200
+++ b/src/share/vm/prims/jni.cpp	Wed Sep 25 13:25:24 2013 +0200
@@ -5047,6 +5047,9 @@
 void TestReserveMemorySpecial_test();
 void TestVirtualSpace_test();
 void MetaspaceAux_test();
+#if INCLUDE_ALL_GCS
+void TestG1BiasedArray_test();
+#endif
 
 void execute_internal_vm_tests() {
   if (ExecuteInternalVMTests) {
@@ -5066,6 +5069,7 @@
     run_unit_test(VMStructs::test());
 #endif
 #if INCLUDE_ALL_GCS
+    run_unit_test(TestG1BiasedArray_test());
     run_unit_test(HeapRegionRemSet::test_prt());
 #endif
     tty->print_cr("All internal VM tests passed");