< prev index next >

test/compiler/codegen/6896617/Test6896617.java

Print this page




  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/sun.misc
  30  *          java.base/sun.nio.cs
  31  *          java.management
  32  * @run main/othervm/timeout=1200 -Xbatch -Xmx256m Test6896617
  33  *
  34  */
  35 
  36 import com.oracle.java.testlibrary.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)




  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/sun.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)


< prev index next >