< prev index next >

test/compiler/jvmci/compilerToVM/AllocateCompileIdTest.java

Print this page




   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
  26  * @bug 8136421
  27  * @requires (vm.simpleArch == "x64" | vm.simpleArch == "sparcv9" | vm.simpleArch == "aarch64")
  28  * @library /testlibrary /test/lib /
  29  * @library ../common/patches
  30  * @modules java.base/jdk.internal.misc
  31  * @modules java.base/jdk.internal.org.objectweb.asm
  32  *          java.base/jdk.internal.org.objectweb.asm.tree
  33  *          jdk.vm.ci/jdk.vm.ci.hotspot
  34  *          jdk.vm.ci/jdk.vm.ci.code
  35  *
  36  * @build jdk.vm.ci/jdk.vm.ci.hotspot.CompilerToVMHelper
  37  * @build compiler.jvmci.compilerToVM.AllocateCompileIdTest
  38  * @build sun.hotspot.WhiteBox
  39  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  40  *                                sun.hotspot.WhiteBox$WhiteBoxPermission
  41  * @run main/othervm -Xbootclasspath/a:.
  42  *                   -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  43  *                   -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
  44  *                   -XX:-BackgroundCompilation
  45  *                   compiler.jvmci.compilerToVM.AllocateCompileIdTest
  46  */
  47 
  48 package compiler.jvmci.compilerToVM;
  49 
  50 import compiler.jvmci.common.CTVMUtilities;
  51 import jdk.test.lib.Asserts;
  52 import jdk.test.lib.Pair;
  53 import jdk.test.lib.Utils;
  54 import jdk.vm.ci.hotspot.CompilerToVMHelper;
  55 import jdk.vm.ci.hotspot.HotSpotResolvedJavaMethod;
  56 import sun.hotspot.code.NMethod;
  57 
  58 import java.lang.reflect.Executable;
  59 import java.lang.reflect.Method;
  60 import java.util.ArrayList;
  61 import java.util.HashSet;
  62 import java.util.List;
  63 import java.util.stream.Collectors;
  64 import java.util.stream.Stream;
  65 
  66 public class AllocateCompileIdTest {
  67 
  68     private static final int SOME_REPEAT_VALUE = 5;
  69     private final HashSet<Integer> ids = new HashSet<>();
  70 
  71     public static void main(String[] args) {
  72         AllocateCompileIdTest test = new AllocateCompileIdTest();




   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
  26  * @bug 8136421
  27  * @requires (vm.simpleArch == "x64" | vm.simpleArch == "sparcv9" | vm.simpleArch == "aarch64")
  28  * @library /test/lib /
  29  * @library ../common/patches
  30  * @modules java.base/jdk.internal.misc
  31  * @modules java.base/jdk.internal.org.objectweb.asm
  32  *          java.base/jdk.internal.org.objectweb.asm.tree
  33  *          jdk.vm.ci/jdk.vm.ci.hotspot
  34  *          jdk.vm.ci/jdk.vm.ci.code
  35  *
  36  * @build jdk.vm.ci/jdk.vm.ci.hotspot.CompilerToVMHelper sun.hotspot.WhiteBox


  37  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  38  *                                sun.hotspot.WhiteBox$WhiteBoxPermission
  39  * @run main/othervm -Xbootclasspath/a:.
  40  *                   -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  41  *                   -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
  42  *                   -XX:-BackgroundCompilation
  43  *                   compiler.jvmci.compilerToVM.AllocateCompileIdTest
  44  */
  45 
  46 package compiler.jvmci.compilerToVM;
  47 
  48 import compiler.jvmci.common.CTVMUtilities;
  49 import jdk.test.lib.Asserts;
  50 import jdk.test.lib.util.Pair;
  51 import jdk.test.lib.Utils;
  52 import jdk.vm.ci.hotspot.CompilerToVMHelper;
  53 import jdk.vm.ci.hotspot.HotSpotResolvedJavaMethod;
  54 import sun.hotspot.code.NMethod;
  55 
  56 import java.lang.reflect.Executable;
  57 import java.lang.reflect.Method;
  58 import java.util.ArrayList;
  59 import java.util.HashSet;
  60 import java.util.List;
  61 import java.util.stream.Collectors;
  62 import java.util.stream.Stream;
  63 
  64 public class AllocateCompileIdTest {
  65 
  66     private static final int SOME_REPEAT_VALUE = 5;
  67     private final HashSet<Integer> ids = new HashSet<>();
  68 
  69     public static void main(String[] args) {
  70         AllocateCompileIdTest test = new AllocateCompileIdTest();


< prev index next >