src/hotspot/share/c1/c1_Runtime1.cpp
author coleenp
Wed, 13 Nov 2019 08:23:23 -0500
changeset 59056 15936b142f86
parent 58545 725244418646
permissions -rw-r--r--
8233913: Remove implicit conversion from Method* to methodHandle Summary: Fix call sites to use existing THREAD local or pass down THREAD local for shallower callsites. Make linkResolver methods return Method* for caller to handleize if needed. Reviewed-by: iklam, thartmann, hseigel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53582
881c5fbeb849 8218041: Assorted wrong/missing includes
rehn
parents: 51965
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: 4888
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4888
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: 4888
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: 7106
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    26
#include "asm/codeBuffer.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    27
#include "c1/c1_CodeStubs.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    28
#include "c1/c1_Defs.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    29
#include "c1/c1_FrameMap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    30
#include "c1/c1_LIRAssembler.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    31
#include "c1/c1_MacroAssembler.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    32
#include "c1/c1_Runtime1.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    33
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    34
#include "classfile/vmSymbols.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    35
#include "code/codeBlob.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    36
#include "code/compiledIC.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    37
#include "code/pcDesc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    38
#include "code/scopeDesc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    39
#include "code/vtableStubs.hpp"
58545
725244418646 8165056: move JIT Compiler related files from runtime/ to compiler/ directory
xliu
parents: 57893
diff changeset
    40
#include "compiler/compilationPolicy.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    41
#include "compiler/disassembler.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30590
diff changeset
    42
#include "gc/shared/barrierSet.hpp"
49906
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
    43
#include "gc/shared/c1/barrierSetC1.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30590
diff changeset
    44
#include "gc/shared/collectedHeap.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    45
#include "interpreter/bytecode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    46
#include "interpreter/interpreter.hpp"
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50094
diff changeset
    47
#include "jfr/support/jfrIntrinsics.hpp"
35216
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents: 35071
diff changeset
    48
#include "logging/log.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    49
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    50
#include "memory/oopFactory.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    51
#include "memory/resourceArea.hpp"
54786
ebf733a324d4 8223624: Cleanup includes of universe.hpp
stefank
parents: 54623
diff changeset
    52
#include "memory/universe.hpp"
47998
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47658
diff changeset
    53
#include "oops/access.inline.hpp"
49041
44122f767467 8198286: Direct memory accessors in typeArrayOop.hpp should use Access API
eosterlund
parents: 47998
diff changeset
    54
#include "oops/objArrayOop.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    55
#include "oops/objArrayKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    56
#include "oops/oop.inline.hpp"
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39421
diff changeset
    57
#include "runtime/atomic.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    58
#include "runtime/biasedLocking.hpp"
51467
12997ebbc0d8 8209647: constantPoolHandle::constantPoolHandle(ConstantPool*) when precompiled header is disabled
iklam
parents: 51314
diff changeset
    59
#include "runtime/fieldDescriptor.inline.hpp"
12997ebbc0d8 8209647: constantPoolHandle::constantPoolHandle(ConstantPool*) when precompiled header is disabled
iklam
parents: 51314
diff changeset
    60
#include "runtime/frame.inline.hpp"
53582
881c5fbeb849 8218041: Assorted wrong/missing includes
rehn
parents: 51965
diff changeset
    61
#include "runtime/handles.inline.hpp"
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49383
diff changeset
    62
#include "runtime/interfaceSupport.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    63
#include "runtime/javaCalls.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    64
#include "runtime/sharedRuntime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    65
#include "runtime/threadCritical.hpp"
49480
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49470
diff changeset
    66
#include "runtime/vframe.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    67
#include "runtime/vframeArray.hpp"
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 25351
diff changeset
    68
#include "runtime/vm_version.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    69
#include "utilities/copy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    70
#include "utilities/events.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
// Implementation of StubAssembler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
StubAssembler::StubAssembler(CodeBuffer* code, const char * name, int stub_id) : C1_MacroAssembler(code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  _name = name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  _must_gc_arguments = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  _frame_size = no_frame_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  _num_rt_args = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  _stub_id = stub_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
void StubAssembler::set_info(const char* name, bool must_gc_arguments) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  _name = name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  _must_gc_arguments = must_gc_arguments;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
void StubAssembler::set_frame_size(int size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  if (_frame_size == no_frame_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    _frame_size = size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  assert(_frame_size == size, "can't change the frame size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
void StubAssembler::set_num_rt_args(int args) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  if (_num_rt_args == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    _num_rt_args = args;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  assert(_num_rt_args == args, "can't change the number of args");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
// Implementation of Runtime1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
CodeBlob* Runtime1::_blobs[Runtime1::number_of_ids];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
const char *Runtime1::_blob_names[] = {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  RUNTIME1_STUBS(STUB_NAME, LAST_STUB_NAME)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
// statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
int Runtime1::_generic_arraycopy_cnt = 0;
9102
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
   115
int Runtime1::_generic_arraycopystub_cnt = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
int Runtime1::_arraycopy_slowcase_cnt = 0;
9102
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
   117
int Runtime1::_arraycopy_checkcast_cnt = 0;
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
   118
int Runtime1::_arraycopy_checkcast_attempt_cnt = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
int Runtime1::_new_type_array_slowcase_cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
int Runtime1::_new_object_array_slowcase_cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
int Runtime1::_new_instance_slowcase_cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
int Runtime1::_new_multi_array_slowcase_cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
int Runtime1::_monitorenter_slowcase_cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
int Runtime1::_monitorexit_slowcase_cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
int Runtime1::_patch_code_slowcase_cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
int Runtime1::_throw_range_check_exception_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
int Runtime1::_throw_index_exception_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
int Runtime1::_throw_div0_exception_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
int Runtime1::_throw_null_pointer_exception_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
int Runtime1::_throw_class_cast_exception_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
int Runtime1::_throw_incompatible_class_change_error_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
int Runtime1::_throw_array_store_exception_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
int Runtime1::_throw_count = 0;
9102
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
   134
24944
5b01505efb7a 8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents: 24442
diff changeset
   135
static int _byte_arraycopy_stub_cnt = 0;
5b01505efb7a 8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents: 24442
diff changeset
   136
static int _short_arraycopy_stub_cnt = 0;
5b01505efb7a 8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents: 24442
diff changeset
   137
static int _int_arraycopy_stub_cnt = 0;
5b01505efb7a 8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents: 24442
diff changeset
   138
static int _long_arraycopy_stub_cnt = 0;
5b01505efb7a 8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents: 24442
diff changeset
   139
static int _oop_arraycopy_stub_cnt = 0;
9102
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
   140
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
   141
address Runtime1::arraycopy_count_address(BasicType type) {
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
   142
  switch (type) {
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
   143
  case T_BOOLEAN:
24944
5b01505efb7a 8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents: 24442
diff changeset
   144
  case T_BYTE:   return (address)&_byte_arraycopy_stub_cnt;
9102
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
   145
  case T_CHAR:
24944
5b01505efb7a 8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents: 24442
diff changeset
   146
  case T_SHORT:  return (address)&_short_arraycopy_stub_cnt;
9102
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
   147
  case T_FLOAT:
24944
5b01505efb7a 8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents: 24442
diff changeset
   148
  case T_INT:    return (address)&_int_arraycopy_stub_cnt;
9102
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
   149
  case T_DOUBLE:
24944
5b01505efb7a 8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents: 24442
diff changeset
   150
  case T_LONG:   return (address)&_long_arraycopy_stub_cnt;
9102
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
   151
  case T_ARRAY:
24944
5b01505efb7a 8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents: 24442
diff changeset
   152
  case T_OBJECT: return (address)&_oop_arraycopy_stub_cnt;
9102
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
   153
  default:
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
   154
    ShouldNotReachHere();
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
   155
    return NULL;
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
   156
  }
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
   157
}
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
   158
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
   159
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
// Simple helper to see if the caller of a runtime stub which
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
// entered the VM has been deoptimized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
static bool caller_is_deopted() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  JavaThread* thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  RegisterMap reg_map(thread, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  frame runtime_frame = thread->last_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  frame caller_frame = runtime_frame.sender(&reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  assert(caller_frame.is_compiled_frame(), "must be compiled");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  return caller_frame.is_deoptimized_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
// Stress deoptimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
static void deopt_caller() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  if ( !caller_is_deopted()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    JavaThread* thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    RegisterMap reg_map(thread, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    frame runtime_frame = thread->last_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    frame caller_frame = runtime_frame.sender(&reg_map);
4761
bdb7375a1fee 6902182: 4/4 Starting with jdwp agent should not incur performance penalty
dcubed
parents: 4571
diff changeset
   181
    Deoptimization::deoptimize_frame(thread, caller_frame.id());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    assert(caller_is_deopted(), "Must be deoptimized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
49906
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   186
class StubIDStubAssemblerCodeGenClosure: public StubAssemblerCodeGenClosure {
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   187
 private:
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   188
  Runtime1::StubID _id;
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   189
 public:
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   190
  StubIDStubAssemblerCodeGenClosure(Runtime1::StubID id) : _id(id) {}
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   191
  virtual OopMapSet* generate_code(StubAssembler* sasm) {
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   192
    return Runtime1::generate_code_for(_id, sasm);
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   193
  }
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   194
};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
49906
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   196
CodeBlob* Runtime1::generate_blob(BufferBlob* buffer_blob, int stub_id, const char* name, bool expect_oop_map, StubAssemblerCodeGenClosure* cl) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  // create code buffer for code storage
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   199
  CodeBuffer code(buffer_blob);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30764
diff changeset
   201
  OopMapSet* oop_maps;
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30764
diff changeset
   202
  int frame_size;
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30764
diff changeset
   203
  bool must_gc_arguments;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
42664
29142a56c193 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 41057
diff changeset
   205
  Compilation::setup_code_buffer(&code, 0);
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30764
diff changeset
   206
42664
29142a56c193 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 41057
diff changeset
   207
  // create assembler for code generation
49906
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   208
  StubAssembler* sasm = new StubAssembler(&code, name, stub_id);
42664
29142a56c193 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 41057
diff changeset
   209
  // generate code for runtime stub
49906
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   210
  oop_maps = cl->generate_code(sasm);
42664
29142a56c193 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 41057
diff changeset
   211
  assert(oop_maps == NULL || sasm->frame_size() != no_frame_size,
29142a56c193 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 41057
diff changeset
   212
         "if stub has an oop map it must have a valid frame size");
49906
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   213
  assert(!expect_oop_map || oop_maps != NULL, "must have an oopmap");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
42664
29142a56c193 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 41057
diff changeset
   215
  // align so printing shows nop's instead of random code at the end (SimpleStubs are aligned)
29142a56c193 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 41057
diff changeset
   216
  sasm->align(BytesPerWord);
29142a56c193 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 41057
diff changeset
   217
  // make sure all code is in code buffer
29142a56c193 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 41057
diff changeset
   218
  sasm->flush();
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30764
diff changeset
   219
42664
29142a56c193 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 41057
diff changeset
   220
  frame_size = sasm->frame_size();
29142a56c193 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 41057
diff changeset
   221
  must_gc_arguments = sasm->must_gc_arguments();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  // create blob - distinguish a few special cases
49906
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   223
  CodeBlob* blob = RuntimeStub::new_runtime_stub(name,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
                                                 &code,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
                                                 CodeOffsets::frame_never_safe,
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30764
diff changeset
   226
                                                 frame_size,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
                                                 oop_maps,
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30764
diff changeset
   228
                                                 must_gc_arguments);
49906
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   229
  assert(blob != NULL, "blob must exist");
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   230
  return blob;
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   231
}
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   232
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   233
void Runtime1::generate_blob_for(BufferBlob* buffer_blob, StubID id) {
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   234
  assert(0 <= id && id < number_of_ids, "illegal stub id");
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   235
  bool expect_oop_map = true;
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   236
#ifdef ASSERT
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   237
  // Make sure that stubs that need oopmaps have them
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   238
  switch (id) {
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   239
    // These stubs don't need to have an oopmap
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   240
  case dtrace_object_alloc_id:
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   241
  case slow_subtype_check_id:
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   242
  case fpu2long_stub_id:
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   243
  case unwind_exception_id:
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   244
  case counter_overflow_id:
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   245
#if defined(SPARC) || defined(PPC32)
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   246
  case handle_exception_nofpu_id:  // Unused on sparc
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   247
#endif
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   248
    expect_oop_map = false;
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   249
    break;
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   250
  default:
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   251
    break;
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   252
  }
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   253
#endif
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   254
  StubIDStubAssemblerCodeGenClosure cl(id);
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   255
  CodeBlob* blob = generate_blob(buffer_blob, id, name_for(id), expect_oop_map, &cl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  // install blob
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  _blobs[id] = blob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   260
void Runtime1::initialize(BufferBlob* blob) {
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   261
  // platform-dependent initialization
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   262
  initialize_pd();
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   263
  // generate stubs
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   264
  for (int id = 0; id < number_of_ids; id++) generate_blob_for(blob, (StubID)id);
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   265
  // printing
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
#ifndef PRODUCT
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   267
  if (PrintSimpleStubs) {
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   268
    ResourceMark rm;
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   269
    for (int id = 0; id < number_of_ids; id++) {
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   270
      _blobs[id]->print();
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   271
      if (_blobs[id]->oop_maps() != NULL) {
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   272
        _blobs[id]->oop_maps()->print();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
    }
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   275
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
#endif
49906
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   277
  BarrierSetC1* bs = BarrierSet::barrier_set()->barrier_set_c1();
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49480
diff changeset
   278
  bs->generate_c1_runtime_stubs(blob);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
CodeBlob* Runtime1::blob_for(StubID id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  assert(0 <= id && id < number_of_ids, "illegal stub id");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  return _blobs[id];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
const char* Runtime1::name_for(StubID id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  assert(0 <= id && id < number_of_ids, "illegal stub id");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  return _blob_names[id];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
const char* Runtime1::name_for_address(address entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  for (int id = 0; id < number_of_ids; id++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    if (entry == entry_for((StubID)id)) return name_for((StubID)id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
55590
05dac93510c0 8226822: GC interface for C1 runtime calls
rkennke
parents: 54973
diff changeset
   297
  BarrierSetC1* bsc1 = BarrierSet::barrier_set()->barrier_set_c1();
05dac93510c0 8226822: GC interface for C1 runtime calls
rkennke
parents: 54973
diff changeset
   298
  const char* name = bsc1->rtcall_name_for_address(entry);
05dac93510c0 8226822: GC interface for C1 runtime calls
rkennke
parents: 54973
diff changeset
   299
  if (name != NULL) {
05dac93510c0 8226822: GC interface for C1 runtime calls
rkennke
parents: 54973
diff changeset
   300
    return name;
05dac93510c0 8226822: GC interface for C1 runtime calls
rkennke
parents: 54973
diff changeset
   301
  }
05dac93510c0 8226822: GC interface for C1 runtime calls
rkennke
parents: 54973
diff changeset
   302
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
#define FUNCTION_CASE(a, f) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  if ((intptr_t)a == CAST_FROM_FN_PTR(intptr_t, f))  return #f
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  FUNCTION_CASE(entry, os::javaTimeMillis);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  FUNCTION_CASE(entry, os::javaTimeNanos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  FUNCTION_CASE(entry, SharedRuntime::OSR_migration_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  FUNCTION_CASE(entry, SharedRuntime::d2f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  FUNCTION_CASE(entry, SharedRuntime::d2i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  FUNCTION_CASE(entry, SharedRuntime::d2l);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  FUNCTION_CASE(entry, SharedRuntime::dcos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  FUNCTION_CASE(entry, SharedRuntime::dexp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  FUNCTION_CASE(entry, SharedRuntime::dlog);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  FUNCTION_CASE(entry, SharedRuntime::dlog10);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  FUNCTION_CASE(entry, SharedRuntime::dpow);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  FUNCTION_CASE(entry, SharedRuntime::drem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  FUNCTION_CASE(entry, SharedRuntime::dsin);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  FUNCTION_CASE(entry, SharedRuntime::dtan);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  FUNCTION_CASE(entry, SharedRuntime::f2i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  FUNCTION_CASE(entry, SharedRuntime::f2l);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  FUNCTION_CASE(entry, SharedRuntime::frem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  FUNCTION_CASE(entry, SharedRuntime::l2d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  FUNCTION_CASE(entry, SharedRuntime::l2f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  FUNCTION_CASE(entry, SharedRuntime::ldiv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  FUNCTION_CASE(entry, SharedRuntime::lmul);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  FUNCTION_CASE(entry, SharedRuntime::lrem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  FUNCTION_CASE(entry, SharedRuntime::lrem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  FUNCTION_CASE(entry, SharedRuntime::dtrace_method_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  FUNCTION_CASE(entry, SharedRuntime::dtrace_method_exit);
12949
e125ba4c16bd 7171890: C1: add Class.isInstance intrinsic
roland
parents: 12377
diff changeset
   331
  FUNCTION_CASE(entry, is_instance_of);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  FUNCTION_CASE(entry, trace_block_entry);
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50094
diff changeset
   333
#ifdef JFR_HAVE_INTRINSICS
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50094
diff changeset
   334
  FUNCTION_CASE(entry, JFR_TIME_FUNCTION);
12377
ae6def2813e0 7160570: Intrinsification support for tracing framework
rbackman
parents: 11636
diff changeset
   335
#endif
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 17370
diff changeset
   336
  FUNCTION_CASE(entry, StubRoutines::updateBytesCRC32());
38237
d972e3a2df53 8155162: java.util.zip.CRC32C Interpreter/C1 intrinsics support on SPARC
kvn
parents: 38018
diff changeset
   337
  FUNCTION_CASE(entry, StubRoutines::updateBytesCRC32C());
38238
1bbcc430c78d 8151268: Wire up the x86 _vectorizedMismatch stub routine in C1
psandoz
parents: 38237
diff changeset
   338
  FUNCTION_CASE(entry, StubRoutines::vectorizedMismatch());
33089
f4e956ed8b43 8132207: update for x86 exp in the math lib
iveresov
parents: 31620
diff changeset
   339
  FUNCTION_CASE(entry, StubRoutines::dexp());
33465
6063f28a6efb 8139575: Update for x86 log in the math lib
iveresov
parents: 33089
diff changeset
   340
  FUNCTION_CASE(entry, StubRoutines::dlog());
38018
1dc6c6f21231 8152907: Update for x86 tan and log10 in the math lib
vdeshpande
parents: 36616
diff changeset
   341
  FUNCTION_CASE(entry, StubRoutines::dlog10());
35146
9ebfec283f56 8145688: Update for x86 pow in the math lib
kvn
parents: 35071
diff changeset
   342
  FUNCTION_CASE(entry, StubRoutines::dpow());
35540
e001ad24dcdb 8143353: update for x86 sin and cos in the math lib
vdeshpande
parents: 35146
diff changeset
   343
  FUNCTION_CASE(entry, StubRoutines::dsin());
e001ad24dcdb 8143353: update for x86 sin and cos in the math lib
vdeshpande
parents: 35146
diff changeset
   344
  FUNCTION_CASE(entry, StubRoutines::dcos());
38018
1dc6c6f21231 8152907: Update for x86 tan and log10 in the math lib
vdeshpande
parents: 36616
diff changeset
   345
  FUNCTION_CASE(entry, StubRoutines::dtan());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
#undef FUNCTION_CASE
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5883
diff changeset
   349
  // Soft float adds more runtime names.
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5883
diff changeset
   350
  return pd_name_for_address(entry);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   354
JRT_ENTRY(void, Runtime1::new_instance(JavaThread* thread, Klass* klass))
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  NOT_PRODUCT(_new_instance_slowcase_cnt++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   357
  assert(klass->is_klass(), "not a class");
36603
0bc3ad031d60 8141420: Compiler runtime entries don't hold Klass* from being GCed
vlivanov
parents: 36350
diff changeset
   358
  Handle holder(THREAD, klass->klass_holder()); // keep the klass alive
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46271
diff changeset
   359
  InstanceKlass* h = InstanceKlass::cast(klass);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  h->check_valid_for_instantiation(true, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  // make sure klass is initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  h->initialize(CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  // allocate instance and return via TLS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  oop obj = h->allocate_instance(CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  thread->set_vm_result(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   369
JRT_ENTRY(void, Runtime1::new_type_array(JavaThread* thread, Klass* klass, jint length))
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  NOT_PRODUCT(_new_type_array_slowcase_cnt++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  // Note: no handle for klass needed since they are not used
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  //       anymore after new_typeArray() and no GC can happen before.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  //       (This may have to change if this code changes!)
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   374
  assert(klass->is_klass(), "not a class");
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   375
  BasicType elt_type = TypeArrayKlass::cast(klass)->element_type();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  oop obj = oopFactory::new_typeArray(elt_type, length, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  thread->set_vm_result(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  // This is pretty rare but this runtime patch is stressful to deoptimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  // if we deoptimize here so force a deopt to stress the path.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  if (DeoptimizeALot) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
    deopt_caller();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   387
JRT_ENTRY(void, Runtime1::new_object_array(JavaThread* thread, Klass* array_klass, jint length))
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  NOT_PRODUCT(_new_object_array_slowcase_cnt++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  // Note: no handle for klass needed since they are not used
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  //       anymore after new_objArray() and no GC can happen before.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  //       (This may have to change if this code changes!)
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   393
  assert(array_klass->is_klass(), "not a class");
36603
0bc3ad031d60 8141420: Compiler runtime entries don't hold Klass* from being GCed
vlivanov
parents: 36350
diff changeset
   394
  Handle holder(THREAD, array_klass->klass_holder()); // keep the klass alive
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   395
  Klass* elem_klass = ObjArrayKlass::cast(array_klass)->element_klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  objArrayOop obj = oopFactory::new_objArray(elem_klass, length, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  thread->set_vm_result(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  // This is pretty rare but this runtime patch is stressful to deoptimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  // if we deoptimize here so force a deopt to stress the path.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  if (DeoptimizeALot) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
    deopt_caller();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   406
JRT_ENTRY(void, Runtime1::new_multi_array(JavaThread* thread, Klass* klass, int rank, jint* dims))
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  NOT_PRODUCT(_new_multi_array_slowcase_cnt++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   409
  assert(klass->is_klass(), "not a class");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  assert(rank >= 1, "rank must be nonzero");
36603
0bc3ad031d60 8141420: Compiler runtime entries don't hold Klass* from being GCed
vlivanov
parents: 36350
diff changeset
   411
  Handle holder(THREAD, klass->klass_holder()); // keep the klass alive
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   412
  oop obj = ArrayKlass::cast(klass)->multi_allocate(rank, dims, CHECK);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  thread->set_vm_result(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
JRT_ENTRY(void, Runtime1::unimplemented_entry(JavaThread* thread, StubID id))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  tty->print_cr("Runtime1::entry_for(%d) returned unimplemented entry point", id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
8067
f5f4eac4c48f 7008809: should report the class in ArrayStoreExceptions from compiled code
never
parents: 7913
diff changeset
   422
JRT_ENTRY(void, Runtime1::throw_array_store_exception(JavaThread* thread, oopDesc* obj))
f5f4eac4c48f 7008809: should report the class in ArrayStoreExceptions from compiled code
never
parents: 7913
diff changeset
   423
  ResourceMark rm(thread);
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 13952
diff changeset
   424
  const char* klass_name = obj->klass()->external_name();
8067
f5f4eac4c48f 7008809: should report the class in ArrayStoreExceptions from compiled code
never
parents: 7913
diff changeset
   425
  SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_ArrayStoreException(), klass_name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
10014
a5c2141ee857 7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents: 9318
diff changeset
   429
// counter_overflow() is called from within C1-compiled methods. The enclosing method is the method
a5c2141ee857 7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents: 9318
diff changeset
   430
// associated with the top activation record. The inlinee (that is possibly included in the enclosing
a5c2141ee857 7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents: 9318
diff changeset
   431
// method) method oop is passed as an argument. In order to do that it is embedded in the code as
a5c2141ee857 7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents: 9318
diff changeset
   432
// a constant.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   433
static nmethod* counter_overflow_helper(JavaThread* THREAD, int branch_bci, Method* m) {
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   434
  nmethod* osr_nm = NULL;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   435
  methodHandle method(THREAD, m);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   436
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   437
  RegisterMap map(THREAD, false);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   438
  frame fr =  THREAD->last_frame().sender(&map);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  nmethod* nm = (nmethod*) fr.cb();
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   440
  assert(nm!= NULL && nm->is_nmethod(), "Sanity check");
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   441
  methodHandle enclosing_method(THREAD, nm->method());
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   442
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   443
  CompLevel level = (CompLevel)nm->comp_level();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   444
  int bci = InvocationEntryBci;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   445
  if (branch_bci != InvocationEntryBci) {
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30764
diff changeset
   446
    // Compute destination bci
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   447
    address pc = method()->code_base() + branch_bci;
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7427
diff changeset
   448
    Bytecodes::Code branch = Bytecodes::code_at(method(), pc);
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   449
    int offset = 0;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   450
    switch (branch) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   451
      case Bytecodes::_if_icmplt: case Bytecodes::_iflt:
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   452
      case Bytecodes::_if_icmpgt: case Bytecodes::_ifgt:
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   453
      case Bytecodes::_if_icmple: case Bytecodes::_ifle:
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   454
      case Bytecodes::_if_icmpge: case Bytecodes::_ifge:
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   455
      case Bytecodes::_if_icmpeq: case Bytecodes::_if_acmpeq: case Bytecodes::_ifeq:
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   456
      case Bytecodes::_if_icmpne: case Bytecodes::_if_acmpne: case Bytecodes::_ifne:
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   457
      case Bytecodes::_ifnull: case Bytecodes::_ifnonnull: case Bytecodes::_goto:
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   458
        offset = (int16_t)Bytes::get_Java_u2(pc + 1);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   459
        break;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   460
      case Bytecodes::_goto_w:
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   461
        offset = Bytes::get_Java_u4(pc + 1);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   462
        break;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   463
      default: ;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   465
    bci = branch_bci + offset;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   466
  }
11572
84afef481892 7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents: 10972
diff changeset
   467
  assert(!HAS_PENDING_EXCEPTION, "Should not have any exceptions pending");
10014
a5c2141ee857 7057120: Tiered: Allow C1 to inline methods with loops
iveresov
parents: 9318
diff changeset
   468
  osr_nm = CompilationPolicy::policy()->event(enclosing_method, method, branch_bci, bci, level, nm, THREAD);
11572
84afef481892 7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents: 10972
diff changeset
   469
  assert(!HAS_PENDING_EXCEPTION, "Event handler should not throw any exceptions");
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   470
  return osr_nm;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   471
}
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   472
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   473
JRT_BLOCK_ENTRY(address, Runtime1::counter_overflow(JavaThread* thread, int bci, Method* method))
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   474
  nmethod* osr_nm;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   475
  JRT_BLOCK
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   476
    osr_nm = counter_overflow_helper(thread, bci, method);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   477
    if (osr_nm != NULL) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   478
      RegisterMap map(thread, false);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   479
      frame fr =  thread->last_frame().sender(&map);
7106
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 6453
diff changeset
   480
      Deoptimization::deoptimize_frame(thread, fr.id());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
    }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   482
  JRT_BLOCK_END
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
   483
  return NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
extern void vm_exit(int code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
// Enter this method from compiled code handler below. This is where we transition
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
// to VM mode. This is done as a helper routine so that the method called directly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
// from compiled code does not have to transition to VM. This allows the entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
// method to see if the nmethod that we have just looked up a handler for has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
// been deoptimized while we were in the vm. This simplifies the assembly code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
// cpu directories.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
// We are entering here from exception stub (via the entry method below)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
// If there is a compiled exception handler in this method, we will continue there;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
// otherwise we will unwind the stack and continue at the caller of top frame method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
// Note: we enter in Java using a special JRT wrapper. This wrapper allows us to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
// control the area where we can allow a safepoint. After we exit the safepoint area we can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
// check to see if the handler we are going to return is now in a nmethod that has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
// been deoptimized. If that is the case we return the deopt blob
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
// unpack_with_exception entry instead. This makes life for the exception blob easier
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
// because making that same check and diverting is painful from assembly language.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
JRT_ENTRY_NO_ASYNC(static address, exception_handler_for_pc_helper(JavaThread* thread, oopDesc* ex, address pc, nmethod*& nm))
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   505
  // Reset method handle flag.
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   506
  thread->set_is_method_handle_return(false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  Handle exception(thread, ex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  nm = CodeCache::find_nmethod(pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  assert(nm != NULL, "this is not an nmethod");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  // Adjust the pc as needed/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  if (nm->is_deopt_pc(pc)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    RegisterMap map(thread, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
    frame exception_frame = thread->last_frame().sender(&map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
    // if the frame isn't deopted then pc must not correspond to the caller of last_frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
    assert(exception_frame.is_deoptimized_frame(), "must be deopted");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    pc = exception_frame.pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  assert(exception.not_null(), "NULL exceptions should be handled by throw_exception");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  // Check that exception is a subclass of Throwable, otherwise we have a VerifyError
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 2105
diff changeset
   522
  if (!(exception->is_a(SystemDictionary::Throwable_klass()))) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
    if (ExitVMOnVerifyError) vm_exit(-1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  // Check the stack guard pages and reenable them if necessary and there is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  // enough space on the stack to do so.  Use fast exceptions only if the guard
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  // pages are enabled.
35071
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34500
diff changeset
   531
  bool guard_pages_enabled = thread->stack_guards_enabled();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  if (!guard_pages_enabled) guard_pages_enabled = thread->reguard_stack();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
4761
bdb7375a1fee 6902182: 4/4 Starting with jdwp agent should not incur performance penalty
dcubed
parents: 4571
diff changeset
   534
  if (JvmtiExport::can_post_on_exceptions()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    // To ensure correct notification of exception catches and throws
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
    // we have to deoptimize here.  If we attempted to notify the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    // catches and throws during this exception lookup it's possible
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
    // we could deoptimize on the way out of the VM and end back in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
    // the interpreter at the throw site.  This would result in double
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
    // notifications since the interpreter would also notify about
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
    // these same catches and throws as it unwound the frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
    RegisterMap reg_map(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
    frame stub_frame = thread->last_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
    frame caller_frame = stub_frame.sender(&reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
    // We don't really want to deoptimize the nmethod itself since we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
    // can actually continue in the exception handler ourselves but I
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
    // don't see an easy way to have the desired effect.
7106
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 6453
diff changeset
   550
    Deoptimization::deoptimize_frame(thread, caller_frame.id());
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 6453
diff changeset
   551
    assert(caller_is_deopted(), "Must be deoptimized");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    return SharedRuntime::deopt_blob()->unpack_with_exception_in_tls();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   556
  // ExceptionCache is used only for exceptions at call sites and not for implicit exceptions
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  if (guard_pages_enabled) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
    address fast_continuation = nm->handler_for_exception_and_pc(exception, pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
    if (fast_continuation != NULL) {
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   560
      // Set flag if return address is a method handle call site.
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   561
      thread->set_is_method_handle_return(nm->is_method_handle_return(pc));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
      return fast_continuation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  // If the stack guard pages are enabled, check whether there is a handler in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  // the current method.  Otherwise (guard pages disabled), force an unwind and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  // skip the exception cache update (i.e., just leave continuation==NULL).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  address continuation = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  if (guard_pages_enabled) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
    // New exception handling mechanism can support inlined methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
    // with exception handlers since the mappings are from PC to PC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
    // debugging support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
    // tracing
35216
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents: 35071
diff changeset
   577
    if (log_is_enabled(Info, exceptions)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
      ResourceMark rm;
35477
7a00b08d27bc 8144953: runtime/CommandLine/TraceExceptionsTest.java fails when exception is thrown in compiled code
rprotacio
parents: 35216
diff changeset
   579
      stringStream tempst;
51314
82adcc8ad853 8208604: Metadata::print_value_string() compares 'this' to NULL
hseigel
parents: 50113
diff changeset
   580
      assert(nm->method() != NULL, "Unexpected NULL method()");
35477
7a00b08d27bc 8144953: runtime/CommandLine/TraceExceptionsTest.java fails when exception is thrown in compiled code
rprotacio
parents: 35216
diff changeset
   581
      tempst.print("compiled method <%s>\n"
7a00b08d27bc 8144953: runtime/CommandLine/TraceExceptionsTest.java fails when exception is thrown in compiled code
rprotacio
parents: 35216
diff changeset
   582
                   " at PC" INTPTR_FORMAT " for thread " INTPTR_FORMAT,
7a00b08d27bc 8144953: runtime/CommandLine/TraceExceptionsTest.java fails when exception is thrown in compiled code
rprotacio
parents: 35216
diff changeset
   583
                   nm->method()->print_value_string(), p2i(pc), p2i(thread));
54973
0927d8c7296f 8224487: outputStream should not be copyable
stuefe
parents: 54786
diff changeset
   584
      Exceptions::log_exception(exception, tempst.as_string());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
    // for AbortVMOnException flag
33208
5ec6ffa63c57 8136577: Make AbortVMOnException available in product builds
poonam
parents: 31620
diff changeset
   587
    Exceptions::debug_check_abort(exception);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
    // Clear out the exception oop and pc since looking up an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
    // exception handler can cause class loading, which might throw an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
    // exception and those fields are expected to be clear during
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
    // normal bytecode execution.
20703
2de7fe0e9693 8005173: assert(false) failed: DEBUG MESSAGE: exception oop must be empty (macroAssembler_x86.cpp:625)
twisti
parents: 20303
diff changeset
   593
    thread->clear_exception_oop_and_pc();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
41057
f77b9d9e0e4c 8164480: Crash with assert(handler_address == SharedRuntime::compute_compiled_exc_handler(..) failed: Must be the same
thartmann
parents: 40655
diff changeset
   595
    bool recursive_exception = false;
f77b9d9e0e4c 8164480: Crash with assert(handler_address == SharedRuntime::compute_compiled_exc_handler(..) failed: Must be the same
thartmann
parents: 40655
diff changeset
   596
    continuation = SharedRuntime::compute_compiled_exc_handler(nm, pc, exception, false, false, recursive_exception);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
    // If an exception was thrown during exception dispatch, the exception oop may have changed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
    thread->set_exception_oop(exception());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
    thread->set_exception_pc(pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
    // the exception cache is used only by non-implicit exceptions
26169
b1e1ef66da74 8054224: Recursive method that was compiled by C1 is unable to catch StackOverflowError
roland
parents: 25716
diff changeset
   602
    // Update the exception cache only when there didn't happen
b1e1ef66da74 8054224: Recursive method that was compiled by C1 is unable to catch StackOverflowError
roland
parents: 25716
diff changeset
   603
    // another exception during the computation of the compiled
41057
f77b9d9e0e4c 8164480: Crash with assert(handler_address == SharedRuntime::compute_compiled_exc_handler(..) failed: Must be the same
thartmann
parents: 40655
diff changeset
   604
    // exception handler. Checking for exception oop equality is not
f77b9d9e0e4c 8164480: Crash with assert(handler_address == SharedRuntime::compute_compiled_exc_handler(..) failed: Must be the same
thartmann
parents: 40655
diff changeset
   605
    // sufficient because some exceptions are pre-allocated and reused.
f77b9d9e0e4c 8164480: Crash with assert(handler_address == SharedRuntime::compute_compiled_exc_handler(..) failed: Must be the same
thartmann
parents: 40655
diff changeset
   606
    if (continuation != NULL && !recursive_exception) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
      nm->add_handler_for_exception_and_pc(exception, pc, continuation);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  thread->set_vm_result(exception());
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   612
  // Set flag if return address is a method handle call site.
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   613
  thread->set_is_method_handle_return(nm->is_method_handle_return(pc));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
35216
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents: 35071
diff changeset
   615
  if (log_is_enabled(Info, exceptions)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
    ResourceMark rm;
35216
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents: 35071
diff changeset
   617
    log_info(exceptions)("Thread " PTR_FORMAT " continuing at PC " PTR_FORMAT
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents: 35071
diff changeset
   618
                         " for exception thrown at PC " PTR_FORMAT,
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents: 35071
diff changeset
   619
                         p2i(thread), p2i(continuation), p2i(pc));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  return continuation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
// Enter this method from compiled code only if there is a Java exception handler
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   626
// in the method handling the exception.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
// We are entering here from exception stub. We don't do a normal VM transition here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
// We do it in a helper. This is so we can check to see if the nmethod we have just
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
// searched for an exception handler has been deoptimized in the meantime.
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   630
address Runtime1::exception_handler_for_pc(JavaThread* thread) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  oop exception = thread->exception_oop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  address pc = thread->exception_pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  // Still in Java mode
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   634
  DEBUG_ONLY(ResetNoHandleMark rnhm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  nmethod* nm = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  address continuation = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
    // Enter VM mode by calling the helper
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
    ResetNoHandleMark rnhm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
    continuation = exception_handler_for_pc_helper(thread, exception, pc, nm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  // Back in JAVA, use no oops DON'T safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  // Now check to see if the nmethod we were called from is now deoptimized.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  // If so we must return to the deopt blob and deoptimize the nmethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
  if (nm != NULL && caller_is_deopted()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
    continuation = SharedRuntime::deopt_blob()->unpack_with_exception_in_tls();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   650
  assert(continuation != NULL, "no handler found");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  return continuation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
50094
2f79462aab9b 8201593: Print array length in ArrayIndexOutOfBoundsException.
goetz
parents: 49906
diff changeset
   655
JRT_ENTRY(void, Runtime1::throw_range_check_exception(JavaThread* thread, int index, arrayOopDesc* a))
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  NOT_PRODUCT(_throw_range_check_exception_count++;)
50094
2f79462aab9b 8201593: Print array length in ArrayIndexOutOfBoundsException.
goetz
parents: 49906
diff changeset
   657
  const int len = 35;
2f79462aab9b 8201593: Print array length in ArrayIndexOutOfBoundsException.
goetz
parents: 49906
diff changeset
   658
  assert(len < strlen("Index %d out of bounds for length %d"), "Must allocate more space for message.");
2f79462aab9b 8201593: Print array length in ArrayIndexOutOfBoundsException.
goetz
parents: 49906
diff changeset
   659
  char message[2 * jintAsStringSize + len];
2f79462aab9b 8201593: Print array length in ArrayIndexOutOfBoundsException.
goetz
parents: 49906
diff changeset
   660
  sprintf(message, "Index %d out of bounds for length %d", index, a->length());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), message);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
JRT_ENTRY(void, Runtime1::throw_index_exception(JavaThread* thread, int index))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  NOT_PRODUCT(_throw_index_exception_count++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  char message[16];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  sprintf(message, "%d", index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_IndexOutOfBoundsException(), message);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
JRT_ENTRY(void, Runtime1::throw_div0_exception(JavaThread* thread))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  NOT_PRODUCT(_throw_div0_exception_count++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_ArithmeticException(), "/ by zero");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
JRT_ENTRY(void, Runtime1::throw_null_pointer_exception(JavaThread* thread))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  NOT_PRODUCT(_throw_null_pointer_exception_count++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_NullPointerException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
JRT_ENTRY(void, Runtime1::throw_class_cast_exception(JavaThread* thread, oopDesc* object))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  NOT_PRODUCT(_throw_class_cast_exception_count++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  ResourceMark rm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  char* message = SharedRuntime::generate_class_cast_message(
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36350
diff changeset
   689
    thread, object->klass());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  SharedRuntime::throw_and_post_jvmti_exception(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
    thread, vmSymbols::java_lang_ClassCastException(), message);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
JRT_ENTRY(void, Runtime1::throw_incompatible_class_change_error(JavaThread* thread))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  NOT_PRODUCT(_throw_incompatible_class_change_error_count++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  ResourceMark rm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_IncompatibleClassChangeError());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
JRT_ENTRY_NO_ASYNC(void, Runtime1::monitorenter(JavaThread* thread, oopDesc* obj, BasicObjectLock* lock))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  NOT_PRODUCT(_monitorenter_slowcase_cnt++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  if (PrintBiasedLockingStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
    Atomic::inc(BiasedLocking::slow_path_entry_count_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  Handle h_obj(thread, obj);
57893
49fea19f0726 8229844: Remove attempt_rebias parameter from revoke_and_rebias()
pchilanomate
parents: 55590
diff changeset
   708
  if (!UseFastLocking) {
49fea19f0726 8229844: Remove attempt_rebias parameter from revoke_and_rebias()
pchilanomate
parents: 55590
diff changeset
   709
    lock->set_obj(obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  }
57893
49fea19f0726 8229844: Remove attempt_rebias parameter from revoke_and_rebias()
pchilanomate
parents: 55590
diff changeset
   711
  assert(obj == lock->obj(), "must match");
49fea19f0726 8229844: Remove attempt_rebias parameter from revoke_and_rebias()
pchilanomate
parents: 55590
diff changeset
   712
  ObjectSynchronizer::enter(h_obj, lock->lock(), THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
JRT_LEAF(void, Runtime1::monitorexit(JavaThread* thread, BasicObjectLock* lock))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  NOT_PRODUCT(_monitorexit_slowcase_cnt++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  assert(thread == JavaThread::current(), "threads must correspond");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
  assert(thread->last_Java_sp(), "last_Java_sp must be set");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  // monitorexit is non-blocking (leaf routine) => no exceptions can be thrown
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
  oop obj = lock->obj();
46968
9119841280f4 8160399: is_oop_or_null involves undefined behavior
coleenp
parents: 46727
diff changeset
   724
  assert(oopDesc::is_oop(obj), "must be NULL or an object");
57893
49fea19f0726 8229844: Remove attempt_rebias parameter from revoke_and_rebias()
pchilanomate
parents: 55590
diff changeset
   725
  ObjectSynchronizer::exit(obj, lock->lock(), THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
10972
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
   728
// Cf. OptoRuntime::deoptimize_caller_frame
24442
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   729
JRT_ENTRY(void, Runtime1::deoptimize(JavaThread* thread, jint trap_request))
10972
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
   730
  // Called from within the owner thread, so no need for safepoint
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
   731
  RegisterMap reg_map(thread, false);
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
   732
  frame stub_frame = thread->last_frame();
24442
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   733
  assert(stub_frame.is_runtime_frame(), "Sanity check");
10972
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
   734
  frame caller_frame = stub_frame.sender(&reg_map);
24442
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   735
  nmethod* nm = caller_frame.cb()->as_nmethod_or_null();
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   736
  assert(nm != NULL, "Sanity check");
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   737
  methodHandle method(thread, nm->method());
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   738
  assert(nm == CodeCache::find_nmethod(caller_frame.pc()), "Should be the same");
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   739
  Deoptimization::DeoptAction action = Deoptimization::trap_request_action(trap_request);
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   740
  Deoptimization::DeoptReason reason = Deoptimization::trap_request_reason(trap_request);
10972
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
   741
24442
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   742
  if (action == Deoptimization::Action_make_not_entrant) {
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   743
    if (nm->make_not_entrant()) {
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   744
      if (reason == Deoptimization::Reason_tenured) {
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   745
        MethodData* trap_mdo = Deoptimization::get_method_data(thread, method, true /*create_if_missing*/);
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   746
        if (trap_mdo != NULL) {
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   747
          trap_mdo->inc_tenure_traps();
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   748
        }
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   749
      }
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   750
    }
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
   751
  }
10972
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
   752
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
   753
  // Deoptimize the caller frame.
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
   754
  Deoptimization::deoptimize_frame(thread, caller_frame.id());
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
   755
  // Return to the now deoptimized frame.
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
   756
JRT_END
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
   757
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
29180
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
   759
#ifndef DEOPTIMIZE_WHEN_PATCHING
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
   760
46727
6e4a84748e2c 8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents: 46648
diff changeset
   761
static Klass* resolve_field_return_klass(const methodHandle& caller, int bci, TRAPS) {
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7427
diff changeset
   762
  Bytecode_field field_access(caller, bci);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  // This can be static or non-static field access
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7427
diff changeset
   764
  Bytecodes::Code code       = field_access.code();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
39421
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38238
diff changeset
   766
  // We must load class, initialize class and resolve the field
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 19710
diff changeset
   767
  fieldDescriptor result; // initialize class if needed
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
  constantPoolHandle constants(THREAD, caller->constants());
39421
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38238
diff changeset
   769
  LinkResolver::resolve_field_access(result, constants, field_access.index(), caller, Bytecodes::java_code(code), CHECK_NULL);
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 19710
diff changeset
   770
  return result.field_holder();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
// This routine patches sites where a class wasn't loaded or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
// initialized at the time the code was generated.  It handles
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
// references to classes, fields and forcing of initialization.  Most
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
// of the cases are straightforward and involving simply forcing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
// resolution of a class, rewriting the instruction stream with the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
// needed constant and replacing the call in this function with the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
// patched code.  The case for static field is more complicated since
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
// the thread which is in the process of initializing a class can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
// access it's static fields but other threads can't so the code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
// either has to deoptimize when this case is detected or execute a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
// check that the current thread is the initializing thread.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
// current
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
// Patches basically look like this:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
// patch_site: jmp patch stub     ;; will be patched
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
// continue:   ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
//             ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
//             ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
//             ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
// They have a stub which looks like this:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
//             ;; patch body
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
//             movl <const>, reg           (for class constants)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
//        <or> movl [reg1 + <const>], reg  (for field offsets)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
//        <or> movl reg, [reg1 + <const>]  (for field offsets)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
//             <being_init offset> <bytes to copy> <bytes to skip>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
// patch_stub: call Runtime1::patch_code (through a runtime stub)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
//             jmp patch_site
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
// A normal patch is done by rewriting the patch body, usually a move,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
// and then copying it into place over top of the jmp instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
// being careful to flush caches and doing it in an MP-safe way.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
// constants following the patch body are used to find various pieces
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
// of the patch relative to the call site for Runtime1::patch_code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
// The case for getstatic and putstatic is more complicated because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
// getstatic and putstatic have special semantics when executing while
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
// the class is being initialized.  getstatic/putstatic on a class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
// which is being_initialized may be executed by the initializing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
// thread but other threads have to block when they execute it.  This
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
// is accomplished in compiled code by executing a test of the current
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
// thread against the initializing thread of the class.  It's emitted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
// as boilerplate in their stub which allows the patched code to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
// executed before it's copied back into the main body of the nmethod.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
// being_init: get_thread(<tmp reg>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
//             cmpl [reg1 + <init_thread_offset>], <tmp reg>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
//             jne patch_stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
//             movl [reg1 + <const>], reg  (for field offsets)  <or>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
//             movl reg, [reg1 + <const>]  (for field offsets)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
//             jmp continue
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
//             <being_init offset> <bytes to copy> <bytes to skip>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
// patch_stub: jmp Runtim1::patch_code (through a runtime stub)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
//             jmp patch_site
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
// If the class is being initialized the patch body is rewritten and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
// the patch site is rewritten to jump to being_init, instead of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
// patch_stub.  Whenever this code is executed it checks the current
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
// thread against the intializing thread so other threads will enter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
// the runtime and end up blocked waiting the class to finish
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
// initializing inside the calls to resolve_field below.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
// initializing class will continue on it's way.  Once the class is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
// fully_initialized, the intializing_thread of the class becomes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
// NULL, so the next thread to execute this code will fail the test,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
// call into patch_code and complete the patching process by copying
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
// the patch body back into the main part of the nmethod and resume
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
// executing.
51965
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   845
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   846
// NB:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
//
51965
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   848
// Patchable instruction sequences inherently exhibit race conditions,
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   849
// where thread A is patching an instruction at the same time thread B
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   850
// is executing it.  The algorithms we use ensure that any observation
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   851
// that B can make on any intermediate states during A's patching will
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   852
// always end up with a correct outcome.  This is easiest if there are
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   853
// few or no intermediate states.  (Some inline caches have two
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   854
// related instructions that must be patched in tandem.  For those,
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   855
// intermediate states seem to be unavoidable, but we will get the
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   856
// right answer from all possible observation orders.)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
//
51965
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   858
// When patching the entry instruction at the head of a method, or a
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   859
// linkable call instruction inside of a method, we try very hard to
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   860
// use a patch sequence which executes as a single memory transaction.
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   861
// This means, in practice, that when thread A patches an instruction,
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   862
// it should patch a 32-bit or 64-bit word that somehow overlaps the
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   863
// instruction or is contained in it.  We believe that memory hardware
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   864
// will never break up such a word write, if it is naturally aligned
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   865
// for the word being written.  We also know that some CPUs work very
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   866
// hard to create atomic updates even of naturally unaligned words,
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   867
// but we don't want to bet the farm on this always working.
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   868
//
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   869
// Therefore, if there is any chance of a race condition, we try to
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   870
// patch only naturally aligned words, as single, full-word writes.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
JRT_ENTRY(void, Runtime1::patch_code(JavaThread* thread, Runtime1::StubID stub_id ))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
  NOT_PRODUCT(_patch_code_slowcase_cnt++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
  ResourceMark rm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  RegisterMap reg_map(thread, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
  frame runtime_frame = thread->last_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
  frame caller_frame = runtime_frame.sender(&reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
  // last java frame on stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
  vframeStream vfst(thread, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
  assert(!vfst.at_end(), "Java frame must exist");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
  methodHandle caller_method(THREAD, vfst.method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
  // Note that caller_method->code() may not be same as caller_code because of OSR's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
  // Note also that in the presence of inlining it is not guaranteed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
  // that caller_method() == caller_code->method()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
  int bci = vfst.bci();
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7427
diff changeset
   890
  Bytecodes::Code code = caller_method()->java_code_at(bci);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
  // this is used by assertions in the access_field_patching_id
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
  BasicType patch_field_type = T_ILLEGAL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
  bool deoptimize_for_volatile = false;
23189
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
   895
  bool deoptimize_for_atomic = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
  int patch_field_offset = -1;
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46271
diff changeset
   897
  Klass* init_klass = NULL; // klass needed by load_klass_patching code
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46271
diff changeset
   898
  Klass* load_klass = NULL; // klass needed by load_klass_patching code
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   899
  Handle mirror(THREAD, NULL);                    // oop needed by load_mirror_patching code
19710
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
   900
  Handle appendix(THREAD, NULL);                  // oop needed by appendix_patching code
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   901
  bool load_klass_or_mirror_patch_id =
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   902
    (stub_id == Runtime1::load_klass_patching_id || stub_id == Runtime1::load_mirror_patching_id);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   903
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
  if (stub_id == Runtime1::access_field_patching_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7427
diff changeset
   906
    Bytecode_field field_access(caller_method, bci);
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 19710
diff changeset
   907
    fieldDescriptor result; // initialize class if needed
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7427
diff changeset
   908
    Bytecodes::Code code = field_access.code();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
    constantPoolHandle constants(THREAD, caller_method->constants());
39421
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38238
diff changeset
   910
    LinkResolver::resolve_field_access(result, constants, field_access.index(), caller_method, Bytecodes::java_code(code), CHECK);
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 19710
diff changeset
   911
    patch_field_offset = result.offset();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
    // If we're patching a field which is volatile then at compile it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
    // must not have been know to be volatile, so the generated code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
    // isn't correct for a volatile reference.  The nmethod has to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
    // deoptimized so that the code can be regenerated correctly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
    // This check is only needed for access_field_patching since this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
    // is the path for patching field offsets.  load_klass is only
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
    // used for patching references to oops which don't need special
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
    // handling in the volatile case.
23189
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
   921
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
    deoptimize_for_volatile = result.access_flags().is_volatile();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
23189
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
   924
    // If we are patching a field which should be atomic, then
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
   925
    // the generated code is not correct either, force deoptimizing.
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
   926
    // We need to only cover T_LONG and T_DOUBLE fields, as we can
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
   927
    // break access atomicity only for them.
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
   928
51965
358a3b99198a 8210972: Add comment text to C1 patching code
aph
parents: 51467
diff changeset
   929
    // Strictly speaking, the deoptimization on 64-bit platforms
23189
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
   930
    // is unnecessary, and T_LONG stores on 32-bit platforms need
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
   931
    // to be handled by special patching code when AlwaysAtomicAccesses
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
   932
    // becomes product feature. At this point, we are still going
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
   933
    // for the deoptimization for consistency against volatile
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
   934
    // accesses.
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
   935
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
    patch_field_type = result.field_type();
23189
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
   937
    deoptimize_for_atomic = (AlwaysAtomicAccesses && (patch_field_type == T_DOUBLE || patch_field_type == T_LONG));
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
   938
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   939
  } else if (load_klass_or_mirror_patch_id) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   940
    Klass* k = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
    switch (code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
      case Bytecodes::_putstatic:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
      case Bytecodes::_getstatic:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   944
        { Klass* klass = resolve_field_return_klass(caller_method, bci, CHECK);
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46271
diff changeset
   945
          init_klass = klass;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   946
          mirror = Handle(THREAD, klass->java_mirror());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
      case Bytecodes::_new:
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7427
diff changeset
   950
        { Bytecode_new bnew(caller_method(), caller_method->bcp_from(bci));
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7427
diff changeset
   951
          k = caller_method->constants()->klass_at(bnew.index(), CHECK);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
      case Bytecodes::_multianewarray:
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7427
diff changeset
   955
        { Bytecode_multianewarray mna(caller_method(), caller_method->bcp_from(bci));
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7427
diff changeset
   956
          k = caller_method->constants()->klass_at(mna.index(), CHECK);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
      case Bytecodes::_instanceof:
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7427
diff changeset
   960
        { Bytecode_instanceof io(caller_method(), caller_method->bcp_from(bci));
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7427
diff changeset
   961
          k = caller_method->constants()->klass_at(io.index(), CHECK);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
      case Bytecodes::_checkcast:
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7427
diff changeset
   965
        { Bytecode_checkcast cc(caller_method(), caller_method->bcp_from(bci));
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7427
diff changeset
   966
          k = caller_method->constants()->klass_at(cc.index(), CHECK);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
      case Bytecodes::_anewarray:
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7427
diff changeset
   970
        { Bytecode_anewarray anew(caller_method(), caller_method->bcp_from(bci));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   971
          Klass* ek = caller_method->constants()->klass_at(anew.index(), CHECK);
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 13952
diff changeset
   972
          k = ek->array_klass(CHECK);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
      case Bytecodes::_ldc:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
      case Bytecodes::_ldc_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
        {
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7427
diff changeset
   978
          Bytecode_loadconstant cc(caller_method, bci);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   979
          oop m = cc.resolve_constant(CHECK);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   980
          mirror = Handle(THREAD, m);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
        break;
19710
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
   983
      default: fatal("unexpected bytecode for load_klass_or_mirror_patch_id");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
    }
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46271
diff changeset
   985
    load_klass = k;
19710
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
   986
  } else if (stub_id == load_appendix_patching_id) {
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
   987
    Bytecode_invoke bytecode(caller_method, bci);
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
   988
    Bytecodes::Code bc = bytecode.invoke_code();
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
   989
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
   990
    CallInfo info;
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
   991
    constantPoolHandle pool(thread, caller_method->constants());
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
   992
    int index = bytecode.index();
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
   993
    LinkResolver::resolve_invoke(info, Handle(), pool, index, bc, CHECK);
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
   994
    switch (bc) {
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
   995
      case Bytecodes::_invokehandle: {
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
   996
        int cache_index = ConstantPool::decode_cpcache_index(index, true);
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
   997
        assert(cache_index >= 0 && cache_index < pool->cache()->length(), "unexpected cache index");
35543
0961315f4016 8140659: C1: invokedynamic call patching violates JVMS-6.5.invokedynamic
vlivanov
parents: 35542
diff changeset
   998
        ConstantPoolCacheEntry* cpce = pool->cache()->entry_at(cache_index);
0961315f4016 8140659: C1: invokedynamic call patching violates JVMS-6.5.invokedynamic
vlivanov
parents: 35542
diff changeset
   999
        cpce->set_method_handle(pool, info);
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 42664
diff changeset
  1000
        appendix = Handle(THREAD, cpce->appendix_if_resolved(pool)); // just in case somebody already resolved the entry
19710
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1001
        break;
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1002
      }
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1003
      case Bytecodes::_invokedynamic: {
35543
0961315f4016 8140659: C1: invokedynamic call patching violates JVMS-6.5.invokedynamic
vlivanov
parents: 35542
diff changeset
  1004
        ConstantPoolCacheEntry* cpce = pool->invokedynamic_cp_cache_entry_at(index);
0961315f4016 8140659: C1: invokedynamic call patching violates JVMS-6.5.invokedynamic
vlivanov
parents: 35542
diff changeset
  1005
        cpce->set_dynamic_call(pool, info);
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 42664
diff changeset
  1006
        appendix = Handle(THREAD, cpce->appendix_if_resolved(pool)); // just in case somebody already resolved the entry
19710
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1007
        break;
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1008
      }
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1009
      default: fatal("unexpected bytecode for load_appendix_patching_id");
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1010
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
23189
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
  1015
  if (deoptimize_for_volatile || deoptimize_for_atomic) {
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
  1016
    // At compile time we assumed the field wasn't volatile/atomic but after
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
  1017
    // loading it turns out it was volatile/atomic so we have to throw the
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
    // compiled code out and let it be regenerated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
    if (TracePatching) {
23189
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
  1020
      if (deoptimize_for_volatile) {
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
  1021
        tty->print_cr("Deoptimizing for patching volatile field reference");
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
  1022
      }
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
  1023
      if (deoptimize_for_atomic) {
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
  1024
        tty->print_cr("Deoptimizing for patching atomic field reference");
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
  1025
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
    }
23189
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 20703
diff changeset
  1027
1672
ae4d91125c2d 6767587: missing call to make_not_entrant after deoptimizing for patching volatiles
never
parents: 1394
diff changeset
  1028
    // It's possible the nmethod was invalidated in the last
ae4d91125c2d 6767587: missing call to make_not_entrant after deoptimizing for patching volatiles
never
parents: 1394
diff changeset
  1029
    // safepoint, but if it's still alive then make it not_entrant.
ae4d91125c2d 6767587: missing call to make_not_entrant after deoptimizing for patching volatiles
never
parents: 1394
diff changeset
  1030
    nmethod* nm = CodeCache::find_nmethod(caller_frame.pc());
ae4d91125c2d 6767587: missing call to make_not_entrant after deoptimizing for patching volatiles
never
parents: 1394
diff changeset
  1031
    if (nm != NULL) {
ae4d91125c2d 6767587: missing call to make_not_entrant after deoptimizing for patching volatiles
never
parents: 1394
diff changeset
  1032
      nm->make_not_entrant();
ae4d91125c2d 6767587: missing call to make_not_entrant after deoptimizing for patching volatiles
never
parents: 1394
diff changeset
  1033
    }
ae4d91125c2d 6767587: missing call to make_not_entrant after deoptimizing for patching volatiles
never
parents: 1394
diff changeset
  1034
7106
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 6453
diff changeset
  1035
    Deoptimization::deoptimize_frame(thread, caller_frame.id());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
    // Return to the now deoptimized frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
  // Now copy code back
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
  {
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54120
diff changeset
  1043
    MutexLocker ml_patch (Patching_lock, Mutex::_no_safepoint_check_flag);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
    // Deoptimization may have happened while we waited for the lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
    // In that case we don't bother to do any patching we just return
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
    // and let the deopt happen
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
    if (!caller_is_deopted()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
      NativeGeneralJump* jump = nativeGeneralJump_at(caller_frame.pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
      address instr_pc = jump->jump_destination();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
      NativeInstruction* ni = nativeInstruction_at(instr_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
      if (ni->is_jump() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
        // the jump has not been patched yet
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
        // The jump destination is slow case and therefore not part of the stubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
        // (stubs are only for StaticCalls)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
        // format of buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
        //    ....
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
        //    instr byte 0     <-- copy_buff
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
        //    instr byte 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
        //    ..
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
        //    instr byte n-1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
        //      n
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
        //    ....             <-- call destination
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
        address stub_location = caller_frame.pc() + PatchingStub::patch_info_offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
        unsigned char* byte_count = (unsigned char*) (stub_location - 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
        unsigned char* byte_skip = (unsigned char*) (stub_location - 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
        unsigned char* being_initialized_entry_offset = (unsigned char*) (stub_location - 3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
        address copy_buff = stub_location - *byte_skip - *byte_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
        address being_initialized_entry = stub_location - *being_initialized_entry_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
        if (TracePatching) {
35542
9dccb7f9f656 8071374: -XX:+PrintAssembly -XX:+PrintSignatureHandlers crash fastdebug VM with assert(limit == __null || limit <= nm->code_end()) in RelocIterator::initialize
vlivanov
parents: 35540
diff changeset
  1073
          ttyLocker ttyl;
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23189
diff changeset
  1074
          tty->print_cr(" Patching %s at bci %d at address " INTPTR_FORMAT "  (%s)", Bytecodes::name(code), bci,
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23189
diff changeset
  1075
                        p2i(instr_pc), (stub_id == Runtime1::access_field_patching_id) ? "field" : "klass");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
          nmethod* caller_code = CodeCache::find_nmethod(caller_frame.pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
          assert(caller_code != NULL, "nmethod not found");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
          // NOTE we use pc() not original_pc() because we already know they are
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
          // identical otherwise we'd have never entered this block of code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
30590
14f7f48c1377 8064458: OopMap class could be more compact
rbackman
parents: 29474
diff changeset
  1082
          const ImmutableOopMap* map = caller_code->oop_map_for_return_address(caller_frame.pc());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
          assert(map != NULL, "null check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
          map->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
          tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
          Disassembler::decode(copy_buff, copy_buff + *byte_count, tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
        // depending on the code below, do_patch says whether to copy the patch body back into the nmethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
        bool do_patch = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
        if (stub_id == Runtime1::access_field_patching_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
          // The offset may not be correct if the class was not loaded at code generation time.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
          // Set it now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
          NativeMovRegMem* n_move = nativeMovRegMem_at(copy_buff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
          assert(n_move->offset() == 0 || (n_move->offset() == 4 && (patch_field_type == T_DOUBLE || patch_field_type == T_LONG)), "illegal offset for type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
          assert(patch_field_offset >= 0, "illegal offset");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
          n_move->add_offset_in_bytes(patch_field_offset);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1098
        } else if (load_klass_or_mirror_patch_id) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
          // If a getstatic or putstatic is referencing a klass which
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
          // isn't fully initialized, the patch body isn't copied into
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
          // place until initialization is complete.  In this case the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
          // patch site is setup so that any threads besides the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
          // initializing thread are forced to come into the VM and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
          // block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
          do_patch = (code != Bytecodes::_getstatic && code != Bytecodes::_putstatic) ||
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46271
diff changeset
  1106
                     InstanceKlass::cast(init_klass)->is_initialized();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
          NativeGeneralJump* jump = nativeGeneralJump_at(instr_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
          if (jump->jump_destination() == being_initialized_entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
            assert(do_patch == true, "initialization must be complete at this point");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
          } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
            // patch the instruction <move reg, klass>
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
            NativeMovConstReg* n_copy = nativeMovConstReg_at(copy_buff);
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5883
diff changeset
  1113
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5883
diff changeset
  1114
            assert(n_copy->data() == 0 ||
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6418
diff changeset
  1115
                   n_copy->data() == (intptr_t)Universe::non_oop_word(),
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5883
diff changeset
  1116
                   "illegal init value");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1117
            if (stub_id == Runtime1::load_klass_patching_id) {
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46271
diff changeset
  1118
              assert(load_klass != NULL, "klass not set");
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46271
diff changeset
  1119
              n_copy->set_data((intx) (load_klass));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1120
            } else {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1121
              assert(mirror() != NULL, "klass not set");
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1122
              // Don't need a G1 pre-barrier here since we assert above that data isn't an oop.
20282
7f9cbdf89af2 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 20017
diff changeset
  1123
              n_copy->set_data(cast_from_oop<intx>(mirror()));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1124
            }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
            if (TracePatching) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
              Disassembler::decode(copy_buff, copy_buff + *byte_count, tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
            }
19710
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1129
          }
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1130
        } else if (stub_id == Runtime1::load_appendix_patching_id) {
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1131
          NativeMovConstReg* n_copy = nativeMovConstReg_at(copy_buff);
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1132
          assert(n_copy->data() == 0 ||
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1133
                 n_copy->data() == (intptr_t)Universe::non_oop_word(),
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1134
                 "illegal init value");
20282
7f9cbdf89af2 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 20017
diff changeset
  1135
          n_copy->set_data(cast_from_oop<intx>(appendix()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
19710
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1137
          if (TracePatching) {
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1138
            Disassembler::decode(copy_buff, copy_buff + *byte_count, tty);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
          ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
        }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1143
34220
1ba69cb5585c 8138952: C1: Distinguish between PPC32 and PPC64
mdoerr
parents: 33470
diff changeset
  1144
#if defined(SPARC) || defined(PPC32)
19710
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1145
        if (load_klass_or_mirror_patch_id ||
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1146
            stub_id == Runtime1::load_appendix_patching_id) {
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1147
          // Update the location in the nmethod with the proper
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1148
          // metadata.  When the code was generated, a NULL was stuffed
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1149
          // in the metadata table and that table needs to be update to
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1150
          // have the right value.  On intel the value is kept
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1151
          // directly in the instruction instead of in the metadata
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1152
          // table, so set_data above effectively updated the value.
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1153
          nmethod* nm = CodeCache::find_nmethod(instr_pc);
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1154
          assert(nm != NULL, "invalid nmethod_pc");
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1155
          RelocIterator mds(nm, copy_buff, copy_buff + 1);
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1156
          bool found = false;
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1157
          while (mds.next() && !found) {
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1158
            if (mds.type() == relocInfo::oop_type) {
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1159
              assert(stub_id == Runtime1::load_mirror_patching_id ||
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1160
                     stub_id == Runtime1::load_appendix_patching_id, "wrong stub id");
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1161
              oop_Relocation* r = mds.oop_reloc();
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1162
              oop* oop_adr = r->oop_addr();
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1163
              *oop_adr = stub_id == Runtime1::load_mirror_patching_id ? mirror() : appendix();
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1164
              r->fix_oop_relocation();
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1165
              found = true;
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1166
            } else if (mds.type() == relocInfo::metadata_type) {
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1167
              assert(stub_id == Runtime1::load_klass_patching_id, "wrong stub id");
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1168
              metadata_Relocation* r = mds.metadata_reloc();
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1169
              Metadata** metadata_adr = r->metadata_addr();
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46271
diff changeset
  1170
              *metadata_adr = load_klass;
19710
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1171
              r->fix_metadata_relocation();
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1172
              found = true;
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1173
            }
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1174
          }
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1175
          assert(found, "the metadata must exist!");
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1176
        }
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1177
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
        if (do_patch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
          // replace instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
          // first replace the tail, then the call
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5883
diff changeset
  1181
#ifdef ARM
20301
7a16289e8bef 8024990: JT_JDK: 11 failures with SIGSEGV on arm-sflt platforms in nightly fastdebug build.
jiangli
parents: 19710
diff changeset
  1182
          if((load_klass_or_mirror_patch_id ||
7a16289e8bef 8024990: JT_JDK: 11 failures with SIGSEGV on arm-sflt platforms in nightly fastdebug build.
jiangli
parents: 19710
diff changeset
  1183
              stub_id == Runtime1::load_appendix_patching_id) &&
29474
81a5c5330d08 8072383: resolve conflicts between open and closed ports
dlong
parents: 29180
diff changeset
  1184
              nativeMovConstReg_at(copy_buff)->is_pc_relative()) {
9318
c7acc13a9226 7035861: linux-armsflt: assert(ni->data() == (int)(x + o)) failed: instructions must match
vladidan
parents: 9102
diff changeset
  1185
            nmethod* nm = CodeCache::find_nmethod(instr_pc);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1186
            address addr = NULL;
9318
c7acc13a9226 7035861: linux-armsflt: assert(ni->data() == (int)(x + o)) failed: instructions must match
vladidan
parents: 9102
diff changeset
  1187
            assert(nm != NULL, "invalid nmethod_pc");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1188
            RelocIterator mds(nm, copy_buff, copy_buff + 1);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1189
            while (mds.next()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1190
              if (mds.type() == relocInfo::oop_type) {
20301
7a16289e8bef 8024990: JT_JDK: 11 failures with SIGSEGV on arm-sflt platforms in nightly fastdebug build.
jiangli
parents: 19710
diff changeset
  1191
                assert(stub_id == Runtime1::load_mirror_patching_id ||
7a16289e8bef 8024990: JT_JDK: 11 failures with SIGSEGV on arm-sflt platforms in nightly fastdebug build.
jiangli
parents: 19710
diff changeset
  1192
                       stub_id == Runtime1::load_appendix_patching_id, "wrong stub id");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1193
                oop_Relocation* r = mds.oop_reloc();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1194
                addr = (address)r->oop_addr();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1195
                break;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1196
              } else if (mds.type() == relocInfo::metadata_type) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1197
                assert(stub_id == Runtime1::load_klass_patching_id, "wrong stub id");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1198
                metadata_Relocation* r = mds.metadata_reloc();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1199
                addr = (address)r->metadata_addr();
9318
c7acc13a9226 7035861: linux-armsflt: assert(ni->data() == (int)(x + o)) failed: instructions must match
vladidan
parents: 9102
diff changeset
  1200
                break;
c7acc13a9226 7035861: linux-armsflt: assert(ni->data() == (int)(x + o)) failed: instructions must match
vladidan
parents: 9102
diff changeset
  1201
              }
c7acc13a9226 7035861: linux-armsflt: assert(ni->data() == (int)(x + o)) failed: instructions must match
vladidan
parents: 9102
diff changeset
  1202
            }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1203
            assert(addr != NULL, "metadata relocation must exist");
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5883
diff changeset
  1204
            copy_buff -= *byte_count;
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5883
diff changeset
  1205
            NativeMovConstReg* n_copy2 = nativeMovConstReg_at(copy_buff);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1206
            n_copy2->set_pc_relative_offset(addr, instr_pc);
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5883
diff changeset
  1207
          }
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5883
diff changeset
  1208
#endif
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5883
diff changeset
  1209
34500
3c82f7ac03e6 8138896: C1: NativeGeneralJump is mixed up with NativeCall in C1 patching code
mdoerr
parents: 34220
diff changeset
  1210
          for (int i = NativeGeneralJump::instruction_size; i < *byte_count; i++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
            address ptr = copy_buff + i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
            int a_byte = (*ptr) & 0xFF;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
            address dst = instr_pc + i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
            *(unsigned char*)dst = (unsigned char) a_byte;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
          ICache::invalidate_range(instr_pc, *byte_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
          NativeGeneralJump::replace_mt_safe(instr_pc, copy_buff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
19710
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1219
          if (load_klass_or_mirror_patch_id ||
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1220
              stub_id == Runtime1::load_appendix_patching_id) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1221
            relocInfo::relocType rtype =
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1222
              (stub_id == Runtime1::load_klass_patching_id) ?
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1223
                                   relocInfo::metadata_type :
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1224
                                   relocInfo::oop_type;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1225
            // update relocInfo to metadata
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
            nmethod* nm = CodeCache::find_nmethod(instr_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
            assert(nm != NULL, "invalid nmethod_pc");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
            // The old patch site is now a move instruction so update
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
            // the reloc info so that it will get updated during
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
            // future GCs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
            RelocIterator iter(nm, (address)instr_pc, (address)(instr_pc + 1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
            relocInfo::change_reloc_info_for_address(&iter, (address) instr_pc,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1234
                                                     relocInfo::none, rtype);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
#ifdef SPARC
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1236
            // Sparc takes two relocations for an metadata so update the second one.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
            address instr_pc2 = instr_pc + NativeMovConstReg::add_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
            RelocIterator iter2(nm, instr_pc2, instr_pc2 + 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
            relocInfo::change_reloc_info_for_address(&iter2, (address) instr_pc2,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1240
                                                     relocInfo::none, rtype);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
#endif
34220
1ba69cb5585c 8138952: C1: Distinguish between PPC32 and PPC64
mdoerr
parents: 33470
diff changeset
  1242
#ifdef PPC32
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5883
diff changeset
  1243
          { address instr_pc2 = instr_pc + NativeMovConstReg::lo_offset;
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5883
diff changeset
  1244
            RelocIterator iter2(nm, instr_pc2, instr_pc2 + 1);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1245
            relocInfo::change_reloc_info_for_address(&iter2, (address) instr_pc2,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1246
                                                     relocInfo::none, rtype);
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5883
diff changeset
  1247
          }
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5883
diff changeset
  1248
#endif
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
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
          ICache::invalidate_range(copy_buff, *byte_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
          NativeGeneralJump::insert_unconditional(instr_pc, being_initialized_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
  }
19339
d247781beec7 7145569: G1: optimize nmethods scanning
johnc
parents: 18507
diff changeset
  1258
d247781beec7 7145569: G1: optimize nmethods scanning
johnc
parents: 18507
diff changeset
  1259
  // If we are patching in a non-perm oop, make sure the nmethod
d247781beec7 7145569: G1: optimize nmethods scanning
johnc
parents: 18507
diff changeset
  1260
  // is on the right list.
54120
677cede5608e 8220411: Remove ScavengeRootsInCode=0 code
stefank
parents: 53582
diff changeset
  1261
  {
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54120
diff changeset
  1262
    MutexLocker ml_code (CodeCache_lock, Mutex::_no_safepoint_check_flag);
19339
d247781beec7 7145569: G1: optimize nmethods scanning
johnc
parents: 18507
diff changeset
  1263
    nmethod* nm = CodeCache::find_nmethod(caller_frame.pc());
d247781beec7 7145569: G1: optimize nmethods scanning
johnc
parents: 18507
diff changeset
  1264
    guarantee(nm != NULL, "only nmethods can contain non-perm oops");
d247781beec7 7145569: G1: optimize nmethods scanning
johnc
parents: 18507
diff changeset
  1265
d247781beec7 7145569: G1: optimize nmethods scanning
johnc
parents: 18507
diff changeset
  1266
    // Since we've patched some oops in the nmethod,
d247781beec7 7145569: G1: optimize nmethods scanning
johnc
parents: 18507
diff changeset
  1267
    // (re)register it with the heap.
d247781beec7 7145569: G1: optimize nmethods scanning
johnc
parents: 18507
diff changeset
  1268
    Universe::heap()->register_nmethod(nm);
d247781beec7 7145569: G1: optimize nmethods scanning
johnc
parents: 18507
diff changeset
  1269
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
29180
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1272
#else // DEOPTIMIZE_WHEN_PATCHING
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1273
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1274
JRT_ENTRY(void, Runtime1::patch_code(JavaThread* thread, Runtime1::StubID stub_id ))
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1275
  RegisterMap reg_map(thread, false);
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1276
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1277
  NOT_PRODUCT(_patch_code_slowcase_cnt++;)
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1278
  if (TracePatching) {
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1279
    tty->print_cr("Deoptimizing because patch is needed");
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1280
  }
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1281
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1282
  frame runtime_frame = thread->last_frame();
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1283
  frame caller_frame = runtime_frame.sender(&reg_map);
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1284
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1285
  // It's possible the nmethod was invalidated in the last
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1286
  // safepoint, but if it's still alive then make it not_entrant.
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1287
  nmethod* nm = CodeCache::find_nmethod(caller_frame.pc());
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1288
  if (nm != NULL) {
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1289
    nm->make_not_entrant();
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1290
  }
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1291
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1292
  Deoptimization::deoptimize_frame(thread, caller_frame.id());
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1293
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1294
  // Return to the now deoptimized frame.
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1295
JRT_END
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1296
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1297
#endif // DEOPTIMIZE_WHEN_PATCHING
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 26169
diff changeset
  1298
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
// Entry point for compiled code. We want to patch a nmethod.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
// We don't do a normal VM transition here because we want to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
// know after the patching is complete and any safepoint(s) are taken
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
// if the calling nmethod was deoptimized. We do this by calling a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
// helper method which does the normal VM transition and when it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
// completes we can check for deoptimization. This simplifies the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
// assembly code in the cpu directories.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
int Runtime1::move_klass_patching(JavaThread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
// NOTE: we are still in Java
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
  Thread* THREAD = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
  debug_only(NoHandleMark nhm;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
    // Enter VM mode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
    ResetNoHandleMark rnhm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
    patch_code(thread, load_klass_patching_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
  // Back in JAVA, use no oops DON'T safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
  // Return true if calling code is deoptimized
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
  return caller_is_deopted();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1327
int Runtime1::move_mirror_patching(JavaThread* thread) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1328
//
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1329
// NOTE: we are still in Java
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1330
//
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1331
  Thread* THREAD = thread;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1332
  debug_only(NoHandleMark nhm;)
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1333
  {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1334
    // Enter VM mode
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1335
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1336
    ResetNoHandleMark rnhm;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1337
    patch_code(thread, load_mirror_patching_id);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1338
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1339
  // Back in JAVA, use no oops DON'T safepoint
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1340
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1341
  // Return true if calling code is deoptimized
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1342
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1343
  return caller_is_deopted();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1344
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1345
19710
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1346
int Runtime1::move_appendix_patching(JavaThread* thread) {
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1347
//
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1348
// NOTE: we are still in Java
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1349
//
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1350
  Thread* THREAD = thread;
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1351
  debug_only(NoHandleMark nhm;)
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1352
  {
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1353
    // Enter VM mode
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1354
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1355
    ResetNoHandleMark rnhm;
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1356
    patch_code(thread, load_appendix_patching_id);
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1357
  }
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1358
  // Back in JAVA, use no oops DON'T safepoint
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1359
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1360
  // Return true if calling code is deoptimized
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1361
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1362
  return caller_is_deopted();
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 19339
diff changeset
  1363
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
// Entry point for compiled code. We want to patch a nmethod.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
// We don't do a normal VM transition here because we want to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
// know after the patching is complete and any safepoint(s) are taken
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
// if the calling nmethod was deoptimized. We do this by calling a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
// helper method which does the normal VM transition and when it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
// completes we can check for deoptimization. This simplifies the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
// assembly code in the cpu directories.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
int Runtime1::access_field_patching(JavaThread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
// NOTE: we are still in Java
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
  Thread* THREAD = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
  debug_only(NoHandleMark nhm;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
    // Enter VM mode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
    ResetNoHandleMark rnhm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
    patch_code(thread, access_field_patching_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
  // Back in JAVA, use no oops DON'T safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
  // Return true if calling code is deoptimized
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
  return caller_is_deopted();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
JRT_LEAF(void, Runtime1::trace_block_entry(jint block_id))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
  // for now we just print out the block id
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
  tty->print("%d ", block_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
12949
e125ba4c16bd 7171890: C1: add Class.isInstance intrinsic
roland
parents: 12377
diff changeset
  1400
JRT_LEAF(int, Runtime1::is_instance_of(oopDesc* mirror, oopDesc* obj))
e125ba4c16bd 7171890: C1: add Class.isInstance intrinsic
roland
parents: 12377
diff changeset
  1401
  // had to return int instead of bool, otherwise there may be a mismatch
e125ba4c16bd 7171890: C1: add Class.isInstance intrinsic
roland
parents: 12377
diff changeset
  1402
  // between the C calling convention and the Java one.
e125ba4c16bd 7171890: C1: add Class.isInstance intrinsic
roland
parents: 12377
diff changeset
  1403
  // e.g., on x86, GCC may clear only %al when returning a bool false, but
e125ba4c16bd 7171890: C1: add Class.isInstance intrinsic
roland
parents: 12377
diff changeset
  1404
  // JVM takes the whole %eax as the return value, which may misinterpret
e125ba4c16bd 7171890: C1: add Class.isInstance intrinsic
roland
parents: 12377
diff changeset
  1405
  // the return value as a boolean true.
e125ba4c16bd 7171890: C1: add Class.isInstance intrinsic
roland
parents: 12377
diff changeset
  1406
e125ba4c16bd 7171890: C1: add Class.isInstance intrinsic
roland
parents: 12377
diff changeset
  1407
  assert(mirror != NULL, "should null-check on mirror before calling");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
  1408
  Klass* k = java_lang_Class::as_Klass(mirror);
12949
e125ba4c16bd 7171890: C1: add Class.isInstance intrinsic
roland
parents: 12377
diff changeset
  1409
  return (k != NULL && obj != NULL && obj->is_a(k)) ? 1 : 0;
e125ba4c16bd 7171890: C1: add Class.isInstance intrinsic
roland
parents: 12377
diff changeset
  1410
JRT_END
e125ba4c16bd 7171890: C1: add Class.isInstance intrinsic
roland
parents: 12377
diff changeset
  1411
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1412
JRT_ENTRY(void, Runtime1::predicate_failed_trap(JavaThread* thread))
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1413
  ResourceMark rm;
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1414
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1415
  assert(!TieredCompilation, "incompatible with tiered compilation");
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1416
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1417
  RegisterMap reg_map(thread, false);
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1418
  frame runtime_frame = thread->last_frame();
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1419
  frame caller_frame = runtime_frame.sender(&reg_map);
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1420
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1421
  nmethod* nm = CodeCache::find_nmethod(caller_frame.pc());
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1422
  assert (nm != NULL, "no more nmethod?");
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1423
  nm->make_not_entrant();
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1424
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 58545
diff changeset
  1425
  methodHandle m(thread, nm->method());
36350
29d8bb1668f5 8151130: [BACKOUT] Remove Method::_method_data for C1
thartmann
parents: 36345
diff changeset
  1426
  MethodData* mdo = m->method_data();
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1427
36350
29d8bb1668f5 8151130: [BACKOUT] Remove Method::_method_data for C1
thartmann
parents: 36345
diff changeset
  1428
  if (mdo == NULL && !HAS_PENDING_EXCEPTION) {
29d8bb1668f5 8151130: [BACKOUT] Remove Method::_method_data for C1
thartmann
parents: 36345
diff changeset
  1429
    // Build an MDO.  Ignore errors like OutOfMemory;
29d8bb1668f5 8151130: [BACKOUT] Remove Method::_method_data for C1
thartmann
parents: 36345
diff changeset
  1430
    // that simply means we won't have an MDO to update.
29d8bb1668f5 8151130: [BACKOUT] Remove Method::_method_data for C1
thartmann
parents: 36345
diff changeset
  1431
    Method::build_interpreter_method_data(m, THREAD);
29d8bb1668f5 8151130: [BACKOUT] Remove Method::_method_data for C1
thartmann
parents: 36345
diff changeset
  1432
    if (HAS_PENDING_EXCEPTION) {
29d8bb1668f5 8151130: [BACKOUT] Remove Method::_method_data for C1
thartmann
parents: 36345
diff changeset
  1433
      assert((PENDING_EXCEPTION->is_a(SystemDictionary::OutOfMemoryError_klass())), "we expect only an OOM error here");
29d8bb1668f5 8151130: [BACKOUT] Remove Method::_method_data for C1
thartmann
parents: 36345
diff changeset
  1434
      CLEAR_PENDING_EXCEPTION;
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1435
    }
36350
29d8bb1668f5 8151130: [BACKOUT] Remove Method::_method_data for C1
thartmann
parents: 36345
diff changeset
  1436
    mdo = m->method_data();
29d8bb1668f5 8151130: [BACKOUT] Remove Method::_method_data for C1
thartmann
parents: 36345
diff changeset
  1437
  }
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1438
36350
29d8bb1668f5 8151130: [BACKOUT] Remove Method::_method_data for C1
thartmann
parents: 36345
diff changeset
  1439
  if (mdo != NULL) {
29d8bb1668f5 8151130: [BACKOUT] Remove Method::_method_data for C1
thartmann
parents: 36345
diff changeset
  1440
    mdo->inc_trap_count(Deoptimization::Reason_none);
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1441
  }
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1442
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1443
  if (TracePredicateFailedTraps) {
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1444
    stringStream ss1, ss2;
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1445
    vframeStream vfst(thread);
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 58545
diff changeset
  1446
    Method* inlinee = vfst.method();
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1447
    inlinee->print_short_name(&ss1);
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1448
    m->print_short_name(&ss2);
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23189
diff changeset
  1449
    tty->print_cr("Predicate failed trap in method %s at bci %d inlined in %s at pc " INTPTR_FORMAT, ss1.as_string(), vfst.bci(), ss2.as_string(), p2i(caller_frame.pc()));
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1450
  }
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1451
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1452
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1453
  Deoptimization::deoptimize_frame(thread, caller_frame.id());
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1454
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 14488
diff changeset
  1455
JRT_END
12949
e125ba4c16bd 7171890: C1: add Class.isInstance intrinsic
roland
parents: 12377
diff changeset
  1456
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
void Runtime1::print_statistics() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
  tty->print_cr("C1 Runtime statistics:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
  tty->print_cr(" _resolve_invoke_virtual_cnt:     %d", SharedRuntime::_resolve_virtual_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
  tty->print_cr(" _resolve_invoke_opt_virtual_cnt: %d", SharedRuntime::_resolve_opt_virtual_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
  tty->print_cr(" _resolve_invoke_static_cnt:      %d", SharedRuntime::_resolve_static_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
  tty->print_cr(" _handle_wrong_method_cnt:        %d", SharedRuntime::_wrong_method_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
  tty->print_cr(" _ic_miss_cnt:                    %d", SharedRuntime::_ic_miss_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
  tty->print_cr(" _generic_arraycopy_cnt:          %d", _generic_arraycopy_cnt);
9102
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
  1466
  tty->print_cr(" _generic_arraycopystub_cnt:      %d", _generic_arraycopystub_cnt);
24944
5b01505efb7a 8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents: 24442
diff changeset
  1467
  tty->print_cr(" _byte_arraycopy_cnt:             %d", _byte_arraycopy_stub_cnt);
5b01505efb7a 8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents: 24442
diff changeset
  1468
  tty->print_cr(" _short_arraycopy_cnt:            %d", _short_arraycopy_stub_cnt);
5b01505efb7a 8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents: 24442
diff changeset
  1469
  tty->print_cr(" _int_arraycopy_cnt:              %d", _int_arraycopy_stub_cnt);
5b01505efb7a 8033145: Runtime1::arraycopy_count_address uses wrong _oop_arraycopy_cnt variable
thartmann
parents: 24442
diff changeset
  1470
  tty->print_cr(" _long_arraycopy_cnt:             %d", _long_arraycopy_stub_cnt);
46648
527ce5a7c737 8183575: Runtime1::oop_arraycopy is unused and should be removed
eosterlund
parents: 46379
diff changeset
  1471
  tty->print_cr(" _oop_arraycopy_cnt:              %d", _oop_arraycopy_stub_cnt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
  tty->print_cr(" _arraycopy_slowcase_cnt:         %d", _arraycopy_slowcase_cnt);
9102
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
  1473
  tty->print_cr(" _arraycopy_checkcast_cnt:        %d", _arraycopy_checkcast_cnt);
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8725
diff changeset
  1474
  tty->print_cr(" _arraycopy_checkcast_attempt_cnt:%d", _arraycopy_checkcast_attempt_cnt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
  tty->print_cr(" _new_type_array_slowcase_cnt:    %d", _new_type_array_slowcase_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
  tty->print_cr(" _new_object_array_slowcase_cnt:  %d", _new_object_array_slowcase_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
  tty->print_cr(" _new_instance_slowcase_cnt:      %d", _new_instance_slowcase_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
  tty->print_cr(" _new_multi_array_slowcase_cnt:   %d", _new_multi_array_slowcase_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
  tty->print_cr(" _monitorenter_slowcase_cnt:      %d", _monitorenter_slowcase_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
  tty->print_cr(" _monitorexit_slowcase_cnt:       %d", _monitorexit_slowcase_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
  tty->print_cr(" _patch_code_slowcase_cnt:        %d", _patch_code_slowcase_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
  tty->print_cr(" _throw_range_check_exception_count:            %d:", _throw_range_check_exception_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
  tty->print_cr(" _throw_index_exception_count:                  %d:", _throw_index_exception_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
  tty->print_cr(" _throw_div0_exception_count:                   %d:", _throw_div0_exception_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
  tty->print_cr(" _throw_null_pointer_exception_count:           %d:", _throw_null_pointer_exception_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
  tty->print_cr(" _throw_class_cast_exception_count:             %d:", _throw_class_cast_exception_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
  tty->print_cr(" _throw_incompatible_class_change_error_count:  %d:", _throw_incompatible_class_change_error_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
  tty->print_cr(" _throw_array_store_exception_count:            %d:", _throw_array_store_exception_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
  tty->print_cr(" _throw_count:                                  %d:", _throw_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
  SharedRuntime::print_ic_miss_histogram();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
#endif // PRODUCT