< prev index next >

test/compiler/arguments/TestUseCountLeadingZerosInstructionOnUnsupportedCPU.java

Print this page




  22  */
  23 
  24 /**
  25  * @test
  26  * @bug 8031321
  27  * @summary Verify processing of UseCountLeadingZerosInstruction option
  28  *          on CPU without LZCNT support.
  29  * @library /testlibrary /../../test/lib
  30  * @modules java.base/sun.misc
  31  *          java.management
  32  * @build TestUseCountLeadingZerosInstructionOnUnsupportedCPU
  33  *        BMIUnsupportedCPUTest
  34  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  35  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  36  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  37  *                   -XX:+WhiteBoxAPI
  38  *                   TestUseCountLeadingZerosInstructionOnUnsupportedCPU
  39  */
  40 
  41 import sun.hotspot.cpuinfo.CPUInfo;
  42 import com.oracle.java.testlibrary.*;
  43 
  44 public class TestUseCountLeadingZerosInstructionOnUnsupportedCPU
  45      extends BMIUnsupportedCPUTest {
  46 
  47     public TestUseCountLeadingZerosInstructionOnUnsupportedCPU() {
  48         super("UseCountLeadingZerosInstruction", LZCNT_WARNING, "lzcnt");
  49     }
  50 
  51     public static void main(String args[]) throws Throwable {
  52         new TestUseCountLeadingZerosInstructionOnUnsupportedCPU().test();
  53     }
  54 }
  55 


  22  */
  23 
  24 /**
  25  * @test
  26  * @bug 8031321
  27  * @summary Verify processing of UseCountLeadingZerosInstruction option
  28  *          on CPU without LZCNT support.
  29  * @library /testlibrary /../../test/lib
  30  * @modules java.base/sun.misc
  31  *          java.management
  32  * @build TestUseCountLeadingZerosInstructionOnUnsupportedCPU
  33  *        BMIUnsupportedCPUTest
  34  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  35  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  36  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  37  *                   -XX:+WhiteBoxAPI
  38  *                   TestUseCountLeadingZerosInstructionOnUnsupportedCPU
  39  */
  40 
  41 import sun.hotspot.cpuinfo.CPUInfo;
  42 import jdk.test.lib.*;
  43 
  44 public class TestUseCountLeadingZerosInstructionOnUnsupportedCPU
  45      extends BMIUnsupportedCPUTest {
  46 
  47     public TestUseCountLeadingZerosInstructionOnUnsupportedCPU() {
  48         super("UseCountLeadingZerosInstruction", LZCNT_WARNING, "lzcnt");
  49     }
  50 
  51     public static void main(String args[]) throws Throwable {
  52         new TestUseCountLeadingZerosInstructionOnUnsupportedCPU().test();
  53     }
  54 }
  55 
< prev index next >