< prev index next >

test/hotspot/jtreg/compiler/tiered/ConstantGettersTransitionsTest.java

Print this page

  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 ConstantGettersTransitionsTest
 26  * @summary Test the correctness of compilation level transitions for constant getters methods

 27  * @library /test/lib /
 28  * @modules java.base/jdk.internal.misc
 29  *          java.management
 30  *
 31  * @build jdk.test.whitebox.WhiteBox
 32  *        compiler.tiered.ConstantGettersTransitionsTest
 33  * @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
 34  * @run main/othervm/timeout=240 -Xmixed -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
 35  *      -XX:+WhiteBoxAPI -XX:+TieredCompilation
 36  *      -XX:CompileCommand=compileonly,compiler.tiered.ConstantGettersTransitionsTest$ConstantGettersTestCase$TrivialMethods::*
 37  *      compiler.tiered.ConstantGettersTransitionsTest
 38  */
 39 
 40 package compiler.tiered;
 41 
 42 import compiler.whitebox.CompilerWhiteBoxTest;
 43 import jtreg.SkippedException;
 44 
 45 import java.lang.reflect.Executable;
 46 import java.util.concurrent.Callable;

  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 ConstantGettersTransitionsTest
 26  * @summary Test the correctness of compilation level transitions for constant getters methods
 27  * @requires vm.opt.final.TieredCompilation
 28  * @library /test/lib /
 29  * @modules java.base/jdk.internal.misc
 30  *          java.management
 31  *
 32  * @build jdk.test.whitebox.WhiteBox
 33  *        compiler.tiered.ConstantGettersTransitionsTest
 34  * @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
 35  * @run main/othervm/timeout=240 -Xmixed -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
 36  *      -XX:+WhiteBoxAPI -XX:+TieredCompilation
 37  *      -XX:CompileCommand=compileonly,compiler.tiered.ConstantGettersTransitionsTest$ConstantGettersTestCase$TrivialMethods::*
 38  *      compiler.tiered.ConstantGettersTransitionsTest
 39  */
 40 
 41 package compiler.tiered;
 42 
 43 import compiler.whitebox.CompilerWhiteBoxTest;
 44 import jtreg.SkippedException;
 45 
 46 import java.lang.reflect.Executable;
 47 import java.util.concurrent.Callable;
< prev index next >