iignatyev@4592: /* iignatyev@4592: * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved. iignatyev@4592: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. iignatyev@4592: * iignatyev@4592: * This code is free software; you can redistribute it and/or modify it iignatyev@4592: * under the terms of the GNU General Public License version 2 only, as iignatyev@4592: * published by the Free Software Foundation. iignatyev@4592: * iignatyev@4592: * This code is distributed in the hope that it will be useful, but WITHOUT iignatyev@4592: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or iignatyev@4592: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License iignatyev@4592: * version 2 for more details (a copy is included in the LICENSE file that iignatyev@4592: * accompanied this code). iignatyev@4592: * iignatyev@4592: * You should have received a copy of the GNU General Public License version iignatyev@4592: * 2 along with this work; if not, write to the Free Software Foundation, iignatyev@4592: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. iignatyev@4592: * iignatyev@4592: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA iignatyev@4592: * or visit www.oracle.com if you need additional information or have any iignatyev@4592: * questions. iignatyev@4592: */ iignatyev@4592: iignatyev@4592: /* iignatyev@4592: * @test DeoptimizeMethodTest iignatyev@4592: * @compile -J-XX:+UnlockDiagnosticVMOptions -J-XX:+WhiteBoxAPI CompilerWhiteBoxTest.java iignatyev@4592: * @compile -J-XX:+UnlockDiagnosticVMOptions -J-XX:+WhiteBoxAPI DeoptimizeMethodTest.java iignatyev@4592: * @run main/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI DeoptimizeMethodTest iignatyev@4592: * @author igor.ignatyev@oracle.com iignatyev@4592: */ iignatyev@4592: public class DeoptimizeMethodTest extends CompilerWhiteBoxTest { iignatyev@4592: iignatyev@4592: public static void main(String[] args) throws Exception { iignatyev@4592: new DeoptimizeMethodTest().runTest(); iignatyev@4592: } iignatyev@4592: iignatyev@4592: protected void test() throws Exception { iignatyev@4592: // to prevent inlining #method into #compile() iignatyev@4592: WHITE_BOX.setDontInlineMethod(METHOD, true); iignatyev@4592: compile(); iignatyev@4592: checkCompiled(METHOD); iignatyev@4592: WHITE_BOX.deoptimizeMethod(METHOD); iignatyev@4592: checkNotCompiled(METHOD); iignatyev@4592: } iignatyev@4592: }