hotspot/src/cpu/x86/vm/c1_CodeStubs_x86.cpp
author roland
Tue, 29 Dec 2009 19:08:54 +0100
changeset 6745 a34ef8968a84
parent 6453 970dc585ab63
child 6970 3ac175042286
permissions -rw-r--r--
6986046: C1 valuestack cleanup Summary: fixes an historical oddity in C1 with inlining where all of the expression stacks are kept in the topmost ValueStack instead of being in their respective ValueStacks. Reviewed-by: never Contributed-by: Christian Wimmer <cwimmer@uci.edu>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5046
diff changeset
     2
 * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5046
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5046
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5046
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
#include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "incls/_c1_CodeStubs_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
#define __ ce->masm()->
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
float ConversionStub::float_zero = 0.0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
double ConversionStub::double_zero = 0.0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
void ConversionStub::emit_code(LIR_Assembler* ce) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  __ bind(_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  assert(bytecode() == Bytecodes::_f2i || bytecode() == Bytecodes::_d2i, "other conversions do not require stub");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  if (input()->is_single_xmm()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
    __ comiss(input()->as_xmm_float_reg(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
              ExternalAddress((address)&float_zero));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  } else if (input()->is_double_xmm()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
    __ comisd(input()->as_xmm_double_reg(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
              ExternalAddress((address)&double_zero));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  } else {
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    46
    LP64_ONLY(ShouldNotReachHere());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    47
    __ push(rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    __ ftst();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    __ fnstsw_ax();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    __ sahf();
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    51
    __ pop(rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  Label NaN, do_return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  __ jccb(Assembler::parity, NaN);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  __ jccb(Assembler::below, do_return);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  // input is > 0 -> return maxInt
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // result register already contains 0x80000000, so subtracting 1 gives 0x7fffffff
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  __ decrement(result()->as_register());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  __ jmpb(do_return);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // input is NaN -> return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  __ bind(NaN);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    65
  __ xorptr(result()->as_register(), result()->as_register());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  __ bind(do_return);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  __ jmp(_continuation);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
void CounterOverflowStub::emit_code(LIR_Assembler* ce) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  __ bind(_entry);
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
    73
  ce->store_parameter(_method->as_register(), 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  ce->store_parameter(_bci, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  __ call(RuntimeAddress(Runtime1::entry_for(Runtime1::counter_overflow_id)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  ce->add_call_info_here(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  ce->verify_oop_map(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  __ jmp(_continuation);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
RangeCheckStub::RangeCheckStub(CodeEmitInfo* info, LIR_Opr index,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
                               bool throw_index_out_of_bounds_exception)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  : _throw_index_out_of_bounds_exception(throw_index_out_of_bounds_exception)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  , _index(index)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
{
6745
a34ef8968a84 6986046: C1 valuestack cleanup
roland
parents: 6453
diff changeset
    86
  assert(info != NULL, "must have info");
a34ef8968a84 6986046: C1 valuestack cleanup
roland
parents: 6453
diff changeset
    87
  _info = new CodeEmitInfo(info);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
void RangeCheckStub::emit_code(LIR_Assembler* ce) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  __ bind(_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // pass the array index on stack because all registers must be preserved
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  if (_index->is_cpu_register()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    ce->store_parameter(_index->as_register(), 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    ce->store_parameter(_index->as_jint(), 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  Runtime1::StubID stub_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  if (_throw_index_out_of_bounds_exception) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    stub_id = Runtime1::throw_index_exception_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    stub_id = Runtime1::throw_range_check_failed_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  __ call(RuntimeAddress(Runtime1::entry_for(stub_id)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  ce->add_call_info_here(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  debug_only(__ should_not_reach_here());
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
void DivByZeroStub::emit_code(LIR_Assembler* ce) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  if (_offset != -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    ce->compilation()->implicit_exception_table()->append(_offset, __ offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  __ bind(_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  __ call(RuntimeAddress(Runtime1::entry_for(Runtime1::throw_div0_exception_id)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  ce->add_call_info_here(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  debug_only(__ should_not_reach_here());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
// Implementation of NewInstanceStub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
NewInstanceStub::NewInstanceStub(LIR_Opr klass_reg, LIR_Opr result, ciInstanceKlass* klass, CodeEmitInfo* info, Runtime1::StubID stub_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  _result = result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  _klass = klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  _klass_reg = klass_reg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  _info = new CodeEmitInfo(info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  assert(stub_id == Runtime1::new_instance_id                 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
         stub_id == Runtime1::fast_new_instance_id            ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
         stub_id == Runtime1::fast_new_instance_init_check_id,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
         "need new_instance id");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  _stub_id   = stub_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
void NewInstanceStub::emit_code(LIR_Assembler* ce) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  assert(__ rsp_offset() == 0, "frame size should be fixed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  __ bind(_entry);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   140
  __ movptr(rdx, _klass_reg->as_register());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  __ call(RuntimeAddress(Runtime1::entry_for(_stub_id)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  ce->add_call_info_here(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  ce->verify_oop_map(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  assert(_result->as_register() == rax, "result must in rax,");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  __ jmp(_continuation);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
// Implementation of NewTypeArrayStub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
NewTypeArrayStub::NewTypeArrayStub(LIR_Opr klass_reg, LIR_Opr length, LIR_Opr result, CodeEmitInfo* info) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  _klass_reg = klass_reg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  _length = length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  _result = result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  _info = new CodeEmitInfo(info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
void NewTypeArrayStub::emit_code(LIR_Assembler* ce) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  assert(__ rsp_offset() == 0, "frame size should be fixed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  __ bind(_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  assert(_length->as_register() == rbx, "length must in rbx,");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  assert(_klass_reg->as_register() == rdx, "klass_reg must in rdx");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  __ call(RuntimeAddress(Runtime1::entry_for(Runtime1::new_type_array_id)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  ce->add_call_info_here(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  ce->verify_oop_map(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  assert(_result->as_register() == rax, "result must in rax,");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  __ jmp(_continuation);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
// Implementation of NewObjectArrayStub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
NewObjectArrayStub::NewObjectArrayStub(LIR_Opr klass_reg, LIR_Opr length, LIR_Opr result, CodeEmitInfo* info) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  _klass_reg = klass_reg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  _result = result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  _length = length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  _info = new CodeEmitInfo(info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
void NewObjectArrayStub::emit_code(LIR_Assembler* ce) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  assert(__ rsp_offset() == 0, "frame size should be fixed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  __ bind(_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  assert(_length->as_register() == rbx, "length must in rbx,");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  assert(_klass_reg->as_register() == rdx, "klass_reg must in rdx");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  __ call(RuntimeAddress(Runtime1::entry_for(Runtime1::new_object_array_id)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  ce->add_call_info_here(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  ce->verify_oop_map(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  assert(_result->as_register() == rax, "result must in rax,");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  __ jmp(_continuation);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
// Implementation of MonitorAccessStubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
MonitorEnterStub::MonitorEnterStub(LIR_Opr obj_reg, LIR_Opr lock_reg, CodeEmitInfo* info)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
: MonitorAccessStub(obj_reg, lock_reg)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  _info = new CodeEmitInfo(info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
void MonitorEnterStub::emit_code(LIR_Assembler* ce) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  assert(__ rsp_offset() == 0, "frame size should be fixed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  __ bind(_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  ce->store_parameter(_obj_reg->as_register(),  1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  ce->store_parameter(_lock_reg->as_register(), 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  Runtime1::StubID enter_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  if (ce->compilation()->has_fpu_code()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    enter_id = Runtime1::monitorenter_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    enter_id = Runtime1::monitorenter_nofpu_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  __ call(RuntimeAddress(Runtime1::entry_for(enter_id)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  ce->add_call_info_here(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  ce->verify_oop_map(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  __ jmp(_continuation);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
void MonitorExitStub::emit_code(LIR_Assembler* ce) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  __ bind(_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  if (_compute_lock) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    // lock_reg was destroyed by fast unlocking attempt => recompute it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    ce->monitor_address(_monitor_ix, _lock_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  ce->store_parameter(_lock_reg->as_register(), 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  // note: non-blocking leaf routine => no call info needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  Runtime1::StubID exit_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  if (ce->compilation()->has_fpu_code()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    exit_id = Runtime1::monitorexit_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    exit_id = Runtime1::monitorexit_nofpu_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  __ call(RuntimeAddress(Runtime1::entry_for(exit_id)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  __ jmp(_continuation);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
// Implementation of patching:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
// - Copy the code at given offset to an inlined buffer (first the bytes, then the number of bytes)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
// - Replace original code with a call to the stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
// At Runtime:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
// - call to stub, jump to runtime
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
// - in runtime: preserve all registers (rspecially objects, i.e., source and destination object)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
// - in runtime: after initializing class, restore original code, reexecute instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
int PatchingStub::_patch_info_offset = -NativeGeneralJump::instruction_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
void PatchingStub::align_patch_site(MacroAssembler* masm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  // We're patching a 5-7 byte instruction on intel and we need to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  // make sure that we don't see a piece of the instruction.  It
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  // appears mostly impossible on Intel to simply invalidate other
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  // processors caches and since they may do aggressive prefetch it's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  // very hard to make a guess about what code might be in the icache.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  // Force the instruction to be double word aligned so that it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  // doesn't span a cache line.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  masm->align(round_to(NativeGeneralJump::instruction_size, wordSize));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
void PatchingStub::emit_code(LIR_Assembler* ce) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  assert(NativeCall::instruction_size <= _bytes_to_copy && _bytes_to_copy <= 0xFF, "not enough room for call");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  Label call_patch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  // static field accesses have special semantics while the class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  // initializer is being run so we emit a test which can be used to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  // check that this code is being executed by the initializing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  // thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  address being_initialized_entry = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  if (CommentedAssembly) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
    __ block_comment(" patch template");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  if (_id == load_klass_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    // produce a copy of the load klass instruction for use by the being initialized case
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    jobject o = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
    __ movoop(_obj, o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    for (int i = 0; i < _bytes_to_copy; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
      address ptr = (address)(_pc_start + i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
      int a_byte = (*ptr) & 0xFF;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
      assert(a_byte == *start++, "should be the same code");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
    // make a copy the code which is going to be patched.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    for ( int i = 0; i < _bytes_to_copy; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
      address ptr = (address)(_pc_start + i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
      int a_byte = (*ptr) & 0xFF;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
      __ a_byte (a_byte);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
      *ptr = 0x90; // make the site look like a nop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  address end_of_patch = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  int bytes_to_skip = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  if (_id == load_klass_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    int offset = __ offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
    if (CommentedAssembly) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
      __ block_comment(" being_initialized check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
    assert(_obj != noreg, "must be a valid register");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    Register tmp = rax;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    if (_obj == tmp) tmp = rbx;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   307
    __ push(tmp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
    __ get_thread(tmp);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   309
    __ cmpptr(tmp, Address(_obj, instanceKlass::init_thread_offset_in_bytes() + sizeof(klassOopDesc)));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   310
    __ pop(tmp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
    __ jcc(Assembler::notEqual, call_patch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
    // access_field patches may execute the patched code before it's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
    // copied back into place so we need to jump back into the main
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
    // code of the nmethod to continue execution.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    __ jmp(_patch_site_continuation);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    // make sure this extra code gets skipped
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    bytes_to_skip += __ offset() - offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  if (CommentedAssembly) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
    __ block_comment("patch data encoded as movl");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  // Now emit the patch record telling the runtime how to find the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  // pieces of the patch.  We only need 3 bytes but for readability of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  // the disassembly we make the data look like a movl reg, imm32,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  // which requires 5 bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  int sizeof_patch_record = 5;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  bytes_to_skip += sizeof_patch_record;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  // emit the offsets needed to find the code to patch
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  int being_initialized_entry_offset = __ pc() - being_initialized_entry + sizeof_patch_record;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  __ a_byte(0xB8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  __ a_byte(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  __ a_byte(being_initialized_entry_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  __ a_byte(bytes_to_skip);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  __ a_byte(_bytes_to_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  address patch_info_pc = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  assert(patch_info_pc - end_of_patch == bytes_to_skip, "incorrect patch info");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  address entry = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  NativeGeneralJump::insert_unconditional((address)_pc_start, entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  address target = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  switch (_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
    case access_field_id:  target = Runtime1::entry_for(Runtime1::access_field_patching_id); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
    case load_klass_id:    target = Runtime1::entry_for(Runtime1::load_klass_patching_id); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
    default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  __ bind(call_patch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  if (CommentedAssembly) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
    __ block_comment("patch entry point");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  __ call(RuntimeAddress(target));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  assert(_patch_info_offset == (patch_info_pc - __ pc()), "must not change");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  ce->add_call_info_here(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  int jmp_off = __ offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  __ jmp(_patch_site_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  // Add enough nops so deoptimization can overwrite the jmp above with a call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  // and not destroy the world.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  for (int j = __ offset() ; j < jmp_off + 5 ; j++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    __ nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  if (_id == load_klass_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
    CodeSection* cs = __ code_section();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
    RelocIterator iter(cs, (address)_pc_start, (address)(_pc_start + 1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    relocInfo::change_reloc_info_for_address(&iter, (address) _pc_start, relocInfo::oop_type, relocInfo::none);
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
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1412
diff changeset
   373
void DeoptimizeStub::emit_code(LIR_Assembler* ce) {
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1412
diff changeset
   374
  __ bind(_entry);
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1412
diff changeset
   375
  __ call(RuntimeAddress(SharedRuntime::deopt_blob()->unpack_with_reexecution()));
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1412
diff changeset
   376
  ce->add_call_info_here(_info);
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1412
diff changeset
   377
  debug_only(__ should_not_reach_here());
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1412
diff changeset
   378
}
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1412
diff changeset
   379
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1412
diff changeset
   380
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
void ImplicitNullCheckStub::emit_code(LIR_Assembler* ce) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  ce->compilation()->implicit_exception_table()->append(_offset, __ offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  __ bind(_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  __ call(RuntimeAddress(Runtime1::entry_for(Runtime1::throw_null_pointer_exception_id)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  ce->add_call_info_here(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  debug_only(__ should_not_reach_here());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
void SimpleExceptionStub::emit_code(LIR_Assembler* ce) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  assert(__ rsp_offset() == 0, "frame size should be fixed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  __ bind(_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  // pass the object on stack because all registers must be preserved
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  if (_obj->is_cpu_register()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    ce->store_parameter(_obj->as_register(), 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  __ call(RuntimeAddress(Runtime1::entry_for(_stub)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  ce->add_call_info_here(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  debug_only(__ should_not_reach_here());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
ArrayStoreExceptionStub::ArrayStoreExceptionStub(CodeEmitInfo* info):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  _info(info) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
void ArrayStoreExceptionStub::emit_code(LIR_Assembler* ce) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  assert(__ rsp_offset() == 0, "frame size should be fixed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  __ bind(_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  __ call(RuntimeAddress(Runtime1::entry_for(Runtime1::throw_array_store_exception_id)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  ce->add_call_info_here(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  debug_only(__ should_not_reach_here());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
void ArrayCopyStub::emit_code(LIR_Assembler* ce) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  //---------------slow case: call to native-----------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  __ bind(_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  // Figure out where the args should go
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  // This should really convert the IntrinsicID to the methodOop and signature
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  // but I don't know how to do that.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  VMRegPair args[5];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  BasicType signature[5] = { T_OBJECT, T_INT, T_OBJECT, T_INT, T_INT};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  SharedRuntime::java_calling_convention(signature, args, 5, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  // push parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  // (src, src_pos, dest, destPos, length)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  Register r[5];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  r[0] = src()->as_register();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  r[1] = src_pos()->as_register();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  r[2] = dst()->as_register();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  r[3] = dst_pos()->as_register();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  r[4] = length()->as_register();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  // next registers will get stored on the stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  for (int i = 0; i < 5 ; i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
    VMReg r_1 = args[i].first();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
    if (r_1->is_stack()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
      int st_off = r_1->reg2stack() * wordSize;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   443
      __ movptr (Address(rsp, st_off), r[i]);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
      assert(r[i] == args[i].first()->as_Register(), "Wrong register for arg ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  ce->align_call(lir_static_call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  ce->emit_static_call_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  AddressLiteral resolve(SharedRuntime::get_resolve_static_call_stub(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
                         relocInfo::static_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  __ call(resolve);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  ce->add_call_info_here(info());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
#ifndef PRODUCT
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   458
  __ incrementl(ExternalAddress((address)&Runtime1::_arraycopy_slowcase_cnt));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  __ jmp(_continuation);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   464
/////////////////////////////////////////////////////////////////////////////
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   465
#ifndef SERIALGC
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   466
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   467
void G1PreBarrierStub::emit_code(LIR_Assembler* ce) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   468
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   469
  // At this point we know that marking is in progress
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   470
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   471
  __ bind(_entry);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   472
  assert(pre_val()->is_register(), "Precondition.");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   473
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   474
  Register pre_val_reg = pre_val()->as_register();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   475
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   476
  ce->mem2reg(addr(), pre_val(), T_OBJECT, patch_code(), info(), false);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   477
1394
apetrusenko
parents: 1066 1374
diff changeset
   478
  __ cmpptr(pre_val_reg, (int32_t) NULL_WORD);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   479
  __ jcc(Assembler::equal, _continuation);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   480
  ce->store_parameter(pre_val()->as_register(), 0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   481
  __ call(RuntimeAddress(Runtime1::entry_for(Runtime1::g1_pre_barrier_slow_id)));
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   482
  __ jmp(_continuation);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   483
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   484
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   485
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   486
jbyte* G1PostBarrierStub::_byte_map_base = NULL;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   487
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   488
jbyte* G1PostBarrierStub::byte_map_base_slow() {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   489
  BarrierSet* bs = Universe::heap()->barrier_set();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   490
  assert(bs->is_a(BarrierSet::G1SATBCTLogging),
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   491
         "Must be if we're using this.");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   492
  return ((G1SATBCardTableModRefBS*)bs)->byte_map_base;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   493
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   494
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   495
void G1PostBarrierStub::emit_code(LIR_Assembler* ce) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   496
  __ bind(_entry);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   497
  assert(addr()->is_register(), "Precondition.");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   498
  assert(new_val()->is_register(), "Precondition.");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   499
  Register new_val_reg = new_val()->as_register();
1394
apetrusenko
parents: 1066 1374
diff changeset
   500
  __ cmpptr(new_val_reg, (int32_t) NULL_WORD);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   501
  __ jcc(Assembler::equal, _continuation);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   502
  ce->store_parameter(addr()->as_register(), 0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   503
  __ call(RuntimeAddress(Runtime1::entry_for(Runtime1::g1_post_barrier_slow_id)));
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   504
  __ jmp(_continuation);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   505
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   506
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   507
#endif // SERIALGC
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   508
/////////////////////////////////////////////////////////////////////////////
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
#undef __