< prev index next >

test/compiler/codegen/Test6896617.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  * @test
  26  * @bug 6896617
  27  * @summary Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() with SSE instructions on x86
  28  * @library /testlibrary
  29  * @modules java.base/jdk.internal.misc
  30  *          java.base/sun.nio.cs
  31  *          java.management
  32  *
  33  * @run main/othervm/timeout=1200 -Xbatch -Xmx256m compiler.codegen.Test6896617
  34  */
  35 
  36 package compiler.codegen;
  37 
  38 import jdk.test.lib.Utils;
  39 
  40 import java.nio.ByteBuffer;
  41 import java.nio.CharBuffer;
  42 import java.nio.charset.Charset;
  43 import java.nio.charset.CharsetDecoder;
  44 import java.nio.charset.CharsetEncoder;
  45 import java.nio.charset.CodingErrorAction;
  46 import java.util.Arrays;
  47 import java.util.Random;
  48 




   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 6896617
  27  * @summary Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() with SSE instructions on x86
  28  * @library /test/lib
  29  * @modules java.base/jdk.internal.misc
  30  *          java.base/sun.nio.cs
  31  *          java.management
  32  *
  33  * @run main/othervm/timeout=1200 -Xbatch -Xmx256m compiler.codegen.Test6896617
  34  */
  35 
  36 package compiler.codegen;
  37 
  38 import jdk.test.lib.Utils;
  39 
  40 import java.nio.ByteBuffer;
  41 import java.nio.CharBuffer;
  42 import java.nio.charset.Charset;
  43 import java.nio.charset.CharsetDecoder;
  44 import java.nio.charset.CharsetEncoder;
  45 import java.nio.charset.CodingErrorAction;
  46 import java.util.Arrays;
  47 import java.util.Random;
  48 


< prev index next >