< prev index next >

test/serviceability/dcmd/compiler/CodeCacheTest.java

Print this page
rev 7754 : 8071908: Port internal Diagnostic Command tests and test framework to jtreg
Reviewed-by:


   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 CodeCacheTest
  26  * @bug 8054889
  27  * @library ..
  28  * @build DcmdUtil CodeCacheTest
  29  * @run main/othervm -XX:+SegmentedCodeCache CodeCacheTest
  30  * @run main/othervm -XX:-SegmentedCodeCache CodeCacheTest
  31  * @run main/othervm -Xint -XX:+SegmentedCodeCache CodeCacheTest

  32  * @summary Test of diagnostic command Compiler.codecache
  33  */
  34 
  35 import java.io.BufferedReader;
  36 import java.io.StringReader;
  37 import java.lang.reflect.Method;



  38 import java.util.regex.Matcher;
  39 import java.util.regex.Pattern;
  40 
  41 public class CodeCacheTest {
  42 
  43     /**
  44      * This test calls Jcmd (diagnostic command tool) Compiler.codecache and then parses the output,
  45      * making sure that all numbers look ok
  46      *
  47      *
  48      * Expected output without code cache segmentation:
  49      *
  50      * CodeCache: size=245760Kb used=4680Kb max_used=4680Kb free=241079Kb
  51      * bounds [0x00007f5bd9000000, 0x00007f5bd94a0000, 0x00007f5be8000000]
  52      * total_blobs=575 nmethods=69 adapters=423
  53      * compilation: enabled
  54      *
  55      * Expected output with code cache segmentation (number of segments may change):
  56      *
  57      * CodeHeap 'non-nmethods': size=5696Kb used=2236Kb max_used=2238Kb free=3459Kb


  69     static Pattern line3 = Pattern.compile(" total_blobs=(\\p{Digit}*) nmethods=(\\p{Digit}*) adapters=(\\p{Digit}*)");
  70     static Pattern line4 = Pattern.compile(" compilation: (.*)");
  71 
  72     private static boolean getFlagBool(String flag, String where) {
  73       Matcher m = Pattern.compile(flag + "\\s+:?= (true|false)").matcher(where);
  74       if (!m.find()) {
  75         throw new RuntimeException("Could not find value for flag " + flag + " in output string");
  76       }
  77       return m.group(1).equals("true");
  78     }
  79 
  80     private static int getFlagInt(String flag, String where) {
  81       Matcher m = Pattern.compile(flag + "\\s+:?=\\s+\\d+").matcher(where);
  82       if (!m.find()) {
  83         throw new RuntimeException("Could not find value for flag " + flag + " in output string");
  84       }
  85       String match = m.group();
  86       return Integer.parseInt(match.substring(match.lastIndexOf(" ") + 1, match.length()));
  87     }
  88 
  89     public static void main(String arg[]) throws Exception {
  90         // Get number of code cache segments
  91         int segmentsCount = 0;
  92         String flags = DcmdUtil.executeDcmd("VM.flags", "-all");
  93         if (!getFlagBool("SegmentedCodeCache", flags) || !getFlagBool("UseCompiler", flags)) {
  94           // No segmentation
  95           segmentsCount = 1;
  96         } else if (getFlagBool("TieredCompilation", flags) && getFlagInt("TieredStopAtLevel", flags) > 1) {
  97           // Tiered compilation: use all segments
  98           segmentsCount = 3;
  99         } else {
 100           // No TieredCompilation: only non-nmethod and non-profiled segment
 101           segmentsCount = 2;
 102         }
 103 
 104         // Get output from dcmd (diagnostic command)
 105         String result = DcmdUtil.executeDcmd("Compiler.codecache");
 106         BufferedReader r = new BufferedReader(new StringReader(result));
 107 
 108         // Validate code cache segments
 109         String line;
 110         Matcher m;
 111         for (int s = 0; s < segmentsCount; ++s) {
 112           // Validate first line
 113           line = r.readLine();
 114           m = line1.matcher(line);
 115           if (m.matches()) {
 116               for (int i = 2; i <= 5; i++) {
 117                   int val = Integer.parseInt(m.group(i));
 118                   if (val < 0) {
 119                       throw new Exception("Failed parsing dcmd codecache output");
 120                   }
 121               }
 122           } else {
 123               throw new Exception("Regexp 1 failed");
 124           }
 125 
 126           // Validate second line
 127           line = r.readLine();
 128           m = line2.matcher(line);
 129           if (m.matches()) {
 130               String start = m.group(1);
 131               String mark  = m.group(2);
 132               String top   = m.group(3);
 133 
 134               // Lexical compare of hex numbers to check that they look sane.
 135               if (start.compareTo(mark) > 1) {
 136                   throw new Exception("Failed parsing dcmd codecache output");
 137               }
 138               if (mark.compareTo(top) > 1) {
 139                   throw new Exception("Failed parsing dcmd codecache output");
 140               }
 141           } else {
 142               throw new Exception("Regexp 2 failed line: " + line);
 143           }
 144         }
 145 
 146         // Validate third line
 147         line = r.readLine();
 148         m = line3.matcher(line);
 149         if (m.matches()) {
 150             int blobs = Integer.parseInt(m.group(1));
 151             if (blobs <= 0) {
 152                 throw new Exception("Failed parsing dcmd codecache output");
 153             }
 154             int nmethods = Integer.parseInt(m.group(2));
 155             if (nmethods < 0) {
 156                 throw new Exception("Failed parsing dcmd codecache output");
 157             }
 158             int adapters = Integer.parseInt(m.group(3));
 159             if (adapters <= 0) {
 160                 throw new Exception("Failed parsing dcmd codecache output");
 161             }
 162             if (blobs < (nmethods + adapters)) {
 163                 throw new Exception("Failed parsing dcmd codecache output");
 164             }
 165         } else {
 166             throw new Exception("Regexp 3 failed");
 167         }
 168 
 169         // Validate fourth line
 170         line = r.readLine();
 171         m = line4.matcher(line);
 172         if (!m.matches()) {
 173             throw new Exception("Regexp 4 failed");

 174         }




 175     }
 176 }


   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 CodeCacheTest
  26  * @bug 8054889
  27  * @library /testlibrary
  28  * @build com.oracle.java.testlibrary.*
  29  * @build com.oracle.java.testlibrary.dcmd.*
  30  * @run testng/othervm -XX:+SegmentedCodeCache CodeCacheTest
  31  * @run testng/othervm -XX:-SegmentedCodeCache CodeCacheTest
  32  * @run testng/othervm -Xint -XX:+SegmentedCodeCache CodeCacheTest
  33  * @summary Test of diagnostic command Compiler.codecache
  34  */
  35 
  36 import com.oracle.java.testlibrary.OutputAnalyzer;
  37 import com.oracle.java.testlibrary.dcmd.CommandExecutor;
  38 import com.oracle.java.testlibrary.dcmd.JMXExecutor;
  39 import org.testng.annotations.Test;
  40 
  41 import java.util.Iterator;
  42 import java.util.regex.Matcher;
  43 import java.util.regex.Pattern;
  44 
  45 public class CodeCacheTest {
  46 
  47     /**
  48      * This test calls Jcmd (diagnostic command tool) Compiler.codecache and then parses the output,
  49      * making sure that all numbers look ok
  50      *
  51      *
  52      * Expected output without code cache segmentation:
  53      *
  54      * CodeCache: size=245760Kb used=4680Kb max_used=4680Kb free=241079Kb
  55      * bounds [0x00007f5bd9000000, 0x00007f5bd94a0000, 0x00007f5be8000000]
  56      * total_blobs=575 nmethods=69 adapters=423
  57      * compilation: enabled
  58      *
  59      * Expected output with code cache segmentation (number of segments may change):
  60      *
  61      * CodeHeap 'non-nmethods': size=5696Kb used=2236Kb max_used=2238Kb free=3459Kb


  73     static Pattern line3 = Pattern.compile(" total_blobs=(\\p{Digit}*) nmethods=(\\p{Digit}*) adapters=(\\p{Digit}*)");
  74     static Pattern line4 = Pattern.compile(" compilation: (.*)");
  75 
  76     private static boolean getFlagBool(String flag, String where) {
  77       Matcher m = Pattern.compile(flag + "\\s+:?= (true|false)").matcher(where);
  78       if (!m.find()) {
  79         throw new RuntimeException("Could not find value for flag " + flag + " in output string");
  80       }
  81       return m.group(1).equals("true");
  82     }
  83 
  84     private static int getFlagInt(String flag, String where) {
  85       Matcher m = Pattern.compile(flag + "\\s+:?=\\s+\\d+").matcher(where);
  86       if (!m.find()) {
  87         throw new RuntimeException("Could not find value for flag " + flag + " in output string");
  88       }
  89       String match = m.group();
  90       return Integer.parseInt(match.substring(match.lastIndexOf(" ") + 1, match.length()));
  91     }
  92 
  93     public void run(CommandExecutor executor) {
  94         // Get number of code cache segments
  95         int segmentsCount = 0;
  96         String flags = executor.execute("VM.flags -all").getOutput();
  97         if (!getFlagBool("SegmentedCodeCache", flags) || !getFlagBool("UseCompiler", flags)) {
  98           // No segmentation
  99           segmentsCount = 1;
 100         } else if (getFlagBool("TieredCompilation", flags) && getFlagInt("TieredStopAtLevel", flags) > 1) {
 101           // Tiered compilation: use all segments
 102           segmentsCount = 3;
 103         } else {
 104           // No TieredCompilation: only non-nmethod and non-profiled segment
 105           segmentsCount = 2;
 106         }
 107 
 108         // Get output from dcmd (diagnostic command)
 109         OutputAnalyzer output = executor.execute("Compiler.codecache");
 110         Iterator<String> lines = output.asLines().iterator();
 111 
 112         // Validate code cache segments
 113         String line;
 114         Matcher m;
 115         for (int s = 0; s < segmentsCount; ++s) {
 116           // Validate first line
 117           line = lines.next();
 118           m = line1.matcher(line);
 119           if (m.matches()) {
 120               for (int i = 2; i <= 5; i++) {
 121                   int val = Integer.parseInt(m.group(i));
 122                   if (val < 0) {
 123                       throw new RuntimeException("Failed parsing dcmd codecache output");
 124                   }
 125               }
 126           } else {
 127               throw new RuntimeException("Regexp 1 failed");
 128           }
 129 
 130           // Validate second line
 131           line = lines.next();
 132           m = line2.matcher(line);
 133           if (m.matches()) {
 134               String start = m.group(1);
 135               String mark  = m.group(2);
 136               String top   = m.group(3);
 137 
 138               // Lexical compare of hex numbers to check that they look sane.
 139               if (start.compareTo(mark) > 1) {
 140                   throw new RuntimeException("Failed parsing dcmd codecache output");
 141               }
 142               if (mark.compareTo(top) > 1) {
 143                   throw new RuntimeException("Failed parsing dcmd codecache output");
 144               }
 145           } else {
 146               throw new RuntimeException("Regexp 2 failed line: " + line);
 147           }
 148         }
 149 
 150         // Validate third line
 151         line = lines.next();
 152         m = line3.matcher(line);
 153         if (m.matches()) {
 154             int blobs = Integer.parseInt(m.group(1));
 155             if (blobs <= 0) {
 156                 throw new RuntimeException("Failed parsing dcmd codecache output");
 157             }
 158             int nmethods = Integer.parseInt(m.group(2));
 159             if (nmethods < 0) {
 160                 throw new RuntimeException("Failed parsing dcmd codecache output");
 161             }
 162             int adapters = Integer.parseInt(m.group(3));
 163             if (adapters <= 0) {
 164                 throw new RuntimeException("Failed parsing dcmd codecache output");
 165             }
 166             if (blobs < (nmethods + adapters)) {
 167                 throw new RuntimeException("Failed parsing dcmd codecache output");
 168             }
 169         } else {
 170             throw new RuntimeException("Regexp 3 failed");
 171         }
 172 
 173         // Validate fourth line
 174         line = lines.next();
 175         m = line4.matcher(line);
 176         if (!m.matches()) {
 177             throw new RuntimeException("Regexp 4 failed");
 178         }
 179     }
 180 
 181     @Test
 182     public void jmx() {
 183         run(new JMXExecutor());
 184     }
 185 }
< prev index next >