annotate graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/jvmci/HotSpotResolvedJavaFieldImpl.java @ 21542:543957c1c6a6

removed more dependencies from JVMCI classes to non-JVMCI classes (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Mon, 25 May 2015 22:30:44 +0200
parents c1e2fdb5fea3
children
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 /*
15023
652564fe42d5 Use CompressionNode for accessing compressed Klass pointers.
Roland Schatz <roland.schatz@oracle.com>
parents: 15018
diff changeset
2 * Copyright (c) 2011, 2014, 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 */
21538
c1e2fdb5fea3 removed more dependencies from JVMCI classes to non-JVMCI classes (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21411
diff changeset
23 package com.oracle.graal.hotspot.jvmci;
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
24
21538
c1e2fdb5fea3 removed more dependencies from JVMCI classes to non-JVMCI classes (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21411
diff changeset
25 import static com.oracle.graal.hotspot.jvmci.HotSpotJVMCIRuntime.*;
c1e2fdb5fea3 removed more dependencies from JVMCI classes to non-JVMCI classes (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21411
diff changeset
26 import static com.oracle.graal.hotspot.jvmci.HotSpotResolvedJavaFieldImpl.Options.*;
c1e2fdb5fea3 removed more dependencies from JVMCI classes to non-JVMCI classes (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21411
diff changeset
27 import static com.oracle.graal.hotspot.jvmci.HotSpotResolvedObjectTypeImpl.*;
8949
da5140eedfa1 made format of toString() consistent across HotSpot subclasses of JavaField and JavaMethod
Doug Simon <doug.simon@oracle.com>
parents: 8415
diff changeset
28
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
29 import java.lang.annotation.*;
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
30 import java.lang.reflect.*;
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
31
5507
dc71b06d09f8 Moving classes from cri.ri to api.meta.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5503
diff changeset
32 import com.oracle.graal.api.meta.*;
21538
c1e2fdb5fea3 removed more dependencies from JVMCI classes to non-JVMCI classes (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21411
diff changeset
33 import com.oracle.graal.options.*;
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
34
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
35 /**
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
36 * Represents a field in a HotSpot type.
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
37 */
21411
082417ac43e4 removed com.oracle.graal.hotspot.server and uses of Serializable it depended upon (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21390
diff changeset
38 public class HotSpotResolvedJavaFieldImpl implements HotSpotResolvedJavaField, HotSpotProxified {
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
39
21538
c1e2fdb5fea3 removed more dependencies from JVMCI classes to non-JVMCI classes (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21411
diff changeset
40 static class Options {
c1e2fdb5fea3 removed more dependencies from JVMCI classes to non-JVMCI classes (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21411
diff changeset
41 //@formatter:off
c1e2fdb5fea3 removed more dependencies from JVMCI classes to non-JVMCI classes (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21411
diff changeset
42 @Option(help = "Mark well-known stable fields as such.", type = OptionType.Debug)
c1e2fdb5fea3 removed more dependencies from JVMCI classes to non-JVMCI classes (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21411
diff changeset
43 public static final OptionValue<Boolean> ImplicitStableValues = new OptionValue<>(true);
c1e2fdb5fea3 removed more dependencies from JVMCI classes to non-JVMCI classes (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21411
diff changeset
44 //@formatter:on
c1e2fdb5fea3 removed more dependencies from JVMCI classes to non-JVMCI classes (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21411
diff changeset
45 }
c1e2fdb5fea3 removed more dependencies from JVMCI classes to non-JVMCI classes (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21411
diff changeset
46
18223
17c98fad6980 converted HotSpotResolvedObjectType to an interface
Doug Simon <doug.simon@oracle.com>
parents: 18187
diff changeset
47 private final HotSpotResolvedObjectTypeImpl holder;
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
48 private final String name;
14047
fde464340755 don't allow unresolved field types to hang around
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14012
diff changeset
49 private JavaType type;
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
50 private final int offset;
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
51
13823
6dd8b95a7fbb fixed HotSpotResolvedJavaField.getModifiers() to mask out FIELD_INTERNAL_FLAG
Doug Simon <doug.simon@oracle.com>
parents: 13818
diff changeset
52 /**
14012
1f34717ccafa remove CompilerToVM.getInstanceFields
twisti
parents: 13823
diff changeset
53 * This value contains all flags as stored in the VM including internal ones.
1f34717ccafa remove CompilerToVM.getInstanceFields
twisti
parents: 13823
diff changeset
54 */
1f34717ccafa remove CompilerToVM.getInstanceFields
twisti
parents: 13823
diff changeset
55 private final int modifiers;
19845
3d0116ec99c5 Create utilities LocationIdentity#isAny, LocationIdentity#isSingle, LocationIdentity#any, LocationIdentity#overlaps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19843
diff changeset
56 private final LocationIdentity locationIdentity = new FieldLocationIdentity(this);
19843
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
57
19845
3d0116ec99c5 Create utilities LocationIdentity#isAny, LocationIdentity#isSingle, LocationIdentity#any, LocationIdentity#overlaps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19843
diff changeset
58 public static class FieldLocationIdentity extends LocationIdentity {
20103
7815c4d4a07f removed/replaced references to non replay-serializable objects from replay-serializable objects
Doug Simon <doug.simon@oracle.com>
parents: 19917
diff changeset
59 HotSpotResolvedJavaField inner;
19843
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
60
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
61 public FieldLocationIdentity(HotSpotResolvedJavaFieldImpl inner) {
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
62 this.inner = inner;
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
63 }
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
64
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
65 @Override
21390
f9024b74dd9e Allow subclasses of LocationIdentity to provide immuatability information
Christian Wimmer <christian.wimmer@oracle.com>
parents: 20878
diff changeset
66 public boolean isImmutable() {
f9024b74dd9e Allow subclasses of LocationIdentity to provide immuatability information
Christian Wimmer <christian.wimmer@oracle.com>
parents: 20878
diff changeset
67 return false;
f9024b74dd9e Allow subclasses of LocationIdentity to provide immuatability information
Christian Wimmer <christian.wimmer@oracle.com>
parents: 20878
diff changeset
68 }
f9024b74dd9e Allow subclasses of LocationIdentity to provide immuatability information
Christian Wimmer <christian.wimmer@oracle.com>
parents: 20878
diff changeset
69
f9024b74dd9e Allow subclasses of LocationIdentity to provide immuatability information
Christian Wimmer <christian.wimmer@oracle.com>
parents: 20878
diff changeset
70 @Override
19843
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
71 public boolean equals(Object obj) {
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
72 if (this == obj) {
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
73 return true;
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
74 }
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
75 if (obj instanceof FieldLocationIdentity) {
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
76 FieldLocationIdentity fieldLocationIdentity = (FieldLocationIdentity) obj;
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
77 return inner.equals(fieldLocationIdentity.inner);
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
78
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
79 }
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
80 return false;
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
81 }
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
82
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
83 @Override
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
84 public int hashCode() {
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
85 return inner.hashCode();
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
86 }
19848
e532af44f9f9 Fix WriteBarrierAdditionTest.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19845
diff changeset
87
e532af44f9f9 Fix WriteBarrierAdditionTest.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19845
diff changeset
88 @Override
e532af44f9f9 Fix WriteBarrierAdditionTest.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19845
diff changeset
89 public String toString() {
20103
7815c4d4a07f removed/replaced references to non replay-serializable objects from replay-serializable objects
Doug Simon <doug.simon@oracle.com>
parents: 19917
diff changeset
90 return inner.getName();
19848
e532af44f9f9 Fix WriteBarrierAdditionTest.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19845
diff changeset
91 }
19843
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
92 }
13823
6dd8b95a7fbb fixed HotSpotResolvedJavaField.getModifiers() to mask out FIELD_INTERNAL_FLAG
Doug Simon <doug.simon@oracle.com>
parents: 13818
diff changeset
93
18264
e28aa8468d5e converted HotSpotResolvedJavaField to an interface
Doug Simon <doug.simon@oracle.com>
parents: 18262
diff changeset
94 public HotSpotResolvedJavaFieldImpl(HotSpotResolvedObjectTypeImpl holder, String name, JavaType type, long offset, int modifiers) {
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
95 this.holder = holder;
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
96 this.name = name;
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
97 this.type = type;
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
98 assert offset != -1;
13263
81055aacb98d removed CompilerToVM.getJavaField
twisti
parents: 12628
diff changeset
99 assert offset == (int) offset : "offset larger than int";
81055aacb98d removed CompilerToVM.getJavaField
twisti
parents: 12628
diff changeset
100 this.offset = (int) offset;
14012
1f34717ccafa remove CompilerToVM.getInstanceFields
twisti
parents: 13823
diff changeset
101 this.modifiers = modifiers;
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
102 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
103
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
104 @Override
14160
fd7fcd2d2072 replaced == with .equals() for comparisons between JavaMethod/JavaField/JavaType values
Doug Simon <doug.simon@oracle.com>
parents: 14138
diff changeset
105 public boolean equals(Object obj) {
fd7fcd2d2072 replaced == with .equals() for comparisons between JavaMethod/JavaField/JavaType values
Doug Simon <doug.simon@oracle.com>
parents: 14138
diff changeset
106 if (this == obj) {
fd7fcd2d2072 replaced == with .equals() for comparisons between JavaMethod/JavaField/JavaType values
Doug Simon <doug.simon@oracle.com>
parents: 14138
diff changeset
107 return true;
fd7fcd2d2072 replaced == with .equals() for comparisons between JavaMethod/JavaField/JavaType values
Doug Simon <doug.simon@oracle.com>
parents: 14138
diff changeset
108 }
14523
5e55de0379d9 fixed bug in HotSpotResolvedJavaField.equals
Doug Simon <doug.simon@oracle.com>
parents: 14160
diff changeset
109 if (obj instanceof HotSpotResolvedJavaField) {
18264
e28aa8468d5e converted HotSpotResolvedJavaField to an interface
Doug Simon <doug.simon@oracle.com>
parents: 18262
diff changeset
110 HotSpotResolvedJavaFieldImpl that = (HotSpotResolvedJavaFieldImpl) obj;
19042
0d7302ddcc90 Bugfix: static and instance field with same offset are not equal
Christian Wimmer <christian.wimmer@oracle.com>
parents: 19005
diff changeset
111 if (that.offset != this.offset || that.isStatic() != this.isStatic()) {
19005
a64863622854 Shorter comparison of HotSpotResolvedFieldImpl instances.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18867
diff changeset
112 return false;
a64863622854 Shorter comparison of HotSpotResolvedFieldImpl instances.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18867
diff changeset
113 } else if (this.holder.equals(that.holder)) {
a64863622854 Shorter comparison of HotSpotResolvedFieldImpl instances.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18867
diff changeset
114 assert this.name.equals(that.name) && this.type.equals(that.type);
a64863622854 Shorter comparison of HotSpotResolvedFieldImpl instances.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18867
diff changeset
115 return true;
a64863622854 Shorter comparison of HotSpotResolvedFieldImpl instances.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18867
diff changeset
116 }
14160
fd7fcd2d2072 replaced == with .equals() for comparisons between JavaMethod/JavaField/JavaType values
Doug Simon <doug.simon@oracle.com>
parents: 14138
diff changeset
117 }
14523
5e55de0379d9 fixed bug in HotSpotResolvedJavaField.equals
Doug Simon <doug.simon@oracle.com>
parents: 14160
diff changeset
118 return false;
14160
fd7fcd2d2072 replaced == with .equals() for comparisons between JavaMethod/JavaField/JavaType values
Doug Simon <doug.simon@oracle.com>
parents: 14138
diff changeset
119 }
fd7fcd2d2072 replaced == with .equals() for comparisons between JavaMethod/JavaField/JavaType values
Doug Simon <doug.simon@oracle.com>
parents: 14138
diff changeset
120
fd7fcd2d2072 replaced == with .equals() for comparisons between JavaMethod/JavaField/JavaType values
Doug Simon <doug.simon@oracle.com>
parents: 14138
diff changeset
121 @Override
fd7fcd2d2072 replaced == with .equals() for comparisons between JavaMethod/JavaField/JavaType values
Doug Simon <doug.simon@oracle.com>
parents: 14138
diff changeset
122 public int hashCode() {
fd7fcd2d2072 replaced == with .equals() for comparisons between JavaMethod/JavaField/JavaType values
Doug Simon <doug.simon@oracle.com>
parents: 14138
diff changeset
123 return name.hashCode();
fd7fcd2d2072 replaced == with .equals() for comparisons between JavaMethod/JavaField/JavaType values
Doug Simon <doug.simon@oracle.com>
parents: 14138
diff changeset
124 }
fd7fcd2d2072 replaced == with .equals() for comparisons between JavaMethod/JavaField/JavaType values
Doug Simon <doug.simon@oracle.com>
parents: 14138
diff changeset
125
fd7fcd2d2072 replaced == with .equals() for comparisons between JavaMethod/JavaField/JavaType values
Doug Simon <doug.simon@oracle.com>
parents: 14138
diff changeset
126 @Override
6539
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6525
diff changeset
127 public int getModifiers() {
14012
1f34717ccafa remove CompilerToVM.getInstanceFields
twisti
parents: 13823
diff changeset
128 return modifiers & getReflectionFieldModifiers();
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
129 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
130
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
131 @Override
6950
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6539
diff changeset
132 public boolean isInternal() {
14012
1f34717ccafa remove CompilerToVM.getInstanceFields
twisti
parents: 13823
diff changeset
133 return (modifiers & runtime().getConfig().jvmAccFieldInternal) != 0;
6950
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6539
diff changeset
134 }
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6539
diff changeset
135
10065
5ba3763d6986 HotSpotResolvedJavaField: check if method is called from snippet/replacements (GRAAL-290)
Bernhard Urban <bernhard.urban@jku.at>
parents: 10063
diff changeset
136 /**
12628
c36bdee8ca29 added type check for object before reading a field value from it during compilation
Doug Simon <doug.simon@oracle.com>
parents: 12559
diff changeset
137 * Determines if a given object contains this field.
15023
652564fe42d5 Use CompressionNode for accessing compressed Klass pointers.
Roland Schatz <roland.schatz@oracle.com>
parents: 15018
diff changeset
138 *
13823
6dd8b95a7fbb fixed HotSpotResolvedJavaField.getModifiers() to mask out FIELD_INTERNAL_FLAG
Doug Simon <doug.simon@oracle.com>
parents: 13818
diff changeset
139 * @return true iff this is a non-static field and its declaring class is assignable from
6dd8b95a7fbb fixed HotSpotResolvedJavaField.getModifiers() to mask out FIELD_INTERNAL_FLAG
Doug Simon <doug.simon@oracle.com>
parents: 13818
diff changeset
140 * {@code object}'s class
12628
c36bdee8ca29 added type check for object before reading a field value from it during compilation
Doug Simon <doug.simon@oracle.com>
parents: 12559
diff changeset
141 */
c36bdee8ca29 added type check for object before reading a field value from it during compilation
Doug Simon <doug.simon@oracle.com>
parents: 12559
diff changeset
142 public boolean isInObject(Object object) {
15311
820c6d353358 added ModifiersProvider as superinterface for ResolvedJava[Method|Field|Type] and implemented all checks against modifiers as default methods
Doug Simon <doug.simon@oracle.com>
parents: 15259
diff changeset
143 if (isStatic()) {
13823
6dd8b95a7fbb fixed HotSpotResolvedJavaField.getModifiers() to mask out FIELD_INTERNAL_FLAG
Doug Simon <doug.simon@oracle.com>
parents: 13818
diff changeset
144 return false;
6dd8b95a7fbb fixed HotSpotResolvedJavaField.getModifiers() to mask out FIELD_INTERNAL_FLAG
Doug Simon <doug.simon@oracle.com>
parents: 13818
diff changeset
145 }
18223
17c98fad6980 converted HotSpotResolvedObjectType to an interface
Doug Simon <doug.simon@oracle.com>
parents: 18187
diff changeset
146 return getDeclaringClass().isAssignableFrom(HotSpotResolvedObjectTypeImpl.fromObjectClass(object.getClass()));
12628
c36bdee8ca29 added type check for object before reading a field value from it during compilation
Doug Simon <doug.simon@oracle.com>
parents: 12559
diff changeset
147 }
c36bdee8ca29 added type check for object before reading a field value from it during compilation
Doug Simon <doug.simon@oracle.com>
parents: 12559
diff changeset
148
5629
26a060cc58ca Initial implementation of closed world analysis by iteratively expanding the universe starting at method entry points.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5554
diff changeset
149 @Override
18223
17c98fad6980 converted HotSpotResolvedObjectType to an interface
Doug Simon <doug.simon@oracle.com>
parents: 18187
diff changeset
150 public HotSpotResolvedObjectTypeImpl getDeclaringClass() {
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
151 return holder;
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
152 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
153
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
154 @Override
6539
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6525
diff changeset
155 public String getName() {
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
156 return name;
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
157 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
158
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
159 @Override
6539
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6525
diff changeset
160 public JavaType getType() {
20878
673e0b242d4d fixed race in HotSpotResolvedJavaFieldImpl.getType()
Doug Simon <doug.simon@oracle.com>
parents: 20821
diff changeset
161 // Pull field into local variable to prevent a race causing
673e0b242d4d fixed race in HotSpotResolvedJavaFieldImpl.getType()
Doug Simon <doug.simon@oracle.com>
parents: 20821
diff changeset
162 // a ClassCastException below
673e0b242d4d fixed race in HotSpotResolvedJavaFieldImpl.getType()
Doug Simon <doug.simon@oracle.com>
parents: 20821
diff changeset
163 JavaType currentType = type;
673e0b242d4d fixed race in HotSpotResolvedJavaFieldImpl.getType()
Doug Simon <doug.simon@oracle.com>
parents: 20821
diff changeset
164 if (currentType instanceof HotSpotUnresolvedJavaType) {
14047
fde464340755 don't allow unresolved field types to hang around
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14012
diff changeset
165 // Don't allow unresolved types to hang around forever
20878
673e0b242d4d fixed race in HotSpotResolvedJavaFieldImpl.getType()
Doug Simon <doug.simon@oracle.com>
parents: 20821
diff changeset
166 HotSpotUnresolvedJavaType unresolvedType = (HotSpotUnresolvedJavaType) currentType;
673e0b242d4d fixed race in HotSpotResolvedJavaFieldImpl.getType()
Doug Simon <doug.simon@oracle.com>
parents: 20821
diff changeset
167 ResolvedJavaType resolved = unresolvedType.reresolve(holder);
14047
fde464340755 don't allow unresolved field types to hang around
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14012
diff changeset
168 if (resolved != null) {
fde464340755 don't allow unresolved field types to hang around
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14012
diff changeset
169 type = resolved;
fde464340755 don't allow unresolved field types to hang around
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14012
diff changeset
170 }
fde464340755 don't allow unresolved field types to hang around
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14012
diff changeset
171 }
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
172 return type;
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
173 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
174
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
175 public int offset() {
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
176 return offset;
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
177 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
178
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
179 @Override
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
180 public String toString() {
16481
e7fc65330742 moved format(String format, JavaField field) from MetaUtil to be a default method in JavaField
Doug Simon <doug.simon@oracle.com>
parents: 16383
diff changeset
181 return format("HotSpotField<%H.%n %t:") + offset + ">";
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
182 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
183
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
184 @Override
9984
f3330a4487eb added ResolvedJava[Field|Method].isSynthetic()
Doug Simon <doug.simon@oracle.com>
parents: 9914
diff changeset
185 public boolean isSynthetic() {
14012
1f34717ccafa remove CompilerToVM.getInstanceFields
twisti
parents: 13823
diff changeset
186 return (runtime().getConfig().syntheticFlag & modifiers) != 0;
9984
f3330a4487eb added ResolvedJava[Field|Method].isSynthetic()
Doug Simon <doug.simon@oracle.com>
parents: 9914
diff changeset
187 }
f3330a4487eb added ResolvedJava[Field|Method].isSynthetic()
Doug Simon <doug.simon@oracle.com>
parents: 9914
diff changeset
188
12559
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents: 12456
diff changeset
189 /**
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents: 12456
diff changeset
190 * Checks if this field has the {@link Stable} annotation.
15023
652564fe42d5 Use CompressionNode for accessing compressed Klass pointers.
Roland Schatz <roland.schatz@oracle.com>
parents: 15018
diff changeset
191 *
12559
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents: 12456
diff changeset
192 * @return true if field has {@link Stable} annotation, false otherwise
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents: 12456
diff changeset
193 */
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents: 12456
diff changeset
194 public boolean isStable() {
17334
0563b652c052 Unify parsing of graal and hotspot Stable annotations
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 16481
diff changeset
195 if ((runtime().getConfig().jvmAccFieldStable & modifiers) != 0) {
0563b652c052 Unify parsing of graal and hotspot Stable annotations
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 16481
diff changeset
196 return true;
0563b652c052 Unify parsing of graal and hotspot Stable annotations
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 16481
diff changeset
197 }
0563b652c052 Unify parsing of graal and hotspot Stable annotations
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 16481
diff changeset
198 assert getAnnotation(Stable.class) == null;
18507
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
199 if (ImplicitStableValues.getValue() && isImplicitStableField()) {
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
200 return true;
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
201 }
17334
0563b652c052 Unify parsing of graal and hotspot Stable annotations
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 16481
diff changeset
202 return false;
12559
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents: 12456
diff changeset
203 }
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents: 12456
diff changeset
204
9984
f3330a4487eb added ResolvedJava[Field|Method].isSynthetic()
Doug Simon <doug.simon@oracle.com>
parents: 9914
diff changeset
205 @Override
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
206 public <T extends Annotation> T getAnnotation(Class<T> annotationClass) {
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
207 Field javaField = toJava();
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
208 if (javaField != null) {
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
209 return javaField.getAnnotation(annotationClass);
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
210 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
211 return null;
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
212 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
213
20821
1bfa14fd1275 Cache the reflection Field in HotSpotResolvedFieldImpl, since it is accessed repeatedly when accessing the annotations of the field
Christian Wimmer <christian.wimmer@oracle.com>
parents: 20103
diff changeset
214 private Field toJavaCache;
1bfa14fd1275 Cache the reflection Field in HotSpotResolvedFieldImpl, since it is accessed repeatedly when accessing the annotations of the field
Christian Wimmer <christian.wimmer@oracle.com>
parents: 20103
diff changeset
215
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
216 private Field toJava() {
20821
1bfa14fd1275 Cache the reflection Field in HotSpotResolvedFieldImpl, since it is accessed repeatedly when accessing the annotations of the field
Christian Wimmer <christian.wimmer@oracle.com>
parents: 20103
diff changeset
217 if (toJavaCache != null) {
1bfa14fd1275 Cache the reflection Field in HotSpotResolvedFieldImpl, since it is accessed repeatedly when accessing the annotations of the field
Christian Wimmer <christian.wimmer@oracle.com>
parents: 20103
diff changeset
218 return toJavaCache;
1bfa14fd1275 Cache the reflection Field in HotSpotResolvedFieldImpl, since it is accessed repeatedly when accessing the annotations of the field
Christian Wimmer <christian.wimmer@oracle.com>
parents: 20103
diff changeset
219 }
1bfa14fd1275 Cache the reflection Field in HotSpotResolvedFieldImpl, since it is accessed repeatedly when accessing the annotations of the field
Christian Wimmer <christian.wimmer@oracle.com>
parents: 20103
diff changeset
220
13823
6dd8b95a7fbb fixed HotSpotResolvedJavaField.getModifiers() to mask out FIELD_INTERNAL_FLAG
Doug Simon <doug.simon@oracle.com>
parents: 13818
diff changeset
221 if (isInternal()) {
6dd8b95a7fbb fixed HotSpotResolvedJavaField.getModifiers() to mask out FIELD_INTERNAL_FLAG
Doug Simon <doug.simon@oracle.com>
parents: 13818
diff changeset
222 return null;
6dd8b95a7fbb fixed HotSpotResolvedJavaField.getModifiers() to mask out FIELD_INTERNAL_FLAG
Doug Simon <doug.simon@oracle.com>
parents: 13818
diff changeset
223 }
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
224 try {
20821
1bfa14fd1275 Cache the reflection Field in HotSpotResolvedFieldImpl, since it is accessed repeatedly when accessing the annotations of the field
Christian Wimmer <christian.wimmer@oracle.com>
parents: 20103
diff changeset
225 return toJavaCache = holder.mirror().getDeclaredField(name);
19917
6575b4e3f629 Don't force resolution for unloaded field types
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 19848
diff changeset
226 } catch (NoSuchFieldException | NoClassDefFoundError e) {
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
227 return null;
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
228 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
229 }
18507
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
230
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
231 private boolean isArray() {
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
232 JavaType fieldType = getType();
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
233 return fieldType instanceof ResolvedJavaType && ((ResolvedJavaType) fieldType).isArray();
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
234 }
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
235
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
236 private boolean isImplicitStableField() {
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
237 if (isSynthetic()) {
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
238 if (isSyntheticImplicitStableField()) {
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
239 return true;
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
240 }
18508
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
241 } else if (isWellKnownImplicitStableField()) {
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
242 return true;
18507
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
243 }
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
244 return false;
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
245 }
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
246
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
247 private boolean isSyntheticImplicitStableField() {
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
248 assert this.isSynthetic();
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
249 if (isStatic() && isArray()) {
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
250 if (isFinal() && name.equals("$VALUES") || name.equals("ENUM$VALUES")) {
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
251 // generated int[] field for EnumClass::values()
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
252 return true;
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
253 } else if (name.startsWith("$SwitchMap$") || name.startsWith("$SWITCH_TABLE$")) {
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
254 // javac and ecj generate a static field in an inner class for a switch on an enum
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
255 // named $SwitchMap$p$k$g$EnumClass and $SWITCH_TABLE$p$k$g$EnumClass, respectively
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
256 return true;
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
257 }
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
258 }
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
259 return false;
c2b45b536677 Constant fold elements of switch table and enum values() arrays
Andreas Woess <andreas.woess@jku.at>
parents: 18465
diff changeset
260 }
18508
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
261
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
262 private boolean isWellKnownImplicitStableField() {
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
263 return WellKnownImplicitStableField.test(this);
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
264 }
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
265
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
266 static class WellKnownImplicitStableField {
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
267 /**
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
268 * @return {@code true} if the field is a well-known stable field.
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
269 */
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
270 public static boolean test(HotSpotResolvedJavaField field) {
18583
12bd2b344b08 replace usages of == with .equals()
Doug Simon <doug.simon@oracle.com>
parents: 18530
diff changeset
271 return field.equals(STRING_VALUE_FIELD);
18508
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
272 }
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
273
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
274 private static final ResolvedJavaField STRING_VALUE_FIELD;
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
275 static {
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
276 try {
21538
c1e2fdb5fea3 removed more dependencies from JVMCI classes to non-JVMCI classes (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21411
diff changeset
277 MetaAccessProvider metaAccess = runtime().getHostJVMCIBackend().getMetaAccess();
18508
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
278 STRING_VALUE_FIELD = metaAccess.lookupJavaField(String.class.getDeclaredField("value"));
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
279 } catch (SecurityException | NoSuchFieldException e) {
21538
c1e2fdb5fea3 removed more dependencies from JVMCI classes to non-JVMCI classes (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21411
diff changeset
280 throw new InternalError(e);
18508
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
281 }
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
282 }
f56a5c4cd859 Treat String.value as implicit stable field
Andreas Woess <andreas.woess@jku.at>
parents: 18507
diff changeset
283 }
19843
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
284
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
285 public LocationIdentity getLocationIdentity() {
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
286 return locationIdentity;
c2124d859d91 Remove LocationIdentity interface from ResolvedJavaField and add ResolvedJavaField#getLocationIdentity method instead.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 19042
diff changeset
287 }
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
288 }