< prev index next >

test/compiler/codegen/Test6896617.java

Print this page
rev 11557 : 8132919: use package in compiler tests
Reviewed-by: duke


  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  * @run main/othervm/timeout=1200 -Xbatch -Xmx256m Test6896617
  33  *

  34  */
  35 


  36 import jdk.test.lib.Utils;

  37 import java.nio.ByteBuffer;
  38 import java.nio.CharBuffer;
  39 import java.nio.charset.Charset;
  40 import java.nio.charset.CharsetDecoder;
  41 import java.nio.charset.CharsetEncoder;
  42 import java.nio.charset.CodingErrorAction;
  43 import java.util.Arrays;
  44 import java.util.Random;
  45 
  46 public class Test6896617 {
  47     final static int SIZE = 256;
  48 
  49     public static void main(String[] args) {
  50         String csn = "ISO-8859-1";
  51         Charset cs = Charset.forName(csn);
  52         CharsetEncoder enc = cs.newEncoder();
  53         enc.onMalformedInput(CodingErrorAction.REPLACE)
  54            .onUnmappableCharacter(CodingErrorAction.REPLACE);
  55         CharsetDecoder dec = cs.newDecoder();
  56         dec.onMalformedInput(CodingErrorAction.REPLACE)




  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 
  49 public class Test6896617 {
  50     final static int SIZE = 256;
  51 
  52     public static void main(String[] args) {
  53         String csn = "ISO-8859-1";
  54         Charset cs = Charset.forName(csn);
  55         CharsetEncoder enc = cs.newEncoder();
  56         enc.onMalformedInput(CodingErrorAction.REPLACE)
  57            .onUnmappableCharacter(CodingErrorAction.REPLACE);
  58         CharsetDecoder dec = cs.newDecoder();
  59         dec.onMalformedInput(CodingErrorAction.REPLACE)


< prev index next >