< prev index next >

test/compiler/whitebox/GetNMethodTest.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 import sun.hotspot.code.BlobType;
  26 import sun.hotspot.code.NMethod;
  27 import jdk.test.lib.Asserts;

  28 
  29 /*
  30  * @test GetNMethodTest
  31  * @bug 8038240
  32  * @library /testlibrary /../../test/lib
  33  * @modules java.management
  34  * @build GetNMethodTest
  35  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  36  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  37  * @run main/othervm -Xbootclasspath/a:. -Xmixed -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:CompileCommand=compileonly,SimpleTestCase$Helper::* GetNMethodTest
  38  * @summary testing of WB::getNMethod()
  39  * @author igor.ignatyev@oracle.com
  40  */
  41 public class GetNMethodTest extends CompilerWhiteBoxTest {
  42     public static void main(String[] args) throws Exception {
  43         CompilerWhiteBoxTest.main(GetNMethodTest::new, args);
  44     }
  45 
  46     private GetNMethodTest(TestCase testCase) {
  47         super(testCase);
  48         // to prevent inlining of #method
  49         WHITE_BOX.testSetDontInlineMethod(method, true);
  50     }
  51 
  52     @Override
  53     protected void test() throws Exception {
  54         checkNotCompiled();
  55 
  56         compile();
  57         checkCompiled();




   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 import sun.hotspot.code.BlobType;
  26 import sun.hotspot.code.NMethod;
  27 import jdk.test.lib.Asserts;
  28 import compiler.whitebox.CompilerWhiteBoxTest;
  29 
  30 /*
  31  * @test GetNMethodTest
  32  * @bug 8038240
  33  * @library /testlibrary /../../test/lib /
  34  * @modules java.management
  35  * @build GetNMethodTest
  36  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  37  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  38  * @run main/othervm -Xbootclasspath/a:. -Xmixed -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:CompileCommand=compileonly,compiler.whitebox.SimpleTestCase$Helper::* GetNMethodTest
  39  * @summary testing of WB::getNMethod()
  40  * @author igor.ignatyev@oracle.com
  41  */
  42 public class GetNMethodTest extends CompilerWhiteBoxTest {
  43     public static void main(String[] args) throws Exception {
  44         CompilerWhiteBoxTest.main(GetNMethodTest::new, args);
  45     }
  46 
  47     private GetNMethodTest(TestCase testCase) {
  48         super(testCase);
  49         // to prevent inlining of #method
  50         WHITE_BOX.testSetDontInlineMethod(method, true);
  51     }
  52 
  53     @Override
  54     protected void test() throws Exception {
  55         checkNotCompiled();
  56 
  57         compile();
  58         checkCompiled();


< prev index next >