hotspot/src/share/vm/ci/ciMethod.cpp
author vlivanov
Thu, 29 Jan 2015 10:25:59 -0800
changeset 28912 27fac2f8fdbe
parent 27644 f4aa22a934e4
child 29582 9a0bb63adf5a
permissions -rw-r--r--
8063137: Never-taken branches should be pruned when GWT LambdaForms are shared Reviewed-by: jrose, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
17000
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16617
diff changeset
     2
 * Copyright (c) 1999, 2013, 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: 4892
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4892
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: 4892
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: 6754
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    26
#include "ci/ciCallProfile.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    27
#include "ci/ciExceptionHandler.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    28
#include "ci/ciInstanceKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    29
#include "ci/ciMethod.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    30
#include "ci/ciMethodBlocks.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    31
#include "ci/ciMethodData.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    32
#include "ci/ciStreams.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    33
#include "ci/ciSymbol.hpp"
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
    34
#include "ci/ciReplay.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    35
#include "ci/ciUtilities.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    36
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    37
#include "compiler/abstractCompiler.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    38
#include "compiler/compilerOracle.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    39
#include "compiler/methodLiveness.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    40
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    41
#include "interpreter/linkResolver.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    42
#include "interpreter/oopMapCache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    43
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    44
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    45
#include "oops/generateOopMap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    46
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    47
#include "prims/nativeLookup.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    48
#include "runtime/deoptimization.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    49
#include "utilities/bitMap.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    50
#include "utilities/xmlstream.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    51
#ifdef COMPILER2
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    52
#include "ci/bcEscapeAnalyzer.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    53
#include "ci/ciTypeFlow.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
    54
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    55
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    56
#ifdef SHARK
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    57
#include "ci/ciTypeFlow.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
    58
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6754
diff changeset
    59
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// ciMethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
//
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
    63
// This class represents a Method* in the HotSpot virtual
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
// machine.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
// ciMethod::ciMethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
// Loaded method.
27644
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 27143
diff changeset
    71
ciMethod::ciMethod(methodHandle h_m, ciInstanceKlass* holder) :
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 27143
diff changeset
    72
  ciMetadata(h_m()),
28912
27fac2f8fdbe 8063137: Never-taken branches should be pruned when GWT LambdaForms are shared
vlivanov
parents: 27644
diff changeset
    73
  _holder(holder),
27fac2f8fdbe 8063137: Never-taken branches should be pruned when GWT LambdaForms are shared
vlivanov
parents: 27644
diff changeset
    74
  _has_injected_profile(false)
27644
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 27143
diff changeset
    75
{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  assert(h_m() != NULL, "no null method");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // These fields are always filled in in loaded methods.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  _flags = ciFlags(h_m()->access_flags());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // Easy to compute, so fill them in now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  _max_stack          = h_m()->max_stack();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  _max_locals         = h_m()->max_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  _code_size          = h_m()->code_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  _intrinsic_id       = h_m()->intrinsic_id();
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 10734
diff changeset
    86
  _handler_count      = h_m()->exception_table_length();
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23525
diff changeset
    87
  _size_of_parameters = h_m()->size_of_parameters();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  _uses_monitors      = h_m()->access_flags().has_monitor_bytecodes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  _balanced_monitors  = !_uses_monitors || h_m()->access_flags().is_monitor_matching();
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
    90
  _is_c1_compilable   = !h_m()->is_not_c1_compilable();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
    91
  _is_c2_compilable   = !h_m()->is_not_c2_compilable();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // Lazy fields, filled in on demand.  Require allocation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  _code               = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  _exception_handlers = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  _liveness           = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  _method_blocks = NULL;
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
    97
#if defined(COMPILER2) || defined(SHARK)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  _flow               = NULL;
5928
f6e69b46e9e3 6968368: SIGSEGV in the BCEscapeAnalyzer::copy_dependencies
kvn
parents: 5702
diff changeset
    99
  _bcea               = NULL;
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   100
#endif // COMPILER2 || SHARK
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 2534
diff changeset
   102
  ciEnv *env = CURRENT_ENV;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   103
  if (env->jvmti_can_hotswap_or_post_breakpoint() && can_be_compiled()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    // 6328518 check hotswap conditions under the right lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    MutexLocker locker(Compile_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    if (Dependencies::check_evol_method(h_m()) != NULL) {
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   107
      _is_c1_compilable = false;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   108
      _is_c2_compilable = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    CHECK_UNHANDLED_OOPS_ONLY(Thread::current()->clear_unhandled_oops());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 13728
diff changeset
   114
  if (h_m()->method_holder()->is_linked()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    _can_be_statically_bound = h_m()->can_be_statically_bound();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    // Have to use a conservative value in this case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    _can_be_statically_bound = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // Adjust the definition of this condition to be more useful:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // %%% take these conditions into account in vtable generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  if (!_can_be_statically_bound && h_m()->is_private())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    _can_be_statically_bound = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  if (_can_be_statically_bound && h_m()->is_abstract())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    _can_be_statically_bound = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // generating _signature may allow GC and therefore move m.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // These fields are always filled in.
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7432
diff changeset
   130
  _name = env->get_symbol(h_m()->name());
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7432
diff changeset
   131
  ciSymbol* sig_symbol = env->get_symbol(h_m()->signature());
10008
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 8676
diff changeset
   132
  constantPoolHandle cpool = h_m()->constants();
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 8676
diff changeset
   133
  _signature = new (env->arena()) ciSignature(_holder, cpool, sig_symbol);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  _method_data = NULL;
24442
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24018
diff changeset
   135
  _nmethod_age = h_m()->nmethod_age();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // Take a snapshot of these values, so they will be commensurate with the MDO.
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   137
  if (ProfileInterpreter || TieredCompilation) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    int invcnt = h_m()->interpreter_invocation_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    // if the value overflowed report it as max int
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    _interpreter_invocation_count = invcnt < 0 ? max_jint : invcnt ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    _interpreter_throwout_count   = h_m()->interpreter_throwout_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    _interpreter_invocation_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    _interpreter_throwout_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  if (_interpreter_invocation_count == 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    _interpreter_invocation_count = 1;
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   148
  _instructions_size = -1;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   149
#ifdef ASSERT
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   150
  if (ReplayCompiles) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   151
    ciReplay::initialize(this);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   152
  }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   153
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
// ciMethod::ciMethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
// Unloaded method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
ciMethod::ciMethod(ciInstanceKlass* holder,
10734
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10506
diff changeset
   162
                   ciSymbol*        name,
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10506
diff changeset
   163
                   ciSymbol*        signature,
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10506
diff changeset
   164
                   ciInstanceKlass* accessor) :
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   165
  ciMetadata((Metadata*)NULL),
10734
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10506
diff changeset
   166
  _name(                   name),
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10506
diff changeset
   167
  _holder(                 holder),
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10506
diff changeset
   168
  _intrinsic_id(           vmIntrinsics::_none),
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10506
diff changeset
   169
  _liveness(               NULL),
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10506
diff changeset
   170
  _can_be_statically_bound(false),
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10506
diff changeset
   171
  _method_blocks(          NULL),
28912
27fac2f8fdbe 8063137: Never-taken branches should be pruned when GWT LambdaForms are shared
vlivanov
parents: 27644
diff changeset
   172
  _method_data(            NULL),
27fac2f8fdbe 8063137: Never-taken branches should be pruned when GWT LambdaForms are shared
vlivanov
parents: 27644
diff changeset
   173
  _has_injected_profile(   false)
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   174
#if defined(COMPILER2) || defined(SHARK)
10734
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10506
diff changeset
   175
  ,
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10506
diff changeset
   176
  _flow(                   NULL),
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   177
  _bcea(                   NULL),
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   178
  _instructions_size(-1)
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   179
#endif // COMPILER2 || SHARK
10734
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10506
diff changeset
   180
{
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10506
diff changeset
   181
  // Usually holder and accessor are the same type but in some cases
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10506
diff changeset
   182
  // the holder has the wrong class loader (e.g. invokedynamic call
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10506
diff changeset
   183
  // sites) so we pass the accessor.
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10506
diff changeset
   184
  _signature = new (CURRENT_ENV->arena()) ciSignature(accessor, constantPoolHandle(), signature);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
// ciMethod::load_code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
// Load the bytecodes and exception handler table for this method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
void ciMethod::load_code() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  VM_ENTRY_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  assert(is_loaded(), "only loaded methods have code");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   196
  Method* me = get_Method();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  Arena* arena = CURRENT_THREAD_ENV->arena();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // Load the bytecodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  _code = (address)arena->Amalloc(code_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  memcpy(_code, me->code_base(), code_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // Revert any breakpoint bytecodes in ci's copy
200
88d83617f912 6498878: client compiler crashes on windows when dealing with breakpoint instructions
kvn
parents: 1
diff changeset
   204
  if (me->number_of_breakpoints() > 0) {
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 13728
diff changeset
   205
    BreakpointInfo* bp = me->method_holder()->breakpoints();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    for (; bp != NULL; bp = bp->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
      if (bp->match(me)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
        code_at_put(bp->bci(), bp->orig_bytecode());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  // And load the exception table.
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 10734
diff changeset
   214
  ExceptionTable exc_table(me);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  // Allocate one extra spot in our list of exceptions.  This
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // last entry will be used to represent the possibility that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  // an exception escapes the method.  See ciExceptionHandlerStream
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // for details.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  _exception_handlers =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    (ciExceptionHandler**)arena->Amalloc(sizeof(ciExceptionHandler*)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
                                         * (_handler_count + 1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  if (_handler_count > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    for (int i=0; i<_handler_count; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
      _exception_handlers[i] = new (arena) ciExceptionHandler(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
                                holder(),
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 10734
diff changeset
   227
            /* start    */      exc_table.start_pc(i),
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 10734
diff changeset
   228
            /* limit    */      exc_table.end_pc(i),
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 10734
diff changeset
   229
            /* goto pc  */      exc_table.handler_pc(i),
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 10734
diff changeset
   230
            /* cp index */      exc_table.catch_type_index(i));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  // Put an entry at the end of our list to represent the possibility
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  // of exceptional exit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  _exception_handlers[_handler_count] =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    new (arena) ciExceptionHandler(holder(), 0, code_size(), -1, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  if (CIPrintMethodCodes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    print_codes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
// ciMethod::has_linenumber_table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
// length unknown until decompression
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
bool    ciMethod::has_linenumber_table() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  check_is_loaded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   252
  return get_Method()->has_linenumber_table();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
// ciMethod::compressed_linenumber_table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
u_char* ciMethod::compressed_linenumber_table() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  check_is_loaded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   261
  return get_Method()->compressed_linenumber_table();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
// ciMethod::line_number_from_bci
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
int ciMethod::line_number_from_bci(int bci) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  check_is_loaded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   270
  return get_Method()->line_number_from_bci(bci);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
// ciMethod::vtable_index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
// Get the position of this method's entry in the vtable, if any.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
int ciMethod::vtable_index() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  check_is_loaded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  assert(holder()->is_linked(), "must be linked");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   282
  return get_Method()->vtable_index();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   286
#ifdef SHARK
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   287
// ------------------------------------------------------------------
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   288
// ciMethod::itable_index
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   289
//
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   290
// Get the position of this method's entry in the itable, if any.
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   291
int ciMethod::itable_index() {
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   292
  check_is_loaded();
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   293
  assert(holder()->is_linked(), "must be linked");
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   294
  VM_ENTRY_MARK;
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17383
diff changeset
   295
  Method* m = get_Method();
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17383
diff changeset
   296
  if (!m->has_itable_index())
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17383
diff changeset
   297
    return Method::nonvirtual_vtable_index;
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17383
diff changeset
   298
  return m->itable_index();
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   299
}
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   300
#endif // SHARK
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   301
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   302
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
// ciMethod::native_entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
// Get the address of this method's native code, if any.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
address ciMethod::native_entry() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  check_is_loaded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  assert(flags().is_native(), "must be native method");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   311
  Method* method = get_Method();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  address entry = method->native_function();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  assert(entry != NULL, "must be valid entry point");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
// ciMethod::interpreter_entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
// Get the entry point for running this method in the interpreter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
address ciMethod::interpreter_entry() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  check_is_loaded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   325
  methodHandle mh(THREAD, get_Method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  return Interpreter::entry_for_method(mh);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
// ciMethod::uses_balanced_monitors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
// Does this method use monitors in a strict stack-disciplined manner?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
bool ciMethod::has_balanced_monitors() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  check_is_loaded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  if (_balanced_monitors) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  // Analyze the method to see if monitors are used properly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   340
  methodHandle method(THREAD, get_Method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  assert(method->has_monitor_bytecodes(), "should have checked this");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  // Check to see if a previous compilation computed the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  // monitor-matching analysis.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  if (method->guaranteed_monitor_matching()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
    _balanced_monitors = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
    EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
    ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
    GeneratePairingInfo gpi(method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
    gpi.compute_map(CATCH);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
    if (!gpi.monitor_safe()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
    method->set_guaranteed_monitor_matching();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
    _balanced_monitors = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
// ciMethod::get_flow_analysis
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
ciTypeFlow* ciMethod::get_flow_analysis() {
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   368
#if defined(COMPILER2) || defined(SHARK)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  if (_flow == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
    ciEnv* env = CURRENT_ENV;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
    _flow = new (env->arena()) ciTypeFlow(env, this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
    _flow->do_flow();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  return _flow;
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   375
#else // COMPILER2 || SHARK
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  return NULL;
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   378
#endif // COMPILER2 || SHARK
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
// ciMethod::get_osr_flow_analysis
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
ciTypeFlow* ciMethod::get_osr_flow_analysis(int osr_bci) {
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   385
#if defined(COMPILER2) || defined(SHARK)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  // OSR entry points are always place after a call bytecode of some sort
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  assert(osr_bci >= 0, "must supply valid OSR entry point");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  ciEnv* env = CURRENT_ENV;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  ciTypeFlow* flow = new (env->arena()) ciTypeFlow(env, this, osr_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  flow->do_flow();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  return flow;
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   392
#else // COMPILER2 || SHARK
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  return NULL;
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6064
diff changeset
   395
#endif // COMPILER2 || SHARK
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
// ------------------------------------------------------------------
3910
67050ceda719 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 2867
diff changeset
   399
// ciMethod::raw_liveness_at_bci
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
// Which local variables are live at a specific bci?
3910
67050ceda719 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 2867
diff changeset
   402
MethodLivenessResult ciMethod::raw_liveness_at_bci(int bci) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  check_is_loaded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  if (_liveness == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
    // Create the liveness analyzer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
    Arena* arena = CURRENT_ENV->arena();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
    _liveness = new (arena) MethodLiveness(arena, this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    _liveness->compute_liveness();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  }
3910
67050ceda719 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 2867
diff changeset
   410
  return _liveness->get_liveness_at(bci);
67050ceda719 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 2867
diff changeset
   411
}
67050ceda719 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 2867
diff changeset
   412
67050ceda719 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 2867
diff changeset
   413
// ------------------------------------------------------------------
67050ceda719 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 2867
diff changeset
   414
// ciMethod::liveness_at_bci
67050ceda719 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 2867
diff changeset
   415
//
67050ceda719 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 2867
diff changeset
   416
// Which local variables are live at a specific bci?  When debugging
67050ceda719 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 2867
diff changeset
   417
// will return true for all locals in some cases to improve debug
67050ceda719 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 2867
diff changeset
   418
// information.
67050ceda719 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 2867
diff changeset
   419
MethodLivenessResult ciMethod::liveness_at_bci(int bci) {
67050ceda719 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 2867
diff changeset
   420
  MethodLivenessResult result = raw_liveness_at_bci(bci);
22893
e3a2b513713a 8035493: JVMTI PopFrame capability must instruct compilers not to prune locals
mgronlun
parents: 22243
diff changeset
   421
  if (CURRENT_ENV->should_retain_local_variables() || DeoptimizeALot || CompileTheWorld) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    // Keep all locals live for the user's edification and amusement.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
    result.at_put_range(0, result.size(), true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
// ciMethod::live_local_oops_at_bci
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
// find all the live oops in the locals array for a particular bci
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
// Compute what the interpreter believes by using the interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
// oopmap generator. This is used as a double check during osr to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
// guard against conservative result from MethodLiveness making us
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
// think a dead oop is live.  MethodLiveness is conservative in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
// sense that it may consider locals to be live which cannot be live,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
// like in the case where a local could contain an oop or  a primitive
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
// along different paths.  In that case the local must be dead when
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
// those paths merge. Since the interpreter's viewpoint is used when
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
// gc'ing an interpreter frame we need to use its viewpoint  during
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
// OSR when loading the locals.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
BitMap ciMethod::live_local_oops_at_bci(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  VM_ENTRY_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  InterpreterOopMap mask;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   445
  OopMapCache::compute_one_oop_map(get_Method(), bci, &mask);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  int mask_size = max_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  BitMap result(mask_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  result.clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  for (i = 0; i < mask_size ; i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
    if (mask.is_oop(i)) result.set_bit(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  return result;
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
#ifdef COMPILER1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
// ciMethod::bci_block_start
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
// Marks all bcis where a new basic block starts
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
const BitMap ciMethod::bci_block_start() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  check_is_loaded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  if (_liveness == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    // Create the liveness analyzer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    Arena* arena = CURRENT_ENV->arena();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
    _liveness = new (arena) MethodLiveness(arena, this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
    _liveness->compute_liveness();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  return _liveness->get_bci_block_start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
#endif // COMPILER1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
// ciMethod::call_profile_at_bci
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
// Get the ciCallProfile for the invocation of this method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
// Also reports receiver types for non-call type checks (if TypeProfileCasts).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
ciCallProfile ciMethod::call_profile_at_bci(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  ciCallProfile result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  if (method_data() != NULL && method_data()->is_mature()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
    ciProfileData* data = method_data()->bci_to_data(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
    if (data != NULL && data->is_CounterData()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
      // Every profiled call site has a counter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
      int count = data->as_CounterData()->count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
      if (!data->is_ReceiverTypeData()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
        result._receiver_count[0] = 0;  // that's a definite zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
      } else { // ReceiverTypeData is a subclass of CounterData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
        ciReceiverTypeData* call = (ciReceiverTypeData*)data->as_ReceiverTypeData();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
        // In addition, virtual call sites have receiver type information
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
        int receivers_count_total = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
        int morphism = 0;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   497
        // Precompute morphism for the possible fixup
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
        for (uint i = 0; i < call->row_limit(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
          ciKlass* receiver = call->receiver(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
          if (receiver == NULL)  continue;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   501
          morphism++;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   502
        }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   503
        int epsilon = 0;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   504
        if (TieredCompilation && ProfileInterpreter) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   505
          // Interpreter and C1 treat final and special invokes differently.
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   506
          // C1 will record a type, whereas the interpreter will just
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   507
          // increment the count. Detect this case.
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   508
          if (morphism == 1 && count > 0) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   509
            epsilon = count;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   510
            count = 0;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   511
          }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   512
        }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   513
        for (uint i = 0; i < call->row_limit(); i++) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   514
          ciKlass* receiver = call->receiver(i);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   515
          if (receiver == NULL)  continue;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   516
          int rcount = call->receiver_count(i) + epsilon;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
          if (rcount == 0) rcount = 1; // Should be valid value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
          receivers_count_total += rcount;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
          // Add the receiver to result data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
          result.add_receiver(receiver, rcount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
          // If we extend profiling to record methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
          // we will set result._method also.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
        // Determine call site's morphism.
4754
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4581
diff changeset
   525
        // The call site count is 0 with known morphism (onlt 1 or 2 receivers)
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4581
diff changeset
   526
        // or < 0 in the case of a type check failured for checkcast, aastore, instanceof.
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4581
diff changeset
   527
        // The call site count is > 0 in the case of a polymorphic virtual call.
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4581
diff changeset
   528
        if (morphism > 0 && morphism == result._limit) {
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4581
diff changeset
   529
           // The morphism <= MorphismLimit.
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4581
diff changeset
   530
           if ((morphism <  ciCallProfile::MorphismLimit) ||
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4581
diff changeset
   531
               (morphism == ciCallProfile::MorphismLimit && count == 0)) {
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4581
diff changeset
   532
#ifdef ASSERT
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4581
diff changeset
   533
             if (count > 0) {
4892
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   534
               this->print_short_name(tty);
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   535
               tty->print_cr(" @ bci:%d", bci);
4754
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4581
diff changeset
   536
               this->print_codes();
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4581
diff changeset
   537
               assert(false, "this call site should not be polymorphic");
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4581
diff changeset
   538
             }
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4581
diff changeset
   539
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
             result._morphism = morphism;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
           }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
        // Make the count consistent if this is a call profile. If count is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
        // zero or less, presume that this is a typecheck profile and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
        // do nothing.  Otherwise, increase count to be the sum of all
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
        // receiver's counts.
4754
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4581
diff changeset
   547
        if (count >= 0) {
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 4581
diff changeset
   548
          count += receivers_count_total;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
      result._count = count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
// Add new receiver and sort data by receiver's profile count.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
void ciCallProfile::add_receiver(ciKlass* receiver, int receiver_count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  // Add new receiver and sort data by receiver's counts when we have space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  // for it otherwise replace the less called receiver (less called receiver
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  // is placed to the last array element which is not used).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  // First array's element contains most called receiver.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  int i = _limit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  for (; i > 0 && receiver_count > _receiver_count[i-1]; i--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
    _receiver[i] = _receiver[i-1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
    _receiver_count[i] = _receiver_count[i-1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  _receiver[i] = receiver;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  _receiver_count[i] = receiver_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  if (_limit < MorphismLimit) _limit++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   574
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   575
void ciMethod::assert_virtual_call_type_ok(int bci) {
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   576
  assert(java_code_at_bci(bci) == Bytecodes::_invokevirtual ||
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   577
         java_code_at_bci(bci) == Bytecodes::_invokeinterface, err_msg("unexpected bytecode %s", Bytecodes::name(java_code_at_bci(bci))));
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   578
}
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   579
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   580
void ciMethod::assert_call_type_ok(int bci) {
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   581
  assert(java_code_at_bci(bci) == Bytecodes::_invokestatic ||
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   582
         java_code_at_bci(bci) == Bytecodes::_invokespecial ||
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   583
         java_code_at_bci(bci) == Bytecodes::_invokedynamic, err_msg("unexpected bytecode %s", Bytecodes::name(java_code_at_bci(bci))));
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   584
}
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   585
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   586
/**
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   587
 * Check whether profiling provides a type for the argument i to the
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   588
 * call at bci bci
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   589
 *
23525
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   590
 * @param [in]bci         bci of the call
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   591
 * @param [in]i           argument number
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   592
 * @param [out]type       profiled type of argument, NULL if none
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   593
 * @param [out]maybe_null true if null was seen for argument
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   594
 * @return                true if profiling exists
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   595
 *
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   596
 */
23525
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   597
bool ciMethod::argument_profiled_type(int bci, int i, ciKlass*& type, bool& maybe_null) {
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   598
  if (MethodData::profile_parameters() && method_data() != NULL && method_data()->is_mature()) {
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   599
    ciProfileData* data = method_data()->bci_to_data(bci);
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   600
    if (data != NULL) {
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   601
      if (data->is_VirtualCallTypeData()) {
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   602
        assert_virtual_call_type_ok(bci);
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   603
        ciVirtualCallTypeData* call = (ciVirtualCallTypeData*)data->as_VirtualCallTypeData();
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   604
        if (i >= call->number_of_arguments()) {
23525
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   605
          return false;
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   606
        }
23525
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   607
        type = call->valid_argument_type(i);
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   608
        maybe_null = call->argument_maybe_null(i);
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   609
        return true;
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   610
      } else if (data->is_CallTypeData()) {
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   611
        assert_call_type_ok(bci);
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   612
        ciCallTypeData* call = (ciCallTypeData*)data->as_CallTypeData();
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   613
        if (i >= call->number_of_arguments()) {
23525
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   614
          return false;
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   615
        }
23525
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   616
        type = call->valid_argument_type(i);
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   617
        maybe_null = call->argument_maybe_null(i);
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   618
        return true;
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   619
      }
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   620
    }
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   621
  }
23525
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   622
  return false;
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   623
}
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   624
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   625
/**
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   626
 * Check whether profiling provides a type for the return value from
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   627
 * the call at bci bci
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   628
 *
23525
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   629
 * @param [in]bci         bci of the call
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   630
 * @param [out]type       profiled type of argument, NULL if none
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   631
 * @param [out]maybe_null true if null was seen for argument
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   632
 * @return                true if profiling exists
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   633
 *
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   634
 */
23525
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   635
bool ciMethod::return_profiled_type(int bci, ciKlass*& type, bool& maybe_null) {
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   636
  if (MethodData::profile_return() && method_data() != NULL && method_data()->is_mature()) {
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   637
    ciProfileData* data = method_data()->bci_to_data(bci);
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   638
    if (data != NULL) {
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   639
      if (data->is_VirtualCallTypeData()) {
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   640
        assert_virtual_call_type_ok(bci);
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   641
        ciVirtualCallTypeData* call = (ciVirtualCallTypeData*)data->as_VirtualCallTypeData();
23525
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   642
        type = call->valid_return_type();
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   643
        maybe_null = call->return_maybe_null();
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   644
        return true;
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   645
      } else if (data->is_CallTypeData()) {
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   646
        assert_call_type_ok(bci);
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   647
        ciCallTypeData* call = (ciCallTypeData*)data->as_CallTypeData();
23525
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   648
        type = call->valid_return_type();
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   649
        maybe_null = call->return_maybe_null();
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   650
        return true;
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   651
      }
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   652
    }
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   653
  }
23525
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   654
  return false;
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   655
}
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   656
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   657
/**
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   658
 * Check whether profiling provides a type for the parameter i
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   659
 *
23525
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   660
 * @param [in]i           parameter number
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   661
 * @param [out]type       profiled type of parameter, NULL if none
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   662
 * @param [out]maybe_null true if null was seen for parameter
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   663
 * @return                true if profiling exists
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   664
 *
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   665
 */
23525
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   666
bool ciMethod::parameter_profiled_type(int i, ciKlass*& type, bool& maybe_null) {
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   667
  if (MethodData::profile_parameters() && method_data() != NULL && method_data()->is_mature()) {
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   668
    ciParametersTypeData* parameters = method_data()->parameters_type_data();
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   669
    if (parameters != NULL && i < parameters->number_of_parameters()) {
23525
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   670
      type = parameters->valid_parameter_type(i);
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   671
      maybe_null = parameters->parameter_maybe_null(i);
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   672
      return true;
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   673
    }
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   674
  }
23525
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23194
diff changeset
   675
  return false;
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   676
}
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   677
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   678
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
// ciMethod::find_monomorphic_target
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
// Given a certain calling environment, find the monomorphic target
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
// for the call.  Return NULL if the call is not monomorphic in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
// its calling environment, or if there are only abstract methods.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
// The returned method is never abstract.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
// Note: If caller uses a non-null result, it must inform dependencies
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
// via assert_unique_concrete_method or assert_leaf_type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
ciMethod* ciMethod::find_monomorphic_target(ciInstanceKlass* caller,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
                                            ciInstanceKlass* callee_holder,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
                                            ciInstanceKlass* actual_recv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  check_is_loaded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  if (actual_recv->is_interface()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
    // %%% We cannot trust interface types, yet.  See bug 6312651.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  ciMethod* root_m = resolve_invoke(caller, actual_recv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  if (root_m == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
    // Something went wrong looking up the actual receiver method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  assert(!root_m->is_abstract(), "resolve_invoke promise");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
  // Make certain quick checks even if UseCHA is false.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  // Is it private or final?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  if (root_m->can_be_statically_bound()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
    return root_m;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  if (actual_recv->is_leaf_type() && actual_recv == root_m->holder()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
    // Easy case.  There is no other place to put a method, so don't bother
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
    // to go through the VM_ENTRY_MARK and all the rest.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
    return root_m;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  // Array methods (clone, hashCode, etc.) are always statically bound.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
  // If we were to see an array type here, we'd return root_m.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  // However, this method processes only ciInstanceKlasses.  (See 4962591.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  // The inline_native_clone intrinsic narrows Object to T[] properly,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
  // so there is no need to do the same job here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
  if (!UseCHA)  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  VM_ENTRY_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
23194
e60d7409415b 8036100: Default method returns true for a while, and then returns false
vlivanov
parents: 22893
diff changeset
   728
  // Disable CHA for default methods for now
e60d7409415b 8036100: Default method returns true for a while, and then returns false
vlivanov
parents: 22893
diff changeset
   729
  if (root_m->get_Method()->is_default_method()) {
e60d7409415b 8036100: Default method returns true for a while, and then returns false
vlivanov
parents: 22893
diff changeset
   730
    return NULL;
e60d7409415b 8036100: Default method returns true for a while, and then returns false
vlivanov
parents: 22893
diff changeset
   731
  }
e60d7409415b 8036100: Default method returns true for a while, and then returns false
vlivanov
parents: 22893
diff changeset
   732
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
  methodHandle target;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
    MutexLocker locker(Compile_lock);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   736
    Klass* context = actual_recv->get_Klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
    target = Dependencies::find_unique_concrete_method(context,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   738
                                                       root_m->get_Method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
    // %%% Should upgrade this ciMethod API to look for 1 or 2 concrete methods.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
#ifndef PRODUCT
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   743
  if (TraceDependencies && target() != NULL && target() != root_m->get_Method()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
    tty->print("found a non-root unique target method");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   745
    tty->print_cr("  context = %s", InstanceKlass::cast(actual_recv->get_Klass())->external_name());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
    tty->print("  method  = ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
    target->print_short_name(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
#endif //PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  if (target() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   755
  if (target() == root_m->get_Method()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
    return root_m;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  if (!root_m->is_public() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
      !root_m->is_protected()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
    // If we are going to reason about inheritance, it's easiest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
    // if the method in question is public, protected, or private.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
    // If the answer is not root_m, it is conservatively correct
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
    // to return NULL, even if the CHA encountered irrelevant
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
    // methods in other packages.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
    // %%% TO DO: Work out logic for package-private methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
    // with the same name but different vtable indexes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   769
  return CURRENT_THREAD_ENV->get_method(target());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
// ciMethod::resolve_invoke
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
// Given a known receiver klass, find the target for the call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
// Return NULL if the call has no target or the target is abstract.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
ciMethod* ciMethod::resolve_invoke(ciKlass* caller, ciKlass* exact_receiver) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
   check_is_loaded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
   VM_ENTRY_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   781
   KlassHandle caller_klass (THREAD, caller->get_Klass());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   782
   KlassHandle h_recv       (THREAD, exact_receiver->get_Klass());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   783
   KlassHandle h_resolved   (THREAD, holder()->get_Klass());
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7432
diff changeset
   784
   Symbol* h_name      = name()->get_symbol();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7432
diff changeset
   785
   Symbol* h_signature = signature()->get_symbol();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
   methodHandle m;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
   // Only do exact lookup if receiver klass has been linked.  Otherwise,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
   // the vtable has not been setup, and the LinkResolver will fail.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   790
   if (h_recv->oop_is_array()
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
        ||
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   792
       InstanceKlass::cast(h_recv())->is_linked() && !exact_receiver->is_interface()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
     if (holder()->is_interface()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
       m = LinkResolver::resolve_interface_call_or_null(h_recv, h_resolved, h_name, h_signature, caller_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
     } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
       m = LinkResolver::resolve_virtual_call_or_null(h_recv, h_resolved, h_name, h_signature, caller_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
   if (m.is_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
     // Return NULL only if there was a problem with lookup (uninitialized class, etc.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
     return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
   ciMethod* result = this;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   806
   if (m() != get_Method()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   807
     result = CURRENT_THREAD_ENV->get_method(m());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
   // Don't return abstract methods because they aren't
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
   // optimizable or interesting.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
   if (result->is_abstract()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
     return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
   } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
     return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
// ciMethod::resolve_vtable_index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
// Given a known receiver klass, find the vtable index for the call.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   823
// Return Method::invalid_vtable_index if the vtable_index is unknown.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
int ciMethod::resolve_vtable_index(ciKlass* caller, ciKlass* receiver) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
   check_is_loaded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   827
   int vtable_index = Method::invalid_vtable_index;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
   // Only do lookup if receiver klass has been linked.  Otherwise,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
   // the vtable has not been setup, and the LinkResolver will fail.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
   if (!receiver->is_interface()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
       && (!receiver->is_instance_klass() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
           receiver->as_instance_klass()->is_linked())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
     VM_ENTRY_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   835
     KlassHandle caller_klass (THREAD, caller->get_Klass());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   836
     KlassHandle h_recv       (THREAD, receiver->get_Klass());
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7432
diff changeset
   837
     Symbol* h_name = name()->get_symbol();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7432
diff changeset
   838
     Symbol* h_signature = signature()->get_symbol();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
     vtable_index = LinkResolver::resolve_virtual_vtable_index(h_recv, h_recv, h_name, h_signature, caller_klass);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   841
     if (vtable_index == Method::nonvirtual_vtable_index) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
       // A statically bound method.  Return "no such index".
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   843
       vtable_index = Method::invalid_vtable_index;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
   return vtable_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
// ciMethod::interpreter_call_site_count
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
int ciMethod::interpreter_call_site_count(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  if (method_data() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
    ciProfileData* data = method_data()->bci_to_data(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
    if (data != NULL && data->is_CounterData()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
      return scale_count(data->as_CounterData()->count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
  return -1;  // unknown
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
// ------------------------------------------------------------------
14621
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14478
diff changeset
   864
// ciMethod::get_field_at_bci
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14478
diff changeset
   865
ciField* ciMethod::get_field_at_bci(int bci, bool &will_link) {
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14478
diff changeset
   866
  ciBytecodeStream iter(this);
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14478
diff changeset
   867
  iter.reset_to_bci(bci);
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14478
diff changeset
   868
  iter.next();
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14478
diff changeset
   869
  return iter.get_field(will_link);
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14478
diff changeset
   870
}
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14478
diff changeset
   871
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14478
diff changeset
   872
// ------------------------------------------------------------------
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14478
diff changeset
   873
// ciMethod::get_method_at_bci
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14478
diff changeset
   874
ciMethod* ciMethod::get_method_at_bci(int bci, bool &will_link, ciSignature* *declared_signature) {
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14478
diff changeset
   875
  ciBytecodeStream iter(this);
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14478
diff changeset
   876
  iter.reset_to_bci(bci);
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14478
diff changeset
   877
  iter.next();
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14478
diff changeset
   878
  return iter.get_method(will_link, declared_signature);
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14478
diff changeset
   879
}
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14478
diff changeset
   880
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14478
diff changeset
   881
// ------------------------------------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
// Adjust a CounterData count to be commensurate with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
// interpreter_invocation_count.  If the MDO exists for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
// only 25% of the time the method exists, then the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
// counts in the MDO should be scaled by 4X, so that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
// they can be usefully and stably compared against the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
// invocation counts in methods.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
int ciMethod::scale_count(int count, float prof_factor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
  if (count > 0 && method_data() != NULL) {
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   890
    int counter_life;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
    int method_life = interpreter_invocation_count();
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   892
    if (TieredCompilation) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   893
      // In tiered the MDO's life is measured directly, so just use the snapshotted counters
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   894
      counter_life = MAX2(method_data()->invocation_count(), method_data()->backedge_count());
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   895
    } else {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   896
      int current_mileage = method_data()->current_mileage();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   897
      int creation_mileage = method_data()->creation_mileage();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   898
      counter_life = current_mileage - creation_mileage;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   899
    }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   900
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
    // counter_life due to backedge_counter could be > method_life
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
    if (counter_life > method_life)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
      counter_life = method_life;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
    if (0 < counter_life && counter_life <= method_life) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
      count = (int)((double)count * prof_factor * method_life / counter_life + 0.5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
      count = (count > 0) ? count : 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
  return count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
16617
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 15479
diff changeset
   912
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 15479
diff changeset
   913
// ------------------------------------------------------------------
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 15479
diff changeset
   914
// ciMethod::is_special_get_caller_class_method
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 15479
diff changeset
   915
//
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 15479
diff changeset
   916
bool ciMethod::is_ignored_by_security_stack_walk() const {
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 15479
diff changeset
   917
  check_is_loaded();
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 15479
diff changeset
   918
  VM_ENTRY_MARK;
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 15479
diff changeset
   919
  return get_Method()->is_ignored_by_security_stack_walk();
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 15479
diff changeset
   920
}
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 15479
diff changeset
   921
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 15479
diff changeset
   922
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
// ------------------------------------------------------------------
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   924
// invokedynamic support
5687
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 4892
diff changeset
   925
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 4892
diff changeset
   926
// ------------------------------------------------------------------
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
   927
// ciMethod::is_method_handle_intrinsic
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   928
//
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
   929
// Return true if the method is an instance of the JVM-generated
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
   930
// signature-polymorphic MethodHandle methods, _invokeBasic, _linkToVirtual, etc.
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
   931
bool ciMethod::is_method_handle_intrinsic() const {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
   932
  vmIntrinsics::ID iid = _intrinsic_id;  // do not check if loaded
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
   933
  return (MethodHandles::is_signature_polymorphic(iid) &&
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
   934
          MethodHandles::is_signature_polymorphic_intrinsic(iid));
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   935
}
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   936
5687
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 4892
diff changeset
   937
// ------------------------------------------------------------------
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
   938
// ciMethod::is_compiled_lambda_form
5687
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 4892
diff changeset
   939
//
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 4892
diff changeset
   940
// Return true if the method is a generated MethodHandle adapter.
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
   941
// These are built by Java code.
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
   942
bool ciMethod::is_compiled_lambda_form() const {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
   943
  vmIntrinsics::ID iid = _intrinsic_id;  // do not check if loaded
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
   944
  return iid == vmIntrinsics::_compiledLambdaForm;
4581
e89fbd1bcb3d 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 4566
diff changeset
   945
}
e89fbd1bcb3d 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 4566
diff changeset
   946
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
   947
// ------------------------------------------------------------------
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
   948
// ciMethod::has_member_arg
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
   949
//
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
   950
// Return true if the method is a linker intrinsic like _linkToVirtual.
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
   951
// These are built by the JVM.
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
   952
bool ciMethod::has_member_arg() const {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
   953
  vmIntrinsics::ID iid = _intrinsic_id;  // do not check if loaded
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
   954
  return (MethodHandles::is_signature_polymorphic(iid) &&
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
   955
          MethodHandles::has_member_arg(iid));
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   956
}
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   957
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   958
// ------------------------------------------------------------------
7432
f06f1253c317 7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents: 7397
diff changeset
   959
// ciMethod::ensure_method_data
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
//
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   961
// Generate new MethodData* objects at compile time.
7432
f06f1253c317 7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents: 7397
diff changeset
   962
// Return true if allocation was successful or no MDO is required.
f06f1253c317 7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents: 7397
diff changeset
   963
bool ciMethod::ensure_method_data(methodHandle h_m) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
  EXCEPTION_CONTEXT;
20695
4f5a5e95090b 8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method
twisti
parents: 20692
diff changeset
   965
  if (is_native() || is_abstract() || h_m()->is_accessor()) {
4f5a5e95090b 8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method
twisti
parents: 20692
diff changeset
   966
    return true;
4f5a5e95090b 8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method
twisti
parents: 20692
diff changeset
   967
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
  if (h_m()->method_data() == NULL) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   969
    Method::build_interpreter_method_data(h_m, THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
    if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
      CLEAR_PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
  if (h_m()->method_data() != NULL) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   975
    _method_data = CURRENT_ENV->get_method_data(h_m()->method_data());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
    _method_data->load_data();
7432
f06f1253c317 7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents: 7397
diff changeset
   977
    return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
    _method_data = CURRENT_ENV->get_empty_methodData();
7432
f06f1253c317 7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents: 7397
diff changeset
   980
    return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
// public, retroactive version
7432
f06f1253c317 7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents: 7397
diff changeset
   985
bool ciMethod::ensure_method_data() {
f06f1253c317 7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents: 7397
diff changeset
   986
  bool result = true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
  if (_method_data == NULL || _method_data->is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
    GUARDED_VM_ENTRY({
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   989
      result = ensure_method_data(get_Method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
    });
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
  }
7432
f06f1253c317 7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents: 7397
diff changeset
   992
  return result;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
// ciMethod::method_data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
ciMethodData* ciMethod::method_data() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
  if (_method_data != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
    return _method_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
  VM_ENTRY_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
  ciEnv* env = CURRENT_ENV;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
  Thread* my_thread = JavaThread::current();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1006
  methodHandle h_m(my_thread, get_Method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
  if (h_m()->method_data() != NULL) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1009
    _method_data = CURRENT_ENV->get_method_data(h_m()->method_data());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
    _method_data->load_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
    _method_data = CURRENT_ENV->get_empty_methodData();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
  return _method_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
7432
f06f1253c317 7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents: 7397
diff changeset
  1018
// ------------------------------------------------------------------
f06f1253c317 7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents: 7397
diff changeset
  1019
// ciMethod::method_data_or_null
f06f1253c317 7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents: 7397
diff changeset
  1020
// Returns a pointer to ciMethodData if MDO exists on the VM side,
f06f1253c317 7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents: 7397
diff changeset
  1021
// NULL otherwise.
f06f1253c317 7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents: 7397
diff changeset
  1022
ciMethodData* ciMethod::method_data_or_null() {
f06f1253c317 7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents: 7397
diff changeset
  1023
  ciMethodData *md = method_data();
20695
4f5a5e95090b 8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method
twisti
parents: 20692
diff changeset
  1024
  if (md->is_empty()) {
4f5a5e95090b 8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method
twisti
parents: 20692
diff changeset
  1025
    return NULL;
4f5a5e95090b 8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method
twisti
parents: 20692
diff changeset
  1026
  }
7432
f06f1253c317 7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents: 7397
diff changeset
  1027
  return md;
f06f1253c317 7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents: 7397
diff changeset
  1028
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
// ------------------------------------------------------------------
17000
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16617
diff changeset
  1031
// ciMethod::ensure_method_counters
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16617
diff changeset
  1032
//
20695
4f5a5e95090b 8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method
twisti
parents: 20692
diff changeset
  1033
MethodCounters* ciMethod::ensure_method_counters() {
17000
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16617
diff changeset
  1034
  check_is_loaded();
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16617
diff changeset
  1035
  VM_ENTRY_MARK;
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16617
diff changeset
  1036
  methodHandle mh(THREAD, get_Method());
20695
4f5a5e95090b 8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method
twisti
parents: 20692
diff changeset
  1037
  MethodCounters* method_counters = mh->get_method_counters(CHECK_NULL);
4f5a5e95090b 8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method
twisti
parents: 20692
diff changeset
  1038
  return method_counters;
17000
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16617
diff changeset
  1039
}
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16617
diff changeset
  1040
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16617
diff changeset
  1041
// ------------------------------------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
// ciMethod::should_exclude
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
// Should this method be excluded from compilation?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
bool ciMethod::should_exclude() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
  check_is_loaded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1048
  methodHandle mh(THREAD, get_Method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
  bool ignore;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
  return CompilerOracle::should_exclude(mh, ignore);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
// ciMethod::should_inline
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
// Should this method be inlined during compilation?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
bool ciMethod::should_inline() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
  check_is_loaded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1060
  methodHandle mh(THREAD, get_Method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
  return CompilerOracle::should_inline(mh);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
// ciMethod::should_not_inline
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
// Should this method be disallowed from inlining during compilation?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
bool ciMethod::should_not_inline() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
  check_is_loaded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1071
  methodHandle mh(THREAD, get_Method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
  return CompilerOracle::should_not_inline(mh);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
// ciMethod::should_print_assembly
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
// Should the compiler print the generated code for this method?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
bool ciMethod::should_print_assembly() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
  check_is_loaded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1082
  methodHandle mh(THREAD, get_Method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
  return CompilerOracle::should_print(mh);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
// ciMethod::break_at_execute
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
// Should the compiler insert a breakpoint into the generated code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
// method?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
bool ciMethod::break_at_execute() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
  check_is_loaded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1094
  methodHandle mh(THREAD, get_Method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
  return CompilerOracle::should_break_at(mh);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
// ciMethod::has_option
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
bool ciMethod::has_option(const char* option) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
  check_is_loaded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1104
  methodHandle mh(THREAD, get_Method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
  return CompilerOracle::has_option_string(mh, option);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
// ------------------------------------------------------------------
26433
27020fde2dbf 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 24442
diff changeset
  1109
// ciMethod::has_option_value
27020fde2dbf 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 24442
diff changeset
  1110
//
27020fde2dbf 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 24442
diff changeset
  1111
template<typename T>
27020fde2dbf 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 24442
diff changeset
  1112
bool ciMethod::has_option_value(const char* option, T& value) {
27020fde2dbf 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 24442
diff changeset
  1113
  check_is_loaded();
27020fde2dbf 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 24442
diff changeset
  1114
  VM_ENTRY_MARK;
27020fde2dbf 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 24442
diff changeset
  1115
  methodHandle mh(THREAD, get_Method());
27020fde2dbf 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 24442
diff changeset
  1116
  return CompilerOracle::has_option_value(mh, option, value);
27020fde2dbf 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 24442
diff changeset
  1117
}
27020fde2dbf 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 24442
diff changeset
  1118
// Explicit instantiation for all OptionTypes supported.
27020fde2dbf 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 24442
diff changeset
  1119
template bool ciMethod::has_option_value<intx>(const char* option, intx& value);
27020fde2dbf 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 24442
diff changeset
  1120
template bool ciMethod::has_option_value<uintx>(const char* option, uintx& value);
27020fde2dbf 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 24442
diff changeset
  1121
template bool ciMethod::has_option_value<bool>(const char* option, bool& value);
27020fde2dbf 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 24442
diff changeset
  1122
template bool ciMethod::has_option_value<ccstr>(const char* option, ccstr& value);
27143
feee4a6106bc 8059847: complement JDK-8055286 and JDK-8056964 changes
anoll
parents: 26433
diff changeset
  1123
template bool ciMethod::has_option_value<double>(const char* option, double& value);
26433
27020fde2dbf 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 24442
diff changeset
  1124
27020fde2dbf 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 24442
diff changeset
  1125
// ------------------------------------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
// ciMethod::can_be_compiled
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
// Have previous compilations of this method succeeded?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
bool ciMethod::can_be_compiled() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
  check_is_loaded();
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
  1131
  ciEnv* env = CURRENT_ENV;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
  1132
  if (is_c1_compile(env->comp_level())) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
  1133
    return _is_c1_compilable;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
  1134
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
  1135
  return _is_c2_compilable;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
// ciMethod::set_not_compilable
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
// Tell the VM that this method cannot be compiled at all.
15479
e3c00ec80145 8006613: adding reason to made_not_compilable
vlivanov
parents: 15471
diff changeset
  1142
void ciMethod::set_not_compilable(const char* reason) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
  check_is_loaded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
  VM_ENTRY_MARK;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
  1145
  ciEnv* env = CURRENT_ENV;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
  1146
  if (is_c1_compile(env->comp_level())) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
  1147
    _is_c1_compilable = false;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
  1148
  } else {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
  1149
    _is_c2_compilable = false;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
  1150
  }
15479
e3c00ec80145 8006613: adding reason to made_not_compilable
vlivanov
parents: 15471
diff changeset
  1151
  get_Method()->set_not_compilable(env->comp_level(), true, reason);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
// ciMethod::can_be_osr_compiled
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
// Have previous compilations of this method succeeded?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
// Implementation note: the VM does not currently keep track
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
// of failed OSR compilations per bci.  The entry_bci parameter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
// is currently unused.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
bool ciMethod::can_be_osr_compiled(int entry_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
  check_is_loaded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
  VM_ENTRY_MARK;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
  1165
  ciEnv* env = CURRENT_ENV;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1166
  return !get_Method()->is_not_osr_compilable(env->comp_level());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
// ciMethod::has_compiled_code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
bool ciMethod::has_compiled_code() {
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1172
  return instructions_size() > 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
  1175
int ciMethod::comp_level() {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
  1176
  check_is_loaded();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
  1177
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1178
  nmethod* nm = get_Method()->code();
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
  1179
  if (nm != NULL) return nm->comp_level();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
  1180
  return 0;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
  1181
}
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
  1182
10014
a5c2141ee857 7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents: 10008
diff changeset
  1183
int ciMethod::highest_osr_comp_level() {
a5c2141ee857 7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents: 10008
diff changeset
  1184
  check_is_loaded();
a5c2141ee857 7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents: 10008
diff changeset
  1185
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1186
  return get_Method()->highest_osr_comp_level();
10014
a5c2141ee857 7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents: 10008
diff changeset
  1187
}
a5c2141ee857 7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents: 10008
diff changeset
  1188
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
// ------------------------------------------------------------------
10506
575ad9bccff5 7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents: 10014
diff changeset
  1190
// ciMethod::code_size_for_inlining
575ad9bccff5 7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents: 10014
diff changeset
  1191
//
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
  1192
// Code size for inlining decisions.  This method returns a code
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
  1193
// size of 1 for methods which has the ForceInline annotation.
10506
575ad9bccff5 7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents: 10014
diff changeset
  1194
int ciMethod::code_size_for_inlining() {
575ad9bccff5 7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents: 10014
diff changeset
  1195
  check_is_loaded();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1196
  if (get_Method()->force_inline()) {
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
  1197
    return 1;
10506
575ad9bccff5 7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents: 10014
diff changeset
  1198
  }
575ad9bccff5 7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents: 10014
diff changeset
  1199
  return code_size();
575ad9bccff5 7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents: 10014
diff changeset
  1200
}
575ad9bccff5 7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents: 10014
diff changeset
  1201
575ad9bccff5 7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents: 10014
diff changeset
  1202
// ------------------------------------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
// ciMethod::instructions_size
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6187
diff changeset
  1204
//
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6187
diff changeset
  1205
// This is a rough metric for "fat" methods, compared before inlining
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6187
diff changeset
  1206
// with InlineSmallCode.  The CodeBlob::code_size accessor includes
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6187
diff changeset
  1207
// junk like exception handler, stubs, and constant table, which are
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6187
diff changeset
  1208
// not highly relevant to an inlined method.  So we use the more
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6187
diff changeset
  1209
// specific accessor nmethod::insts_size.
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1210
int ciMethod::instructions_size() {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1211
  if (_instructions_size == -1) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1212
    GUARDED_VM_ENTRY(
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1213
                     nmethod* code = get_Method()->code();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1214
                     if (code != NULL && (code->comp_level() == CompLevel_full_optimization)) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1215
                       _instructions_size = code->insts_end() - code->verified_entry_point();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1216
                     } else {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1217
                       _instructions_size = 0;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1218
                     }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1219
                     );
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1220
  }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1221
  return _instructions_size;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
// ciMethod::log_nmethod_identity
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
void ciMethod::log_nmethod_identity(xmlStream* log) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
  GUARDED_VM_ENTRY(
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1228
    nmethod* code = get_Method()->code();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
    if (code != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
      code->log_identity(log);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
  )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
// ciMethod::is_not_reached
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
bool ciMethod::is_not_reached(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
  check_is_loaded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
  VM_ENTRY_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
  return Interpreter::is_not_reached(
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1241
               methodHandle(THREAD, get_Method()), bci);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
// ciMethod::was_never_executed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
bool ciMethod::was_executed_more_than(int times) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1248
  return get_Method()->was_executed_more_than(times);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
// ciMethod::has_unloaded_classes_in_signature
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
bool ciMethod::has_unloaded_classes_in_signature() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
  VM_ENTRY_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
    EXCEPTION_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1257
    methodHandle m(THREAD, get_Method());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1258
    bool has_unloaded = Method::has_unloaded_classes_in_signature(m, (JavaThread *)THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
    if( HAS_PENDING_EXCEPTION ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
      CLEAR_PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
      return true;     // Declare that we may have unloaded classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
    return has_unloaded;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
// ciMethod::is_klass_loaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
bool ciMethod::is_klass_loaded(int refinfo_index, bool must_be_resolved) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1271
  return get_Method()->is_klass_loaded(refinfo_index, must_be_resolved);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
// ciMethod::check_call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
bool ciMethod::check_call(int refinfo_index, bool is_static) const {
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17383
diff changeset
  1277
  // This method is used only in C2 from InlineTree::ok_to_inline,
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17383
diff changeset
  1278
  // and is only used under -Xcomp or -XX:CompileTheWorld.
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17383
diff changeset
  1279
  // It appears to fail when applied to an invokeinterface call site.
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17383
diff changeset
  1280
  // FIXME: Remove this method and resolve_method_statically; refactor to use the other LinkResolver entry points.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
  VM_ENTRY_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
    EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
    HandleMark hm(THREAD);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1285
    constantPoolHandle pool (THREAD, get_Method()->constants());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
    methodHandle spec_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
    KlassHandle  spec_klass;
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
  1288
    Bytecodes::Code code = (is_static ? Bytecodes::_invokestatic : Bytecodes::_invokevirtual);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
  1289
    LinkResolver::resolve_method_statically(spec_method, spec_klass, code, pool, refinfo_index, THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
    if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
      CLEAR_PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
      return (spec_method->is_static() == is_static);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
// ------------------------------------------------------------------
24442
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24018
diff changeset
  1301
// ciMethod::profile_aging
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24018
diff changeset
  1302
//
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24018
diff changeset
  1303
// Should the method be compiled with an age counter?
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24018
diff changeset
  1304
bool ciMethod::profile_aging() const {
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24018
diff changeset
  1305
  return UseCodeAging && (!MethodCounters::is_nmethod_hot(nmethod_age()) &&
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24018
diff changeset
  1306
                          !MethodCounters::is_nmethod_age_unset(nmethod_age()));
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24018
diff changeset
  1307
}
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24018
diff changeset
  1308
// ------------------------------------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
// ciMethod::print_codes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
// Print the bytecodes for this method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
void ciMethod::print_codes_on(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
  check_is_loaded();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1314
  GUARDED_VM_ENTRY(get_Method()->print_codes_on(st);)
1
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
#define FETCH_FLAG_FROM_VM(flag_accessor) { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
  check_is_loaded(); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
  VM_ENTRY_MARK; \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1321
  return get_Method()->flag_accessor(); \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
bool ciMethod::is_empty_method() const {         FETCH_FLAG_FROM_VM(is_empty_method); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
bool ciMethod::is_vanilla_constructor() const {  FETCH_FLAG_FROM_VM(is_vanilla_constructor); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
bool ciMethod::has_loops      () const {         FETCH_FLAG_FROM_VM(has_loops); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
bool ciMethod::has_jsrs       () const {         FETCH_FLAG_FROM_VM(has_jsrs);  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
bool ciMethod::is_accessor    () const {         FETCH_FLAG_FROM_VM(is_accessor); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
bool ciMethod::is_initializer () const {         FETCH_FLAG_FROM_VM(is_initializer); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1331
bool ciMethod::is_boxing_method() const {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1332
  if (holder()->is_box_klass()) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1333
    switch (intrinsic_id()) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1334
      case vmIntrinsics::_Boolean_valueOf:
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1335
      case vmIntrinsics::_Byte_valueOf:
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1336
      case vmIntrinsics::_Character_valueOf:
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1337
      case vmIntrinsics::_Short_valueOf:
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1338
      case vmIntrinsics::_Integer_valueOf:
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1339
      case vmIntrinsics::_Long_valueOf:
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1340
      case vmIntrinsics::_Float_valueOf:
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1341
      case vmIntrinsics::_Double_valueOf:
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1342
        return true;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1343
      default:
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1344
        return false;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1345
    }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1346
  }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1347
  return false;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1348
}
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1349
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1350
bool ciMethod::is_unboxing_method() const {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1351
  if (holder()->is_box_klass()) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1352
    switch (intrinsic_id()) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1353
      case vmIntrinsics::_booleanValue:
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1354
      case vmIntrinsics::_byteValue:
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1355
      case vmIntrinsics::_charValue:
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1356
      case vmIntrinsics::_shortValue:
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1357
      case vmIntrinsics::_intValue:
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1358
      case vmIntrinsics::_longValue:
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1359
      case vmIntrinsics::_floatValue:
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1360
      case vmIntrinsics::_doubleValue:
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1361
        return true;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1362
      default:
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1363
        return false;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1364
    }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1365
  }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1366
  return false;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1367
}
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17000
diff changeset
  1368
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
BCEscapeAnalyzer  *ciMethod::get_bcea() {
5928
f6e69b46e9e3 6968368: SIGSEGV in the BCEscapeAnalyzer::copy_dependencies
kvn
parents: 5702
diff changeset
  1370
#ifdef COMPILER2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
  if (_bcea == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
    _bcea = new (CURRENT_ENV->arena()) BCEscapeAnalyzer(this, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
  return _bcea;
5928
f6e69b46e9e3 6968368: SIGSEGV in the BCEscapeAnalyzer::copy_dependencies
kvn
parents: 5702
diff changeset
  1375
#else // COMPILER2
f6e69b46e9e3 6968368: SIGSEGV in the BCEscapeAnalyzer::copy_dependencies
kvn
parents: 5702
diff changeset
  1376
  ShouldNotReachHere();
f6e69b46e9e3 6968368: SIGSEGV in the BCEscapeAnalyzer::copy_dependencies
kvn
parents: 5702
diff changeset
  1377
  return NULL;
f6e69b46e9e3 6968368: SIGSEGV in the BCEscapeAnalyzer::copy_dependencies
kvn
parents: 5702
diff changeset
  1378
#endif // COMPILER2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
ciMethodBlocks  *ciMethod::get_method_blocks() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
  Arena *arena = CURRENT_ENV->arena();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
  if (_method_blocks == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
    _method_blocks = new (arena) ciMethodBlocks(arena, this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
  return _method_blocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
#undef FETCH_FLAG_FROM_VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
22243
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 21099
diff changeset
  1391
void ciMethod::dump_name_as_ascii(outputStream* st) {
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 21099
diff changeset
  1392
  Method* method = get_Method();
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 21099
diff changeset
  1393
  st->print("%s %s %s",
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 21099
diff changeset
  1394
            method->klass_name()->as_quoted_ascii(),
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 21099
diff changeset
  1395
            method->name()->as_quoted_ascii(),
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 21099
diff changeset
  1396
            method->signature()->as_quoted_ascii());
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 21099
diff changeset
  1397
}
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 21099
diff changeset
  1398
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1399
void ciMethod::dump_replay_data(outputStream* st) {
15471
41f75023e6a6 8006410: allocating without ResourceMark when CompileCommand was specified
vlivanov
parents: 14621
diff changeset
  1400
  ResourceMark rm;
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1401
  Method* method = get_Method();
17000
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16617
diff changeset
  1402
  MethodCounters* mcs = method->method_counters();
22243
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 21099
diff changeset
  1403
  st->print("ciMethod ");
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 21099
diff changeset
  1404
  dump_name_as_ascii(st);
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 21099
diff changeset
  1405
  st->print_cr(" %d %d %d %d %d",
17000
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16617
diff changeset
  1406
               mcs == NULL ? 0 : mcs->invocation_counter()->raw_counter(),
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16617
diff changeset
  1407
               mcs == NULL ? 0 : mcs->backedge_counter()->raw_counter(),
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1408
               interpreter_invocation_count(),
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1409
               interpreter_throwout_count(),
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1410
               _instructions_size);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1411
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
// ciMethod::print_codes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
// Print a range of the bytecodes for this method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
void ciMethod::print_codes_on(int from, int to, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
  check_is_loaded();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1419
  GUARDED_VM_ENTRY(get_Method()->print_codes_on(from, to, st);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
// ciMethod::print_name
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
// Print the name of this method, including signature and some flags.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
void ciMethod::print_name(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
  check_is_loaded();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1428
  GUARDED_VM_ENTRY(get_Method()->print_name(st);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
// ciMethod::print_short_name
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
// Print the name of this method, without signature.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
void ciMethod::print_short_name(outputStream* st) {
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
  1436
  if (is_loaded()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1437
    GUARDED_VM_ENTRY(get_Method()->print_short_name(st););
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
  1438
  } else {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
  1439
    // Fall back if method is not loaded.
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
  1440
    holder()->print_name_on(st);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
  1441
    st->print("::");
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
  1442
    name()->print_symbol_on(st);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
  1443
    if (WizardMode)
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
  1444
      signature()->as_symbol()->print_symbol_on(st);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13282
diff changeset
  1445
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
// ciMethod::print_impl
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
// Implementation of the print method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
void ciMethod::print_impl(outputStream* st) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
  1453
  ciMetadata::print_impl(st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
  st->print(" name=");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
  name()->print_symbol_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
  st->print(" holder=");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
  holder()->print_name_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
  st->print(" signature=");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
  signature()->as_symbol()->print_symbol_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
  if (is_loaded()) {
13522
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
  1461
    st->print(" loaded=true");
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
  1462
    st->print(" arg_size=%d", arg_size());
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
  1463
    st->print(" flags=");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
    flags().print_member_flags(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
    st->print(" loaded=false");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
}