test/compiler/whitebox/GetNMethodTest.java

Print this page




  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




  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