test/gc/g1/TestGCLogMessages.java

Print this page
rev 6327 : 8019342: G1: High "Other" time most likely due to card redirtying
Summary: Parallelize card redirtying to decrease the time it takes.
Reviewed-by: brutisso


   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   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  * @test TestPrintGCDetails
  26  * @bug 8035406 8027295 8035398
  27  * @summary Ensure that the PrintGCDetails output for a minor GC with G1
  28  * includes the expected necessary messages.
  29  * @key gc
  30  * @library /testlibrary
  31  */
  32 
  33 import com.oracle.java.testlibrary.ProcessTools;
  34 import com.oracle.java.testlibrary.OutputAnalyzer;
  35 
  36 public class TestGCLogMessages {
  37   public static void main(String[] args) throws Exception {
  38     testNormalLogs();
  39     testWithToSpaceExhaustionLogs();
  40   }
  41 
  42   private static void testNormalLogs() throws Exception {
  43 
  44     ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-XX:+UseG1GC",
  45                                                               "-Xmx10M",
  46                                                               GCTest.class.getName());
  47 
  48     OutputAnalyzer output = new OutputAnalyzer(pb.start());
  49 
  50     output.shouldNotContain("[Redirty Cards");


  51     output.shouldNotContain("[Code Root Purge");
  52     output.shouldNotContain("[String Dedup Fixup");
  53     output.shouldNotContain("[Young Free CSet");
  54     output.shouldNotContain("[Non-Young Free CSet");
  55     output.shouldHaveExitValue(0);
  56 
  57     pb = ProcessTools.createJavaProcessBuilder("-XX:+UseG1GC",
  58                                                "-XX:+UseStringDeduplication",
  59                                                "-Xmx10M",
  60                                                "-XX:+PrintGCDetails",
  61                                                GCTest.class.getName());
  62 
  63     output = new OutputAnalyzer(pb.start());
  64 
  65     output.shouldContain("[Redirty Cards");


  66     output.shouldContain("[Code Root Purge");
  67     output.shouldContain("[String Dedup Fixup");
  68     output.shouldNotContain("[Young Free CSet");
  69     output.shouldNotContain("[Non-Young Free CSet");
  70     output.shouldHaveExitValue(0);
  71 
  72     pb = ProcessTools.createJavaProcessBuilder("-XX:+UseG1GC",
  73                                                "-XX:+UseStringDeduplication",
  74                                                "-Xmx10M",
  75                                                "-XX:+PrintGCDetails",
  76                                                "-XX:+UnlockExperimentalVMOptions",
  77                                                "-XX:G1LogLevel=finest",
  78                                                GCTest.class.getName());
  79 
  80     output = new OutputAnalyzer(pb.start());
  81 
  82     output.shouldContain("[Redirty Cards");


  83     output.shouldContain("[Code Root Purge");
  84     output.shouldContain("[String Dedup Fixup");
  85     output.shouldContain("[Young Free CSet");
  86     output.shouldContain("[Non-Young Free CSet");
  87 
  88     // also check evacuation failure messages once
  89     output.shouldNotContain("[Evacuation Failure");
  90     output.shouldNotContain("[Recalculate Used");
  91     output.shouldNotContain("[Remove Self Forwards");
  92     output.shouldNotContain("[Restore RemSet");
  93     output.shouldHaveExitValue(0);
  94   }
  95 
  96   private static void testWithToSpaceExhaustionLogs() throws Exception {
  97     ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-XX:+UseG1GC",
  98                                                "-Xmx10M",
  99                                                "-Xmn5M",
 100                                                "-XX:+PrintGCDetails",
 101                                                GCTestWithToSpaceExhaustion.class.getName());
 102 




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   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  * @test TestPrintGCDetails
  26  * @bug 8035406 8027295 8035398 8019342
  27  * @summary Ensure that the PrintGCDetails output for a minor GC with G1
  28  * includes the expected necessary messages.
  29  * @key gc
  30  * @library /testlibrary
  31  */
  32 
  33 import com.oracle.java.testlibrary.ProcessTools;
  34 import com.oracle.java.testlibrary.OutputAnalyzer;
  35 
  36 public class TestGCLogMessages {
  37   public static void main(String[] args) throws Exception {
  38     testNormalLogs();
  39     testWithToSpaceExhaustionLogs();
  40   }
  41 
  42   private static void testNormalLogs() throws Exception {
  43 
  44     ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-XX:+UseG1GC",
  45                                                               "-Xmx10M",
  46                                                               GCTest.class.getName());
  47 
  48     OutputAnalyzer output = new OutputAnalyzer(pb.start());
  49 
  50     output.shouldNotContain("[Redirty Cards");
  51     output.shouldNotContain("[Parallel Redirty");
  52     output.shouldNotContain("[Redirtied Cards");
  53     output.shouldNotContain("[Code Root Purge");
  54     output.shouldNotContain("[String Dedup Fixup");
  55     output.shouldNotContain("[Young Free CSet");
  56     output.shouldNotContain("[Non-Young Free CSet");
  57     output.shouldHaveExitValue(0);
  58 
  59     pb = ProcessTools.createJavaProcessBuilder("-XX:+UseG1GC",
  60                                                "-XX:+UseStringDeduplication",
  61                                                "-Xmx10M",
  62                                                "-XX:+PrintGCDetails",
  63                                                GCTest.class.getName());
  64 
  65     output = new OutputAnalyzer(pb.start());
  66 
  67     output.shouldContain("[Redirty Cards");
  68     output.shouldNotContain("[Parallel Redirty");
  69     output.shouldNotContain("[Redirtied Cards");
  70     output.shouldContain("[Code Root Purge");
  71     output.shouldContain("[String Dedup Fixup");
  72     output.shouldNotContain("[Young Free CSet");
  73     output.shouldNotContain("[Non-Young Free CSet");
  74     output.shouldHaveExitValue(0);
  75 
  76     pb = ProcessTools.createJavaProcessBuilder("-XX:+UseG1GC",
  77                                                "-XX:+UseStringDeduplication",
  78                                                "-Xmx10M",
  79                                                "-XX:+PrintGCDetails",
  80                                                "-XX:+UnlockExperimentalVMOptions",
  81                                                "-XX:G1LogLevel=finest",
  82                                                GCTest.class.getName());
  83 
  84     output = new OutputAnalyzer(pb.start());
  85 
  86     output.shouldContain("[Redirty Cards");
  87     output.shouldContain("[Parallel Redirty");
  88     output.shouldContain("[Redirtied Cards");
  89     output.shouldContain("[Code Root Purge");
  90     output.shouldContain("[String Dedup Fixup");
  91     output.shouldContain("[Young Free CSet");
  92     output.shouldContain("[Non-Young Free CSet");
  93 
  94     // also check evacuation failure messages once
  95     output.shouldNotContain("[Evacuation Failure");
  96     output.shouldNotContain("[Recalculate Used");
  97     output.shouldNotContain("[Remove Self Forwards");
  98     output.shouldNotContain("[Restore RemSet");
  99     output.shouldHaveExitValue(0);
 100   }
 101 
 102   private static void testWithToSpaceExhaustionLogs() throws Exception {
 103     ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-XX:+UseG1GC",
 104                                                "-Xmx10M",
 105                                                "-Xmn5M",
 106                                                "-XX:+PrintGCDetails",
 107                                                GCTestWithToSpaceExhaustion.class.getName());
 108