nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/ir/LexicalContextNode.java
author attila
Wed, 28 Jan 2015 17:58:08 +0100
changeset 28690 78317797ab62
parent 25865 d38d876f1654
permissions -rw-r--r--
8067139: Finally blocks inlined incorrectly Reviewed-by: hannesw, lagergren
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
     1
/*
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
     2
 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
     4
 *
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    10
 *
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    15
 * accompanied this code).
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    16
 *
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    20
 *
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    23
 * questions.
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    24
 */
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    25
package jdk.nashorn.internal.ir;
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    26
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    27
import jdk.nashorn.internal.ir.visitor.NodeVisitor;
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    28
18867
bc91e3fcc5ba 8013925: Remove symbol fields from nodes that don't need them
attila
parents: 17769
diff changeset
    29
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    30
/**
18867
bc91e3fcc5ba 8013925: Remove symbol fields from nodes that don't need them
attila
parents: 17769
diff changeset
    31
 * Interface for nodes that can be part of the lexical context.
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    32
 * @see LexicalContext
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    33
 */
18867
bc91e3fcc5ba 8013925: Remove symbol fields from nodes that don't need them
attila
parents: 17769
diff changeset
    34
public interface LexicalContextNode {
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    35
    /**
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    36
     * Accept function for the node given a lexical context. It must be prepared
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    37
     * to replace itself if present in the lexical context
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    38
     *
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    39
     * @param lc      lexical context
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    40
     * @param visitor node visitor
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    41
     *
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    42
     * @return new node or same node depending on state change
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    43
     */
18867
bc91e3fcc5ba 8013925: Remove symbol fields from nodes that don't need them
attila
parents: 17769
diff changeset
    44
    Node accept(final LexicalContext lc, final NodeVisitor<? extends LexicalContext> visitor);
17518
2225a4f929c0 8013477: Node.setSymbol needs to be copy on write - enable IR snapshots for recompilation based on callsite type specialization. [not enabled by default, hidden by a flag for now]
lagergren
parents: 17233
diff changeset
    45
18867
bc91e3fcc5ba 8013925: Remove symbol fields from nodes that don't need them
attila
parents: 17769
diff changeset
    46
    // Would be a default method on Java 8
19472
9476460521b3 8023017: SUB missing for widest op == number for BinaryNode
lagergren
parents: 18867
diff changeset
    47
    /**
9476460521b3 8023017: SUB missing for widest op == number for BinaryNode
lagergren
parents: 18867
diff changeset
    48
     * Helper class for accept for items of this lexical context, delegates to the
9476460521b3 8023017: SUB missing for widest op == number for BinaryNode
lagergren
parents: 18867
diff changeset
    49
     * subclass accept and makes sure that the node is on the context before accepting
9476460521b3 8023017: SUB missing for widest op == number for BinaryNode
lagergren
parents: 18867
diff changeset
    50
     * and gets popped after accepting (and that the stack is consistent in that the
9476460521b3 8023017: SUB missing for widest op == number for BinaryNode
lagergren
parents: 18867
diff changeset
    51
     * node has been replaced with the possible new node resulting in visitation)
9476460521b3 8023017: SUB missing for widest op == number for BinaryNode
lagergren
parents: 18867
diff changeset
    52
     */
18867
bc91e3fcc5ba 8013925: Remove symbol fields from nodes that don't need them
attila
parents: 17769
diff changeset
    53
    static class Acceptor {
19472
9476460521b3 8023017: SUB missing for widest op == number for BinaryNode
lagergren
parents: 18867
diff changeset
    54
        static Node accept(final LexicalContextNode node, final NodeVisitor<? extends LexicalContext> visitor) {
18867
bc91e3fcc5ba 8013925: Remove symbol fields from nodes that don't need them
attila
parents: 17769
diff changeset
    55
            final LexicalContext lc = visitor.getLexicalContext();
bc91e3fcc5ba 8013925: Remove symbol fields from nodes that don't need them
attila
parents: 17769
diff changeset
    56
            lc.push(node);
28690
78317797ab62 8067139: Finally blocks inlined incorrectly
attila
parents: 25865
diff changeset
    57
            final Node newNode = node.accept(lc, visitor);
78317797ab62 8067139: Finally blocks inlined incorrectly
attila
parents: 25865
diff changeset
    58
            return lc.pop(newNode);
18867
bc91e3fcc5ba 8013925: Remove symbol fields from nodes that don't need them
attila
parents: 17769
diff changeset
    59
        }
17518
2225a4f929c0 8013477: Node.setSymbol needs to be copy on write - enable IR snapshots for recompilation based on callsite type specialization. [not enabled by default, hidden by a flag for now]
lagergren
parents: 17233
diff changeset
    60
    }
17233
72ccf78a8216 8010701: Immutable nodes - final iteration
lagergren
parents:
diff changeset
    61
}