annotate graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/extended/WriteNode.java @ 11959:23ccaa863eda

made CodeCacheProvider independent of MetaAccessProvider (GRAAL-511)
author Doug Simon <doug.simon@oracle.com>
date Thu, 10 Oct 2013 16:14:55 +0200
parents f8a87f3fab5a
children bca33c3135de
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
1 /*
4314
9ce8594bedaf Allow CiAddress as Input and Alive operands of LIR instructions.
Christian Wimmer <Christian.Wimmer@Oracle.com>
parents: 4199
diff changeset
2 * Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
4 *
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
7 * published by the Free Software Foundation.
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
8 *
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
13 * accompanied this code).
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
14 *
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
18 *
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
21 * questions.
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
22 */
5060
4ed4295ce15f Update import statements.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5059
diff changeset
23 package com.oracle.graal.nodes.extended;
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
24
9298
9ee5f3bfa755 Restructure load/store/lea LIR instructions.
Roland Schatz <roland.schatz@oracle.com>
parents: 9203
diff changeset
25 import com.oracle.graal.api.meta.*;
5060
4ed4295ce15f Update import statements.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5059
diff changeset
26 import com.oracle.graal.nodes.*;
9545
7931508747f5 Fix parameters of node intrinsics to use more specific Location and LocationIdentity types.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 9526
diff changeset
27 import com.oracle.graal.nodes.extended.LocationNode.Location;
5060
4ed4295ce15f Update import statements.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5059
diff changeset
28 import com.oracle.graal.nodes.spi.*;
5076
01ffb0fc9aec propagate stamps while lowering
Lukas Stadler <lukas.stadler@jku.at>
parents: 5061
diff changeset
29 import com.oracle.graal.nodes.type.*;
9875
2c55e8c4a591 make ReadNode and WriteNode virtualizable
Lukas Stadler <lukas.stadler@jku.at>
parents: 9850
diff changeset
30 import com.oracle.graal.nodes.virtual.*;
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
31
5823
f238fe91dc7f partial (non XIR) support for inlining virtual dispatch at call sites - still needs fixing
Doug Simon <doug.simon@oracle.com>
parents: 5443
diff changeset
32 /**
f238fe91dc7f partial (non XIR) support for inlining virtual dispatch at call sites - still needs fixing
Doug Simon <doug.simon@oracle.com>
parents: 5443
diff changeset
33 * Writes a given {@linkplain #value() value} a {@linkplain AccessNode memory location}.
f238fe91dc7f partial (non XIR) support for inlining virtual dispatch at call sites - still needs fixing
Doug Simon <doug.simon@oracle.com>
parents: 5443
diff changeset
34 */
11661
f8a87f3fab5a removed the IterableNodeType marker interface from (Read|Write|ArrayRangeWrite|LoweredCompareAndSwap)Node (GRAAL-471)
Doug Simon <doug.simon@oracle.com>
parents: 11631
diff changeset
35 public final class WriteNode extends AccessNode implements StateSplit, LIRLowerable, MemoryCheckpoint.Single, Virtualizable {
7530
5e3d1a68664e applied mx eclipseformat to all Java files
Doug Simon <doug.simon@oracle.com>
parents: 6716
diff changeset
36
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
37 @Input private ValueNode value;
5375
3035b6b881d9 removed stateAfter field from FixedWithNextNode - now only StateSplit implementations have this field
Doug Simon <doug.simon@oracle.com>
parents: 5362
diff changeset
38 @Input(notDataflow = true) private FrameState stateAfter;
10833
079513fc609e Rename isInitialized to isInitialization (inverting semantics!).
Roland Schatz <roland.schatz@oracle.com>
parents: 10828
diff changeset
39 private final boolean initialization;
5375
3035b6b881d9 removed stateAfter field from FixedWithNextNode - now only StateSplit implementations have this field
Doug Simon <doug.simon@oracle.com>
parents: 5362
diff changeset
40
3035b6b881d9 removed stateAfter field from FixedWithNextNode - now only StateSplit implementations have this field
Doug Simon <doug.simon@oracle.com>
parents: 5362
diff changeset
41 public FrameState stateAfter() {
3035b6b881d9 removed stateAfter field from FixedWithNextNode - now only StateSplit implementations have this field
Doug Simon <doug.simon@oracle.com>
parents: 5362
diff changeset
42 return stateAfter;
3035b6b881d9 removed stateAfter field from FixedWithNextNode - now only StateSplit implementations have this field
Doug Simon <doug.simon@oracle.com>
parents: 5362
diff changeset
43 }
3035b6b881d9 removed stateAfter field from FixedWithNextNode - now only StateSplit implementations have this field
Doug Simon <doug.simon@oracle.com>
parents: 5362
diff changeset
44
3035b6b881d9 removed stateAfter field from FixedWithNextNode - now only StateSplit implementations have this field
Doug Simon <doug.simon@oracle.com>
parents: 5362
diff changeset
45 public void setStateAfter(FrameState x) {
3035b6b881d9 removed stateAfter field from FixedWithNextNode - now only StateSplit implementations have this field
Doug Simon <doug.simon@oracle.com>
parents: 5362
diff changeset
46 assert x == null || x.isAlive() : "frame state must be in a graph";
3035b6b881d9 removed stateAfter field from FixedWithNextNode - now only StateSplit implementations have this field
Doug Simon <doug.simon@oracle.com>
parents: 5362
diff changeset
47 updateUsages(stateAfter, x);
3035b6b881d9 removed stateAfter field from FixedWithNextNode - now only StateSplit implementations have this field
Doug Simon <doug.simon@oracle.com>
parents: 5362
diff changeset
48 stateAfter = x;
3035b6b881d9 removed stateAfter field from FixedWithNextNode - now only StateSplit implementations have this field
Doug Simon <doug.simon@oracle.com>
parents: 5362
diff changeset
49 }
3035b6b881d9 removed stateAfter field from FixedWithNextNode - now only StateSplit implementations have this field
Doug Simon <doug.simon@oracle.com>
parents: 5362
diff changeset
50
6534
feb579677b58 SnippetTemplate must not depend on CodeCacheProvider (only on MetaAccessProvider). This means that the hasSideEffect flag of a RuntimeCall must be already fixed in the RuntimeCall.Descriptor to avoid a lookup of the actual RuntimeCall using the CodeCacheProvider.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6521
diff changeset
51 public boolean hasSideEffect() {
5375
3035b6b881d9 removed stateAfter field from FixedWithNextNode - now only StateSplit implementations have this field
Doug Simon <doug.simon@oracle.com>
parents: 5362
diff changeset
52 return true;
3035b6b881d9 removed stateAfter field from FixedWithNextNode - now only StateSplit implementations have this field
Doug Simon <doug.simon@oracle.com>
parents: 5362
diff changeset
53 }
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
54
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
55 public ValueNode value() {
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
56 return value;
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
57 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
58
10758
e82c28e94f08 Don't add G1 prebarrier if the written location is uninitialized.
Roland Schatz <roland.schatz@oracle.com>
parents: 10090
diff changeset
59 /**
10834
45ca31374e9f Documentation fixes.
Roland Schatz <roland.schatz@oracle.com>
parents: 10833
diff changeset
60 * Returns whether this write is the initialization of the written location. If it is true, the
10833
079513fc609e Rename isInitialized to isInitialization (inverting semantics!).
Roland Schatz <roland.schatz@oracle.com>
parents: 10828
diff changeset
61 * old value of the memory location is either uninitialized or zero. If it is false, the memory
079513fc609e Rename isInitialized to isInitialization (inverting semantics!).
Roland Schatz <roland.schatz@oracle.com>
parents: 10828
diff changeset
62 * location is guaranteed to contain a valid value or zero.
10758
e82c28e94f08 Don't add G1 prebarrier if the written location is uninitialized.
Roland Schatz <roland.schatz@oracle.com>
parents: 10090
diff changeset
63 */
10833
079513fc609e Rename isInitialized to isInitialization (inverting semantics!).
Roland Schatz <roland.schatz@oracle.com>
parents: 10828
diff changeset
64 public boolean isInitialization() {
079513fc609e Rename isInitialized to isInitialization (inverting semantics!).
Roland Schatz <roland.schatz@oracle.com>
parents: 10828
diff changeset
65 return initialization;
10758
e82c28e94f08 Don't add G1 prebarrier if the written location is uninitialized.
Roland Schatz <roland.schatz@oracle.com>
parents: 10090
diff changeset
66 }
e82c28e94f08 Don't add G1 prebarrier if the written location is uninitialized.
Roland Schatz <roland.schatz@oracle.com>
parents: 10090
diff changeset
67
10828
b05e1ff3aac0 Rename WriteBarrierType to BarrierType
Christos Kotselidis <christos.kotselidis@oracle.com>
parents: 10821
diff changeset
68 public WriteNode(ValueNode object, ValueNode value, ValueNode location, BarrierType barrierType, boolean compressible) {
10833
079513fc609e Rename isInitialized to isInitialization (inverting semantics!).
Roland Schatz <roland.schatz@oracle.com>
parents: 10828
diff changeset
69 this(object, value, location, barrierType, compressible, false);
10758
e82c28e94f08 Don't add G1 prebarrier if the written location is uninitialized.
Roland Schatz <roland.schatz@oracle.com>
parents: 10090
diff changeset
70 }
e82c28e94f08 Don't add G1 prebarrier if the written location is uninitialized.
Roland Schatz <roland.schatz@oracle.com>
parents: 10090
diff changeset
71
10833
079513fc609e Rename isInitialized to isInitialization (inverting semantics!).
Roland Schatz <roland.schatz@oracle.com>
parents: 10828
diff changeset
72 public WriteNode(ValueNode object, ValueNode value, ValueNode location, BarrierType barrierType, boolean compressible, boolean initialization) {
10821
0910c930c66e Method and variables' renaming
Christos Kotselidis <christos.kotselidis@oracle.com>
parents: 10758
diff changeset
73 super(object, location, StampFactory.forVoid(), barrierType, compressible);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
74 this.value = value;
10833
079513fc609e Rename isInitialized to isInitialization (inverting semantics!).
Roland Schatz <roland.schatz@oracle.com>
parents: 10828
diff changeset
75 this.initialization = initialization;
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
76 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
77
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
78 @Override
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
79 public void generate(LIRGeneratorTool gen) {
9298
9ee5f3bfa755 Restructure load/store/lea LIR instructions.
Roland Schatz <roland.schatz@oracle.com>
parents: 9203
diff changeset
80 Value address = location().generateAddress(gen, gen.operand(object()));
9ee5f3bfa755 Restructure load/store/lea LIR instructions.
Roland Schatz <roland.schatz@oracle.com>
parents: 9203
diff changeset
81 gen.emitStore(location().getValueKind(), address, gen.operand(value()), this);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
82 }
6290
01d274503562 canonicalize reads and writes on null objects to deopts
Lukas Stadler <lukas.stadler@jku.at>
parents: 5823
diff changeset
83
6406
33dab7b4b006 Add snippet factory methods
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6290
diff changeset
84 @NodeIntrinsic
10828
b05e1ff3aac0 Rename WriteBarrierType to BarrierType
Christos Kotselidis <christos.kotselidis@oracle.com>
parents: 10821
diff changeset
85 public static native void writeMemory(Object object, Object value, Location location, @ConstantNodeParameter BarrierType barrierType, @ConstantNodeParameter boolean compressible);
7864
b66a826acf4b add location identity to MemoryCheckpoint and let WriteNode implement MemoryCheckpoint
Lukas Stadler <lukas.stadler@jku.at>
parents: 7861
diff changeset
86
b66a826acf4b add location identity to MemoryCheckpoint and let WriteNode implement MemoryCheckpoint
Lukas Stadler <lukas.stadler@jku.at>
parents: 7861
diff changeset
87 @Override
10090
ae6f0c381087 split MemoryCheckpoint interface into Single and Multi
Lukas Stadler <lukas.stadler@jku.at>
parents: 9982
diff changeset
88 public LocationIdentity getLocationIdentity() {
ae6f0c381087 split MemoryCheckpoint interface into Single and Multi
Lukas Stadler <lukas.stadler@jku.at>
parents: 9982
diff changeset
89 return location().getLocationIdentity();
7864
b66a826acf4b add location identity to MemoryCheckpoint and let WriteNode implement MemoryCheckpoint
Lukas Stadler <lukas.stadler@jku.at>
parents: 7861
diff changeset
90 }
9875
2c55e8c4a591 make ReadNode and WriteNode virtualizable
Lukas Stadler <lukas.stadler@jku.at>
parents: 9850
diff changeset
91
2c55e8c4a591 make ReadNode and WriteNode virtualizable
Lukas Stadler <lukas.stadler@jku.at>
parents: 9850
diff changeset
92 @Override
2c55e8c4a591 make ReadNode and WriteNode virtualizable
Lukas Stadler <lukas.stadler@jku.at>
parents: 9850
diff changeset
93 public void virtualize(VirtualizerTool tool) {
2c55e8c4a591 make ReadNode and WriteNode virtualizable
Lukas Stadler <lukas.stadler@jku.at>
parents: 9850
diff changeset
94 if (location() instanceof ConstantLocationNode) {
2c55e8c4a591 make ReadNode and WriteNode virtualizable
Lukas Stadler <lukas.stadler@jku.at>
parents: 9850
diff changeset
95 ConstantLocationNode constantLocation = (ConstantLocationNode) location();
2c55e8c4a591 make ReadNode and WriteNode virtualizable
Lukas Stadler <lukas.stadler@jku.at>
parents: 9850
diff changeset
96 State state = tool.getObjectState(object());
2c55e8c4a591 make ReadNode and WriteNode virtualizable
Lukas Stadler <lukas.stadler@jku.at>
parents: 9850
diff changeset
97 if (state != null && state.getState() == EscapeState.Virtual) {
2c55e8c4a591 make ReadNode and WriteNode virtualizable
Lukas Stadler <lukas.stadler@jku.at>
parents: 9850
diff changeset
98 VirtualObjectNode virtual = state.getVirtualObject();
2c55e8c4a591 make ReadNode and WriteNode virtualizable
Lukas Stadler <lukas.stadler@jku.at>
parents: 9850
diff changeset
99 int entryIndex = virtual.entryIndexForOffset(constantLocation.getDisplacement());
2c55e8c4a591 make ReadNode and WriteNode virtualizable
Lukas Stadler <lukas.stadler@jku.at>
parents: 9850
diff changeset
100 if (entryIndex != -1 && virtual.entryKind(entryIndex) == constantLocation.getValueKind()) {
2c55e8c4a591 make ReadNode and WriteNode virtualizable
Lukas Stadler <lukas.stadler@jku.at>
parents: 9850
diff changeset
101 tool.setVirtualEntry(state, entryIndex, value());
2c55e8c4a591 make ReadNode and WriteNode virtualizable
Lukas Stadler <lukas.stadler@jku.at>
parents: 9850
diff changeset
102 tool.delete();
2c55e8c4a591 make ReadNode and WriteNode virtualizable
Lukas Stadler <lukas.stadler@jku.at>
parents: 9850
diff changeset
103 }
2c55e8c4a591 make ReadNode and WriteNode virtualizable
Lukas Stadler <lukas.stadler@jku.at>
parents: 9850
diff changeset
104 }
2c55e8c4a591 make ReadNode and WriteNode virtualizable
Lukas Stadler <lukas.stadler@jku.at>
parents: 9850
diff changeset
105 }
2c55e8c4a591 make ReadNode and WriteNode virtualizable
Lukas Stadler <lukas.stadler@jku.at>
parents: 9850
diff changeset
106 }
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
107 }