hotspot/src/share/vm/oops/methodOop.cpp
author ysr
Mon, 07 Feb 2011 22:19:57 -0800
changeset 8296 b1c2163e4e59
parent 8076 96d498ec7ae1
child 8313 06ce193c8a5f
permissions -rw-r--r--
6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?") Summary: Fix block_size_if_printezis_bits() so it does not expect the bits, only uses them when available. Fix block_size_no_stall() so it does not stall when the bits are missing such cases, letting the caller deal with zero size returns. Constant pool cache oops do not need to be unparsable or conc_unsafe after their klass pointer is installed. Some cosmetic clean-ups and some assertion checking for conc-usafety which, in the presence of class file redefinition, has no a-priori time boundedness, so all GCs must be able to safely deal with putatively conc-unsafe objects in a stop-world pause. Reviewed-by: jmasa, johnc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7446
diff changeset
     2
 * Copyright (c) 1997, 2011, 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: 5428
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5428
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: 5428
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: 6771
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    26
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    27
#include "code/debugInfoRec.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    28
#include "gc_interface/collectedHeap.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    29
#include "interpreter/bytecodeStream.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    30
#include "interpreter/bytecodeTracer.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    31
#include "interpreter/bytecodes.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    32
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    33
#include "interpreter/oopMapCache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    34
#include "memory/gcLocker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    35
#include "memory/generation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    36
#include "memory/oopFactory.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    37
#include "oops/klassOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    38
#include "oops/methodDataOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    39
#include "oops/methodOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    40
#include "oops/oop.inline.hpp"
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
    41
#include "oops/symbol.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    42
#include "prims/jvmtiExport.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    43
#include "prims/methodHandleWalk.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    44
#include "prims/nativeLookup.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    45
#include "runtime/arguments.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    46
#include "runtime/compilationPolicy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    47
#include "runtime/frame.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    48
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    49
#include "runtime/relocator.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    50
#include "runtime/sharedRuntime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    51
#include "runtime/signature.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6771
diff changeset
    52
#include "utilities/xmlstream.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// Implementation of methodOopDesc
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
address methodOopDesc::get_i2c_entry() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  assert(_adapter != NULL, "must have");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  return _adapter->get_i2c_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
address methodOopDesc::get_c2i_entry() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  assert(_adapter != NULL, "must have");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  return _adapter->get_c2i_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
address methodOopDesc::get_c2i_unverified_entry() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  assert(_adapter != NULL, "must have");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  return _adapter->get_c2i_unverified_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
char* methodOopDesc::name_and_sig_as_C_string() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  return name_and_sig_as_C_string(Klass::cast(constants()->pool_holder()), name(), signature());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
char* methodOopDesc::name_and_sig_as_C_string(char* buf, int size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  return name_and_sig_as_C_string(Klass::cast(constants()->pool_holder()), name(), signature(), buf, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
    80
char* methodOopDesc::name_and_sig_as_C_string(Klass* klass, Symbol* method_name, Symbol* signature) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  const char* klass_name = klass->external_name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  int klass_name_len  = (int)strlen(klass_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  int method_name_len = method_name->utf8_length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  int len             = klass_name_len + 1 + method_name_len + signature->utf8_length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  char* dest          = NEW_RESOURCE_ARRAY(char, len + 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  strcpy(dest, klass_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  dest[klass_name_len] = '.';
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  strcpy(&dest[klass_name_len + 1], method_name->as_C_string());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  strcpy(&dest[klass_name_len + 1 + method_name_len], signature->as_C_string());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  dest[len] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  return dest;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
    94
char* methodOopDesc::name_and_sig_as_C_string(Klass* klass, Symbol* method_name, Symbol* signature, char* buf, int size) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
    95
  Symbol* klass_name = klass->name();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  klass_name->as_klass_external_name(buf, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  int len = (int)strlen(buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  if (len < size - 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    buf[len++] = '.';
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    method_name->as_C_string(&(buf[len]), size - len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    len = (int)strlen(buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    signature->as_C_string(&(buf[len]), size - len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  return buf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
int  methodOopDesc::fast_exception_handler_bci_for(KlassHandle ex_klass, int throw_bci, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // exception table holds quadruple entries of the form (beg_bci, end_bci, handler_bci, klass_index)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  const int beg_bci_offset     = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  const int end_bci_offset     = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  const int handler_bci_offset = 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  const int klass_index_offset = 3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  const int entry_size         = 4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // access exception table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  typeArrayHandle table (THREAD, constMethod()->exception_table());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  int length = table->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  assert(length % entry_size == 0, "exception table format has changed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // iterate through all entries sequentially
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  constantPoolHandle pool(THREAD, constants());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  for (int i = 0; i < length; i += entry_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    int beg_bci = table->int_at(i + beg_bci_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    int end_bci = table->int_at(i + end_bci_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    assert(beg_bci <= end_bci, "inconsistent exception table");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    if (beg_bci <= throw_bci && throw_bci < end_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
      // exception handler bci range covers throw_bci => investigate further
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
      int handler_bci = table->int_at(i + handler_bci_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
      int klass_index = table->int_at(i + klass_index_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
      if (klass_index == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
        return handler_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
      } else if (ex_klass.is_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
        return handler_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
        // we know the exception class => get the constraint class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
        // this may require loading of the constraint class; if verification
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
        // fails or some other exception occurs, return handler_bci
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
        klassOop k = pool->klass_at(klass_index, CHECK_(handler_bci));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
        KlassHandle klass = KlassHandle(THREAD, k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
        assert(klass.not_null(), "klass not loaded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
        if (ex_klass->is_subtype_of(klass())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
          return handler_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
void methodOopDesc::mask_for(int bci, InterpreterOopMap* mask) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  Thread* myThread    = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  methodHandle h_this(myThread, this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  bool has_capability = myThread->is_VM_thread() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
                        myThread->is_ConcurrentGC_thread() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
                        myThread->is_GC_task_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  if (!has_capability) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    if (!VerifyStack && !VerifyLastFrame) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
      // verify stack calls this outside VM thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
      warning("oopmap should only be accessed by the "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
              "VM, GC task or CMS threads (or during debugging)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
      InterpreterOopMap local_mask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
      instanceKlass::cast(method_holder())->mask_for(h_this, bci, &local_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
      local_mask.print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  instanceKlass::cast(method_holder())->mask_for(h_this, bci, mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
int methodOopDesc::bci_from(address bcp) const {
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2534
diff changeset
   179
  assert(is_native() && bcp == code_base() || contains(bcp) || is_error_reported(), "bcp doesn't belong to this method");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  return bcp - code_base();
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
// Return (int)bcx if it appears to be a valid BCI.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
// Return bci_from((address)bcx) if it appears to be a valid BCP.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
// Return -1 otherwise.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
// Used by profiling code, when invalid data is a possibility.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
// The caller is responsible for validating the methodOop itself.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
int methodOopDesc::validate_bci_from_bcx(intptr_t bcx) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  // keep bci as -1 if not a valid bci
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  int bci = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  if (bcx == 0 || (address)bcx == code_base()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    // code_size() may return 0 and we allow 0 here
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    // the method may be native
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    bci = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  } else if (frame::is_bci(bcx)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    if (bcx < code_size()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
      bci = (int)bcx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  } else if (contains((address)bcx)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    bci = (address)bcx - code_base();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // Assert that if we have dodged any asserts, bci is negative.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  assert(bci == -1 || bci == bci_from(bcp_from(bci)), "sane bci if >=0");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  return bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
address methodOopDesc::bcp_from(int bci) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  assert((is_native() && bci == 0)  || (!is_native() && 0 <= bci && bci < code_size()), "illegal bci");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  address bcp = code_base() + bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  assert(is_native() && bcp == code_base() || contains(bcp), "bcp doesn't belong to this method");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  return bcp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
int methodOopDesc::object_size(bool is_native) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // If native, then include pointers for native_function and signature_handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  int extra_bytes = (is_native) ? 2*sizeof(address*) : 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  int extra_words = align_size_up(extra_bytes, BytesPerWord) / BytesPerWord;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  return align_object_size(header_size() + extra_words);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   224
Symbol* methodOopDesc::klass_name() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  klassOop k = method_holder();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  assert(k->is_klass(), "must be klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  instanceKlass* ik = (instanceKlass*) k->klass_part();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  return ik->name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
void methodOopDesc::set_interpreter_kind() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  int kind = Interpreter::method_kind(methodOop(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  assert(kind != Interpreter::invalid,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
         "interpreter entry must be valid");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  set_interpreter_kind(kind);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
// Attempt to return method oop to original state.  Clear any pointers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
// (to objects outside the shared spaces).  We won't be able to predict
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
// where they should point in a new JVM.  Further initialize some
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
// entries now in order allow them to be write protected later.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
void methodOopDesc::remove_unshareable_info() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  unlink_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  set_interpreter_kind();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   251
bool methodOopDesc::was_executed_more_than(int n) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  // Invocation counter is reset when the methodOop is compiled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  // If the method has compiled code we therefore assume it has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  // be excuted more than n times.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  if (is_accessor() || is_empty_method() || (code() != NULL)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    // interpreter doesn't bump invocation counter of trivial methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
    // compiler does not bump invocation counter of compiled methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
    return true;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   259
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   260
  else if (_invocation_counter.carry() || (method_data() != NULL && method_data()->invocation_counter()->carry())) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
    // The carry bit is set when the counter overflows and causes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
    // a compilation to occur.  We don't know how many times
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    // the counter has been reset, so we simply assume it has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
    // been executed more than n times.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    return invocation_count() > n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
#ifndef PRODUCT
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   272
void methodOopDesc::print_invocation_count() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  if (is_static()) tty->print("static ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  if (is_final()) tty->print("final ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  if (is_synchronized()) tty->print("synchronized ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  if (is_native()) tty->print("native ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  method_holder()->klass_part()->name()->print_symbol_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  tty->print(".");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  name()->print_symbol_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  signature()->print_symbol_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  if (WizardMode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
    // dump the size of the byte codes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
    tty->print(" {%d}", code_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  tty->print_cr ("  interpreter_invocation_count: %8d ", interpreter_invocation_count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  tty->print_cr ("  invocation_counter:           %8d ", invocation_count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  tty->print_cr ("  backedge_counter:             %8d ", backedge_count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  if (CountCompiledCalls) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
    tty->print_cr ("  compiled_invocation_count: %8d ", compiled_invocation_count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
// Build a methodDataOop object to hold information about this method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
// collected in the interpreter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
void methodOopDesc::build_interpreter_method_data(methodHandle method, TRAPS) {
7446
9193aa209467 6988439: Parallel Class Loading test deadlock involving MethodData_lock and Pending List Lock
coleenp
parents: 7397
diff changeset
   301
  // Do not profile method if current thread holds the pending list lock,
9193aa209467 6988439: Parallel Class Loading test deadlock involving MethodData_lock and Pending List Lock
coleenp
parents: 7397
diff changeset
   302
  // which avoids deadlock for acquiring the MethodData_lock.
9193aa209467 6988439: Parallel Class Loading test deadlock involving MethodData_lock and Pending List Lock
coleenp
parents: 7397
diff changeset
   303
  if (instanceRefKlass::owns_pending_list_lock((JavaThread*)THREAD)) {
9193aa209467 6988439: Parallel Class Loading test deadlock involving MethodData_lock and Pending List Lock
coleenp
parents: 7397
diff changeset
   304
    return;
9193aa209467 6988439: Parallel Class Loading test deadlock involving MethodData_lock and Pending List Lock
coleenp
parents: 7397
diff changeset
   305
  }
9193aa209467 6988439: Parallel Class Loading test deadlock involving MethodData_lock and Pending List Lock
coleenp
parents: 7397
diff changeset
   306
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  // Grab a lock here to prevent multiple
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  // methodDataOops from being created.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  MutexLocker ml(MethodData_lock, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  if (method->method_data() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
    methodDataOop method_data = oopFactory::new_methodData(method, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    method->set_method_data(method_data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
    if (PrintMethodData && (Verbose || WizardMode)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
      ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
      tty->print("build_interpreter_method_data for ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
      method->print_name(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
      tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
      // At the end of the run, the MDO, full of data, will be dumped.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
void methodOopDesc::cleanup_inline_caches() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  // The current system doesn't use inline caches in the interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  // => nothing to do (keep this method around for future use)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   329
int methodOopDesc::extra_stack_words() {
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   330
  // not an inline function, to avoid a header dependency on Interpreter
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4756
diff changeset
   331
  return extra_stack_entries() * Interpreter::stackElementSize;
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   332
}
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   333
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   334
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
void methodOopDesc::compute_size_of_parameters(Thread *thread) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   336
  ArgumentSizeComputer asc(signature());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  set_size_of_parameters(asc.size() + (is_static() ? 0 : 1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
#ifdef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
void methodOopDesc::set_result_index(BasicType type)          {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  _result_index = Interpreter::BasicType_as_index(type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
BasicType methodOopDesc::result_type() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  ResultTypeFinder rtf(signature());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  return rtf.type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
bool methodOopDesc::is_empty_method() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  return  code_size() == 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
      && *code_base() == Bytecodes::_return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
bool methodOopDesc::is_vanilla_constructor() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  // Returns true if this method is a vanilla constructor, i.e. an "<init>" "()V" method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  // which only calls the superclass vanilla constructor and possibly does stores of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  // zero constants to local fields:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  //   aload_0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  //   invokespecial
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  //   indexbyte1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  //   indexbyte2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  // followed by an (optional) sequence of:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  //   aload_0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  //   aconst_null / iconst_0 / fconst_0 / dconst_0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  //   putfield
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  //   indexbyte1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  //   indexbyte2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  // followed by:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  //   return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  assert(name() == vmSymbols::object_initializer_name(),    "Should only be called for default constructors");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  assert(signature() == vmSymbols::void_method_signature(), "Should only be called for default constructors");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  int size = code_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  // Check if size match
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  if (size == 0 || size % 5 != 0) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  address cb = code_base();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  int last = size - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  if (cb[0] != Bytecodes::_aload_0 || cb[1] != Bytecodes::_invokespecial || cb[last] != Bytecodes::_return) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
    // Does not call superclass default constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  // Check optional sequence
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  for (int i = 4; i < last; i += 5) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
    if (cb[i] != Bytecodes::_aload_0) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
    if (!Bytecodes::is_zero_const(Bytecodes::cast(cb[i+1]))) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
    if (cb[i+2] != Bytecodes::_putfield) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
bool methodOopDesc::compute_has_loops_flag() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  BytecodeStream bcs(methodOop(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  Bytecodes::Code bc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  while ((bc = bcs.next()) >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
    switch( bc ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
      case Bytecodes::_ifeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
      case Bytecodes::_ifnull:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
      case Bytecodes::_iflt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
      case Bytecodes::_ifle:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
      case Bytecodes::_ifne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
      case Bytecodes::_ifnonnull:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
      case Bytecodes::_ifgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
      case Bytecodes::_ifge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
      case Bytecodes::_if_icmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
      case Bytecodes::_if_icmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
      case Bytecodes::_if_icmplt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
      case Bytecodes::_if_icmpgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
      case Bytecodes::_if_icmple:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
      case Bytecodes::_if_icmpge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
      case Bytecodes::_if_acmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
      case Bytecodes::_if_acmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
      case Bytecodes::_goto:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
      case Bytecodes::_jsr:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
        if( bcs.dest() < bcs.next_bci() ) _access_flags.set_has_loops();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
      case Bytecodes::_goto_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
      case Bytecodes::_jsr_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
        if( bcs.dest_w() < bcs.next_bci() ) _access_flags.set_has_loops();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  _access_flags.set_loops_flag_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  return _access_flags.has_loops();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
bool methodOopDesc::is_final_method() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  // %%% Should return true for private methods also,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  // since there is no way to override them.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  return is_final() || Klass::cast(method_holder())->is_final();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
bool methodOopDesc::is_strict_method() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  return is_strict();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
bool methodOopDesc::can_be_statically_bound() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  if (is_final_method())  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  return vtable_index() == nonvirtual_vtable_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
bool methodOopDesc::is_accessor() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  if (code_size() != 5) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  if (size_of_parameters() != 1) return false;
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7446
diff changeset
   460
  if (java_code_at(0) != Bytecodes::_aload_0 ) return false;
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7446
diff changeset
   461
  if (java_code_at(1) != Bytecodes::_getfield) return false;
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7446
diff changeset
   462
  if (java_code_at(4) != Bytecodes::_areturn &&
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7446
diff changeset
   463
      java_code_at(4) != Bytecodes::_ireturn ) return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
bool methodOopDesc::is_initializer() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  return name() == vmSymbols::object_initializer_name() || name() == vmSymbols::class_initializer_name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
objArrayHandle methodOopDesc::resolved_checked_exceptions_impl(methodOop this_oop, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  int length = this_oop->checked_exceptions_length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  if (length == 0) {  // common case
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
    return objArrayHandle(THREAD, Universe::the_empty_class_klass_array());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
    methodHandle h_this(THREAD, this_oop);
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4094
diff changeset
   479
    objArrayOop m_oop = oopFactory::new_objArray(SystemDictionary::Class_klass(), length, CHECK_(objArrayHandle()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
    objArrayHandle mirrors (THREAD, m_oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
    for (int i = 0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
      CheckedExceptionElement* table = h_this->checked_exceptions_start(); // recompute on each iteration, not gc safe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
      klassOop k = h_this->constants()->klass_at(table[i].class_cp_index, CHECK_(objArrayHandle()));
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4094
diff changeset
   484
      assert(Klass::cast(k)->is_subclass_of(SystemDictionary::Throwable_klass()), "invalid exception class");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
      mirrors->obj_at_put(i, Klass::cast(k)->java_mirror());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
    return mirrors;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
int methodOopDesc::line_number_from_bci(int bci) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  if (bci == SynchronizationEntryBCI) bci = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  assert(bci == 0 || 0 <= bci && bci < code_size(), "illegal bci");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  int best_bci  =  0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  int best_line = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  if (has_linenumber_table()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
    // The line numbers are a short array of 2-tuples [start_pc, line_number].
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
    // Not necessarily sorted and not necessarily one-to-one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
    CompressedLineNumberReadStream stream(compressed_linenumber_table());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
    while (stream.read_pair()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
      if (stream.bci() == bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
        // perfect match
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
        return stream.line();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
        // update best_bci/line
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
        if (stream.bci() < bci && stream.bci() >= best_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
          best_bci  = stream.bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
          best_line = stream.line();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  return best_line;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
bool methodOopDesc::is_klass_loaded_by_klass_index(int klass_index) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  if( _constants->tag_at(klass_index).is_unresolved_klass() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
    Thread *thread = Thread::current();
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   522
    Symbol* klass_name = _constants->klass_name_at(klass_index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
    Handle loader(thread, instanceKlass::cast(method_holder())->class_loader());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
    Handle prot  (thread, Klass::cast(method_holder())->protection_domain());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
    return SystemDictionary::find(klass_name, loader, prot, thread) != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
bool methodOopDesc::is_klass_loaded(int refinfo_index, bool must_be_resolved) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  int klass_index = _constants->klass_ref_index_at(refinfo_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  if (must_be_resolved) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    // Make sure klass is resolved in constantpool.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
    if (constants()->tag_at(klass_index).is_unresolved_klass()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  return is_klass_loaded_by_klass_index(klass_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
void methodOopDesc::set_native_function(address function, bool post_event_flag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  assert(function != NULL, "use clear_native_function to unregister natives");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  address* native_function = native_function_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  // We can see racers trying to place the same native function into place. Once
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  // is plenty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  address current = *native_function;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  if (current == function) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  if (post_event_flag && JvmtiExport::should_post_native_method_bind() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
      function != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
    // native_method_throw_unsatisfied_link_error_entry() should only
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    // be passed when post_event_flag is false.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
    assert(function !=
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
      SharedRuntime::native_method_throw_unsatisfied_link_error_entry(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
      "post_event_flag mis-match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
    // post the bind event, and possible change the bind function
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
    JvmtiExport::post_native_method_bind(this, &function);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  *native_function = function;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  // This function can be called more than once. We must make sure that we always
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  // use the latest registered method -> check if a stub already has been generated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  // If so, we have to make it not_entrant.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  nmethod* nm = code(); // Put it into local variable to guard against concurrent updates
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  if (nm != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
    nm->make_not_entrant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
bool methodOopDesc::has_native_function() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  address func = native_function();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  return (func != NULL && func != SharedRuntime::native_method_throw_unsatisfied_link_error_entry());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
void methodOopDesc::clear_native_function() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  set_native_function(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
    SharedRuntime::native_method_throw_unsatisfied_link_error_entry(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
    !native_bind_event_is_interesting);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  clear_code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
void methodOopDesc::set_signature_handler(address handler) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  address* signature_handler =  signature_handler_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  *signature_handler = handler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
bool methodOopDesc::is_not_compilable(int comp_level) const {
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   593
  if (is_method_handle_invoke()) {
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   594
    // compilers must recognize this method specially, or not at all
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   595
    return true;
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   596
  }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   597
  if (number_of_breakpoints() > 0) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   598
    return true;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   599
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   600
  if (comp_level == CompLevel_any) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   601
    return is_not_c1_compilable() || is_not_c2_compilable();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   603
  if (is_c1_compile(comp_level)) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   604
    return is_not_c1_compilable();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   605
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   606
  if (is_c2_compile(comp_level)) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   607
    return is_not_c2_compilable();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   608
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   609
  return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
// call this when compiler finds that this method is not compilable
4756
da88c27a9241 6923043: failed nightly tests which use -XX:+PrintCompilation -Xcomp -XX:CompileOnly
kvn
parents: 4754
diff changeset
   613
void methodOopDesc::set_not_compilable(int comp_level, bool report) {
da88c27a9241 6923043: failed nightly tests which use -XX:+PrintCompilation -Xcomp -XX:CompileOnly
kvn
parents: 4754
diff changeset
   614
  if (PrintCompilation && report) {
4754
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4750
diff changeset
   615
    ttyLocker ttyl;
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4750
diff changeset
   616
    tty->print("made not compilable ");
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4750
diff changeset
   617
    this->print_short_name(tty);
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4750
diff changeset
   618
    int size = this->code_size();
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4750
diff changeset
   619
    if (size > 0)
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4750
diff changeset
   620
      tty->print(" (%d bytes)", size);
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4750
diff changeset
   621
    tty->cr();
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4750
diff changeset
   622
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  if ((TraceDeoptimization || LogCompilation) && (xtty != NULL)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
    ttyLocker ttyl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
    xtty->begin_elem("make_not_compilable thread='%d'", (int) os::current_thread_id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
    xtty->method(methodOop(this));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
    xtty->stamp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
    xtty->end_elem();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   630
  if (comp_level == CompLevel_all) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   631
    set_not_c1_compilable();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   632
    set_not_c2_compilable();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   633
  } else {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   634
    if (is_c1_compile(comp_level)) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   635
      set_not_c1_compilable();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   636
    } else
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   637
      if (is_c2_compile(comp_level)) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   638
        set_not_c2_compilable();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   639
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   641
  CompilationPolicy::policy()->disable_compilation(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
// Revert to using the interpreter and clear out the nmethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
void methodOopDesc::clear_code() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  // this may be NULL if c2i adapters have not been made yet
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  // Only should happen at allocate time.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  if (_adapter == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
    _from_compiled_entry    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
    _from_compiled_entry    = _adapter->get_c2i_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  OrderAccess::storestore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  _from_interpreted_entry = _i2i_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  OrderAccess::storestore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  _code = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
// Called by class data sharing to remove any entry points (which are not shared)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
void methodOopDesc::unlink_method() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  _code = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  _i2i_entry = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  _from_interpreted_entry = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  if (is_native()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
    *native_function_addr() = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
    set_signature_handler(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  NOT_PRODUCT(set_compiled_invocation_count(0);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  invocation_counter()->reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  backedge_counter()->reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  _adapter = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  _from_compiled_entry = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  assert(_method_data == NULL, "unexpected method data?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  set_method_data(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  set_interpreter_throwout_count(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  set_interpreter_invocation_count(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
// Called when the method_holder is getting linked. Setup entrypoints so the method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
// is ready to be called from interpreter, compiler, and vtables.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
void methodOopDesc::link_method(methodHandle h_method, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  assert(_i2i_entry == NULL, "should only be called once");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  assert(_adapter == NULL, "init'd to NULL" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  assert( _code == NULL, "nothing compiled yet" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  // Setup interpreter entrypoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  assert(this == h_method(), "wrong h_method()" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  address entry = Interpreter::entry_for_method(h_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  assert(entry != NULL, "interpreter entry must be non-null");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  // Sets both _i2i_entry and _from_interpreted_entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  set_interpreter_entry(entry);
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   693
  if (is_native() && !is_method_handle_invoke()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
    set_native_function(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
      SharedRuntime::native_method_throw_unsatisfied_link_error_entry(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
      !native_bind_event_is_interesting);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  // Setup compiler entrypoint.  This is made eagerly, so we do not need
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  // special handling of vtables.  An alternative is to make adapters more
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  // lazily by calling make_adapter() from from_compiled_entry() for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  // normal calls.  For vtable calls life gets more complicated.  When a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  // call-site goes mega-morphic we need adapters in all methods which can be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  // called from the vtable.  We need adapters on such methods that get loaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
  // later.  Ditto for mega-morphic itable calls.  If this proves to be a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  // problem we'll make these lazily later.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  (void) make_adapters(h_method, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  // ONLY USE the h_method now as make_adapter may have blocked
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
address methodOopDesc::make_adapters(methodHandle mh, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  // Adapters for compiled code are made eagerly here.  They are fairly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
  // small (generally < 100 bytes) and quick to make (and cached and shared)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  // so making them eagerly shouldn't be too expensive.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  AdapterHandlerEntry* adapter = AdapterHandlerLibrary::get_adapter(mh);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  if (adapter == NULL ) {
4735
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4581
diff changeset
   719
    THROW_MSG_NULL(vmSymbols::java_lang_VirtualMachineError(), "out of space in CodeCache for adapters");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
  mh->set_adapter_entry(adapter);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
  mh->_from_compiled_entry = adapter->get_c2i_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
  return adapter->get_c2i_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
// The verified_code_entry() must be called when a invoke is resolved
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
// on this method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
// It returns the compiled code entry point, after asserting not null.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
// This function is called after potential safepoints so that nmethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
// or adapter that it points to is still live and valid.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
// This function must not hit a safepoint!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
address methodOopDesc::verified_code_entry() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  debug_only(No_Safepoint_Verifier nsv;)
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 4735
diff changeset
   736
  nmethod *code = (nmethod *)OrderAccess::load_ptr_acquire(&_code);
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 4735
diff changeset
   737
  if (code == NULL && UseCodeCacheFlushing) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 4735
diff changeset
   738
    nmethod *saved_code = CodeCache::find_and_remove_saved_code(this);
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 4735
diff changeset
   739
    if (saved_code != NULL) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 4735
diff changeset
   740
      methodHandle method(this);
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 4735
diff changeset
   741
      assert( ! saved_code->is_osr_method(), "should not get here for osr" );
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 4735
diff changeset
   742
      set_code( method, saved_code );
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 4735
diff changeset
   743
    }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 4735
diff changeset
   744
  }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 4735
diff changeset
   745
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
  assert(_from_compiled_entry != NULL, "must be set");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
  return _from_compiled_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
// Check that if an nmethod ref exists, it has a backlink to this or no backlink at all
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
// (could be racing a deopt).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
// Not inline to avoid circular ref.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
bool methodOopDesc::check_code() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  // cached in a register or local.  There's a race on the value of the field.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
  nmethod *code = (nmethod *)OrderAccess::load_ptr_acquire(&_code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  return code == NULL || (code->method() == NULL) || (code->method() == (methodOop)this && !code->is_osr_method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
// Install compiled code.  Instantly it can execute.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
void methodOopDesc::set_code(methodHandle mh, nmethod *code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
  assert( code, "use clear_code to remove code" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  assert( mh->check_code(), "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  guarantee(mh->adapter() != NULL, "Adapter blob must already exist!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  // These writes must happen in this order, because the interpreter will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  // directly jump to from_interpreted_entry which jumps to an i2c adapter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
  // which jumps to _from_compiled_entry.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  mh->_code = code;             // Assign before allowing compiled code to exec
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  int comp_level = code->comp_level();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  // In theory there could be a race here. In practice it is unlikely
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  // and not worth worrying about.
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   774
  if (comp_level > mh->highest_comp_level()) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   775
    mh->set_highest_comp_level(comp_level);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  OrderAccess::storestore();
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   779
#ifdef SHARK
6771
3f9a5f169070 6990549: Zero and Shark fixes after 6978355 and 6953144
twisti
parents: 6463
diff changeset
   780
  mh->_from_interpreted_entry = code->insts_begin();
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   781
#else
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  mh->_from_compiled_entry = code->verified_entry_point();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
  OrderAccess::storestore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
  // Instantly compiled code can execute.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  mh->_from_interpreted_entry = mh->get_i2c_entry();
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   786
#endif // SHARK
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
bool methodOopDesc::is_overridden_in(klassOop k) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  instanceKlass* ik = instanceKlass::cast(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
  if (ik->is_interface()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  // If method is an interface, we skip it - except if it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
  // is a miranda method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  if (instanceKlass::cast(method_holder())->is_interface()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
    // Check that method is not a miranda method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
    if (ik->lookup_method(name(), signature()) == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
      // No implementation exist - so miranda method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
  assert(ik->is_subclass_of(method_holder()), "should be subklass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
  assert(ik->vtable() != NULL, "vtable should exist");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
  if (vtable_index() == nonvirtual_vtable_index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
    methodOop vt_m = ik->method_at_vtable(vtable_index());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
    return vt_m != methodOop(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
221
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   818
// give advice about whether this methodOop should be cached or not
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   819
bool methodOopDesc::should_not_be_cached() const {
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   820
  if (is_old()) {
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   821
    // This method has been redefined. It is either EMCP or obsolete
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   822
    // and we don't want to cache it because that would pin the method
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   823
    // down and prevent it from being collectible if and when it
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   824
    // finishes executing.
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   825
    return true;
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   826
  }
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   827
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   828
  if (mark()->should_not_be_cached()) {
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   829
    // It is either not safe or not a good idea to cache this
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   830
    // method at this time because of the state of the embedded
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   831
    // markOop. See markOop.cpp for the gory details.
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   832
    return true;
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   833
  }
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   834
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   835
  // caching this method should be just fine
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   836
  return false;
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   837
}
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   838
5420
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
   839
bool methodOopDesc::is_method_handle_invoke_name(vmSymbols::SID name_sid) {
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
   840
  switch (name_sid) {
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
   841
  case vmSymbols::VM_SYMBOL_ENUM_NAME(invokeExact_name):
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
   842
  case vmSymbols::VM_SYMBOL_ENUM_NAME(invokeGeneric_name):
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
   843
    return true;
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
   844
  }
6463
f4362c8da849 6939224: MethodHandle.invokeGeneric needs to perform the correct set of conversions
jrose
parents: 6453
diff changeset
   845
  if (AllowTransitionalJSR292
f4362c8da849 6939224: MethodHandle.invokeGeneric needs to perform the correct set of conversions
jrose
parents: 6453
diff changeset
   846
      && name_sid == vmSymbols::VM_SYMBOL_ENUM_NAME(invoke_name))
f4362c8da849 6939224: MethodHandle.invokeGeneric needs to perform the correct set of conversions
jrose
parents: 6453
diff changeset
   847
    return true;
5420
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
   848
  return false;
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
   849
}
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
   850
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   851
// Constant pool structure for invoke methods:
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   852
enum {
5420
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
   853
  _imcp_invoke_name = 1,        // utf8: 'invokeExact' or 'invokeGeneric'
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   854
  _imcp_invoke_signature,       // utf8: (variable Symbol*)
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   855
  _imcp_method_type_value,      // string: (variable java/dyn/MethodType, sic)
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   856
  _imcp_limit
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   857
};
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   858
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   859
oop methodOopDesc::method_handle_type() const {
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   860
  if (!is_method_handle_invoke()) { assert(false, "caller resp."); return NULL; }
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   861
  oop mt = constants()->resolved_string_at(_imcp_method_type_value);
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   862
  assert(mt->klass() == SystemDictionary::MethodType_klass(), "");
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   863
  return mt;
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   864
}
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   865
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   866
jint* methodOopDesc::method_type_offsets_chain() {
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   867
  static jint pchase[] = { -1, -1, -1 };
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   868
  if (pchase[0] == -1) {
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   869
    jint step0 = in_bytes(constants_offset());
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   870
    jint step1 = (constantPoolOopDesc::header_size() + _imcp_method_type_value) * HeapWordSize;
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   871
    // do this in reverse to avoid races:
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   872
    OrderAccess::release_store(&pchase[1], step1);
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   873
    OrderAccess::release_store(&pchase[0], step0);
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   874
  }
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   875
  return pchase;
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   876
}
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   877
4581
e89fbd1bcb3d 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 4571
diff changeset
   878
//------------------------------------------------------------------------------
e89fbd1bcb3d 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 4571
diff changeset
   879
// methodOopDesc::is_method_handle_adapter
e89fbd1bcb3d 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 4571
diff changeset
   880
//
e89fbd1bcb3d 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 4571
diff changeset
   881
// Tests if this method is an internal adapter frame from the
e89fbd1bcb3d 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 4571
diff changeset
   882
// MethodHandleCompiler.
5420
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
   883
// Must be consistent with MethodHandleCompiler::get_method_oop().
4581
e89fbd1bcb3d 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 4571
diff changeset
   884
bool methodOopDesc::is_method_handle_adapter() const {
6064
71e316283a85 6969574: invokedynamic call sites deoptimize instead of executing
jrose
parents: 5547
diff changeset
   885
  if (is_synthetic() &&
71e316283a85 6969574: invokedynamic call sites deoptimize instead of executing
jrose
parents: 5547
diff changeset
   886
      !is_native() &&   // has code from MethodHandleCompiler
71e316283a85 6969574: invokedynamic call sites deoptimize instead of executing
jrose
parents: 5547
diff changeset
   887
      is_method_handle_invoke_name(name()) &&
71e316283a85 6969574: invokedynamic call sites deoptimize instead of executing
jrose
parents: 5547
diff changeset
   888
      MethodHandleCompiler::klass_is_method_handle_adapter_holder(method_holder())) {
71e316283a85 6969574: invokedynamic call sites deoptimize instead of executing
jrose
parents: 5547
diff changeset
   889
    assert(!is_method_handle_invoke(), "disjoint");
71e316283a85 6969574: invokedynamic call sites deoptimize instead of executing
jrose
parents: 5547
diff changeset
   890
    return true;
71e316283a85 6969574: invokedynamic call sites deoptimize instead of executing
jrose
parents: 5547
diff changeset
   891
  } else {
71e316283a85 6969574: invokedynamic call sites deoptimize instead of executing
jrose
parents: 5547
diff changeset
   892
    return false;
71e316283a85 6969574: invokedynamic call sites deoptimize instead of executing
jrose
parents: 5547
diff changeset
   893
  }
4581
e89fbd1bcb3d 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 4571
diff changeset
   894
}
e89fbd1bcb3d 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 4571
diff changeset
   895
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   896
methodHandle methodOopDesc::make_invoke_method(KlassHandle holder,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   897
                                               Symbol* name,
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   898
                                               Symbol* signature,
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   899
                                               Handle method_type, TRAPS) {
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   900
  methodHandle empty;
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   901
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   902
  assert(holder() == SystemDictionary::MethodHandle_klass(),
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   903
         "must be a JSR 292 magic type");
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   904
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   905
  if (TraceMethodHandles) {
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   906
    tty->print("Creating invoke method for ");
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   907
    signature->print_value();
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   908
    tty->cr();
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   909
  }
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   910
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   911
  constantPoolHandle cp;
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   912
  {
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   913
    constantPoolOop cp_oop = oopFactory::new_constantPool(_imcp_limit, IsSafeConc, CHECK_(empty));
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   914
    cp = constantPoolHandle(THREAD, cp_oop);
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   915
  }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   916
  cp->symbol_at_put(_imcp_invoke_name,       name);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   917
  cp->symbol_at_put(_imcp_invoke_signature,  signature);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   918
  cp->string_at_put(_imcp_method_type_value, Universe::the_null_string());
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   919
  cp->set_pool_holder(holder());
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   920
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   921
  // set up the fancy stuff:
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   922
  cp->pseudo_string_at_put(_imcp_method_type_value, method_type());
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   923
  methodHandle m;
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   924
  {
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   925
    int flags_bits = (JVM_MH_INVOKE_BITS | JVM_ACC_PUBLIC | JVM_ACC_FINAL);
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   926
    methodOop m_oop = oopFactory::new_method(0, accessFlags_from(flags_bits),
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   927
                                             0, 0, 0, IsSafeConc, CHECK_(empty));
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   928
    m = methodHandle(THREAD, m_oop);
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   929
  }
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   930
  m->set_constants(cp());
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   931
  m->set_name_index(_imcp_invoke_name);
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   932
  m->set_signature_index(_imcp_invoke_signature);
5420
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
   933
  assert(is_method_handle_invoke_name(m->name()), "");
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   934
  assert(m->signature() == signature, "");
6463
f4362c8da849 6939224: MethodHandle.invokeGeneric needs to perform the correct set of conversions
jrose
parents: 6453
diff changeset
   935
  assert(m->is_method_handle_invoke(), "");
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   936
#ifdef CC_INTERP
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   937
  ResultTypeFinder rtf(signature());
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   938
  m->set_result_index(rtf.type());
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   939
#endif
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   940
  m->compute_size_of_parameters(THREAD);
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   941
  m->set_exception_table(Universe::the_empty_int_array());
6463
f4362c8da849 6939224: MethodHandle.invokeGeneric needs to perform the correct set of conversions
jrose
parents: 6453
diff changeset
   942
  m->init_intrinsic_id();
f4362c8da849 6939224: MethodHandle.invokeGeneric needs to perform the correct set of conversions
jrose
parents: 6453
diff changeset
   943
  assert(m->intrinsic_id() == vmIntrinsics::_invokeExact ||
f4362c8da849 6939224: MethodHandle.invokeGeneric needs to perform the correct set of conversions
jrose
parents: 6453
diff changeset
   944
         m->intrinsic_id() == vmIntrinsics::_invokeGeneric, "must be an invoker");
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   945
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   946
  // Finally, set up its entry points.
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   947
  assert(m->method_handle_type() == method_type(), "");
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   948
  assert(m->can_be_statically_bound(), "");
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   949
  m->set_vtable_index(methodOopDesc::nonvirtual_vtable_index);
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   950
  m->link_method(m, CHECK_(empty));
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   951
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   952
#ifdef ASSERT
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   953
  // Make sure the pointer chase works.
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   954
  address p = (address) m();
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   955
  for (jint* pchase = method_type_offsets_chain(); (*pchase) != -1; pchase++) {
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   956
    p = *(address*)(p + (*pchase));
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   957
  }
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   958
  assert((oop)p == method_type(), "pointer chase is correct");
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   959
#endif
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   960
4094
1f424b2b2171 6815692: method handle code needs some cleanup (post-6655638)
jrose
parents: 3273
diff changeset
   961
  if (TraceMethodHandles && (Verbose || WizardMode))
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   962
    m->print_on(tty);
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   963
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   964
  return m;
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   965
}
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   966
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2105
diff changeset
   967
221
ec745a0fe922 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 1
diff changeset
   968
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
methodHandle methodOopDesc:: clone_with_new_data(methodHandle m, u_char* new_code, int new_code_length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
                                                u_char* new_compressed_linenumber_table, int new_compressed_linenumber_size, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
  // Code below does not work for native methods - they should never get rewritten anyway
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
  assert(!m->is_native(), "cannot rewrite native methods");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
  // Allocate new methodOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
  AccessFlags flags = m->access_flags();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
  int checked_exceptions_len = m->checked_exceptions_length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
  int localvariable_len = m->localvariable_table_length();
1894
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
   977
  // Allocate newm_oop with the is_conc_safe parameter set
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
   978
  // to IsUnsafeConc to indicate that newm_oop is not yet
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
   979
  // safe for concurrent processing by a GC.
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
   980
  methodOop newm_oop = oopFactory::new_method(new_code_length,
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
   981
                                              flags,
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
   982
                                              new_compressed_linenumber_size,
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
   983
                                              localvariable_len,
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
   984
                                              checked_exceptions_len,
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
   985
                                              IsUnsafeConc,
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
   986
                                              CHECK_(methodHandle()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
  methodHandle newm (THREAD, newm_oop);
8296
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 8076
diff changeset
   988
  NOT_PRODUCT(int nmsz = newm->is_parsable() ? newm->size() : -1;)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
  int new_method_size = newm->method_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
  // Create a shallow copy of methodOopDesc part, but be careful to preserve the new constMethodOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
  constMethodOop newcm = newm->constMethod();
8296
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 8076
diff changeset
   992
  NOT_PRODUCT(int ncmsz = newcm->is_parsable() ? newcm->size() : -1;)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
  int new_const_method_size = newm->constMethod()->object_size();
1894
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
   994
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
  memcpy(newm(), m(), sizeof(methodOopDesc));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
  // Create shallow copy of constMethodOopDesc, but be careful to preserve the methodOop
1894
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
   997
  // is_conc_safe is set to false because that is the value of
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
   998
  // is_conc_safe initialzied into newcm and the copy should
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
   999
  // not overwrite that value.  During the window during which it is
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
  1000
  // tagged as unsafe, some extra work could be needed during precleaning
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
  1001
  // or concurrent marking but those phases will be correct.  Setting and
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
  1002
  // resetting is done in preference to a careful copying into newcm to
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
  1003
  // avoid having to know the precise layout of a constMethodOop.
8296
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 8076
diff changeset
  1004
  m->constMethod()->set_is_conc_safe(oopDesc::IsUnsafeConc);
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 8076
diff changeset
  1005
  assert(m->constMethod()->is_parsable(), "Should remain parsable");
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 8076
diff changeset
  1006
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 8076
diff changeset
  1007
  // NOTE: this is a reachable object that transiently signals "conc_unsafe"
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 8076
diff changeset
  1008
  // However, no allocations are done during this window
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 8076
diff changeset
  1009
  // during which it is tagged conc_unsafe, so we are assured that any concurrent
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 8076
diff changeset
  1010
  // thread will not wait forever for the object to revert to "conc_safe".
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 8076
diff changeset
  1011
  // Further, any such conc_unsafe object will indicate a stable size
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 8076
diff changeset
  1012
  // through the transition.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
  memcpy(newcm, m->constMethod(), sizeof(constMethodOopDesc));
8296
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 8076
diff changeset
  1014
  m->constMethod()->set_is_conc_safe(oopDesc::IsSafeConc);
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 8076
diff changeset
  1015
  assert(m->constMethod()->is_parsable(), "Should remain parsable");
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 8076
diff changeset
  1016
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
  // Reset correct method/const method, method size, and parameter info
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
  newcm->set_method(newm());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
  newm->set_constMethod(newcm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
  assert(newcm->method() == newm(), "check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
  newm->constMethod()->set_code_size(new_code_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
  newm->constMethod()->set_constMethod_size(new_const_method_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
  newm->set_method_size(new_method_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
  assert(newm->code_size() == new_code_length, "check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
  assert(newm->checked_exceptions_length() == checked_exceptions_len, "check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
  assert(newm->localvariable_table_length() == localvariable_len, "check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
  // Copy new byte codes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
  memcpy(newm->code_base(), new_code, new_code_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
  // Copy line number table
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
  if (new_compressed_linenumber_size > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
    memcpy(newm->compressed_linenumber_table(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
           new_compressed_linenumber_table,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
           new_compressed_linenumber_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
  // Copy checked_exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
  if (checked_exceptions_len > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
    memcpy(newm->checked_exceptions_start(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
           m->checked_exceptions_start(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
           checked_exceptions_len * sizeof(CheckedExceptionElement));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
  // Copy local variable number table
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
  if (localvariable_len > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
    memcpy(newm->localvariable_table_start(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
           m->localvariable_table_start(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
           localvariable_len * sizeof(LocalVariableTableElement));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
  }
1894
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
  1047
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
  1048
  // Only set is_conc_safe to true when changes to newcm are
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
  1049
  // complete.
8296
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 8076
diff changeset
  1050
  assert(!newm->is_parsable()  || nmsz  < 0 || newm->size()  == nmsz,  "newm->size()  inconsistency");
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 8076
diff changeset
  1051
  assert(!newcm->is_parsable() || ncmsz < 0 || newcm->size() == ncmsz, "newcm->size() inconsistency");
1894
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 670
diff changeset
  1052
  newcm->set_is_conc_safe(true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
  return newm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
3273
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1056
vmSymbols::SID methodOopDesc::klass_id_for_intrinsics(klassOop holder) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
  // if loader is not the default loader (i.e., != NULL), we can't know the intrinsics
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
  // because we are not loading from core libraries
3273
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1059
  if (instanceKlass::cast(holder)->class_loader() != NULL)
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1060
    return vmSymbols::NO_SID;   // regardless of name, no intrinsics here
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
  // see if the klass name is well-known:
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
  1063
  Symbol* klass_name = instanceKlass::cast(holder)->name();
3273
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1064
  return vmSymbols::find_sid(klass_name);
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1065
}
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1066
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1067
void methodOopDesc::init_intrinsic_id() {
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1068
  assert(_intrinsic_id == vmIntrinsics::_none, "do this just once");
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1069
  const uintptr_t max_id_uint = right_n_bits((int)(sizeof(_intrinsic_id) * BitsPerByte));
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1070
  assert((uintptr_t)vmIntrinsics::ID_LIMIT <= max_id_uint, "else fix size");
6463
f4362c8da849 6939224: MethodHandle.invokeGeneric needs to perform the correct set of conversions
jrose
parents: 6453
diff changeset
  1071
  assert(intrinsic_id_size_in_bytes() == sizeof(_intrinsic_id), "");
3273
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1072
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1073
  // the klass name is well-known:
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1074
  vmSymbols::SID klass_id = klass_id_for_intrinsics(method_holder());
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1075
  assert(klass_id != vmSymbols::NO_SID, "caller responsibility");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
  // ditto for method and signature:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
  vmSymbols::SID  name_id = vmSymbols::find_sid(name());
6463
f4362c8da849 6939224: MethodHandle.invokeGeneric needs to perform the correct set of conversions
jrose
parents: 6453
diff changeset
  1079
  if (name_id == vmSymbols::NO_SID)  return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
  vmSymbols::SID   sig_id = vmSymbols::find_sid(signature());
6463
f4362c8da849 6939224: MethodHandle.invokeGeneric needs to perform the correct set of conversions
jrose
parents: 6453
diff changeset
  1081
  if (klass_id != vmSymbols::VM_SYMBOL_ENUM_NAME(java_dyn_MethodHandle)
f4362c8da849 6939224: MethodHandle.invokeGeneric needs to perform the correct set of conversions
jrose
parents: 6453
diff changeset
  1082
      && sig_id == vmSymbols::NO_SID)  return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
  jshort flags = access_flags().as_short();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
3273
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1085
  vmIntrinsics::ID id = vmIntrinsics::find_id(klass_id, name_id, sig_id, flags);
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1086
  if (id != vmIntrinsics::_none) {
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1087
    set_intrinsic_id(id);
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1088
    return;
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1089
  }
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1090
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
  // A few slightly irregular cases:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
  switch (klass_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
  case vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_StrictMath):
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
    // Second chance: check in regular Math.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
    switch (name_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
    case vmSymbols::VM_SYMBOL_ENUM_NAME(min_name):
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
    case vmSymbols::VM_SYMBOL_ENUM_NAME(max_name):
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
    case vmSymbols::VM_SYMBOL_ENUM_NAME(sqrt_name):
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
      // pretend it is the corresponding method in the non-strict class:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
      klass_id = vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_Math);
3273
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1101
      id = vmIntrinsics::find_id(klass_id, name_id, sig_id, flags);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
    }
5420
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
  1104
    break;
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
  1105
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
  1106
  // Signature-polymorphic methods: MethodHandle.invoke*, InvokeDynamic.*.
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
  1107
  case vmSymbols::VM_SYMBOL_ENUM_NAME(java_dyn_MethodHandle):
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
  1108
    if (is_static() || !is_native())  break;
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
  1109
    switch (name_id) {
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
  1110
    case vmSymbols::VM_SYMBOL_ENUM_NAME(invokeGeneric_name):
6463
f4362c8da849 6939224: MethodHandle.invokeGeneric needs to perform the correct set of conversions
jrose
parents: 6453
diff changeset
  1111
      id = vmIntrinsics::_invokeGeneric;
f4362c8da849 6939224: MethodHandle.invokeGeneric needs to perform the correct set of conversions
jrose
parents: 6453
diff changeset
  1112
      break;
f4362c8da849 6939224: MethodHandle.invokeGeneric needs to perform the correct set of conversions
jrose
parents: 6453
diff changeset
  1113
    case vmSymbols::VM_SYMBOL_ENUM_NAME(invokeExact_name):
f4362c8da849 6939224: MethodHandle.invokeGeneric needs to perform the correct set of conversions
jrose
parents: 6453
diff changeset
  1114
      id = vmIntrinsics::_invokeExact;
f4362c8da849 6939224: MethodHandle.invokeGeneric needs to perform the correct set of conversions
jrose
parents: 6453
diff changeset
  1115
      break;
f4362c8da849 6939224: MethodHandle.invokeGeneric needs to perform the correct set of conversions
jrose
parents: 6453
diff changeset
  1116
    case vmSymbols::VM_SYMBOL_ENUM_NAME(invoke_name):
f4362c8da849 6939224: MethodHandle.invokeGeneric needs to perform the correct set of conversions
jrose
parents: 6453
diff changeset
  1117
      if (AllowTransitionalJSR292)  id = vmIntrinsics::_invokeExact;
5420
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
  1118
      break;
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
  1119
    }
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
  1120
    break;
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
  1121
  case vmSymbols::VM_SYMBOL_ENUM_NAME(java_dyn_InvokeDynamic):
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
  1122
    if (!is_static() || !is_native())  break;
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
  1123
    id = vmIntrinsics::_invokeDynamic;
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 5419
diff changeset
  1124
    break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
3273
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1127
  if (id != vmIntrinsics::_none) {
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1128
    // Set up its iid.  It is an alias method.
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1129
    set_intrinsic_id(id);
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1130
    return;
6acf7084b1d3 6862576: vmIntrinsics needs cleanup in order to support JSR 292 intrinsics
jrose
parents: 2570
diff changeset
  1131
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
// These two methods are static since a GC may move the methodOopDesc
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
bool methodOopDesc::load_signature_classes(methodHandle m, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
  bool sig_is_loaded = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
  Handle class_loader(THREAD, instanceKlass::cast(m->method_holder())->class_loader());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
  Handle protection_domain(THREAD, Klass::cast(m->method_holder())->protection_domain());
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
  1139
  ResourceMark rm(THREAD);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
  1140
  Symbol*  signature = m->signature();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
  for(SignatureStream ss(signature); !ss.is_done(); ss.next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
    if (ss.is_object()) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
  1143
      Symbol* sym = ss.as_symbol(CHECK_(false));
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
  1144
      Symbol*  name  = sym;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
      klassOop klass = SystemDictionary::resolve_or_null(name, class_loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
                                             protection_domain, THREAD);
351
74ef5746f624 6624474: Server compiler generates unexpected LinkageError
rasbold
parents: 221
diff changeset
  1147
      // We are loading classes eagerly. If a ClassNotFoundException or
74ef5746f624 6624474: Server compiler generates unexpected LinkageError
rasbold
parents: 221
diff changeset
  1148
      // a LinkageError was generated, be sure to ignore it.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
      if (HAS_PENDING_EXCEPTION) {
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4094
diff changeset
  1150
        if (PENDING_EXCEPTION->is_a(SystemDictionary::ClassNotFoundException_klass()) ||
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4094
diff changeset
  1151
            PENDING_EXCEPTION->is_a(SystemDictionary::LinkageError_klass())) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
          CLEAR_PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
          return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
      if( klass == NULL) { sig_is_loaded = false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
  return sig_is_loaded;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
bool methodOopDesc::has_unloaded_classes_in_signature(methodHandle m, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
  Handle class_loader(THREAD, instanceKlass::cast(m->method_holder())->class_loader());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
  Handle protection_domain(THREAD, Klass::cast(m->method_holder())->protection_domain());
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
  1166
  ResourceMark rm(THREAD);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
  1167
  Symbol*  signature = m->signature();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
  for(SignatureStream ss(signature); !ss.is_done(); ss.next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
    if (ss.type() == T_OBJECT) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
  1170
      Symbol* name = ss.as_symbol_or_null();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
  1171
      if (name == NULL) return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
      klassOop klass = SystemDictionary::find(name, class_loader, protection_domain, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
      if (klass == NULL) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
// Exposed so field engineers can debug VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
void methodOopDesc::print_short_name(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
#ifdef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
  st->print(" %s::", method_holder()->klass_part()->external_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
  st->print(" %s::", method_holder()->klass_part()->internal_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
  name()->print_symbol_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
  if (WizardMode) signature()->print_symbol_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
  static int method_compare(methodOop* a, methodOop* b) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
    return (*a)->name()->fast_compare((*b)->name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
  // Prevent qsort from reordering a previous valid sort by
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
  // considering the address of the methodOops if two methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
  // would otherwise compare as equal.  Required to preserve
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
  // optimal access order in the shared archive.  Slower than
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
  // method_compare, only used for shared archive creation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
  static int method_compare_idempotent(methodOop* a, methodOop* b) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
    int i = method_compare(a, b);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
    if (i != 0) return i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
    return ( a < b ? -1 : (a == b ? 0 : 1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
5411
11ca5b0fb0f2 6935118: UseCompressedOops modification in methodOopDesc::sort_methods() causes JCK timeout
coleenp
parents: 4756
diff changeset
  1208
  // We implement special compare versions for narrow oops to avoid
11ca5b0fb0f2 6935118: UseCompressedOops modification in methodOopDesc::sort_methods() causes JCK timeout
coleenp
parents: 4756
diff changeset
  1209
  // testing for UseCompressedOops on every comparison.
11ca5b0fb0f2 6935118: UseCompressedOops modification in methodOopDesc::sort_methods() causes JCK timeout
coleenp
parents: 4756
diff changeset
  1210
  static int method_compare_narrow(narrowOop* a, narrowOop* b) {
11ca5b0fb0f2 6935118: UseCompressedOops modification in methodOopDesc::sort_methods() causes JCK timeout
coleenp
parents: 4756
diff changeset
  1211
    methodOop m = (methodOop)oopDesc::load_decode_heap_oop(a);
11ca5b0fb0f2 6935118: UseCompressedOops modification in methodOopDesc::sort_methods() causes JCK timeout
coleenp
parents: 4756
diff changeset
  1212
    methodOop n = (methodOop)oopDesc::load_decode_heap_oop(b);
11ca5b0fb0f2 6935118: UseCompressedOops modification in methodOopDesc::sort_methods() causes JCK timeout
coleenp
parents: 4756
diff changeset
  1213
    return m->name()->fast_compare(n->name());
11ca5b0fb0f2 6935118: UseCompressedOops modification in methodOopDesc::sort_methods() causes JCK timeout
coleenp
parents: 4756
diff changeset
  1214
  }
11ca5b0fb0f2 6935118: UseCompressedOops modification in methodOopDesc::sort_methods() causes JCK timeout
coleenp
parents: 4756
diff changeset
  1215
11ca5b0fb0f2 6935118: UseCompressedOops modification in methodOopDesc::sort_methods() causes JCK timeout
coleenp
parents: 4756
diff changeset
  1216
  static int method_compare_narrow_idempotent(narrowOop* a, narrowOop* b) {
11ca5b0fb0f2 6935118: UseCompressedOops modification in methodOopDesc::sort_methods() causes JCK timeout
coleenp
parents: 4756
diff changeset
  1217
    int i = method_compare_narrow(a, b);
11ca5b0fb0f2 6935118: UseCompressedOops modification in methodOopDesc::sort_methods() causes JCK timeout
coleenp
parents: 4756
diff changeset
  1218
    if (i != 0) return i;
11ca5b0fb0f2 6935118: UseCompressedOops modification in methodOopDesc::sort_methods() causes JCK timeout
coleenp
parents: 4756
diff changeset
  1219
    return ( a < b ? -1 : (a == b ? 0 : 1));
11ca5b0fb0f2 6935118: UseCompressedOops modification in methodOopDesc::sort_methods() causes JCK timeout
coleenp
parents: 4756
diff changeset
  1220
  }
11ca5b0fb0f2 6935118: UseCompressedOops modification in methodOopDesc::sort_methods() causes JCK timeout
coleenp
parents: 4756
diff changeset
  1221
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
  typedef int (*compareFn)(const void*, const void*);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
// This is only done during class loading, so it is OK to assume method_idnum matches the methods() array
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
static void reorder_based_on_method_index(objArrayOop methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
                                          objArrayOop annotations,
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 351
diff changeset
  1229
                                          GrowableArray<oop>* temp_array) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
  if (annotations == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
  int length = methods->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
  int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
  // Copy to temp array
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 351
diff changeset
  1237
  temp_array->clear();
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 351
diff changeset
  1238
  for (i = 0; i < length; i++) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 351
diff changeset
  1239
    temp_array->append(annotations->obj_at(i));
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 351
diff changeset
  1240
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
  // Copy back using old method indices
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
  for (i = 0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
    methodOop m = (methodOop) methods->obj_at(i);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 351
diff changeset
  1245
    annotations->obj_at_put(i, temp_array->at(m->method_idnum()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
// This is only done during class loading, so it is OK to assume method_idnum matches the methods() array
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
void methodOopDesc::sort_methods(objArrayOop methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
                                 objArrayOop methods_annotations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
                                 objArrayOop methods_parameter_annotations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
                                 objArrayOop methods_default_annotations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
                                 bool idempotent) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
  int length = methods->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
  if (length > 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
    bool do_annotations = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
    if (methods_annotations != NULL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
        methods_parameter_annotations != NULL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
        methods_default_annotations != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
      do_annotations = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
    if (do_annotations) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
      // Remember current method ordering so we can reorder annotations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
      for (int i = 0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
        methodOop m = (methodOop) methods->obj_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
        m->set_method_idnum(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
    // Use a simple bubble sort for small number of methods since
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
    // qsort requires a functional pointer call for each comparison.
5411
11ca5b0fb0f2 6935118: UseCompressedOops modification in methodOopDesc::sort_methods() causes JCK timeout
coleenp
parents: 4756
diff changeset
  1274
    if (length < 8) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
      bool sorted = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
      for (int i=length-1; i>0; i--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
        for (int j=0; j<i; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
          methodOop m1 = (methodOop)methods->obj_at(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
          methodOop m2 = (methodOop)methods->obj_at(j+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
          if ((uintptr_t)m1->name() > (uintptr_t)m2->name()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
            methods->obj_at_put(j, m2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
            methods->obj_at_put(j+1, m1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
            sorted = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
        if (sorted) break;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 351
diff changeset
  1287
          sorted = true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
    } else {
5411
11ca5b0fb0f2 6935118: UseCompressedOops modification in methodOopDesc::sort_methods() causes JCK timeout
coleenp
parents: 4756
diff changeset
  1290
      compareFn compare =
11ca5b0fb0f2 6935118: UseCompressedOops modification in methodOopDesc::sort_methods() causes JCK timeout
coleenp
parents: 4756
diff changeset
  1291
        (UseCompressedOops ?
11ca5b0fb0f2 6935118: UseCompressedOops modification in methodOopDesc::sort_methods() causes JCK timeout
coleenp
parents: 4756
diff changeset
  1292
         (compareFn) (idempotent ? method_compare_narrow_idempotent : method_compare_narrow):
11ca5b0fb0f2 6935118: UseCompressedOops modification in methodOopDesc::sort_methods() causes JCK timeout
coleenp
parents: 4756
diff changeset
  1293
         (compareFn) (idempotent ? method_compare_idempotent : method_compare));
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 351
diff changeset
  1294
      qsort(methods->base(), length, heapOopSize, compare);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
    // Sort annotations if necessary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
    assert(methods_annotations == NULL           || methods_annotations->length() == methods->length(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
    assert(methods_parameter_annotations == NULL || methods_parameter_annotations->length() == methods->length(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
    assert(methods_default_annotations == NULL   || methods_default_annotations->length() == methods->length(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
    if (do_annotations) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 351
diff changeset
  1302
      ResourceMark rm;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
      // Allocate temporary storage
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 351
diff changeset
  1304
      GrowableArray<oop>* temp_array = new GrowableArray<oop>(length);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
      reorder_based_on_method_index(methods, methods_annotations, temp_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
      reorder_based_on_method_index(methods, methods_parameter_annotations, temp_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
      reorder_based_on_method_index(methods, methods_default_annotations, temp_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
    // Reset method ordering
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
    for (int i = 0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
      methodOop m = (methodOop) methods->obj_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
      m->set_method_idnum(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
//-----------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
// Non-product code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
class SignatureTypePrinter : public SignatureTypeNames {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
  outputStream* _st;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
  bool _use_separator;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
  void type_name(const char* name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
    if (_use_separator) _st->print(", ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
    _st->print(name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
    _use_separator = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
 public:
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
  1335
  SignatureTypePrinter(Symbol* signature, outputStream* st) : SignatureTypeNames(signature) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
    _st = st;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
    _use_separator = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
  void print_parameters()              { _use_separator = false; iterate_parameters(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
  void print_returntype()              { _use_separator = false; iterate_returntype(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
void methodOopDesc::print_name(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
  Thread *thread = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
  ResourceMark rm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
  SignatureTypePrinter sig(signature(), st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
  st->print("%s ", is_static() ? "static" : "virtual");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
  sig.print_returntype();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
  st->print(" %s.", method_holder()->klass_part()->internal_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
  name()->print_symbol_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
  st->print("(");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
  sig.print_parameters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
  st->print(")");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
void methodOopDesc::print_codes_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
  print_codes_on(0, code_size(), st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
void methodOopDesc::print_codes_on(int from, int to, outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
  Thread *thread = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
  ResourceMark rm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
  methodHandle mh (thread, (methodOop)this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
  BytecodeStream s(mh);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
  s.set_interval(from, to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
  BytecodeTracer::set_closure(BytecodeTracer::std_closure());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
  while (s.next() >= 0) BytecodeTracer::trace(mh, s.bcp(), st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
#endif // not PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
// Simple compression of line number tables. We use a regular compressed stream, except that we compress deltas
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
// between (bci,line) pairs since they are smaller. If (bci delta, line delta) fits in (5-bit unsigned, 3-bit unsigned)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
// we save it as one byte, otherwise we write a 0xFF escape character and use regular compression. 0x0 is used
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
// as end-of-stream terminator.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
void CompressedLineNumberWriteStream::write_pair_regular(int bci_delta, int line_delta) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
  // bci and line number does not compress into single byte.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
  // Write out escape character and use regular compression for bci and line number.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
  write_byte((jubyte)0xFF);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
  write_signed_int(bci_delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
  write_signed_int(line_delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
// See comment in methodOop.hpp which explains why this exists.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
#if defined(_M_AMD64) && MSC_VER >= 1400
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
#pragma optimize("", off)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
void CompressedLineNumberWriteStream::write_pair(int bci, int line) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
  write_pair_inline(bci, line);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
#pragma optimize("", on)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
CompressedLineNumberReadStream::CompressedLineNumberReadStream(u_char* buffer) : CompressedReadStream(buffer) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
  _bci = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
  _line = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
bool CompressedLineNumberReadStream::read_pair() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
  jubyte next = read_byte();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
  // Check for terminator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
  if (next == 0) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
  if (next == 0xFF) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
    // Escape character, regular compression used
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
    _bci  += read_signed_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
    _line += read_signed_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
    // Single byte compression used
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
    _bci  += next >> 3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
    _line += next & 0x7;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7446
diff changeset
  1420
Bytecodes::Code methodOopDesc::orig_bytecode_at(int bci) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
  BreakpointInfo* bp = instanceKlass::cast(method_holder())->breakpoints();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
  for (; bp != NULL; bp = bp->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
    if (bp->match(this, bci)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
      return bp->orig_bytecode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
  return Bytecodes::_shouldnotreachhere;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
void methodOopDesc::set_orig_bytecode_at(int bci, Bytecodes::Code code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
  assert(code != Bytecodes::_breakpoint, "cannot patch breakpoints this way");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
  BreakpointInfo* bp = instanceKlass::cast(method_holder())->breakpoints();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
  for (; bp != NULL; bp = bp->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
    if (bp->match(this, bci)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
      bp->set_orig_bytecode(code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1437
      // and continue, in case there is more than one
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1438
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
void methodOopDesc::set_breakpoint(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
  instanceKlass* ik = instanceKlass::cast(method_holder());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
  BreakpointInfo *bp = new BreakpointInfo(this, bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
  bp->set_next(ik->breakpoints());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
  ik->set_breakpoints(bp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
  // do this last:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
  bp->set(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
static void clear_matches(methodOop m, int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
  instanceKlass* ik = instanceKlass::cast(m->method_holder());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
  BreakpointInfo* prev_bp = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
  BreakpointInfo* next_bp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
  for (BreakpointInfo* bp = ik->breakpoints(); bp != NULL; bp = next_bp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
    next_bp = bp->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
    // bci value of -1 is used to delete all breakpoints in method m (ex: clear_all_breakpoint).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
    if (bci >= 0 ? bp->match(m, bci) : bp->match(m)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
      // do this first:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
      bp->clear(m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
      // unhook it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
      if (prev_bp != NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
        prev_bp->set_next(next_bp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
      else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
        ik->set_breakpoints(next_bp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
      delete bp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
      // When class is redefined JVMTI sets breakpoint in all versions of EMCP methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
      // at same location. So we have multiple matching (method_index and bci)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
      // BreakpointInfo nodes in BreakpointInfo list. We should just delete one
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
      // breakpoint for clear_breakpoint request and keep all other method versions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
      // BreakpointInfo for future clear_breakpoint request.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
      // bcivalue of -1 is used to clear all breakpoints (see clear_all_breakpoints)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
      // which is being called when class is unloaded. We delete all the Breakpoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
      // information for all versions of method. We may not correctly restore the original
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
      // bytecode in all method versions, but that is ok. Because the class is being unloaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
      // so these methods won't be used anymore.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
      if (bci >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
      // This one is a keeper.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
      prev_bp = bp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
void methodOopDesc::clear_breakpoint(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
  assert(bci >= 0, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
  clear_matches(this, bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
void methodOopDesc::clear_all_breakpoints() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
  clear_matches(this, -1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1497
int methodOopDesc::invocation_count() {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1498
  if (TieredCompilation) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1499
    const methodDataOop mdo = method_data();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1500
    if (invocation_counter()->carry() || ((mdo != NULL) ? mdo->invocation_counter()->carry() : false)) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1501
      return InvocationCounter::count_limit;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1502
    } else {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1503
      return invocation_counter()->count() + ((mdo != NULL) ? mdo->invocation_counter()->count() : 0);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1504
    }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1505
  } else {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1506
    return invocation_counter()->count();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1507
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1508
}
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1509
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1510
int methodOopDesc::backedge_count() {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1511
  if (TieredCompilation) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1512
    const methodDataOop mdo = method_data();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1513
    if (backedge_counter()->carry() || ((mdo != NULL) ? mdo->backedge_counter()->carry() : false)) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1514
      return InvocationCounter::count_limit;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1515
    } else {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1516
      return backedge_counter()->count() + ((mdo != NULL) ? mdo->backedge_counter()->count() : 0);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1517
    }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1518
  } else {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1519
    return backedge_counter()->count();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1520
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1521
}
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1522
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1523
int methodOopDesc::highest_comp_level() const {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1524
  methodDataOop mdo = method_data();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1525
  if (mdo != NULL) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1526
    return mdo->highest_comp_level();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1527
  } else {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1528
    return CompLevel_none;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1529
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1530
}
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1531
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1532
int methodOopDesc::highest_osr_comp_level() const {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1533
  methodDataOop mdo = method_data();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1534
  if (mdo != NULL) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1535
    return mdo->highest_osr_comp_level();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1536
  } else {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1537
    return CompLevel_none;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1538
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1539
}
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1540
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1541
void methodOopDesc::set_highest_comp_level(int level) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1542
  methodDataOop mdo = method_data();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1543
  if (mdo != NULL) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1544
    mdo->set_highest_comp_level(level);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1545
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1546
}
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1547
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1548
void methodOopDesc::set_highest_osr_comp_level(int level) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1549
  methodDataOop mdo = method_data();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1550
  if (mdo != NULL) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1551
    mdo->set_highest_osr_comp_level(level);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1552
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1553
}
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
  1554
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1555
BreakpointInfo::BreakpointInfo(methodOop m, int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1556
  _bci = bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1557
  _name_index = m->name_index();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1558
  _signature_index = m->signature_index();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1559
  _orig_bytecode = (Bytecodes::Code) *m->bcp_from(_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
  if (_orig_bytecode == Bytecodes::_breakpoint)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
    _orig_bytecode = m->orig_bytecode_at(_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1562
  _next = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1563
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1564
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1565
void BreakpointInfo::set(methodOop method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1566
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1567
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1568
    Bytecodes::Code code = (Bytecodes::Code) *method->bcp_from(_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1569
    if (code == Bytecodes::_breakpoint)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
      code = method->orig_bytecode_at(_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
    assert(orig_bytecode() == code, "original bytecode must be the same");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
  *method->bcp_from(_bci) = Bytecodes::_breakpoint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
  method->incr_number_of_breakpoints();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
  SystemDictionary::notice_modification();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
    // Deoptimize all dependents on this method
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
    Thread *thread = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1580
    HandleMark hm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1581
    methodHandle mh(thread, method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1582
    Universe::flush_dependents_on_method(mh);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1583
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1584
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1585
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1586
void BreakpointInfo::clear(methodOop method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1587
  *method->bcp_from(_bci) = orig_bytecode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1588
  assert(method->number_of_breakpoints() > 0, "must not go negative");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1589
  method->decr_number_of_breakpoints();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1590
}