src/share/vm/runtime/fieldDescriptor.hpp

Thu, 21 Nov 2013 12:30:35 -0800

author
kvn
date
Thu, 21 Nov 2013 12:30:35 -0800
changeset 6485
da862781b584
parent 5732
b2e698d2276c
child 6876
710a3c8b516e
child 8664
00cbb581da94
permissions
-rw-r--r--

Merge

duke@435 1 /*
drchase@5732 2 * Copyright (c) 1997, 2013, 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:
drchase@5732 56 fieldDescriptor() {
drchase@5732 57 DEBUG_ONLY(_index = badInt);
drchase@5732 58 }
drchase@5732 59 fieldDescriptor(InstanceKlass* ik, int index) {
drchase@5732 60 DEBUG_ONLY(_index = badInt);
drchase@5732 61 reinitialize(ik, index);
drchase@5732 62 }
never@3137 63 Symbol* name() const {
never@3137 64 return field()->name(_cp);
never@3137 65 }
never@3137 66 Symbol* signature() const {
never@3137 67 return field()->signature(_cp);
never@3137 68 }
coleenp@4251 69 InstanceKlass* field_holder() const { return _cp->pool_holder(); }
coleenp@4251 70 ConstantPool* constants() const { return _cp(); }
coleenp@4251 71 AccessFlags access_flags() const { return _access_flags; }
coleenp@4251 72 oop loader() const;
coleenp@4037 73 // Offset (in words) of field from start of instanceOop / Klass*
coleenp@4251 74 int offset() const { return field()->offset(); }
coleenp@4251 75 Symbol* generic_signature() const;
coleenp@4251 76 int index() const { return _index; }
coleenp@4251 77 AnnotationArray* annotations() const;
stefank@4393 78 AnnotationArray* type_annotations() const;
duke@435 79
duke@435 80 // Initial field value
coleenp@4251 81 bool has_initial_value() const { return field()->initval_index() != 0; }
coleenp@4251 82 int initial_value_index() const { return field()->initval_index(); }
duke@435 83 constantTag initial_value_tag() const; // The tag will return true on one of is_int(), is_long(), is_single(), is_double()
coleenp@4251 84 jint int_initial_value() const;
coleenp@4251 85 jlong long_initial_value() const;
coleenp@4251 86 jfloat float_initial_value() const;
coleenp@4251 87 jdouble double_initial_value() const;
coleenp@4251 88 oop string_initial_value(TRAPS) const;
duke@435 89
duke@435 90 // Field signature type
coleenp@4251 91 BasicType field_type() const { return FieldType::basic_type(signature()); }
duke@435 92
duke@435 93 // Access flags
coleenp@4251 94 bool is_public() const { return access_flags().is_public(); }
coleenp@4251 95 bool is_private() const { return access_flags().is_private(); }
coleenp@4251 96 bool is_protected() const { return access_flags().is_protected(); }
coleenp@4251 97 bool is_package_private() const { return !is_public() && !is_private() && !is_protected(); }
duke@435 98
coleenp@4251 99 bool is_static() const { return access_flags().is_static(); }
coleenp@4251 100 bool is_final() const { return access_flags().is_final(); }
coleenp@4251 101 bool is_volatile() const { return access_flags().is_volatile(); }
coleenp@4251 102 bool is_transient() const { return access_flags().is_transient(); }
duke@435 103
coleenp@4251 104 bool is_synthetic() const { return access_flags().is_synthetic(); }
duke@435 105
coleenp@4251 106 bool is_field_access_watched() const { return access_flags().is_field_access_watched(); }
duke@435 107 bool is_field_modification_watched() const
coleenp@4251 108 { return access_flags().is_field_modification_watched(); }
coleenp@4251 109 bool has_generic_signature() const { return access_flags().field_has_generic_signature(); }
never@3137 110
never@3137 111 void set_is_field_access_watched(const bool value) {
never@3137 112 _access_flags.set_is_field_access_watched(value);
never@3137 113 update_klass_field_access_flag();
never@3137 114 }
never@3137 115
never@3137 116 void set_is_field_modification_watched(const bool value) {
never@3137 117 _access_flags.set_is_field_modification_watched(value);
never@3137 118 update_klass_field_access_flag();
never@3137 119 }
duke@435 120
duke@435 121 // Initialization
drchase@5732 122 void reinitialize(InstanceKlass* ik, int index);
duke@435 123
duke@435 124 // Print
twisti@3969 125 void print() { print_on(tty); }
duke@435 126 void print_on(outputStream* st) const PRODUCT_RETURN;
duke@435 127 void print_on_for(outputStream* st, oop obj) PRODUCT_RETURN;
drchase@5732 128 void verify() const PRODUCT_RETURN;
duke@435 129 };
stefank@2314 130
stefank@2314 131 #endif // SHARE_VM_RUNTIME_FIELDDESCRIPTOR_HPP

mercurial