hotspot/src/cpu/x86/vm/stubGenerator_x86_64.cpp
author tonyp
Thu, 21 Aug 2008 23:36:31 -0400
changeset 1388 3677f5f3d66b
parent 1374 4c24294029a9
parent 957 386f9fbd4cb3
child 1394 43b4b8b54e65
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
670
ddf3e9583f2f 6719955: Update copyright year
xdono
parents: 371
diff changeset
     2
 * Copyright 2003-2008 Sun Microsystems, Inc.  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
 *
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/_stubGenerator_x86_64.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// Declaration and definition of StubGenerator (no .hpp file).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// For a more detailed description of the stub routine structure
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// see the comment in stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
#define __ _masm->
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
    33
#define TIMES_OOP (UseCompressedOops ? Address::times_4 : Address::times_8)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
#ifdef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
#define BLOCK_COMMENT(str) /* nothing */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
#define BLOCK_COMMENT(str) __ block_comment(str)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
#define BIND(label) bind(label); BLOCK_COMMENT(#label ":")
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
const int MXCSR_MASK = 0xFFC0;  // Mask out any pending exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// Stub Code definitions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
static address handle_unsafe_access() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  JavaThread* thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  address pc = thread->saved_exception_pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  // pc is the instruction which we must emulate
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  // doing a no-op is fine:  return garbage from the load
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // therefore, compute npc
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  address npc = Assembler::locate_next_instruction(pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  // request an async exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  thread->set_pending_unsafe_access_error();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // return address of next instruction to execute
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  return npc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
class StubGenerator: public StubCodeGenerator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
#ifdef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
#define inc_counter_np(counter) (0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  void inc_counter_np_(int& counter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    __ incrementl(ExternalAddress((address)&counter));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
#define inc_counter_np(counter) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  BLOCK_COMMENT("inc_counter " #counter); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  inc_counter_np_(counter);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  // Call stubs are used to call Java from C
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // Linux Arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  //    c_rarg0:   call wrapper address                   address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  //    c_rarg1:   result                                 address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  //    c_rarg2:   result type                            BasicType
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  //    c_rarg3:   method                                 methodOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  //    c_rarg4:   (interpreter) entry point              address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  //    c_rarg5:   parameters                             intptr_t*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  //    16(rbp): parameter size (in words)              int
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  //    24(rbp): thread                                 Thread*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  //     [ return_from_Java     ] <--- rsp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  //     [ argument word n      ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  //      ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // -12 [ argument word 1      ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // -11 [ saved r15            ] <--- rsp_after_call
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // -10 [ saved r14            ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  //  -9 [ saved r13            ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  //  -8 [ saved r12            ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  //  -7 [ saved rbx            ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  //  -6 [ call wrapper         ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  //  -5 [ result               ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  //  -4 [ result type          ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  //  -3 [ method               ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  //  -2 [ entry point          ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  //  -1 [ parameters           ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  //   0 [ saved rbp            ] <--- rbp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  //   1 [ return address       ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  //   2 [ parameter size       ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  //   3 [ thread               ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // Windows Arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  //    c_rarg0:   call wrapper address                   address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  //    c_rarg1:   result                                 address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  //    c_rarg2:   result type                            BasicType
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  //    c_rarg3:   method                                 methodOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  //    48(rbp): (interpreter) entry point              address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  //    56(rbp): parameters                             intptr_t*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  //    64(rbp): parameter size (in words)              int
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  //    72(rbp): thread                                 Thread*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  //     [ return_from_Java     ] <--- rsp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  //     [ argument word n      ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  //      ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  //  -8 [ argument word 1      ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  //  -7 [ saved r15            ] <--- rsp_after_call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  //  -6 [ saved r14            ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  //  -5 [ saved r13            ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  //  -4 [ saved r12            ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  //  -3 [ saved rdi            ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  //  -2 [ saved rsi            ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  //  -1 [ saved rbx            ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  //   0 [ saved rbp            ] <--- rbp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  //   1 [ return address       ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  //   2 [ call wrapper         ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  //   3 [ result               ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  //   4 [ result type          ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  //   5 [ method               ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  //   6 [ entry point          ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  //   7 [ parameters           ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  //   8 [ parameter size       ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  //   9 [ thread               ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  //    Windows reserves the callers stack space for arguments 1-4.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  //    We spill c_rarg0-c_rarg3 to this space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // Call stub stack layout word offsets from rbp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  enum call_stub_layout {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
#ifdef _WIN64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    rsp_after_call_off = -7,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    r15_off            = rsp_after_call_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    r14_off            = -6,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    r13_off            = -5,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    r12_off            = -4,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    rdi_off            = -3,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    rsi_off            = -2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    rbx_off            = -1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    rbp_off            =  0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    retaddr_off        =  1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    call_wrapper_off   =  2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    result_off         =  3,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    result_type_off    =  4,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    method_off         =  5,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    entry_point_off    =  6,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    parameters_off     =  7,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    parameter_size_off =  8,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    thread_off         =  9
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    rsp_after_call_off = -12,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    mxcsr_off          = rsp_after_call_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    r15_off            = -11,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    r14_off            = -10,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    r13_off            = -9,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    r12_off            = -8,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    rbx_off            = -7,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    call_wrapper_off   = -6,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    result_off         = -5,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    result_type_off    = -4,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    method_off         = -3,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    entry_point_off    = -2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    parameters_off     = -1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    rbp_off            =  0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    retaddr_off        =  1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    parameter_size_off =  2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    thread_off         =  3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  address generate_call_stub(address& return_address) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    assert((int)frame::entry_frame_after_call_words == -(int)rsp_after_call_off + 1 &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
           (int)frame::entry_frame_call_wrapper_offset == (int)call_wrapper_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
           "adjust this code");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    StubCodeMark mark(this, "StubRoutines", "call_stub");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    // same as in generate_catch_exception()!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    const Address rsp_after_call(rbp, rsp_after_call_off * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    const Address call_wrapper  (rbp, call_wrapper_off   * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    const Address result        (rbp, result_off         * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    const Address result_type   (rbp, result_type_off    * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    const Address method        (rbp, method_off         * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    const Address entry_point   (rbp, entry_point_off    * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    const Address parameters    (rbp, parameters_off     * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    const Address parameter_size(rbp, parameter_size_off * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    // same as in generate_catch_exception()!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    const Address thread        (rbp, thread_off         * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    const Address r15_save(rbp, r15_off * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    const Address r14_save(rbp, r14_off * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    const Address r13_save(rbp, r13_off * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    const Address r12_save(rbp, r12_off * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    const Address rbx_save(rbp, rbx_off * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    // stub code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    __ enter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    __ subq(rsp, -rsp_after_call_off * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    // save register parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
#ifndef _WIN64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    __ movq(parameters,   c_rarg5); // parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    __ movq(entry_point,  c_rarg4); // entry_point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    __ movq(method,       c_rarg3); // method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    __ movl(result_type,  c_rarg2); // result type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
    __ movq(result,       c_rarg1); // result
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    __ movq(call_wrapper, c_rarg0); // call wrapper
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    // save regs belonging to calling function
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    __ movq(rbx_save, rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    __ movq(r12_save, r12);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    __ movq(r13_save, r13);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    __ movq(r14_save, r14);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    __ movq(r15_save, r15);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
#ifdef _WIN64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    const Address rdi_save(rbp, rdi_off * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    const Address rsi_save(rbp, rsi_off * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    __ movq(rsi_save, rsi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    __ movq(rdi_save, rdi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    const Address mxcsr_save(rbp, mxcsr_off * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
      Label skip_ldmx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
      __ stmxcsr(mxcsr_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
      __ movl(rax, mxcsr_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
      __ andl(rax, MXCSR_MASK);    // Only check control and mask bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
      ExternalAddress mxcsr_std(StubRoutines::amd64::mxcsr_std());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
      __ cmp32(rax, mxcsr_std);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
      __ jcc(Assembler::equal, skip_ldmx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
      __ ldmxcsr(mxcsr_std);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
      __ bind(skip_ldmx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    // Load up thread register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    __ movq(r15_thread, thread);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
   256
    __ reinit_heapbase();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
    // make sure we have no pending exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
      Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
      __ cmpq(Address(r15_thread, Thread::pending_exception_offset()), (int)NULL_WORD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
      __ jcc(Assembler::equal, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
      __ stop("StubRoutines::call_stub: entered with pending exception");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
      __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
    // pass parameters if any
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
    BLOCK_COMMENT("pass parameters if any");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
    Label parameters_done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
    __ movl(c_rarg3, parameter_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
    __ testl(c_rarg3, c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
    __ jcc(Assembler::zero, parameters_done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    Label loop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    __ movq(c_rarg2, parameters);     // parameter pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    __ movl(c_rarg1, c_rarg3);        // parameter counter is in c_rarg1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
    __ BIND(loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
    if (TaggedStackInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
      __ movq(rax, Address(c_rarg2, 0)); // get tag
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
      __ addq(c_rarg2, wordSize);     // advance to next tag
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
      __ pushq(rax);                  // pass tag
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    __ movq(rax, Address(c_rarg2, 0));  // get parameter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
    __ addq(c_rarg2, wordSize);       // advance to next parameter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    __ decrementl(c_rarg1);           // decrement counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
    __ pushq(rax);                    // pass parameter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    __ jcc(Assembler::notZero, loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    // call Java function
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
    __ BIND(parameters_done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
    __ movq(rbx, method);             // get methodOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    __ movq(c_rarg1, entry_point);    // get entry_point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
    __ movq(r13, rsp);                // set sender sp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
    BLOCK_COMMENT("call Java function");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
    __ call(c_rarg1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
    BLOCK_COMMENT("call_stub_return_address:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    return_address = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
    // store result depending on type (everything that is not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
    // T_OBJECT, T_LONG, T_FLOAT or T_DOUBLE is treated as T_INT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
    __ movq(c_rarg0, result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    Label is_long, is_float, is_double, exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    __ movl(c_rarg1, result_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
    __ cmpl(c_rarg1, T_OBJECT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
    __ jcc(Assembler::equal, is_long);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
    __ cmpl(c_rarg1, T_LONG);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
    __ jcc(Assembler::equal, is_long);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
    __ cmpl(c_rarg1, T_FLOAT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    __ jcc(Assembler::equal, is_float);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
    __ cmpl(c_rarg1, T_DOUBLE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
    __ jcc(Assembler::equal, is_double);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    // handle T_INT case
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
    __ movl(Address(c_rarg0, 0), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    __ BIND(exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
    // pop parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
    __ leaq(rsp, rsp_after_call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
    // verify that threads correspond
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
      Label L, S;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
      __ cmpq(r15_thread, thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
      __ jcc(Assembler::notEqual, S);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
      __ get_thread(rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
      __ cmpq(r15_thread, rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
      __ jcc(Assembler::equal, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
      __ bind(S);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
      __ jcc(Assembler::equal, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
      __ stop("StubRoutines::call_stub: threads must correspond");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
      __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    // restore regs belonging to calling function
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
    __ movq(r15, r15_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
    __ movq(r14, r14_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
    __ movq(r13, r13_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
    __ movq(r12, r12_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
    __ movq(rbx, rbx_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
#ifdef _WIN64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
    __ movq(rdi, rdi_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
    __ movq(rsi, rsi_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
    __ ldmxcsr(mxcsr_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
    // restore rsp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
    __ addq(rsp, -rsp_after_call_off * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    // return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
    __ popq(rbp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
    // handle return types different from T_INT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
    __ BIND(is_long);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    __ movq(Address(c_rarg0, 0), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    __ jmp(exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
    __ BIND(is_float);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
    __ movflt(Address(c_rarg0, 0), xmm0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    __ jmp(exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
    __ BIND(is_double);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
    __ movdbl(Address(c_rarg0, 0), xmm0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
    __ jmp(exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  // Return point for a Java call if there's an exception thrown in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  // Java code.  The exception is caught and transformed into a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  // pending exception stored in JavaThread that can be tested from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  // within the VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  // Note: Usually the parameters are removed by the callee. In case
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  // of an exception crossing an activation frame boundary, that is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  // not the case if the callee is compiled code => need to setup the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  // rsp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  // rax: exception oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  address generate_catch_exception() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
    StubCodeMark mark(this, "StubRoutines", "catch_exception");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
    // same as in generate_call_stub():
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
    const Address rsp_after_call(rbp, rsp_after_call_off * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
    const Address thread        (rbp, thread_off         * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
    // verify that threads correspond
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
      Label L, S;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
      __ cmpq(r15_thread, thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
      __ jcc(Assembler::notEqual, S);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
      __ get_thread(rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
      __ cmpq(r15_thread, rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
      __ jcc(Assembler::equal, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
      __ bind(S);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
      __ stop("StubRoutines::catch_exception: threads must correspond");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
      __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    // set pending exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    __ verify_oop(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
    __ movq(Address(r15_thread, Thread::pending_exception_offset()), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
    __ lea(rscratch1, ExternalAddress((address)__FILE__));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    __ movq(Address(r15_thread, Thread::exception_file_offset()), rscratch1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    __ movl(Address(r15_thread, Thread::exception_line_offset()), (int)  __LINE__);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
    // complete return to VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
    assert(StubRoutines::_call_stub_return_address != NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
           "_call_stub_return_address must have been generated before");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
    __ jump(RuntimeAddress(StubRoutines::_call_stub_return_address));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  // Continuation point for runtime calls returning with a pending
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  // exception.  The pending exception check happened in the runtime
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  // or native call stub.  The pending exception in Thread is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  // converted into a Java-level exception.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  // Contract with Java-level exception handlers:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  // rax: exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  // rdx: throwing pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  // NOTE: At entry of this stub, exception-pc must be on stack !!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  address generate_forward_exception() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
    StubCodeMark mark(this, "StubRoutines", "forward exception");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
    // Upon entry, the sp points to the return address returning into
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
    // Java (interpreted or compiled) code; i.e., the return address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
    // becomes the throwing pc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
    // Arguments pushed before the runtime call are still on the stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
    // but the exception handler will reset the stack pointer ->
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
    // ignore them.  A potential result in registers can be ignored as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
    // well.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
    // make sure this code is only executed if there is a pending exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
      Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
      __ cmpq(Address(r15_thread, Thread::pending_exception_offset()), (int) NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
      __ jcc(Assembler::notEqual, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
      __ stop("StubRoutines::forward exception: no pending exception (1)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
      __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    // compute exception handler into rbx
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    __ movq(c_rarg0, Address(rsp, 0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    BLOCK_COMMENT("call exception_handler_for_return_address");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    __ call_VM_leaf(CAST_FROM_FN_PTR(address,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
                         SharedRuntime::exception_handler_for_return_address),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
                    c_rarg0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
    __ movq(rbx, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
    // setup rax & rdx, remove return address & clear pending exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
    __ popq(rdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
    __ movq(rax, Address(r15_thread, Thread::pending_exception_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
    __ movptr(Address(r15_thread, Thread::pending_exception_offset()), (int)NULL_WORD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
    // make sure exception is set
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
      Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
      __ testq(rax, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
      __ jcc(Assembler::notEqual, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
      __ stop("StubRoutines::forward exception: no pending exception (2)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
      __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
    // continue at exception handler (return address removed)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
    // rax: exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
    // rbx: exception handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
    // rdx: throwing pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
    __ verify_oop(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
    __ jmp(rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  // Support for jint atomic::xchg(jint exchange_value, volatile jint* dest)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  // Arguments :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  //    c_rarg0: exchange_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  //    c_rarg0: dest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  // Result:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  //    *dest <- ex, return (orig *dest)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  address generate_atomic_xchg() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
    StubCodeMark mark(this, "StubRoutines", "atomic_xchg");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
    __ movl(rax, c_rarg0); // Copy to eax we need a return value anyhow
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
    __ xchgl(rax, Address(c_rarg1, 0)); // automatic LOCK
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  // Support for intptr_t atomic::xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  // Arguments :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  //    c_rarg0: exchange_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  //    c_rarg1: dest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  // Result:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  //    *dest <- ex, return (orig *dest)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  address generate_atomic_xchg_ptr() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
    StubCodeMark mark(this, "StubRoutines", "atomic_xchg_ptr");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
    __ movq(rax, c_rarg0); // Copy to eax we need a return value anyhow
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
    __ xchgq(rax, Address(c_rarg1, 0)); // automatic LOCK
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  // Support for jint atomic::atomic_cmpxchg(jint exchange_value, volatile jint* dest,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  //                                         jint compare_value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  // Arguments :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  //    c_rarg0: exchange_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  //    c_rarg1: dest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  //    c_rarg2: compare_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  // Result:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  //    if ( compare_value == *dest ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  //       *dest = exchange_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  //       return compare_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  //    else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  //       return *dest;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  address generate_atomic_cmpxchg() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
    StubCodeMark mark(this, "StubRoutines", "atomic_cmpxchg");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    __ movl(rax, c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
   if ( os::is_MP() ) __ lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
    __ cmpxchgl(c_rarg0, Address(c_rarg1, 0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  // Support for jint atomic::atomic_cmpxchg_long(jlong exchange_value,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  //                                             volatile jlong* dest,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  //                                             jlong compare_value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  // Arguments :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  //    c_rarg0: exchange_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  //    c_rarg1: dest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  //    c_rarg2: compare_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  // Result:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  //    if ( compare_value == *dest ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  //       *dest = exchange_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  //       return compare_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  //    else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  //       return *dest;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  address generate_atomic_cmpxchg_long() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
    StubCodeMark mark(this, "StubRoutines", "atomic_cmpxchg_long");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
    __ movq(rax, c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
   if ( os::is_MP() ) __ lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
    __ cmpxchgq(c_rarg0, Address(c_rarg1, 0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  // Support for jint atomic::add(jint add_value, volatile jint* dest)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  // Arguments :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  //    c_rarg0: add_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  //    c_rarg1: dest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  // Result:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  //    *dest += add_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  //    return *dest;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  address generate_atomic_add() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
    StubCodeMark mark(this, "StubRoutines", "atomic_add");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
    __ movl(rax, c_rarg0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
   if ( os::is_MP() ) __ lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
    __ xaddl(Address(c_rarg1, 0), c_rarg0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
    __ addl(rax, c_rarg0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  // Support for intptr_t atomic::add_ptr(intptr_t add_value, volatile intptr_t* dest)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  // Arguments :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  //    c_rarg0: add_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  //    c_rarg1: dest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  // Result:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  //    *dest += add_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  //    return *dest;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  address generate_atomic_add_ptr() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
    StubCodeMark mark(this, "StubRoutines", "atomic_add_ptr");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
    __ movq(rax, c_rarg0); // Copy to eax we need a return value anyhow
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
   if ( os::is_MP() ) __ lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
    __ xaddl(Address(c_rarg1, 0), c_rarg0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
    __ addl(rax, c_rarg0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  // Support for intptr_t OrderAccess::fence()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  // Arguments :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  // Result:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  address generate_orderaccess_fence() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
    StubCodeMark mark(this, "StubRoutines", "orderaccess_fence");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
    __ mfence();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  // Support for intptr_t get_previous_fp()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  // This routine is used to find the previous frame pointer for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  // caller (current_frame_guess). This is used as part of debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  // ps() is seemingly lost trying to find frames.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  // This code assumes that caller current_frame_guess) has a frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  address generate_get_previous_fp() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
    StubCodeMark mark(this, "StubRoutines", "get_previous_fp");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
    const Address old_fp(rbp, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
    const Address older_fp(rax, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
    __ enter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
    __ movq(rax, old_fp); // callers fp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
    __ movq(rax, older_fp); // the frame for ps()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
    __ popq(rbp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  //----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  // Support for void verify_mxcsr()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  // This routine is used with -Xcheck:jni to verify that native
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  // JNI code does not return to Java code without restoring the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  // MXCSR register to our expected state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  address generate_verify_mxcsr() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
    StubCodeMark mark(this, "StubRoutines", "verify_mxcsr");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
    const Address mxcsr_save(rsp, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
    if (CheckJNICalls) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
      Label ok_ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
      __ pushq(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
      __ subq(rsp, wordSize);      // allocate a temp location
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
      __ stmxcsr(mxcsr_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
      __ movl(rax, mxcsr_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
      __ andl(rax, MXCSR_MASK);    // Only check control and mask bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
      __ cmpl(rax, *(int *)(StubRoutines::amd64::mxcsr_std()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
      __ jcc(Assembler::equal, ok_ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
      __ warn("MXCSR changed by native JNI code, use -XX:+RestoreMXCSROnJNICall");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
      __ ldmxcsr(ExternalAddress(StubRoutines::amd64::mxcsr_std()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
      __ bind(ok_ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
      __ addq(rsp, wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
      __ popq(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  address generate_f2i_fixup() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
    StubCodeMark mark(this, "StubRoutines", "f2i_fixup");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
    Address inout(rsp, 5 * wordSize); // return address + 4 saves
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
    __ pushq(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
    __ pushq(c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
    __ pushq(c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
    __ pushq(c_rarg1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
    __ movl(rax, 0x7f800000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
    __ xorl(c_rarg3, c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
    __ movl(c_rarg2, inout);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
    __ movl(c_rarg1, c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
    __ andl(c_rarg1, 0x7fffffff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
    __ cmpl(rax, c_rarg1); // NaN? -> 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
    __ jcc(Assembler::negative, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
    __ testl(c_rarg2, c_rarg2); // signed ? min_jint : max_jint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
    __ movl(c_rarg3, 0x80000000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
    __ movl(rax, 0x7fffffff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
    __ cmovl(Assembler::positive, c_rarg3, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
    __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
    __ movq(inout, c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
    __ popq(c_rarg1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
    __ popq(c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
    __ popq(c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
    __ popq(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  address generate_f2l_fixup() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
    StubCodeMark mark(this, "StubRoutines", "f2l_fixup");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
    Address inout(rsp, 5 * wordSize); // return address + 4 saves
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
    __ pushq(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
    __ pushq(c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
    __ pushq(c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
    __ pushq(c_rarg1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
    __ movl(rax, 0x7f800000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
    __ xorl(c_rarg3, c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
    __ movl(c_rarg2, inout);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
    __ movl(c_rarg1, c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
    __ andl(c_rarg1, 0x7fffffff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
    __ cmpl(rax, c_rarg1); // NaN? -> 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
    __ jcc(Assembler::negative, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
    __ testl(c_rarg2, c_rarg2); // signed ? min_jlong : max_jlong
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
    __ mov64(c_rarg3, 0x8000000000000000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
    __ mov64(rax, 0x7fffffffffffffff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
    __ cmovq(Assembler::positive, c_rarg3, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
    __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
    __ movq(inout, c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
    __ popq(c_rarg1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
    __ popq(c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
    __ popq(c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
    __ popq(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  address generate_d2i_fixup() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
    StubCodeMark mark(this, "StubRoutines", "d2i_fixup");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
    Address inout(rsp, 6 * wordSize); // return address + 5 saves
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
    __ pushq(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
    __ pushq(c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
    __ pushq(c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
    __ pushq(c_rarg1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
    __ pushq(c_rarg0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
    __ movl(rax, 0x7ff00000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
    __ movq(c_rarg2, inout);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
    __ movl(c_rarg3, c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
    __ movq(c_rarg1, c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
    __ movq(c_rarg0, c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
    __ negl(c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
    __ shrq(c_rarg1, 0x20);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
    __ orl(c_rarg3, c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
    __ andl(c_rarg1, 0x7fffffff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
    __ xorl(c_rarg2, c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
    __ shrl(c_rarg3, 0x1f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
    __ orl(c_rarg1, c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
    __ cmpl(rax, c_rarg1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
    __ jcc(Assembler::negative, L); // NaN -> 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
    __ testq(c_rarg0, c_rarg0); // signed ? min_jint : max_jint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
    __ movl(c_rarg2, 0x80000000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
    __ movl(rax, 0x7fffffff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
    __ cmovl(Assembler::positive, c_rarg2, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
    __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
    __ movq(inout, c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
    __ popq(c_rarg0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
    __ popq(c_rarg1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
    __ popq(c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
    __ popq(c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
    __ popq(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
  address generate_d2l_fixup() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
    StubCodeMark mark(this, "StubRoutines", "d2l_fixup");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
    Address inout(rsp, 6 * wordSize); // return address + 5 saves
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
    __ pushq(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
    __ pushq(c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
    __ pushq(c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
    __ pushq(c_rarg1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
    __ pushq(c_rarg0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
    __ movl(rax, 0x7ff00000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
    __ movq(c_rarg2, inout);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
    __ movl(c_rarg3, c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
    __ movq(c_rarg1, c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
    __ movq(c_rarg0, c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
    __ negl(c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
    __ shrq(c_rarg1, 0x20);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
    __ orl(c_rarg3, c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
    __ andl(c_rarg1, 0x7fffffff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
    __ xorl(c_rarg2, c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
    __ shrl(c_rarg3, 0x1f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
    __ orl(c_rarg1, c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
    __ cmpl(rax, c_rarg1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
    __ jcc(Assembler::negative, L); // NaN -> 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
    __ testq(c_rarg0, c_rarg0); // signed ? min_jlong : max_jlong
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
    __ mov64(c_rarg2, 0x8000000000000000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
    __ mov64(rax, 0x7fffffffffffffff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
    __ cmovq(Assembler::positive, c_rarg2, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
    __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
    __ movq(inout, c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
    __ popq(c_rarg0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
    __ popq(c_rarg1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
    __ popq(c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
    __ popq(c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
    __ popq(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
  address generate_fp_mask(const char *stub_name, int64_t mask) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
    StubCodeMark mark(this, "StubRoutines", stub_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
    __ align(16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
    __ emit_data64( mask, relocInfo::none );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
    __ emit_data64( mask, relocInfo::none );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
  // The following routine generates a subroutine to throw an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
  // asynchronous UnknownError when an unsafe access gets a fault that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
  // could not be reasonably prevented by the programmer.  (Example:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
  // SIGBUS/OBJERR.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
  address generate_handler_for_unsafe_access() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
    StubCodeMark mark(this, "StubRoutines", "handler_for_unsafe_access");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
    __ pushq(0);                      // hole for return address-to-be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
    __ pushaq();                      // push registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
    Address next_pc(rsp, RegisterImpl::number_of_registers * BytesPerWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
    __ subq(rsp, frame::arg_reg_save_area_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
    BLOCK_COMMENT("call handle_unsafe_access");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
    __ call(RuntimeAddress(CAST_FROM_FN_PTR(address, handle_unsafe_access)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
    __ addq(rsp, frame::arg_reg_save_area_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
    __ movq(next_pc, rax);            // stuff next address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
    __ popaq();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
    __ ret(0);                        // jump to next address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
  // Non-destructive plausibility checks for oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  // Arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
  //    all args on stack!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
  // Stack after saving c_rarg3:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
  //    [tos + 0]: saved c_rarg3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
  //    [tos + 1]: saved c_rarg2
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   916
  //    [tos + 2]: saved r12 (several TemplateTable methods use it)
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   917
  //    [tos + 3]: saved flags
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   918
  //    [tos + 4]: return address
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   919
  //  * [tos + 5]: error message (char*)
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   920
  //  * [tos + 6]: object to verify (oop)
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   921
  //  * [tos + 7]: saved rax - saved by caller and bashed
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
  //  * = popped on exit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
  address generate_verify_oop() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
    StubCodeMark mark(this, "StubRoutines", "verify_oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
    Label exit, error;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
    __ pushfq();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
    __ incrementl(ExternalAddress((address) StubRoutines::verify_oop_count_addr()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   932
    __ pushq(r12);
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   933
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
    // save c_rarg2 and c_rarg3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
    __ pushq(c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
    __ pushq(c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   938
    enum {
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   939
           // After previous pushes.
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   940
           oop_to_verify = 6 * wordSize,
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   941
           saved_rax     = 7 * wordSize,
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   942
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   943
           // Before the call to MacroAssembler::debug(), see below.
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   944
           return_addr   = 16 * wordSize,
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   945
           error_msg     = 17 * wordSize
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   946
    };
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   947
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
    // get object
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   949
    __ movq(rax, Address(rsp, oop_to_verify));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
    // make sure object is 'reasonable'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
    __ testq(rax, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
    __ jcc(Assembler::zero, exit); // if obj is NULL it is OK
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
    // Check if the oop is in the right area of memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
    __ movq(c_rarg2, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
    __ movptr(c_rarg3, (int64_t) Universe::verify_oop_mask());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
    __ andq(c_rarg2, c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
    __ movptr(c_rarg3, (int64_t) Universe::verify_oop_bits());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
    __ cmpq(c_rarg2, c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
    __ jcc(Assembler::notZero, error);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   962
    // set r12 to heapbase for load_klass()
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   963
    __ reinit_heapbase();
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   964
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
    // make sure klass is 'reasonable'
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
   966
    __ load_klass(rax, rax);  // get klass
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
    __ testq(rax, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
    __ jcc(Assembler::zero, error); // if klass is NULL it is broken
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
    // Check if the klass is in the right area of memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
    __ movq(c_rarg2, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
    __ movptr(c_rarg3, (int64_t) Universe::verify_klass_mask());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
    __ andq(c_rarg2, c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
    __ movptr(c_rarg3, (int64_t) Universe::verify_klass_bits());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
    __ cmpq(c_rarg2, c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
    __ jcc(Assembler::notZero, error);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
    // make sure klass' klass is 'reasonable'
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
   978
    __ load_klass(rax, rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
    __ testq(rax, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
    __ jcc(Assembler::zero, error); // if klass' klass is NULL it is broken
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
    // Check if the klass' klass is in the right area of memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
    __ movptr(c_rarg3, (int64_t) Universe::verify_klass_mask());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
    __ andq(rax, c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
    __ movptr(c_rarg3, (int64_t) Universe::verify_klass_bits());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
    __ cmpq(rax, c_rarg3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
    __ jcc(Assembler::notZero, error);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
    // return if everything seems ok
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
    __ bind(exit);
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   990
    __ movq(rax, Address(rsp, saved_rax));       // get saved rax back
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   991
    __ popq(c_rarg3);                            // restore c_rarg3
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   992
    __ popq(c_rarg2);                            // restore c_rarg2
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   993
    __ popq(r12);                                // restore r12
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
    __ popfq();                                  // restore flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
    __ ret(3 * wordSize);                        // pop caller saved stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
    // handle errors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
    __ bind(error);
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   999
    __ movq(rax, Address(rsp, saved_rax));       // get saved rax back
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  1000
    __ popq(c_rarg3);                            // get saved c_rarg3 back
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  1001
    __ popq(c_rarg2);                            // get saved c_rarg2 back
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  1002
    __ popq(r12);                                // get saved r12 back
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
    __ popfq();                                  // get saved flags off stack --
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
                                                 // will be ignored
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
    __ pushaq();                                 // push registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
                                                 // (rip is already
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
                                                 // already pushed)
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  1009
    // debug(char* msg, int64_t pc, int64_t regs[])
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
    // We've popped the registers we'd saved (c_rarg3, c_rarg2 and flags), and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
    // pushed all the registers, so now the stack looks like:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
    //     [tos +  0] 16 saved registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
    //     [tos + 16] return address
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  1014
    //   * [tos + 17] error message (char*)
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  1015
    //   * [tos + 18] object to verify (oop)
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  1016
    //   * [tos + 19] saved rax - saved by caller and bashed
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  1017
    //   * = popped on exit
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  1018
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  1019
    __ movq(c_rarg0, Address(rsp, error_msg));   // pass address of error message
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  1020
    __ movq(c_rarg1, Address(rsp, return_addr)); // pass return address
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  1021
    __ movq(c_rarg2, rsp);                       // pass address of regs on stack
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
    __ movq(r12, rsp);                           // remember rsp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
    __ subq(rsp, frame::arg_reg_save_area_bytes);// windows
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
    __ andq(rsp, -16);                           // align stack as required by ABI
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
    BLOCK_COMMENT("call MacroAssembler::debug");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
    __ call(RuntimeAddress(CAST_FROM_FN_PTR(address, MacroAssembler::debug)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
    __ movq(rsp, r12);                           // restore rsp
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  1028
    __ popaq();                                  // pop registers (includes r12)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
    __ ret(3 * wordSize);                        // pop caller saved stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
  static address disjoint_byte_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
  static address disjoint_short_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
  static address disjoint_int_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
  static address disjoint_long_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
  static address disjoint_oop_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
  static address byte_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
  static address short_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
  static address int_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
  static address long_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
  static address oop_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
  static address checkcast_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
  // Verify that a register contains clean 32-bits positive value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
  // (high 32-bits are 0) so it could be used in 64-bits shifts.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
  //  Input:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
  //    Rint  -  32-bits value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
  //    Rtmp  -  scratch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
  void assert_clean_int(Register Rint, Register Rtmp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
    assert_different_registers(Rtmp, Rint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
    __ movslq(Rtmp, Rint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
    __ cmpq(Rtmp, Rint);
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  1062
    __ jcc(Assembler::equal, L);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
    __ stop("high 32-bits of int value are not 0");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
    __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
  //  Generate overlap test for array copy stubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
  //  Input:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
  //     c_rarg0 - from
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
  //     c_rarg1 - to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
  //     c_rarg2 - element count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
  //  Output:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
  //     rax   - &from[element count - 1]
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
  void array_overlap_test(address no_overlap_target, Address::ScaleFactor sf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
    assert(no_overlap_target != NULL, "must be generated");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
    array_overlap_test(no_overlap_target, NULL, sf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
  void array_overlap_test(Label& L_no_overlap, Address::ScaleFactor sf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
    array_overlap_test(NULL, &L_no_overlap, sf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
  void array_overlap_test(address no_overlap_target, Label* NOLp, Address::ScaleFactor sf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
    const Register from     = c_rarg0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
    const Register to       = c_rarg1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
    const Register count    = c_rarg2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
    const Register end_from = rax;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
    __ cmpq(to, from);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
    __ leaq(end_from, Address(from, count, sf, 0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
    if (NOLp == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
      ExternalAddress no_overlap(no_overlap_target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
      __ jump_cc(Assembler::belowEqual, no_overlap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
      __ cmpq(to, end_from);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
      __ jump_cc(Assembler::aboveEqual, no_overlap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
      __ jcc(Assembler::belowEqual, (*NOLp));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
      __ cmpq(to, end_from);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
      __ jcc(Assembler::aboveEqual, (*NOLp));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
  // Shuffle first three arg regs on Windows into Linux/Solaris locations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
  // Outputs:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
  //    rdi - rcx
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
  //    rsi - rdx
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
  //    rdx - r8
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
  //    rcx - r9
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
  // Registers r9 and r10 are used to save rdi and rsi on Windows, which latter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
  // are non-volatile.  r9 and r10 should not be used by the caller.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
  void setup_arg_regs(int nargs = 3) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
    const Register saved_rdi = r9;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
    const Register saved_rsi = r10;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
    assert(nargs == 3 || nargs == 4, "else fix");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
#ifdef _WIN64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
    assert(c_rarg0 == rcx && c_rarg1 == rdx && c_rarg2 == r8 && c_rarg3 == r9,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
           "unexpected argument registers");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
    if (nargs >= 4)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
      __ movq(rax, r9);  // r9 is also saved_rdi
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
    __ movq(saved_rdi, rdi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
    __ movq(saved_rsi, rsi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
    __ movq(rdi, rcx); // c_rarg0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
    __ movq(rsi, rdx); // c_rarg1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
    __ movq(rdx, r8);  // c_rarg2
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
    if (nargs >= 4)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
      __ movq(rcx, rax); // c_rarg3 (via rax)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
    assert(c_rarg0 == rdi && c_rarg1 == rsi && c_rarg2 == rdx && c_rarg3 == rcx,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
           "unexpected argument registers");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
  void restore_arg_regs() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
    const Register saved_rdi = r9;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
    const Register saved_rsi = r10;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
#ifdef _WIN64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
    __ movq(rdi, saved_rdi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
    __ movq(rsi, saved_rsi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
  // Generate code for an array write pre barrier
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
  //     addr    -  starting address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
  //     count    -  element count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
  //     Destroy no registers!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
  void  gen_write_ref_array_pre_barrier(Register addr, Register count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
    BarrierSet* bs = Universe::heap()->barrier_set();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
    switch (bs->kind()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
      case BarrierSet::G1SATBCT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
      case BarrierSet::G1SATBCTLogging:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
        {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
          __ pushaq();                      // push registers
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1161
          if (count == c_rarg0) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1162
            if (addr == c_rarg1) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1163
              // exactly backwards!!
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1164
              __ xchgq(c_rarg1, c_rarg0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1165
            } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1166
              __ movq(c_rarg1, count);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1167
              __ movq(c_rarg0, addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1168
            }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1169
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1170
          } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1171
            __ movq(c_rarg0, addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1172
            __ movq(c_rarg1, count);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1173
          }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1174
          __ call(RuntimeAddress(CAST_FROM_FN_PTR(address, BarrierSet::static_write_ref_array_pre)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
          __ popaq();
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
      case BarrierSet::CardTableModRef:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
      case BarrierSet::CardTableExtension:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
      case BarrierSet::ModRef:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
        break;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1182
      default:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
        ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
  // Generate code for an array write post barrier
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
  //  Input:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
  //     start    - register containing starting address of destination array
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
  //     end      - register containing ending address of destination array
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
  //     scratch  - scratch register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
  //  The input registers are overwritten.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
  //  The ending address is inclusive.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
  void  gen_write_ref_array_post_barrier(Register start, Register end, Register scratch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
    assert_different_registers(start, end, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
    BarrierSet* bs = Universe::heap()->barrier_set();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
    switch (bs->kind()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
      case BarrierSet::G1SATBCT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
      case BarrierSet::G1SATBCTLogging:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
        {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
          __ pushaq();                      // push registers (overkill)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
          // must compute element count unless barrier set interface is changed (other platforms supply count)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
          assert_different_registers(start, end, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
          __ leaq(scratch, Address(end, wordSize));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
          __ subq(scratch, start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
          __ shrq(scratch, LogBytesPerWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
          __ movq(c_rarg0, start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
          __ movq(c_rarg1, scratch);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1214
          __ call(RuntimeAddress(CAST_FROM_FN_PTR(address, BarrierSet::static_write_ref_array_post)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
          __ popaq();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
      case BarrierSet::CardTableModRef:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
      case BarrierSet::CardTableExtension:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
        {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
          CardTableModRefBS* ct = (CardTableModRefBS*)bs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
          assert(sizeof(*ct->byte_map_base) == sizeof(jbyte), "adjust this code");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
          Label L_loop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
           __ shrq(start, CardTableModRefBS::card_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
           __ shrq(end, CardTableModRefBS::card_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
           __ subq(end, start); // number of bytes to copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
957
386f9fbd4cb3 6717457: Internal Error (src/share/vm/code/relocInfo.hpp:1089)
never
parents: 670
diff changeset
  1230
          intptr_t disp = (intptr_t) ct->byte_map_base;
386f9fbd4cb3 6717457: Internal Error (src/share/vm/code/relocInfo.hpp:1089)
never
parents: 670
diff changeset
  1231
          if (__ is_simm32(disp)) {
386f9fbd4cb3 6717457: Internal Error (src/share/vm/code/relocInfo.hpp:1089)
never
parents: 670
diff changeset
  1232
            Address cardtable(noreg, noreg, Address::no_scale, disp);
386f9fbd4cb3 6717457: Internal Error (src/share/vm/code/relocInfo.hpp:1089)
never
parents: 670
diff changeset
  1233
            __ lea(scratch, cardtable);
386f9fbd4cb3 6717457: Internal Error (src/share/vm/code/relocInfo.hpp:1089)
never
parents: 670
diff changeset
  1234
          } else {
386f9fbd4cb3 6717457: Internal Error (src/share/vm/code/relocInfo.hpp:1089)
never
parents: 670
diff changeset
  1235
            ExternalAddress cardtable((address)disp);
386f9fbd4cb3 6717457: Internal Error (src/share/vm/code/relocInfo.hpp:1089)
never
parents: 670
diff changeset
  1236
            __ lea(scratch, cardtable);
386f9fbd4cb3 6717457: Internal Error (src/share/vm/code/relocInfo.hpp:1089)
never
parents: 670
diff changeset
  1237
          }
386f9fbd4cb3 6717457: Internal Error (src/share/vm/code/relocInfo.hpp:1089)
never
parents: 670
diff changeset
  1238
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
          const Register count = end; // 'end' register contains bytes count now
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
          __ addq(start, scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
        __ BIND(L_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
          __ movb(Address(start, count, Address::times_1), 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
          __ decrementq(count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
          __ jcc(Assembler::greaterEqual, L_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
        }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1246
        break;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1247
      default:
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1248
        ShouldNotReachHere();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1249
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1250
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1251
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
  // Copy big chunks forward
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
  // Inputs:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
  //   end_from     - source arrays end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
  //   end_to       - destination array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
  //   qword_count  - 64-bits element count, negative
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
  //   to           - scratch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
  //   L_copy_32_bytes - entry label
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
  //   L_copy_8_bytes  - exit  label
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
  void copy_32_bytes_forward(Register end_from, Register end_to,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
                             Register qword_count, Register to,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
                             Label& L_copy_32_bytes, Label& L_copy_8_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
    DEBUG_ONLY(__ stop("enter at entry label, not here"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
    Label L_loop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
    __ align(16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
  __ BIND(L_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
    __ movq(to, Address(end_from, qword_count, Address::times_8, -24));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
    __ movq(Address(end_to, qword_count, Address::times_8, -24), to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
    __ movq(to, Address(end_from, qword_count, Address::times_8, -16));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
    __ movq(Address(end_to, qword_count, Address::times_8, -16), to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
    __ movq(to, Address(end_from, qword_count, Address::times_8, - 8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
    __ movq(Address(end_to, qword_count, Address::times_8, - 8), to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
    __ movq(to, Address(end_from, qword_count, Address::times_8, - 0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
    __ movq(Address(end_to, qword_count, Address::times_8, - 0), to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
  __ BIND(L_copy_32_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
    __ addq(qword_count, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
    __ jcc(Assembler::lessEqual, L_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
    __ subq(qword_count, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
    __ jcc(Assembler::less, L_copy_8_bytes); // Copy trailing qwords
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
  // Copy big chunks backward
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
  // Inputs:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
  //   from         - source arrays address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
  //   dest         - destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
  //   qword_count  - 64-bits element count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
  //   to           - scratch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
  //   L_copy_32_bytes - entry label
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
  //   L_copy_8_bytes  - exit  label
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
  void copy_32_bytes_backward(Register from, Register dest,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
                              Register qword_count, Register to,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
                              Label& L_copy_32_bytes, Label& L_copy_8_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
    DEBUG_ONLY(__ stop("enter at entry label, not here"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
    Label L_loop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
    __ align(16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
  __ BIND(L_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
    __ movq(to, Address(from, qword_count, Address::times_8, 24));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
    __ movq(Address(dest, qword_count, Address::times_8, 24), to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
    __ movq(to, Address(from, qword_count, Address::times_8, 16));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
    __ movq(Address(dest, qword_count, Address::times_8, 16), to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
    __ movq(to, Address(from, qword_count, Address::times_8,  8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
    __ movq(Address(dest, qword_count, Address::times_8,  8), to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
    __ movq(to, Address(from, qword_count, Address::times_8,  0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
    __ movq(Address(dest, qword_count, Address::times_8,  0), to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
  __ BIND(L_copy_32_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
    __ subq(qword_count, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
    __ jcc(Assembler::greaterEqual, L_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
    __ addq(qword_count, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
    __ jcc(Assembler::greater, L_copy_8_bytes); // Copy trailing qwords
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
  // Arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
  //   aligned - true => Input and output aligned on a HeapWord == 8-byte boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
  //             ignored
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
  //   name    - stub name string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
  // Inputs:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
  //   c_rarg0   - source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
  //   c_rarg1   - destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
  //   c_rarg2   - element count, treated as ssize_t, can be zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
  // If 'from' and/or 'to' are aligned on 4-, 2-, or 1-byte boundaries,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
  // we let the hardware handle it.  The one to eight bytes within words,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
  // dwords or qwords that span cache line boundaries will still be loaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
  // and stored atomically.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
  // Side Effects:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
  //   disjoint_byte_copy_entry is set to the no-overlap entry point
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
  //   used by generate_conjoint_byte_copy().
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
  address generate_disjoint_byte_copy(bool aligned, const char *name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
    Label L_copy_32_bytes, L_copy_8_bytes, L_copy_4_bytes, L_copy_2_bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
    Label L_copy_byte, L_exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
    const Register from        = rdi;  // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
    const Register to          = rsi;  // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
    const Register count       = rdx;  // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
    const Register byte_count  = rcx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
    const Register qword_count = count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
    const Register end_from    = from; // source array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
    const Register end_to      = to;   // destination array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
    // End pointers are inclusive, and if count is not zero they point
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
    // to the last unit copied:  end_to[0] := end_from[0]
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
    __ enter(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
    assert_clean_int(c_rarg2, rax);    // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
    disjoint_byte_copy_entry = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
    BLOCK_COMMENT("Entry:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
    // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
    setup_arg_regs(); // from => rdi, to => rsi, count => rdx
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
                      // r9 and r10 may be used to save non-volatile registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
    // 'from', 'to' and 'count' are now valid
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
    __ movq(byte_count, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
    __ shrq(count, 3); // count => qword_count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
    // Copy from low to high addresses.  Use 'to' as scratch.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
    __ leaq(end_from, Address(from, qword_count, Address::times_8, -8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
    __ leaq(end_to,   Address(to,   qword_count, Address::times_8, -8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
    __ negq(qword_count); // make the count negative
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
    __ jmp(L_copy_32_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
    // Copy trailing qwords
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
  __ BIND(L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
    __ movq(rax, Address(end_from, qword_count, Address::times_8, 8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
    __ movq(Address(end_to, qword_count, Address::times_8, 8), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
    __ incrementq(qword_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
    __ jcc(Assembler::notZero, L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
    // Check for and copy trailing dword
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
  __ BIND(L_copy_4_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
    __ testq(byte_count, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
    __ jccb(Assembler::zero, L_copy_2_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
    __ movl(rax, Address(end_from, 8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
    __ movl(Address(end_to, 8), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
    __ addq(end_from, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
    __ addq(end_to, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
    // Check for and copy trailing word
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
  __ BIND(L_copy_2_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
    __ testq(byte_count, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
    __ jccb(Assembler::zero, L_copy_byte);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
    __ movw(rax, Address(end_from, 8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
    __ movw(Address(end_to, 8), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
    __ addq(end_from, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
    __ addq(end_to, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
    // Check for and copy trailing byte
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
  __ BIND(L_copy_byte);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
    __ testq(byte_count, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
    __ jccb(Assembler::zero, L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
    __ movb(rax, Address(end_from, 8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
    __ movb(Address(end_to, 8), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
  __ BIND(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
    inc_counter_np(SharedRuntime::_jbyte_array_copy_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
    restore_arg_regs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
    __ xorq(rax, rax); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
    __ leave(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
    // Copy in 32-bytes chunks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
    copy_32_bytes_forward(end_from, end_to, qword_count, rax, L_copy_32_bytes, L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
    __ jmp(L_copy_4_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
  // Arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
  //   aligned - true => Input and output aligned on a HeapWord == 8-byte boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
  //             ignored
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
  //   name    - stub name string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
  // Inputs:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
  //   c_rarg0   - source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
  //   c_rarg1   - destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
  //   c_rarg2   - element count, treated as ssize_t, can be zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
  // If 'from' and/or 'to' are aligned on 4-, 2-, or 1-byte boundaries,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
  // we let the hardware handle it.  The one to eight bytes within words,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
  // dwords or qwords that span cache line boundaries will still be loaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
  // and stored atomically.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1437
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1438
  address generate_conjoint_byte_copy(bool aligned, const char *name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
    Label L_copy_32_bytes, L_copy_8_bytes, L_copy_4_bytes, L_copy_2_bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
    const Register from        = rdi;  // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
    const Register to          = rsi;  // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
    const Register count       = rdx;  // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
    const Register byte_count  = rcx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
    const Register qword_count = count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
    __ enter(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
    assert_clean_int(c_rarg2, rax);    // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
    byte_copy_entry = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
    BLOCK_COMMENT("Entry:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
    // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
    array_overlap_test(disjoint_byte_copy_entry, Address::times_1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
    setup_arg_regs(); // from => rdi, to => rsi, count => rdx
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
                      // r9 and r10 may be used to save non-volatile registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
    // 'from', 'to' and 'count' are now valid
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
    __ movq(byte_count, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
    __ shrq(count, 3);   // count => qword_count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
    // Copy from high to low addresses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
    // Check for and copy trailing byte
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
    __ testq(byte_count, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
    __ jcc(Assembler::zero, L_copy_2_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
    __ movb(rax, Address(from, byte_count, Address::times_1, -1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
    __ movb(Address(to, byte_count, Address::times_1, -1), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
    __ decrementq(byte_count); // Adjust for possible trailing word
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
    // Check for and copy trailing word
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
  __ BIND(L_copy_2_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
    __ testq(byte_count, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
    __ jcc(Assembler::zero, L_copy_4_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
    __ movw(rax, Address(from, byte_count, Address::times_1, -2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
    __ movw(Address(to, byte_count, Address::times_1, -2), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
    // Check for and copy trailing dword
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
  __ BIND(L_copy_4_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
    __ testq(byte_count, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
    __ jcc(Assembler::zero, L_copy_32_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
    __ movl(rax, Address(from, qword_count, Address::times_8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
    __ movl(Address(to, qword_count, Address::times_8), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
    __ jmp(L_copy_32_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
    // Copy trailing qwords
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
  __ BIND(L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
    __ movq(rax, Address(from, qword_count, Address::times_8, -8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
    __ movq(Address(to, qword_count, Address::times_8, -8), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
    __ decrementq(qword_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
    __ jcc(Assembler::notZero, L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
    inc_counter_np(SharedRuntime::_jbyte_array_copy_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
    restore_arg_regs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
    __ xorq(rax, rax); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
    __ leave(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
    // Copy in 32-bytes chunks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
    copy_32_bytes_backward(from, to, qword_count, rax, L_copy_32_bytes, L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
    inc_counter_np(SharedRuntime::_jbyte_array_copy_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
    restore_arg_regs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
    __ xorq(rax, rax); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
    __ leave(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1511
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1512
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
  // Arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
  //   aligned - true => Input and output aligned on a HeapWord == 8-byte boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1516
  //             ignored
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
  //   name    - stub name string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
  // Inputs:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1520
  //   c_rarg0   - source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1521
  //   c_rarg1   - destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1522
  //   c_rarg2   - element count, treated as ssize_t, can be zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1523
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1524
  // If 'from' and/or 'to' are aligned on 4- or 2-byte boundaries, we
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1525
  // let the hardware handle it.  The two or four words within dwords
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1526
  // or qwords that span cache line boundaries will still be loaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1527
  // and stored atomically.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1528
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1529
  // Side Effects:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1530
  //   disjoint_short_copy_entry is set to the no-overlap entry point
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1531
  //   used by generate_conjoint_short_copy().
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1532
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1533
  address generate_disjoint_short_copy(bool aligned, const char *name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1534
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1535
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1536
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1537
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1538
    Label L_copy_32_bytes, L_copy_8_bytes, L_copy_4_bytes,L_copy_2_bytes,L_exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1539
    const Register from        = rdi;  // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1540
    const Register to          = rsi;  // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1541
    const Register count       = rdx;  // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1542
    const Register word_count  = rcx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
    const Register qword_count = count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1544
    const Register end_from    = from; // source array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1545
    const Register end_to      = to;   // destination array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1546
    // End pointers are inclusive, and if count is not zero they point
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1547
    // to the last unit copied:  end_to[0] := end_from[0]
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1548
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1549
    __ enter(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1550
    assert_clean_int(c_rarg2, rax);    // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1551
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1552
    disjoint_short_copy_entry = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1553
    BLOCK_COMMENT("Entry:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1554
    // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1555
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1556
    setup_arg_regs(); // from => rdi, to => rsi, count => rdx
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1557
                      // r9 and r10 may be used to save non-volatile registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1558
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1559
    // 'from', 'to' and 'count' are now valid
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
    __ movq(word_count, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
    __ shrq(count, 2); // count => qword_count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1562
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1563
    // Copy from low to high addresses.  Use 'to' as scratch.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1564
    __ leaq(end_from, Address(from, qword_count, Address::times_8, -8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1565
    __ leaq(end_to,   Address(to,   qword_count, Address::times_8, -8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1566
    __ negq(qword_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1567
    __ jmp(L_copy_32_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1568
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1569
    // Copy trailing qwords
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
  __ BIND(L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
    __ movq(rax, Address(end_from, qword_count, Address::times_8, 8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
    __ movq(Address(end_to, qword_count, Address::times_8, 8), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
    __ incrementq(qword_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
    __ jcc(Assembler::notZero, L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
    // Original 'dest' is trashed, so we can't use it as a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
    // base register for a possible trailing word copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
    // Check for and copy trailing dword
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1580
  __ BIND(L_copy_4_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1581
    __ testq(word_count, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1582
    __ jccb(Assembler::zero, L_copy_2_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1583
    __ movl(rax, Address(end_from, 8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1584
    __ movl(Address(end_to, 8), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1585
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1586
    __ addq(end_from, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1587
    __ addq(end_to, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1588
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1589
    // Check for and copy trailing word
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1590
  __ BIND(L_copy_2_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1591
    __ testq(word_count, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1592
    __ jccb(Assembler::zero, L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1593
    __ movw(rax, Address(end_from, 8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1594
    __ movw(Address(end_to, 8), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1595
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1596
  __ BIND(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1597
    inc_counter_np(SharedRuntime::_jshort_array_copy_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1598
    restore_arg_regs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1599
    __ xorq(rax, rax); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1600
    __ leave(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1601
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1602
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1603
    // Copy in 32-bytes chunks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1604
    copy_32_bytes_forward(end_from, end_to, qword_count, rax, L_copy_32_bytes, L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1605
    __ jmp(L_copy_4_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1606
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1607
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1608
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1609
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1610
  // Arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1611
  //   aligned - true => Input and output aligned on a HeapWord == 8-byte boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1612
  //             ignored
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1613
  //   name    - stub name string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1614
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1615
  // Inputs:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1616
  //   c_rarg0   - source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1617
  //   c_rarg1   - destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1618
  //   c_rarg2   - element count, treated as ssize_t, can be zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1619
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1620
  // If 'from' and/or 'to' are aligned on 4- or 2-byte boundaries, we
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1621
  // let the hardware handle it.  The two or four words within dwords
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1622
  // or qwords that span cache line boundaries will still be loaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1623
  // and stored atomically.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1624
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1625
  address generate_conjoint_short_copy(bool aligned, const char *name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1626
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1627
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1628
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1629
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1630
    Label L_copy_32_bytes, L_copy_8_bytes, L_copy_4_bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1631
    const Register from        = rdi;  // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1632
    const Register to          = rsi;  // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1633
    const Register count       = rdx;  // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1634
    const Register word_count  = rcx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1635
    const Register qword_count = count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1636
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1637
    __ enter(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1638
    assert_clean_int(c_rarg2, rax);    // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1639
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1640
    short_copy_entry = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1641
    BLOCK_COMMENT("Entry:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1642
    // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1643
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1644
    array_overlap_test(disjoint_short_copy_entry, Address::times_2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1645
    setup_arg_regs(); // from => rdi, to => rsi, count => rdx
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1646
                      // r9 and r10 may be used to save non-volatile registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1647
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1648
    // 'from', 'to' and 'count' are now valid
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1649
    __ movq(word_count, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1650
    __ shrq(count, 2); // count => qword_count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1651
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1652
    // Copy from high to low addresses.  Use 'to' as scratch.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1653
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1654
    // Check for and copy trailing word
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1655
    __ testq(word_count, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1656
    __ jccb(Assembler::zero, L_copy_4_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1657
    __ movw(rax, Address(from, word_count, Address::times_2, -2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1658
    __ movw(Address(to, word_count, Address::times_2, -2), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1659
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1660
    // Check for and copy trailing dword
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1661
  __ BIND(L_copy_4_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1662
    __ testq(word_count, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1663
    __ jcc(Assembler::zero, L_copy_32_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1664
    __ movl(rax, Address(from, qword_count, Address::times_8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1665
    __ movl(Address(to, qword_count, Address::times_8), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1666
    __ jmp(L_copy_32_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1667
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1668
    // Copy trailing qwords
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1669
  __ BIND(L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1670
    __ movq(rax, Address(from, qword_count, Address::times_8, -8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1671
    __ movq(Address(to, qword_count, Address::times_8, -8), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1672
    __ decrementq(qword_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1673
    __ jcc(Assembler::notZero, L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1674
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1675
    inc_counter_np(SharedRuntime::_jshort_array_copy_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1676
    restore_arg_regs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1677
    __ xorq(rax, rax); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1678
    __ leave(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1679
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1680
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1681
    // Copy in 32-bytes chunks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1682
    copy_32_bytes_backward(from, to, qword_count, rax, L_copy_32_bytes, L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1683
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1684
    inc_counter_np(SharedRuntime::_jshort_array_copy_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1685
    restore_arg_regs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1686
    __ xorq(rax, rax); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1687
    __ leave(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1688
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1689
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1690
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1691
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1692
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1693
  // Arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1694
  //   aligned - true => Input and output aligned on a HeapWord == 8-byte boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1695
  //             ignored
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1696
  //   is_oop  - true => oop array, so generate store check code
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1697
  //   name    - stub name string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1698
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1699
  // Inputs:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1700
  //   c_rarg0   - source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1701
  //   c_rarg1   - destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1702
  //   c_rarg2   - element count, treated as ssize_t, can be zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1703
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1704
  // If 'from' and/or 'to' are aligned on 4-byte boundaries, we let
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1705
  // the hardware handle it.  The two dwords within qwords that span
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1706
  // cache line boundaries will still be loaded and stored atomicly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1707
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1708
  // Side Effects:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1709
  //   disjoint_int_copy_entry is set to the no-overlap entry point
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1710
  //   used by generate_conjoint_int_oop_copy().
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1711
  //
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1712
  address generate_disjoint_int_oop_copy(bool aligned, bool is_oop, const char *name) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1713
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1714
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1715
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1716
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1717
    Label L_copy_32_bytes, L_copy_8_bytes, L_copy_4_bytes, L_exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1718
    const Register from        = rdi;  // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1719
    const Register to          = rsi;  // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1720
    const Register count       = rdx;  // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1721
    const Register dword_count = rcx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1722
    const Register qword_count = count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1723
    const Register end_from    = from; // source array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1724
    const Register end_to      = to;   // destination array end address
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1725
    const Register saved_to    = r11;  // saved destination array address
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1726
    // End pointers are inclusive, and if count is not zero they point
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1727
    // to the last unit copied:  end_to[0] := end_from[0]
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1728
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1729
    __ enter(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1730
    assert_clean_int(c_rarg2, rax);    // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1731
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1732
    (is_oop ? disjoint_oop_copy_entry : disjoint_int_copy_entry) = __ pc();
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1733
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1734
    if (is_oop) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1735
      // no registers are destroyed by this call
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1736
      gen_write_ref_array_pre_barrier(/* dest */ c_rarg1, /* count */ c_rarg2);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1737
    }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1738
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1739
    BLOCK_COMMENT("Entry:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1740
    // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1741
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1742
    setup_arg_regs(); // from => rdi, to => rsi, count => rdx
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1743
                      // r9 and r10 may be used to save non-volatile registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1744
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1745
    if (is_oop) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1746
      __ movq(saved_to, to);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1747
    }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1748
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1749
    // 'from', 'to' and 'count' are now valid
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1750
    __ movq(dword_count, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1751
    __ shrq(count, 1); // count => qword_count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1752
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1753
    // Copy from low to high addresses.  Use 'to' as scratch.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1754
    __ leaq(end_from, Address(from, qword_count, Address::times_8, -8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1755
    __ leaq(end_to,   Address(to,   qword_count, Address::times_8, -8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1756
    __ negq(qword_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1757
    __ jmp(L_copy_32_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1758
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1759
    // Copy trailing qwords
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1760
  __ BIND(L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1761
    __ movq(rax, Address(end_from, qword_count, Address::times_8, 8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1762
    __ movq(Address(end_to, qword_count, Address::times_8, 8), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1763
    __ incrementq(qword_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1764
    __ jcc(Assembler::notZero, L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1765
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1766
    // Check for and copy trailing dword
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1767
  __ BIND(L_copy_4_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1768
    __ testq(dword_count, 1); // Only byte test since the value is 0 or 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1769
    __ jccb(Assembler::zero, L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1770
    __ movl(rax, Address(end_from, 8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1771
    __ movl(Address(end_to, 8), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1772
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1773
  __ BIND(L_exit);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1774
    if (is_oop) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1775
      __ leaq(end_to, Address(saved_to, dword_count, Address::times_4, -4));
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1776
      gen_write_ref_array_post_barrier(saved_to, end_to, rax);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1777
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1778
    inc_counter_np(SharedRuntime::_jint_array_copy_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1779
    restore_arg_regs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1780
    __ xorq(rax, rax); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1781
    __ leave(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1782
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1783
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1784
    // Copy 32-bytes chunks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1785
    copy_32_bytes_forward(end_from, end_to, qword_count, rax, L_copy_32_bytes, L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1786
    __ jmp(L_copy_4_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1787
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1788
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1789
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1790
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1791
  // Arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1792
  //   aligned - true => Input and output aligned on a HeapWord == 8-byte boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1793
  //             ignored
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1794
  //   is_oop  - true => oop array, so generate store check code
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1795
  //   name    - stub name string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1796
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1797
  // Inputs:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1798
  //   c_rarg0   - source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1799
  //   c_rarg1   - destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1800
  //   c_rarg2   - element count, treated as ssize_t, can be zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1801
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1802
  // If 'from' and/or 'to' are aligned on 4-byte boundaries, we let
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1803
  // the hardware handle it.  The two dwords within qwords that span
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1804
  // cache line boundaries will still be loaded and stored atomicly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1805
  //
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1806
  address generate_conjoint_int_oop_copy(bool aligned, bool is_oop, const char *name) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1807
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1808
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1809
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1810
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1811
    Label L_copy_32_bytes, L_copy_8_bytes, L_copy_2_bytes, L_exit;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1812
    const Register from        = rdi;  // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1813
    const Register to          = rsi;  // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1814
    const Register count       = rdx;  // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1815
    const Register dword_count = rcx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1816
    const Register qword_count = count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1817
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1818
    __ enter(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1819
    assert_clean_int(c_rarg2, rax);    // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1820
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1821
    if (is_oop) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1822
      // no registers are destroyed by this call
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1823
      gen_write_ref_array_pre_barrier(/* dest */ c_rarg1, /* count */ c_rarg2);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1824
    }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1825
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1826
    (is_oop ? oop_copy_entry : int_copy_entry) = __ pc();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1827
    BLOCK_COMMENT("Entry:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1828
    // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1829
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1830
    array_overlap_test(is_oop ? disjoint_oop_copy_entry : disjoint_int_copy_entry,
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1831
                       Address::times_4);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1832
    setup_arg_regs(); // from => rdi, to => rsi, count => rdx
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1833
                      // r9 and r10 may be used to save non-volatile registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1834
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1835
    assert_clean_int(count, rax); // Make sure 'count' is clean int.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1836
    // 'from', 'to' and 'count' are now valid
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1837
    __ movq(dword_count, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1838
    __ shrq(count, 1); // count => qword_count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1839
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1840
    // Copy from high to low addresses.  Use 'to' as scratch.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1841
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1842
    // Check for and copy trailing dword
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1843
    __ testq(dword_count, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1844
    __ jcc(Assembler::zero, L_copy_32_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1845
    __ movl(rax, Address(from, dword_count, Address::times_4, -4));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1846
    __ movl(Address(to, dword_count, Address::times_4, -4), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1847
    __ jmp(L_copy_32_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1848
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1849
    // Copy trailing qwords
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1850
  __ BIND(L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1851
    __ movq(rax, Address(from, qword_count, Address::times_8, -8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1852
    __ movq(Address(to, qword_count, Address::times_8, -8), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1853
    __ decrementq(qword_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1854
    __ jcc(Assembler::notZero, L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1855
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1856
    inc_counter_np(SharedRuntime::_jint_array_copy_ctr);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1857
    if (is_oop) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1858
      __ jmp(L_exit);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1859
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1860
    restore_arg_regs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1861
    __ xorq(rax, rax); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1862
    __ leave(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1863
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1864
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1865
    // Copy in 32-bytes chunks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1866
    copy_32_bytes_backward(from, to, qword_count, rax, L_copy_32_bytes, L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1867
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1868
   inc_counter_np(SharedRuntime::_jint_array_copy_ctr);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1869
   __ bind(L_exit);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1870
     if (is_oop) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1871
       Register end_to = rdx;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1872
       __ leaq(end_to, Address(to, dword_count, Address::times_4, -4));
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1873
       gen_write_ref_array_post_barrier(to, end_to, rax);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1874
     }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1875
    restore_arg_regs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1876
    __ xorq(rax, rax); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1877
    __ leave(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1878
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1879
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1880
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1881
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1882
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1883
  // Arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1884
  //   aligned - true => Input and output aligned on a HeapWord boundary == 8 bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1885
  //             ignored
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1886
  //   is_oop  - true => oop array, so generate store check code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1887
  //   name    - stub name string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1888
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1889
  // Inputs:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1890
  //   c_rarg0   - source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1891
  //   c_rarg1   - destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1892
  //   c_rarg2   - element count, treated as ssize_t, can be zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1893
  //
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1894
 // Side Effects:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1895
  //   disjoint_oop_copy_entry or disjoint_long_copy_entry is set to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1896
  //   no-overlap entry point used by generate_conjoint_long_oop_copy().
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1897
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1898
  address generate_disjoint_long_oop_copy(bool aligned, bool is_oop, const char *name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1899
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1900
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1901
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1902
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1903
    Label L_copy_32_bytes, L_copy_8_bytes, L_exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1904
    const Register from        = rdi;  // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1905
    const Register to          = rsi;  // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1906
    const Register qword_count = rdx;  // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1907
    const Register end_from    = from; // source array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1908
    const Register end_to      = rcx;  // destination array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1909
    const Register saved_to    = to;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1910
    // End pointers are inclusive, and if count is not zero they point
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1911
    // to the last unit copied:  end_to[0] := end_from[0]
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1912
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1913
    __ enter(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1914
    // Save no-overlap entry point for generate_conjoint_long_oop_copy()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1915
    assert_clean_int(c_rarg2, rax);    // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1916
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1917
    if (is_oop) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1918
      disjoint_oop_copy_entry  = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1919
      // no registers are destroyed by this call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1920
      gen_write_ref_array_pre_barrier(/* dest */ c_rarg1, /* count */ c_rarg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1921
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1922
      disjoint_long_copy_entry = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1923
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1924
    BLOCK_COMMENT("Entry:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1925
    // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1926
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1927
    setup_arg_regs(); // from => rdi, to => rsi, count => rdx
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1928
                      // r9 and r10 may be used to save non-volatile registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1929
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1930
    // 'from', 'to' and 'qword_count' are now valid
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1931
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1932
    // Copy from low to high addresses.  Use 'to' as scratch.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1933
    __ leaq(end_from, Address(from, qword_count, Address::times_8, -8));
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1934
    __ leaq(end_to,   Address(to,   qword_count, Address::times_8, -8));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1935
    __ negq(qword_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1936
    __ jmp(L_copy_32_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1937
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1938
    // Copy trailing qwords
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1939
  __ BIND(L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1940
    __ movq(rax, Address(end_from, qword_count, Address::times_8, 8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1941
    __ movq(Address(end_to, qword_count, Address::times_8, 8), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1942
    __ incrementq(qword_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1943
    __ jcc(Assembler::notZero, L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1944
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1945
    if (is_oop) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1946
      __ jmp(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1947
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1948
      inc_counter_np(SharedRuntime::_jlong_array_copy_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1949
      restore_arg_regs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1950
      __ xorq(rax, rax); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1951
      __ leave(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1952
      __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1953
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1954
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1955
    // Copy 64-byte chunks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1956
    copy_32_bytes_forward(end_from, end_to, qword_count, rax, L_copy_32_bytes, L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1957
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1958
    if (is_oop) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1959
    __ BIND(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1960
      gen_write_ref_array_post_barrier(saved_to, end_to, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1961
      inc_counter_np(SharedRuntime::_oop_array_copy_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1962
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1963
      inc_counter_np(SharedRuntime::_jlong_array_copy_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1964
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1965
    restore_arg_regs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1966
    __ xorq(rax, rax); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1967
    __ leave(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1968
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1969
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1970
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1971
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1972
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1973
  // Arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1974
  //   aligned - true => Input and output aligned on a HeapWord boundary == 8 bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1975
  //             ignored
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1976
  //   is_oop  - true => oop array, so generate store check code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1977
  //   name    - stub name string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1978
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1979
  // Inputs:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1980
  //   c_rarg0   - source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1981
  //   c_rarg1   - destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1982
  //   c_rarg2   - element count, treated as ssize_t, can be zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1983
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1984
  address generate_conjoint_long_oop_copy(bool aligned, bool is_oop, const char *name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1985
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1986
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1987
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1988
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1989
    Label L_copy_32_bytes, L_copy_8_bytes, L_exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1990
    const Register from        = rdi;  // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1991
    const Register to          = rsi;  // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1992
    const Register qword_count = rdx;  // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1993
    const Register saved_count = rcx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1994
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1995
    __ enter(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1996
    assert_clean_int(c_rarg2, rax);    // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1997
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1998
    address disjoint_copy_entry = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1999
    if (is_oop) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2000
      assert(!UseCompressedOops, "shouldn't be called for compressed oops");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2001
      disjoint_copy_entry = disjoint_oop_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2002
      oop_copy_entry  = __ pc();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2003
      array_overlap_test(disjoint_oop_copy_entry, Address::times_8);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2004
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2005
      disjoint_copy_entry = disjoint_long_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2006
      long_copy_entry = __ pc();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2007
      array_overlap_test(disjoint_long_copy_entry, Address::times_8);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2008
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2009
    BLOCK_COMMENT("Entry:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2010
    // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2011
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2012
    array_overlap_test(disjoint_copy_entry, Address::times_8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2013
    setup_arg_regs(); // from => rdi, to => rsi, count => rdx
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2014
                      // r9 and r10 may be used to save non-volatile registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2015
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2016
    // 'from', 'to' and 'qword_count' are now valid
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2017
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2018
    if (is_oop) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2019
      // Save to and count for store barrier
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2020
      __ movq(saved_count, qword_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2021
      // No registers are destroyed by this call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2022
      gen_write_ref_array_pre_barrier(to, saved_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2023
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2024
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2025
    __ jmp(L_copy_32_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2026
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2027
    // Copy trailing qwords
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2028
  __ BIND(L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2029
    __ movq(rax, Address(from, qword_count, Address::times_8, -8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2030
    __ movq(Address(to, qword_count, Address::times_8, -8), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2031
    __ decrementq(qword_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2032
    __ jcc(Assembler::notZero, L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2033
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2034
    if (is_oop) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2035
      __ jmp(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2036
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2037
      inc_counter_np(SharedRuntime::_jlong_array_copy_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2038
      restore_arg_regs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2039
      __ xorq(rax, rax); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2040
      __ leave(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2041
      __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2042
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2043
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2044
    // Copy in 32-bytes chunks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2045
    copy_32_bytes_backward(from, to, qword_count, rax, L_copy_32_bytes, L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2046
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2047
    if (is_oop) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2048
    __ BIND(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2049
      __ leaq(rcx, Address(to, saved_count, Address::times_8, -8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2050
      gen_write_ref_array_post_barrier(to, rcx, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2051
      inc_counter_np(SharedRuntime::_oop_array_copy_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2052
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2053
      inc_counter_np(SharedRuntime::_jlong_array_copy_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2054
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2055
    restore_arg_regs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2056
    __ xorq(rax, rax); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2057
    __ leave(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2058
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2059
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2060
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2061
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2062
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2063
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2064
  // Helper for generating a dynamic type check.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2065
  // Smashes no registers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2066
  void generate_type_check(Register sub_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2067
                           Register super_check_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2068
                           Register super_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2069
                           Label& L_success) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2070
    assert_different_registers(sub_klass, super_check_offset, super_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2071
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2072
    BLOCK_COMMENT("type_check:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2073
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2074
    Label L_miss;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2075
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2076
    // a couple of useful fields in sub_klass:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2077
    int ss_offset = (klassOopDesc::header_size() * HeapWordSize +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2078
                     Klass::secondary_supers_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2079
    int sc_offset = (klassOopDesc::header_size() * HeapWordSize +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2080
                     Klass::secondary_super_cache_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2081
    Address secondary_supers_addr(sub_klass, ss_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2082
    Address super_cache_addr(     sub_klass, sc_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2083
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2084
    // if the pointers are equal, we are done (e.g., String[] elements)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2085
    __ cmpq(super_klass, sub_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2086
    __ jcc(Assembler::equal, L_success);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2087
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2088
    // check the supertype display:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2089
    Address super_check_addr(sub_klass, super_check_offset, Address::times_1, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2090
    __ cmpq(super_klass, super_check_addr); // test the super type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2091
    __ jcc(Assembler::equal, L_success);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2092
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2093
    // if it was a primary super, we can just fail immediately
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2094
    __ cmpl(super_check_offset, sc_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2095
    __ jcc(Assembler::notEqual, L_miss);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2096
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2097
    // Now do a linear scan of the secondary super-klass chain.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2098
    // The repne_scan instruction uses fixed registers, which we must spill.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2099
    // (We need a couple more temps in any case.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2100
    // This code is rarely used, so simplicity is a virtue here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2101
    inc_counter_np(SharedRuntime::_partial_subtype_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2102
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2103
      __ pushq(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2104
      __ pushq(rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2105
      __ pushq(rdi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2106
      assert_different_registers(sub_klass, super_klass, rax, rcx, rdi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2107
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2108
      __ movq(rdi, secondary_supers_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2109
      // Load the array length.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2110
      __ movl(rcx, Address(rdi, arrayOopDesc::length_offset_in_bytes()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2111
      // Skip to start of data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2112
      __ addq(rdi, arrayOopDesc::base_offset_in_bytes(T_OBJECT));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2113
      // Scan rcx words at [rdi] for occurance of rax
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2114
      // Set NZ/Z based on last compare
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2115
      __ movq(rax, super_klass);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2116
      if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2117
        // Compare against compressed form.  Don't need to uncompress because
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2118
        // looks like orig rax is restored in popq below.
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2119
        __ encode_heap_oop(rax);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2120
        __ repne_scanl();
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2121
      } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2122
         __ repne_scanq();
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2123
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2124
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2125
      // Unspill the temp. registers:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2126
      __ popq(rdi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2127
      __ popq(rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2128
      __ popq(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2129
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2130
      __ jcc(Assembler::notEqual, L_miss);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2131
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2132
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2133
    // Success.  Cache the super we found and proceed in triumph.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2134
    __ movq(super_cache_addr, super_klass); // note: rax is dead
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2135
    __ jmp(L_success);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2136
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2137
    // Fall through on failure!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2138
    __ BIND(L_miss);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2139
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2140
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2141
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2142
  //  Generate checkcasting array copy stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2143
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2144
  //  Input:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2145
  //    c_rarg0   - source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2146
  //    c_rarg1   - destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2147
  //    c_rarg2   - element count, treated as ssize_t, can be zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2148
  //    c_rarg3   - size_t ckoff (super_check_offset)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2149
  // not Win64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2150
  //    c_rarg4   - oop ckval (super_klass)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2151
  // Win64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2152
  //    rsp+40    - oop ckval (super_klass)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2153
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2154
  //  Output:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2155
  //    rax ==  0  -  success
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2156
  //    rax == -1^K - failure, where K is partial transfer count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2157
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2158
  address generate_checkcast_copy(const char *name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2159
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2160
    Label L_load_element, L_store_element, L_do_card_marks, L_done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2161
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2162
    // Input registers (after setup_arg_regs)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2163
    const Register from        = rdi;   // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2164
    const Register to          = rsi;   // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2165
    const Register length      = rdx;   // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2166
    const Register ckoff       = rcx;   // super_check_offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2167
    const Register ckval       = r8;    // super_klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2168
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2169
    // Registers used as temps (r13, r14 are save-on-entry)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2170
    const Register end_from    = from;  // source array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2171
    const Register end_to      = r13;   // destination array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2172
    const Register count       = rdx;   // -(count_remaining)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2173
    const Register r14_length  = r14;   // saved copy of length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2174
    // End pointers are inclusive, and if length is not zero they point
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2175
    // to the last unit copied:  end_to[0] := end_from[0]
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2176
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2177
    const Register rax_oop    = rax;    // actual oop copied
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2178
    const Register r11_klass  = r11;    // oop._klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2179
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2180
    //---------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2181
    // Assembler stub will be used for this call to arraycopy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2182
    // if the two arrays are subtypes of Object[] but the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2183
    // destination array type is not equal to or a supertype
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2184
    // of the source type.  Each element must be separately
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2185
    // checked.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2186
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2187
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2188
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2189
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2190
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2191
    __ enter(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2192
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2193
    checkcast_copy_entry  = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2194
    BLOCK_COMMENT("Entry:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2195
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2196
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2197
    // caller guarantees that the arrays really are different
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2198
    // otherwise, we would have to make conjoint checks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2199
    { Label L;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2200
      array_overlap_test(L, TIMES_OOP);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2201
      __ stop("checkcast_copy within a single array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2202
      __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2203
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2204
#endif //ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2205
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2206
    // allocate spill slots for r13, r14
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2207
    enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2208
      saved_r13_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2209
      saved_r14_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2210
      saved_rbp_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2211
      saved_rip_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2212
      saved_rarg0_offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2213
    };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2214
    __ subq(rsp, saved_rbp_offset * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2215
    __ movq(Address(rsp, saved_r13_offset * wordSize), r13);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2216
    __ movq(Address(rsp, saved_r14_offset * wordSize), r14);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2217
    setup_arg_regs(4); // from => rdi, to => rsi, length => rdx
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2218
                       // ckoff => rcx, ckval => r8
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2219
                       // r9 and r10 may be used to save non-volatile registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2220
#ifdef _WIN64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2221
    // last argument (#4) is on stack on Win64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2222
    const int ckval_offset = saved_rarg0_offset + 4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2223
    __ movq(ckval, Address(rsp, ckval_offset * wordSize));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2224
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2225
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2226
    // check that int operands are properly extended to size_t
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2227
    assert_clean_int(length, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2228
    assert_clean_int(ckoff, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2229
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2230
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2231
    BLOCK_COMMENT("assert consistent ckoff/ckval");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2232
    // The ckoff and ckval must be mutually consistent,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2233
    // even though caller generates both.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2234
    { Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2235
      int sco_offset = (klassOopDesc::header_size() * HeapWordSize +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2236
                        Klass::super_check_offset_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2237
      __ cmpl(ckoff, Address(ckval, sco_offset));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2238
      __ jcc(Assembler::equal, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2239
      __ stop("super_check_offset inconsistent");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2240
      __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2241
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2242
#endif //ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2243
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2244
    // Loop-invariant addresses.  They are exclusive end pointers.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2245
    Address end_from_addr(from, length, TIMES_OOP, 0);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2246
    Address   end_to_addr(to,   length, TIMES_OOP, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2247
    // Loop-variant addresses.  They assume post-incremented count < 0.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2248
    Address from_element_addr(end_from, count, TIMES_OOP, 0);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2249
    Address   to_element_addr(end_to,   count, TIMES_OOP, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2250
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2251
    gen_write_ref_array_pre_barrier(to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2252
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2253
    // Copy from low to high addresses, indexed from the end of each array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2254
    __ leaq(end_from, end_from_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2255
    __ leaq(end_to,   end_to_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2256
    __ movq(r14_length, length);        // save a copy of the length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2257
    assert(length == count, "");        // else fix next line:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2258
    __ negq(count);                     // negate and test the length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2259
    __ jcc(Assembler::notZero, L_load_element);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2260
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2261
    // Empty array:  Nothing to do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2262
    __ xorq(rax, rax);                  // return 0 on (trivial) success
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2263
    __ jmp(L_done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2264
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2265
    // ======== begin loop ========
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2266
    // (Loop is rotated; its entry is L_load_element.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2267
    // Loop control:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2268
    //   for (count = -count; count != 0; count++)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2269
    // Base pointers src, dst are biased by 8*(count-1),to last element.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2270
    __ align(16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2271
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2272
    __ BIND(L_store_element);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2273
    __ store_heap_oop(to_element_addr, rax_oop);  // store the oop
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2274
    __ incrementq(count);               // increment the count toward zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2275
    __ jcc(Assembler::zero, L_do_card_marks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2276
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2277
    // ======== loop entry is here ========
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2278
    __ BIND(L_load_element);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2279
    __ load_heap_oop(rax_oop, from_element_addr); // load the oop
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2280
    __ testq(rax_oop, rax_oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2281
    __ jcc(Assembler::zero, L_store_element);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2282
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2283
    __ load_klass(r11_klass, rax_oop);// query the object klass
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2284
    generate_type_check(r11_klass, ckoff, ckval, L_store_element);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2285
    // ======== end loop ========
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2286
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2287
    // It was a real error; we must depend on the caller to finish the job.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2288
    // Register rdx = -1 * number of *remaining* oops, r14 = *total* oops.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2289
    // Emit GC store barriers for the oops we have copied (r14 + rdx),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2290
    // and report their number to the caller.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2291
    assert_different_registers(rax, r14_length, count, to, end_to, rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2292
    __ leaq(end_to, to_element_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2293
    gen_write_ref_array_post_barrier(to, end_to, rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2294
    __ movq(rax, r14_length);           // original oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2295
    __ addq(rax, count);                // K = (original - remaining) oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2296
    __ notq(rax);                       // report (-1^K) to caller
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2297
    __ jmp(L_done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2298
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2299
    // Come here on success only.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2300
    __ BIND(L_do_card_marks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2301
    __ addq(end_to, -wordSize);         // make an inclusive end pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2302
    gen_write_ref_array_post_barrier(to, end_to, rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2303
    __ xorq(rax, rax);                  // return 0 on success
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2304
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2305
    // Common exit point (success or failure).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2306
    __ BIND(L_done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2307
    __ movq(r13, Address(rsp, saved_r13_offset * wordSize));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2308
    __ movq(r14, Address(rsp, saved_r14_offset * wordSize));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2309
    inc_counter_np(SharedRuntime::_checkcast_array_copy_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2310
    restore_arg_regs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2311
    __ leave(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2312
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2313
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2314
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2315
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2316
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2317
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2318
  //  Generate 'unsafe' array copy stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2319
  //  Though just as safe as the other stubs, it takes an unscaled
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2320
  //  size_t argument instead of an element count.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2321
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2322
  //  Input:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2323
  //    c_rarg0   - source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2324
  //    c_rarg1   - destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2325
  //    c_rarg2   - byte count, treated as ssize_t, can be zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2326
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2327
  // Examines the alignment of the operands and dispatches
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2328
  // to a long, int, short, or byte copy loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2329
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2330
  address generate_unsafe_copy(const char *name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2331
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2332
    Label L_long_aligned, L_int_aligned, L_short_aligned;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2333
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2334
    // Input registers (before setup_arg_regs)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2335
    const Register from        = c_rarg0;  // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2336
    const Register to          = c_rarg1;  // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2337
    const Register size        = c_rarg2;  // byte count (size_t)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2338
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2339
    // Register used as a temp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2340
    const Register bits        = rax;      // test copy of low bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2341
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2342
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2343
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2344
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2345
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2346
    __ enter(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2347
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2348
    // bump this on entry, not on exit:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2349
    inc_counter_np(SharedRuntime::_unsafe_array_copy_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2350
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2351
    __ movq(bits, from);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2352
    __ orq(bits, to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2353
    __ orq(bits, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2354
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2355
    __ testb(bits, BytesPerLong-1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2356
    __ jccb(Assembler::zero, L_long_aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2357
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2358
    __ testb(bits, BytesPerInt-1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2359
    __ jccb(Assembler::zero, L_int_aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2360
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2361
    __ testb(bits, BytesPerShort-1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2362
    __ jump_cc(Assembler::notZero, RuntimeAddress(byte_copy_entry));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2363
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2364
    __ BIND(L_short_aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2365
    __ shrq(size, LogBytesPerShort); // size => short_count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2366
    __ jump(RuntimeAddress(short_copy_entry));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2367
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2368
    __ BIND(L_int_aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2369
    __ shrq(size, LogBytesPerInt); // size => int_count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2370
    __ jump(RuntimeAddress(int_copy_entry));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2371
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2372
    __ BIND(L_long_aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2373
    __ shrq(size, LogBytesPerLong); // size => qword_count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2374
    __ jump(RuntimeAddress(long_copy_entry));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2375
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2376
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2377
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2378
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2379
  // Perform range checks on the proposed arraycopy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2380
  // Kills temp, but nothing else.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2381
  // Also, clean the sign bits of src_pos and dst_pos.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2382
  void arraycopy_range_checks(Register src,     // source array oop (c_rarg0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2383
                              Register src_pos, // source position (c_rarg1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2384
                              Register dst,     // destination array oo (c_rarg2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2385
                              Register dst_pos, // destination position (c_rarg3)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2386
                              Register length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2387
                              Register temp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2388
                              Label& L_failed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2389
    BLOCK_COMMENT("arraycopy_range_checks:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2390
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2391
    //  if (src_pos + length > arrayOop(src)->length())  FAIL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2392
    __ movl(temp, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2393
    __ addl(temp, src_pos);             // src_pos + length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2394
    __ cmpl(temp, Address(src, arrayOopDesc::length_offset_in_bytes()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2395
    __ jcc(Assembler::above, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2396
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2397
    //  if (dst_pos + length > arrayOop(dst)->length())  FAIL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2398
    __ movl(temp, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2399
    __ addl(temp, dst_pos);             // dst_pos + length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2400
    __ cmpl(temp, Address(dst, arrayOopDesc::length_offset_in_bytes()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2401
    __ jcc(Assembler::above, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2402
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2403
    // Have to clean up high 32-bits of 'src_pos' and 'dst_pos'.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2404
    // Move with sign extension can be used since they are positive.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2405
    __ movslq(src_pos, src_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2406
    __ movslq(dst_pos, dst_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2407
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2408
    BLOCK_COMMENT("arraycopy_range_checks done");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2409
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2410
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2411
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2412
  //  Generate generic array copy stubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2413
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2414
  //  Input:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2415
  //    c_rarg0    -  src oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2416
  //    c_rarg1    -  src_pos (32-bits)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2417
  //    c_rarg2    -  dst oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2418
  //    c_rarg3    -  dst_pos (32-bits)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2419
  // not Win64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2420
  //    c_rarg4    -  element count (32-bits)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2421
  // Win64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2422
  //    rsp+40     -  element count (32-bits)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2423
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2424
  //  Output:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2425
  //    rax ==  0  -  success
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2426
  //    rax == -1^K - failure, where K is partial transfer count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2427
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2428
  address generate_generic_copy(const char *name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2429
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2430
    Label L_failed, L_failed_0, L_objArray;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2431
    Label L_copy_bytes, L_copy_shorts, L_copy_ints, L_copy_longs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2432
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2433
    // Input registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2434
    const Register src        = c_rarg0;  // source array oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2435
    const Register src_pos    = c_rarg1;  // source position
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2436
    const Register dst        = c_rarg2;  // destination array oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2437
    const Register dst_pos    = c_rarg3;  // destination position
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2438
    // elements count is on stack on Win64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2439
#ifdef _WIN64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2440
#define C_RARG4 Address(rsp, 6 * wordSize)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2441
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2442
#define C_RARG4 c_rarg4
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2443
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2444
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2445
    { int modulus = CodeEntryAlignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2446
      int target  = modulus - 5; // 5 = sizeof jmp(L_failed)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2447
      int advance = target - (__ offset() % modulus);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2448
      if (advance < 0)  advance += modulus;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2449
      if (advance > 0)  __ nop(advance);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2450
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2451
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2452
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2453
    // Short-hop target to L_failed.  Makes for denser prologue code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2454
    __ BIND(L_failed_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2455
    __ jmp(L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2456
    assert(__ offset() % CodeEntryAlignment == 0, "no further alignment needed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2457
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2458
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2459
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2460
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2461
    __ enter(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2462
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2463
    // bump this on entry, not on exit:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2464
    inc_counter_np(SharedRuntime::_generic_array_copy_ctr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2465
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2466
    //-----------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2467
    // Assembler stub will be used for this call to arraycopy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2468
    // if the following conditions are met:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2469
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2470
    // (1) src and dst must not be null.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2471
    // (2) src_pos must not be negative.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2472
    // (3) dst_pos must not be negative.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2473
    // (4) length  must not be negative.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2474
    // (5) src klass and dst klass should be the same and not NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2475
    // (6) src and dst should be arrays.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2476
    // (7) src_pos + length must not exceed length of src.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2477
    // (8) dst_pos + length must not exceed length of dst.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2478
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2479
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2480
    //  if (src == NULL) return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2481
    __ testq(src, src);         // src oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2482
    size_t j1off = __ offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2483
    __ jccb(Assembler::zero, L_failed_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2484
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2485
    //  if (src_pos < 0) return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2486
    __ testl(src_pos, src_pos); // src_pos (32-bits)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2487
    __ jccb(Assembler::negative, L_failed_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2488
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2489
    //  if (dst == NULL) return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2490
    __ testq(dst, dst);         // dst oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2491
    __ jccb(Assembler::zero, L_failed_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2492
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2493
    //  if (dst_pos < 0) return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2494
    __ testl(dst_pos, dst_pos); // dst_pos (32-bits)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2495
    size_t j4off = __ offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2496
    __ jccb(Assembler::negative, L_failed_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2497
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2498
    // The first four tests are very dense code,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2499
    // but not quite dense enough to put four
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2500
    // jumps in a 16-byte instruction fetch buffer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2501
    // That's good, because some branch predicters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2502
    // do not like jumps so close together.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2503
    // Make sure of this.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2504
    guarantee(((j1off ^ j4off) & ~15) != 0, "I$ line of 1st & 4th jumps");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2505
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2506
    // registers used as temp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2507
    const Register r11_length    = r11; // elements count to copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2508
    const Register r10_src_klass = r10; // array klass
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2509
    const Register r9_dst_klass  = r9;  // dest array klass
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2510
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2511
    //  if (length < 0) return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2512
    __ movl(r11_length, C_RARG4);       // length (elements count, 32-bits value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2513
    __ testl(r11_length, r11_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2514
    __ jccb(Assembler::negative, L_failed_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2515
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2516
    __ load_klass(r10_src_klass, src);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2517
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2518
    //  assert(src->klass() != NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2519
    BLOCK_COMMENT("assert klasses not null");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2520
    { Label L1, L2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2521
      __ testq(r10_src_klass, r10_src_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2522
      __ jcc(Assembler::notZero, L2);   // it is broken if klass is NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2523
      __ bind(L1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2524
      __ stop("broken null klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2525
      __ bind(L2);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2526
      __ load_klass(r9_dst_klass, dst);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2527
      __ cmpq(r9_dst_klass, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2528
      __ jcc(Assembler::equal, L1);     // this would be broken also
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2529
      BLOCK_COMMENT("assert done");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2530
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2531
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2532
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2533
    // Load layout helper (32-bits)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2534
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2535
    //  |array_tag|     | header_size | element_type |     |log2_element_size|
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2536
    // 32        30    24            16              8     2                 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2537
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2538
    //   array_tag: typeArray = 0x3, objArray = 0x2, non-array = 0x0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2539
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2540
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2541
    int lh_offset = klassOopDesc::header_size() * HeapWordSize +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2542
                    Klass::layout_helper_offset_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2543
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2544
    const Register rax_lh = rax;  // layout helper
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2545
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2546
    __ movl(rax_lh, Address(r10_src_klass, lh_offset));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2547
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2548
    // Handle objArrays completely differently...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2549
    jint objArray_lh = Klass::array_layout_helper(T_OBJECT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2550
    __ cmpl(rax_lh, objArray_lh);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2551
    __ jcc(Assembler::equal, L_objArray);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2552
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2553
    //  if (src->klass() != dst->klass()) return -1;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2554
    __ load_klass(r9_dst_klass, dst);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2555
    __ cmpq(r10_src_klass, r9_dst_klass);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2556
    __ jcc(Assembler::notEqual, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2557
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2558
    //  if (!src->is_Array()) return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2559
    __ cmpl(rax_lh, Klass::_lh_neutral_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2560
    __ jcc(Assembler::greaterEqual, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2561
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2562
    // At this point, it is known to be a typeArray (array_tag 0x3).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2563
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2564
    { Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2565
      __ cmpl(rax_lh, (Klass::_lh_array_tag_type_value << Klass::_lh_array_tag_shift));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2566
      __ jcc(Assembler::greaterEqual, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2567
      __ stop("must be a primitive array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2568
      __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2569
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2570
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2571
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2572
    arraycopy_range_checks(src, src_pos, dst, dst_pos, r11_length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2573
                           r10, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2574
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2575
    // typeArrayKlass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2576
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2577
    // src_addr = (src + array_header_in_bytes()) + (src_pos << log2elemsize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2578
    // dst_addr = (dst + array_header_in_bytes()) + (dst_pos << log2elemsize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2579
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2580
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2581
    const Register r10_offset = r10;    // array offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2582
    const Register rax_elsize = rax_lh; // element size
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2583
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2584
    __ movl(r10_offset, rax_lh);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2585
    __ shrl(r10_offset, Klass::_lh_header_size_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2586
    __ andq(r10_offset, Klass::_lh_header_size_mask);   // array_offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2587
    __ addq(src, r10_offset);           // src array offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2588
    __ addq(dst, r10_offset);           // dst array offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2589
    BLOCK_COMMENT("choose copy loop based on element size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2590
    __ andl(rax_lh, Klass::_lh_log2_element_size_mask); // rax_lh -> rax_elsize
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2591
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2592
    // next registers should be set before the jump to corresponding stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2593
    const Register from     = c_rarg0;  // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2594
    const Register to       = c_rarg1;  // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2595
    const Register count    = c_rarg2;  // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2596
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2597
    // 'from', 'to', 'count' registers should be set in such order
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2598
    // since they are the same as 'src', 'src_pos', 'dst'.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2599
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2600
  __ BIND(L_copy_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2601
    __ cmpl(rax_elsize, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2602
    __ jccb(Assembler::notEqual, L_copy_shorts);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2603
    __ leaq(from, Address(src, src_pos, Address::times_1, 0));// src_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2604
    __ leaq(to,   Address(dst, dst_pos, Address::times_1, 0));// dst_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2605
    __ movslq(count, r11_length); // length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2606
    __ jump(RuntimeAddress(byte_copy_entry));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2607
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2608
  __ BIND(L_copy_shorts);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2609
    __ cmpl(rax_elsize, LogBytesPerShort);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2610
    __ jccb(Assembler::notEqual, L_copy_ints);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2611
    __ leaq(from, Address(src, src_pos, Address::times_2, 0));// src_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2612
    __ leaq(to,   Address(dst, dst_pos, Address::times_2, 0));// dst_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2613
    __ movslq(count, r11_length); // length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2614
    __ jump(RuntimeAddress(short_copy_entry));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2615
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2616
  __ BIND(L_copy_ints);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2617
    __ cmpl(rax_elsize, LogBytesPerInt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2618
    __ jccb(Assembler::notEqual, L_copy_longs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2619
    __ leaq(from, Address(src, src_pos, Address::times_4, 0));// src_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2620
    __ leaq(to,   Address(dst, dst_pos, Address::times_4, 0));// dst_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2621
    __ movslq(count, r11_length); // length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2622
    __ jump(RuntimeAddress(int_copy_entry));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2623
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2624
  __ BIND(L_copy_longs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2625
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2626
    { Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2627
      __ cmpl(rax_elsize, LogBytesPerLong);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2628
      __ jcc(Assembler::equal, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2629
      __ stop("must be long copy, but elsize is wrong");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2630
      __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2631
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2632
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2633
    __ leaq(from, Address(src, src_pos, Address::times_8, 0));// src_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2634
    __ leaq(to,   Address(dst, dst_pos, Address::times_8, 0));// dst_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2635
    __ movslq(count, r11_length); // length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2636
    __ jump(RuntimeAddress(long_copy_entry));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2637
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2638
    // objArrayKlass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2639
  __ BIND(L_objArray);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2640
    // live at this point:  r10_src_klass, src[_pos], dst[_pos]
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2641
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2642
    Label L_plain_copy, L_checkcast_copy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2643
    //  test array classes for subtyping
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2644
    __ load_klass(r9_dst_klass, dst);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2645
    __ cmpq(r10_src_klass, r9_dst_klass); // usual case is exact equality
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2646
    __ jcc(Assembler::notEqual, L_checkcast_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2647
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2648
    // Identically typed arrays can be copied without element-wise checks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2649
    arraycopy_range_checks(src, src_pos, dst, dst_pos, r11_length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2650
                           r10, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2651
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2652
    __ leaq(from, Address(src, src_pos, TIMES_OOP,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2653
                 arrayOopDesc::base_offset_in_bytes(T_OBJECT))); // src_addr
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2654
    __ leaq(to,   Address(dst, dst_pos, TIMES_OOP,
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2655
                  arrayOopDesc::base_offset_in_bytes(T_OBJECT))); // dst_addr
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2656
    __ movslq(count, r11_length); // length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2657
  __ BIND(L_plain_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2658
    __ jump(RuntimeAddress(oop_copy_entry));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2659
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2660
  __ BIND(L_checkcast_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2661
    // live at this point:  r10_src_klass, !r11_length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2662
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2663
      // assert(r11_length == C_RARG4); // will reload from here
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2664
      Register r11_dst_klass = r11;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2665
      __ load_klass(r11_dst_klass, dst);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2666
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2667
      // Before looking at dst.length, make sure dst is also an objArray.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2668
      __ cmpl(Address(r11_dst_klass, lh_offset), objArray_lh);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2669
      __ jcc(Assembler::notEqual, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2670
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2671
      // It is safe to examine both src.length and dst.length.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2672
#ifndef _WIN64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2673
      arraycopy_range_checks(src, src_pos, dst, dst_pos, C_RARG4,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2674
                             rax, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2675
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2676
      __ movl(r11_length, C_RARG4);     // reload
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2677
      arraycopy_range_checks(src, src_pos, dst, dst_pos, r11_length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2678
                             rax, L_failed);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2679
      __ load_klass(r11_dst_klass, dst); // reload
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2680
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2681
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2682
      // Marshal the base address arguments now, freeing registers.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2683
      __ leaq(from, Address(src, src_pos, TIMES_OOP,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2684
                   arrayOopDesc::base_offset_in_bytes(T_OBJECT)));
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2685
      __ leaq(to,   Address(dst, dst_pos, TIMES_OOP,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2686
                   arrayOopDesc::base_offset_in_bytes(T_OBJECT)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2687
      __ movl(count, C_RARG4);          // length (reloaded)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2688
      Register sco_temp = c_rarg3;      // this register is free now
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2689
      assert_different_registers(from, to, count, sco_temp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2690
                                 r11_dst_klass, r10_src_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2691
      assert_clean_int(count, sco_temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2692
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2693
      // Generate the type check.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2694
      int sco_offset = (klassOopDesc::header_size() * HeapWordSize +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2695
                        Klass::super_check_offset_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2696
      __ movl(sco_temp, Address(r11_dst_klass, sco_offset));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2697
      assert_clean_int(sco_temp, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2698
      generate_type_check(r10_src_klass, sco_temp, r11_dst_klass, L_plain_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2699
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2700
      // Fetch destination element klass from the objArrayKlass header.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2701
      int ek_offset = (klassOopDesc::header_size() * HeapWordSize +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2702
                       objArrayKlass::element_klass_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2703
      __ movq(r11_dst_klass, Address(r11_dst_klass, ek_offset));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2704
      __ movl(sco_temp,      Address(r11_dst_klass, sco_offset));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2705
      assert_clean_int(sco_temp, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2706
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2707
      // the checkcast_copy loop needs two extra arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2708
      assert(c_rarg3 == sco_temp, "#3 already in place");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2709
      __ movq(C_RARG4, r11_dst_klass);  // dst.klass.element_klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2710
      __ jump(RuntimeAddress(checkcast_copy_entry));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2711
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2712
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2713
  __ BIND(L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2714
    __ xorq(rax, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2715
    __ notq(rax); // return -1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2716
    __ leave();   // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2717
    __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2718
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2719
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2720
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2721
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2722
#undef length_arg
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2723
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2724
  void generate_arraycopy_stubs() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2725
    // Call the conjoint generation methods immediately after
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2726
    // the disjoint ones so that short branches from the former
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2727
    // to the latter can be generated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2728
    StubRoutines::_jbyte_disjoint_arraycopy  = generate_disjoint_byte_copy(false, "jbyte_disjoint_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2729
    StubRoutines::_jbyte_arraycopy           = generate_conjoint_byte_copy(false, "jbyte_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2730
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2731
    StubRoutines::_jshort_disjoint_arraycopy = generate_disjoint_short_copy(false, "jshort_disjoint_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2732
    StubRoutines::_jshort_arraycopy          = generate_conjoint_short_copy(false, "jshort_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2733
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2734
    StubRoutines::_jint_disjoint_arraycopy   = generate_disjoint_int_oop_copy(false, false, "jint_disjoint_arraycopy");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2735
    StubRoutines::_jint_arraycopy            = generate_conjoint_int_oop_copy(false, false, "jint_arraycopy");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2736
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2737
    StubRoutines::_jlong_disjoint_arraycopy  = generate_disjoint_long_oop_copy(false, false, "jlong_disjoint_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2738
    StubRoutines::_jlong_arraycopy           = generate_conjoint_long_oop_copy(false, false, "jlong_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2739
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2740
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2741
    if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2742
      StubRoutines::_oop_disjoint_arraycopy  = generate_disjoint_int_oop_copy(false, true, "oop_disjoint_arraycopy");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2743
      StubRoutines::_oop_arraycopy           = generate_conjoint_int_oop_copy(false, true, "oop_arraycopy");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2744
    } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2745
      StubRoutines::_oop_disjoint_arraycopy  = generate_disjoint_long_oop_copy(false, true, "oop_disjoint_arraycopy");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2746
      StubRoutines::_oop_arraycopy           = generate_conjoint_long_oop_copy(false, true, "oop_arraycopy");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2747
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2748
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2749
    StubRoutines::_checkcast_arraycopy = generate_checkcast_copy("checkcast_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2750
    StubRoutines::_unsafe_arraycopy    = generate_unsafe_copy("unsafe_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2751
    StubRoutines::_generic_arraycopy   = generate_generic_copy("generic_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2752
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2753
    // We don't generate specialized code for HeapWord-aligned source
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2754
    // arrays, so just use the code we've already generated
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2755
    StubRoutines::_arrayof_jbyte_disjoint_arraycopy  = StubRoutines::_jbyte_disjoint_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2756
    StubRoutines::_arrayof_jbyte_arraycopy           = StubRoutines::_jbyte_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2757
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2758
    StubRoutines::_arrayof_jshort_disjoint_arraycopy = StubRoutines::_jshort_disjoint_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2759
    StubRoutines::_arrayof_jshort_arraycopy          = StubRoutines::_jshort_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2760
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2761
    StubRoutines::_arrayof_jint_disjoint_arraycopy   = StubRoutines::_jint_disjoint_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2762
    StubRoutines::_arrayof_jint_arraycopy            = StubRoutines::_jint_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2763
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2764
    StubRoutines::_arrayof_jlong_disjoint_arraycopy  = StubRoutines::_jlong_disjoint_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2765
    StubRoutines::_arrayof_jlong_arraycopy           = StubRoutines::_jlong_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2766
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2767
    StubRoutines::_arrayof_oop_disjoint_arraycopy    = StubRoutines::_oop_disjoint_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2768
    StubRoutines::_arrayof_oop_arraycopy             = StubRoutines::_oop_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2769
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2770
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2771
#undef __
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2772
#define __ masm->
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2773
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2774
  // Continuation point for throwing of implicit exceptions that are
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2775
  // not handled in the current activation. Fabricates an exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2776
  // oop and initiates normal exception dispatching in this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2777
  // frame. Since we need to preserve callee-saved values (currently
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2778
  // only for C2, but done for C1 as well) we need a callee-saved oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2779
  // map and therefore have to make these stubs into RuntimeStubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2780
  // rather than BufferBlobs.  If the compiler needs all registers to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2781
  // be preserved between the fault point and the exception handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2782
  // then it must assume responsibility for that in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2783
  // AbstractCompiler::continuation_for_implicit_null_exception or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2784
  // continuation_for_implicit_division_by_zero_exception. All other
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2785
  // implicit exceptions (e.g., NullPointerException or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2786
  // AbstractMethodError on entry) are either at call sites or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2787
  // otherwise assume that stack unwinding will be initiated, so
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2788
  // caller saved registers were assumed volatile in the compiler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2789
  address generate_throw_exception(const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2790
                                   address runtime_entry,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2791
                                   bool restore_saved_exception_pc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2792
    // Information about frame layout at time of blocking runtime call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2793
    // Note that we only have to preserve callee-saved registers since
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2794
    // the compilers are responsible for supplying a continuation point
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2795
    // if they expect all registers to be preserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2796
    enum layout {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2797
      rbp_off = frame::arg_reg_save_area_bytes/BytesPerInt,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2798
      rbp_off2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2799
      return_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2800
      return_off2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2801
      framesize // inclusive of return address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2802
    };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2803
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2804
    int insts_size = 512;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2805
    int locs_size  = 64;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2806
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2807
    CodeBuffer code(name, insts_size, locs_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2808
    OopMapSet* oop_maps  = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2809
    MacroAssembler* masm = new MacroAssembler(&code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2810
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2811
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2812
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2813
    // This is an inlined and slightly modified version of call_VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2814
    // which has the ability to fetch the return PC out of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2815
    // thread-local storage and also sets up last_Java_sp slightly
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2816
    // differently than the real call_VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2817
    if (restore_saved_exception_pc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2818
      __ movq(rax,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2819
              Address(r15_thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2820
                      in_bytes(JavaThread::saved_exception_pc_offset())));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2821
      __ pushq(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2822
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2823
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2824
    __ enter(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2825
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2826
    assert(is_even(framesize/2), "sp not 16-byte aligned");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2827
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2828
    // return address and rbp are already in place
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2829
    __ subq(rsp, (framesize-4) << LogBytesPerInt); // prolog
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2830
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2831
    int frame_complete = __ pc() - start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2832
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2833
    // Set up last_Java_sp and last_Java_fp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2834
    __ set_last_Java_frame(rsp, rbp, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2835
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2836
    // Call runtime
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2837
    __ movq(c_rarg0, r15_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2838
    BLOCK_COMMENT("call runtime_entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2839
    __ call(RuntimeAddress(runtime_entry));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2840
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2841
    // Generate oop map
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2842
    OopMap* map = new OopMap(framesize, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2843
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2844
    oop_maps->add_gc_map(__ pc() - start, map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2845
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2846
    __ reset_last_Java_frame(true, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2847
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2848
    __ leave(); // required for proper stackwalking of RuntimeStub frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2849
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2850
    // check for pending exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2851
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2852
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2853
    __ cmpq(Address(r15_thread, Thread::pending_exception_offset()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2854
            (int) NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2855
    __ jcc(Assembler::notEqual, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2856
    __ should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2857
    __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2858
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2859
    __ jump(RuntimeAddress(StubRoutines::forward_exception_entry()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2860
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2861
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2862
    // codeBlob framesize is in words (not VMRegImpl::slot_size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2863
    RuntimeStub* stub =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2864
      RuntimeStub::new_runtime_stub(name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2865
                                    &code,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2866
                                    frame_complete,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2867
                                    (framesize >> (LogBytesPerWord - LogBytesPerInt)),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2868
                                    oop_maps, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2869
    return stub->entry_point();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2870
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2871
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2872
  // Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2873
  void generate_initial() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2874
    // Generates all stubs and initializes the entry points
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2875
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2876
    // This platform-specific stub is needed by generate_call_stub()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2877
    StubRoutines::amd64::_mxcsr_std        = generate_fp_mask("mxcsr_std",        0x0000000000001F80);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2878
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2879
    // entry points that exist in all platforms Note: This is code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2880
    // that could be shared among different platforms - however the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2881
    // benefit seems to be smaller than the disadvantage of having a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2882
    // much more complicated generator structure. See also comment in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2883
    // stubRoutines.hpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2884
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2885
    StubRoutines::_forward_exception_entry = generate_forward_exception();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2886
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2887
    StubRoutines::_call_stub_entry =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2888
      generate_call_stub(StubRoutines::_call_stub_return_address);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2889
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2890
    // is referenced by megamorphic call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2891
    StubRoutines::_catch_exception_entry = generate_catch_exception();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2892
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2893
    // atomic calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2894
    StubRoutines::_atomic_xchg_entry         = generate_atomic_xchg();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2895
    StubRoutines::_atomic_xchg_ptr_entry     = generate_atomic_xchg_ptr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2896
    StubRoutines::_atomic_cmpxchg_entry      = generate_atomic_cmpxchg();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2897
    StubRoutines::_atomic_cmpxchg_long_entry = generate_atomic_cmpxchg_long();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2898
    StubRoutines::_atomic_add_entry          = generate_atomic_add();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2899
    StubRoutines::_atomic_add_ptr_entry      = generate_atomic_add_ptr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2900
    StubRoutines::_fence_entry               = generate_orderaccess_fence();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2901
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2902
    StubRoutines::_handler_for_unsafe_access_entry =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2903
      generate_handler_for_unsafe_access();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2904
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2905
    // platform dependent
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2906
    StubRoutines::amd64::_get_previous_fp_entry = generate_get_previous_fp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2907
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2908
    StubRoutines::amd64::_verify_mxcsr_entry    = generate_verify_mxcsr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2909
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2910
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2911
  void generate_all() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2912
    // Generates all stubs and initializes the entry points
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2913
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2914
    // These entry points require SharedInfo::stack0 to be set up in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2915
    // non-core builds and need to be relocatable, so they each
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2916
    // fabricate a RuntimeStub internally.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2917
    StubRoutines::_throw_AbstractMethodError_entry =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2918
      generate_throw_exception("AbstractMethodError throw_exception",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2919
                               CAST_FROM_FN_PTR(address,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2920
                                                SharedRuntime::
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2921
                                                throw_AbstractMethodError),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2922
                               false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2923
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  2924
    StubRoutines::_throw_IncompatibleClassChangeError_entry =
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  2925
      generate_throw_exception("IncompatibleClassChangeError throw_exception",
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  2926
                               CAST_FROM_FN_PTR(address,
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  2927
                                                SharedRuntime::
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  2928
                                                throw_IncompatibleClassChangeError),
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  2929
                               false);
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  2930
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2931
    StubRoutines::_throw_ArithmeticException_entry =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2932
      generate_throw_exception("ArithmeticException throw_exception",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2933
                               CAST_FROM_FN_PTR(address,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2934
                                                SharedRuntime::
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2935
                                                throw_ArithmeticException),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2936
                               true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2937
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2938
    StubRoutines::_throw_NullPointerException_entry =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2939
      generate_throw_exception("NullPointerException throw_exception",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2940
                               CAST_FROM_FN_PTR(address,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2941
                                                SharedRuntime::
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2942
                                                throw_NullPointerException),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2943
                               true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2944
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2945
    StubRoutines::_throw_NullPointerException_at_call_entry =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2946
      generate_throw_exception("NullPointerException at call throw_exception",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2947
                               CAST_FROM_FN_PTR(address,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2948
                                                SharedRuntime::
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2949
                                                throw_NullPointerException_at_call),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2950
                               false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2951
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2952
    StubRoutines::_throw_StackOverflowError_entry =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2953
      generate_throw_exception("StackOverflowError throw_exception",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2954
                               CAST_FROM_FN_PTR(address,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2955
                                                SharedRuntime::
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2956
                                                throw_StackOverflowError),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2957
                               false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2958
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2959
    // entry points that are platform specific
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2960
    StubRoutines::amd64::_f2i_fixup = generate_f2i_fixup();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2961
    StubRoutines::amd64::_f2l_fixup = generate_f2l_fixup();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2962
    StubRoutines::amd64::_d2i_fixup = generate_d2i_fixup();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2963
    StubRoutines::amd64::_d2l_fixup = generate_d2l_fixup();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2964
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2965
    StubRoutines::amd64::_float_sign_mask  = generate_fp_mask("float_sign_mask",  0x7FFFFFFF7FFFFFFF);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2966
    StubRoutines::amd64::_float_sign_flip  = generate_fp_mask("float_sign_flip",  0x8000000080000000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2967
    StubRoutines::amd64::_double_sign_mask = generate_fp_mask("double_sign_mask", 0x7FFFFFFFFFFFFFFF);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2968
    StubRoutines::amd64::_double_sign_flip = generate_fp_mask("double_sign_flip", 0x8000000000000000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2969
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2970
    // support for verify_oop (must happen after universe_init)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2971
    StubRoutines::_verify_oop_subroutine_entry = generate_verify_oop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2972
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2973
    // arraycopy stubs used by compilers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2974
    generate_arraycopy_stubs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2975
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2976
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2977
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2978
  StubGenerator(CodeBuffer* code, bool all) : StubCodeGenerator(code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2979
    if (all) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2980
      generate_all();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2981
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2982
      generate_initial();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2983
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2984
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2985
}; // end class declaration
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2986
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2987
address StubGenerator::disjoint_byte_copy_entry  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2988
address StubGenerator::disjoint_short_copy_entry = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2989
address StubGenerator::disjoint_int_copy_entry   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2990
address StubGenerator::disjoint_long_copy_entry  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2991
address StubGenerator::disjoint_oop_copy_entry   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2992
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2993
address StubGenerator::byte_copy_entry  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2994
address StubGenerator::short_copy_entry = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2995
address StubGenerator::int_copy_entry   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2996
address StubGenerator::long_copy_entry  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2997
address StubGenerator::oop_copy_entry   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2998
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2999
address StubGenerator::checkcast_copy_entry = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3000
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3001
void StubGenerator_generate(CodeBuffer* code, bool all) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3002
  StubGenerator g(code, all);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3003
}