hotspot/src/cpu/x86/vm/c1_Runtime1_x86.cpp
author ysr
Thu, 05 Jun 2008 15:57:56 -0700
changeset 1374 4c24294029a9
parent 1 489c9b5090e2
child 1394 43b4b8b54e65
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_x86.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
int StubAssembler::call_RT(Register oop_result1, Register oop_result2, address entry, int args_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  // setup registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  const Register thread = rdi; // is callee-saved register (Visual C++ calling conventions)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  assert(!(oop_result1->is_valid() || oop_result2->is_valid()) || oop_result1 != oop_result2, "registers must be different");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  assert(oop_result1 != thread && oop_result2 != thread, "registers must be different");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  assert(args_size >= 0, "illegal args_size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  set_num_rt_args(1 + args_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  // push java thread (becomes first argument of C function)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  get_thread(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  pushl(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  set_last_Java_frame(thread, noreg, rbp, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  // do the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  call(RuntimeAddress(entry));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  int call_offset = offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  // verify callee-saved register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  guarantee(thread != rax, "change this code");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  pushl(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  { Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    get_thread(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    cmpl(thread, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    jcc(Assembler::equal, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    int3();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    stop("StubAssembler::call_RT: rdi not callee saved?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  popl(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  reset_last_Java_frame(thread, true, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // discard thread and arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  addl(rsp, (1 + args_size)*BytesPerWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // check for pending exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  { Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    cmpl(Address(thread, Thread::pending_exception_offset()), NULL_WORD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    jcc(Assembler::equal, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    // exception pending => remove activation and forward to exception handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    movl(rax, Address(thread, Thread::pending_exception_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    // make sure that the vm_results are cleared
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    if (oop_result1->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
      movl(Address(thread, JavaThread::vm_result_offset()), NULL_WORD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    if (oop_result2->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
      movl(Address(thread, JavaThread::vm_result_2_offset()), NULL_WORD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    if (frame_size() == no_frame_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
      leave();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
      jump(RuntimeAddress(StubRoutines::forward_exception_entry()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    } else if (_stub_id == Runtime1::forward_exception_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
      should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
      jump(RuntimeAddress(Runtime1::entry_for(Runtime1::forward_exception_id)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // get oop results if there are any and reset the values in the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  if (oop_result1->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    movl(oop_result1, Address(thread, JavaThread::vm_result_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    movl(Address(thread, JavaThread::vm_result_offset()), NULL_WORD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    verify_oop(oop_result1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  if (oop_result2->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    movl(oop_result2, Address(thread, JavaThread::vm_result_2_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    movl(Address(thread, JavaThread::vm_result_2_offset()), NULL_WORD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    verify_oop(oop_result2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  return call_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
int StubAssembler::call_RT(Register oop_result1, Register oop_result2, address entry, Register arg1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  pushl(arg1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  return call_RT(oop_result1, oop_result2, entry, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
int StubAssembler::call_RT(Register oop_result1, Register oop_result2, address entry, Register arg1, Register arg2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  pushl(arg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  pushl(arg1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  return call_RT(oop_result1, oop_result2, entry, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
int StubAssembler::call_RT(Register oop_result1, Register oop_result2, address entry, Register arg1, Register arg2, Register arg3) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  pushl(arg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  pushl(arg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  pushl(arg1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  return call_RT(oop_result1, oop_result2, entry, 3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
// Implementation of StubFrame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
class StubFrame: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  StubAssembler* _sasm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  void load_argument(int offset_in_words, Register reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  ~StubFrame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
#define __ _sasm->
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
StubFrame::StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  _sasm = sasm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  __ set_info(name, must_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  __ enter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
// load parameters that were stored with LIR_Assembler::store_parameter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
// Note: offsets for store_parameter and load_argument must match
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
void StubFrame::load_argument(int offset_in_words, Register reg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // rbp, + 0: link
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  //     + 1: return address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  //     + 2: argument with offset 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  //     + 3: argument with offset 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  //     + 4: ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  __ movl(reg, Address(rbp, (offset_in_words + 2) * BytesPerWord));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
StubFrame::~StubFrame() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  __ leave();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
#undef __
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
// Implementation of Runtime1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
#define __ sasm->
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
const int float_regs_as_doubles_size_in_words = 16;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
const int xmm_regs_as_doubles_size_in_words = 16;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
// Stack layout for saving/restoring  all the registers needed during a runtime
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
// call (this includes deoptimization)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
// Note: note that users of this frame may well have arguments to some runtime
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
// while these values are on the stack. These positions neglect those arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
// but the code in save_live_registers will take the argument count into
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
// account.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
enum reg_save_layout {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  dummy1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  dummy2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  // Two temps to be used as needed by users of save/restore callee registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  temp_2_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  temp_1_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  xmm_regs_as_doubles_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  float_regs_as_doubles_off = xmm_regs_as_doubles_off + xmm_regs_as_doubles_size_in_words,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  fpu_state_off = float_regs_as_doubles_off + float_regs_as_doubles_size_in_words,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  fpu_state_end_off = fpu_state_off + FPUStateSizeInWords,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  marker = fpu_state_end_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  extra_space_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  rdi_off = extra_space_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  rsi_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  rbp_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  rsp_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  rbx_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  rdx_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  rcx_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  rax_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  saved_rbp_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  return_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  reg_save_frame_size,  // As noted: neglects any parameters to runtime
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  // equates
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  // illegal instruction handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  continue_dest_off = temp_1_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  // deoptimization equates
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  fp0_off = float_regs_as_doubles_off, // slot for java float/double return value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  xmm0_off = xmm_regs_as_doubles_off,  // slot for java float/double return value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  deopt_type = temp_2_off,             // slot for type of deopt in progress
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  ret_type = temp_1_off                // slot for return type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
// Save off registers which might be killed by calls into the runtime.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
// Tries to smart of about FP registers.  In particular we separate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
// saving and describing the FPU registers for deoptimization since we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
// have to save the FPU registers twice if we describe them and on P4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
// saving FPU registers which don't contain anything appears
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
// expensive.  The deopt blob is the only thing which needs to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
// describe FPU registers.  In all other cases it should be sufficient
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
// to simply save their current value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
static OopMap* generate_oop_map(StubAssembler* sasm, int num_rt_args,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
                                bool save_fpu_registers = true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  int frame_size = reg_save_frame_size + num_rt_args; // args + thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  sasm->set_frame_size(frame_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  // record saved value locations in an OopMap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  // locations are offsets from sp after runtime call; num_rt_args is number of arguments in call, including thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  OopMap* map = new OopMap(frame_size, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  map->set_callee_saved(VMRegImpl::stack2reg(rax_off + num_rt_args), rax->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  map->set_callee_saved(VMRegImpl::stack2reg(rcx_off + num_rt_args), rcx->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  map->set_callee_saved(VMRegImpl::stack2reg(rdx_off + num_rt_args), rdx->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  map->set_callee_saved(VMRegImpl::stack2reg(rbx_off + num_rt_args), rbx->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  map->set_callee_saved(VMRegImpl::stack2reg(rsi_off + num_rt_args), rsi->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  map->set_callee_saved(VMRegImpl::stack2reg(rdi_off + num_rt_args), rdi->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  if (save_fpu_registers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    if (UseSSE < 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
      int fpu_off = float_regs_as_doubles_off;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
      for (int n = 0; n < FrameMap::nof_fpu_regs; n++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
        VMReg fpu_name_0 = FrameMap::fpu_regname(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
        map->set_callee_saved(VMRegImpl::stack2reg(fpu_off +     num_rt_args), fpu_name_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
        // %%% This is really a waste but we'll keep things as they were for now
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
        if (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
          map->set_callee_saved(VMRegImpl::stack2reg(fpu_off + 1 + num_rt_args), fpu_name_0->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
        fpu_off += 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
      assert(fpu_off == fpu_state_off, "incorrect number of fpu stack slots");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    if (UseSSE >= 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
      int xmm_off = xmm_regs_as_doubles_off;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
      for (int n = 0; n < FrameMap::nof_xmm_regs; n++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
        VMReg xmm_name_0 = as_XMMRegister(n)->as_VMReg();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
        map->set_callee_saved(VMRegImpl::stack2reg(xmm_off +     num_rt_args), xmm_name_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
        // %%% This is really a waste but we'll keep things as they were for now
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
        if (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
          map->set_callee_saved(VMRegImpl::stack2reg(xmm_off + 1 + num_rt_args), xmm_name_0->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
        xmm_off += 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
      assert(xmm_off == float_regs_as_doubles_off, "incorrect number of xmm registers");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
    } else if (UseSSE == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
      int xmm_off = xmm_regs_as_doubles_off;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
      for (int n = 0; n < FrameMap::nof_xmm_regs; n++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
        VMReg xmm_name_0 = as_XMMRegister(n)->as_VMReg();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
        map->set_callee_saved(VMRegImpl::stack2reg(xmm_off +     num_rt_args), xmm_name_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
        xmm_off += 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
      assert(xmm_off == float_regs_as_doubles_off, "incorrect number of xmm registers");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  return map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
static OopMap* save_live_registers(StubAssembler* sasm, int num_rt_args,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
                                   bool save_fpu_registers = true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  __ block_comment("save_live_registers");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  int frame_size = reg_save_frame_size + num_rt_args; // args + thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  // frame_size = round_to(frame_size, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  sasm->set_frame_size(frame_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  __ pushad();         // integer registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  // assert(float_regs_as_doubles_off % 2 == 0, "misaligned offset");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  // assert(xmm_regs_as_doubles_off % 2 == 0, "misaligned offset");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  __ subl(rsp, extra_space_offset * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  __ movl(Address(rsp, marker * wordSize), 0xfeedbeef);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  if (save_fpu_registers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
    if (UseSSE < 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
      // save FPU stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
      __ fnsave(Address(rsp, fpu_state_off * wordSize));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
      __ fwait();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
      Label ok;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
      __ cmpw(Address(rsp, fpu_state_off * wordSize), StubRoutines::fpu_cntrl_wrd_std());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
      __ jccb(Assembler::equal, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
      __ stop("corrupted control word detected");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
      __ bind(ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
      // Reset the control word to guard against exceptions being unmasked
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
      // since fstp_d can cause FPU stack underflow exceptions.  Write it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
      // into the on stack copy and then reload that to make sure that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
      // current and future values are correct.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
      __ movw(Address(rsp, fpu_state_off * wordSize), StubRoutines::fpu_cntrl_wrd_std());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
      __ frstor(Address(rsp, fpu_state_off * wordSize));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
      // Save the FPU registers in de-opt-able form
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
      __ fstp_d(Address(rsp, float_regs_as_doubles_off * BytesPerWord +  0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
      __ fstp_d(Address(rsp, float_regs_as_doubles_off * BytesPerWord +  8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
      __ fstp_d(Address(rsp, float_regs_as_doubles_off * BytesPerWord + 16));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
      __ fstp_d(Address(rsp, float_regs_as_doubles_off * BytesPerWord + 24));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
      __ fstp_d(Address(rsp, float_regs_as_doubles_off * BytesPerWord + 32));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
      __ fstp_d(Address(rsp, float_regs_as_doubles_off * BytesPerWord + 40));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
      __ fstp_d(Address(rsp, float_regs_as_doubles_off * BytesPerWord + 48));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
      __ fstp_d(Address(rsp, float_regs_as_doubles_off * BytesPerWord + 56));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
    if (UseSSE >= 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
      // save XMM registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
      // XMM registers can contain float or double values, but this is not known here,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
      // so always save them as doubles.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
      // note that float values are _not_ converted automatically, so for float values
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
      // the second word contains only garbage data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * wordSize +  0), xmm0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * wordSize +  8), xmm1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * wordSize + 16), xmm2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * wordSize + 24), xmm3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * wordSize + 32), xmm4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * wordSize + 40), xmm5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * wordSize + 48), xmm6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * wordSize + 56), xmm7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
    } else if (UseSSE == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
      // save XMM registers as float because double not supported without SSE2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
      __ movflt(Address(rsp, xmm_regs_as_doubles_off * wordSize +  0), xmm0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
      __ movflt(Address(rsp, xmm_regs_as_doubles_off * wordSize +  8), xmm1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
      __ movflt(Address(rsp, xmm_regs_as_doubles_off * wordSize + 16), xmm2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
      __ movflt(Address(rsp, xmm_regs_as_doubles_off * wordSize + 24), xmm3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
      __ movflt(Address(rsp, xmm_regs_as_doubles_off * wordSize + 32), xmm4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
      __ movflt(Address(rsp, xmm_regs_as_doubles_off * wordSize + 40), xmm5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
      __ movflt(Address(rsp, xmm_regs_as_doubles_off * wordSize + 48), xmm6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
      __ movflt(Address(rsp, xmm_regs_as_doubles_off * wordSize + 56), xmm7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  // FPU stack must be empty now
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  __ verify_FPU(0, "save_live_registers");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  return generate_oop_map(sasm, num_rt_args, save_fpu_registers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
static void restore_fpu(StubAssembler* sasm, bool restore_fpu_registers = true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  if (restore_fpu_registers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
    if (UseSSE >= 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
      // restore XMM registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
      __ movdbl(xmm0, Address(rsp, xmm_regs_as_doubles_off * wordSize +  0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
      __ movdbl(xmm1, Address(rsp, xmm_regs_as_doubles_off * wordSize +  8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
      __ movdbl(xmm2, Address(rsp, xmm_regs_as_doubles_off * wordSize + 16));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
      __ movdbl(xmm3, Address(rsp, xmm_regs_as_doubles_off * wordSize + 24));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
      __ movdbl(xmm4, Address(rsp, xmm_regs_as_doubles_off * wordSize + 32));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
      __ movdbl(xmm5, Address(rsp, xmm_regs_as_doubles_off * wordSize + 40));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
      __ movdbl(xmm6, Address(rsp, xmm_regs_as_doubles_off * wordSize + 48));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
      __ movdbl(xmm7, Address(rsp, xmm_regs_as_doubles_off * wordSize + 56));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
    } else if (UseSSE == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
      // restore XMM registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
      __ movflt(xmm0, Address(rsp, xmm_regs_as_doubles_off * wordSize +  0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
      __ movflt(xmm1, Address(rsp, xmm_regs_as_doubles_off * wordSize +  8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
      __ movflt(xmm2, Address(rsp, xmm_regs_as_doubles_off * wordSize + 16));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
      __ movflt(xmm3, Address(rsp, xmm_regs_as_doubles_off * wordSize + 24));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
      __ movflt(xmm4, Address(rsp, xmm_regs_as_doubles_off * wordSize + 32));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
      __ movflt(xmm5, Address(rsp, xmm_regs_as_doubles_off * wordSize + 40));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
      __ movflt(xmm6, Address(rsp, xmm_regs_as_doubles_off * wordSize + 48));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
      __ movflt(xmm7, Address(rsp, xmm_regs_as_doubles_off * wordSize + 56));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    if (UseSSE < 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
      __ frstor(Address(rsp, fpu_state_off * wordSize));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
      // check that FPU stack is really empty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
      __ verify_FPU(0, "restore_live_registers");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
    // check that FPU stack is really empty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
    __ verify_FPU(0, "restore_live_registers");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    Label ok;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    __ cmpl(Address(rsp, marker * wordSize), 0xfeedbeef);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    __ jcc(Assembler::equal, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    __ stop("bad offsets in frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
    __ bind(ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  __ addl(rsp, extra_space_offset * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
static void restore_live_registers(StubAssembler* sasm, bool restore_fpu_registers = true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  __ block_comment("restore_live_registers");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  restore_fpu(sasm, restore_fpu_registers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  __ popad();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
static void restore_live_registers_except_rax(StubAssembler* sasm, bool restore_fpu_registers = true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  __ block_comment("restore_live_registers_except_rax");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  restore_fpu(sasm, restore_fpu_registers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  __ popl(rdi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  __ popl(rsi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  __ popl(rbp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  __ popl(rbx); // skip this value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  __ popl(rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  __ popl(rdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  __ popl(rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  __ addl(rsp, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
void Runtime1::initialize_pd() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  // nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
// target: the entry point of the method that creates and posts the exception oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
// has_argument: true if the exception needs an argument (passed on stack because registers must be preserved)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
OopMapSet* Runtime1::generate_exception_throw(StubAssembler* sasm, address target, bool has_argument) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  // preserve all registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  int num_rt_args = has_argument ? 2 : 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  OopMap* oop_map = save_live_registers(sasm, num_rt_args);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  // now all registers are saved and can be used freely
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  // verify that no old value is used accidentally
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  __ invalidate_registers(true, true, true, true, true, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  // registers used by this stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  const Register temp_reg = rbx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  // load argument for exception that is passed as an argument into the stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  if (has_argument) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
    __ movl(temp_reg, Address(rbp, 2*BytesPerWord));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
    __ pushl(temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  int call_offset = __ call_RT(noreg, noreg, target, num_rt_args - 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  OopMapSet* oop_maps = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  oop_maps->add_gc_map(call_offset, oop_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  __ stop("should not reach here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  return oop_maps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
void Runtime1::generate_handle_exception(StubAssembler *sasm, OopMapSet* oop_maps, OopMap* oop_map, bool save_fpu_registers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  // incoming parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  const Register exception_oop = rax;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  const Register exception_pc = rdx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  // other registers used in this stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  const Register real_return_addr = rbx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  const Register thread = rdi;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  __ block_comment("generate_handle_exception");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
#ifdef TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  // C2 can leave the fpu stack dirty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  if (UseSSE < 2 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
    __ empty_FPU_stack();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
#endif // TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  // verify that only rax, and rdx is valid at this time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  __ invalidate_registers(false, true, true, false, true, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  // verify that rax, contains a valid exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  __ verify_not_null_oop(exception_oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  // load address of JavaThread object for thread-local data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  __ get_thread(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  // check that fields in JavaThread for exception oop and issuing pc are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  // empty before writing to them
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  Label oop_empty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  __ cmpl(Address(thread, JavaThread::exception_oop_offset()), 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  __ jcc(Assembler::equal, oop_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  __ stop("exception oop already set");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  __ bind(oop_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  Label pc_empty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  __ cmpl(Address(thread, JavaThread::exception_pc_offset()), 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  __ jcc(Assembler::equal, pc_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  __ stop("exception pc already set");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  __ bind(pc_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  // save exception oop and issuing pc into JavaThread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  // (exception handler will load it from here)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  __ movl(Address(thread, JavaThread::exception_oop_offset()), exception_oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  __ movl(Address(thread, JavaThread::exception_pc_offset()), exception_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  // save real return address (pc that called this stub)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  __ movl(real_return_addr, Address(rbp, 1*BytesPerWord));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  __ movl(Address(rsp, temp_1_off * BytesPerWord), real_return_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  // patch throwing pc into return address (has bci & oop map)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  __ movl(Address(rbp, 1*BytesPerWord), exception_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  // compute the exception handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  // the exception oop and the throwing pc are read from the fields in JavaThread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  int call_offset = __ call_RT(noreg, noreg, CAST_FROM_FN_PTR(address, exception_handler_for_pc));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  oop_maps->add_gc_map(call_offset, oop_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  // rax,: handler address or NULL if no handler exists
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  //      will be the deopt blob if nmethod was deoptimized while we looked up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  //      handler regardless of whether handler existed in the nmethod.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  // only rax, is valid at this time, all other registers have been destroyed by the runtime call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  __ invalidate_registers(false, true, true, true, true, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  // Do we have an exception handler in the nmethod?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  Label no_handler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  Label done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  __ testl(rax, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  __ jcc(Assembler::zero, no_handler);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  // exception handler found
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  // patch the return address -> the stub will directly return to the exception handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  __ movl(Address(rbp, 1*BytesPerWord), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  // restore registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  restore_live_registers(sasm, save_fpu_registers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  // return to exception handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  __ leave();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  __ bind(no_handler);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  // no exception handler found in this method, so the exception is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  // forwarded to the caller (using the unwind code of the nmethod)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  // there is no need to restore the registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  // restore the real return address that was saved before the RT-call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  __ movl(real_return_addr, Address(rsp, temp_1_off * BytesPerWord));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  __ movl(Address(rbp, 1*BytesPerWord), real_return_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  // load address of JavaThread object for thread-local data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  __ get_thread(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  // restore exception oop into rax, (convention for unwind code)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  __ movl(exception_oop, Address(thread, JavaThread::exception_oop_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  // clear exception fields in JavaThread because they are no longer needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  // (fields must be cleared because they are processed by GC otherwise)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  __ movl(Address(thread, JavaThread::exception_oop_offset()), NULL_WORD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  __ movl(Address(thread, JavaThread::exception_pc_offset()), NULL_WORD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  // pop the stub frame off
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  __ leave();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  generate_unwind_exception(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  __ stop("should not reach here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
void Runtime1::generate_unwind_exception(StubAssembler *sasm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  // incoming parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  const Register exception_oop = rax;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  // other registers used in this stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  const Register exception_pc = rdx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  const Register handler_addr = rbx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  const Register thread = rdi;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  // verify that only rax, is valid at this time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  __ invalidate_registers(false, true, true, true, true, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
  // check that fields in JavaThread for exception oop and issuing pc are empty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  __ get_thread(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  Label oop_empty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  __ cmpl(Address(thread, JavaThread::exception_oop_offset()), 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  __ jcc(Assembler::equal, oop_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  __ stop("exception oop must be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  __ bind(oop_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  Label pc_empty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  __ cmpl(Address(thread, JavaThread::exception_pc_offset()), 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  __ jcc(Assembler::equal, pc_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  __ stop("exception pc must be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  __ bind(pc_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  // clear the FPU stack in case any FPU results are left behind
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  __ empty_FPU_stack();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  // leave activation of nmethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  __ leave();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
  // store return address (is on top of stack after leave)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  __ movl(exception_pc, Address(rsp, 0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
  __ verify_oop(exception_oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  // save exception oop from rax, to stack before call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  __ pushl(exception_oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  // search the exception handler address of the caller (using the return address)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::exception_handler_for_return_address), exception_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  // rax,: exception handler address of the caller
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  // only rax, is valid at this time, all other registers have been destroyed by the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  __ invalidate_registers(false, true, true, true, true, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  // move result of call into correct register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  __ movl(handler_addr, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  // restore exception oop in rax, (required convention of exception handler)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  __ popl(exception_oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  __ verify_oop(exception_oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  // get throwing pc (= return address).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  // rdx has been destroyed by the call, so it must be set again
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  // the pop is also necessary to simulate the effect of a ret(0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  __ popl(exception_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  // verify that that there is really a valid exception in rax,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  __ verify_not_null_oop(exception_oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  // continue at exception handler (return address removed)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  // note: do *not* remove arguments when unwinding the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  //       activation since the caller assumes having
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  //       all arguments on the stack when entering the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  //       runtime to determine the exception handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  //       (GC happens at call site with arguments!)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  // rax,: exception oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  // rdx: throwing pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  // rbx,: exception handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  __ jmp(handler_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
OopMapSet* Runtime1::generate_patching(StubAssembler* sasm, address target) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  // use the maximum number of runtime-arguments here because it is difficult to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  // distinguish each RT-Call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  // Note: This number affects also the RT-Call in generate_handle_exception because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  //       the oop-map is shared for all calls.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  const int num_rt_args = 2;  // thread + dummy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  DeoptimizationBlob* deopt_blob = SharedRuntime::deopt_blob();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  assert(deopt_blob != NULL, "deoptimization blob must have been created");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  OopMap* oop_map = save_live_registers(sasm, num_rt_args);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  __ pushl(rax); // push dummy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  const Register thread = rdi; // is callee-saved register (Visual C++ calling conventions)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  // push java thread (becomes first argument of C function)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  __ get_thread(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  __ pushl(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  __ set_last_Java_frame(thread, noreg, rbp, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  // do the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  __ call(RuntimeAddress(target));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  OopMapSet* oop_maps = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  oop_maps->add_gc_map(__ offset(), oop_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  // verify callee-saved register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  guarantee(thread != rax, "change this code");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
  __ pushl(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  { Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
    __ get_thread(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
    __ cmpl(thread, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
    __ jcc(Assembler::equal, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
    __ stop("StubAssembler::call_RT: rdi not callee saved?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
    __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  __ popl(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  __ reset_last_Java_frame(thread, true, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
  __ popl(rcx); // discard thread arg
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  __ popl(rcx); // discard dummy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  // check for pending exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  { Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
    __ cmpl(Address(thread, Thread::pending_exception_offset()), NULL_WORD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
    __ jcc(Assembler::equal, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
    // exception pending => remove activation and forward to exception handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
    __ testl(rax, rax);                                   // have we deoptimized?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
    __ jump_cc(Assembler::equal,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
               RuntimeAddress(Runtime1::entry_for(Runtime1::forward_exception_id)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
    // the deopt blob expects exceptions in the special fields of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
    // JavaThread, so copy and clear pending exception.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
    // load and clear pending exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
    __ movl(rax, Address(thread, Thread::pending_exception_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
    __ movl(Address(thread, Thread::pending_exception_offset()), NULL_WORD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
    // check that there is really a valid exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
    __ verify_not_null_oop(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
    // load throwing pc: this is the return address of the stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
    __ movl(rdx, Address(rsp, return_off * BytesPerWord));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
    // check that fields in JavaThread for exception oop and issuing pc are empty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
    Label oop_empty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
    __ cmpoop(Address(thread, JavaThread::exception_oop_offset()), 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
    __ jcc(Assembler::equal, oop_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
    __ stop("exception oop must be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
    __ bind(oop_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
    Label pc_empty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
    __ cmpl(Address(thread, JavaThread::exception_pc_offset()), 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
    __ jcc(Assembler::equal, pc_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
    __ stop("exception pc must be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
    __ bind(pc_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
    // store exception oop and throwing pc to JavaThread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
    __ movl(Address(thread, JavaThread::exception_oop_offset()), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
    __ movl(Address(thread, JavaThread::exception_pc_offset()), rdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
    restore_live_registers(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
    __ leave();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
    __ addl(rsp, 4);  // remove return address from stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
    // Forward the exception directly to deopt blob. We can blow no
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
    // registers and must leave throwing pc on the stack.  A patch may
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
    // have values live in registers so the entry point with the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
    // exception in tls.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
    __ jump(RuntimeAddress(deopt_blob->unpack_with_exception_in_tls()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
    __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  // Runtime will return true if the nmethod has been deoptimized during
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  // the patching process. In that case we must do a deopt reexecute instead.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
  Label reexecuteEntry, cont;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  __ testl(rax, rax);                                   // have we deoptimized?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  __ jcc(Assembler::equal, cont);                       // no
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  // Will reexecute. Proper return address is already on the stack we just restore
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  // registers, pop all of our frame but the return address and jump to the deopt blob
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  restore_live_registers(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
  __ leave();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
  __ jump(RuntimeAddress(deopt_blob->unpack_with_reexecution()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
  __ bind(cont);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
  restore_live_registers(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
  __ leave();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
  return oop_maps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
OopMapSet* Runtime1::generate_code_for(StubID id, StubAssembler* sasm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  // for better readability
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  const bool must_gc_arguments = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
  const bool dont_gc_arguments = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  // default value; overwritten for some optimized stubs that are called from methods that do not use the fpu
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  bool save_fpu_registers = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  // stub code & info for the different stubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
  OopMapSet* oop_maps = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  switch (id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
    case forward_exception_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
        // we're handling an exception in the context of a compiled
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
        // frame.  The registers have been saved in the standard
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
        // places.  Perform an exception lookup in the caller and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
        // dispatch to the handler if found.  Otherwise unwind and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
        // dispatch to the callers exception handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
        const Register thread = rdi;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
        const Register exception_oop = rax;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
        const Register exception_pc = rdx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
        // load pending exception oop into rax,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
        __ movl(exception_oop, Address(thread, Thread::pending_exception_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
        // clear pending exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
        __ movl(Address(thread, Thread::pending_exception_offset()), NULL_WORD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
        // load issuing PC (the return address for this stub) into rdx
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
        __ movl(exception_pc, Address(rbp, 1*BytesPerWord));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
        // make sure that the vm_results are cleared (may be unnecessary)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
        __ movl(Address(thread, JavaThread::vm_result_offset()), NULL_WORD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
        __ movl(Address(thread, JavaThread::vm_result_2_offset()), NULL_WORD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
        // verify that that there is really a valid exception in rax,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
        __ verify_not_null_oop(exception_oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
        oop_maps = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
        OopMap* oop_map = generate_oop_map(sasm, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
        generate_handle_exception(sasm, oop_maps, oop_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
        __ stop("should not reach here");
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
    case new_instance_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
    case fast_new_instance_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
    case fast_new_instance_init_check_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
        Register klass = rdx; // Incoming
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
        Register obj   = rax; // Result
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
        if (id == new_instance_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
          __ set_info("new_instance", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
        } else if (id == fast_new_instance_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
          __ set_info("fast new_instance", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
          assert(id == fast_new_instance_init_check_id, "bad StubID");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
          __ set_info("fast new_instance init check", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
        if ((id == fast_new_instance_id || id == fast_new_instance_init_check_id) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
            UseTLAB && FastTLABRefill) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
          Label slow_path;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
          Register obj_size = rcx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
          Register t1       = rbx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
          Register t2       = rsi;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
          assert_different_registers(klass, obj, obj_size, t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
          __ pushl(rdi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
          __ pushl(rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
          if (id == fast_new_instance_init_check_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
            // make sure the klass is initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
            __ cmpl(Address(klass, instanceKlass::init_state_offset_in_bytes() + sizeof(oopDesc)), instanceKlass::fully_initialized);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
            __ jcc(Assembler::notEqual, slow_path);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
          // assert object can be fast path allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
          {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
            Label ok, not_ok;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
            __ movl(obj_size, Address(klass, Klass::layout_helper_offset_in_bytes() + sizeof(oopDesc)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
            __ cmpl(obj_size, 0);  // make sure it's an instance (LH > 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
            __ jcc(Assembler::lessEqual, not_ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
            __ testl(obj_size, Klass::_lh_instance_slow_path_bit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
            __ jcc(Assembler::zero, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
            __ bind(not_ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
            __ stop("assert(can be fast path allocated)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
            __ should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
            __ bind(ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
          // if we got here then the TLAB allocation failed, so try
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
          // refilling the TLAB or allocating directly from eden.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
          Label retry_tlab, try_eden;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
          __ tlab_refill(retry_tlab, try_eden, slow_path); // does not destroy rdx (klass)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
          __ bind(retry_tlab);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
          // get the instance size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
          __ movl(obj_size, Address(klass, klassOopDesc::header_size() * HeapWordSize + Klass::layout_helper_offset_in_bytes()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
          __ tlab_allocate(obj, obj_size, 0, t1, t2, slow_path);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
          __ initialize_object(obj, klass, obj_size, 0, t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
          __ verify_oop(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
          __ popl(rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
          __ popl(rdi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
          __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
          __ bind(try_eden);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
          // get the instance size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
          __ movl(obj_size, Address(klass, klassOopDesc::header_size() * HeapWordSize + Klass::layout_helper_offset_in_bytes()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
          __ eden_allocate(obj, obj_size, 0, t1, slow_path);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
          __ initialize_object(obj, klass, obj_size, 0, t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
          __ verify_oop(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
          __ popl(rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
          __ popl(rdi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
          __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
          __ bind(slow_path);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
          __ popl(rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
          __ popl(rdi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
        __ enter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
        OopMap* map = save_live_registers(sasm, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
        int call_offset = __ call_RT(obj, noreg, CAST_FROM_FN_PTR(address, new_instance), klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
        oop_maps = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
        oop_maps->add_gc_map(call_offset, map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
        restore_live_registers_except_rax(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
        __ verify_oop(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
        __ leave();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
        __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
        // rax,: new instance
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
#ifdef TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
    case counter_overflow_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
        Register bci = rax;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
        __ enter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
        OopMap* map = save_live_registers(sasm, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
        // Retrieve bci
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
        __ movl(bci, Address(rbp, 2*BytesPerWord));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
        int call_offset = __ call_RT(noreg, noreg, CAST_FROM_FN_PTR(address, counter_overflow), bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
        oop_maps = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
        oop_maps->add_gc_map(call_offset, map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
        restore_live_registers(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
        __ leave();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
        __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
#endif // TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
    case new_type_array_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
    case new_object_array_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
        Register length   = rbx; // Incoming
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
        Register klass    = rdx; // Incoming
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
        Register obj      = rax; // Result
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
        if (id == new_type_array_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
          __ set_info("new_type_array", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
          __ set_info("new_object_array", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
        // assert object type is really an array of the proper kind
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
        {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
          Label ok;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
          Register t0 = obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
          __ movl(t0, Address(klass, Klass::layout_helper_offset_in_bytes() + sizeof(oopDesc)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
          __ sarl(t0, Klass::_lh_array_tag_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
          int tag = ((id == new_type_array_id)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
                     ? Klass::_lh_array_tag_type_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
                     : Klass::_lh_array_tag_obj_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
          __ cmpl(t0, tag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
          __ jcc(Assembler::equal, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
          __ stop("assert(is an array klass)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
          __ should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
          __ bind(ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
        if (UseTLAB && FastTLABRefill) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
          Register arr_size = rsi;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
          Register t1       = rcx;  // must be rcx for use as shift count
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
          Register t2       = rdi;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
          Label slow_path;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
          assert_different_registers(length, klass, obj, arr_size, t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
          // check that array length is small enough for fast path.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
          __ cmpl(length, C1_MacroAssembler::max_array_allocation_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
          __ jcc(Assembler::above, slow_path);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
          // if we got here then the TLAB allocation failed, so try
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
          // refilling the TLAB or allocating directly from eden.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
          Label retry_tlab, try_eden;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
          __ tlab_refill(retry_tlab, try_eden, slow_path); // preserves rbx, & rdx
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
          __ bind(retry_tlab);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
          // get the allocation size: round_up(hdr + length << (layout_helper & 0x1F))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
          __ movl(t1, Address(klass, klassOopDesc::header_size() * HeapWordSize + Klass::layout_helper_offset_in_bytes()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
          __ movl(arr_size, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
          assert(t1 == rcx, "fixed register usage");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
          __ shll(arr_size /* by t1=rcx, mod 32 */);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
          __ shrl(t1, Klass::_lh_header_size_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
          __ andl(t1, Klass::_lh_header_size_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
          __ addl(arr_size, t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
          __ addl(arr_size, MinObjAlignmentInBytesMask); // align up
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
          __ andl(arr_size, ~MinObjAlignmentInBytesMask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
          __ tlab_allocate(obj, arr_size, 0, t1, t2, slow_path);  // preserves arr_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
          __ initialize_header(obj, klass, length, t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
          __ movb(t1, Address(klass, klassOopDesc::header_size() * HeapWordSize + Klass::layout_helper_offset_in_bytes() + (Klass::_lh_header_size_shift / BitsPerByte)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
          assert(Klass::_lh_header_size_shift % BitsPerByte == 0, "bytewise");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
          assert(Klass::_lh_header_size_mask <= 0xFF, "bytewise");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
          __ andl(t1, Klass::_lh_header_size_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
          __ subl(arr_size, t1);  // body length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
          __ addl(t1, obj);       // body start
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
          __ initialize_body(t1, arr_size, 0, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
          __ verify_oop(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
          __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
          __ bind(try_eden);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
          // get the allocation size: round_up(hdr + length << (layout_helper & 0x1F))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
          __ movl(t1, Address(klass, klassOopDesc::header_size() * HeapWordSize + Klass::layout_helper_offset_in_bytes()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
          __ movl(arr_size, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
          assert(t1 == rcx, "fixed register usage");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
          __ shll(arr_size /* by t1=rcx, mod 32 */);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
          __ shrl(t1, Klass::_lh_header_size_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
          __ andl(t1, Klass::_lh_header_size_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
          __ addl(arr_size, t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
          __ addl(arr_size, MinObjAlignmentInBytesMask); // align up
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
          __ andl(arr_size, ~MinObjAlignmentInBytesMask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
          __ eden_allocate(obj, arr_size, 0, t1, slow_path);  // preserves arr_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
          __ initialize_header(obj, klass, length, t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
          __ movb(t1, Address(klass, klassOopDesc::header_size() * HeapWordSize + Klass::layout_helper_offset_in_bytes() + (Klass::_lh_header_size_shift / BitsPerByte)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
          assert(Klass::_lh_header_size_shift % BitsPerByte == 0, "bytewise");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
          assert(Klass::_lh_header_size_mask <= 0xFF, "bytewise");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
          __ andl(t1, Klass::_lh_header_size_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
          __ subl(arr_size, t1);  // body length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
          __ addl(t1, obj);       // body start
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
          __ initialize_body(t1, arr_size, 0, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
          __ verify_oop(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
          __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
          __ bind(slow_path);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
        __ enter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
        OopMap* map = save_live_registers(sasm, 3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
        int call_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
        if (id == new_type_array_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
          call_offset = __ call_RT(obj, noreg, CAST_FROM_FN_PTR(address, new_type_array), klass, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
          call_offset = __ call_RT(obj, noreg, CAST_FROM_FN_PTR(address, new_object_array), klass, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
        oop_maps = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
        oop_maps->add_gc_map(call_offset, map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
        restore_live_registers_except_rax(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
        __ verify_oop(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
        __ leave();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
        __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
        // rax,: new array
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
    case new_multi_array_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
      { StubFrame f(sasm, "new_multi_array", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
        // rax,: klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
        // rbx,: rank
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
        // rcx: address of 1st dimension
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
        OopMap* map = save_live_registers(sasm, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
        int call_offset = __ call_RT(rax, noreg, CAST_FROM_FN_PTR(address, new_multi_array), rax, rbx, rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
        oop_maps = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
        oop_maps->add_gc_map(call_offset, map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
        restore_live_registers_except_rax(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
        // rax,: new multi array
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
        __ verify_oop(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
    case register_finalizer_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
        __ set_info("register_finalizer", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
        // The object is passed on the stack and we haven't pushed a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
        // frame yet so it's one work away from top of stack.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
        __ movl(rax, Address(rsp, 1 * BytesPerWord));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
        __ verify_oop(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
        // load the klass and check the has finalizer flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
        Label register_finalizer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
        Register t = rsi;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
        __ movl(t, Address(rax, oopDesc::klass_offset_in_bytes()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
        __ movl(t, Address(t, Klass::access_flags_offset_in_bytes() + sizeof(oopDesc)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
        __ testl(t, JVM_ACC_HAS_FINALIZER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
        __ jcc(Assembler::notZero, register_finalizer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
        __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
        __ bind(register_finalizer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
        __ enter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
        OopMap* oop_map = save_live_registers(sasm, 2 /*num_rt_args */);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
        int call_offset = __ call_RT(noreg, noreg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
                                     CAST_FROM_FN_PTR(address, SharedRuntime::register_finalizer), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
        oop_maps = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
        oop_maps->add_gc_map(call_offset, oop_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
        // Now restore all the live registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
        restore_live_registers(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
        __ leave();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
        __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
    case throw_range_check_failed_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
      { StubFrame f(sasm, "range_check_failed", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
        oop_maps = generate_exception_throw(sasm, CAST_FROM_FN_PTR(address, throw_range_check_exception), true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
    case throw_index_exception_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
      { StubFrame f(sasm, "index_range_check_failed", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
        oop_maps = generate_exception_throw(sasm, CAST_FROM_FN_PTR(address, throw_index_exception), true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
    case throw_div0_exception_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
      { StubFrame f(sasm, "throw_div0_exception", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
        oop_maps = generate_exception_throw(sasm, CAST_FROM_FN_PTR(address, throw_div0_exception), false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
    case throw_null_pointer_exception_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
      { StubFrame f(sasm, "throw_null_pointer_exception", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
        oop_maps = generate_exception_throw(sasm, CAST_FROM_FN_PTR(address, throw_null_pointer_exception), false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
    case handle_exception_nofpu_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
      save_fpu_registers = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
      // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
    case handle_exception_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
      { StubFrame f(sasm, "handle_exception", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
        oop_maps = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
        OopMap* oop_map = save_live_registers(sasm, 1, save_fpu_registers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
        generate_handle_exception(sasm, oop_maps, oop_map, save_fpu_registers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
    case unwind_exception_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
      { __ set_info("unwind_exception", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
        // note: no stubframe since we are about to leave the current
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
        //       activation and we are calling a leaf VM function only.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
        generate_unwind_exception(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
    case throw_array_store_exception_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
      { StubFrame f(sasm, "throw_array_store_exception", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
        // tos + 0: link
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
        //     + 1: return address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
        oop_maps = generate_exception_throw(sasm, CAST_FROM_FN_PTR(address, throw_array_store_exception), false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
    case throw_class_cast_exception_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
      { StubFrame f(sasm, "throw_class_cast_exception", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
        oop_maps = generate_exception_throw(sasm, CAST_FROM_FN_PTR(address, throw_class_cast_exception), true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
    case throw_incompatible_class_change_error_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
      { StubFrame f(sasm, "throw_incompatible_class_cast_exception", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
        oop_maps = generate_exception_throw(sasm, CAST_FROM_FN_PTR(address, throw_incompatible_class_change_error), false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
    case slow_subtype_check_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
        enum layout {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
          rax_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
          rcx_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
          rsi_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
          rdi_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
          saved_rbp_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
          return_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
          sub_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
          super_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
          framesize
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
        };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
        __ set_info("slow_subtype_check", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
        __ pushl(rdi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
        __ pushl(rsi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
        __ pushl(rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
        __ pushl(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
        __ movl(rsi, Address(rsp, (super_off - 1) * BytesPerWord)); // super
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
        __ movl(rax, Address(rsp, (sub_off   - 1) * BytesPerWord)); // sub
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
        __ movl(rdi,Address(rsi,sizeof(oopDesc) + Klass::secondary_supers_offset_in_bytes()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
        __ movl(rcx,Address(rdi,arrayOopDesc::length_offset_in_bytes()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
        __ addl(rdi,arrayOopDesc::base_offset_in_bytes(T_OBJECT));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
        Label miss;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
        __ repne_scan();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
        __ jcc(Assembler::notEqual, miss);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
        __ movl(Address(rsi,sizeof(oopDesc) + Klass::secondary_super_cache_offset_in_bytes()), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
        __ movl(Address(rsp, (super_off   - 1) * BytesPerWord), 1); // result
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
        __ popl(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
        __ popl(rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
        __ popl(rsi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
        __ popl(rdi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
        __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
        __ bind(miss);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
        __ movl(Address(rsp, (super_off   - 1) * BytesPerWord), 0); // result
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
        __ popl(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
        __ popl(rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
        __ popl(rsi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
        __ popl(rdi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
        __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
    case monitorenter_nofpu_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
      save_fpu_registers = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
      // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
    case monitorenter_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
        StubFrame f(sasm, "monitorenter", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
        OopMap* map = save_live_registers(sasm, 3, save_fpu_registers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
        f.load_argument(1, rax); // rax,: object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
        f.load_argument(0, rbx); // rbx,: lock address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
        int call_offset = __ call_RT(noreg, noreg, CAST_FROM_FN_PTR(address, monitorenter), rax, rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
        oop_maps = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
        oop_maps->add_gc_map(call_offset, map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
        restore_live_registers(sasm, save_fpu_registers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
    case monitorexit_nofpu_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
      save_fpu_registers = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
      // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
    case monitorexit_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
        StubFrame f(sasm, "monitorexit", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
        OopMap* map = save_live_registers(sasm, 2, save_fpu_registers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
        f.load_argument(0, rax); // rax,: lock address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
        // note: really a leaf routine but must setup last java sp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
        //       => use call_RT for now (speed can be improved by
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
        //       doing last java sp setup manually)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
        int call_offset = __ call_RT(noreg, noreg, CAST_FROM_FN_PTR(address, monitorexit), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
        oop_maps = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
        oop_maps->add_gc_map(call_offset, map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
        restore_live_registers(sasm, save_fpu_registers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
    case access_field_patching_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
      { StubFrame f(sasm, "access_field_patching", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
        // we should set up register map
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
        oop_maps = generate_patching(sasm, CAST_FROM_FN_PTR(address, access_field_patching));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
    case load_klass_patching_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
      { StubFrame f(sasm, "load_klass_patching", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
        // we should set up register map
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
        oop_maps = generate_patching(sasm, CAST_FROM_FN_PTR(address, move_klass_patching));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
    case jvmti_exception_throw_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
      { // rax,: exception oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
        StubFrame f(sasm, "jvmti_exception_throw", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
        // Preserve all registers across this potentially blocking call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
        const int num_rt_args = 2;  // thread, exception oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
        OopMap* map = save_live_registers(sasm, num_rt_args);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
        int call_offset = __ call_RT(noreg, noreg, CAST_FROM_FN_PTR(address, Runtime1::post_jvmti_exception_throw), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
        oop_maps = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
        oop_maps->add_gc_map(call_offset, map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
        restore_live_registers(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
    case dtrace_object_alloc_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
      { // rax,: object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
        StubFrame f(sasm, "dtrace_object_alloc", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
        // we can't gc here so skip the oopmap but make sure that all
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
        // the live registers get saved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
        save_live_registers(sasm, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
        __ pushl(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
        __ call(RuntimeAddress(CAST_FROM_FN_PTR(address, SharedRuntime::dtrace_object_alloc)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
        __ popl(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
        restore_live_registers(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
    case fpu2long_stub_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
        // rax, and rdx are destroyed, but should be free since the result is returned there
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
        // preserve rsi,ecx
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
        __ pushl(rsi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
        __ pushl(rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
        // check for NaN
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
        Label return0, do_return, return_min_jlong, do_convert;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
        Address value_high_word(rsp, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
        Address value_low_word(rsp, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
        Address result_high_word(rsp, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
        Address result_low_word(rsp, 12);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
        __ subl(rsp, 20);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
        __ fst_d(value_low_word);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
        __ movl(rax, value_high_word);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
        __ andl(rax, 0x7ff00000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
        __ cmpl(rax, 0x7ff00000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
        __ jcc(Assembler::notEqual, do_convert);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
        __ movl(rax, value_high_word);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
        __ andl(rax, 0xfffff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
        __ orl(rax, value_low_word);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
        __ jcc(Assembler::notZero, return0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
        __ bind(do_convert);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
        __ fnstcw(Address(rsp, 0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
        __ movzxw(rax, Address(rsp, 0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
        __ orl(rax, 0xc00);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
        __ movw(Address(rsp, 2), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
        __ fldcw(Address(rsp, 2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
        __ fwait();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
        __ fistp_d(result_low_word);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
        __ fldcw(Address(rsp, 0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
        __ fwait();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
        __ movl(rax, result_low_word);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
        __ movl(rdx, result_high_word);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
        __ movl(rcx, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
        // What the heck is the point of the next instruction???
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
        __ xorl(rcx, 0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
        __ movl(rsi, 0x80000000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
        __ xorl(rsi, rdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
        __ orl(rcx, rsi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
        __ jcc(Assembler::notEqual, do_return);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
        __ fldz();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
        __ fcomp_d(value_low_word);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
        __ fnstsw_ax();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
        __ sahf();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
        __ jcc(Assembler::above, return_min_jlong);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
        // return max_jlong
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
        __ movl(rdx, 0x7fffffff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
        __ movl(rax, 0xffffffff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
        __ jmp(do_return);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
        __ bind(return_min_jlong);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
        __ movl(rdx, 0x80000000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
        __ xorl(rax, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
        __ jmp(do_return);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
        __ bind(return0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
        __ fpop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
        __ xorl(rdx,rdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
        __ xorl(rax,rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
        __ bind(do_return);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
        __ addl(rsp, 20);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
        __ popl(rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
        __ popl(rsi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
        __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1388
#ifndef SERIALGC
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1389
    case g1_pre_barrier_slow_id:
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1390
      {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1391
        StubFrame f(sasm, "g1_pre_barrier", dont_gc_arguments);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1392
        // arg0 : previous value of memory
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1393
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1394
        BarrierSet* bs = Universe::heap()->barrier_set();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1395
        if (bs->kind() != BarrierSet::G1SATBCTLogging) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1396
          __ movl(rax, (int)id);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1397
          __ call_RT(noreg, noreg, CAST_FROM_FN_PTR(address, unimplemented_entry), rax);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1398
          __ should_not_reach_here();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1399
          break;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1400
        }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1401
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1402
        __ pushl(rax);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1403
        __ pushl(rdx);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1404
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1405
        const Register pre_val = rax;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1406
        const Register thread = rax;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1407
        const Register tmp = rdx;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1408
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1409
        __ get_thread(thread);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1410
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1411
        Address in_progress(thread, in_bytes(JavaThread::satb_mark_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1412
                                             PtrQueue::byte_offset_of_active()));
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1413
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1414
        Address queue_index(thread, in_bytes(JavaThread::satb_mark_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1415
                                             PtrQueue::byte_offset_of_index()));
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1416
        Address buffer(thread, in_bytes(JavaThread::satb_mark_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1417
                                        PtrQueue::byte_offset_of_buf()));
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1418
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1419
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1420
        Label done;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1421
        Label runtime;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1422
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1423
        // Can we store original value in the thread's buffer?
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1424
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1425
        __ cmpl(queue_index, 0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1426
        __ jcc(Assembler::equal, runtime);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1427
        __ subl(queue_index, wordSize);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1428
        __ movl(tmp, buffer);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1429
        __ addl(tmp, queue_index);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1430
        // prev_val (rax)
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1431
        f.load_argument(0, pre_val);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1432
        __ movl(Address(tmp, 0), pre_val);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1433
        __ jmp(done);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1434
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1435
        __ bind(runtime);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1436
        // load the pre-value
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1437
        __ pushl(rcx);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1438
        f.load_argument(0, rcx);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1439
        __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::g1_wb_pre), rcx, thread);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1440
        __ popl(rcx);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1441
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1442
        __ bind(done);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1443
        __ popl(rdx);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1444
        __ popl(rax);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1445
      }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1446
      break;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1447
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1448
    case g1_post_barrier_slow_id:
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1449
      {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1450
        StubFrame f(sasm, "g1_post_barrier", dont_gc_arguments);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1451
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1452
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1453
        // arg0: store_address
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1454
        Address store_addr(rbp, 2*BytesPerWord);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1455
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1456
        BarrierSet* bs = Universe::heap()->barrier_set();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1457
        CardTableModRefBS* ct = (CardTableModRefBS*)bs;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1458
        Label done;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1459
        Label runtime;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1460
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1461
        // At this point we know new_value is non-NULL and the new_value crosses regsion.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1462
        // Must check to see if card is already dirty
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1463
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1464
        const Register card_index = rdx;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1465
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1466
        const Register thread = rax;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1467
        Address queue_index(thread, in_bytes(JavaThread::dirty_card_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1468
                                             PtrQueue::byte_offset_of_index()));
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1469
        Address buffer(thread, in_bytes(JavaThread::dirty_card_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1470
                                        PtrQueue::byte_offset_of_buf()));
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1471
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1472
        __ pushl(rax);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1473
        __ pushl(rdx);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1474
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1475
        __ movl(card_index, store_addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1476
        __ get_thread(rax);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1477
        __ shrl(card_index, CardTableModRefBS::card_shift);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1478
        assert(sizeof(*ct->byte_map_base) == sizeof(jbyte), "adjust this code");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1479
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1480
        ExternalAddress cardtable((address)ct->byte_map_base);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1481
        Address index(noreg, card_index, Address::times_1);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1482
        const Register card_addr = rdx;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1483
        __ leal(card_addr, __ as_Address(ArrayAddress(cardtable, index)));
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1484
        __ cmpb(Address(card_addr, 0), 0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1485
        __ jcc(Assembler::equal, done);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1486
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1487
        // storing region crossing non-NULL, card is clean.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1488
        // dirty card and log.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1489
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1490
        __ movb(Address(card_addr, 0), 0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1491
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1492
        __ cmpl(queue_index, 0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1493
        __ jcc(Assembler::equal, runtime);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1494
        __ subl(queue_index, wordSize);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1495
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1496
        const Register buffer_addr = rbx;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1497
        __ pushl(rbx);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1498
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1499
        __ movl(buffer_addr, buffer);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1500
        __ addl(buffer_addr, queue_index);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1501
        __ movl(Address(buffer_addr, 0), card_addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1502
        __ popl(rbx);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1503
        __ jmp(done);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1504
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1505
        __ bind(runtime);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1506
        __ pushl(rcx);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1507
        __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::g1_wb_post), card_addr, thread);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1508
        __ popl(rcx);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1509
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1510
        __ bind(done);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1511
        __ popl(rdx);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1512
        __ popl(rax);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1513
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1514
      }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1515
      break;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1516
#endif // !SERIALGC
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1517
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
      { StubFrame f(sasm, "unimplemented entry", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1520
        __ movl(rax, (int)id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1521
        __ call_RT(noreg, noreg, CAST_FROM_FN_PTR(address, unimplemented_entry), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1522
        __ should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1523
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1524
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1525
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1526
  return oop_maps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1527
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1528
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1529
#undef __