src/java.base/share/classes/java/util/ArrayList.java
author dl
Fri, 24 May 2019 08:55:03 -0700
changeset 55036 265b110fc022
parent 54971 4285b4d13471
child 57956 e0b8b019d2f5
permissions -rw-r--r--
8223245: Miscellaneous changes imported from jsr166 CVS 2019-06 Reviewed-by: martin
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
54971
4285b4d13471 8223593: Refactor code for reallocating storage
igerasim
parents: 52427
diff changeset
     2
 * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5466
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5466
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5466
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5466
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5466
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.util;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
    28
import java.util.function.Consumer;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
    29
import java.util.function.Predicate;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
    30
import java.util.function.UnaryOperator;
52427
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 50228
diff changeset
    31
import jdk.internal.access.SharedSecrets;
54971
4285b4d13471 8223593: Refactor code for reallocating storage
igerasim
parents: 52427
diff changeset
    32
import jdk.internal.util.ArraysSupport;
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
    33
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
/**
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    35
 * Resizable-array implementation of the {@code List} interface.  Implements
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * all optional list operations, and permits all elements, including
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    37
 * {@code null}.  In addition to implementing the {@code List} interface,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * this class provides methods to manipulate the size of the array that is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * used internally to store the list.  (This class is roughly equivalent to
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    40
 * {@code Vector}, except that it is unsynchronized.)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    42
 * <p>The {@code size}, {@code isEmpty}, {@code get}, {@code set},
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    43
 * {@code iterator}, and {@code listIterator} operations run in constant
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    44
 * time.  The {@code add} operation runs in <i>amortized constant time</i>,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * that is, adding n elements requires O(n) time.  All of the other operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * run in linear time (roughly speaking).  The constant factor is low compared
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    47
 * to that for the {@code LinkedList} implementation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 *
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    49
 * <p>Each {@code ArrayList} instance has a <i>capacity</i>.  The capacity is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * the size of the array used to store the elements in the list.  It is always
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * at least as large as the list size.  As elements are added to an ArrayList,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * its capacity grows automatically.  The details of the growth policy are not
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * specified beyond the fact that adding an element has constant amortized
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * time cost.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 *
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    56
 * <p>An application can increase the capacity of an {@code ArrayList} instance
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    57
 * before adding a large number of elements using the {@code ensureCapacity}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * operation.  This may reduce the amount of incremental reallocation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * <p><strong>Note that this implementation is not synchronized.</strong>
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    61
 * If multiple threads access an {@code ArrayList} instance concurrently,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * and at least one of the threads modifies the list structurally, it
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * <i>must</i> be synchronized externally.  (A structural modification is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * any operation that adds or deletes one or more elements, or explicitly
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * resizes the backing array; merely setting the value of an element is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * a structural modification.)  This is typically accomplished by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * synchronizing on some object that naturally encapsulates the list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * If no such object exists, the list should be "wrapped" using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * {@link Collections#synchronizedList Collections.synchronizedList}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * method.  This is best done at creation time, to prevent accidental
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * unsynchronized access to the list:<pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 *   List list = Collections.synchronizedList(new ArrayList(...));</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 *
24196
61c9885d76e2 8029451: Tidy warnings cleanup for java.util package; minor changes in java.nio, java.sql
yan
parents: 24122
diff changeset
    75
 * <p id="fail-fast">
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * The iterators returned by this class's {@link #iterator() iterator} and
24196
61c9885d76e2 8029451: Tidy warnings cleanup for java.util package; minor changes in java.nio, java.sql
yan
parents: 24122
diff changeset
    77
 * {@link #listIterator(int) listIterator} methods are <em>fail-fast</em>:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * if the list is structurally modified at any time after the iterator is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * created, in any way except through the iterator's own
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * {@link ListIterator#remove() remove} or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * {@link ListIterator#add(Object) add} methods, the iterator will throw a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * {@link ConcurrentModificationException}.  Thus, in the face of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * concurrent modification, the iterator fails quickly and cleanly, rather
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * than risking arbitrary, non-deterministic behavior at an undetermined
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * time in the future.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * <p>Note that the fail-fast behavior of an iterator cannot be guaranteed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * as it is, generally speaking, impossible to make any hard guarantees in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * presence of unsynchronized concurrent modification.  Fail-fast iterators
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * throw {@code ConcurrentModificationException} on a best-effort basis.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * Therefore, it would be wrong to write a program that depended on this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * exception for its correctness:  <i>the fail-fast behavior of iterators
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 * should be used only to detect bugs.</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * <p>This class is a member of the
49433
b6671a111395 8199465: {@docRoot} references need to be updated to reflect new module/package structure
jjg
parents: 48686
diff changeset
    96
 * <a href="{@docRoot}/java.base/java/util/package-summary.html#CollectionsFramework">
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * Java Collections Framework</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 *
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    99
 * @param <E> the type of elements in this list
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   100
 *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * @author  Josh Bloch
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 * @author  Neal Gafter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * @see     Collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * @see     List
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 * @see     LinkedList
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 * @see     Vector
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 * @since   1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
public class ArrayList<E> extends AbstractList<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        implements List<E>, RandomAccess, Cloneable, java.io.Serializable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    private static final long serialVersionUID = 8683452581122892189L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    /**
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   115
     * Default initial capacity.
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   116
     */
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   117
    private static final int DEFAULT_CAPACITY = 10;
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   118
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   119
    /**
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   120
     * Shared empty array instance used for empty instances.
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   121
     */
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   122
    private static final Object[] EMPTY_ELEMENTDATA = {};
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   123
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   124
    /**
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   125
     * Shared empty array instance used for default sized empty instances. We
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   126
     * distinguish this from EMPTY_ELEMENTDATA to know how much to inflate when
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   127
     * first element is added.
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   128
     */
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   129
    private static final Object[] DEFAULTCAPACITY_EMPTY_ELEMENTDATA = {};
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   130
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   131
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * The array buffer into which the elements of the ArrayList are stored.
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   133
     * The capacity of the ArrayList is the length of this array buffer. Any
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   134
     * empty ArrayList with elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   135
     * will be expanded to DEFAULT_CAPACITY when the first element is added.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     */
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   137
    transient Object[] elementData; // non-private to simplify nested class access
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * The size of the ArrayList (the number of elements it contains).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    private int size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * Constructs an empty list with the specified initial capacity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     *
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 7020
diff changeset
   149
     * @param  initialCapacity  the initial capacity of the list
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 7020
diff changeset
   150
     * @throws IllegalArgumentException if the specified initial capacity
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 7020
diff changeset
   151
     *         is negative
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    public ArrayList(int initialCapacity) {
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   154
        if (initialCapacity > 0) {
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   155
            this.elementData = new Object[initialCapacity];
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   156
        } else if (initialCapacity == 0) {
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   157
            this.elementData = EMPTY_ELEMENTDATA;
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   158
        } else {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
            throw new IllegalArgumentException("Illegal Capacity: "+
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
                                               initialCapacity);
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   161
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * Constructs an empty list with an initial capacity of ten.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    public ArrayList() {
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   168
        this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * Constructs a list containing the elements of the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * collection, in the order they are returned by the collection's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * iterator.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * @param c the collection whose elements are to be placed into this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * @throws NullPointerException if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    public ArrayList(Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        elementData = c.toArray();
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   181
        if ((size = elementData.length) != 0) {
31540
6efd719b3330 6260652: (coll) Arrays.asList(x).toArray().getClass() should be Object[].class
martin
parents: 25859
diff changeset
   182
            // defend against c.toArray (incorrectly) not returning Object[]
6efd719b3330 6260652: (coll) Arrays.asList(x).toArray().getClass() should be Object[].class
martin
parents: 25859
diff changeset
   183
            // (see e.g. https://bugs.openjdk.java.net/browse/JDK-6260652)
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   184
            if (elementData.getClass() != Object[].class)
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   185
                elementData = Arrays.copyOf(elementData, size, Object[].class);
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   186
        } else {
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   187
            // replace with empty array.
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   188
            this.elementData = EMPTY_ELEMENTDATA;
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   189
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
    /**
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   193
     * Trims the capacity of this {@code ArrayList} instance to be the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * list's current size.  An application can use this operation to minimize
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   195
     * the storage of an {@code ArrayList} instance.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    public void trimToSize() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        modCount++;
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   199
        if (size < elementData.length) {
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   200
            elementData = (size == 0)
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   201
              ? EMPTY_ELEMENTDATA
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   202
              : Arrays.copyOf(elementData, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    /**
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   207
     * Increases the capacity of this {@code ArrayList} instance, if
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * necessary, to ensure that it can hold at least the number of elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * specified by the minimum capacity argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     *
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   211
     * @param minCapacity the desired minimum capacity
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    public void ensureCapacity(int minCapacity) {
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   214
        if (minCapacity > elementData.length
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   215
            && !(elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   216
                 && minCapacity <= DEFAULT_CAPACITY)) {
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   217
            modCount++;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   218
            grow(minCapacity);
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   219
        }
7020
25638687fe82 6992121: StringBuilder.ensureCapacity(int minCap) throws OutOfMemoryError with minCap=Integer.MIN_VALUE
mchung
parents: 5506
diff changeset
   220
    }
25638687fe82 6992121: StringBuilder.ensureCapacity(int minCap) throws OutOfMemoryError with minCap=Integer.MIN_VALUE
mchung
parents: 5506
diff changeset
   221
5466
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   222
    /**
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   223
     * Increases the capacity to ensure that it can hold at least the
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   224
     * number of elements specified by the minimum capacity argument.
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   225
     *
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   226
     * @param minCapacity the desired minimum capacity
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   227
     * @throws OutOfMemoryError if minCapacity is less than zero
5466
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   228
     */
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   229
    private Object[] grow(int minCapacity) {
54971
4285b4d13471 8223593: Refactor code for reallocating storage
igerasim
parents: 52427
diff changeset
   230
        int oldCapacity = elementData.length;
4285b4d13471 8223593: Refactor code for reallocating storage
igerasim
parents: 52427
diff changeset
   231
        if (oldCapacity > 0 || elementData != DEFAULTCAPACITY_EMPTY_ELEMENTDATA) {
4285b4d13471 8223593: Refactor code for reallocating storage
igerasim
parents: 52427
diff changeset
   232
            int newCapacity = ArraysSupport.newLength(oldCapacity,
4285b4d13471 8223593: Refactor code for reallocating storage
igerasim
parents: 52427
diff changeset
   233
                    minCapacity - oldCapacity, /* minimum growth */
4285b4d13471 8223593: Refactor code for reallocating storage
igerasim
parents: 52427
diff changeset
   234
                    oldCapacity >> 1           /* preferred growth */);
4285b4d13471 8223593: Refactor code for reallocating storage
igerasim
parents: 52427
diff changeset
   235
            return elementData = Arrays.copyOf(elementData, newCapacity);
4285b4d13471 8223593: Refactor code for reallocating storage
igerasim
parents: 52427
diff changeset
   236
        } else {
4285b4d13471 8223593: Refactor code for reallocating storage
igerasim
parents: 52427
diff changeset
   237
            return elementData = new Object[Math.max(DEFAULT_CAPACITY, minCapacity)];
4285b4d13471 8223593: Refactor code for reallocating storage
igerasim
parents: 52427
diff changeset
   238
        }
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   239
    }
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   240
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   241
    private Object[] grow() {
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   242
        return grow(size + 1);
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   243
    }
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   244
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   245
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     * Returns the number of elements in this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * @return the number of elements in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
    public int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
        return size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
    /**
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   255
     * Returns {@code true} if this list contains no elements.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     *
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   257
     * @return {@code true} if this list contains no elements
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
    public boolean isEmpty() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        return size == 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
    /**
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   264
     * Returns {@code true} if this list contains the specified element.
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   265
     * More formally, returns {@code true} if and only if this list contains
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   266
     * at least one element {@code e} such that
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31540
diff changeset
   267
     * {@code Objects.equals(o, e)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * @param o element whose presence in this list is to be tested
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   270
     * @return {@code true} if this list contains the specified element
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
    public boolean contains(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
        return indexOf(o) >= 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * Returns the index of the first occurrence of the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * in this list, or -1 if this list does not contain the element.
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   279
     * More formally, returns the lowest index {@code i} such that
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31540
diff changeset
   280
     * {@code Objects.equals(o, get(i))},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * or -1 if there is no such index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
    public int indexOf(Object o) {
50127
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   284
        return indexOfRange(o, 0, size);
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   285
    }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   286
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   287
    int indexOfRange(Object o, int start, int end) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   288
        Object[] es = elementData;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
        if (o == null) {
50127
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   290
            for (int i = start; i < end; i++) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   291
                if (es[i] == null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                    return i;
50127
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   293
                }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   294
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        } else {
50127
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   296
            for (int i = start; i < end; i++) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   297
                if (o.equals(es[i])) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
                    return i;
50127
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   299
                }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   300
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     * Returns the index of the last occurrence of the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * in this list, or -1 if this list does not contain the element.
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   308
     * More formally, returns the highest index {@code i} such that
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31540
diff changeset
   309
     * {@code Objects.equals(o, get(i))},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * or -1 if there is no such index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
    public int lastIndexOf(Object o) {
50127
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   313
        return lastIndexOfRange(o, 0, size);
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   314
    }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   315
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   316
    int lastIndexOfRange(Object o, int start, int end) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   317
        Object[] es = elementData;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
        if (o == null) {
50127
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   319
            for (int i = end - 1; i >= start; i--) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   320
                if (es[i] == null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
                    return i;
50127
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   322
                }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   323
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        } else {
50127
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   325
            for (int i = end - 1; i >= start; i--) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   326
                if (o.equals(es[i])) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
                    return i;
50127
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   328
                }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   329
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    /**
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   335
     * Returns a shallow copy of this {@code ArrayList} instance.  (The
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     * elements themselves are not copied.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     *
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   338
     * @return a clone of this {@code ArrayList} instance
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    public Object clone() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        try {
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 10419
diff changeset
   342
            ArrayList<?> v = (ArrayList<?>) super.clone();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
            v.elementData = Arrays.copyOf(elementData, size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
            v.modCount = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
            return v;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
        } catch (CloneNotSupportedException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
            // this shouldn't happen, since we are Cloneable
10419
12c063b39232 7084245: Update usages of InternalError to use exception chaining
sherman
parents: 9503
diff changeset
   348
            throw new InternalError(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * Returns an array containing all of the elements in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * in proper sequence (from first to last element).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     * <p>The returned array will be "safe" in that no references to it are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * maintained by this list.  (In other words, this method must allocate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     * a new array).  The caller is thus free to modify the returned array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     * <p>This method acts as bridge between array-based and collection-based
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * APIs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     * @return an array containing all of the elements in this list in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     *         proper sequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
    public Object[] toArray() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        return Arrays.copyOf(elementData, size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     * Returns an array containing all of the elements in this list in proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     * sequence (from first to last element); the runtime type of the returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * array is that of the specified array.  If the list fits in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * specified array, it is returned therein.  Otherwise, a new array is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * allocated with the runtime type of the specified array and the size of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * <p>If the list fits in the specified array with room to spare
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * (i.e., the array has more elements than the list), the element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * the array immediately following the end of the collection is set to
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   381
     * {@code null}.  (This is useful in determining the length of the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * list <i>only</i> if the caller knows that the list does not contain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     * any null elements.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     * @param a the array into which the elements of the list are to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     *          be stored, if it is big enough; otherwise, a new array of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     *          same runtime type is allocated for this purpose.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * @return an array containing the elements of the list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * @throws ArrayStoreException if the runtime type of the specified array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     *         is not a supertype of the runtime type of every element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     *         this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * @throws NullPointerException if the specified array is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
    @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    public <T> T[] toArray(T[] a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        if (a.length < size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
            // Make a new array of a's runtime type, but my contents:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
            return (T[]) Arrays.copyOf(elementData, size, a.getClass());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
        System.arraycopy(elementData, 0, a, 0, size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
        if (a.length > size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
            a[size] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
        return a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
    // Positional Access Operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
    @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
    E elementData(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        return (E) elementData[index];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   412
    @SuppressWarnings("unchecked")
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   413
    static <E> E elementAt(Object[] es, int index) {
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   414
        return (E) es[index];
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   415
    }
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   416
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     * Returns the element at the specified position in this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     * @param  index index of the element to return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * @return the element at the specified position in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
    public E get(int index) {
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
   425
        Objects.checkIndex(index, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
        return elementData(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     * Replaces the element at the specified position in this list with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     * the specified element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     * @param index index of the element to replace
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     * @param element element to be stored at the specified position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * @return the element previously at the specified position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
    public E set(int index, E element) {
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
   439
        Objects.checkIndex(index, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
        E oldValue = elementData(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
        elementData[index] = element;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
        return oldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    /**
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   446
     * This helper method split out from add(E) to keep method
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   447
     * bytecode size under 35 (the -XX:MaxInlineSize default value),
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   448
     * which helps when add(E) is called in a C1-compiled loop.
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   449
     */
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   450
    private void add(E e, Object[] elementData, int s) {
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   451
        if (s == elementData.length)
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   452
            elementData = grow();
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   453
        elementData[s] = e;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   454
        size = s + 1;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   455
    }
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   456
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   457
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     * Appends the specified element to the end of this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     * @param e element to be appended to this list
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   461
     * @return {@code true} (as specified by {@link Collection#add})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
    public boolean add(E e) {
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   464
        modCount++;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   465
        add(e, elementData, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     * Inserts the specified element at the specified position in this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
     * list. Shifts the element currently at that position (if any) and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     * any subsequent elements to the right (adds one to their indices).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
     * @param index index at which the specified element is to be inserted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     * @param element element to be inserted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
    public void add(int index, E element) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
        rangeCheckForAdd(index);
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   480
        modCount++;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   481
        final int s;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   482
        Object[] elementData;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   483
        if ((s = size) == (elementData = this.elementData).length)
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   484
            elementData = grow();
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   485
        System.arraycopy(elementData, index,
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   486
                         elementData, index + 1,
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   487
                         s - index);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
        elementData[index] = element;
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   489
        size = s + 1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
     * Removes the element at the specified position in this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     * Shifts any subsequent elements to the left (subtracts one from their
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     * indices).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     * @param index the index of the element to be removed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     * @return the element that was removed from the list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
    public E remove(int index) {
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
   502
        Objects.checkIndex(index, size);
45934
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   503
        final Object[] es = elementData;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
45934
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   505
        @SuppressWarnings("unchecked") E oldValue = (E) es[index];
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   506
        fastRemove(es, index);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
        return oldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
    /**
50127
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   512
     * {@inheritDoc}
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   513
     */
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   514
    public boolean equals(Object o) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   515
        if (o == this) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   516
            return true;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   517
        }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   518
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   519
        if (!(o instanceof List)) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   520
            return false;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   521
        }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   522
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   523
        final int expectedModCount = modCount;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   524
        // ArrayList can be subclassed and given arbitrary behavior, but we can
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   525
        // still deal with the common case where o is ArrayList precisely
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   526
        boolean equal = (o.getClass() == ArrayList.class)
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   527
            ? equalsArrayList((ArrayList<?>) o)
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   528
            : equalsRange((List<?>) o, 0, size);
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   529
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   530
        checkForComodification(expectedModCount);
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   531
        return equal;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   532
    }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   533
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   534
    boolean equalsRange(List<?> other, int from, int to) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   535
        final Object[] es = elementData;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   536
        if (to > es.length) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   537
            throw new ConcurrentModificationException();
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   538
        }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   539
        var oit = other.iterator();
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   540
        for (; from < to; from++) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   541
            if (!oit.hasNext() || !Objects.equals(es[from], oit.next())) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   542
                return false;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   543
            }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   544
        }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   545
        return !oit.hasNext();
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   546
    }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   547
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   548
    private boolean equalsArrayList(ArrayList<?> other) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   549
        final int otherModCount = other.modCount;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   550
        final int s = size;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   551
        boolean equal;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   552
        if (equal = (s == other.size)) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   553
            final Object[] otherEs = other.elementData;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   554
            final Object[] es = elementData;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   555
            if (s > es.length || s > otherEs.length) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   556
                throw new ConcurrentModificationException();
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   557
            }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   558
            for (int i = 0; i < s; i++) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   559
                if (!Objects.equals(es[i], otherEs[i])) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   560
                    equal = false;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   561
                    break;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   562
                }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   563
            }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   564
        }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   565
        other.checkForComodification(otherModCount);
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   566
        return equal;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   567
    }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   568
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   569
    private void checkForComodification(final int expectedModCount) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   570
        if (modCount != expectedModCount) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   571
            throw new ConcurrentModificationException();
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   572
        }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   573
    }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   574
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   575
    /**
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   576
     * {@inheritDoc}
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   577
     */
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   578
    public int hashCode() {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   579
        int expectedModCount = modCount;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   580
        int hash = hashCodeRange(0, size);
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   581
        checkForComodification(expectedModCount);
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   582
        return hash;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   583
    }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   584
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   585
    int hashCodeRange(int from, int to) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   586
        final Object[] es = elementData;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   587
        if (to > es.length) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   588
            throw new ConcurrentModificationException();
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   589
        }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   590
        int hashCode = 1;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   591
        for (int i = from; i < to; i++) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   592
            Object e = es[i];
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   593
            hashCode = 31 * hashCode + (e == null ? 0 : e.hashCode());
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   594
        }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   595
        return hashCode;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   596
    }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   597
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
   598
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
     * Removes the first occurrence of the specified element from this list,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
     * if it is present.  If the list does not contain the element, it is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
     * unchanged.  More formally, removes the element with the lowest index
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   602
     * {@code i} such that
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31540
diff changeset
   603
     * {@code Objects.equals(o, get(i))}
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   604
     * (if such an element exists).  Returns {@code true} if this list
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
     * contained the specified element (or equivalently, if this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
     * changed as a result of the call).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
     * @param o element to be removed from this list, if present
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   609
     * @return {@code true} if this list contained the specified element
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
    public boolean remove(Object o) {
45934
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   612
        final Object[] es = elementData;
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   613
        final int size = this.size;
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   614
        int i = 0;
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   615
        found: {
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   616
            if (o == null) {
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   617
                for (; i < size; i++)
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   618
                    if (es[i] == null)
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   619
                        break found;
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   620
            } else {
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   621
                for (; i < size; i++)
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   622
                    if (o.equals(es[i]))
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   623
                        break found;
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   624
            }
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   625
            return false;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
        }
45934
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   627
        fastRemove(es, i);
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   628
        return true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   631
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
     * Private remove method that skips bounds checking and does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
     * return the value removed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
     */
45934
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   635
    private void fastRemove(Object[] es, int i) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
        modCount++;
45934
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   637
        final int newSize;
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   638
        if ((newSize = size - 1) > i)
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   639
            System.arraycopy(es, i + 1, es, i, newSize - i);
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   640
        es[size = newSize] = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
     * Removes all of the elements from this list.  The list will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
     * be empty after this call returns.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
    public void clear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
        modCount++;
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   649
        final Object[] es = elementData;
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   650
        for (int to = size, i = size = 0; i < to; i++)
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   651
            es[i] = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
     * Appends all of the elements in the specified collection to the end of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
     * this list, in the order that they are returned by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
     * specified collection's Iterator.  The behavior of this operation is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
     * undefined if the specified collection is modified while the operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
     * is in progress.  (This implies that the behavior of this call is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
     * undefined if the specified collection is this list, and this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
     * list is nonempty.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
     * @param c collection containing elements to be added to this list
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   664
     * @return {@code true} if this list changed as a result of the call
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
     * @throws NullPointerException if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
    public boolean addAll(Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
        Object[] a = c.toArray();
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   669
        modCount++;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
        int numNew = a.length;
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   671
        if (numNew == 0)
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   672
            return false;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   673
        Object[] elementData;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   674
        final int s;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   675
        if (numNew > (elementData = this.elementData).length - (s = size))
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   676
            elementData = grow(s + numNew);
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   677
        System.arraycopy(a, 0, elementData, s, numNew);
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   678
        size = s + numNew;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   679
        return true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     * Inserts all of the elements in the specified collection into this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     * list, starting at the specified position.  Shifts the element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * currently at that position (if any) and any subsequent elements to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     * the right (increases their indices).  The new elements will appear
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     * in the list in the order that they are returned by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     * specified collection's iterator.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
     * @param index index at which to insert the first element from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     *              specified collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     * @param c collection containing elements to be added to this list
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   693
     * @return {@code true} if this list changed as a result of the call
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
     * @throws NullPointerException if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
    public boolean addAll(int index, Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
        rangeCheckForAdd(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
        Object[] a = c.toArray();
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   701
        modCount++;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
        int numNew = a.length;
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   703
        if (numNew == 0)
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   704
            return false;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   705
        Object[] elementData;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   706
        final int s;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   707
        if (numNew > (elementData = this.elementData).length - (s = size))
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   708
            elementData = grow(s + numNew);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   710
        int numMoved = s - index;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
        if (numMoved > 0)
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   712
            System.arraycopy(elementData, index,
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   713
                             elementData, index + numNew,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
                             numMoved);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
        System.arraycopy(a, 0, elementData, index, numNew);
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   716
        size = s + numNew;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   717
        return true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
     * Removes from this list all of the elements whose index is between
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
     * {@code fromIndex}, inclusive, and {@code toIndex}, exclusive.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
     * Shifts any succeeding elements to the left (reduces their index).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
     * This call shortens the list by {@code (toIndex - fromIndex)} elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
     * (If {@code toIndex==fromIndex}, this operation has no effect.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
     * @throws IndexOutOfBoundsException if {@code fromIndex} or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
     *         {@code toIndex} is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
     *         ({@code fromIndex < 0 ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     *          toIndex > size() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     *          toIndex < fromIndex})
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
    protected void removeRange(int fromIndex, int toIndex) {
23580
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   734
        if (fromIndex > toIndex) {
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   735
            throw new IndexOutOfBoundsException(
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   736
                    outOfBoundsMsg(fromIndex, toIndex));
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   737
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
        modCount++;
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   739
        shiftTailOverGap(elementData, fromIndex, toIndex);
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   740
    }
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   741
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   742
    /** Erases the gap from lo to hi, by sliding down following elements. */
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   743
    private void shiftTailOverGap(Object[] es, int lo, int hi) {
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   744
        System.arraycopy(es, hi, es, lo, size - hi);
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   745
        for (int to = size, i = (size -= hi - lo); i < to; i++)
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   746
            es[i] = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
     * A version of rangeCheck used by add and addAll.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
    private void rangeCheckForAdd(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
        if (index > size || index < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
            throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
     * Constructs an IndexOutOfBoundsException detail message.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
     * Of the many possible refactorings of the error handling code,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
     * this "outlining" performs best with both server and client VMs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
    private String outOfBoundsMsg(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
        return "Index: "+index+", Size: "+size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
    /**
23580
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   767
     * A version used in checking (fromIndex > toIndex) condition
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   768
     */
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   769
    private static String outOfBoundsMsg(int fromIndex, int toIndex) {
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   770
        return "From Index: " + fromIndex + " > To Index: " + toIndex;
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   771
    }
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   772
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   773
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
     * Removes from this list all of its elements that are contained in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
     * specified collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
     * @param c collection containing elements to be removed from this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
     * @return {@code true} if this list changed as a result of the call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
     * @throws ClassCastException if the class of an element of this list
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   780
     *         is incompatible with the specified collection
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   781
     * (<a href="Collection.html#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
     * @throws NullPointerException if this list contains a null element and the
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   783
     *         specified collection does not permit null elements
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   784
     * (<a href="Collection.html#optional-restrictions">optional</a>),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
     *         or if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
     * @see Collection#contains(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
    public boolean removeAll(Collection<?> c) {
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   789
        return batchRemove(c, false, 0, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
     * Retains only the elements in this list that are contained in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
     * specified collection.  In other words, removes from this list all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
     * of its elements that are not contained in the specified collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
     * @param c collection containing elements to be retained in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
     * @return {@code true} if this list changed as a result of the call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
     * @throws ClassCastException if the class of an element of this list
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   800
     *         is incompatible with the specified collection
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   801
     * (<a href="Collection.html#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
     * @throws NullPointerException if this list contains a null element and the
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   803
     *         specified collection does not permit null elements
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   804
     * (<a href="Collection.html#optional-restrictions">optional</a>),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
     *         or if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
     * @see Collection#contains(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
    public boolean retainAll(Collection<?> c) {
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   809
        return batchRemove(c, true, 0, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   812
    boolean batchRemove(Collection<?> c, boolean complement,
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   813
                        final int from, final int end) {
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   814
        Objects.requireNonNull(c);
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   815
        final Object[] es = elementData;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   816
        int r;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   817
        // Optimize for initial run of survivors
45934
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   818
        for (r = from;; r++) {
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   819
            if (r == end)
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   820
                return false;
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   821
            if (c.contains(es[r]) != complement)
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   822
                break;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
        }
45934
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   824
        int w = r++;
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   825
        try {
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   826
            for (Object e; r < end; r++)
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   827
                if (c.contains(e = es[r]) == complement)
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   828
                    es[w++] = e;
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   829
        } catch (Throwable ex) {
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   830
            // Preserve behavioral compatibility with AbstractCollection,
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   831
            // even if c.contains() throws.
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   832
            System.arraycopy(es, r, es, w, end - r);
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   833
            w += end - r;
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   834
            throw ex;
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   835
        } finally {
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   836
            modCount += end - w;
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   837
            shiftTailOverGap(es, w, end);
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   838
        }
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   839
        return true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
    /**
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   843
     * Saves the state of the {@code ArrayList} instance to a stream
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   844
     * (that is, serializes it).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
     *
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   846
     * @param s the stream
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   847
     * @throws java.io.IOException if an I/O error occurs
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   848
     * @serialData The length of the array backing the {@code ArrayList}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
     *             instance is emitted (int), followed by all of its elements
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   850
     *             (each an {@code Object}) in the proper order.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
    private void writeObject(java.io.ObjectOutputStream s)
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   853
        throws java.io.IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
        // Write out element count, and any hidden stuff
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
        int expectedModCount = modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
        s.defaultWriteObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
45934
59b4dd84cd5d 7062169: (coll) micro-optimize ArrayList.remove(Object)
dl
parents: 44743
diff changeset
   858
        // Write out size as capacity for behavioral compatibility with clone()
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   859
        s.writeInt(size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
        // Write out all elements in the proper order.
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   862
        for (int i=0; i<size; i++) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
            s.writeObject(elementData[i]);
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   864
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
        if (modCount != expectedModCount) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
            throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
    /**
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   872
     * Reconstitutes the {@code ArrayList} instance from a stream (that is,
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   873
     * deserializes it).
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   874
     * @param s the stream
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   875
     * @throws ClassNotFoundException if the class of a serialized object
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   876
     *         could not be found
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
   877
     * @throws java.io.IOException if an I/O error occurs
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
    private void readObject(java.io.ObjectInputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
        throws java.io.IOException, ClassNotFoundException {
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   881
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
        // Read in size, and any hidden stuff
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
        s.defaultReadObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   885
        // Read in capacity
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   886
        s.readInt(); // ignored
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   887
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   888
        if (size > 0) {
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   889
            // like clone(), allocate array based upon size not capacity
47423
4fc2a4a29f3d 8174109: Better queuing priorities
smarks
parents: 47216
diff changeset
   890
            SharedSecrets.getJavaObjectInputStreamAccess().checkArray(s, Object[].class, size);
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   891
            Object[] elements = new Object[size];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   893
            // Read in all elements in the proper order.
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   894
            for (int i = 0; i < size; i++) {
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   895
                elements[i] = s.readObject();
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   896
            }
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   897
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   898
            elementData = elements;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   899
        } else if (size == 0) {
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   900
            elementData = EMPTY_ELEMENTDATA;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   901
        } else {
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   902
            throw new java.io.InvalidObjectException("Invalid size: " + size);
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   903
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
     * Returns a list iterator over the elements in this list (in proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
     * sequence), starting at the specified position in the list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
     * The specified index indicates the first element that would be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
     * returned by an initial call to {@link ListIterator#next next}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
     * An initial call to {@link ListIterator#previous previous} would
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
     * return the element with the specified index minus one.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
     * <p>The returned list iterator is <a href="#fail-fast"><i>fail-fast</i></a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
    public ListIterator<E> listIterator(int index) {
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
   919
        rangeCheckForAdd(index);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
        return new ListItr(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
     * Returns a list iterator over the elements in this list (in proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
     * sequence).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
     * <p>The returned list iterator is <a href="#fail-fast"><i>fail-fast</i></a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
     * @see #listIterator(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
    public ListIterator<E> listIterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
        return new ListItr(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
     * Returns an iterator over the elements in this list in proper sequence.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
     * <p>The returned iterator is <a href="#fail-fast"><i>fail-fast</i></a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
     * @return an iterator over the elements in this list in proper sequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
    public Iterator<E> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
        return new Itr();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
     * An optimized version of AbstractList.Itr
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
    private class Itr implements Iterator<E> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
        int cursor;       // index of next element to return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
        int lastRet = -1; // index of last element returned; -1 if no such
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
        int expectedModCount = modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
41370
5afe61bd32ea 8167005: Comment on the need for an empty constructor in ArrayList$Itr
redestad
parents: 41208
diff changeset
   954
        // prevent creating a synthetic constructor
41208
8a97b5704e66 8166840: Synthetic bridge constructor in ArrayList$Itr blocks inlining
redestad
parents: 36747
diff changeset
   955
        Itr() {}
8a97b5704e66 8166840: Synthetic bridge constructor in ArrayList$Itr blocks inlining
redestad
parents: 36747
diff changeset
   956
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
        public boolean hasNext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
            return cursor != size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
        @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
        public E next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
            int i = cursor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
            if (i >= size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
                throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
            Object[] elementData = ArrayList.this.elementData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
            if (i >= elementData.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
            cursor = i + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
            return (E) elementData[lastRet = i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
        public void remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
            if (lastRet < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
                throw new IllegalStateException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
                ArrayList.this.remove(lastRet);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
                cursor = lastRet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
                lastRet = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
                expectedModCount = modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
            } catch (IndexOutOfBoundsException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   989
        @Override
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   990
        public void forEachRemaining(Consumer<? super E> action) {
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   991
            Objects.requireNonNull(action);
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   992
            final int size = ArrayList.this.size;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   993
            int i = cursor;
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   994
            if (i < size) {
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   995
                final Object[] es = elementData;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   996
                if (i >= es.length)
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   997
                    throw new ConcurrentModificationException();
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   998
                for (; i < size && modCount == expectedModCount; i++)
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
   999
                    action.accept(elementAt(es, i));
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1000
                // update once at end to reduce heap write traffic
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1001
                cursor = i;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1002
                lastRet = i - 1;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1003
                checkForComodification();
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1004
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1005
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1006
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
        final void checkForComodification() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
            if (modCount != expectedModCount)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
     * An optimized version of AbstractList.ListItr
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
    private class ListItr extends Itr implements ListIterator<E> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
        ListItr(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
            super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
            cursor = index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
        public boolean hasPrevious() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
            return cursor != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
        public int nextIndex() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
            return cursor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
        public int previousIndex() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
            return cursor - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
        @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
        public E previous() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
            int i = cursor - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
            if (i < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
                throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
            Object[] elementData = ArrayList.this.elementData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
            if (i >= elementData.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
            cursor = i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
            return (E) elementData[lastRet = i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
        public void set(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
            if (lastRet < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
                throw new IllegalStateException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
                ArrayList.this.set(lastRet, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
            } catch (IndexOutOfBoundsException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
        public void add(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
                int i = cursor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
                ArrayList.this.add(i, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
                cursor = i + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
                lastRet = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
                expectedModCount = modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
            } catch (IndexOutOfBoundsException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
     * Returns a view of the portion of this list between the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
     * {@code fromIndex}, inclusive, and {@code toIndex}, exclusive.  (If
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
     * {@code fromIndex} and {@code toIndex} are equal, the returned list is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
     * empty.)  The returned list is backed by this list, so non-structural
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
     * changes in the returned list are reflected in this list, and vice-versa.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
     * The returned list supports all of the optional list operations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
     * <p>This method eliminates the need for explicit range operations (of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
     * the sort that commonly exist for arrays).  Any operation that expects
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
     * a list can be used as a range operation by passing a subList view
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
     * instead of a whole list.  For example, the following idiom
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
     * removes a range of elements from a list:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
     *      list.subList(from, to).clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
     * Similar idioms may be constructed for {@link #indexOf(Object)} and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
     * {@link #lastIndexOf(Object)}, and all of the algorithms in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
     * {@link Collections} class can be applied to a subList.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
     * <p>The semantics of the list returned by this method become undefined if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
     * the backing list (i.e., this list) is <i>structurally modified</i> in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
     * any way other than via the returned list.  (Structural modifications are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
     * those that change the size of this list, or otherwise perturb it in such
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
     * a fashion that iterations in progress may yield incorrect results.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
     * @throws IllegalArgumentException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
    public List<E> subList(int fromIndex, int toIndex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
        subListRangeCheck(fromIndex, toIndex, size);
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1105
        return new SubList<>(this, fromIndex, toIndex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1108
    private static class SubList<E> extends AbstractList<E> implements RandomAccess {
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1109
        private final ArrayList<E> root;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1110
        private final SubList<E> parent;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
        private final int offset;
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1112
        private int size;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1114
        /**
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1115
         * Constructs a sublist of an arbitrary ArrayList.
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1116
         */
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1117
        public SubList(ArrayList<E> root, int fromIndex, int toIndex) {
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1118
            this.root = root;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1119
            this.parent = null;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1120
            this.offset = fromIndex;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
            this.size = toIndex - fromIndex;
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1122
            this.modCount = root.modCount;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1125
        /**
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1126
         * Constructs a sublist of another SubList.
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1127
         */
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1128
        private SubList(SubList<E> parent, int fromIndex, int toIndex) {
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1129
            this.root = parent.root;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1130
            this.parent = parent;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1131
            this.offset = parent.offset + fromIndex;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1132
            this.size = toIndex - fromIndex;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1133
            this.modCount = root.modCount;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1134
        }
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1135
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1136
        public E set(int index, E element) {
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1137
            Objects.checkIndex(index, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
            checkForComodification();
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1139
            E oldValue = root.elementData(offset + index);
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1140
            root.elementData[offset + index] = element;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
            return oldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
        public E get(int index) {
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1145
            Objects.checkIndex(index, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
            checkForComodification();
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1147
            return root.elementData(offset + index);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
        public int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
            checkForComodification();
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1152
            return size;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1155
        public void add(int index, E element) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
            rangeCheckForAdd(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
            checkForComodification();
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1158
            root.add(offset + index, element);
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1159
            updateSizeAndModCount(1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
        public E remove(int index) {
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1163
            Objects.checkIndex(index, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
            checkForComodification();
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1165
            E result = root.remove(offset + index);
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1166
            updateSizeAndModCount(-1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
            return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
        protected void removeRange(int fromIndex, int toIndex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
            checkForComodification();
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1172
            root.removeRange(offset + fromIndex, offset + toIndex);
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1173
            updateSizeAndModCount(fromIndex - toIndex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
        public boolean addAll(Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
            return addAll(this.size, c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
        public boolean addAll(int index, Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
            rangeCheckForAdd(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
            int cSize = c.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
            if (cSize==0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
            checkForComodification();
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1186
            root.addAll(offset + index, c);
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1187
            updateSizeAndModCount(cSize);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
50228
45093fb73c6d 8202685: Optimize ArrayList subList replaceAll
dl
parents: 50127
diff changeset
  1191
        public void replaceAll(UnaryOperator<E> operator) {
45093fb73c6d 8202685: Optimize ArrayList subList replaceAll
dl
parents: 50127
diff changeset
  1192
            root.replaceAllRange(operator, offset, offset + size);
45093fb73c6d 8202685: Optimize ArrayList subList replaceAll
dl
parents: 50127
diff changeset
  1193
        }
45093fb73c6d 8202685: Optimize ArrayList subList replaceAll
dl
parents: 50127
diff changeset
  1194
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1195
        public boolean removeAll(Collection<?> c) {
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1196
            return batchRemove(c, false);
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1197
        }
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1198
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1199
        public boolean retainAll(Collection<?> c) {
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1200
            return batchRemove(c, true);
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1201
        }
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1202
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1203
        private boolean batchRemove(Collection<?> c, boolean complement) {
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1204
            checkForComodification();
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1205
            int oldSize = root.size;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1206
            boolean modified =
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1207
                root.batchRemove(c, complement, offset, offset + size);
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1208
            if (modified)
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1209
                updateSizeAndModCount(root.size - oldSize);
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1210
            return modified;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1211
        }
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1212
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1213
        public boolean removeIf(Predicate<? super E> filter) {
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1214
            checkForComodification();
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1215
            int oldSize = root.size;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1216
            boolean modified = root.removeIf(filter, offset, offset + size);
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1217
            if (modified)
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1218
                updateSizeAndModCount(root.size - oldSize);
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1219
            return modified;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1220
        }
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1221
48686
e3dcdd73a549 8196207: Inefficient ArrayList.subList().toArray()
dl
parents: 48541
diff changeset
  1222
        public Object[] toArray() {
e3dcdd73a549 8196207: Inefficient ArrayList.subList().toArray()
dl
parents: 48541
diff changeset
  1223
            checkForComodification();
e3dcdd73a549 8196207: Inefficient ArrayList.subList().toArray()
dl
parents: 48541
diff changeset
  1224
            return Arrays.copyOfRange(root.elementData, offset, offset + size);
e3dcdd73a549 8196207: Inefficient ArrayList.subList().toArray()
dl
parents: 48541
diff changeset
  1225
        }
e3dcdd73a549 8196207: Inefficient ArrayList.subList().toArray()
dl
parents: 48541
diff changeset
  1226
e3dcdd73a549 8196207: Inefficient ArrayList.subList().toArray()
dl
parents: 48541
diff changeset
  1227
        @SuppressWarnings("unchecked")
e3dcdd73a549 8196207: Inefficient ArrayList.subList().toArray()
dl
parents: 48541
diff changeset
  1228
        public <T> T[] toArray(T[] a) {
e3dcdd73a549 8196207: Inefficient ArrayList.subList().toArray()
dl
parents: 48541
diff changeset
  1229
            checkForComodification();
e3dcdd73a549 8196207: Inefficient ArrayList.subList().toArray()
dl
parents: 48541
diff changeset
  1230
            if (a.length < size)
e3dcdd73a549 8196207: Inefficient ArrayList.subList().toArray()
dl
parents: 48541
diff changeset
  1231
                return (T[]) Arrays.copyOfRange(
e3dcdd73a549 8196207: Inefficient ArrayList.subList().toArray()
dl
parents: 48541
diff changeset
  1232
                        root.elementData, offset, offset + size, a.getClass());
e3dcdd73a549 8196207: Inefficient ArrayList.subList().toArray()
dl
parents: 48541
diff changeset
  1233
            System.arraycopy(root.elementData, offset, a, 0, size);
e3dcdd73a549 8196207: Inefficient ArrayList.subList().toArray()
dl
parents: 48541
diff changeset
  1234
            if (a.length > size)
e3dcdd73a549 8196207: Inefficient ArrayList.subList().toArray()
dl
parents: 48541
diff changeset
  1235
                a[size] = null;
e3dcdd73a549 8196207: Inefficient ArrayList.subList().toArray()
dl
parents: 48541
diff changeset
  1236
            return a;
e3dcdd73a549 8196207: Inefficient ArrayList.subList().toArray()
dl
parents: 48541
diff changeset
  1237
        }
e3dcdd73a549 8196207: Inefficient ArrayList.subList().toArray()
dl
parents: 48541
diff changeset
  1238
50127
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1239
        public boolean equals(Object o) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1240
            if (o == this) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1241
                return true;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1242
            }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1243
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1244
            if (!(o instanceof List)) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1245
                return false;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1246
            }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1247
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1248
            boolean equal = root.equalsRange((List<?>)o, offset, offset + size);
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1249
            checkForComodification();
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1250
            return equal;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1251
        }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1252
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1253
        public int hashCode() {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1254
            int hash = root.hashCodeRange(offset, offset + size);
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1255
            checkForComodification();
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1256
            return hash;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1257
        }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1258
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1259
        public int indexOf(Object o) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1260
            int index = root.indexOfRange(o, offset, offset + size);
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1261
            checkForComodification();
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1262
            return index >= 0 ? index - offset : -1;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1263
        }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1264
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1265
        public int lastIndexOf(Object o) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1266
            int index = root.lastIndexOfRange(o, offset, offset + size);
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1267
            checkForComodification();
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1268
            return index >= 0 ? index - offset : -1;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1269
        }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1270
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1271
        public boolean contains(Object o) {
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1272
            return indexOf(o) >= 0;
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1273
        }
4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList
redestad
parents: 49433
diff changeset
  1274
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
        public Iterator<E> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
            return listIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1279
        public ListIterator<E> listIterator(int index) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1280
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1281
            rangeCheckForAdd(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
            return new ListIterator<E>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
                int cursor = index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
                int lastRet = -1;
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1286
                int expectedModCount = root.modCount;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
                public boolean hasNext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
                    return cursor != SubList.this.size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
                @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
                public E next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
                    checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
                    int i = cursor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
                    if (i >= SubList.this.size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
                        throw new NoSuchElementException();
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1298
                    Object[] elementData = root.elementData;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
                    if (offset + i >= elementData.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
                        throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
                    cursor = i + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
                    return (E) elementData[offset + (lastRet = i)];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
                public boolean hasPrevious() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
                    return cursor != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1307
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1309
                @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1310
                public E previous() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
                    checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
                    int i = cursor - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
                    if (i < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
                        throw new NoSuchElementException();
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1315
                    Object[] elementData = root.elementData;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1316
                    if (offset + i >= elementData.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
                        throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
                    cursor = i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
                    return (E) elementData[offset + (lastRet = i)];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1321
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1322
                public void forEachRemaining(Consumer<? super E> action) {
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1323
                    Objects.requireNonNull(action);
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1324
                    final int size = SubList.this.size;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1325
                    int i = cursor;
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1326
                    if (i < size) {
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1327
                        final Object[] es = root.elementData;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1328
                        if (offset + i >= es.length)
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1329
                            throw new ConcurrentModificationException();
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1330
                        for (; i < size && modCount == expectedModCount; i++)
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1331
                            action.accept(elementAt(es, offset + i));
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1332
                        // update once at end to reduce heap write traffic
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1333
                        cursor = i;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1334
                        lastRet = i - 1;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1335
                        checkForComodification();
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1336
                    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1337
                }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1338
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1339
                public int nextIndex() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
                    return cursor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1341
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
                public int previousIndex() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
                    return cursor - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1345
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1347
                public void remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1348
                    if (lastRet < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1349
                        throw new IllegalStateException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1350
                    checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1351
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1352
                    try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
                        SubList.this.remove(lastRet);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1354
                        cursor = lastRet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
                        lastRet = -1;
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1356
                        expectedModCount = root.modCount;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
                    } catch (IndexOutOfBoundsException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
                        throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1359
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1360
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1361
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1362
                public void set(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1363
                    if (lastRet < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1364
                        throw new IllegalStateException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1365
                    checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1366
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1367
                    try {
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1368
                        root.set(offset + lastRet, e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1369
                    } catch (IndexOutOfBoundsException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1370
                        throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1371
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1372
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
                public void add(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
                    checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1377
                    try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1378
                        int i = cursor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1379
                        SubList.this.add(i, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
                        cursor = i + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
                        lastRet = -1;
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1382
                        expectedModCount = root.modCount;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
                    } catch (IndexOutOfBoundsException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
                        throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1385
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1386
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1387
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1388
                final void checkForComodification() {
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1389
                    if (root.modCount != expectedModCount)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1390
                        throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1391
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1392
            };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1393
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1395
        public List<E> subList(int fromIndex, int toIndex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1396
            subListRangeCheck(fromIndex, toIndex, size);
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1397
            return new SubList<>(this, fromIndex, toIndex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1400
        private void rangeCheckForAdd(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
            if (index < 0 || index > this.size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
                throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
        private String outOfBoundsMsg(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
            return "Index: "+index+", Size: "+this.size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1409
        private void checkForComodification() {
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1410
            if (root.modCount != modCount)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1412
        }
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1413
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1414
        private void updateSizeAndModCount(int sizeChange) {
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1415
            SubList<E> slist = this;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1416
            do {
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1417
                slist.size += sizeChange;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1418
                slist.modCount = root.modCount;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1419
                slist = slist.parent;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1420
            } while (slist != null);
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1421
        }
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1422
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1423
        public Spliterator<E> spliterator() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1424
            checkForComodification();
36655
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1425
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1426
            // ArrayListSpliterator not used here due to late-binding
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1427
            return new Spliterator<E>() {
36655
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1428
                private int index = offset; // current index, modified on advance/split
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1429
                private int fence = -1; // -1 until used; then one past last index
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1430
                private int expectedModCount; // initialized when fence set
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1431
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1432
                private int getFence() { // initialize fence to size on first use
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1433
                    int hi; // (a specialized variant appears in method forEach)
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1434
                    if ((hi = fence) < 0) {
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1435
                        expectedModCount = modCount;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1436
                        hi = fence = offset + size;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1437
                    }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1438
                    return hi;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1439
                }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1440
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1441
                public ArrayList<E>.ArrayListSpliterator trySplit() {
36655
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1442
                    int hi = getFence(), lo = index, mid = (lo + hi) >>> 1;
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1443
                    // ArrayListSpliterator can be used here as the source is already bound
36655
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1444
                    return (lo >= mid) ? null : // divide range in half unless too small
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1445
                        root.new ArrayListSpliterator(lo, index = mid, expectedModCount);
36655
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1446
                }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1447
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1448
                public boolean tryAdvance(Consumer<? super E> action) {
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1449
                    Objects.requireNonNull(action);
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1450
                    int hi = getFence(), i = index;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1451
                    if (i < hi) {
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1452
                        index = i + 1;
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1453
                        @SuppressWarnings("unchecked") E e = (E)root.elementData[i];
36655
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1454
                        action.accept(e);
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1455
                        if (root.modCount != expectedModCount)
36655
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1456
                            throw new ConcurrentModificationException();
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1457
                        return true;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1458
                    }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1459
                    return false;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1460
                }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1461
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1462
                public void forEachRemaining(Consumer<? super E> action) {
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1463
                    Objects.requireNonNull(action);
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1464
                    int i, hi, mc; // hoist accesses and checks from loop
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1465
                    ArrayList<E> lst = root;
36655
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1466
                    Object[] a;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1467
                    if ((a = lst.elementData) != null) {
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1468
                        if ((hi = fence) < 0) {
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1469
                            mc = modCount;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1470
                            hi = offset + size;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1471
                        }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1472
                        else
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1473
                            mc = expectedModCount;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1474
                        if ((i = index) >= 0 && (index = hi) <= a.length) {
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1475
                            for (; i < hi; ++i) {
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1476
                                @SuppressWarnings("unchecked") E e = (E) a[i];
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1477
                                action.accept(e);
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1478
                            }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1479
                            if (lst.modCount == mc)
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1480
                                return;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1481
                        }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1482
                    }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1483
                    throw new ConcurrentModificationException();
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1484
                }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1485
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1486
                public long estimateSize() {
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1487
                    return getFence() - index;
36655
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1488
                }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1489
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1490
                public int characteristics() {
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1491
                    return Spliterator.ORDERED | Spliterator.SIZED | Spliterator.SUBSIZED;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1492
                }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1493
            };
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1494
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1495
    }
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1496
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1497
    /**
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1498
     * @throws NullPointerException {@inheritDoc}
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1499
     */
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1500
    @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1501
    public void forEach(Consumer<? super E> action) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1502
        Objects.requireNonNull(action);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1503
        final int expectedModCount = modCount;
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1504
        final Object[] es = elementData;
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1505
        final int size = this.size;
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1506
        for (int i = 0; modCount == expectedModCount && i < size; i++)
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1507
            action.accept(elementAt(es, i));
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1508
        if (modCount != expectedModCount)
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1509
            throw new ConcurrentModificationException();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1510
    }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1511
19435
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1512
    /**
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1513
     * Creates a <em><a href="Spliterator.html#binding">late-binding</a></em>
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1514
     * and <em>fail-fast</em> {@link Spliterator} over the elements in this
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1515
     * list.
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1516
     *
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1517
     * <p>The {@code Spliterator} reports {@link Spliterator#SIZED},
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1518
     * {@link Spliterator#SUBSIZED}, and {@link Spliterator#ORDERED}.
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1519
     * Overriding implementations should document the reporting of additional
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1520
     * characteristic values.
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1521
     *
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1522
     * @return a {@code Spliterator} over the elements in this list
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1523
     * @since 1.8
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1524
     */
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1525
    @Override
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1526
    public Spliterator<E> spliterator() {
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1527
        return new ArrayListSpliterator(0, -1, 0);
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1528
    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1529
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1530
    /** Index-based split-by-two, lazily initialized Spliterator */
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1531
    final class ArrayListSpliterator implements Spliterator<E> {
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1532
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1533
        /*
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1534
         * If ArrayLists were immutable, or structurally immutable (no
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1535
         * adds, removes, etc), we could implement their spliterators
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1536
         * with Arrays.spliterator. Instead we detect as much
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1537
         * interference during traversal as practical without
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1538
         * sacrificing much performance. We rely primarily on
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1539
         * modCounts. These are not guaranteed to detect concurrency
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1540
         * violations, and are sometimes overly conservative about
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1541
         * within-thread interference, but detect enough problems to
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1542
         * be worthwhile in practice. To carry this out, we (1) lazily
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1543
         * initialize fence and expectedModCount until the latest
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1544
         * point that we need to commit to the state we are checking
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1545
         * against; thus improving precision.  (This doesn't apply to
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1546
         * SubLists, that create spliterators with current non-lazy
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1547
         * values).  (2) We perform only a single
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1548
         * ConcurrentModificationException check at the end of forEach
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1549
         * (the most performance-sensitive method). When using forEach
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1550
         * (as opposed to iterators), we can normally only detect
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1551
         * interference after actions, not before. Further
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1552
         * CME-triggering checks apply to all other possible
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1553
         * violations of assumptions for example null or too-small
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1554
         * elementData array given its size(), that could only have
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1555
         * occurred due to interference.  This allows the inner loop
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1556
         * of forEach to run without any further checks, and
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1557
         * simplifies lambda-resolution. While this does entail a
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1558
         * number of checks, note that in the common case of
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1559
         * list.stream().forEach(a), no checks or other computation
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1560
         * occur anywhere other than inside forEach itself.  The other
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1561
         * less-often-used methods cannot take advantage of most of
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1562
         * these streamlinings.
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1563
         */
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1564
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1565
        private int index; // current index, modified on advance/split
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1566
        private int fence; // -1 until used; then one past last index
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1567
        private int expectedModCount; // initialized when fence set
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1568
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1569
        /** Creates new spliterator covering the given range. */
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1570
        ArrayListSpliterator(int origin, int fence, int expectedModCount) {
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1571
            this.index = origin;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1572
            this.fence = fence;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1573
            this.expectedModCount = expectedModCount;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1574
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1575
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1576
        private int getFence() { // initialize fence to size on first use
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1577
            int hi; // (a specialized variant appears in method forEach)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1578
            if ((hi = fence) < 0) {
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1579
                expectedModCount = modCount;
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1580
                hi = fence = size;
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1581
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1582
            return hi;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1583
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1584
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1585
        public ArrayListSpliterator trySplit() {
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1586
            int hi = getFence(), lo = index, mid = (lo + hi) >>> 1;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1587
            return (lo >= mid) ? null : // divide range in half unless too small
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1588
                new ArrayListSpliterator(lo, index = mid, expectedModCount);
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1589
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1590
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1591
        public boolean tryAdvance(Consumer<? super E> action) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1592
            if (action == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1593
                throw new NullPointerException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1594
            int hi = getFence(), i = index;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1595
            if (i < hi) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1596
                index = i + 1;
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1597
                @SuppressWarnings("unchecked") E e = (E)elementData[i];
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1598
                action.accept(e);
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1599
                if (modCount != expectedModCount)
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1600
                    throw new ConcurrentModificationException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1601
                return true;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1602
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1603
            return false;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1604
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1605
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1606
        public void forEachRemaining(Consumer<? super E> action) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1607
            int i, hi, mc; // hoist accesses and checks from loop
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1608
            Object[] a;
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1609
            if (action == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1610
                throw new NullPointerException();
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1611
            if ((a = elementData) != null) {
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1612
                if ((hi = fence) < 0) {
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1613
                    mc = modCount;
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1614
                    hi = size;
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1615
                }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1616
                else
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1617
                    mc = expectedModCount;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1618
                if ((i = index) >= 0 && (index = hi) <= a.length) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1619
                    for (; i < hi; ++i) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1620
                        @SuppressWarnings("unchecked") E e = (E) a[i];
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1621
                        action.accept(e);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1622
                    }
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1623
                    if (modCount == mc)
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1624
                        return;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1625
                }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1626
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1627
            throw new ConcurrentModificationException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1628
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1629
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1630
        public long estimateSize() {
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1631
            return getFence() - index;
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1632
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1633
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1634
        public int characteristics() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1635
            return Spliterator.ORDERED | Spliterator.SIZED | Spliterator.SUBSIZED;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1636
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1637
    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1638
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1639
    // A tiny bit set implementation
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1640
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1641
    private static long[] nBits(int n) {
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1642
        return new long[((n - 1) >> 6) + 1];
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1643
    }
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1644
    private static void setBit(long[] bits, int i) {
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1645
        bits[i >> 6] |= 1L << i;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1646
    }
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1647
    private static boolean isClear(long[] bits, int i) {
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1648
        return (bits[i >> 6] & (1L << i)) == 0;
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1649
    }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1650
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1651
    /**
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1652
     * @throws NullPointerException {@inheritDoc}
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1653
     */
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1654
    @Override
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1655
    public boolean removeIf(Predicate<? super E> filter) {
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1656
        return removeIf(filter, 0, size);
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1657
    }
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1658
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1659
    /**
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1660
     * Removes all elements satisfying the given predicate, from index
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1661
     * i (inclusive) to index end (exclusive).
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1662
     */
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1663
    boolean removeIf(Predicate<? super E> filter, int i, final int end) {
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1664
        Objects.requireNonNull(filter);
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1665
        int expectedModCount = modCount;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1666
        final Object[] es = elementData;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1667
        // Optimize for initial run of survivors
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1668
        for (; i < end && !filter.test(elementAt(es, i)); i++)
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1669
            ;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1670
        // Tolerate predicates that reentrantly access the collection for
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1671
        // read (but writers still get CME), so traverse once to find
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1672
        // elements to delete, a second pass to physically expunge.
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1673
        if (i < end) {
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1674
            final int beg = i;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1675
            final long[] deathRow = nBits(end - beg);
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1676
            deathRow[0] = 1L;   // set bit 0
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1677
            for (i = beg + 1; i < end; i++)
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1678
                if (filter.test(elementAt(es, i)))
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1679
                    setBit(deathRow, i - beg);
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1680
            if (modCount != expectedModCount)
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1681
                throw new ConcurrentModificationException();
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1682
            modCount++;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1683
            int w = beg;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1684
            for (i = beg; i < end; i++)
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1685
                if (isClear(deathRow, i - beg))
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1686
                    es[w++] = es[i];
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42319
diff changeset
  1687
            shiftTailOverGap(es, w, end);
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1688
            return true;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1689
        } else {
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1690
            if (modCount != expectedModCount)
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1691
                throw new ConcurrentModificationException();
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1692
            return false;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1693
        }
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1694
    }
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1695
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1696
    @Override
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1697
    public void replaceAll(UnaryOperator<E> operator) {
50228
45093fb73c6d 8202685: Optimize ArrayList subList replaceAll
dl
parents: 50127
diff changeset
  1698
        replaceAllRange(operator, 0, size);
55036
265b110fc022 8223245: Miscellaneous changes imported from jsr166 CVS 2019-06
dl
parents: 54971
diff changeset
  1699
        // TODO(8203662): remove increment of modCount from ...
50228
45093fb73c6d 8202685: Optimize ArrayList subList replaceAll
dl
parents: 50127
diff changeset
  1700
        modCount++;
45093fb73c6d 8202685: Optimize ArrayList subList replaceAll
dl
parents: 50127
diff changeset
  1701
    }
45093fb73c6d 8202685: Optimize ArrayList subList replaceAll
dl
parents: 50127
diff changeset
  1702
45093fb73c6d 8202685: Optimize ArrayList subList replaceAll
dl
parents: 50127
diff changeset
  1703
    private void replaceAllRange(UnaryOperator<E> operator, int i, int end) {
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1704
        Objects.requireNonNull(operator);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1705
        final int expectedModCount = modCount;
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1706
        final Object[] es = elementData;
50228
45093fb73c6d 8202685: Optimize ArrayList subList replaceAll
dl
parents: 50127
diff changeset
  1707
        for (; modCount == expectedModCount && i < end; i++)
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1708
            es[i] = operator.apply(elementAt(es, i));
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1709
        if (modCount != expectedModCount)
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1710
            throw new ConcurrentModificationException();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1711
    }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1712
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1713
    @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1714
    @SuppressWarnings("unchecked")
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1715
    public void sort(Comparator<? super E> c) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1716
        final int expectedModCount = modCount;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1717
        Arrays.sort((E[]) elementData, 0, size, c);
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1718
        if (modCount != expectedModCount)
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1719
            throw new ConcurrentModificationException();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1720
        modCount++;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1721
    }
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1722
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1723
    void checkInvariants() {
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1724
        // assert size >= 0;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1725
        // assert size == elementData.length || elementData[size] == null;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 41370
diff changeset
  1726
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1727
}