annotate graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/java/AtomicReadAndWriteNode.java @ 21556:48c1ebd24120

renamed com.oracle.graal.api[meta|code] modules to com.oracle.jvmci.[meta|code] (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Wed, 27 May 2015 00:36:16 +0200
parents cba35d171cd1
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15251
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
1 /*
21418
cba35d171cd1 Move memory related nodes to their own package.
Roland Schatz <roland.schatz@oracle.com>
parents: 19791
diff changeset
2 * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
15251
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
4 *
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
7 * published by the Free Software Foundation.
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
8 *
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
13 * accompanied this code).
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
14 *
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
18 *
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
21 * questions.
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
22 */
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
23 package com.oracle.graal.nodes.java;
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
24
16841
cbd42807a31f moved NodeInfo and friends into separate com.oracle.graal.nodeinfo project so that annotation processor can be applied to the base Node class
Doug Simon <doug.simon@oracle.com>
parents: 16822
diff changeset
25 import sun.misc.*;
15251
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
26
15261
882f4cb7cfcf Move Stamps to graal.compiler.common.
Josef Eisl <josef.eisl@jku.at>
parents: 15251
diff changeset
27 import com.oracle.graal.compiler.common.type.*;
19396
7e2c87dae93e Create static final NodeClass field named TYPE in Node subclasses.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18998
diff changeset
28 import com.oracle.graal.graph.*;
16841
cbd42807a31f moved NodeInfo and friends into separate com.oracle.graal.nodeinfo project so that annotation processor can be applied to the base Node class
Doug Simon <doug.simon@oracle.com>
parents: 16822
diff changeset
29 import com.oracle.graal.nodeinfo.*;
15251
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
30 import com.oracle.graal.nodes.*;
21418
cba35d171cd1 Move memory related nodes to their own package.
Roland Schatz <roland.schatz@oracle.com>
parents: 19791
diff changeset
31 import com.oracle.graal.nodes.memory.*;
15251
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
32 import com.oracle.graal.nodes.spi.*;
21556
48c1ebd24120 renamed com.oracle.graal.api[meta|code] modules to com.oracle.jvmci.[meta|code] (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21418
diff changeset
33 import com.oracle.jvmci.meta.*;
15291
471e28b8f03b Move UnsafeAccess to graal.compiler.common.
Josef Eisl <josef.eisl@jku.at>
parents: 15261
diff changeset
34
15251
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
35 /**
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
36 * Represents an atomic read-and-write operation like {@link Unsafe#getAndSetInt(Object, long, int)}
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
37 * .
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
38 */
16822
5d468add216f added @NodeInfo annotations to all Node classes
Doug Simon <doug.simon@oracle.com>
parents: 15291
diff changeset
39 @NodeInfo
18998
ec0733b5a90a Allow final modifier on node subclasses and start adding the modifier to leaf classes.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18845
diff changeset
40 public final class AtomicReadAndWriteNode extends AbstractMemoryCheckpoint implements Lowerable, MemoryCheckpoint.Single {
15251
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
41
19526
8fc336a04d77 Create TYPE fields for LIRInstruction and CompositeValue. Renaming NodeClass#get to NodeClass#create.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19403
diff changeset
42 public static final NodeClass<AtomicReadAndWriteNode> TYPE = NodeClass.create(AtomicReadAndWriteNode.class);
16897
f90dcdbbb75e switched to using new NodeFieldIterator and NodeFieldIterable for traversing Node inputs and successors
Doug Simon <doug.simon@oracle.com>
parents: 16895
diff changeset
43 @Input ValueNode object;
f90dcdbbb75e switched to using new NodeFieldIterator and NodeFieldIterable for traversing Node inputs and successors
Doug Simon <doug.simon@oracle.com>
parents: 16895
diff changeset
44 @Input ValueNode offset;
f90dcdbbb75e switched to using new NodeFieldIterator and NodeFieldIterable for traversing Node inputs and successors
Doug Simon <doug.simon@oracle.com>
parents: 16895
diff changeset
45 @Input ValueNode newValue;
15251
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
46
17328
c9bb0da795d4 Backed out of changeset 17322:655f3e6b467b
Doug Simon <doug.simon@oracle.com>
parents: 17327
diff changeset
47 protected final Kind valueKind;
c9bb0da795d4 Backed out of changeset 17322:655f3e6b467b
Doug Simon <doug.simon@oracle.com>
parents: 17327
diff changeset
48 protected final LocationIdentity locationIdentity;
15251
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
49
18845
f57d86eb036f removed Node factory methods
Doug Simon <doug.simon@oracle.com>
parents: 17450
diff changeset
50 public AtomicReadAndWriteNode(ValueNode object, ValueNode offset, ValueNode newValue, Kind valueKind, LocationIdentity locationIdentity) {
19396
7e2c87dae93e Create static final NodeClass field named TYPE in Node subclasses.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18998
diff changeset
51 super(TYPE, StampFactory.forKind(newValue.getKind()));
15251
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
52 this.object = object;
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
53 this.offset = offset;
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
54 this.newValue = newValue;
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
55 this.valueKind = valueKind;
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
56 this.locationIdentity = locationIdentity;
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
57 }
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
58
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
59 public ValueNode object() {
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
60 return object;
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
61 }
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
62
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
63 public ValueNode offset() {
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
64 return offset;
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
65 }
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
66
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
67 public ValueNode newValue() {
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
68 return newValue;
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
69 }
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
70
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
71 public Kind getValueKind() {
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
72 return valueKind;
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
73 }
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
74
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
75 public LocationIdentity getLocationIdentity() {
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
76 return locationIdentity;
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
77 }
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
78
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
79 public void lower(LoweringTool tool) {
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
80 tool.getLowerer().lower(this, tool);
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
81 }
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
82 }