hotspot/src/share/vm/c1/c1_Runtime1.cpp
author ysr
Thu, 05 Jun 2008 15:57:56 -0700
changeset 1374 4c24294029a9
parent 360 21d113ecbf6a
child 1388 3677f5f3d66b
permissions -rw-r--r--
6711316: Open source the Garbage-First garbage collector Summary: First mercurial integration of the code for the Garbage-First garbage collector. Reviewed-by: apetrusenko, iveresov, jmasa, sgoldman, tonyp, ysr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1999-2007 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
#include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "incls/_c1_Runtime1.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// Implementation of StubAssembler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
StubAssembler::StubAssembler(CodeBuffer* code, const char * name, int stub_id) : C1_MacroAssembler(code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  _name = name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  _must_gc_arguments = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  _frame_size = no_frame_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  _num_rt_args = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  _stub_id = stub_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
void StubAssembler::set_info(const char* name, bool must_gc_arguments) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  _name = name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  _must_gc_arguments = must_gc_arguments;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
void StubAssembler::set_frame_size(int size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  if (_frame_size == no_frame_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    _frame_size = size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  assert(_frame_size == size, "can't change the frame size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
void StubAssembler::set_num_rt_args(int args) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  if (_num_rt_args == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    _num_rt_args = args;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  assert(_num_rt_args == args, "can't change the number of args");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// Implementation of Runtime1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
bool      Runtime1::_is_initialized = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
CodeBlob* Runtime1::_blobs[Runtime1::number_of_ids];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
const char *Runtime1::_blob_names[] = {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  RUNTIME1_STUBS(STUB_NAME, LAST_STUB_NAME)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
// statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
int Runtime1::_generic_arraycopy_cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
int Runtime1::_primitive_arraycopy_cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
int Runtime1::_oop_arraycopy_cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
int Runtime1::_arraycopy_slowcase_cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
int Runtime1::_new_type_array_slowcase_cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
int Runtime1::_new_object_array_slowcase_cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
int Runtime1::_new_instance_slowcase_cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
int Runtime1::_new_multi_array_slowcase_cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
int Runtime1::_monitorenter_slowcase_cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
int Runtime1::_monitorexit_slowcase_cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
int Runtime1::_patch_code_slowcase_cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
int Runtime1::_throw_range_check_exception_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
int Runtime1::_throw_index_exception_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
int Runtime1::_throw_div0_exception_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
int Runtime1::_throw_null_pointer_exception_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
int Runtime1::_throw_class_cast_exception_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
int Runtime1::_throw_incompatible_class_change_error_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
int Runtime1::_throw_array_store_exception_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
int Runtime1::_throw_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
BufferBlob* Runtime1::_buffer_blob  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
// Simple helper to see if the caller of a runtime stub which
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
// entered the VM has been deoptimized
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
static bool caller_is_deopted() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  JavaThread* thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  RegisterMap reg_map(thread, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  frame runtime_frame = thread->last_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  frame caller_frame = runtime_frame.sender(&reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  assert(caller_frame.is_compiled_frame(), "must be compiled");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  return caller_frame.is_deoptimized_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
// Stress deoptimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
static void deopt_caller() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  if ( !caller_is_deopted()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    JavaThread* thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    RegisterMap reg_map(thread, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    frame runtime_frame = thread->last_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    frame caller_frame = runtime_frame.sender(&reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    VM_DeoptimizeFrame deopt(thread, caller_frame.id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    VMThread::execute(&deopt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    assert(caller_is_deopted(), "Must be deoptimized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
BufferBlob* Runtime1::get_buffer_blob() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // Allocate code buffer space only once
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  BufferBlob* blob = _buffer_blob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  if (blob == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    // setup CodeBuffer.  Preallocate a BufferBlob of size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    // NMethodSizeLimit plus some extra space for constants.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    int code_buffer_size = desired_max_code_buffer_size() + desired_max_constant_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    blob = BufferBlob::create("Compiler1 temporary CodeBuffer",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
                              code_buffer_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    guarantee(blob != NULL, "must create initial code buffer");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    _buffer_blob = blob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  return _buffer_blob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
void Runtime1::setup_code_buffer(CodeBuffer* code, int call_stub_estimate) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // Preinitialize the consts section to some large size:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  int locs_buffer_size = 20 * (relocInfo::length_limit + sizeof(relocInfo));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  char* locs_buffer = NEW_RESOURCE_ARRAY(char, locs_buffer_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  code->insts()->initialize_shared_locs((relocInfo*)locs_buffer,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
                                        locs_buffer_size / sizeof(relocInfo));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  code->initialize_consts_size(desired_max_constant_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // Call stubs + deopt/exception handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  code->initialize_stubs_size((call_stub_estimate * LIR_Assembler::call_stub_size) +
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
                              LIR_Assembler::exception_handler_size +
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
                              LIR_Assembler::deopt_handler_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
void Runtime1::generate_blob_for(StubID id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  assert(0 <= id && id < number_of_ids, "illegal stub id");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  // create code buffer for code storage
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  CodeBuffer code(get_buffer_blob()->instructions_begin(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
                  get_buffer_blob()->instructions_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  setup_code_buffer(&code, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // create assembler for code generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  StubAssembler* sasm = new StubAssembler(&code, name_for(id), id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // generate code for runtime stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  OopMapSet* oop_maps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  oop_maps = generate_code_for(id, sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  assert(oop_maps == NULL || sasm->frame_size() != no_frame_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
         "if stub has an oop map it must have a valid frame size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  // Make sure that stubs that need oopmaps have them
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  switch (id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    // These stubs don't need to have an oopmap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    case dtrace_object_alloc_id:
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   171
    case g1_pre_barrier_slow_id:
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   172
    case g1_post_barrier_slow_id:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    case slow_subtype_check_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    case fpu2long_stub_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    case unwind_exception_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
#ifndef TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    case counter_overflow_id: // Not generated outside the tiered world
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
#ifdef SPARC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    case handle_exception_nofpu_id:  // Unused on sparc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    // All other stubs should have oopmaps
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
      assert(oop_maps != NULL, "must have an oopmap");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  // align so printing shows nop's instead of random code at the end (SimpleStubs are aligned)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  sasm->align(BytesPerWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  // make sure all code is in code buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  sasm->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  // create blob - distinguish a few special cases
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  CodeBlob* blob = RuntimeStub::new_runtime_stub(name_for(id),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
                                                 &code,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
                                                 CodeOffsets::frame_never_safe,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
                                                 sasm->frame_size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
                                                 oop_maps,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
                                                 sasm->must_gc_arguments());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // install blob
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  assert(blob != NULL, "blob must exist");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  _blobs[id] = blob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
void Runtime1::initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  // Warning: If we have more than one compilation running in parallel, we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  //          need a lock here with the current setup (lazy initialization).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  if (!is_initialized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    _is_initialized = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    // platform-dependent initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    initialize_pd();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    // generate stubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    for (int id = 0; id < number_of_ids; id++) generate_blob_for((StubID)id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    // printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    if (PrintSimpleStubs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
      for (int id = 0; id < number_of_ids; id++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
        _blobs[id]->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
        if (_blobs[id]->oop_maps() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
          _blobs[id]->oop_maps()->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
CodeBlob* Runtime1::blob_for(StubID id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  assert(0 <= id && id < number_of_ids, "illegal stub id");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  if (!is_initialized()) initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  return _blobs[id];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
const char* Runtime1::name_for(StubID id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  assert(0 <= id && id < number_of_ids, "illegal stub id");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  return _blob_names[id];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
const char* Runtime1::name_for_address(address entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  for (int id = 0; id < number_of_ids; id++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    if (entry == entry_for((StubID)id)) return name_for((StubID)id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
#define FUNCTION_CASE(a, f) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  if ((intptr_t)a == CAST_FROM_FN_PTR(intptr_t, f))  return #f
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  FUNCTION_CASE(entry, os::javaTimeMillis);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  FUNCTION_CASE(entry, os::javaTimeNanos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  FUNCTION_CASE(entry, SharedRuntime::OSR_migration_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  FUNCTION_CASE(entry, SharedRuntime::d2f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  FUNCTION_CASE(entry, SharedRuntime::d2i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  FUNCTION_CASE(entry, SharedRuntime::d2l);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  FUNCTION_CASE(entry, SharedRuntime::dcos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  FUNCTION_CASE(entry, SharedRuntime::dexp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  FUNCTION_CASE(entry, SharedRuntime::dlog);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  FUNCTION_CASE(entry, SharedRuntime::dlog10);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  FUNCTION_CASE(entry, SharedRuntime::dpow);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  FUNCTION_CASE(entry, SharedRuntime::drem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  FUNCTION_CASE(entry, SharedRuntime::dsin);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  FUNCTION_CASE(entry, SharedRuntime::dtan);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  FUNCTION_CASE(entry, SharedRuntime::f2i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  FUNCTION_CASE(entry, SharedRuntime::f2l);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  FUNCTION_CASE(entry, SharedRuntime::frem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  FUNCTION_CASE(entry, SharedRuntime::l2d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  FUNCTION_CASE(entry, SharedRuntime::l2f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  FUNCTION_CASE(entry, SharedRuntime::ldiv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  FUNCTION_CASE(entry, SharedRuntime::lmul);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  FUNCTION_CASE(entry, SharedRuntime::lrem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  FUNCTION_CASE(entry, SharedRuntime::lrem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  FUNCTION_CASE(entry, SharedRuntime::dtrace_method_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  FUNCTION_CASE(entry, SharedRuntime::dtrace_method_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  FUNCTION_CASE(entry, trace_block_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
#undef FUNCTION_CASE
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  return "<unknown function>";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
JRT_ENTRY(void, Runtime1::new_instance(JavaThread* thread, klassOopDesc* klass))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  NOT_PRODUCT(_new_instance_slowcase_cnt++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  assert(oop(klass)->is_klass(), "not a class");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  instanceKlassHandle h(thread, klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  h->check_valid_for_instantiation(true, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  // make sure klass is initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  h->initialize(CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  // allocate instance and return via TLS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  oop obj = h->allocate_instance(CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  thread->set_vm_result(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
JRT_ENTRY(void, Runtime1::new_type_array(JavaThread* thread, klassOopDesc* klass, jint length))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  NOT_PRODUCT(_new_type_array_slowcase_cnt++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  // Note: no handle for klass needed since they are not used
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  //       anymore after new_typeArray() and no GC can happen before.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  //       (This may have to change if this code changes!)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  assert(oop(klass)->is_klass(), "not a class");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  BasicType elt_type = typeArrayKlass::cast(klass)->element_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  oop obj = oopFactory::new_typeArray(elt_type, length, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  thread->set_vm_result(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  // This is pretty rare but this runtime patch is stressful to deoptimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  // if we deoptimize here so force a deopt to stress the path.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  if (DeoptimizeALot) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    deopt_caller();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
JRT_ENTRY(void, Runtime1::new_object_array(JavaThread* thread, klassOopDesc* array_klass, jint length))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  NOT_PRODUCT(_new_object_array_slowcase_cnt++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  // Note: no handle for klass needed since they are not used
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  //       anymore after new_objArray() and no GC can happen before.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  //       (This may have to change if this code changes!)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  assert(oop(array_klass)->is_klass(), "not a class");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  klassOop elem_klass = objArrayKlass::cast(array_klass)->element_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  objArrayOop obj = oopFactory::new_objArray(elem_klass, length, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  thread->set_vm_result(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  // This is pretty rare but this runtime patch is stressful to deoptimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  // if we deoptimize here so force a deopt to stress the path.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  if (DeoptimizeALot) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    deopt_caller();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
JRT_ENTRY(void, Runtime1::new_multi_array(JavaThread* thread, klassOopDesc* klass, int rank, jint* dims))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  NOT_PRODUCT(_new_multi_array_slowcase_cnt++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  assert(oop(klass)->is_klass(), "not a class");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  assert(rank >= 1, "rank must be nonzero");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
// In 64 bit mode, the sizes are stored in the top 32 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
// of each 64 bit stack entry.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
// dims is actually an intptr_t * because the arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
// are pushed onto a 64 bit stack.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
// We must create an array of jints to pass to multi_allocate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
// We reuse the current stack because it will be popped
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
// after this bytecode is completed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  if ( rank > 1 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
    int index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
    for ( index = 1; index < rank; index++ ) {  // First size is ok
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
        dims[index] = dims[index*2];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  oop obj = arrayKlass::cast(klass)->multi_allocate(rank, dims, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  thread->set_vm_result(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
JRT_ENTRY(void, Runtime1::unimplemented_entry(JavaThread* thread, StubID id))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  tty->print_cr("Runtime1::entry_for(%d) returned unimplemented entry point", id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
JRT_ENTRY(void, Runtime1::throw_array_store_exception(JavaThread* thread))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  THROW(vmSymbolHandles::java_lang_ArrayStoreException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
JRT_ENTRY(void, Runtime1::post_jvmti_exception_throw(JavaThread* thread))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  if (JvmtiExport::can_post_exceptions()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
    vframeStream vfst(thread, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
    address bcp = vfst.method()->bcp_from(vfst.bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
    JvmtiExport::post_exception_throw(thread, vfst.method(), bcp, thread->exception_oop());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
#ifdef TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
JRT_ENTRY(void, Runtime1::counter_overflow(JavaThread* thread, int bci))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  RegisterMap map(thread, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  frame fr =  thread->last_frame().sender(&map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  nmethod* nm = (nmethod*) fr.cb();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  assert(nm!= NULL && nm->is_nmethod(), "what?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  methodHandle method(thread, nm->method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  if (bci == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
    // invocation counter overflow
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
    if (!Tier1CountOnly) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
      CompilationPolicy::policy()->method_invocation_event(method, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
      method()->invocation_counter()->reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
    if (!Tier1CountOnly) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
      // Twe have a bci but not the destination bci and besides a backedge
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
      // event is more for OSR which we don't want here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
      CompilationPolicy::policy()->method_invocation_event(method, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
      method()->backedge_counter()->reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
#endif // TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
extern void vm_exit(int code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
// Enter this method from compiled code handler below. This is where we transition
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
// to VM mode. This is done as a helper routine so that the method called directly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
// from compiled code does not have to transition to VM. This allows the entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
// method to see if the nmethod that we have just looked up a handler for has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
// been deoptimized while we were in the vm. This simplifies the assembly code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
// cpu directories.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
// We are entering here from exception stub (via the entry method below)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
// If there is a compiled exception handler in this method, we will continue there;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
// otherwise we will unwind the stack and continue at the caller of top frame method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
// Note: we enter in Java using a special JRT wrapper. This wrapper allows us to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
// control the area where we can allow a safepoint. After we exit the safepoint area we can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
// 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
   420
// been deoptimized. If that is the case we return the deopt blob
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
// unpack_with_exception entry instead. This makes life for the exception blob easier
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
// because making that same check and diverting is painful from assembly language.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
JRT_ENTRY_NO_ASYNC(static address, exception_handler_for_pc_helper(JavaThread* thread, oopDesc* ex, address pc, nmethod*& nm))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  Handle exception(thread, ex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  nm = CodeCache::find_nmethod(pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  assert(nm != NULL, "this is not an nmethod");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  // Adjust the pc as needed/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  if (nm->is_deopt_pc(pc)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
    RegisterMap map(thread, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
    frame exception_frame = thread->last_frame().sender(&map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
    // if the frame isn't deopted then pc must not correspond to the caller of last_frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
    assert(exception_frame.is_deoptimized_frame(), "must be deopted");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
    pc = exception_frame.pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  assert(exception.not_null(), "NULL exceptions should be handled by throw_exception");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  assert(exception->is_oop(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  // Check that exception is a subclass of Throwable, otherwise we have a VerifyError
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  if (!(exception->is_a(SystemDictionary::throwable_klass()))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
    if (ExitVMOnVerifyError) vm_exit(-1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  // Check the stack guard pages and reenable them if necessary and there is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  // enough space on the stack to do so.  Use fast exceptions only if the guard
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  // pages are enabled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  bool guard_pages_enabled = thread->stack_yellow_zone_enabled();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  if (!guard_pages_enabled) guard_pages_enabled = thread->reguard_stack();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  if (JvmtiExport::can_post_exceptions()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
    // To ensure correct notification of exception catches and throws
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    // we have to deoptimize here.  If we attempted to notify the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
    // catches and throws during this exception lookup it's possible
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    // we could deoptimize on the way out of the VM and end back in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    // the interpreter at the throw site.  This would result in double
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    // notifications since the interpreter would also notify about
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    // these same catches and throws as it unwound the frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    RegisterMap reg_map(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    frame stub_frame = thread->last_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    frame caller_frame = stub_frame.sender(&reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
    // We don't really want to deoptimize the nmethod itself since we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
    // can actually continue in the exception handler ourselves but I
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
    // don't see an easy way to have the desired effect.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
    VM_DeoptimizeFrame deopt(thread, caller_frame.id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
    VMThread::execute(&deopt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
    return SharedRuntime::deopt_blob()->unpack_with_exception_in_tls();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  // ExceptionCache is used only for exceptions at call and not for implicit exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  if (guard_pages_enabled) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
    address fast_continuation = nm->handler_for_exception_and_pc(exception, pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
    if (fast_continuation != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
      if (fast_continuation == ExceptionCache::unwind_handler()) fast_continuation = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
      return fast_continuation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  // If the stack guard pages are enabled, check whether there is a handler in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  // the current method.  Otherwise (guard pages disabled), force an unwind and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  // skip the exception cache update (i.e., just leave continuation==NULL).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  address continuation = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  if (guard_pages_enabled) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
    // New exception handling mechanism can support inlined methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
    // with exception handlers since the mappings are from PC to PC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
    // debugging support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
    // tracing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
    if (TraceExceptions) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
      ttyLocker ttyl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
      tty->print_cr("Exception <%s> (0x%x) thrown in compiled method <%s> at PC " PTR_FORMAT " for thread 0x%x",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
                    exception->print_value_string(), (address)exception(), nm->method()->print_value_string(), pc, thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
    // for AbortVMOnException flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
    NOT_PRODUCT(Exceptions::debug_check_abort(exception));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
    // Clear out the exception oop and pc since looking up an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
    // exception handler can cause class loading, which might throw an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
    // exception and those fields are expected to be clear during
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
    // normal bytecode execution.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
    thread->set_exception_oop(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
    thread->set_exception_pc(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    continuation = SharedRuntime::compute_compiled_exc_handler(nm, pc, exception, false, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
    // If an exception was thrown during exception dispatch, the exception oop may have changed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
    thread->set_exception_oop(exception());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
    thread->set_exception_pc(pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
    // the exception cache is used only by non-implicit exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
    if (continuation == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
      nm->add_handler_for_exception_and_pc(exception, pc, ExceptionCache::unwind_handler());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
      nm->add_handler_for_exception_and_pc(exception, pc, continuation);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  thread->set_vm_result(exception());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  if (TraceExceptions) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
    ttyLocker ttyl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
    tty->print_cr("Thread " PTR_FORMAT " continuing at PC " PTR_FORMAT " for exception thrown at PC " PTR_FORMAT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
                  thread, continuation, pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  return continuation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
// Enter this method from compiled code only if there is a Java exception handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
// in the method handling the exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
// We are entering here from exception stub. We don't do a normal VM transition here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
// 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
   542
// searched for an exception handler has been deoptimized in the meantime.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
address  Runtime1::exception_handler_for_pc(JavaThread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  oop exception = thread->exception_oop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  address pc = thread->exception_pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  // Still in Java mode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  debug_only(ResetNoHandleMark rnhm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  nmethod* nm = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  address continuation = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
    // Enter VM mode by calling the helper
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    ResetNoHandleMark rnhm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
    continuation = exception_handler_for_pc_helper(thread, exception, pc, nm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  // Back in JAVA, use no oops DON'T safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  // Now check to see if the nmethod we were called from is now deoptimized.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  // If so we must return to the deopt blob and deoptimize the nmethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  if (nm != NULL && caller_is_deopted()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
    continuation = SharedRuntime::deopt_blob()->unpack_with_exception_in_tls();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  return continuation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
JRT_ENTRY(void, Runtime1::throw_range_check_exception(JavaThread* thread, int index))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  NOT_PRODUCT(_throw_range_check_exception_count++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  Events::log("throw_range_check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  char message[jintAsStringSize];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  sprintf(message, "%d", index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), message);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
JRT_ENTRY(void, Runtime1::throw_index_exception(JavaThread* thread, int index))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  NOT_PRODUCT(_throw_index_exception_count++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  Events::log("throw_index");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  char message[16];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  sprintf(message, "%d", index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_IndexOutOfBoundsException(), message);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
JRT_ENTRY(void, Runtime1::throw_div0_exception(JavaThread* thread))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  NOT_PRODUCT(_throw_div0_exception_count++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_ArithmeticException(), "/ by zero");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
JRT_ENTRY(void, Runtime1::throw_null_pointer_exception(JavaThread* thread))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  NOT_PRODUCT(_throw_null_pointer_exception_count++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_NullPointerException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
JRT_ENTRY(void, Runtime1::throw_class_cast_exception(JavaThread* thread, oopDesc* object))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  NOT_PRODUCT(_throw_class_cast_exception_count++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  ResourceMark rm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  char* message = SharedRuntime::generate_class_cast_message(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
    thread, Klass::cast(object->klass())->external_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
  SharedRuntime::throw_and_post_jvmti_exception(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
    thread, vmSymbols::java_lang_ClassCastException(), message);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
JRT_ENTRY(void, Runtime1::throw_incompatible_class_change_error(JavaThread* thread))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  NOT_PRODUCT(_throw_incompatible_class_change_error_count++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  ResourceMark rm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  SharedRuntime::throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_IncompatibleClassChangeError());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
JRT_ENTRY_NO_ASYNC(void, Runtime1::monitorenter(JavaThread* thread, oopDesc* obj, BasicObjectLock* lock))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  NOT_PRODUCT(_monitorenter_slowcase_cnt++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  if (PrintBiasedLockingStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
    Atomic::inc(BiasedLocking::slow_path_entry_count_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  Handle h_obj(thread, obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  assert(h_obj()->is_oop(), "must be NULL or an object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  if (UseBiasedLocking) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
    // Retry fast entry if bias is revoked to avoid unnecessary inflation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
    ObjectSynchronizer::fast_enter(h_obj, lock->lock(), true, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
    if (UseFastLocking) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
      // When using fast locking, the compiled code has already tried the fast case
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
      assert(obj == lock->obj(), "must match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
      ObjectSynchronizer::slow_enter(h_obj, lock->lock(), THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
      lock->set_obj(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
      ObjectSynchronizer::fast_enter(h_obj, lock->lock(), false, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
JRT_LEAF(void, Runtime1::monitorexit(JavaThread* thread, BasicObjectLock* lock))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  NOT_PRODUCT(_monitorexit_slowcase_cnt++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  assert(thread == JavaThread::current(), "threads must correspond");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  assert(thread->last_Java_sp(), "last_Java_sp must be set");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  // monitorexit is non-blocking (leaf routine) => no exceptions can be thrown
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
  oop obj = lock->obj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  assert(obj->is_oop(), "must be NULL or an object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  if (UseFastLocking) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
    // When using fast locking, the compiled code has already tried the fast case
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
    ObjectSynchronizer::slow_exit(obj, lock->lock(), THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
    ObjectSynchronizer::fast_exit(obj, lock->lock(), THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
static klassOop resolve_field_return_klass(methodHandle caller, int bci, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  Bytecode_field* field_access = Bytecode_field_at(caller(), caller->bcp_from(bci));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  // This can be static or non-static field access
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  Bytecodes::Code code       = field_access->code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  // We must load class, initialize class and resolvethe field
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  FieldAccessInfo result; // initialize class if needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  constantPoolHandle constants(THREAD, caller->constants());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  LinkResolver::resolve_field(result, constants, field_access->index(), Bytecodes::java_code(code), false, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  return result.klass()();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
// This routine patches sites where a class wasn't loaded or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
// initialized at the time the code was generated.  It handles
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
// references to classes, fields and forcing of initialization.  Most
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
// of the cases are straightforward and involving simply forcing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
// resolution of a class, rewriting the instruction stream with the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
// needed constant and replacing the call in this function with the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
// patched code.  The case for static field is more complicated since
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
// the thread which is in the process of initializing a class can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
// access it's static fields but other threads can't so the code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
// either has to deoptimize when this case is detected or execute a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
// check that the current thread is the initializing thread.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
// current
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
// Patches basically look like this:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
// patch_site: jmp patch stub     ;; will be patched
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
// continue:   ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
//             ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
//             ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
//             ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
// They have a stub which looks like this:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
//             ;; patch body
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
//             movl <const>, reg           (for class constants)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
//        <or> movl [reg1 + <const>], reg  (for field offsets)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
//        <or> movl reg, [reg1 + <const>]  (for field offsets)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
//             <being_init offset> <bytes to copy> <bytes to skip>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
// patch_stub: call Runtime1::patch_code (through a runtime stub)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
//             jmp patch_site
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
// A normal patch is done by rewriting the patch body, usually a move,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
// and then copying it into place over top of the jmp instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
// being careful to flush caches and doing it in an MP-safe way.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
// constants following the patch body are used to find various pieces
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
// of the patch relative to the call site for Runtime1::patch_code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
// The case for getstatic and putstatic is more complicated because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
// getstatic and putstatic have special semantics when executing while
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
// the class is being initialized.  getstatic/putstatic on a class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
// which is being_initialized may be executed by the initializing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
// thread but other threads have to block when they execute it.  This
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
// is accomplished in compiled code by executing a test of the current
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
// thread against the initializing thread of the class.  It's emitted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
// as boilerplate in their stub which allows the patched code to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
// executed before it's copied back into the main body of the nmethod.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
// being_init: get_thread(<tmp reg>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
//             cmpl [reg1 + <init_thread_offset>], <tmp reg>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
//             jne patch_stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
//             movl [reg1 + <const>], reg  (for field offsets)  <or>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
//             movl reg, [reg1 + <const>]  (for field offsets)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
//             jmp continue
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
//             <being_init offset> <bytes to copy> <bytes to skip>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
// patch_stub: jmp Runtim1::patch_code (through a runtime stub)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
//             jmp patch_site
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
// If the class is being initialized the patch body is rewritten and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
// the patch site is rewritten to jump to being_init, instead of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
// patch_stub.  Whenever this code is executed it checks the current
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
// thread against the intializing thread so other threads will enter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
// the runtime and end up blocked waiting the class to finish
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
// initializing inside the calls to resolve_field below.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
// initializing class will continue on it's way.  Once the class is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
// fully_initialized, the intializing_thread of the class becomes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
// NULL, so the next thread to execute this code will fail the test,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
// call into patch_code and complete the patching process by copying
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
// the patch body back into the main part of the nmethod and resume
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
// executing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
JRT_ENTRY(void, Runtime1::patch_code(JavaThread* thread, Runtime1::StubID stub_id ))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
  NOT_PRODUCT(_patch_code_slowcase_cnt++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
  ResourceMark rm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  RegisterMap reg_map(thread, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  frame runtime_frame = thread->last_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
  frame caller_frame = runtime_frame.sender(&reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  // last java frame on stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
  vframeStream vfst(thread, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  assert(!vfst.at_end(), "Java frame must exist");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  methodHandle caller_method(THREAD, vfst.method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  // Note that caller_method->code() may not be same as caller_code because of OSR's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  // Note also that in the presence of inlining it is not guaranteed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
  // that caller_method() == caller_code->method()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  int bci = vfst.bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  Events::log("patch_code @ " INTPTR_FORMAT , caller_frame.pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  Bytecodes::Code code = Bytecode_at(caller_method->bcp_from(bci))->java_code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  // this is used by assertions in the access_field_patching_id
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  BasicType patch_field_type = T_ILLEGAL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  bool deoptimize_for_volatile = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  int patch_field_offset = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  KlassHandle init_klass(THREAD, klassOop(NULL)); // klass needed by access_field_patching code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  Handle load_klass(THREAD, NULL);                // oop needed by load_klass_patching code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
  if (stub_id == Runtime1::access_field_patching_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
    Bytecode_field* field_access = Bytecode_field_at(caller_method(), caller_method->bcp_from(bci));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
    FieldAccessInfo result; // initialize class if needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
    Bytecodes::Code code = field_access->code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
    constantPoolHandle constants(THREAD, caller_method->constants());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
    LinkResolver::resolve_field(result, constants, field_access->index(), Bytecodes::java_code(code), false, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
    patch_field_offset = result.field_offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
    // If we're patching a field which is volatile then at compile it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
    // must not have been know to be volatile, so the generated code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
    // isn't correct for a volatile reference.  The nmethod has to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
    // deoptimized so that the code can be regenerated correctly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
    // This check is only needed for access_field_patching since this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
    // is the path for patching field offsets.  load_klass is only
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
    // used for patching references to oops which don't need special
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
    // handling in the volatile case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
    deoptimize_for_volatile = result.access_flags().is_volatile();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
    patch_field_type = result.field_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  } else if (stub_id == Runtime1::load_klass_patching_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
    oop k;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
    switch (code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
      case Bytecodes::_putstatic:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
      case Bytecodes::_getstatic:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
        { klassOop klass = resolve_field_return_klass(caller_method, bci, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
          // Save a reference to the class that has to be checked for initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
          init_klass = KlassHandle(THREAD, klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
          k = klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
      case Bytecodes::_new:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
        { Bytecode_new* bnew = Bytecode_new_at(caller_method->bcp_from(bci));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
          k = caller_method->constants()->klass_at(bnew->index(), CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
      case Bytecodes::_multianewarray:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
        { Bytecode_multianewarray* mna = Bytecode_multianewarray_at(caller_method->bcp_from(bci));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
          k = caller_method->constants()->klass_at(mna->index(), CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
      case Bytecodes::_instanceof:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
        { Bytecode_instanceof* io = Bytecode_instanceof_at(caller_method->bcp_from(bci));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
          k = caller_method->constants()->klass_at(io->index(), CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
      case Bytecodes::_checkcast:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
        { Bytecode_checkcast* cc = Bytecode_checkcast_at(caller_method->bcp_from(bci));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
          k = caller_method->constants()->klass_at(cc->index(), CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
      case Bytecodes::_anewarray:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
        { Bytecode_anewarray* anew = Bytecode_anewarray_at(caller_method->bcp_from(bci));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
          klassOop ek = caller_method->constants()->klass_at(anew->index(), CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
          k = Klass::cast(ek)->array_klass(CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
      case Bytecodes::_ldc:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
      case Bytecodes::_ldc_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
        {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
          Bytecode_loadconstant* cc = Bytecode_loadconstant_at(caller_method(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
                                                               caller_method->bcp_from(bci));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
          klassOop resolved = caller_method->constants()->klass_at(cc->index(), CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
          // ldc wants the java mirror.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
          k = resolved->klass_part()->java_mirror();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
      default: Unimplemented();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
    // convert to handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
    load_klass = Handle(THREAD, k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  if (deoptimize_for_volatile) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
    // At compile time we assumed the field wasn't volatile but after
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
    // loading it turns out it was volatile so we have to throw the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
    // compiled code out and let it be regenerated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
    if (TracePatching) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
      tty->print_cr("Deoptimizing for patching volatile field reference");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
    VM_DeoptimizeFrame deopt(thread, caller_frame.id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
    VMThread::execute(&deopt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
    // Return to the now deoptimized frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
  // Now copy code back
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
    MutexLockerEx ml_patch (Patching_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
    // Deoptimization may have happened while we waited for the lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
    // In that case we don't bother to do any patching we just return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
    // and let the deopt happen
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
    if (!caller_is_deopted()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
      NativeGeneralJump* jump = nativeGeneralJump_at(caller_frame.pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
      address instr_pc = jump->jump_destination();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
      NativeInstruction* ni = nativeInstruction_at(instr_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
      if (ni->is_jump() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
        // the jump has not been patched yet
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
        // The jump destination is slow case and therefore not part of the stubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
        // (stubs are only for StaticCalls)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
        // format of buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
        //    ....
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
        //    instr byte 0     <-- copy_buff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
        //    instr byte 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
        //    ..
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
        //    instr byte n-1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
        //      n
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
        //    ....             <-- call destination
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
        address stub_location = caller_frame.pc() + PatchingStub::patch_info_offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
        unsigned char* byte_count = (unsigned char*) (stub_location - 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
        unsigned char* byte_skip = (unsigned char*) (stub_location - 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
        unsigned char* being_initialized_entry_offset = (unsigned char*) (stub_location - 3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
        address copy_buff = stub_location - *byte_skip - *byte_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
        address being_initialized_entry = stub_location - *being_initialized_entry_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
        if (TracePatching) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
          tty->print_cr(" Patching %s at bci %d at address 0x%x  (%s)", Bytecodes::name(code), bci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
                        instr_pc, (stub_id == Runtime1::access_field_patching_id) ? "field" : "klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
          nmethod* caller_code = CodeCache::find_nmethod(caller_frame.pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
          assert(caller_code != NULL, "nmethod not found");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
          // NOTE we use pc() not original_pc() because we already know they are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
          // identical otherwise we'd have never entered this block of code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
          OopMap* map = caller_code->oop_map_for_return_address(caller_frame.pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
          assert(map != NULL, "null check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
          map->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
          tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
          Disassembler::decode(copy_buff, copy_buff + *byte_count, tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
        // 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
   916
        bool do_patch = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
        if (stub_id == Runtime1::access_field_patching_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
          // The offset may not be correct if the class was not loaded at code generation time.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
          // Set it now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
          NativeMovRegMem* n_move = nativeMovRegMem_at(copy_buff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
          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
   922
          assert(patch_field_offset >= 0, "illegal offset");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
          n_move->add_offset_in_bytes(patch_field_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
        } else if (stub_id == Runtime1::load_klass_patching_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
          // If a getstatic or putstatic is referencing a klass which
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
          // isn't fully initialized, the patch body isn't copied into
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
          // place until initialization is complete.  In this case the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
          // patch site is setup so that any threads besides the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
          // initializing thread are forced to come into the VM and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
          // block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
          do_patch = (code != Bytecodes::_getstatic && code != Bytecodes::_putstatic) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
                     instanceKlass::cast(init_klass())->is_initialized();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
          NativeGeneralJump* jump = nativeGeneralJump_at(instr_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
          if (jump->jump_destination() == being_initialized_entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
            assert(do_patch == true, "initialization must be complete at this point");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
          } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
            // patch the instruction <move reg, klass>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
            NativeMovConstReg* n_copy = nativeMovConstReg_at(copy_buff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
            assert(n_copy->data() == 0, "illegal init value");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
            assert(load_klass() != NULL, "klass not set");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
            n_copy->set_data((intx) (load_klass()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
            if (TracePatching) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
              Disassembler::decode(copy_buff, copy_buff + *byte_count, tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
#ifdef SPARC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
            // Update the oop location in the nmethod with the proper
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
            // oop.  When the code was generated, a NULL was stuffed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
            // in the oop table and that table needs to be update to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
            // have the right value.  On intel the value is kept
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
            // directly in the instruction instead of in the oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
            // table, so set_data above effectively updated the value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
            nmethod* nm = CodeCache::find_nmethod(instr_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
            assert(nm != NULL, "invalid nmethod_pc");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
            RelocIterator oops(nm, copy_buff, copy_buff + 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
            bool found = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
            while (oops.next() && !found) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
              if (oops.type() == relocInfo::oop_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
                oop_Relocation* r = oops.oop_reloc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
                oop* oop_adr = r->oop_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
                *oop_adr = load_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
                r->fix_oop_relocation();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
                found = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
              }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
            assert(found, "the oop must exist!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
          ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
        if (do_patch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
          // replace instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
          // first replace the tail, then the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
          for (int i = NativeCall::instruction_size; i < *byte_count; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
            address ptr = copy_buff + i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
            int a_byte = (*ptr) & 0xFF;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
            address dst = instr_pc + i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
            *(unsigned char*)dst = (unsigned char) a_byte;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
          ICache::invalidate_range(instr_pc, *byte_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
          NativeGeneralJump::replace_mt_safe(instr_pc, copy_buff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
          if (stub_id == Runtime1::load_klass_patching_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
            // update relocInfo to oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
            nmethod* nm = CodeCache::find_nmethod(instr_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
            assert(nm != NULL, "invalid nmethod_pc");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
            // The old patch site is now a move instruction so update
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
            // the reloc info so that it will get updated during
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
            // future GCs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
            RelocIterator iter(nm, (address)instr_pc, (address)(instr_pc + 1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
            relocInfo::change_reloc_info_for_address(&iter, (address) instr_pc,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
                                                     relocInfo::none, relocInfo::oop_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
#ifdef SPARC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
            // Sparc takes two relocations for an oop so update the second one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
            address instr_pc2 = instr_pc + NativeMovConstReg::add_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
            RelocIterator iter2(nm, instr_pc2, instr_pc2 + 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
            relocInfo::change_reloc_info_for_address(&iter2, (address) instr_pc2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
                                                     relocInfo::none, relocInfo::oop_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
          ICache::invalidate_range(copy_buff, *byte_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
          NativeGeneralJump::insert_unconditional(instr_pc, being_initialized_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
// Entry point for compiled code. We want to patch a nmethod.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
// We don't do a normal VM transition here because we want to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
// know after the patching is complete and any safepoint(s) are taken
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
// if the calling nmethod was deoptimized. We do this by calling a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
// helper method which does the normal VM transition and when it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
// completes we can check for deoptimization. This simplifies the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
// assembly code in the cpu directories.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
int Runtime1::move_klass_patching(JavaThread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
// NOTE: we are still in Java
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
  Thread* THREAD = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
  debug_only(NoHandleMark nhm;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
    // Enter VM mode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
    ResetNoHandleMark rnhm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
    patch_code(thread, load_klass_patching_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
  // Back in JAVA, use no oops DON'T safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
  // Return true if calling code is deoptimized
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
  return caller_is_deopted();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
// Entry point for compiled code. We want to patch a nmethod.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
// We don't do a normal VM transition here because we want to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
// know after the patching is complete and any safepoint(s) are taken
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
// if the calling nmethod was deoptimized. We do this by calling a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
// helper method which does the normal VM transition and when it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
// completes we can check for deoptimization. This simplifies the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
// assembly code in the cpu directories.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
int Runtime1::access_field_patching(JavaThread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
// NOTE: we are still in Java
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
  Thread* THREAD = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
  debug_only(NoHandleMark nhm;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
    // Enter VM mode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
    ResetNoHandleMark rnhm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
    patch_code(thread, access_field_patching_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
  // Back in JAVA, use no oops DON'T safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
  // Return true if calling code is deoptimized
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
  return caller_is_deopted();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
JRT_LEAF(void, Runtime1::trace_block_entry(jint block_id))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
  // for now we just print out the block id
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
  tty->print("%d ", block_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1079
// Array copy return codes.
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1080
enum {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1081
  ac_failed = -1, // arraycopy failed
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1082
  ac_ok = 0       // arraycopy succeeded
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1083
};
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1084
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1085
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1086
template <class T> int obj_arraycopy_work(oopDesc* src, T* src_addr,
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1087
                                          oopDesc* dst, T* dst_addr,
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1088
                                          int length) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1089
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1090
  // For performance reasons, we assume we are using a card marking write
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1091
  // barrier. The assert will fail if this is not the case.
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1092
  // Note that we use the non-virtual inlineable variant of write_ref_array.
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1093
  BarrierSet* bs = Universe::heap()->barrier_set();
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1094
  assert(bs->has_write_ref_array_opt(),
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1095
         "Barrier set must have ref array opt");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1096
  if (src == dst) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1097
    // same object, no check
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1098
    Copy::conjoint_oops_atomic(src_addr, dst_addr, length);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1099
    bs->write_ref_array(MemRegion((HeapWord*)dst_addr,
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1100
                                  (HeapWord*)(dst_addr + length)));
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1101
    return ac_ok;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1102
  } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1103
    klassOop bound = objArrayKlass::cast(dst->klass())->element_klass();
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1104
    klassOop stype = objArrayKlass::cast(src->klass())->element_klass();
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1105
    if (stype == bound || Klass::cast(stype)->is_subtype_of(bound)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1106
      // Elements are guaranteed to be subtypes, so no check necessary
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1107
      Copy::conjoint_oops_atomic(src_addr, dst_addr, length);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1108
      bs->write_ref_array(MemRegion((HeapWord*)dst_addr,
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1109
                                    (HeapWord*)(dst_addr + length)));
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1110
      return ac_ok;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1111
    }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1112
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1113
  return ac_failed;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1114
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1115
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
// fast and direct copy of arrays; returning -1, means that an exception may be thrown
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
// and we did not copy anything
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
JRT_LEAF(int, Runtime1::arraycopy(oopDesc* src, int src_pos, oopDesc* dst, int dst_pos, int length))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
  _generic_arraycopy_cnt++;        // Slow-path oop array copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
  if (src == NULL || dst == NULL || src_pos < 0 || dst_pos < 0 || length < 0) return ac_failed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
  if (!dst->is_array() || !src->is_array()) return ac_failed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
  if ((unsigned int) arrayOop(src)->length() < (unsigned int)src_pos + (unsigned int)length) return ac_failed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
  if ((unsigned int) arrayOop(dst)->length() < (unsigned int)dst_pos + (unsigned int)length) return ac_failed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
  if (length == 0) return ac_ok;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
  if (src->is_typeArray()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
    const klassOop klass_oop = src->klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
    if (klass_oop != dst->klass()) return ac_failed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
    typeArrayKlass* klass = typeArrayKlass::cast(klass_oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
    const int l2es = klass->log2_element_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
    const int ihs = klass->array_header_in_bytes() / wordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
    char* src_addr = (char*) ((oopDesc**)src + ihs) + (src_pos << l2es);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
    char* dst_addr = (char*) ((oopDesc**)dst + ihs) + (dst_pos << l2es);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
    // Potential problem: memmove is not guaranteed to be word atomic
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
    // Revisit in Merlin
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
    memmove(dst_addr, src_addr, length << l2es);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
    return ac_ok;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
  } else if (src->is_objArray() && dst->is_objArray()) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1142
    if (UseCompressedOops) {  // will need for tiered
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1143
      narrowOop *src_addr  = objArrayOop(src)->obj_at_addr<narrowOop>(src_pos);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1144
      narrowOop *dst_addr  = objArrayOop(dst)->obj_at_addr<narrowOop>(dst_pos);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1145
      return obj_arraycopy_work(src, src_addr, dst, dst_addr, length);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
    } else {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1147
      oop *src_addr  = objArrayOop(src)->obj_at_addr<oop>(src_pos);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1148
      oop *dst_addr  = objArrayOop(dst)->obj_at_addr<oop>(dst_pos);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1149
      return obj_arraycopy_work(src, src_addr, dst, dst_addr, length);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
  return ac_failed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
JRT_LEAF(void, Runtime1::primitive_arraycopy(HeapWord* src, HeapWord* dst, int length))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
  _primitive_arraycopy_cnt++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
  if (length == 0) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
  // Not guaranteed to be word atomic, but that doesn't matter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
  // for anything but an oop array, which is covered by oop_arraycopy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
  Copy::conjoint_bytes(src, dst, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
JRT_LEAF(void, Runtime1::oop_arraycopy(HeapWord* src, HeapWord* dst, int num))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
  _oop_arraycopy_cnt++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
  if (num == 0) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
  Copy::conjoint_oops_atomic((oop*) src, (oop*) dst, num);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
  BarrierSet* bs = Universe::heap()->barrier_set();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
  bs->write_ref_array(MemRegion(dst, dst + num));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
JRT_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
void Runtime1::print_statistics() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
  tty->print_cr("C1 Runtime statistics:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
  tty->print_cr(" _resolve_invoke_virtual_cnt:     %d", SharedRuntime::_resolve_virtual_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
  tty->print_cr(" _resolve_invoke_opt_virtual_cnt: %d", SharedRuntime::_resolve_opt_virtual_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
  tty->print_cr(" _resolve_invoke_static_cnt:      %d", SharedRuntime::_resolve_static_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
  tty->print_cr(" _handle_wrong_method_cnt:        %d", SharedRuntime::_wrong_method_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
  tty->print_cr(" _ic_miss_cnt:                    %d", SharedRuntime::_ic_miss_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
  tty->print_cr(" _generic_arraycopy_cnt:          %d", _generic_arraycopy_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
  tty->print_cr(" _primitive_arraycopy_cnt:        %d", _primitive_arraycopy_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
  tty->print_cr(" _oop_arraycopy_cnt:              %d", _oop_arraycopy_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
  tty->print_cr(" _arraycopy_slowcase_cnt:         %d", _arraycopy_slowcase_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
  tty->print_cr(" _new_type_array_slowcase_cnt:    %d", _new_type_array_slowcase_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
  tty->print_cr(" _new_object_array_slowcase_cnt:  %d", _new_object_array_slowcase_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
  tty->print_cr(" _new_instance_slowcase_cnt:      %d", _new_instance_slowcase_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
  tty->print_cr(" _new_multi_array_slowcase_cnt:   %d", _new_multi_array_slowcase_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
  tty->print_cr(" _monitorenter_slowcase_cnt:      %d", _monitorenter_slowcase_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
  tty->print_cr(" _monitorexit_slowcase_cnt:       %d", _monitorexit_slowcase_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
  tty->print_cr(" _patch_code_slowcase_cnt:        %d", _patch_code_slowcase_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
  tty->print_cr(" _throw_range_check_exception_count:            %d:", _throw_range_check_exception_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
  tty->print_cr(" _throw_index_exception_count:                  %d:", _throw_index_exception_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
  tty->print_cr(" _throw_div0_exception_count:                   %d:", _throw_div0_exception_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
  tty->print_cr(" _throw_null_pointer_exception_count:           %d:", _throw_null_pointer_exception_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
  tty->print_cr(" _throw_class_cast_exception_count:             %d:", _throw_class_cast_exception_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
  tty->print_cr(" _throw_incompatible_class_change_error_count:  %d:", _throw_incompatible_class_change_error_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
  tty->print_cr(" _throw_array_store_exception_count:            %d:", _throw_array_store_exception_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
  tty->print_cr(" _throw_count:                                  %d:", _throw_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
  SharedRuntime::print_ic_miss_histogram();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
#endif // PRODUCT