MapCreator.java revision 1115:a723569d0559
1/*
2 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.  Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26package jdk.nashorn.internal.codegen;
27
28import static jdk.nashorn.internal.runtime.arrays.ArrayIndex.getArrayIndex;
29import static jdk.nashorn.internal.runtime.arrays.ArrayIndex.isValidArrayIndex;
30
31import java.util.ArrayList;
32import java.util.List;
33import jdk.nashorn.internal.ir.Symbol;
34import jdk.nashorn.internal.runtime.AccessorProperty;
35import jdk.nashorn.internal.runtime.Property;
36import jdk.nashorn.internal.runtime.PropertyMap;
37import jdk.nashorn.internal.runtime.ScriptObject;
38import jdk.nashorn.internal.runtime.SpillProperty;
39
40/**
41 * Class that creates PropertyMap sent to script object constructors.
42 * @param <T> value type for tuples, e.g. Symbol
43 */
44public class MapCreator<T> {
45    /** Object structure for objects associated with this map */
46    private final Class<?> structure;
47
48    /** key set for object map */
49    private final List<MapTuple<T>> tuples;
50
51    /**
52     * Constructor
53     *
54     * @param structure structure to generate map for (a JO subclass)
55     * @param tuples    list of tuples for map
56     */
57    MapCreator(final Class<? extends ScriptObject> structure, final List<MapTuple<T>> tuples) {
58        this.structure = structure;
59        this.tuples    = tuples;
60    }
61
62    /**
63     * Constructs a property map based on a set of fields.
64     *
65     * @param hasArguments  does the created object have an "arguments" property
66     * @param fieldCount    Number of fields in use.
67     * @param fieldMaximum  Number of fields available.
68     * @param evalCode      is this property map created for 'eval' code?
69     * @return New map populated with accessor properties.
70     */
71    PropertyMap makeFieldMap(final boolean hasArguments, final int fieldCount, final int fieldMaximum, final boolean evalCode) {
72        final List<Property> properties = new ArrayList<>();
73        assert tuples != null;
74
75        for (final MapTuple<T> tuple : tuples) {
76            final String   key         = tuple.key;
77            final Symbol   symbol      = tuple.symbol;
78            final Class<?> initialType = tuple.getValueType();
79
80            if (symbol != null && !isValidArrayIndex(getArrayIndex(key))) {
81                final int      flags    = getPropertyFlags(symbol, hasArguments, evalCode);
82                final Property property = new AccessorProperty(
83                        key,
84                        flags,
85                        structure,
86                        symbol.getFieldIndex(),
87                        initialType);
88                properties.add(property);
89            }
90        }
91
92        return PropertyMap.newMap(properties, structure.getName(), fieldCount, fieldMaximum, 0);
93    }
94
95    PropertyMap makeSpillMap(final boolean hasArguments) {
96        final List<Property> properties = new ArrayList<>();
97        int spillIndex = 0;
98        assert tuples != null;
99
100        for (final MapTuple<T> tuple : tuples) {
101            final String key    = tuple.key;
102            final Symbol symbol = tuple.symbol;
103
104            //TODO initial type is object here no matter what. Is that right?
105            if (symbol != null && !isValidArrayIndex(getArrayIndex(key))) {
106                final int flags = getPropertyFlags(symbol, hasArguments, false);
107                properties.add(
108                        new SpillProperty(
109                                key,
110                                flags,
111                                spillIndex++));
112            }
113        }
114
115        return PropertyMap.newMap(properties, structure.getName(), 0, 0, spillIndex);
116    }
117
118    /**
119     * Compute property flags given local state of a field. May be overridden and extended,
120     *
121     * @param symbol       symbol to check
122     * @param hasArguments does the created object have an "arguments" property
123     *
124     * @return flags to use for fields
125     */
126    static int getPropertyFlags(final Symbol symbol, final boolean hasArguments, final boolean evalCode) {
127        int flags = 0;
128
129        if (symbol.isParam()) {
130            flags |= Property.IS_PARAMETER;
131        }
132
133        if (hasArguments) {
134            flags |= Property.HAS_ARGUMENTS;
135        }
136
137        // See ECMA 5.1 10.5 Declaration Binding Instantiation.
138        // Step 2  If code is eval code, then let configurableBindings
139        // be true else let configurableBindings be false.
140        // We have to make vars, functions declared in 'eval' code
141        // configurable. But vars, functions from any other code is
142        // not configurable.
143        if (symbol.isScope() && !evalCode) {
144            flags |= Property.NOT_CONFIGURABLE;
145        }
146
147        if (symbol.isFunctionDeclaration()) {
148            flags |= Property.IS_FUNCTION_DECLARATION;
149        }
150
151        if (symbol.isConst()) {
152            flags |= Property.NOT_WRITABLE;
153        }
154
155        if (symbol.isBlockScoped()) {
156            flags |= Property.IS_LEXICAL_BINDING;
157        }
158
159        // Mark symbol as needing declaration. Access before declaration will throw a ReferenceError.
160        if (symbol.isBlockScoped() && symbol.isScope()) {
161            flags |= Property.NEEDS_DECLARATION;
162        }
163
164        return flags;
165    }
166}
167