src/hotspot/share/ci/ciMethod.hpp
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 55252 6502d6a92fe2
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50113
diff changeset
     2
 * Copyright (c) 1999, 2019, 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: 4581
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4581
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: 4581
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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50113
diff changeset
    25
#ifndef SHARE_CI_CIMETHOD_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50113
diff changeset
    26
#define SHARE_CI_CIMETHOD_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    28
#include "ci/ciFlags.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    29
#include "ci/ciInstanceKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    30
#include "ci/ciObject.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    31
#include "ci/ciSignature.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    32
#include "compiler/methodLiveness.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    33
#include "prims/methodHandles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    34
#include "utilities/bitMap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    35
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class ciMethodBlocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class MethodLiveness;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class Arena;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class BCEscapeAnalyzer;
29582
9a0bb63adf5a 8073607: add trace events for inlining
iignatyev
parents: 28912
diff changeset
    40
class InlineTree;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
46542
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 44738
diff changeset
    42
// Whether profiling found an oop to be always, never or sometimes
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 44738
diff changeset
    43
// null
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 44738
diff changeset
    44
enum ProfilePtrKind {
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 44738
diff changeset
    45
  ProfileAlwaysNull,
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 44738
diff changeset
    46
  ProfileNeverNull,
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 44738
diff changeset
    47
  ProfileMaybeNull
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 44738
diff changeset
    48
};
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 44738
diff changeset
    49
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// ciMethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
//
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    52
// This class represents a Method* in the HotSpot virtual
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// machine.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    54
class ciMethod : public ciMetadata {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  friend class CompileBroker;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  CI_PACKAGE_ACCESS
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  friend class ciEnv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  friend class ciExceptionHandlerStream;
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
    59
  friend class ciBytecodeStream;
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
    60
  friend class ciMethodHandle;
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
    61
  friend class ciReplay;
29582
9a0bb63adf5a 8073607: add trace events for inlining
iignatyev
parents: 28912
diff changeset
    62
  friend class InlineTree;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // General method information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  ciFlags          _flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  ciSymbol*        _name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  ciInstanceKlass* _holder;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  ciSignature*     _signature;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  ciMethodData*    _method_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  ciMethodBlocks*   _method_blocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // Code attributes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  int _code_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  int _max_stack;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  int _max_locals;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  vmIntrinsics::ID _intrinsic_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  int _handler_count;
24442
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24018
diff changeset
    79
  int _nmethod_age;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  int _interpreter_invocation_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  int _interpreter_throwout_count;
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
    82
  int _instructions_size;
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23525
diff changeset
    83
  int _size_of_parameters;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  bool _uses_monitors;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  bool _balanced_monitors;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
    87
  bool _is_c1_compilable;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
    88
  bool _is_c2_compilable;
48024
6199dfaf72da 8191688: Assert failed in > 200 tests: failed dependencies, but counter didn't change
dlong
parents: 47687
diff changeset
    89
  bool _can_be_parsed;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  bool _can_be_statically_bound;
35071
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34169
diff changeset
    91
  bool _has_reserved_stack_access;
53595
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53244
diff changeset
    92
  bool _is_overpass;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // Lazy fields, filled in on demand
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  address              _code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  ciExceptionHandler** _exception_handlers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // Optional liveness analyzer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  MethodLiveness* _liveness;
47687
fb290fd1f9d4 8171853: Remove Shark compiler
rkennke
parents: 47216
diff changeset
   100
#if defined(COMPILER2)
5928
f6e69b46e9e3 6968368: SIGSEGV in the BCEscapeAnalyzer::copy_dependencies
kvn
parents: 5547
diff changeset
   101
  ciTypeFlow*         _flow;
f6e69b46e9e3 6968368: SIGSEGV in the BCEscapeAnalyzer::copy_dependencies
kvn
parents: 5547
diff changeset
   102
  BCEscapeAnalyzer*   _bcea;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
46727
6e4a84748e2c 8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents: 46542
diff changeset
   105
  ciMethod(const methodHandle& h_m, 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
   106
  ciMethod(ciInstanceKlass* holder, ciSymbol* name, ciSymbol* signature, ciInstanceKlass* accessor);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  oop loader() const                             { return _holder->loader(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  const char* type_string()                      { return "ciMethod"; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  void print_impl(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  void load_code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
46727
6e4a84748e2c 8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents: 46542
diff changeset
   116
  bool ensure_method_data(const methodHandle& h_m);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  void code_at_put(int bci, Bytecodes::Code code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    Bytecodes::check(code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    assert(0 <= bci && bci < code_size(), "valid bci");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    address bcp = _code + bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    *bcp = code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   125
  // Check bytecode and profile data collected are compatible
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   126
  void assert_virtual_call_type_ok(int bci);
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   127
  void assert_call_type_ok(int bci);
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   128
55252
6502d6a92fe2 8224162: assert(profile.count() == 0) failed: sanity in InlineTree::is_not_reached
jiefu
parents: 55105
diff changeset
   129
  // Check and update the profile counter in case of overflow
6502d6a92fe2 8224162: assert(profile.count() == 0) failed: sanity in InlineTree::is_not_reached
jiefu
parents: 55105
diff changeset
   130
  static int check_overflow(int c, Bytecodes::Code code);
6502d6a92fe2 8224162: assert(profile.count() == 0) failed: sanity in InlineTree::is_not_reached
jiefu
parents: 55105
diff changeset
   131
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
 public:
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33069
diff changeset
   133
  void check_is_loaded() const                   { assert(is_loaded(), "not loaded"); }
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33069
diff changeset
   134
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  // Basic method information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  ciFlags flags() const                          { check_is_loaded(); return _flags; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  ciSymbol* name() const                         { return _name; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  ciInstanceKlass* holder() const                { return _holder; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  ciMethodData* method_data();
7432
f06f1253c317 7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents: 7397
diff changeset
   140
  ciMethodData* method_data_or_null();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // Signature information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  ciSignature* signature() const                 { return _signature; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  ciType*      return_type() const               { return _signature->return_type(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  int          arg_size_no_receiver() const      { return _signature->size(); }
9329
79c74b9e2afe 7030715: JSR 292 JRuby test/test_super_call_site_caching.rb asserts with +DoEscapeAnalysis
never
parents: 9323
diff changeset
   146
  // Can only be used on loaded ciMethods
79c74b9e2afe 7030715: JSR 292 JRuby test/test_super_call_site_caching.rb asserts with +DoEscapeAnalysis
never
parents: 9323
diff changeset
   147
  int          arg_size() const                  {
79c74b9e2afe 7030715: JSR 292 JRuby test/test_super_call_site_caching.rb asserts with +DoEscapeAnalysis
never
parents: 9323
diff changeset
   148
    check_is_loaded();
79c74b9e2afe 7030715: JSR 292 JRuby test/test_super_call_site_caching.rb asserts with +DoEscapeAnalysis
never
parents: 9323
diff changeset
   149
    return _signature->size() + (_flags.is_static() ? 0 : 1);
79c74b9e2afe 7030715: JSR 292 JRuby test/test_super_call_site_caching.rb asserts with +DoEscapeAnalysis
never
parents: 9323
diff changeset
   150
  }
43437
90e15b78684e 8168926: C2: Bytecode escape analyzer crashes due to stack overflow
zmajo
parents: 41698
diff changeset
   151
  // Report the number of elements on stack when invoking the current method.
90e15b78684e 8168926: C2: Bytecode escape analyzer crashes due to stack overflow
zmajo
parents: 41698
diff changeset
   152
  // If the method is loaded, arg_size() gives precise information about the
90e15b78684e 8168926: C2: Bytecode escape analyzer crashes due to stack overflow
zmajo
parents: 41698
diff changeset
   153
  // number of stack elements (using the method's signature and its flags).
90e15b78684e 8168926: C2: Bytecode escape analyzer crashes due to stack overflow
zmajo
parents: 41698
diff changeset
   154
  // However, if the method is not loaded, the number of stack elements must
90e15b78684e 8168926: C2: Bytecode escape analyzer crashes due to stack overflow
zmajo
parents: 41698
diff changeset
   155
  // be determined differently, as the method's flags are not yet available.
90e15b78684e 8168926: C2: Bytecode escape analyzer crashes due to stack overflow
zmajo
parents: 41698
diff changeset
   156
  // The invoke_arg_size() method assumes in that case that all bytecodes except
90e15b78684e 8168926: C2: Bytecode escape analyzer crashes due to stack overflow
zmajo
parents: 41698
diff changeset
   157
  // invokestatic and invokedynamic have a receiver that is also pushed onto the
90e15b78684e 8168926: C2: Bytecode escape analyzer crashes due to stack overflow
zmajo
parents: 41698
diff changeset
   158
  // stack by the caller of the current method.
9329
79c74b9e2afe 7030715: JSR 292 JRuby test/test_super_call_site_caching.rb asserts with +DoEscapeAnalysis
never
parents: 9323
diff changeset
   159
  int invoke_arg_size(Bytecodes::Code code) const {
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13291
diff changeset
   160
    if (is_loaded()) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13291
diff changeset
   161
      return arg_size();
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13291
diff changeset
   162
    } else {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13291
diff changeset
   163
      int arg_size = _signature->size();
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13291
diff changeset
   164
      if (code != Bytecodes::_invokestatic &&
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13291
diff changeset
   165
          code != Bytecodes::_invokedynamic) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13291
diff changeset
   166
        arg_size++;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13291
diff changeset
   167
      }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13291
diff changeset
   168
      return arg_size;
9329
79c74b9e2afe 7030715: JSR 292 JRuby test/test_super_call_site_caching.rb asserts with +DoEscapeAnalysis
never
parents: 9323
diff changeset
   169
    }
79c74b9e2afe 7030715: JSR 292 JRuby test/test_super_call_site_caching.rb asserts with +DoEscapeAnalysis
never
parents: 9323
diff changeset
   170
  }
79c74b9e2afe 7030715: JSR 292 JRuby test/test_super_call_site_caching.rb asserts with +DoEscapeAnalysis
never
parents: 9323
diff changeset
   171
29582
9a0bb63adf5a 8073607: add trace events for inlining
iignatyev
parents: 28912
diff changeset
   172
  Method* get_Method() const {
9a0bb63adf5a 8073607: add trace events for inlining
iignatyev
parents: 28912
diff changeset
   173
    Method* m = (Method*)_metadata;
9a0bb63adf5a 8073607: add trace events for inlining
iignatyev
parents: 28912
diff changeset
   174
    assert(m != NULL, "illegal use of unloaded method");
9a0bb63adf5a 8073607: add trace events for inlining
iignatyev
parents: 28912
diff changeset
   175
    return m;
9a0bb63adf5a 8073607: add trace events for inlining
iignatyev
parents: 28912
diff changeset
   176
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // Method code and related information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  address code()                                 { if (_code == NULL) load_code(); return _code; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  int code_size() const                          { check_is_loaded(); return _code_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  int max_stack() const                          { check_is_loaded(); return _max_stack; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  int max_locals() const                         { check_is_loaded(); return _max_locals; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  vmIntrinsics::ID intrinsic_id() const          { check_is_loaded(); return _intrinsic_id; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  bool has_exception_handlers() const            { check_is_loaded(); return _handler_count > 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  int exception_table_length() const             { check_is_loaded(); return _handler_count; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  int interpreter_invocation_count() const       { check_is_loaded(); return _interpreter_invocation_count; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  int interpreter_throwout_count() const         { check_is_loaded(); return _interpreter_throwout_count; }
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23525
diff changeset
   188
  int size_of_parameters() const                 { check_is_loaded(); return _size_of_parameters; }
24442
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24018
diff changeset
   189
  int nmethod_age() const                        { check_is_loaded(); return _nmethod_age; }
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24018
diff changeset
   190
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24018
diff changeset
   191
  // Should the method be compiled with an age counter?
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24018
diff changeset
   192
  bool profile_aging() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
10506
575ad9bccff5 7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents: 10014
diff changeset
   194
  // Code size for inlining decisions.
575ad9bccff5 7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents: 10014
diff changeset
   195
  int code_size_for_inlining();
575ad9bccff5 7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents: 10014
diff changeset
   196
53632
d620a4a1d5ed 8188133: C2: Static field accesses in clinit can trigger deoptimizations
vlivanov
parents: 53595
diff changeset
   197
  bool caller_sensitive()      const { return get_Method()->caller_sensitive();      }
d620a4a1d5ed 8188133: C2: Static field accesses in clinit can trigger deoptimizations
vlivanov
parents: 53595
diff changeset
   198
  bool force_inline()          const { return get_Method()->force_inline();          }
d620a4a1d5ed 8188133: C2: Static field accesses in clinit can trigger deoptimizations
vlivanov
parents: 53595
diff changeset
   199
  bool dont_inline()           const { return get_Method()->dont_inline();           }
d620a4a1d5ed 8188133: C2: Static field accesses in clinit can trigger deoptimizations
vlivanov
parents: 53595
diff changeset
   200
  bool intrinsic_candidate()   const { return get_Method()->intrinsic_candidate();   }
d620a4a1d5ed 8188133: C2: Static field accesses in clinit can trigger deoptimizations
vlivanov
parents: 53595
diff changeset
   201
  bool is_static_initializer() const { return get_Method()->is_static_initializer(); }
13291
9de3b1387cb8 6711908: JVM needs direct access to some annotations
jrose
parents: 11193
diff changeset
   202
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   203
  int comp_level();
10014
a5c2141ee857 7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents: 9329
diff changeset
   204
  int highest_osr_comp_level();
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6187
diff changeset
   205
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  Bytecodes::Code java_code_at_bci(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    address bcp = code() + bci;
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7432
diff changeset
   208
    return Bytecodes::java_code_at(NULL, bcp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  }
19710
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 17383
diff changeset
   210
  Bytecodes::Code raw_code_at_bci(int bci) {
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 17383
diff changeset
   211
    address bcp = code() + bci;
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 17383
diff changeset
   212
    return Bytecodes::code_at(NULL, bcp);
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 17383
diff changeset
   213
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  BCEscapeAnalyzer  *get_bcea();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  ciMethodBlocks    *get_method_blocks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  bool    has_linenumber_table() const;          // length unknown until decompression
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  u_char* compressed_linenumber_table() const;   // not preserved by gc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  int line_number_from_bci(int bci) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  // Runtime information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  int           vtable_index();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  address       native_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  address       interpreter_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // Analysis and profiling.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  // Usage note: liveness_at_bci and init_vars should be wrapped in ResourceMarks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  bool          has_monitor_bytecodes() const    { return _uses_monitors; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  bool          has_balanced_monitors();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
3910
67050ceda719 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 2534
diff changeset
   233
  // Returns a bitmap indicating which locals are required to be
67050ceda719 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 2534
diff changeset
   234
  // maintained as live for deopt.  raw_liveness_at_bci is always the
67050ceda719 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 2534
diff changeset
   235
  // direct output of the liveness computation while liveness_at_bci
67050ceda719 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 2534
diff changeset
   236
  // may mark all locals as live to improve support for debugging Java
67050ceda719 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 2534
diff changeset
   237
  // code by maintaining the state of as many locals as possible.
67050ceda719 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 2534
diff changeset
   238
  MethodLivenessResult raw_liveness_at_bci(int bci);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  MethodLivenessResult liveness_at_bci(int bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  // Get the interpreters viewpoint on oop liveness.  MethodLiveness is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  // conservative in the sense that it may consider locals to be live which
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  // cannot be live, like in the case where a local could contain an oop or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  // a primitive along different paths.  In that case the local must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  // dead when those paths merge. Since the interpreter's viewpoint is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  // used when gc'ing an interpreter frame we need to use its viewpoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  // during OSR when loading the locals.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
38177
b0c9cb06506b 8141501: Problems with BitMap buffer management
stefank
parents: 35135
diff changeset
   249
  ResourceBitMap live_local_oops_at_bci(int bci);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
55105
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54721
diff changeset
   251
  bool needs_clinit_barrier() const;
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54721
diff changeset
   252
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
#ifdef COMPILER1
38177
b0c9cb06506b 8141501: Problems with BitMap buffer management
stefank
parents: 35135
diff changeset
   254
  const BitMap& bci_block_start();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  ciTypeFlow*   get_flow_analysis();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  ciTypeFlow*   get_osr_flow_analysis(int osr_bci);  // alternate entry point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  ciCallProfile call_profile_at_bci(int bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  int           interpreter_call_site_count(int bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
23525
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 22243
diff changeset
   262
  // Does type profiling provide any useful information at this point?
46542
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 44738
diff changeset
   263
  bool          argument_profiled_type(int bci, int i, ciKlass*& type, ProfilePtrKind& ptr_kind);
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 44738
diff changeset
   264
  bool          parameter_profiled_type(int i, ciKlass*& type, ProfilePtrKind& ptr_kind);
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 44738
diff changeset
   265
  bool          return_profiled_type(int bci, ciKlass*& type, ProfilePtrKind& ptr_kind);
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 20695
diff changeset
   266
14621
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14478
diff changeset
   267
  ciField*      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
   268
  ciMethod*     get_method_at_bci(int bci, bool &will_link, ciSignature* *declared_signature);
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34169
diff changeset
   269
  ciMethod*     get_method_at_bci(int bci) {
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34169
diff changeset
   270
    bool ignored_will_link;
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34169
diff changeset
   271
    ciSignature* ignored_declared_signature;
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34169
diff changeset
   272
    return get_method_at_bci(bci, ignored_will_link, &ignored_declared_signature);
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34169
diff changeset
   273
  }
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34169
diff changeset
   274
53595
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53244
diff changeset
   275
  ciKlass*      get_declared_method_holder_at_bci(int bci);
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53244
diff changeset
   276
41698
a3f113541801 8134389: Crash in HotSpot with jvm.dll+0x42b48 ciObjectFactory::create_new_metadata
jcm
parents: 40664
diff changeset
   277
  ciSignature*  get_declared_signature_at_bci(int bci) {
a3f113541801 8134389: Crash in HotSpot with jvm.dll+0x42b48 ciObjectFactory::create_new_metadata
jcm
parents: 40664
diff changeset
   278
    bool ignored_will_link;
a3f113541801 8134389: Crash in HotSpot with jvm.dll+0x42b48 ciObjectFactory::create_new_metadata
jcm
parents: 40664
diff changeset
   279
    ciSignature* declared_signature;
a3f113541801 8134389: Crash in HotSpot with jvm.dll+0x42b48 ciObjectFactory::create_new_metadata
jcm
parents: 40664
diff changeset
   280
    get_method_at_bci(bci, ignored_will_link, &declared_signature);
a3f113541801 8134389: Crash in HotSpot with jvm.dll+0x42b48 ciObjectFactory::create_new_metadata
jcm
parents: 40664
diff changeset
   281
    assert(declared_signature != NULL, "cannot be null");
a3f113541801 8134389: Crash in HotSpot with jvm.dll+0x42b48 ciObjectFactory::create_new_metadata
jcm
parents: 40664
diff changeset
   282
    return declared_signature;
a3f113541801 8134389: Crash in HotSpot with jvm.dll+0x42b48 ciObjectFactory::create_new_metadata
jcm
parents: 40664
diff changeset
   283
  }
a3f113541801 8134389: Crash in HotSpot with jvm.dll+0x42b48 ciObjectFactory::create_new_metadata
jcm
parents: 40664
diff changeset
   284
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  // Given a certain calling environment, find the monomorphic target
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  // for the call.  Return NULL if the call is not monomorphic in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  // its calling environment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  ciMethod* find_monomorphic_target(ciInstanceKlass* caller,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
                                    ciInstanceKlass* callee_holder,
30223
82ab7b6b4927 8062280: C2: inlining failure due to access checks being too strict
vlivanov
parents: 29582
diff changeset
   290
                                    ciInstanceKlass* actual_receiver,
82ab7b6b4927 8062280: C2: inlining failure due to access checks being too strict
vlivanov
parents: 29582
diff changeset
   291
                                    bool check_access = true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  // Given a known receiver klass, find the target for the call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  // Return NULL if the call has no target or is abstract.
30223
82ab7b6b4927 8062280: C2: inlining failure due to access checks being too strict
vlivanov
parents: 29582
diff changeset
   295
  ciMethod* resolve_invoke(ciKlass* caller, ciKlass* exact_receiver, bool check_access = true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  // Find the proper vtable index to invoke this method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  int resolve_vtable_index(ciKlass* caller, ciKlass* receiver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  bool has_option(const char *option);
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33069
diff changeset
   301
  bool has_option_value(const char* option, double& value);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  bool can_be_compiled();
48024
6199dfaf72da 8191688: Assert failed in > 200 tests: failed dependencies, but counter didn't change
dlong
parents: 47687
diff changeset
   303
  bool can_be_parsed() const { return _can_be_parsed; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  bool can_be_osr_compiled(int entry_bci);
15479
e3c00ec80145 8006613: adding reason to made_not_compilable
vlivanov
parents: 14621
diff changeset
   305
  void set_not_compilable(const char* reason = NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  bool has_compiled_code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  void log_nmethod_identity(xmlStream* log);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  bool is_not_reached(int bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  bool was_executed_more_than(int times);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  bool has_unloaded_classes_in_signature();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  bool is_klass_loaded(int refinfo_index, bool must_be_resolved) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  bool check_call(int refinfo_index, bool is_static) const;
7432
f06f1253c317 7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents: 7397
diff changeset
   313
  bool ensure_method_data();  // make sure it exists in the VM also
20695
4f5a5e95090b 8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method
twisti
parents: 19710
diff changeset
   314
  MethodCounters* ensure_method_counters();
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   315
  int instructions_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  int scale_count(int count, float prof_factor = 1.);  // make MDO count commensurate with IIC
4581
e89fbd1bcb3d 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 4567
diff changeset
   317
16617
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 15479
diff changeset
   318
  // Stack walking support
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 15479
diff changeset
   319
  bool is_ignored_by_security_stack_walk() const;
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 15479
diff changeset
   320
4581
e89fbd1bcb3d 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 4567
diff changeset
   321
  // JSR 292 support
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13291
diff changeset
   322
  bool is_method_handle_intrinsic()  const;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13291
diff changeset
   323
  bool is_compiled_lambda_form() const;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13291
diff changeset
   324
  bool has_member_arg() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  // What kind of ciObject is this?
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   327
  bool is_method() const                         { return true; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  // Java access flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  bool is_public      () const                   { return flags().is_public(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  bool is_private     () const                   { return flags().is_private(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  bool is_protected   () const                   { return flags().is_protected(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  bool is_static      () const                   { return flags().is_static(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  bool is_final       () const                   { return flags().is_final(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  bool is_synchronized() const                   { return flags().is_synchronized(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  bool is_native      () const                   { return flags().is_native(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  bool is_interface   () const                   { return flags().is_interface(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  bool is_abstract    () const                   { return flags().is_abstract(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  bool is_strict      () const                   { return flags().is_strict(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  // Other flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  bool is_empty_method() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  bool is_vanilla_constructor() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  bool is_final_method() const                   { return is_final() || holder()->is_final(); }
53595
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53244
diff changeset
   345
  bool is_default_method() const                 { return !is_abstract() && !is_private() &&
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53244
diff changeset
   346
                                                          holder()->is_interface(); }
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53244
diff changeset
   347
  bool is_overpass    () const                   { check_is_loaded(); return _is_overpass; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  bool has_loops      () const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  bool has_jsrs       () const;
34169
b0b7187852b7 8140650: Method::is_accessor should cover getters and setters for all types
shade
parents: 33451
diff changeset
   350
  bool is_getter      () const;
b0b7187852b7 8140650: Method::is_accessor should cover getters and setters for all types
shade
parents: 33451
diff changeset
   351
  bool is_setter      () const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  bool is_accessor    () const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  bool is_initializer () const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  bool can_be_statically_bound() const           { return _can_be_statically_bound; }
35071
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34169
diff changeset
   355
  bool has_reserved_stack_access() const         { return _has_reserved_stack_access; }
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17124
diff changeset
   356
  bool is_boxing_method() const;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 17124
diff changeset
   357
  bool is_unboxing_method() const;
44738
11431bbc9549 8168699: Validate special case invocations
coleenp
parents: 43947
diff changeset
   358
  bool is_object_initializer() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
54721
3661ad97da8f 8223171: Redundant nmethod dependencies for effectively final methods
vlivanov
parents: 53632
diff changeset
   360
  bool can_be_statically_bound(ciInstanceKlass* context) const;
3661ad97da8f 8223171: Redundant nmethod dependencies for effectively final methods
vlivanov
parents: 53632
diff changeset
   361
22243
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 21099
diff changeset
   362
  // Replay data methods
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 21099
diff changeset
   363
  void dump_name_as_ascii(outputStream* st);
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 21099
diff changeset
   364
  void dump_replay_data(outputStream* st);
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 21099
diff changeset
   365
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  // Print the bytecodes of this method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  void print_codes_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  void print_codes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
    print_codes_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  void print_codes_on(int from, int to, outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  // Print the name of this method in various incarnations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  void print_name(outputStream* st = tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  void print_short_name(outputStream* st = tty);
29582
9a0bb63adf5a 8073607: add trace events for inlining
iignatyev
parents: 28912
diff changeset
   376
43947
a52ee13998f3 8174721: C1: Inlining through MH invokers/linkers in unreachable code is unsafe
vlivanov
parents: 43437
diff changeset
   377
  static bool is_consistent_info(ciMethod* declared_method, ciMethod* resolved_method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
   379
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50113
diff changeset
   380
#endif // SHARE_CI_CIMETHOD_HPP