nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/objects/NativeInt16Array.java
author lagergren
Thu, 25 Sep 2014 15:53:47 +0200
changeset 26768 751b0f427090
parent 25865 d38d876f1654
child 27104 bc8ce3f84b84
permissions -rw-r--r--
8025435: Optimistic builtins support, implemented initial optimistic versions of push, pop, and charCodeAt Reviewed-by: attila, hannesw, sundar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     1
/*
16151
97c1e756ae1e 8005663: Update copyright year to 2013
jlaskey
parents: 16147
diff changeset
     2
 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     4
 *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    10
 *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    15
 * accompanied this code).
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    16
 *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    20
 *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    23
 * questions.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    24
 */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    25
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    26
package jdk.nashorn.internal.objects;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    27
24720
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    28
import static jdk.nashorn.internal.codegen.CompilerConstants.specialCall;
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    29
import java.lang.invoke.MethodHandle;
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    30
import java.lang.invoke.MethodHandles;
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    31
import java.nio.ByteBuffer;
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    32
import java.nio.ShortBuffer;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    33
import jdk.nashorn.internal.objects.annotations.Attribute;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    34
import jdk.nashorn.internal.objects.annotations.Constructor;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    35
import jdk.nashorn.internal.objects.annotations.Function;
17763
f30b7aa0e736 8014735: Typed Array, BYTES_PER_ELEMENT should be a class property
sundar
parents: 16226
diff changeset
    36
import jdk.nashorn.internal.objects.annotations.Property;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    37
import jdk.nashorn.internal.objects.annotations.ScriptClass;
17763
f30b7aa0e736 8014735: Typed Array, BYTES_PER_ELEMENT should be a class property
sundar
parents: 16226
diff changeset
    38
import jdk.nashorn.internal.objects.annotations.Where;
24720
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    39
import jdk.nashorn.internal.runtime.JSType;
18618
136279c4cbe6 8019157: Avoid calling ScriptObject.setProto() if possible
hannesw
parents: 17771
diff changeset
    40
import jdk.nashorn.internal.runtime.PropertyMap;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    41
import jdk.nashorn.internal.runtime.ScriptObject;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    42
import jdk.nashorn.internal.runtime.arrays.ArrayData;
24720
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    43
import jdk.nashorn.internal.runtime.arrays.TypedArrayData;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    44
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    45
/**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    46
 * Int16 array for the TypedArray extension
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    47
 */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    48
@ScriptClass("Int16Array")
16226
0e4f37e6cc40 8007915: Nashorn IR, codegen, parser packages and Context instance should be inaccessible to user code
sundar
parents: 16151
diff changeset
    49
public final class NativeInt16Array extends ArrayBufferView {
18618
136279c4cbe6 8019157: Avoid calling ScriptObject.setProto() if possible
hannesw
parents: 17771
diff changeset
    50
136279c4cbe6 8019157: Avoid calling ScriptObject.setProto() if possible
hannesw
parents: 17771
diff changeset
    51
    // initialized by nasgen
18842
3c3be808b593 8019585: Sometimes a var declaration using itself in its init wasn't declared as canBeUndefined, causing erroneous bytecode
lagergren
parents: 18618
diff changeset
    52
    @SuppressWarnings("unused")
18618
136279c4cbe6 8019157: Avoid calling ScriptObject.setProto() if possible
hannesw
parents: 17771
diff changeset
    53
    private static PropertyMap $nasgenmap$;
136279c4cbe6 8019157: Avoid calling ScriptObject.setProto() if possible
hannesw
parents: 17771
diff changeset
    54
17771
9fedae4933e4 8015354: JSON.parse should not use [[Put]] but use [[DefineOwnProperty]] instead
sundar
parents: 17763
diff changeset
    55
    /**
9fedae4933e4 8015354: JSON.parse should not use [[Put]] but use [[DefineOwnProperty]] instead
sundar
parents: 17763
diff changeset
    56
     * The size in bytes of each element in the array.
9fedae4933e4 8015354: JSON.parse should not use [[Put]] but use [[DefineOwnProperty]] instead
sundar
parents: 17763
diff changeset
    57
     */
17763
f30b7aa0e736 8014735: Typed Array, BYTES_PER_ELEMENT should be a class property
sundar
parents: 16226
diff changeset
    58
    @Property(attributes = Attribute.NOT_ENUMERABLE | Attribute.NOT_WRITABLE | Attribute.NOT_CONFIGURABLE, where = Where.CONSTRUCTOR)
f30b7aa0e736 8014735: Typed Array, BYTES_PER_ELEMENT should be a class property
sundar
parents: 16226
diff changeset
    59
    public static final int BYTES_PER_ELEMENT = 2;
f30b7aa0e736 8014735: Typed Array, BYTES_PER_ELEMENT should be a class property
sundar
parents: 16226
diff changeset
    60
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    61
    private static final Factory FACTORY = new Factory(BYTES_PER_ELEMENT) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    62
        @Override
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    63
        public ArrayBufferView construct(final NativeArrayBuffer buffer, final int byteOffset, final int length) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    64
            return new NativeInt16Array(buffer, byteOffset, length);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    65
        }
24720
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    66
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    67
        @Override
24720
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    68
        public Int16ArrayData createArrayData(final ByteBuffer nb, final int start, final int end) {
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    69
            return new Int16ArrayData(nb.asShortBuffer(), start, end);
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    70
        }
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    71
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    72
        @Override
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    73
        public String getClassName() {
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    74
            return "Int16Array";
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    75
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    76
    };
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    77
24720
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    78
    private static final class Int16ArrayData extends TypedArrayData<ShortBuffer> {
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    79
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    80
        private static final MethodHandle GET_ELEM = specialCall(MethodHandles.lookup(), Int16ArrayData.class, "getElem", int.class, int.class).methodHandle();
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    81
        private static final MethodHandle SET_ELEM = specialCall(MethodHandles.lookup(), Int16ArrayData.class, "setElem", void.class, int.class, int.class).methodHandle();
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    82
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    83
        private Int16ArrayData(final ShortBuffer nb, final int start, final int end) {
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    84
            super(((ShortBuffer)nb.position(start).limit(end)).slice(), end - start);
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    85
        }
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    86
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    87
        @Override
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    88
        protected MethodHandle getGetElem() {
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    89
            return GET_ELEM;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    90
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    91
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    92
        @Override
24720
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    93
        protected MethodHandle getSetElem() {
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    94
            return SET_ELEM;
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    95
        }
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
    96
26768
751b0f427090 8025435: Optimistic builtins support, implemented initial optimistic versions of push, pop, and charCodeAt
lagergren
parents: 25865
diff changeset
    97
        @Override
751b0f427090 8025435: Optimistic builtins support, implemented initial optimistic versions of push, pop, and charCodeAt
lagergren
parents: 25865
diff changeset
    98
        public Class<?> getElementType() {
751b0f427090 8025435: Optimistic builtins support, implemented initial optimistic versions of push, pop, and charCodeAt
lagergren
parents: 25865
diff changeset
    99
            return int.class;
751b0f427090 8025435: Optimistic builtins support, implemented initial optimistic versions of push, pop, and charCodeAt
lagergren
parents: 25865
diff changeset
   100
        }
751b0f427090 8025435: Optimistic builtins support, implemented initial optimistic versions of push, pop, and charCodeAt
lagergren
parents: 25865
diff changeset
   101
24720
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   102
        private int getElem(final int index) {
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   103
            try {
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   104
                return nb.get(index);
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   105
            } catch (final IndexOutOfBoundsException e) {
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   106
                throw new ClassCastException(); //force relink - this works for unoptimistic too
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   107
            }
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   108
        }
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   109
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   110
        private void setElem(final int index, final int elem) {
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   111
            try {
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   112
                nb.put(index, (short)elem);
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   113
            } catch (final IndexOutOfBoundsException e) {
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   114
                //swallow valid array indexes. it's ok.
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   115
                if (index < 0) {
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   116
                    throw new ClassCastException();
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   117
                }
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   118
            }
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   119
        }
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   120
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   121
        @Override
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24769
diff changeset
   122
        public int getInt(final int index) {
24720
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   123
            return getElem(index);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   124
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   125
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   126
        @Override
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24769
diff changeset
   127
        public long getLong(final int index) {
24720
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   128
            return getInt(index);
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   129
        }
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   130
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   131
        @Override
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24769
diff changeset
   132
        public double getDouble(final int index) {
24720
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   133
            return getInt(index);
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   134
        }
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   135
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   136
        @Override
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24769
diff changeset
   137
        public Object getObject(final int index) {
24720
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   138
            return getInt(index);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   139
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   140
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   141
        @Override
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24769
diff changeset
   142
        public ArrayData set(final int index, final Object value, final boolean strict) {
24720
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   143
            return set(index, JSType.toInt32(value), strict);
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   144
        }
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   145
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   146
        @Override
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24769
diff changeset
   147
        public ArrayData set(final int index, final int value, final boolean strict) {
24720
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   148
            setElem(index, value);
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   149
            return this;
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   150
        }
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   151
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   152
        @Override
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24769
diff changeset
   153
        public ArrayData set(final int index, final long value, final boolean strict) {
24720
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   154
            return set(index, (int)value, strict);
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   155
        }
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   156
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   157
        @Override
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24769
diff changeset
   158
        public ArrayData set(final int index, final double value, final boolean strict) {
24720
75f8388b79df 8035836: Array performance improvements
lagergren
parents: 19638
diff changeset
   159
            return set(index, (int)value, strict);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   160
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   161
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   162
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   163
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   164
     * Constructor
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   165
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   166
     * @param newObj is this typed array instantiated with the new operator
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   167
     * @param self   self reference
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   168
     * @param args   args
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   169
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   170
     * @return new typed array
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   171
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   172
    @Constructor(arity = 1)
23763
950d8bc0554f 8038456: improve nasgen type checks and use specific return type for @Function, @SpecializedFunctio methods
sundar
parents: 19638
diff changeset
   173
    public static NativeInt16Array constructor(final boolean newObj, final Object self, final Object... args) {
24769
attila
parents: 24720 23763
diff changeset
   174
        return (NativeInt16Array)constructorImpl(newObj, args, FACTORY);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   175
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   176
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   177
    NativeInt16Array(final NativeArrayBuffer buffer, final int byteOffset, final int byteLength) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   178
        super(buffer, byteOffset, byteLength);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   179
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   180
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   181
    @Override
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   182
    protected Factory factory() {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   183
        return FACTORY;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   184
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   185
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   186
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   187
     * Set values
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   188
     * @param self   self reference
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   189
     * @param array  multiple values of array's type to set
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   190
     * @param offset optional start index, interpreted  0 if undefined
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   191
     * @return undefined
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   192
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   193
    @Function(attributes = Attribute.NOT_ENUMERABLE)
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   194
    protected static Object set(final Object self, final Object array, final Object offset) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   195
        return ArrayBufferView.setImpl(self, array, offset);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   196
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   197
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   198
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   199
     * Returns a new TypedArray view of the ArrayBuffer store for this TypedArray,
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   200
     * referencing the elements at begin, inclusive, up to end, exclusive. If either
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   201
     * begin or end is negative, it refers to an index from the end of the array,
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   202
     * as opposed to from the beginning.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   203
     * <p>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   204
     * If end is unspecified, the subarray contains all elements from begin to the end
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   205
     * of the TypedArray. The range specified by the begin and end values is clamped to
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   206
     * the valid index range for the current array. If the computed length of the new
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   207
     * TypedArray would be negative, it is clamped to zero.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   208
     * <p>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   209
     * The returned TypedArray will be of the same type as the array on which this
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   210
     * method is invoked.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   211
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   212
     * @param self self reference
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   213
     * @param begin begin position
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   214
     * @param end end position
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   215
     *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   216
     * @return sub array
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   217
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   218
    @Function(attributes = Attribute.NOT_ENUMERABLE)
23763
950d8bc0554f 8038456: improve nasgen type checks and use specific return type for @Function, @SpecializedFunctio methods
sundar
parents: 19638
diff changeset
   219
    protected static NativeInt16Array subarray(final Object self, final Object begin, final Object end) {
950d8bc0554f 8038456: improve nasgen type checks and use specific return type for @Function, @SpecializedFunctio methods
sundar
parents: 19638
diff changeset
   220
        return (NativeInt16Array)ArrayBufferView.subarrayImpl(self, begin, end);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   221
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   222
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   223
    @Override
18851
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents: 18842
diff changeset
   224
    protected ScriptObject getPrototype(final Global global) {
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents: 18842
diff changeset
   225
        return global.getInt16ArrayPrototype();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   226
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   227
}