src/share/vm/runtime/fieldDescriptor.hpp

Tue, 26 Mar 2013 09:06:16 -0400

author
hseigel
date
Tue, 26 Mar 2013 09:06:16 -0400
changeset 4819
36376b540a98
parent 4393
35431a769282
child 5732
b2e698d2276c
permissions
-rw-r--r--

8009595: The UseSplitVerifier option needs to be deprecated.
Summary: Put UseSplitVerifier option on the deprecated list.
Reviewed-by: dcubed, kmo, acorn

duke@435 1 /*
coleenp@4037 2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_RUNTIME_FIELDDESCRIPTOR_HPP
stefank@2314 26 #define SHARE_VM_RUNTIME_FIELDDESCRIPTOR_HPP
stefank@2314 27
coleenp@4037 28 #include "oops/constantPool.hpp"
coleenp@2497 29 #include "oops/symbol.hpp"
stefank@2314 30 #include "runtime/fieldType.hpp"
stefank@2314 31 #include "utilities/accessFlags.hpp"
stefank@2314 32 #include "utilities/constantTag.hpp"
stefank@2314 33
duke@435 34 // A fieldDescriptor describes the attributes of a single field (instance or class variable).
duke@435 35 // It needs the class constant pool to work (because it only holds indices into the pool
duke@435 36 // rather than the actual info).
duke@435 37
duke@435 38 class fieldDescriptor VALUE_OBJ_CLASS_SPEC {
duke@435 39 private:
duke@435 40 AccessFlags _access_flags;
never@3137 41 int _index; // the field index
duke@435 42 constantPoolHandle _cp;
duke@435 43
never@3137 44 // update the access_flags for the field in the klass
never@3137 45 void update_klass_field_access_flag() {
coleenp@4251 46 InstanceKlass* ik = field_holder();
never@3137 47 ik->field(index())->set_access_flags(_access_flags.as_short());
never@3137 48 }
never@3137 49
never@3137 50 FieldInfo* field() const {
coleenp@4251 51 InstanceKlass* ik = field_holder();
never@3137 52 return ik->field(_index);
never@3137 53 }
never@3137 54
duke@435 55 public:
never@3137 56 Symbol* name() const {
never@3137 57 return field()->name(_cp);
never@3137 58 }
never@3137 59 Symbol* signature() const {
never@3137 60 return field()->signature(_cp);
never@3137 61 }
coleenp@4251 62 InstanceKlass* field_holder() const { return _cp->pool_holder(); }
coleenp@4251 63 ConstantPool* constants() const { return _cp(); }
coleenp@4251 64 AccessFlags access_flags() const { return _access_flags; }
coleenp@4251 65 oop loader() const;
coleenp@4037 66 // Offset (in words) of field from start of instanceOop / Klass*
coleenp@4251 67 int offset() const { return field()->offset(); }
coleenp@4251 68 Symbol* generic_signature() const;
coleenp@4251 69 int index() const { return _index; }
coleenp@4251 70 AnnotationArray* annotations() const;
stefank@4393 71 AnnotationArray* type_annotations() const;
duke@435 72
duke@435 73 // Initial field value
coleenp@4251 74 bool has_initial_value() const { return field()->initval_index() != 0; }
coleenp@4251 75 int initial_value_index() const { return field()->initval_index(); }
duke@435 76 constantTag initial_value_tag() const; // The tag will return true on one of is_int(), is_long(), is_single(), is_double()
coleenp@4251 77 jint int_initial_value() const;
coleenp@4251 78 jlong long_initial_value() const;
coleenp@4251 79 jfloat float_initial_value() const;
coleenp@4251 80 jdouble double_initial_value() const;
coleenp@4251 81 oop string_initial_value(TRAPS) const;
duke@435 82
duke@435 83 // Field signature type
coleenp@4251 84 BasicType field_type() const { return FieldType::basic_type(signature()); }
duke@435 85
duke@435 86 // Access flags
coleenp@4251 87 bool is_public() const { return access_flags().is_public(); }
coleenp@4251 88 bool is_private() const { return access_flags().is_private(); }
coleenp@4251 89 bool is_protected() const { return access_flags().is_protected(); }
coleenp@4251 90 bool is_package_private() const { return !is_public() && !is_private() && !is_protected(); }
duke@435 91
coleenp@4251 92 bool is_static() const { return access_flags().is_static(); }
coleenp@4251 93 bool is_final() const { return access_flags().is_final(); }
coleenp@4251 94 bool is_volatile() const { return access_flags().is_volatile(); }
coleenp@4251 95 bool is_transient() const { return access_flags().is_transient(); }
duke@435 96
coleenp@4251 97 bool is_synthetic() const { return access_flags().is_synthetic(); }
duke@435 98
coleenp@4251 99 bool is_field_access_watched() const { return access_flags().is_field_access_watched(); }
duke@435 100 bool is_field_modification_watched() const
coleenp@4251 101 { return access_flags().is_field_modification_watched(); }
coleenp@4251 102 bool has_generic_signature() const { return access_flags().field_has_generic_signature(); }
never@3137 103
never@3137 104 void set_is_field_access_watched(const bool value) {
never@3137 105 _access_flags.set_is_field_access_watched(value);
never@3137 106 update_klass_field_access_flag();
never@3137 107 }
never@3137 108
never@3137 109 void set_is_field_modification_watched(const bool value) {
never@3137 110 _access_flags.set_is_field_modification_watched(value);
never@3137 111 update_klass_field_access_flag();
never@3137 112 }
duke@435 113
duke@435 114 // Initialization
coleenp@4037 115 void initialize(InstanceKlass* ik, int index);
duke@435 116
duke@435 117 // Print
twisti@3969 118 void print() { print_on(tty); }
duke@435 119 void print_on(outputStream* st) const PRODUCT_RETURN;
duke@435 120 void print_on_for(outputStream* st, oop obj) PRODUCT_RETURN;
duke@435 121 };
stefank@2314 122
stefank@2314 123 #endif // SHARE_VM_RUNTIME_FIELDDESCRIPTOR_HPP

mercurial