annotate src/share/vm/utilities/accessFlags.hpp @ 6100:71afdabfd05b

7168280: Eliminate the generic signature index slot from field array for field without generic signature. Summary: Only allocate the generic signature index slot in the field array for field with generic signature attribute. Reviewed-by: coleenp, dlong
author jiangli
date Mon, 21 May 2012 14:10:35 -0400
parents e6b1331a51d2
children 1d7922586cf6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
2 * Copyright (c) 1997, 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: 710
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 710
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: 710
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: 1783
diff changeset
25 #ifndef SHARE_VM_UTILITIES_ACCESSFLAGS_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
26 #define SHARE_VM_UTILITIES_ACCESSFLAGS_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
28 #include "prims/jvm.h"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
29 #include "utilities/top.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
30
0
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // AccessFlags is an abstraction over Java access flags.
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // See jvm.h for shared JVM_ACC_XXX access flags
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // HotSpot-specific access flags
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // flags actually put in .class file
a61af66fc99e Initial load
duke
parents:
diff changeset
40 JVM_ACC_WRITTEN_FLAGS = 0x00007FFF,
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // methodOop flags
a61af66fc99e Initial load
duke
parents:
diff changeset
43 JVM_ACC_MONITOR_MATCH = 0x10000000, // True if we know that monitorenter/monitorexit bytecodes match
a61af66fc99e Initial load
duke
parents:
diff changeset
44 JVM_ACC_HAS_MONITOR_BYTECODES = 0x20000000, // Method contains monitorenter/monitorexit bytecodes
a61af66fc99e Initial load
duke
parents:
diff changeset
45 JVM_ACC_HAS_LOOPS = 0x40000000, // Method has loops
a61af66fc99e Initial load
duke
parents:
diff changeset
46 JVM_ACC_LOOPS_FLAG_INIT = (int)0x80000000,// The loop flag has been initialized
a61af66fc99e Initial load
duke
parents:
diff changeset
47 JVM_ACC_QUEUED = 0x01000000, // Queued for compilation
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
48 JVM_ACC_NOT_C2_COMPILABLE = 0x02000000,
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
49 JVM_ACC_NOT_C1_COMPILABLE = 0x04000000,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
50 JVM_ACC_NOT_OSR_COMPILABLE = 0x08000000,
a61af66fc99e Initial load
duke
parents:
diff changeset
51 JVM_ACC_HAS_LINE_NUMBER_TABLE = 0x00100000,
a61af66fc99e Initial load
duke
parents:
diff changeset
52 JVM_ACC_HAS_CHECKED_EXCEPTIONS = 0x00400000,
a61af66fc99e Initial load
duke
parents:
diff changeset
53 JVM_ACC_HAS_JSRS = 0x00800000,
a61af66fc99e Initial load
duke
parents:
diff changeset
54 JVM_ACC_IS_OLD = 0x00010000, // RedefineClasses() has replaced this method
a61af66fc99e Initial load
duke
parents:
diff changeset
55 JVM_ACC_IS_OBSOLETE = 0x00020000, // RedefineClasses() has made method obsolete
a61af66fc99e Initial load
duke
parents:
diff changeset
56 JVM_ACC_IS_PREFIXED_NATIVE = 0x00040000, // JVMTI has prefixed this native method
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
57
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
58 JVM_MH_INVOKE_BITS // = 0x10001100 // MethodHandle.invoke quasi-native
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
59 = (JVM_ACC_NATIVE | JVM_ACC_SYNTHETIC | JVM_ACC_MONITOR_MATCH),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // klassOop flags
a61af66fc99e Initial load
duke
parents:
diff changeset
62 JVM_ACC_HAS_MIRANDA_METHODS = 0x10000000, // True if this class has miranda methods in it's vtable
a61af66fc99e Initial load
duke
parents:
diff changeset
63 JVM_ACC_HAS_VANILLA_CONSTRUCTOR = 0x20000000, // True if klass has a vanilla default constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
64 JVM_ACC_HAS_FINALIZER = 0x40000000, // True if klass has a non-empty finalize() method
a61af66fc99e Initial load
duke
parents:
diff changeset
65 JVM_ACC_IS_CLONEABLE = (int)0x80000000,// True if klass supports the Clonable interface
a61af66fc99e Initial load
duke
parents:
diff changeset
66 JVM_ACC_HAS_FINAL_METHOD = 0x01000000, // True if klass has final method
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // klassOop and methodOop flags
a61af66fc99e Initial load
duke
parents:
diff changeset
69 JVM_ACC_HAS_LOCAL_VARIABLE_TABLE= 0x00200000,
a61af66fc99e Initial load
duke
parents:
diff changeset
70
a61af66fc99e Initial load
duke
parents:
diff changeset
71 JVM_ACC_PROMOTED_FLAGS = 0x00200000, // flags promoted from methods to the holding klass
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // field flags
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // Note: these flags must be defined in the low order 16 bits because
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // instanceKlass only stores a ushort worth of information from the
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // AccessFlags value.
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // These bits must not conflict with any other field-related access flags
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // (e.g., ACC_ENUM).
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // Note that the class-related ACC_ANNOTATION bit conflicts with these flags.
a61af66fc99e Initial load
duke
parents:
diff changeset
80 JVM_ACC_FIELD_ACCESS_WATCHED = 0x00002000, // field access is watched by JVMTI
a61af66fc99e Initial load
duke
parents:
diff changeset
81 JVM_ACC_FIELD_MODIFICATION_WATCHED = 0x00008000, // field modification is watched by JVMTI
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
82 JVM_ACC_FIELD_INTERNAL = 0x00000400, // internal field, same as JVM_ACC_ABSTRACT
6100
71afdabfd05b 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 3938
diff changeset
83 JVM_ACC_FIELD_HAS_GENERIC_SIGNATURE = 0x00000800, // field has generic signature
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
84
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
85 JVM_ACC_FIELD_INTERNAL_FLAGS = JVM_ACC_FIELD_ACCESS_WATCHED |
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
86 JVM_ACC_FIELD_MODIFICATION_WATCHED |
6100
71afdabfd05b 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 3938
diff changeset
87 JVM_ACC_FIELD_INTERNAL |
71afdabfd05b 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 3938
diff changeset
88 JVM_ACC_FIELD_HAS_GENERIC_SIGNATURE,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // flags accepted by set_field_flags()
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
91 JVM_ACC_FIELD_FLAGS = JVM_RECOGNIZED_FIELD_MODIFIERS | JVM_ACC_FIELD_INTERNAL_FLAGS
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
92
0
a61af66fc99e Initial load
duke
parents:
diff changeset
93 };
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 class AccessFlags VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
97 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
99 jint _flags;
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // Java access flags
a61af66fc99e Initial load
duke
parents:
diff changeset
103 bool is_public () const { return (_flags & JVM_ACC_PUBLIC ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
104 bool is_private () const { return (_flags & JVM_ACC_PRIVATE ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
105 bool is_protected () const { return (_flags & JVM_ACC_PROTECTED ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
106 bool is_static () const { return (_flags & JVM_ACC_STATIC ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
107 bool is_final () const { return (_flags & JVM_ACC_FINAL ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
108 bool is_synchronized() const { return (_flags & JVM_ACC_SYNCHRONIZED) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
109 bool is_super () const { return (_flags & JVM_ACC_SUPER ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
110 bool is_volatile () const { return (_flags & JVM_ACC_VOLATILE ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
111 bool is_transient () const { return (_flags & JVM_ACC_TRANSIENT ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
112 bool is_native () const { return (_flags & JVM_ACC_NATIVE ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
113 bool is_interface () const { return (_flags & JVM_ACC_INTERFACE ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
114 bool is_abstract () const { return (_flags & JVM_ACC_ABSTRACT ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
115 bool is_strict () const { return (_flags & JVM_ACC_STRICT ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 // Attribute flags
a61af66fc99e Initial load
duke
parents:
diff changeset
118 bool is_synthetic () const { return (_flags & JVM_ACC_SYNTHETIC ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // methodOop flags
a61af66fc99e Initial load
duke
parents:
diff changeset
121 bool is_monitor_matching () const { return (_flags & JVM_ACC_MONITOR_MATCH ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
122 bool has_monitor_bytecodes () const { return (_flags & JVM_ACC_HAS_MONITOR_BYTECODES ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
123 bool has_loops () const { return (_flags & JVM_ACC_HAS_LOOPS ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
124 bool loops_flag_init () const { return (_flags & JVM_ACC_LOOPS_FLAG_INIT ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
125 bool queued_for_compilation () const { return (_flags & JVM_ACC_QUEUED ) != 0; }
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
126 bool is_not_c1_compilable () const { return (_flags & JVM_ACC_NOT_C1_COMPILABLE ) != 0; }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
127 bool is_not_c2_compilable () const { return (_flags & JVM_ACC_NOT_C2_COMPILABLE ) != 0; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
128 bool is_not_osr_compilable () const { return (_flags & JVM_ACC_NOT_OSR_COMPILABLE ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
129 bool has_linenumber_table () const { return (_flags & JVM_ACC_HAS_LINE_NUMBER_TABLE ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
130 bool has_checked_exceptions () const { return (_flags & JVM_ACC_HAS_CHECKED_EXCEPTIONS ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
131 bool has_jsrs () const { return (_flags & JVM_ACC_HAS_JSRS ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
132 bool is_old () const { return (_flags & JVM_ACC_IS_OLD ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
133 bool is_obsolete () const { return (_flags & JVM_ACC_IS_OBSOLETE ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
134 bool is_prefixed_native () const { return (_flags & JVM_ACC_IS_PREFIXED_NATIVE ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
135
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
136 // JSR 292: A method of the form MethodHandle.invoke(A...)R method is
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
137 // neither bytecoded nor a JNI native, but rather a fast call through
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
138 // a lightweight method handle object. Because it is not bytecoded,
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
139 // it has the native bit set, but the monitor-match bit is also set
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
140 // to distinguish it from a JNI native (which never has the match bit set).
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
141 // The synthetic bit is also present, because such a method is never
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
142 // explicitly defined in Java code.
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
143 bool is_method_handle_invoke () const { return (_flags & JVM_MH_INVOKE_BITS) == JVM_MH_INVOKE_BITS; }
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
144
0
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // klassOop flags
a61af66fc99e Initial load
duke
parents:
diff changeset
146 bool has_miranda_methods () const { return (_flags & JVM_ACC_HAS_MIRANDA_METHODS ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
147 bool has_vanilla_constructor () const { return (_flags & JVM_ACC_HAS_VANILLA_CONSTRUCTOR) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
148 bool has_finalizer () const { return (_flags & JVM_ACC_HAS_FINALIZER ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
149 bool has_final_method () const { return (_flags & JVM_ACC_HAS_FINAL_METHOD ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
150 bool is_cloneable () const { return (_flags & JVM_ACC_IS_CLONEABLE ) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
151 // klassOop and methodOop flags
a61af66fc99e Initial load
duke
parents:
diff changeset
152 bool has_localvariable_table () const { return (_flags & JVM_ACC_HAS_LOCAL_VARIABLE_TABLE) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
153 void set_has_localvariable_table() { atomic_set_bits(JVM_ACC_HAS_LOCAL_VARIABLE_TABLE); }
a61af66fc99e Initial load
duke
parents:
diff changeset
154 void clear_has_localvariable_table() { atomic_clear_bits(JVM_ACC_HAS_LOCAL_VARIABLE_TABLE); }
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // field flags
a61af66fc99e Initial load
duke
parents:
diff changeset
157 bool is_field_access_watched() const { return (_flags & JVM_ACC_FIELD_ACCESS_WATCHED) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
158 bool is_field_modification_watched() const
a61af66fc99e Initial load
duke
parents:
diff changeset
159 { return (_flags & JVM_ACC_FIELD_MODIFICATION_WATCHED) != 0; }
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
160 bool is_internal() const { return (_flags & JVM_ACC_FIELD_INTERNAL) != 0; }
6100
71afdabfd05b 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 3938
diff changeset
161 bool field_has_generic_signature() const
71afdabfd05b 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 3938
diff changeset
162 { return (_flags & JVM_ACC_FIELD_HAS_GENERIC_SIGNATURE) != 0; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
163
a61af66fc99e Initial load
duke
parents:
diff changeset
164 // get .class file flags
a61af66fc99e Initial load
duke
parents:
diff changeset
165 jint get_flags () const { return (_flags & JVM_ACC_WRITTEN_FLAGS); }
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // Initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
168 void add_promoted_flags(jint flags) { _flags |= (flags & JVM_ACC_PROMOTED_FLAGS); }
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
169 void set_field_flags(jint flags) {
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
170 assert((flags & JVM_ACC_FIELD_FLAGS) == flags, "only recognized flags");
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
171 _flags = (flags & JVM_ACC_FIELD_FLAGS);
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
172 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
173 void set_flags(jint flags) { _flags = (flags & JVM_ACC_WRITTEN_FLAGS); }
a61af66fc99e Initial load
duke
parents:
diff changeset
174
a61af66fc99e Initial load
duke
parents:
diff changeset
175 void set_queued_for_compilation() { atomic_set_bits(JVM_ACC_QUEUED); }
a61af66fc99e Initial load
duke
parents:
diff changeset
176 void clear_queued_for_compilation() { atomic_clear_bits(JVM_ACC_QUEUED); }
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 // Atomic update of flags
a61af66fc99e Initial load
duke
parents:
diff changeset
179 void atomic_set_bits(jint bits);
a61af66fc99e Initial load
duke
parents:
diff changeset
180 void atomic_clear_bits(jint bits);
a61af66fc99e Initial load
duke
parents:
diff changeset
181
a61af66fc99e Initial load
duke
parents:
diff changeset
182 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
183 friend class methodOopDesc;
a61af66fc99e Initial load
duke
parents:
diff changeset
184 friend class Klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
185 friend class ClassFileParser;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 // the functions below should only be called on the _access_flags inst var directly,
a61af66fc99e Initial load
duke
parents:
diff changeset
187 // otherwise they are just changing a copy of the flags
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // attribute flags
a61af66fc99e Initial load
duke
parents:
diff changeset
190 void set_is_synthetic() { atomic_set_bits(JVM_ACC_SYNTHETIC); }
a61af66fc99e Initial load
duke
parents:
diff changeset
191
a61af66fc99e Initial load
duke
parents:
diff changeset
192 // methodOop flags
a61af66fc99e Initial load
duke
parents:
diff changeset
193 void set_monitor_matching() { atomic_set_bits(JVM_ACC_MONITOR_MATCH); }
a61af66fc99e Initial load
duke
parents:
diff changeset
194 void set_has_monitor_bytecodes() { atomic_set_bits(JVM_ACC_HAS_MONITOR_BYTECODES); }
a61af66fc99e Initial load
duke
parents:
diff changeset
195 void set_has_loops() { atomic_set_bits(JVM_ACC_HAS_LOOPS); }
a61af66fc99e Initial load
duke
parents:
diff changeset
196 void set_loops_flag_init() { atomic_set_bits(JVM_ACC_LOOPS_FLAG_INIT); }
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
197 void set_not_c1_compilable() { atomic_set_bits(JVM_ACC_NOT_C1_COMPILABLE); }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
198 void set_not_c2_compilable() { atomic_set_bits(JVM_ACC_NOT_C2_COMPILABLE); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
199 void set_not_osr_compilable() { atomic_set_bits(JVM_ACC_NOT_OSR_COMPILABLE); }
a61af66fc99e Initial load
duke
parents:
diff changeset
200 void set_has_linenumber_table() { atomic_set_bits(JVM_ACC_HAS_LINE_NUMBER_TABLE); }
a61af66fc99e Initial load
duke
parents:
diff changeset
201 void set_has_checked_exceptions() { atomic_set_bits(JVM_ACC_HAS_CHECKED_EXCEPTIONS); }
a61af66fc99e Initial load
duke
parents:
diff changeset
202 void set_has_jsrs() { atomic_set_bits(JVM_ACC_HAS_JSRS); }
a61af66fc99e Initial load
duke
parents:
diff changeset
203 void set_is_old() { atomic_set_bits(JVM_ACC_IS_OLD); }
a61af66fc99e Initial load
duke
parents:
diff changeset
204 void set_is_obsolete() { atomic_set_bits(JVM_ACC_IS_OBSOLETE); }
a61af66fc99e Initial load
duke
parents:
diff changeset
205 void set_is_prefixed_native() { atomic_set_bits(JVM_ACC_IS_PREFIXED_NATIVE); }
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 // klassOop flags
a61af66fc99e Initial load
duke
parents:
diff changeset
208 void set_has_vanilla_constructor() { atomic_set_bits(JVM_ACC_HAS_VANILLA_CONSTRUCTOR); }
a61af66fc99e Initial load
duke
parents:
diff changeset
209 void set_has_finalizer() { atomic_set_bits(JVM_ACC_HAS_FINALIZER); }
a61af66fc99e Initial load
duke
parents:
diff changeset
210 void set_has_final_method() { atomic_set_bits(JVM_ACC_HAS_FINAL_METHOD); }
a61af66fc99e Initial load
duke
parents:
diff changeset
211 void set_is_cloneable() { atomic_set_bits(JVM_ACC_IS_CLONEABLE); }
a61af66fc99e Initial load
duke
parents:
diff changeset
212 void set_has_miranda_methods() { atomic_set_bits(JVM_ACC_HAS_MIRANDA_METHODS); }
a61af66fc99e Initial load
duke
parents:
diff changeset
213
a61af66fc99e Initial load
duke
parents:
diff changeset
214 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
215 // field flags
a61af66fc99e Initial load
duke
parents:
diff changeset
216 void set_is_field_access_watched(const bool value)
a61af66fc99e Initial load
duke
parents:
diff changeset
217 {
a61af66fc99e Initial load
duke
parents:
diff changeset
218 if (value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
219 atomic_set_bits(JVM_ACC_FIELD_ACCESS_WATCHED);
a61af66fc99e Initial load
duke
parents:
diff changeset
220 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
221 atomic_clear_bits(JVM_ACC_FIELD_ACCESS_WATCHED);
a61af66fc99e Initial load
duke
parents:
diff changeset
222 }
a61af66fc99e Initial load
duke
parents:
diff changeset
223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
224 void set_is_field_modification_watched(const bool value)
a61af66fc99e Initial load
duke
parents:
diff changeset
225 {
a61af66fc99e Initial load
duke
parents:
diff changeset
226 if (value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
227 atomic_set_bits(JVM_ACC_FIELD_MODIFICATION_WATCHED);
a61af66fc99e Initial load
duke
parents:
diff changeset
228 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
229 atomic_clear_bits(JVM_ACC_FIELD_MODIFICATION_WATCHED);
a61af66fc99e Initial load
duke
parents:
diff changeset
230 }
a61af66fc99e Initial load
duke
parents:
diff changeset
231 }
6100
71afdabfd05b 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 3938
diff changeset
232 void set_field_has_generic_signature()
71afdabfd05b 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 3938
diff changeset
233 {
71afdabfd05b 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 3938
diff changeset
234 atomic_set_bits(JVM_ACC_FIELD_HAS_GENERIC_SIGNATURE);
71afdabfd05b 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 3938
diff changeset
235 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237 // Conversion
3938
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
238 jshort as_short() const { return (jshort)_flags; }
e6b1331a51d2 7086585: make Java field injection more flexible
never
parents: 1972
diff changeset
239 jint as_int() const { return _flags; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
240
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
241 inline friend AccessFlags accessFlags_from(jint flags);
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
242
0
a61af66fc99e Initial load
duke
parents:
diff changeset
243 // Printing/debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
244 void print_on(outputStream* st) const PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
245 };
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
246
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
247 inline AccessFlags accessFlags_from(jint flags) {
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
248 AccessFlags af;
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
249 af._flags = flags;
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
250 return af;
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
251 }
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
252
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
253 #endif // SHARE_VM_UTILITIES_ACCESSFLAGS_HPP