Path: blob/master/test/hotspot/jtreg/compiler/c2/Test6852078.java
41149 views
/*1* Copyright (c) 2009, 2020, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*/2223/**24* @test25* @bug 685207826* @summary Disable SuperWord optimization for unsafe read/write27* @modules java.corba/com.sun.corba.se.impl.encoding28* java.corba/com.sun.jndi.toolkit.corba29*30* @ignore 819431031* @run main compiler.c2.Test685207832*/3334package compiler.c2;3536import com.sun.corba.se.impl.encoding.ByteBufferWithInfo;37import com.sun.jndi.toolkit.corba.CorbaUtils;3839import java.nio.ByteBuffer;40import java.util.Hashtable;4142public class Test6852078 {4344public Test6852078(String [] args) {4546int capacity = 128;47ByteBuffer bb = ByteBuffer.allocateDirect(capacity);48ByteBufferWithInfo bbwi = new ByteBufferWithInfo( CorbaUtils.getOrb(null, -1, new Hashtable()), bb);49byte[] tmpBuf;50tmpBuf = new byte[bbwi.buflen];5152for (int i = 0; i < capacity; i++)53tmpBuf[i] = bbwi.byteBuffer.get(i);54}5556public static void main(String [] args) {57long start = System.currentTimeMillis();58for (int i=0; i<2000; i++) {59// To protect slow systems from test-too-long timeouts60if ((i > 100) && ((System.currentTimeMillis() - start) > 100000))61break;62Test6852078 t = new Test6852078(args);63}64}65}666768