src/hotspot/share/interpreter/interpreterRuntime.hpp
author goetz
Thu, 08 Feb 2018 09:23:49 +0100
changeset 49368 2ed1c37df3a5
parent 47770 32d741a2b271
child 49480 d7df2dd501ce
permissions -rw-r--r--
8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors. Reviewed-by: coleenp, dholmes, mdoerr, njian
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
46727
6e4a84748e2c 8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents: 46430
diff changeset
     2
 * Copyright (c) 1997, 2017, 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: 4429
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4429
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: 4429
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: 5882
diff changeset
    25
#ifndef SHARE_VM_INTERPRETER_INTERPRETERRUNTIME_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    26
#define SHARE_VM_INTERPRETER_INTERPRETERRUNTIME_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    28
#include "interpreter/bytecode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    29
#include "interpreter/linkResolver.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    30
#include "memory/universe.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    31
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    32
#include "runtime/frame.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    33
#include "runtime/signature.hpp"
37456
bf26e0f4235f 8153742: Move Thread::current() to thread.hpp
stefank
parents: 37435
diff changeset
    34
#include "runtime/thread.hpp"
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 37466
diff changeset
    35
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    36
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// The InterpreterRuntime is called by the interpreter for everything
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// that cannot/should not be dealt with in assembly and needs C support.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
class InterpreterRuntime: AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  friend class BytecodeClosure; // for method and bcp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  friend class PrintingClosure; // for method and bcp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
 private:
47770
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    45
  // Helper class to access current interpreter state
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    46
  class LastFrameAccessor : public StackObj {
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    47
    frame _last_frame;
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    48
  public:
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    49
    LastFrameAccessor(JavaThread* thread) {
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    50
      assert(thread == Thread::current(), "sanity");
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    51
      _last_frame = thread->last_frame();
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    52
    }
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    53
    bool is_interpreted_frame() const              { return _last_frame.is_interpreted_frame(); }
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    54
    Method*   method() const                       { return _last_frame.interpreter_frame_method(); }
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    55
    address   bcp() const                          { return _last_frame.interpreter_frame_bcp(); }
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    56
    int       bci() const                          { return _last_frame.interpreter_frame_bci(); }
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    57
    address   mdp() const                          { return _last_frame.interpreter_frame_mdp(); }
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    58
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    59
    void      set_bcp(address bcp)                 { _last_frame.interpreter_frame_set_bcp(bcp); }
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    60
    void      set_mdp(address dp)                  { _last_frame.interpreter_frame_set_mdp(dp); }
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    61
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    62
    // pass method to avoid calling unsafe bcp_to_method (partial fix 4926272)
47770
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    63
    Bytecodes::Code code() const                   { return Bytecodes::code_at(method(), bcp()); }
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    64
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    65
    Bytecode  bytecode() const                     { return Bytecode(method(), bcp()); }
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    66
    int get_index_u1(Bytecodes::Code bc) const     { return bytecode().get_index_u1(bc); }
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    67
    int get_index_u2(Bytecodes::Code bc) const     { return bytecode().get_index_u2(bc); }
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    68
    int get_index_u2_cpcache(Bytecodes::Code bc) const
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    69
                                                   { return bytecode().get_index_u2_cpcache(bc); }
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    70
    int get_index_u4(Bytecodes::Code bc) const     { return bytecode().get_index_u4(bc); }
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    71
    int number_of_dimensions() const               { return bcp()[3]; }
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    72
    ConstantPoolCacheEntry* cache_entry_at(int i) const
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    73
                                                   { return method()->constants()->cache()->entry_at(i); }
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    74
    ConstantPoolCacheEntry* cache_entry() const    { return cache_entry_at(Bytes::get_native_u2(bcp() + 1)); }
46424
2dfc07162b35 8179305: Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 40010
diff changeset
    75
47770
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    76
    oop callee_receiver(Symbol* signature) {
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    77
      return _last_frame.interpreter_callee_receiver(signature);
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    78
    }
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    79
    BasicObjectLock* monitor_begin() const {
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    80
      return _last_frame.interpreter_frame_monitor_begin();
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    81
    }
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    82
    BasicObjectLock* monitor_end() const {
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    83
      return _last_frame.interpreter_frame_monitor_end();
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    84
    }
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    85
    BasicObjectLock* next_monitor(BasicObjectLock* current) const {
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    86
      return _last_frame.next_monitor_in_interpreter_frame(current);
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    87
    }
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    88
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    89
    frame& get_frame()                             { return _last_frame; }
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    90
  };
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    91
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
    92
  static void      set_bcp_and_mdp(address bcp, JavaThread*thread);
22836
e7e511228518 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 19266
diff changeset
    93
  static void      note_trap_inner(JavaThread* thread, int reason,
46727
6e4a84748e2c 8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents: 46430
diff changeset
    94
                                   const methodHandle& trap_method, int trap_bci, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  static void      note_trap(JavaThread *thread, int reason, TRAPS);
22836
e7e511228518 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 19266
diff changeset
    96
#ifdef CC_INTERP
e7e511228518 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 19266
diff changeset
    97
  // Profile traps in C++ interpreter.
e7e511228518 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 19266
diff changeset
    98
  static void      note_trap(JavaThread* thread, int reason, Method *method, int trap_bci);
e7e511228518 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 19266
diff changeset
    99
#endif // CC_INTERP
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
22836
e7e511228518 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 19266
diff changeset
   101
  // Inner work method for Interpreter's frequency counter overflow.
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 2570
diff changeset
   102
  static nmethod* frequency_counter_overflow_inner(JavaThread* thread, address branch_bcp);
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 2570
diff changeset
   103
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // Constants
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  static void    ldc           (JavaThread* thread, bool wide);
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   107
  static void    resolve_ldc   (JavaThread* thread, Bytecodes::Code bytecode);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // Allocation
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   110
  static void    _new          (JavaThread* thread, ConstantPool* pool, int index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  static void    newarray      (JavaThread* thread, BasicType type, jint size);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   112
  static void    anewarray     (JavaThread* thread, ConstantPool* pool, int index, jint size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  static void    multianewarray(JavaThread* thread, jint* first_size_address);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  static void    register_finalizer(JavaThread* thread, oopDesc* obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // Quicken instance-of and check-cast bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  static void    quicken_io_cc(JavaThread* thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // Exceptions thrown by the interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  static void    throw_AbstractMethodError(JavaThread* thread);
49368
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 47770
diff changeset
   121
  static void    throw_AbstractMethodErrorWithMethod(JavaThread* thread, Method* oop);
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 47770
diff changeset
   122
  static void    throw_AbstractMethodErrorVerbose(JavaThread* thread,
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 47770
diff changeset
   123
                                                  Klass* recvKlass,
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 47770
diff changeset
   124
                                                  Method* missingMethod);
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 47770
diff changeset
   125
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  static void    throw_IncompatibleClassChangeError(JavaThread* thread);
49368
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 47770
diff changeset
   127
  static void    throw_IncompatibleClassChangeErrorVerbose(JavaThread* thread,
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 47770
diff changeset
   128
                                                           Klass* resc,
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 47770
diff changeset
   129
                                                           Klass* interfaceKlass);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  static void    throw_StackOverflowError(JavaThread* thread);
35071
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 33593
diff changeset
   131
  static void    throw_delayed_StackOverflowError(JavaThread* thread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  static void    throw_ArrayIndexOutOfBoundsException(JavaThread* thread, char* name, jint index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  static void    throw_ClassCastException(JavaThread* thread, oopDesc* obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  static void    create_exception(JavaThread* thread, char* name, char* message);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  static void    create_klass_exception(JavaThread* thread, char* name, oopDesc* obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  static address exception_handler_for_exception(JavaThread* thread, oopDesc* exception);
19266
bb0324cbe0aa 7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents: 17000
diff changeset
   137
#if INCLUDE_JVMTI
bb0324cbe0aa 7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents: 17000
diff changeset
   138
  static void    member_name_arg_or_null(JavaThread* thread, address dmh, Method* m, address bcp);
bb0324cbe0aa 7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents: 17000
diff changeset
   139
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  static void    throw_pending_exception(JavaThread* thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
22836
e7e511228518 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 19266
diff changeset
   142
#ifdef CC_INTERP
e7e511228518 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 19266
diff changeset
   143
  // Profile traps in C++ interpreter.
e7e511228518 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 19266
diff changeset
   144
  static void    note_nullCheck_trap (JavaThread* thread, Method *method, int trap_bci);
e7e511228518 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 19266
diff changeset
   145
  static void    note_div0Check_trap (JavaThread* thread, Method *method, int trap_bci);
e7e511228518 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 19266
diff changeset
   146
  static void    note_rangeCheck_trap(JavaThread* thread, Method *method, int trap_bci);
e7e511228518 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 19266
diff changeset
   147
  static void    note_classCheck_trap(JavaThread* thread, Method *method, int trap_bci);
e7e511228518 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 19266
diff changeset
   148
  static void    note_arrayCheck_trap(JavaThread* thread, Method *method, int trap_bci);
35214
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 35071
diff changeset
   149
  // A dummy for macros that shall not profile traps.
22836
e7e511228518 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 19266
diff changeset
   150
  static void    note_no_trap(JavaThread* thread, Method *method, int trap_bci) {}
e7e511228518 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 19266
diff changeset
   151
#endif // CC_INTERP
e7e511228518 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 19266
diff changeset
   152
30132
1f788eb36811 8076492: Make common code from template interpreter code
coleenp
parents: 29180
diff changeset
   153
  static void resolve_from_cache(JavaThread* thread, Bytecodes::Code bytecode);
1f788eb36811 8076492: Make common code from template interpreter code
coleenp
parents: 29180
diff changeset
   154
 private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // Statics & fields
30132
1f788eb36811 8076492: Make common code from template interpreter code
coleenp
parents: 29180
diff changeset
   156
  static void resolve_get_put(JavaThread* thread, Bytecodes::Code bytecode);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
30132
1f788eb36811 8076492: Make common code from template interpreter code
coleenp
parents: 29180
diff changeset
   158
  // Calls
1f788eb36811 8076492: Make common code from template interpreter code
coleenp
parents: 29180
diff changeset
   159
  static void resolve_invoke(JavaThread* thread, Bytecodes::Code bytecode);
1f788eb36811 8076492: Make common code from template interpreter code
coleenp
parents: 29180
diff changeset
   160
  static void resolve_invokehandle (JavaThread* thread);
1f788eb36811 8076492: Make common code from template interpreter code
coleenp
parents: 29180
diff changeset
   161
  static void resolve_invokedynamic(JavaThread* thread);
1f788eb36811 8076492: Make common code from template interpreter code
coleenp
parents: 29180
diff changeset
   162
1f788eb36811 8076492: Make common code from template interpreter code
coleenp
parents: 29180
diff changeset
   163
 public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // Synchronization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  static void    monitorenter(JavaThread* thread, BasicObjectLock* elem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  static void    monitorexit (JavaThread* thread, BasicObjectLock* elem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  static void    throw_illegal_monitor_state_exception(JavaThread* thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  static void    new_illegal_monitor_state_exception(JavaThread* thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // Breakpoints
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   172
  static void _breakpoint(JavaThread* thread, Method* method, address bcp);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   173
  static Bytecodes::Code get_original_bytecode_at(JavaThread* thread, Method* method, address bcp);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   174
  static void            set_original_bytecode_at(JavaThread* thread, Method* method, address bcp, Bytecodes::Code new_code);
47770
32d741a2b271 8179624: [REDO] Avoid repeated calls to JavaThread::last_frame in InterpreterRuntime
iklam
parents: 47216
diff changeset
   175
  static bool is_breakpoint(JavaThread *thread) { return Bytecodes::code_or_bp_at(LastFrameAccessor(thread).bcp()) == Bytecodes::_breakpoint; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  // Safepoints
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  static void    at_safepoint(JavaThread* thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  // Debugger support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  static void post_field_access(JavaThread *thread, oopDesc* obj,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    ConstantPoolCacheEntry *cp_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  static void post_field_modification(JavaThread *thread, oopDesc* obj,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    ConstantPoolCacheEntry *cp_entry, jvalue *value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  static void post_method_entry(JavaThread *thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  static void post_method_exit (JavaThread *thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  static int  interpreter_contains(address pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  // Native signature handlers
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   190
  static void prepare_native_call(JavaThread* thread, Method* method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  static address slow_signature_handler(JavaThread* thread,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   192
                                        Method* method,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
                                        intptr_t* from, intptr_t* to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
10520
db9177a52cee 7085012: ARM: com/sun/jdi/PopSynchronousTest.java still fails
roland
parents: 10004
diff changeset
   195
#if defined(IA32) || defined(AMD64) || defined(ARM)
db9177a52cee 7085012: ARM: com/sun/jdi/PopSynchronousTest.java still fails
roland
parents: 10004
diff changeset
   196
  // Popframe support (only needed on x86, AMD64 and ARM)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  static void popframe_move_outgoing_args(JavaThread* thread, void* src_address, void* dest_address);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
37152
29e68f1d35bb 8152065: TraceBytecodes breaks the interpreter expression stack
coleenp
parents: 35214
diff changeset
   200
  // bytecode tracing is only used by the TraceBytecodes
29e68f1d35bb 8152065: TraceBytecodes breaks the interpreter expression stack
coleenp
parents: 35214
diff changeset
   201
  static intptr_t trace_bytecode(JavaThread* thread, intptr_t preserve_this_value, intptr_t tos, intptr_t tos2) PRODUCT_RETURN0;
29e68f1d35bb 8152065: TraceBytecodes breaks the interpreter expression stack
coleenp
parents: 35214
diff changeset
   202
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // Platform dependent stuff
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 37466
diff changeset
   204
#include CPU_HEADER(interpreterRT)
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
   205
31382
8d526a6991e1 8087133: Improve sharing of native wrappers in SignatureHandlerLibrary
bdelsart
parents: 30132
diff changeset
   206
  // optional normalization of fingerprints to reduce the number of adapters
8d526a6991e1 8087133: Improve sharing of native wrappers in SignatureHandlerLibrary
bdelsart
parents: 30132
diff changeset
   207
  static uint64_t normalize_fast_native_fingerprint(uint64_t fingerprint);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  // Interpreter's frequency counter overflow
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  static nmethod* frequency_counter_overflow(JavaThread* thread, address branch_bcp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  // Interpreter profiling support
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   213
  static jint    bcp_to_di(Method* method, address cur_bcp);
7889
02144432d0e1 4930919: race condition in MDO creation at back branch locations
iveresov
parents: 7397
diff changeset
   214
  static void    profile_method(JavaThread* thread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  static void    update_mdp_for_ret(JavaThread* thread, int bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
#ifdef ASSERT
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   217
  static void    verify_mdp(Method* method, address bcp, address mdp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
#endif // ASSERT
17000
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 14583
diff changeset
   219
  static MethodCounters* build_method_counters(JavaThread* thread, Method* m);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
class SignatureHandlerLibrary: public AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  enum { buffer_size =  1*K }; // the size of the temporary code buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  enum { blob_size   = 32*K }; // the size of a handler code blob.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  static BufferBlob*              _handler_blob; // the current buffer blob containing the generated handlers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  static address                  _handler;      // next available address within _handler_blob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  static GrowableArray<uint64_t>* _fingerprints; // the fingerprint collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  static GrowableArray<address>*  _handlers;     // the corresponding handlers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  static address                  _buffer;       // the temporary code buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  static address set_handler_blob();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  static void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  static address set_handler(CodeBuffer* buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  static void pd_set_handler(address handler);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
 public:
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 31620
diff changeset
   241
  static void add(const methodHandle& method);
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 31382
diff changeset
   242
  static void add(uint64_t fingerprint, address handler);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
   244
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
   245
#endif // SHARE_VM_INTERPRETER_INTERPRETERRUNTIME_HPP