langtools/src/share/classes/com/sun/tools/javac/code/Scope.java
author jjg
Mon, 10 Jan 2011 15:08:31 -0800
changeset 8032 e1aa25ccdabb
parent 7628 e7baeb97d164
child 8242 3873b4aaf4a8
permissions -rw-r--r--
6396503: javac should not require assertions enabled Reviewed-by: mcimadamore
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 7628
diff changeset
     2
 * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1264
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1264
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1264
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1264
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1264
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
package com.sun.tools.javac.code;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
import com.sun.tools.javac.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
import java.util.Iterator;
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
/** A scope represents an area of visibility in a Java program. The
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
 *  Scope class is a container for symbols which provides
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
 *  efficient access to symbols given their names. Scopes are implemented
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
    34
 *  as hash tables with "open addressing" and "double hashing".
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
    35
 *  Scopes can be nested; the next field of a scope points
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
 *  to its next outer scope. Nested scopes can share their hash tables.
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    38
 *  <p><b>This is NOT part of any supported API.
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    39
 *  If you write code that depends on this, you do so at your own risk.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
 *  This code and its internal interfaces are subject to change or
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
 *  deletion without notice.</b>
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
public class Scope {
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
    /** The number of scopes that share this scope's hash table.
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
    private int shared;
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
    /** Next enclosing scope (with whom this scope may share a hashtable)
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
    public Scope next;
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
    /** The scope's owner.
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
    public Symbol owner;
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
    /** A hash table for the scope's entries.
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
     */
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
    59
    Entry[] table;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
    /** Mask for hash codes, always equal to (table.length - 1).
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
    int hashMask;
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
    /** A linear list that also contains all entries in
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
     *  reverse order of appearance (i.e later entries are pushed on top).
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
    public Entry elems;
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
    /** The number of elements in this scope.
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
    71
     * This includes deleted elements, whose value is the sentinel.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
     */
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
    73
    int nelems = 0;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
6709
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
    75
    /** A timestamp - useful to quickly check whether a scope has changed or not
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
    76
     */
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
    77
    public ScopeCounter scopeCounter;
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
    78
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
    79
    static ScopeCounter dummyCounter = new ScopeCounter() {
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
    80
        @Override
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
    81
        public void inc() {
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
    82
            //do nothing
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
    83
        }
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
    84
    };
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
    85
7615
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
    86
    /** A list of scopes to be notified if items are to be removed from this scope.
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
    87
     */
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
    88
    List<Scope> listeners = List.nil();
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
    89
6709
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
    90
    public static class ScopeCounter {
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
    91
        protected static final Context.Key<ScopeCounter> scopeCounterKey =
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
    92
            new Context.Key<ScopeCounter>();
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
    93
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
    94
        public static ScopeCounter instance(Context context) {
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
    95
            ScopeCounter instance = context.get(scopeCounterKey);
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
    96
            if (instance == null)
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
    97
                instance = new ScopeCounter(context);
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
    98
            return instance;
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
    99
        }
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   100
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   101
        protected ScopeCounter(Context context) {
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   102
            context.put(scopeCounterKey, this);
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   103
        }
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   104
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   105
        private ScopeCounter() {};
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   106
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   107
        private long val = 0;
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   108
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   109
        public void inc() {
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   110
            val++;
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   111
        }
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   112
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   113
        public long val() {
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   114
            return val;
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   115
        }
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   116
    }
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   117
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   118
    /** Use as a "not-found" result for lookup.
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   119
     * Also used to mark deleted entries in the table.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
    private static final Entry sentinel = new Entry(null, null, null, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
    /** The hash table's initial size.
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
    private static final int INITIAL_SIZE = 0x10;
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
    /** A value for the empty scope.
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
     */
6709
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   129
    public static final Scope emptyScope = new Scope(null, null, new Entry[]{}, dummyCounter);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
    /** Construct a new scope, within scope next, with given owner, using
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
     *  given table. The table's length must be an exponent of 2.
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
     */
6709
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   134
    private Scope(Scope next, Symbol owner, Entry[] table, ScopeCounter scopeCounter) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
        this.next = next;
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 7628
diff changeset
   136
        Assert.check(emptyScope == null || owner != null);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
        this.owner = owner;
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
        this.table = table;
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
        this.hashMask = table.length - 1;
6709
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   140
        this.scopeCounter = scopeCounter;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   143
    /** Convenience constructor used for dup and dupUnshared. */
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   144
    private Scope(Scope next, Symbol owner, Entry[] table) {
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   145
        this(next, owner, table, next.scopeCounter);
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   146
        this.nelems = next.nelems;
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   147
    }
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   148
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
    /** Construct a new scope, within scope next, with given owner,
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
     *  using a fresh table of length INITIAL_SIZE.
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
    public Scope(Symbol owner) {
6709
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   153
        this(owner, dummyCounter);
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   154
    }
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   155
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   156
    protected Scope(Symbol owner, ScopeCounter scopeCounter) {
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   157
        this(null, owner, new Entry[INITIAL_SIZE], scopeCounter);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
    /** Construct a fresh scope within this scope, with same owner,
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
     *  which shares its table with the outer scope. Used in connection with
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
     *  method leave if scope access is stack-like in order to avoid allocation
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
     *  of fresh tables.
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
    public Scope dup() {
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   166
        return dup(this.owner);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
    /** Construct a fresh scope within this scope, with new owner,
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
     *  which shares its table with the outer scope. Used in connection with
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
     *  method leave if scope access is stack-like in order to avoid allocation
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
     *  of fresh tables.
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
    public Scope dup(Symbol newOwner) {
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   175
        Scope result = new Scope(this, newOwner, this.table);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
        shared++;
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
        // System.out.println("====> duping scope " + this.hashCode() + " owned by " + newOwner + " to " + result.hashCode());
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
        // new Error().printStackTrace(System.out);
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
        return result;
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
    /** Construct a fresh scope within this scope, with same owner,
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
     *  with a new hash table, whose contents initially are those of
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
     *  the table of its outer scope.
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
    public Scope dupUnshared() {
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   187
        return new Scope(this, this.owner, this.table.clone());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
    /** Remove all entries of this scope from its table, if shared
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
     *  with next.
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
    public Scope leave() {
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 7628
diff changeset
   194
        Assert.check(shared == 0);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
        if (table != next.table) return next;
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
        while (elems != null) {
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   197
            int hash = getIndex(elems.sym.name);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
            Entry e = table[hash];
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 7628
diff changeset
   199
            Assert.check(e == elems, elems.sym);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
            table[hash] = elems.shadowed;
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
            elems = elems.sibling;
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
        }
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 7628
diff changeset
   203
        Assert.check(next.shared > 0);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
        next.shared--;
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   205
        next.nelems = nelems;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
        // System.out.println("====> leaving scope " + this.hashCode() + " owned by " + this.owner + " to " + next.hashCode());
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
        // new Error().printStackTrace(System.out);
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
        return next;
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
    /** Double size of hash table.
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
    private void dble() {
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 7628
diff changeset
   214
        Assert.check(shared == 0);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
        Entry[] oldtable = table;
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
        Entry[] newtable = new Entry[oldtable.length * 2];
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
        for (Scope s = this; s != null; s = s.next) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
            if (s.table == oldtable) {
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 7628
diff changeset
   219
                Assert.check(s == this || s.shared != 0);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
                s.table = newtable;
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
                s.hashMask = newtable.length - 1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
        }
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   224
        int n = 0;
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   225
        for (int i = oldtable.length; --i >= 0; ) {
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   226
            Entry e = oldtable[i];
7615
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   227
            if (e != null && e != sentinel) {
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   228
                table[getIndex(e.sym.name)] = e;
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   229
                n++;
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   230
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
        }
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   232
        // We don't need to update nelems for shared inherited scopes,
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   233
        // since that gets handled by leave().
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   234
        nelems = n;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
    /** Enter symbol sym in this scope.
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
    public void enter(Symbol sym) {
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 7628
diff changeset
   240
        Assert.check(shared == 0);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
        enter(sym, this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
    public void enter(Symbol sym, Scope s) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
        enter(sym, s, s);
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
     * Enter symbol sym in this scope, but mark that it comes from
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
     * given scope `s' accessed through `origin'.  The last two
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
     * arguments are only used in import scopes.
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
    public void enter(Symbol sym, Scope s, Scope origin) {
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 7628
diff changeset
   254
        Assert.check(shared == 0);
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   255
        if (nelems * 3 >= hashMask * 2)
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   256
            dble();
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   257
        int hash = getIndex(sym.name);
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   258
        Entry old = table[hash];
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   259
        if (old == null) {
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   260
            old = sentinel;
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   261
            nelems++;
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   262
        }
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   263
        Entry e = makeEntry(sym, old, elems, s, origin);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
        table[hash] = e;
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
        elems = e;
6709
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   266
        scopeCounter.inc();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
    Entry makeEntry(Symbol sym, Entry shadowed, Entry sibling, Scope scope, Scope origin) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
        return new Entry(sym, shadowed, sibling, scope);
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
    /** Remove symbol from this scope.  Used when an inner class
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
     *  attribute tells us that the class isn't a package member.
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
    public void remove(Symbol sym) {
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 7628
diff changeset
   277
        Assert.check(shared == 0);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
        Entry e = lookup(sym.name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
        if (e.scope == null) return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
6709
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   281
        scopeCounter.inc();
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   282
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
        // remove e from table and shadowed list;
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   284
        int i = getIndex(sym.name);
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   285
        Entry te = table[i];
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
        if (te == e)
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   287
            table[i] = e.shadowed;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
        else while (true) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
            if (te.shadowed == e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
                te.shadowed = e.shadowed;
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
                break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
            te = te.shadowed;
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
        // remove e from elems and sibling list
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
        te = elems;
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
        if (te == e)
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
            elems = e.sibling;
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
        else while (true) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
            if (te.sibling == e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
                te.sibling = e.sibling;
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
                break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   304
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
            te = te.sibling;
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
        }
7615
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   307
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   308
        // remove items from scopes that have done importAll
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   309
        for (List<Scope> l = listeners; l.nonEmpty(); l = l.tail) {
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   310
            l.head.remove(sym);
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   311
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   312
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
    /** Enter symbol sym in this scope if not already there.
06bc494ca11e Initial load
duke
parents:
diff changeset
   315
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   316
    public void enterIfAbsent(Symbol sym) {
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 7628
diff changeset
   317
        Assert.check(shared == 0);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
        Entry e = lookup(sym.name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   319
        while (e.scope == this && e.sym.kind != sym.kind) e = e.next();
06bc494ca11e Initial load
duke
parents:
diff changeset
   320
        if (e.scope != this) enter(sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   321
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   322
06bc494ca11e Initial load
duke
parents:
diff changeset
   323
    /** Given a class, is there already a class with same fully
06bc494ca11e Initial load
duke
parents:
diff changeset
   324
     *  qualified name in this (import) scope?
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   326
    public boolean includes(Symbol c) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   327
        for (Scope.Entry e = lookup(c.name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   328
             e.scope == this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   329
             e = e.next()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
            if (e.sym == c) return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   331
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   332
        return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   333
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   334
6591
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   335
    static final Filter<Symbol> noFilter = new Filter<Symbol>() {
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   336
        public boolean accepts(Symbol s) {
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   337
            return true;
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   338
        }
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   339
    };
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   340
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   341
    /** Return the entry associated with given name, starting in
06bc494ca11e Initial load
duke
parents:
diff changeset
   342
     *  this scope and proceeding outwards. If no entry was found,
06bc494ca11e Initial load
duke
parents:
diff changeset
   343
     *  return the sentinel, which is characterized by having a null in
06bc494ca11e Initial load
duke
parents:
diff changeset
   344
     *  both its scope and sym fields, whereas both fields are non-null
06bc494ca11e Initial load
duke
parents:
diff changeset
   345
     *  for regular entries.
06bc494ca11e Initial load
duke
parents:
diff changeset
   346
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   347
    public Entry lookup(Name name) {
6591
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   348
        return lookup(name, noFilter);
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   349
    }
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   350
    public Entry lookup(Name name, Filter<Symbol> sf) {
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   351
        Entry e = table[getIndex(name)];
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   352
        if (e == null || e == sentinel)
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   353
            return sentinel;
6591
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   354
        while (e.scope != null && (e.sym.name != name || !sf.accepts(e.sym)))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
            e = e.shadowed;
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
        return e;
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   359
    /*void dump (java.io.PrintStream out) {
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   360
        out.println(this);
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   361
        for (int l=0; l < table.length; l++) {
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   362
            Entry le = table[l];
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   363
            out.print("#"+l+": ");
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   364
            if (le==sentinel) out.println("sentinel");
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   365
            else if(le == null) out.println("null");
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   366
            else out.println(""+le+" s:"+le.sym);
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   367
        }
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   368
    }*/
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   369
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   370
    /** Look for slot in the table.
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   371
     *  We use open addressing with double hashing.
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   372
     */
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   373
    int getIndex (Name name) {
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   374
        int h = name.hashCode();
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   375
        int i = h & hashMask;
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   376
        // The expression below is always odd, so it is guaranteed
7615
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   377
        // to be mutually prime with table.length, a power of 2.
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   378
        int x = hashMask - ((h + (h >> 16)) << 1);
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   379
        int d = -1; // Index of a deleted item.
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   380
        for (;;) {
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   381
            Entry e = table[i];
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   382
            if (e == null)
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   383
                return d >= 0 ? d : i;
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   384
            if (e == sentinel) {
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   385
                // We have to keep searching even if we see a deleted item.
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   386
                // However, remember the index in case we fail to find the name.
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   387
                if (d < 0)
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   388
                    d = i;
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   389
            } else if (e.sym.name == name)
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   390
                return i;
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   391
            i = (i + x) & hashMask;
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   392
        }
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   393
    }
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   394
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   395
    public Iterable<Symbol> getElements() {
6591
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   396
        return getElements(noFilter);
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   397
    }
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   398
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   399
    public Iterable<Symbol> getElements(final Filter<Symbol> sf) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   400
        return new Iterable<Symbol>() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   401
            public Iterator<Symbol> iterator() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   402
                return new Iterator<Symbol>() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   403
                    private Scope currScope = Scope.this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   404
                    private Scope.Entry currEntry = elems;
06bc494ca11e Initial load
duke
parents:
diff changeset
   405
                    {
06bc494ca11e Initial load
duke
parents:
diff changeset
   406
                        update();
06bc494ca11e Initial load
duke
parents:
diff changeset
   407
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   408
06bc494ca11e Initial load
duke
parents:
diff changeset
   409
                    public boolean hasNext() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   410
                        return currEntry != null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   411
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   412
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
                    public Symbol next() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   414
                        Symbol sym = (currEntry == null ? null : currEntry.sym);
6591
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   415
                        if (currEntry != null) {
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   416
                            currEntry = currEntry.sibling;
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   417
                        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   418
                        update();
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
                        return sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
   420
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   421
06bc494ca11e Initial load
duke
parents:
diff changeset
   422
                    public void remove() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   423
                        throw new UnsupportedOperationException();
06bc494ca11e Initial load
duke
parents:
diff changeset
   424
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   425
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
                    private void update() {
6591
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   427
                        skipToNextMatchingEntry();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   428
                        while (currEntry == null && currScope.next != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   429
                            currScope = currScope.next;
06bc494ca11e Initial load
duke
parents:
diff changeset
   430
                            currEntry = currScope.elems;
6591
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   431
                            skipToNextMatchingEntry();
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   432
                        }
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   433
                    }
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   434
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   435
                    void skipToNextMatchingEntry() {
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   436
                        while (currEntry != null && !sf.accepts(currEntry.sym)) {
a953c8c6b85e 6337171: javac should create bridge methods when type variable bounds restricted
mcimadamore
parents: 5847
diff changeset
   437
                            currEntry = currEntry.sibling;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   438
                        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   439
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   440
                };
06bc494ca11e Initial load
duke
parents:
diff changeset
   441
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   442
        };
06bc494ca11e Initial load
duke
parents:
diff changeset
   443
06bc494ca11e Initial load
duke
parents:
diff changeset
   444
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   445
06bc494ca11e Initial load
duke
parents:
diff changeset
   446
    public String toString() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   447
        StringBuilder result = new StringBuilder();
06bc494ca11e Initial load
duke
parents:
diff changeset
   448
        result.append("Scope[");
06bc494ca11e Initial load
duke
parents:
diff changeset
   449
        for (Scope s = this; s != null ; s = s.next) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   450
            if (s != this) result.append(" | ");
06bc494ca11e Initial load
duke
parents:
diff changeset
   451
            for (Entry e = s.elems; e != null; e = e.sibling) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   452
                if (e != s.elems) result.append(", ");
06bc494ca11e Initial load
duke
parents:
diff changeset
   453
                result.append(e.sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   454
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   455
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   456
        result.append("]");
06bc494ca11e Initial load
duke
parents:
diff changeset
   457
        return result.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   458
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   459
06bc494ca11e Initial load
duke
parents:
diff changeset
   460
    /** A class for scope entries.
06bc494ca11e Initial load
duke
parents:
diff changeset
   461
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   462
    public static class Entry {
06bc494ca11e Initial load
duke
parents:
diff changeset
   463
06bc494ca11e Initial load
duke
parents:
diff changeset
   464
        /** The referenced symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
   465
         *  sym == null   iff   this == sentinel
06bc494ca11e Initial load
duke
parents:
diff changeset
   466
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   467
        public Symbol sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
   468
06bc494ca11e Initial load
duke
parents:
diff changeset
   469
        /** An entry with the same hash code, or sentinel.
06bc494ca11e Initial load
duke
parents:
diff changeset
   470
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   471
        private Entry shadowed;
06bc494ca11e Initial load
duke
parents:
diff changeset
   472
06bc494ca11e Initial load
duke
parents:
diff changeset
   473
        /** Next entry in same scope.
06bc494ca11e Initial load
duke
parents:
diff changeset
   474
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   475
        public Entry sibling;
06bc494ca11e Initial load
duke
parents:
diff changeset
   476
06bc494ca11e Initial load
duke
parents:
diff changeset
   477
        /** The entry's scope.
06bc494ca11e Initial load
duke
parents:
diff changeset
   478
         *  scope == null   iff   this == sentinel
06bc494ca11e Initial load
duke
parents:
diff changeset
   479
         *  for an entry in an import scope, this is the scope
06bc494ca11e Initial load
duke
parents:
diff changeset
   480
         *  where the entry came from (i.e. was imported from).
06bc494ca11e Initial load
duke
parents:
diff changeset
   481
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   482
        public Scope scope;
06bc494ca11e Initial load
duke
parents:
diff changeset
   483
06bc494ca11e Initial load
duke
parents:
diff changeset
   484
        public Entry(Symbol sym, Entry shadowed, Entry sibling, Scope scope) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   485
            this.sym = sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
   486
            this.shadowed = shadowed;
06bc494ca11e Initial load
duke
parents:
diff changeset
   487
            this.sibling = sibling;
06bc494ca11e Initial load
duke
parents:
diff changeset
   488
            this.scope = scope;
06bc494ca11e Initial load
duke
parents:
diff changeset
   489
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   490
06bc494ca11e Initial load
duke
parents:
diff changeset
   491
        /** Return next entry with the same name as this entry, proceeding
06bc494ca11e Initial load
duke
parents:
diff changeset
   492
         *  outwards if not found in this scope.
06bc494ca11e Initial load
duke
parents:
diff changeset
   493
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   494
        public Entry next() {
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   495
            return shadowed;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   496
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   497
7628
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 7615
diff changeset
   498
        public Entry next(Filter<Symbol> sf) {
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 7615
diff changeset
   499
            if (shadowed.sym == null || sf.accepts(shadowed.sym)) return shadowed;
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 7615
diff changeset
   500
            else return shadowed.next(sf);
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 7615
diff changeset
   501
        }
e7baeb97d164 6476118: compiler bug causes runtime ClassCastException for generics overloading
mcimadamore
parents: 7615
diff changeset
   502
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   503
        public Scope getOrigin() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   504
            // The origin is only recorded for import scopes.  For all
06bc494ca11e Initial load
duke
parents:
diff changeset
   505
            // other scope entries, the "enclosing" type is available
06bc494ca11e Initial load
duke
parents:
diff changeset
   506
            // from other sources.  See Attr.visitSelect and
06bc494ca11e Initial load
duke
parents:
diff changeset
   507
            // Attr.visitIdent.  Rather than throwing an assertion
06bc494ca11e Initial load
duke
parents:
diff changeset
   508
            // error, we return scope which will be the same as origin
06bc494ca11e Initial load
duke
parents:
diff changeset
   509
            // in many cases.
06bc494ca11e Initial load
duke
parents:
diff changeset
   510
            return scope;
06bc494ca11e Initial load
duke
parents:
diff changeset
   511
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   512
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   513
06bc494ca11e Initial load
duke
parents:
diff changeset
   514
    public static class ImportScope extends Scope {
06bc494ca11e Initial load
duke
parents:
diff changeset
   515
06bc494ca11e Initial load
duke
parents:
diff changeset
   516
        public ImportScope(Symbol owner) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   517
            super(owner);
06bc494ca11e Initial load
duke
parents:
diff changeset
   518
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   519
06bc494ca11e Initial load
duke
parents:
diff changeset
   520
        @Override
06bc494ca11e Initial load
duke
parents:
diff changeset
   521
        Entry makeEntry(Symbol sym, Entry shadowed, Entry sibling, Scope scope, Scope origin) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   522
            return new ImportEntry(sym, shadowed, sibling, scope, origin);
06bc494ca11e Initial load
duke
parents:
diff changeset
   523
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   524
06bc494ca11e Initial load
duke
parents:
diff changeset
   525
        static class ImportEntry extends Entry {
06bc494ca11e Initial load
duke
parents:
diff changeset
   526
            private Scope origin;
06bc494ca11e Initial load
duke
parents:
diff changeset
   527
06bc494ca11e Initial load
duke
parents:
diff changeset
   528
            ImportEntry(Symbol sym, Entry shadowed, Entry sibling, Scope scope, Scope origin) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   529
                super(sym, shadowed, sibling, scope);
06bc494ca11e Initial load
duke
parents:
diff changeset
   530
                this.origin = origin;
06bc494ca11e Initial load
duke
parents:
diff changeset
   531
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   532
06bc494ca11e Initial load
duke
parents:
diff changeset
   533
            @Override
06bc494ca11e Initial load
duke
parents:
diff changeset
   534
            public Scope getOrigin() { return origin; }
7615
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   535
        }
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   536
    }
7206
02edd110358f 6998063: new Scope impl to fix Scope performance issues
jjg
parents: 7079
diff changeset
   537
7615
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   538
    public static class StarImportScope extends ImportScope {
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   539
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   540
        public StarImportScope(Symbol owner) {
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   541
            super(owner);
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   542
        }
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   543
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   544
        public void importAll (Scope fromScope) {
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   545
            for (Scope.Entry e = fromScope.elems; e != null; e = e.sibling) {
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   546
                if (e.sym.kind == Kinds.TYP && !includes(e.sym))
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   547
                    enter(e.sym, fromScope);
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   548
            }
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   549
            // Register to be notified when imported items are removed
8bc078486f2b 7004029: intermittent failures compiling pack200
jjg
parents: 7329
diff changeset
   550
            fromScope.listeners = fromScope.listeners.prepend(this);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   551
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   552
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   553
06bc494ca11e Initial load
duke
parents:
diff changeset
   554
    /** An empty scope, into which you can't place anything.  Used for
06bc494ca11e Initial load
duke
parents:
diff changeset
   555
     *  the scope for a variable initializer.
06bc494ca11e Initial load
duke
parents:
diff changeset
   556
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   557
    public static class DelegatedScope extends Scope {
06bc494ca11e Initial load
duke
parents:
diff changeset
   558
        Scope delegatee;
06bc494ca11e Initial load
duke
parents:
diff changeset
   559
        public static final Entry[] emptyTable = new Entry[0];
06bc494ca11e Initial load
duke
parents:
diff changeset
   560
06bc494ca11e Initial load
duke
parents:
diff changeset
   561
        public DelegatedScope(Scope outer) {
6709
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   562
            super(outer, outer.owner, emptyTable, outer.scopeCounter);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   563
            delegatee = outer;
06bc494ca11e Initial load
duke
parents:
diff changeset
   564
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   565
        public Scope dup() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   566
            return new DelegatedScope(next);
06bc494ca11e Initial load
duke
parents:
diff changeset
   567
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   568
        public Scope dupUnshared() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   569
            return new DelegatedScope(next);
06bc494ca11e Initial load
duke
parents:
diff changeset
   570
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   571
        public Scope leave() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   572
            return next;
06bc494ca11e Initial load
duke
parents:
diff changeset
   573
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   574
        public void enter(Symbol sym) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   575
            // only anonymous classes could be put here
06bc494ca11e Initial load
duke
parents:
diff changeset
   576
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   577
        public void enter(Symbol sym, Scope s) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   578
            // only anonymous classes could be put here
06bc494ca11e Initial load
duke
parents:
diff changeset
   579
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   580
        public void remove(Symbol sym) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   581
            throw new AssertionError(sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   582
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   583
        public Entry lookup(Name name) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   584
            return delegatee.lookup(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   585
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   586
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   587
6709
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   588
    /** A class scope, for which a scope counter should be provided */
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   589
    public static class ClassScope extends Scope {
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   590
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   591
        ClassScope(Scope next, Symbol owner, Entry[] table, ScopeCounter scopeCounter) {
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   592
            super(next, owner, table, scopeCounter);
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   593
        }
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   594
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   595
        public ClassScope(Symbol owner, ScopeCounter scopeCounter) {
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   596
            super(owner, scopeCounter);
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   597
        }
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   598
    }
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   599
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   600
    /** An error scope, for which the owner should be an error symbol. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   601
    public static class ErrorScope extends Scope {
06bc494ca11e Initial load
duke
parents:
diff changeset
   602
        ErrorScope(Scope next, Symbol errSymbol, Entry[] table) {
6709
ade773eb432d 6980862: too aggressive compiler optimization causes stale results of Types.implementation()
mcimadamore
parents: 6591
diff changeset
   603
            super(next, /*owner=*/errSymbol, table, dummyCounter);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   604
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   605
        public ErrorScope(Symbol errSymbol) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   606
            super(errSymbol);
06bc494ca11e Initial load
duke
parents:
diff changeset
   607
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   608
        public Scope dup() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   609
            return new ErrorScope(this, owner, table);
06bc494ca11e Initial load
duke
parents:
diff changeset
   610
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   611
        public Scope dupUnshared() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   612
            return new ErrorScope(this, owner, table.clone());
06bc494ca11e Initial load
duke
parents:
diff changeset
   613
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   614
        public Entry lookup(Name name) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   615
            Entry e = super.lookup(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   616
            if (e.scope == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   617
                return new Entry(owner, null, null, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   618
            else
06bc494ca11e Initial load
duke
parents:
diff changeset
   619
                return e;
06bc494ca11e Initial load
duke
parents:
diff changeset
   620
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   621
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   622
}