test/compiler/uncommontrap/TestSpecTrapClassUnloading.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Sdiff test/compiler/uncommontrap

test/compiler/uncommontrap/TestSpecTrapClassUnloading.java

Print this page
rev 5927 : 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
Summary: support for speculative traps that keep track of the root of the compilation in which a trap occurs.
Reviewed-by: kvn, twisti
rev 5930 : 8036092: [TESTBUG] compiler/uncommontrap/TestSpecTrapClassUnloading.java fails with: Unrecognized VM option 'UseTypeSpeculation'
Summary: Add -XX:+IgnoreUnrecognizedVMOptions to @main/othervm to make the test pass on Client VM
Reviewed-by: kvn, roland


   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 8031752
  27  * @summary speculative traps need to be cleaned up at GC
  28  * @run main/othervm -XX:-TieredCompilation -XX:-UseOnStackReplacement -XX:-BackgroundCompilation -XX:+UnlockExperimentalVMOptions -XX:+UseTypeSpeculation -XX:TypeProfileLevel=222 -XX:CompileCommand=exclude,java.lang.reflect.Method::invoke -XX:CompileCommand=exclude,sun.reflect.DelegatingMethodAccessorImpl::invoke -Xmx1M TestSpecTrapClassUnloading
  29  *
  30  */
  31 
  32 import java.lang.reflect.Method;
  33 
  34 public class TestSpecTrapClassUnloading {
  35     static class B {
  36         final public boolean m(Object o) {
  37             if (o.getClass() == B.class) {
  38                 return true;
  39             }
  40             return false;
  41         }
  42     }
  43 
  44     static class MemoryChunk {
  45         MemoryChunk other;
  46         long[] array;
  47         MemoryChunk(MemoryChunk other) {
  48             other = other;




   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 8031752
  27  * @summary speculative traps need to be cleaned up at GC
  28  * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-TieredCompilation -XX:-UseOnStackReplacement -XX:-BackgroundCompilation -XX:+UnlockExperimentalVMOptions -XX:+UseTypeSpeculation -XX:TypeProfileLevel=222 -XX:CompileCommand=exclude,java.lang.reflect.Method::invoke -XX:CompileCommand=exclude,sun.reflect.DelegatingMethodAccessorImpl::invoke -Xmx1M TestSpecTrapClassUnloading
  29  *
  30  */
  31 
  32 import java.lang.reflect.Method;
  33 
  34 public class TestSpecTrapClassUnloading {
  35     static class B {
  36         final public boolean m(Object o) {
  37             if (o.getClass() == B.class) {
  38                 return true;
  39             }
  40             return false;
  41         }
  42     }
  43 
  44     static class MemoryChunk {
  45         MemoryChunk other;
  46         long[] array;
  47         MemoryChunk(MemoryChunk other) {
  48             other = other;


test/compiler/uncommontrap/TestSpecTrapClassUnloading.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File