annotate graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/java/AtomicReadAndAddNode.java @ 19526:8fc336a04d77

Create TYPE fields for LIRInstruction and CompositeValue. Renaming NodeClass#get to NodeClass#create.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Fri, 20 Feb 2015 22:22:55 +0100
parents 61d3cb8e1280
children 14e703edb2ab
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 /*
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
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
15291
471e28b8f03b Move UnsafeAccess to graal.compiler.common.
Josef Eisl <josef.eisl@jku.at>
parents: 15261
diff changeset
25 import static com.oracle.graal.compiler.common.UnsafeAccess.*;
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: 15291
diff changeset
26 import sun.misc.*;
15251
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
27
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
28 import com.oracle.graal.api.meta.*;
15261
882f4cb7cfcf Move Stamps to graal.compiler.common.
Josef Eisl <josef.eisl@jku.at>
parents: 15251
diff changeset
29 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
30 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: 15291
diff changeset
31 import com.oracle.graal.nodeinfo.*;
15251
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
32 import com.oracle.graal.nodes.*;
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
33 import com.oracle.graal.nodes.extended.*;
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
34 import com.oracle.graal.nodes.spi.*;
15291
471e28b8f03b Move UnsafeAccess to graal.compiler.common.
Josef Eisl <josef.eisl@jku.at>
parents: 15261
diff changeset
35
15251
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
36 /**
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
37 * Represents an atomic read-and-add operation like {@link Unsafe#getAndAddInt(Object, long, int)}.
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
38 */
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
39 @NodeInfo(allowedUsageTypes = {InputType.Memory})
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 AtomicReadAndAddNode extends AbstractMemoryCheckpoint implements LIRLowerable, 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<AtomicReadAndAddNode> TYPE = NodeClass.create(AtomicReadAndAddNode.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 delta;
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 LocationIdentity locationIdentity;
15251
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
48
18845
f57d86eb036f removed Node factory methods
Doug Simon <doug.simon@oracle.com>
parents: 18649
diff changeset
49 public AtomicReadAndAddNode(ValueNode object, ValueNode offset, ValueNode delta, LocationIdentity locationIdentity) {
19396
7e2c87dae93e Create static final NodeClass field named TYPE in Node subclasses.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18998
diff changeset
50 super(TYPE, StampFactory.forKind(delta.getKind()));
15251
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
51 this.object = object;
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
52 this.offset = offset;
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
53 this.delta = delta;
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
54 this.locationIdentity = locationIdentity;
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
55 }
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
56
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
57 public ValueNode object() {
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
58 return object;
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
59 }
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
60
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
61 public ValueNode offset() {
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
62 return offset;
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
63 }
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
64
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
65 public ValueNode delta() {
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
66 return delta;
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
67 }
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
68
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
69 public LocationIdentity getLocationIdentity() {
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
70 return locationIdentity;
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
71 }
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
72
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
73 public void generate(NodeLIRBuilderTool gen) {
18845
f57d86eb036f removed Node factory methods
Doug Simon <doug.simon@oracle.com>
parents: 18649
diff changeset
74 LocationNode location = graph().unique(new IndexedLocationNode(getLocationIdentity(), 0, offset, 1));
15251
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
75 Value address = location.generateAddress(gen, gen.getLIRGeneratorTool(), gen.operand(object()));
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
76 Value result = gen.getLIRGeneratorTool().emitAtomicReadAndAdd(address, gen.operand(delta));
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
77 gen.setResult(this, result);
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
78 }
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
79
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
80 @NodeIntrinsic
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
81 public static int getAndAddInt(Object object, long offset, int delta, @ConstantNodeParameter @SuppressWarnings("unused") LocationIdentity locationIdentity) {
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
82 return unsafe.getAndAddInt(object, offset, delta);
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
83 }
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
84
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
85 @NodeIntrinsic
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
86 public static long getAndAddLong(Object object, long offset, long delta, @ConstantNodeParameter @SuppressWarnings("unused") LocationIdentity locationIdentity) {
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
87 return unsafe.getAndAddLong(object, offset, delta);
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
88 }
de1d50c121cd Unsafe.getAndAdd/Set method substitutions
twisti
parents:
diff changeset
89 }