hotspot/src/share/vm/runtime/fieldDescriptor.cpp
author jiangli
Mon, 21 May 2012 14:10:35 -0400
changeset 12772 d317e5e08194
parent 10546 e79347eebbc5
child 13101 67539edd246d
permissions -rw-r--r--
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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
     2
 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
1
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
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2332
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2332
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2332
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "classfile/vmSymbols.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "memory/universe.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "oops/instanceKlass.hpp"
12772
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
    31
#include "oops/fieldStreams.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "runtime/fieldDescriptor.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "runtime/signature.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
oop fieldDescriptor::loader() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  return instanceKlass::cast(_cp->pool_holder())->class_loader();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
12772
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
    41
Symbol* fieldDescriptor::generic_signature() const {
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
    42
  int idx = 0;
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
    43
  instanceKlass* ik = instanceKlass::cast(field_holder());
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
    44
  for (AllFieldStream fs(ik); !fs.done(); fs.next()) {
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
    45
    if (idx == _index) {
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
    46
      return fs.generic_signature();
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
    47
    } else {
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
    48
      idx ++;
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
    49
    }
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
    50
  }
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
    51
  assert(false, "should never happen");
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
    52
  return NULL;
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
    53
}
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
    54
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
typeArrayOop fieldDescriptor::annotations() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  instanceKlass* ik = instanceKlass::cast(field_holder());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  objArrayOop md = ik->fields_annotations();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  if (md == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    return NULL;
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
    60
  return typeArrayOop(md->obj_at(index()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
constantTag fieldDescriptor::initial_value_tag() const {
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
    64
  return constants()->tag_at(initial_value_index());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
jint fieldDescriptor::int_initial_value() const {
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
    68
  return constants()->int_at(initial_value_index());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
jlong fieldDescriptor::long_initial_value() const {
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
    72
  return constants()->long_at(initial_value_index());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
jfloat fieldDescriptor::float_initial_value() const {
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
    76
  return constants()->float_at(initial_value_index());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
jdouble fieldDescriptor::double_initial_value() const {
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
    80
  return constants()->double_at(initial_value_index());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
oop fieldDescriptor::string_initial_value(TRAPS) const {
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
    84
  return constants()->string_at(initial_value_index(), CHECK_0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
void fieldDescriptor::initialize(klassOop k, int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  instanceKlass* ik = instanceKlass::cast(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  _cp = ik->constants();
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
    90
  FieldInfo* f = ik->field(index);
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
    91
  assert(!f->is_internal(), "regular Java fields only");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
    93
  _access_flags = accessFlags_from(f->access_flags());
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
    94
  guarantee(f->name_index() != 0 && f->signature_index() != 0, "bad constant pool index for fieldDescriptor");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  _index = index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
void fieldDescriptor::print_on(outputStream* st) const {
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
   101
  access_flags().print_on(st);
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
   102
  name()->print_value_on(st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  st->print(" ");
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
   104
  signature()->print_value_on(st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  st->print(" @%d ", offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  if (WizardMode && has_initial_value()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    st->print("(initval ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    constantTag t = initial_value_tag();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    if (t.is_int()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
      st->print("int %d)", int_initial_value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    } else if (t.is_long()){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
      st->print_jlong(long_initial_value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    } else if (t.is_float()){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
      st->print("float %f)", float_initial_value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    } else if (t.is_double()){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
      st->print("double %lf)", double_initial_value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
void fieldDescriptor::print_on_for(outputStream* st, oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  BasicType ft = field_type();
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1
diff changeset
   124
  jint as_int = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  switch (ft) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    case T_BYTE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
      as_int = (jint)obj->byte_field(offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
      st->print(" %d", obj->byte_field(offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    case T_CHAR:
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1
diff changeset
   131
      as_int = (jint)obj->char_field(offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
        jchar c = obj->char_field(offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
        as_int = c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
        st->print(" %c %d", isprint(c) ? c : ' ', c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    case T_DOUBLE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
      st->print(" %lf", obj->double_field(offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    case T_FLOAT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
      as_int = obj->int_field(offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
      st->print(" %f", obj->float_field(offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    case T_INT:
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1
diff changeset
   146
      as_int = obj->int_field(offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
      st->print(" %d", obj->int_field(offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    case T_LONG:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
      st->print(" ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
      st->print_jlong(obj->long_field(offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    case T_SHORT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
      as_int = obj->short_field(offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
      st->print(" %d", obj->short_field(offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    case T_BOOLEAN:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
      as_int = obj->bool_field(offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
      st->print(" %s", obj->bool_field(offset()) ? "true" : "false");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    case T_ARRAY:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
      st->print(" ");
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1
diff changeset
   163
      NOT_LP64(as_int = obj->int_field(offset()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
      obj->obj_field(offset())->print_value_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    case T_OBJECT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
      st->print(" ");
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1
diff changeset
   168
      NOT_LP64(as_int = obj->int_field(offset()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
      obj->obj_field(offset())->print_value_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
      ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  // Print a hint as to the underlying integer representation. This can be wrong for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  // pointers on an LP64 machine
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1
diff changeset
   177
  if (ft == T_LONG || ft == T_DOUBLE LP64_ONLY(|| !is_java_primitive(ft)) ) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    st->print(" (%x %x)", obj->int_field(offset()), obj->int_field(offset()+sizeof(jint)));
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1
diff changeset
   179
  } else if (as_int < 0 || as_int > 9) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    st->print(" (%x)", as_int);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
#endif /* PRODUCT */