annotate src/share/vm/ci/ciField.hpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents c18cbe5936b8
children 06f017f7daa7 fdb992d83a87
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
2 * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1138
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1138
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1138
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_CI_CIFIELD_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_CI_CIFIELD_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "ci/ciClassList.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "ci/ciConstant.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "ci/ciFlags.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "ci/ciInstance.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32
0
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // ciField
a61af66fc99e Initial load
duke
parents:
diff changeset
34 //
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // This class represents the result of a field lookup in the VM.
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // The lookup may not succeed, in which case the information in
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // the ciField will be incomplete.
a61af66fc99e Initial load
duke
parents:
diff changeset
38 class ciField : public ResourceObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
39 CI_PACKAGE_ACCESS
a61af66fc99e Initial load
duke
parents:
diff changeset
40 friend class ciEnv;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 friend class ciInstanceKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 friend class NonStaticFieldFiller;
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
45 ciFlags _flags;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 ciInstanceKlass* _holder;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 ciSymbol* _name;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 ciSymbol* _signature;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 ciType* _type;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 int _offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 bool _is_constant;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 ciInstanceKlass* _known_to_link_with;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 ciConstant _constant_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // Used for will_link
a61af66fc99e Initial load
duke
parents:
diff changeset
56 int _cp_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 ciType* compute_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
59 ciType* compute_type_impl();
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 ciField(ciInstanceKlass* klass, int index);
a61af66fc99e Initial load
duke
parents:
diff changeset
62 ciField(fieldDescriptor* fd);
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // shared constructor code
a61af66fc99e Initial load
duke
parents:
diff changeset
65 void initialize_from(fieldDescriptor* fd);
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // The implementation of the print method.
a61af66fc99e Initial load
duke
parents:
diff changeset
68 void print_impl(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
71 ciFlags flags() { return _flags; }
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // Of which klass is this field a member?
a61af66fc99e Initial load
duke
parents:
diff changeset
74 //
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // Usage note: the declared holder of a field is the class
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // referenced by name in the bytecodes. The canonical holder
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // is the most general class which holds the field. This
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // method returns the canonical holder. The declared holder
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // can be accessed via a method in ciBytecodeStream.
a61af66fc99e Initial load
duke
parents:
diff changeset
80 //
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // Ex.
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // class A {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 // public int f = 7;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // }
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // class B extends A {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // public void test() {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // System.out.println(f);
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // }
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // }
a61af66fc99e Initial load
duke
parents:
diff changeset
90 //
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // A java compiler is permitted to compile the access to
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // field f as:
a61af66fc99e Initial load
duke
parents:
diff changeset
93 //
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // getfield B.f
a61af66fc99e Initial load
duke
parents:
diff changeset
95 //
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // In that case the declared holder of f would be B and
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // the canonical holder of f would be A.
a61af66fc99e Initial load
duke
parents:
diff changeset
98 ciInstanceKlass* holder() { return _holder; }
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // Name of this field?
a61af66fc99e Initial load
duke
parents:
diff changeset
101 ciSymbol* name() { return _name; }
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // Signature of this field?
a61af66fc99e Initial load
duke
parents:
diff changeset
104 ciSymbol* signature() { return _signature; }
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // Of what type is this field?
a61af66fc99e Initial load
duke
parents:
diff changeset
107 ciType* type() { return (_type == NULL) ? compute_type() : _type; }
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // How is this field actually stored in memory?
a61af66fc99e Initial load
duke
parents:
diff changeset
110 BasicType layout_type() { return type2field[(_type == NULL) ? T_OBJECT : _type->basic_type()]; }
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // How big is this field in memory?
29
d5fc211aea19 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 0
diff changeset
113 int size_in_bytes() { return type2aelembytes(layout_type()); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // What is the offset of this field?
a61af66fc99e Initial load
duke
parents:
diff changeset
116 int offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 assert(_offset >= 1, "illegal call to offset()");
a61af66fc99e Initial load
duke
parents:
diff changeset
118 return _offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
119 }
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // Same question, explicit units. (Fields are aligned to the byte level.)
a61af66fc99e Initial load
duke
parents:
diff changeset
122 int offset_in_bytes() {
a61af66fc99e Initial load
duke
parents:
diff changeset
123 return offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
124 }
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // Is this field shared?
a61af66fc99e Initial load
duke
parents:
diff changeset
127 bool is_shared() {
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // non-static fields of shared holders are cached
a61af66fc99e Initial load
duke
parents:
diff changeset
129 return _holder->is_shared() && !is_static();
a61af66fc99e Initial load
duke
parents:
diff changeset
130 }
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // Is this field a constant?
a61af66fc99e Initial load
duke
parents:
diff changeset
133 //
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // Clarification: A field is considered constant if:
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // 1. The field is both static and final
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // 2. The canonical holder of the field has undergone
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // static initialization.
a61af66fc99e Initial load
duke
parents:
diff changeset
138 // 3. If the field is an object or array, then the oop
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // in question is allocated in perm space.
a61af66fc99e Initial load
duke
parents:
diff changeset
140 // 4. The field is not one of the special static/final
a61af66fc99e Initial load
duke
parents:
diff changeset
141 // non-constant fields. These are java.lang.System.in
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // and java.lang.System.out. Abomination.
a61af66fc99e Initial load
duke
parents:
diff changeset
143 //
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // Note: the check for case 4 is not yet implemented.
a61af66fc99e Initial load
duke
parents:
diff changeset
145 bool is_constant() { return _is_constant; }
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 // Get the constant value of this field.
a61af66fc99e Initial load
duke
parents:
diff changeset
148 ciConstant constant_value() {
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 196
diff changeset
149 assert(is_static() && is_constant(), "illegal call to constant_value()");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
150 return _constant_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
151 }
a61af66fc99e Initial load
duke
parents:
diff changeset
152
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 196
diff changeset
153 // Get the constant value of non-static final field in the given
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 196
diff changeset
154 // object.
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 196
diff changeset
155 ciConstant constant_value_of(ciObject* object) {
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 196
diff changeset
156 assert(!is_static() && is_constant(), "only if field is non-static constant");
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 196
diff changeset
157 assert(object->is_instance(), "must be instance");
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 196
diff changeset
158 return object->as_instance()->field_value(this);
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 196
diff changeset
159 }
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 196
diff changeset
160
0
a61af66fc99e Initial load
duke
parents:
diff changeset
161 // Check for link time errors. Accessing a field from a
a61af66fc99e Initial load
duke
parents:
diff changeset
162 // certain class via a certain bytecode may or may not be legal.
a61af66fc99e Initial load
duke
parents:
diff changeset
163 // This call checks to see if an exception may be raised by
a61af66fc99e Initial load
duke
parents:
diff changeset
164 // an access of this field.
a61af66fc99e Initial load
duke
parents:
diff changeset
165 //
a61af66fc99e Initial load
duke
parents:
diff changeset
166 // Usage note: if the same field is accessed multiple times
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // in the same compilation, will_link will need to be checked
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // at each point of access.
a61af66fc99e Initial load
duke
parents:
diff changeset
169 bool will_link(ciInstanceKlass* accessing_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
170 Bytecodes::Code bc);
a61af66fc99e Initial load
duke
parents:
diff changeset
171
a61af66fc99e Initial load
duke
parents:
diff changeset
172 // Java access flags
a61af66fc99e Initial load
duke
parents:
diff changeset
173 bool is_public () { return flags().is_public(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
174 bool is_private () { return flags().is_private(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
175 bool is_protected () { return flags().is_protected(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
176 bool is_static () { return flags().is_static(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
177 bool is_final () { return flags().is_final(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
178 bool is_volatile () { return flags().is_volatile(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
179 bool is_transient () { return flags().is_transient(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // Debugging output
a61af66fc99e Initial load
duke
parents:
diff changeset
182 void print();
a61af66fc99e Initial load
duke
parents:
diff changeset
183 void print_name_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
184 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
185
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
186 #endif // SHARE_VM_CI_CIFIELD_HPP