hotspot/src/share/vm/runtime/fieldDescriptor.cpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
child 2332 5c7b6f4ce0a1
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2005 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "incls/_fieldDescriptor.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
oop fieldDescriptor::loader() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  return instanceKlass::cast(_cp->pool_holder())->class_loader();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
typeArrayOop fieldDescriptor::annotations() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  instanceKlass* ik = instanceKlass::cast(field_holder());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  objArrayOop md = ik->fields_annotations();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  if (md == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  assert((index() % instanceKlass::next_offset) == 0, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  return typeArrayOop(md->obj_at(index() / instanceKlass::next_offset));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
constantTag fieldDescriptor::initial_value_tag() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  return constants()->tag_at(_initial_value_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
jint fieldDescriptor::int_initial_value() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  return constants()->int_at(_initial_value_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
jlong fieldDescriptor::long_initial_value() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  return constants()->long_at(_initial_value_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
jfloat fieldDescriptor::float_initial_value() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  return constants()->float_at(_initial_value_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
jdouble fieldDescriptor::double_initial_value() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  return constants()->double_at(_initial_value_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
oop fieldDescriptor::string_initial_value(TRAPS) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  return constants()->string_at(_initial_value_index, CHECK_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
void fieldDescriptor::initialize(klassOop k, int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  instanceKlass* ik = instanceKlass::cast(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  _cp = ik->constants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  typeArrayOop fields = ik->fields();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  assert(fields->length() % instanceKlass::next_offset == 0, "Illegal size of field array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  assert(fields->length() >= index + instanceKlass::next_offset, "Illegal size of field array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  _access_flags.set_field_flags(fields->ushort_at(index + instanceKlass::access_flags_offset));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  _name_index = fields->ushort_at(index + instanceKlass::name_index_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  _signature_index = fields->ushort_at(index + instanceKlass::signature_index_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  _initial_value_index = fields->ushort_at(index + instanceKlass::initval_index_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  guarantee(_name_index != 0 && _signature_index != 0, "bad constant pool index for fieldDescriptor");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  _offset = ik->offset_from_fields( index );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  _generic_signature_index = fields->ushort_at(index + instanceKlass::generic_signature_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  _index = index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
void fieldDescriptor::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  _access_flags.print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  constants()->symbol_at(_name_index)->print_value_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  st->print(" ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  constants()->symbol_at(_signature_index)->print_value_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  st->print(" @%d ", offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  if (WizardMode && has_initial_value()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    st->print("(initval ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    constantTag t = initial_value_tag();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    if (t.is_int()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
      st->print("int %d)", int_initial_value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    } else if (t.is_long()){
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
      st->print_jlong(long_initial_value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    } else if (t.is_float()){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
      st->print("float %f)", float_initial_value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    } else if (t.is_double()){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
      st->print("double %lf)", double_initial_value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
void fieldDescriptor::print_on_for(outputStream* st, oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  BasicType ft = field_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  jint as_int;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  switch (ft) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    case T_BYTE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
      as_int = (jint)obj->byte_field(offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
      st->print(" %d", obj->byte_field(offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    case T_CHAR:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
        jchar c = obj->char_field(offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
        as_int = c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
        st->print(" %c %d", isprint(c) ? c : ' ', c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    case T_DOUBLE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
      st->print(" %lf", obj->double_field(offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    case T_FLOAT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
      as_int = obj->int_field(offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
      st->print(" %f", obj->float_field(offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    case T_INT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
      st->print(" %d", obj->int_field(offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    case T_LONG:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
      st->print(" ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
      st->print_jlong(obj->long_field(offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    case T_SHORT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
      as_int = obj->short_field(offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
      st->print(" %d", obj->short_field(offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    case T_BOOLEAN:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
      as_int = obj->bool_field(offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
      st->print(" %s", obj->bool_field(offset()) ? "true" : "false");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    case T_ARRAY:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
      st->print(" ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
      as_int = obj->int_field(offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
      obj->obj_field(offset())->print_value_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    case T_OBJECT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
      st->print(" ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
      as_int = obj->int_field(offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
      obj->obj_field(offset())->print_value_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
      ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // Print a hint as to the underlying integer representation. This can be wrong for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // pointers on an LP64 machine
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  if (ft == T_LONG || ft == T_DOUBLE) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    st->print(" (%x %x)", obj->int_field(offset()), obj->int_field(offset()+sizeof(jint)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    st->print(" (%x)", as_int);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
#endif /* PRODUCT */