hotspot/src/cpu/sparc/vm/stubGenerator_sparc.cpp
author twisti
Tue, 09 Mar 2010 20:16:19 +0100
changeset 5046 27e801a857cb
parent 4645 0c5f5b94e93a
child 5248 5eddf88cc3c9
permissions -rw-r--r--
6919934: JSR 292 needs to support x86 C1 Summary: This implements JSR 292 support for C1 x86. Reviewed-by: never, jrose, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
4645
0c5f5b94e93a 6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents: 2571
diff changeset
     2
 * Copyright 1997-2010 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_sparc.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->
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
#ifdef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
#define BLOCK_COMMENT(str) /* nothing */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
#define BLOCK_COMMENT(str) __ block_comment(str)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
#define BIND(label) bind(label); BLOCK_COMMENT(#label ":")
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// Note:  The register L7 is used as L7_thread_cache, and may not be used
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
//        any other way within this module.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
static const Register& Lstub_temp = L2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// -------------------------------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// Stub Code definitions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
static address handle_unsafe_access() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  JavaThread* thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  address pc  = thread->saved_exception_pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  address npc = thread->saved_exception_npc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // pc is the instruction which we must emulate
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // doing a no-op is fine:  return garbage from the load
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  // request an async exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  thread->set_pending_unsafe_access_error();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // return address of next instruction to execute
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  return npc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
class StubGenerator: public StubCodeGenerator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
#ifdef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
#define inc_counter_np(a,b,c) (0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
#define inc_counter_np(counter, t1, t2) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  BLOCK_COMMENT("inc_counter " #counter); \
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
    73
  __ inc_counter(&counter, t1, t2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  //----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // Call stubs are used to call Java from C
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  address generate_call_stub(address& return_pc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    StubCodeMark mark(this, "StubRoutines", "call_stub");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    // Incoming arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    // o0         : call wrapper address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    // o1         : result (address)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    // o2         : result type
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    // o3         : method
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    // o4         : (interpreter) entry point
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    // o5         : parameters (address)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    // [sp + 0x5c]: parameter size (in words)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    // [sp + 0x60]: thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    // +---------------+ <--- sp + 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    // . reg save area .
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    // +---------------+ <--- sp + 0x40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    // . extra 7 slots .
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    // +---------------+ <--- sp + 0x5c
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    // |  param. size  |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    // +---------------+ <--- sp + 0x60
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    // |    thread     |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    // +---------------+
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    // note: if the link argument position changes, adjust
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    //       the code in frame::entry_frame_call_wrapper()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    const Argument link           = Argument(0, false); // used only for GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    const Argument result         = Argument(1, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    const Argument result_type    = Argument(2, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    const Argument method         = Argument(3, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    const Argument entry_point    = Argument(4, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    const Argument parameters     = Argument(5, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    const Argument parameter_size = Argument(6, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    const Argument thread         = Argument(7, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    // setup thread register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    __ ld_ptr(thread.as_address(), G2_thread);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
   123
    __ reinit_heapbase();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    // make sure we have no pending exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    { const Register t = G3_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
      Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
      __ ld_ptr(G2_thread, in_bytes(Thread::pending_exception_offset()), t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
      __ br_null(t, false, Assembler::pt, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
      __ stop("StubRoutines::call_stub: entered with pending exception");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
      __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    // create activation frame & allocate space for parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    { const Register t = G3_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
      __ ld_ptr(parameter_size.as_address(), t);                // get parameter size (in words)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
      __ add(t, frame::memory_parameter_word_sp_offset, t);     // add space for save area (in words)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
      __ round_to(t, WordsPerLong);                             // make sure it is multiple of 2 (in words)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
      __ sll(t, Interpreter::logStackElementSize(), t);                    // compute number of bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
      __ neg(t);                                                // negate so it can be used with save
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
      __ save(SP, t, SP);                                       // setup new frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    // +---------------+ <--- sp + 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    // . reg save area .
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    // +---------------+ <--- sp + 0x40
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    // . extra 7 slots .
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    // +---------------+ <--- sp + 0x5c
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    // |  empty slot   |      (only if parameter size is even)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    // +---------------+
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    // .  parameters   .
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    // +---------------+ <--- fp + 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    // . reg save area .
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    // +---------------+ <--- fp + 0x40
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    // . extra 7 slots .
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    // +---------------+ <--- fp + 0x5c
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    // |  param. size  |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    // +---------------+ <--- fp + 0x60
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    // |    thread     |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    // +---------------+
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    // pass parameters if any
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    BLOCK_COMMENT("pass parameters if any");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    { const Register src = parameters.as_in().as_register();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
      const Register dst = Lentry_args;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
      const Register tmp = G3_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
      const Register cnt = G4_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
      // test if any parameters & setup of Lentry_args
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
      Label exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
      __ ld_ptr(parameter_size.as_in().as_address(), cnt);      // parameter counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
      __ add( FP, STACK_BIAS, dst );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
      __ tst(cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
      __ br(Assembler::zero, false, Assembler::pn, exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
      __ delayed()->sub(dst, BytesPerWord, dst);                 // setup Lentry_args
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
      // copy parameters if any
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
      Label loop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
      __ BIND(loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
      // Store tag first.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
      if (TaggedStackInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
        __ ld_ptr(src, 0, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
        __ add(src, BytesPerWord, src);  // get next
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
        __ st_ptr(tmp, dst, Interpreter::tag_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
      // Store parameter value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
      __ ld_ptr(src, 0, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
      __ add(src, BytesPerWord, src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
      __ st_ptr(tmp, dst, Interpreter::value_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
      __ deccc(cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
      __ br(Assembler::greater, false, Assembler::pt, loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
      __ delayed()->sub(dst, Interpreter::stackElementSize(), dst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
      // done
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
      __ BIND(exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    // setup parameters, method & call Java function
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    // layout_activation_impl checks it's notion of saved SP against
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    // this register, so if this changes update it as well.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    const Register saved_SP = Lscratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    __ mov(SP, saved_SP);                               // keep track of SP before call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    // setup parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    const Register t = G3_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    __ ld_ptr(parameter_size.as_in().as_address(), t); // get parameter size (in words)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
    __ sll(t, Interpreter::logStackElementSize(), t);            // compute number of bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    __ sub(FP, t, Gargs);                              // setup parameter pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    __ add( Gargs, STACK_BIAS, Gargs );                // Account for LP64 stack bias
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    __ mov(SP, O5_savedSP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    // do the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    // the following register must be setup:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    // G2_thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    // G5_method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    // Gargs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    BLOCK_COMMENT("call Java function");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    __ jmpl(entry_point.as_in().as_register(), G0, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    __ delayed()->mov(method.as_in().as_register(), G5_method);   // setup method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    BLOCK_COMMENT("call_stub_return_address:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    return_pc = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    // The callee, if it wasn't interpreted, can return with SP changed so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    // we can no longer assert of change of SP.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    // store result depending on type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    // (everything that is not T_OBJECT, T_LONG, T_FLOAT, or T_DOUBLE
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    //  is treated as T_INT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    { const Register addr = result     .as_in().as_register();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
      const Register type = result_type.as_in().as_register();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
      Label is_long, is_float, is_double, is_object, exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
      __            cmp(type, T_OBJECT);  __ br(Assembler::equal, false, Assembler::pn, is_object);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
      __ delayed()->cmp(type, T_FLOAT);   __ br(Assembler::equal, false, Assembler::pn, is_float);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      __ delayed()->cmp(type, T_DOUBLE);  __ br(Assembler::equal, false, Assembler::pn, is_double);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
      __ delayed()->cmp(type, T_LONG);    __ br(Assembler::equal, false, Assembler::pn, is_long);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
      // store int result
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
      __ st(O0, addr, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
      __ BIND(exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
      __ ret();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
      __ delayed()->restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
      __ BIND(is_object);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
      __ ba(false, exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
      __ delayed()->st_ptr(O0, addr, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
      __ BIND(is_float);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
      __ ba(false, exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
      __ delayed()->stf(FloatRegisterImpl::S, F0, addr, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
      __ BIND(is_double);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
      __ ba(false, exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
      __ delayed()->stf(FloatRegisterImpl::D, F0, addr, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
      __ BIND(is_long);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
      __ ba(false, exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
      __ delayed()->st_long(O0, addr, G0);      // store entire long
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
#if defined(COMPILER2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  // All return values are where we want them, except for Longs.  C2 returns
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  // longs in G1 in the 32-bit build whereas the interpreter wants them in O0/O1.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  // Since the interpreter will return longs in G1 and O0/O1 in the 32bit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  // build we simply always use G1.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  // Note: I tried to make c2 return longs in O0/O1 and G1 so we wouldn't have to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  // do this here. Unfortunately if we did a rethrow we'd see an machepilog node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  // first which would move g1 -> O0/O1 and destroy the exception we were throwing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
      __ ba(false, exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
      __ delayed()->stx(G1, addr, G0);  // store entire long
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
      __ st(O1, addr, BytesPerInt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
      __ ba(false, exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
      __ delayed()->st(O0, addr, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
#endif /* COMPILER2 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
#endif /* _LP64 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
     return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  //----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  // Return point for a Java call if there's an exception thrown in Java code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  // The exception is caught and transformed into a pending exception stored in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  // JavaThread that can be tested from within the VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  // Oexception: exception oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  address generate_catch_exception() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
    StubCodeMark mark(this, "StubRoutines", "catch_exception");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
    // verify that thread corresponds
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    __ verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    const Register& temp_reg = Gtemp;
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
   321
    Address pending_exception_addr    (G2_thread, Thread::pending_exception_offset());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
   322
    Address exception_file_offset_addr(G2_thread, Thread::exception_file_offset   ());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
   323
    Address exception_line_offset_addr(G2_thread, Thread::exception_line_offset   ());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
    // set pending exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
    __ verify_oop(Oexception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
    __ st_ptr(Oexception, pending_exception_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
    __ set((intptr_t)__FILE__, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
    __ st_ptr(temp_reg, exception_file_offset_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
    __ set((intptr_t)__LINE__, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    __ st(temp_reg, exception_line_offset_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
    // complete return to VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
    assert(StubRoutines::_call_stub_return_address != NULL, "must have been generated before");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
   336
    AddressLiteral stub_ret(StubRoutines::_call_stub_return_address);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
   337
    __ jump_to(stub_ret, temp_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  //----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  // Continuation point for runtime calls returning with a pending exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  // The pending exception check happened in the runtime or native call stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  // The pending exception in Thread is converted into a Java-level exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  // Contract with Java-level exception handler: O0 = exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  //                                             O1 = throwing pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  address generate_forward_exception() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
    StubCodeMark mark(this, "StubRoutines", "forward_exception");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
    // Upon entry, O7 has the return address returning into Java
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    // (interpreted or compiled) code; i.e. the return address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
    // becomes the throwing pc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    const Register& handler_reg = Gtemp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
   362
    Address exception_addr(G2_thread, Thread::pending_exception_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
    // make sure that this code is only executed if there is a pending exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
    { Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
      __ ld_ptr(exception_addr, Gtemp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
      __ br_notnull(Gtemp, false, Assembler::pt, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
      __ stop("StubRoutines::forward exception: no pending exception (1)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
      __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
    // compute exception handler into handler_reg
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
    __ get_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
    __ ld_ptr(exception_addr, Oexception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
    __ verify_oop(Oexception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
    __ save_frame(0);             // compensates for compiler weakness
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
    __ add(O7->after_save(), frame::pc_return_offset, Lscratch); // save the issuing PC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
    BLOCK_COMMENT("call exception_handler_for_return_address");
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 4645
diff changeset
   382
    __ call_VM_leaf(L7_thread_cache, CAST_FROM_FN_PTR(address, SharedRuntime::exception_handler_for_return_address), G2_thread, Lscratch);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
    __ mov(O0, handler_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
    __ restore();                 // compensates for compiler weakness
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
    __ ld_ptr(exception_addr, Oexception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
    __ add(O7, frame::pc_return_offset, Oissuing_pc); // save the issuing PC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
    // make sure exception is set
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
    { Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
      __ br_notnull(Oexception, false, Assembler::pt, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
      __ stop("StubRoutines::forward exception: no pending exception (2)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
      __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
    // jump to exception handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
    __ jmp(handler_reg, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
    // clear pending exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
    __ delayed()->st_ptr(G0, exception_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  //------------------------------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  // Continuation point for throwing of implicit exceptions that are not handled in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  // the current activation. Fabricates an exception oop and initiates normal
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  // exception dispatching in this frame. Only callee-saved registers are preserved
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  // (through the normal register window / RegisterMap handling).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  // If the compiler needs all registers to be preserved between the fault
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  // point and the exception handler then it must assume responsibility for that in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  // AbstractCompiler::continuation_for_implicit_null_exception or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  // continuation_for_implicit_division_by_zero_exception. All other implicit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  // exceptions (e.g., NullPointerException or AbstractMethodError on entry) are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  // either at call sites or otherwise assume that stack unwinding will be initiated,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  // so caller saved registers were assumed volatile in the compiler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  // Note that we generate only this stub into a RuntimeStub, because it needs to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  // properly traversed and ignored during GC, so we change the meaning of the "__"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  // macro within this method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
#undef __
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
#define __ masm->
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  address generate_throw_exception(const char* name, address runtime_entry, bool restore_saved_exception_pc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
    int insts_size = VerifyThread ? 1 * K : 600;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
    int insts_size = VerifyThread ? 1 * K : 256;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
#endif /* ASSERT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
    int locs_size  = 32;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
    CodeBuffer      code(name, insts_size, locs_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
    MacroAssembler* masm = new MacroAssembler(&code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
    __ verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
    // This is an inlined and slightly modified version of call_VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
    // which has the ability to fetch the return PC out of thread-local storage
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
    __ assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
    // Note that we always push a frame because on the SPARC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
    // architecture, for all of our implicit exception kinds at call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
    // sites, the implicit exception is taken before the callee frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
    // is pushed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
    __ save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
    int frame_complete = __ offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
    if (restore_saved_exception_pc) {
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
   452
      __ ld_ptr(G2_thread, JavaThread::saved_exception_pc_offset(), I7);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
      __ sub(I7, frame::pc_return_offset, I7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
    // Note that we always have a runtime stub frame on the top of stack by this point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    Register last_java_sp = SP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
    // 64-bit last_java_sp is biased!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    __ set_last_Java_frame(last_java_sp, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    if (VerifyThread)  __ mov(G2_thread, O0); // about to be smashed; pass early
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    __ save_thread(noreg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    // do the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    BLOCK_COMMENT("call runtime_entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    __ call(runtime_entry, relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    if (!VerifyThread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
      __ delayed()->mov(G2_thread, O0);  // pass thread as first argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
    else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
      __ delayed()->nop();             // (thread already passed)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
    __ restore_thread(noreg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
    __ reset_last_Java_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
    // check for pending exceptions. use Gtemp as scratch register.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
   476
    Address exception_addr(G2_thread, Thread::pending_exception_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
    Register scratch_reg = Gtemp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
    __ ld_ptr(exception_addr, scratch_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
    __ br_notnull(scratch_reg, false, Assembler::pt, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
    __ should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
    __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
    BLOCK_COMMENT("call forward_exception_entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
    __ call(StubRoutines::forward_exception_entry(), relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
    // we use O7 linkage so that forward_exception_entry has the issuing PC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
    __ delayed()->restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
    RuntimeStub* stub = RuntimeStub::new_runtime_stub(name, &code, frame_complete, masm->total_frame_size_in_bytes(0), NULL, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
    return stub->entry_point();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
#undef __
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
#define __ _masm->
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  // Generate a routine that sets all the registers so we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  // can tell if the stop routine prints them correctly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  address generate_test_stop() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
    StubCodeMark mark(this, "StubRoutines", "test_stop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
    int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
    __ save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
    static jfloat zero = 0.0, one = 1.0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
    // put addr in L0, then load through L0 to F0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
    __ set((intptr_t)&zero, L0);  __ ldf( FloatRegisterImpl::S, L0, 0, F0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
    __ set((intptr_t)&one,  L0);  __ ldf( FloatRegisterImpl::S, L0, 0, F1); // 1.0 to F1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    // use add to put 2..18 in F2..F18
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
    for ( i = 2;  i <= 18;  ++i ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
      __ fadd( FloatRegisterImpl::S, F1, as_FloatRegister(i-1),  as_FloatRegister(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
    // Now put double 2 in F16, double 18 in F18
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
    __ ftof( FloatRegisterImpl::S, FloatRegisterImpl::D, F2, F16 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
    __ ftof( FloatRegisterImpl::S, FloatRegisterImpl::D, F18, F18 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
    // use add to put 20..32 in F20..F32
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
    for (i = 20; i < 32; i += 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
      __ fadd( FloatRegisterImpl::D, F16, as_FloatRegister(i-2),  as_FloatRegister(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
    // put 0..7 in i's, 8..15 in l's, 16..23 in o's, 24..31 in g's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
    for ( i = 0; i < 8; ++i ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
      if (i < 6) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
        __ set(     i, as_iRegister(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
        __ set(16 + i, as_oRegister(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
        __ set(24 + i, as_gRegister(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
      __ set( 8 + i, as_lRegister(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    __ stop("testing stop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
    __ ret();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
    __ delayed()->restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  address generate_stop_subroutine() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
    StubCodeMark mark(this, "StubRoutines", "stop_subroutine");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
    __ stop_subroutine();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  address generate_flush_callers_register_windows() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
    StubCodeMark mark(this, "StubRoutines", "flush_callers_register_windows");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
    __ flush_windows();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
    __ retl(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
    __ delayed()->add( FP, STACK_BIAS, O0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
    // The returned value must be a stack pointer whose register save area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
    // is flushed, and will stay flushed while the caller executes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  // Helper functions for v8 atomic operations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  void get_v8_oop_lock_ptr(Register lock_ptr_reg, Register mark_oop_reg, Register scratch_reg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
    if (mark_oop_reg == noreg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
      address lock_ptr = (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
      __ set((intptr_t)lock_ptr, lock_ptr_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
      assert(scratch_reg != noreg, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
      address lock_ptr = (address)StubRoutines::Sparc::_v8_oop_lock_cache;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
      __ set((intptr_t)lock_ptr, lock_ptr_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
      __ and3(mark_oop_reg, StubRoutines::Sparc::v8_oop_lock_mask_in_place, scratch_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
      __ add(lock_ptr_reg, scratch_reg, lock_ptr_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  void generate_v8_lock_prologue(Register lock_reg, Register lock_ptr_reg, Register yield_reg, Label& retry, Label& dontyield, Register mark_oop_reg = noreg, Register scratch_reg = noreg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
    get_v8_oop_lock_ptr(lock_ptr_reg, mark_oop_reg, scratch_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
    __ set(StubRoutines::Sparc::locked, lock_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
    // Initialize yield counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
    __ mov(G0,yield_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
    __ BIND(retry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
    __ cmp(yield_reg, V8AtomicOperationUnderLockSpinCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
    __ br(Assembler::less, false, Assembler::pt, dontyield);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
    // This code can only be called from inside the VM, this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
    // stub is only invoked from Atomic::add().  We do not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
    // want to use call_VM, because _last_java_sp and such
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
    // must already be set.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
    // Save the regs and make space for a C call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
    __ save(SP, -96, SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
    __ save_all_globals_into_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
    BLOCK_COMMENT("call os::naked_sleep");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
    __ call(CAST_FROM_FN_PTR(address, os::naked_sleep));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
    __ restore_globals_from_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
    __ restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
    // reset the counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
    __ mov(G0,yield_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
    __ BIND(dontyield);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
    // try to get lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
    __ swap(lock_ptr_reg, 0, lock_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
    // did we get the lock?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
    __ cmp(lock_reg, StubRoutines::Sparc::unlocked);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
    __ br(Assembler::notEqual, true, Assembler::pn, retry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
    __ delayed()->add(yield_reg,1,yield_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
    // yes, got lock. do the operation here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  void generate_v8_lock_epilogue(Register lock_reg, Register lock_ptr_reg, Register yield_reg, Label& retry, Label& dontyield, Register mark_oop_reg = noreg, Register scratch_reg = noreg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
    __ st(lock_reg, lock_ptr_reg, 0); // unlock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  // Support for jint Atomic::xchg(jint exchange_value, volatile jint* dest).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  // Arguments :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  //      exchange_value: O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  //      dest:           O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  // Results:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  //     O0: the value previously stored in dest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  address generate_atomic_xchg() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
    StubCodeMark mark(this, "StubRoutines", "atomic_xchg");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
    if (UseCASForSwap) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
      // Use CAS instead of swap, just in case the MP hardware
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
      // prefers to work with just one kind of synch. instruction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
      Label retry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
      __ BIND(retry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
      __ mov(O0, O3);       // scratch copy of exchange value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
      __ ld(O1, 0, O2);     // observe the previous value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
      // try to replace O2 with O3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
      __ cas_under_lock(O1, O2, O3,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
      (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr(),false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
      __ cmp(O2, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
      __ br(Assembler::notEqual, false, Assembler::pn, retry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
      __ retl(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
      __ delayed()->mov(O2, O0);  // report previous value to caller
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
      if (VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
        __ retl(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
        __ delayed()->swap(O1, 0, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
        const Register& lock_reg = O2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
        const Register& lock_ptr_reg = O3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
        const Register& yield_reg = O4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
        Label retry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
        Label dontyield;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
        generate_v8_lock_prologue(lock_reg, lock_ptr_reg, yield_reg, retry, dontyield);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
        // got the lock, do the swap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
        __ swap(O1, 0, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
        generate_v8_lock_epilogue(lock_reg, lock_ptr_reg, yield_reg, retry, dontyield);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
        __ retl(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
        __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  // Support for jint Atomic::cmpxchg(jint exchange_value, volatile jint* dest, jint compare_value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  // Arguments :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  //      exchange_value: O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  //      dest:           O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  //      compare_value:  O2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  // Results:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  //     O0: the value previously stored in dest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  // Overwrites (v8): O3,O4,O5
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  address generate_atomic_cmpxchg() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
    StubCodeMark mark(this, "StubRoutines", "atomic_cmpxchg");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
    // cmpxchg(dest, compare_value, exchange_value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
    __ cas_under_lock(O1, O2, O0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
      (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr(),false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
    __ retl(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  // Support for jlong Atomic::cmpxchg(jlong exchange_value, volatile jlong *dest, jlong compare_value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  // Arguments :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  //      exchange_value: O1:O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
  //      dest:           O2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  //      compare_value:  O4:O3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
  // Results:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
  //     O1:O0: the value previously stored in dest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  // This only works on V9, on V8 we don't generate any
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
  // code and just return NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
  // Overwrites: G1,G2,G3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
  address generate_atomic_cmpxchg_long() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
    StubCodeMark mark(this, "StubRoutines", "atomic_cmpxchg_long");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
    if (!VM_Version::supports_cx8())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
        return NULL;;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
    __ sllx(O0, 32, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
    __ srl(O1, 0, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
    __ or3(O0,O1,O0);      // O0 holds 64-bit value from compare_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
    __ sllx(O3, 32, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
    __ srl(O4, 0, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
    __ or3(O3,O4,O3);     // O3 holds 64-bit value from exchange_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
    __ casx(O2, O3, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
    __ srl(O0, 0, O1);    // unpacked return value in O1:O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
    __ retl(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
    __ delayed()->srlx(O0, 32, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  // Support for jint Atomic::add(jint add_value, volatile jint* dest).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  // Arguments :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  //      add_value: O0   (e.g., +1 or -1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  //      dest:      O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
  // Results:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
  //     O0: the new value stored in dest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  // Overwrites (v9): O3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  // Overwrites (v8): O3,O4,O5
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  address generate_atomic_add() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
    StubCodeMark mark(this, "StubRoutines", "atomic_add");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
    __ BIND(_atomic_add_stub);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
    if (VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
      Label(retry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
      __ BIND(retry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
      __ lduw(O1, 0, O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
      __ add(O0,   O2, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
      __ cas(O1,   O2, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
      __ cmp(      O2, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
      __ br(Assembler::notEqual, false, Assembler::pn, retry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
      __ retl(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
      __ delayed()->add(O0, O2, O0); // note that cas made O2==O3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
      const Register& lock_reg = O2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
      const Register& lock_ptr_reg = O3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
      const Register& value_reg = O4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
      const Register& yield_reg = O5;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
      Label(retry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
      Label(dontyield);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
      generate_v8_lock_prologue(lock_reg, lock_ptr_reg, yield_reg, retry, dontyield);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
      // got lock, do the increment
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
      __ ld(O1, 0, value_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
      __ add(O0, value_reg, value_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
      __ st(value_reg, O1, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
      // %%% only for RMO and PSO
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
      __ membar(Assembler::StoreStore);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
      generate_v8_lock_epilogue(lock_reg, lock_ptr_reg, yield_reg, retry, dontyield);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
      __ retl(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
      __ delayed()->mov(value_reg, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
  Label _atomic_add_stub;  // called from other stubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
  //------------------------------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
  // The following routine generates a subroutine to throw an asynchronous
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
  // UnknownError when an unsafe access gets a fault that could not be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
  // reasonably prevented by the programmer.  (Example: SIGBUS/OBJERR.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  // Arguments :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
  //      trapping PC:    O7
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
  // Results:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
  //     posts an asynchronous exception, skips the trapping instruction
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_handler_for_unsafe_access() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
    StubCodeMark mark(this, "StubRoutines", "handler_for_unsafe_access");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
    const int preserve_register_words = (64 * 2);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
   830
    Address preserve_addr(FP, (-preserve_register_words * wordSize) + STACK_BIAS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
    Register Lthread = L7_thread_cache;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
    int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
    __ save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
    __ mov(G1, L1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
    __ mov(G2, L2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
    __ mov(G3, L3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
    __ mov(G4, L4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
    __ mov(G5, L5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
    for (i = 0; i < (VM_Version::v9_instructions_work() ? 64 : 32); i += 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
      __ stf(FloatRegisterImpl::D, as_FloatRegister(i), preserve_addr, i * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
    address entry_point = CAST_FROM_FN_PTR(address, handle_unsafe_access);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
    BLOCK_COMMENT("call handle_unsafe_access");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
    __ call(entry_point, relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
    __ mov(L1, G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
    __ mov(L2, G2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
    __ mov(L3, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
    __ mov(L4, G4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
    __ mov(L5, G5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
    for (i = 0; i < (VM_Version::v9_instructions_work() ? 64 : 32); i += 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
      __ ldf(FloatRegisterImpl::D, preserve_addr, as_FloatRegister(i), i * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
    __ verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
    __ jmp(O0, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
    __ delayed()->restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
  // Support for uint StubRoutine::Sparc::partial_subtype_check( Klass sub, Klass super );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
  // Arguments :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
  //      ret  : O0, returned
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
  //      icc/xcc: set as O0 (depending on wordSize)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
  //      sub  : O1, argument, not changed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
  //      super: O2, argument, not changed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
  //      raddr: O7, blown by call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  address generate_partial_subtype_check() {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
   877
    __ align(CodeEntryAlignment);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
    StubCodeMark mark(this, "StubRoutines", "partial_subtype_check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
    address start = __ pc();
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
   880
    Label miss;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
#if defined(COMPILER2) && !defined(_LP64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
    // Do not use a 'save' because it blows the 64-bit O registers.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
   884
    __ add(SP,-4*wordSize,SP);  // Make space for 4 temps (stack must be 2 words aligned)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
    __ st_ptr(L0,SP,(frame::register_save_words+0)*wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
    __ st_ptr(L1,SP,(frame::register_save_words+1)*wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
    __ st_ptr(L2,SP,(frame::register_save_words+2)*wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
    __ st_ptr(L3,SP,(frame::register_save_words+3)*wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
    Register Rret   = O0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
    Register Rsub   = O1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
    Register Rsuper = O2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
    __ save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
    Register Rret   = I0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
    Register Rsub   = I1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
    Register Rsuper = I2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
    Register L0_ary_len = L0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
    Register L1_ary_ptr = L1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
    Register L2_super   = L2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
    Register L3_index   = L3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
   904
    __ check_klass_subtype_slow_path(Rsub, Rsuper,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
   905
                                     L0, L1, L2, L3,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
   906
                                     NULL, &miss);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
   907
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
   908
    // Match falls through here.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
   909
    __ addcc(G0,0,Rret);        // set Z flags, Z result
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
#if defined(COMPILER2) && !defined(_LP64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
    __ ld_ptr(SP,(frame::register_save_words+0)*wordSize,L0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
    __ ld_ptr(SP,(frame::register_save_words+1)*wordSize,L1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
    __ ld_ptr(SP,(frame::register_save_words+2)*wordSize,L2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
    __ ld_ptr(SP,(frame::register_save_words+3)*wordSize,L3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
    __ retl();                  // Result in Rret is zero; flags set to Z
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
    __ delayed()->add(SP,4*wordSize,SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
    __ ret();                   // Result in Rret is zero; flags set to Z
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
    __ delayed()->restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
    __ BIND(miss);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
    __ addcc(G0,1,Rret);        // set NZ flags, NZ result
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
#if defined(COMPILER2) && !defined(_LP64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
    __ ld_ptr(SP,(frame::register_save_words+0)*wordSize,L0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
    __ ld_ptr(SP,(frame::register_save_words+1)*wordSize,L1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
    __ ld_ptr(SP,(frame::register_save_words+2)*wordSize,L2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
    __ ld_ptr(SP,(frame::register_save_words+3)*wordSize,L3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
    __ retl();                  // Result in Rret is != 0; flags set to NZ
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
    __ delayed()->add(SP,4*wordSize,SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
    __ ret();                   // Result in Rret is != 0; flags set to NZ
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
    __ delayed()->restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
  // Called from MacroAssembler::verify_oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
  address generate_verify_oop_subroutine() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
    StubCodeMark mark(this, "StubRoutines", "verify_oop_stub");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
    __ verify_oop_subroutine();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
  static address disjoint_byte_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
  static address disjoint_short_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
  static address disjoint_int_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
  static address disjoint_long_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
  static address disjoint_oop_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
  static address byte_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
  static address short_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
  static address int_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
  static address long_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
  static address oop_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
  static address checkcast_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
  // Verify that a register contains clean 32-bits positive value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
  // (high 32-bits are 0) so it could be used in 64-bits shifts (sllx, srax).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
  //  Input:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
  //    Rint  -  32-bits value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
  //    Rtmp  -  scratch
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
  void assert_clean_int(Register Rint, Register Rtmp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
#if defined(ASSERT) && defined(_LP64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
    __ signx(Rint, Rtmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
    __ cmp(Rint, Rtmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
    __ breakpoint_trap(Assembler::notEqual, Assembler::xcc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
  //  Generate overlap test for array copy stubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
  //  Input:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
  //    O0    -  array1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
  //    O1    -  array2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
  //    O2    -  element count
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
  //  Kills temps:  O3, O4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
  void array_overlap_test(address no_overlap_target, int log2_elem_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
    assert(no_overlap_target != NULL, "must be generated");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
    array_overlap_test(no_overlap_target, NULL, log2_elem_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
  void array_overlap_test(Label& L_no_overlap, int log2_elem_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
    array_overlap_test(NULL, &L_no_overlap, log2_elem_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
  void array_overlap_test(address no_overlap_target, Label* NOLp, int log2_elem_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
    const Register from       = O0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
    const Register to         = O1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
    const Register count      = O2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
    const Register to_from    = O3; // to - from
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
    const Register byte_count = O4; // count << log2_elem_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
      __ subcc(to, from, to_from);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
      __ sll_ptr(count, log2_elem_size, byte_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
      if (NOLp == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
        __ brx(Assembler::lessEqualUnsigned, false, Assembler::pt, no_overlap_target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
      else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
        __ brx(Assembler::lessEqualUnsigned, false, Assembler::pt, (*NOLp));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
      __ delayed()->cmp(to_from, byte_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
      if (NOLp == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
        __ brx(Assembler::greaterEqual, false, Assembler::pt, no_overlap_target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
      else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
        __ brx(Assembler::greaterEqual, false, Assembler::pt, (*NOLp));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
  //  Generate pre-write barrier for array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
  //  Input:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
  //     addr     - register containing starting address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
  //     count    - register containing element count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
  //     tmp      - scratch register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
  //  The input registers are overwritten.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
  void gen_write_ref_array_pre_barrier(Register addr, Register count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
    BarrierSet* bs = Universe::heap()->barrier_set();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
    if (bs->has_write_ref_pre_barrier()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
      assert(bs->has_write_ref_array_pre_opt(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
             "Else unsupported barrier set.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
      __ save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
      // Save the necessary global regs... will be used after.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1040
      if (addr->is_global()) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1041
        __ mov(addr, L0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1042
      }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1043
      if (count->is_global()) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1044
        __ mov(count, L1);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1045
      }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1046
      __ mov(addr->after_save(), O0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
      // Get the count into O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
      __ call(CAST_FROM_FN_PTR(address, BarrierSet::static_write_ref_array_pre));
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1049
      __ delayed()->mov(count->after_save(), O1);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1050
      if (addr->is_global()) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1051
        __ mov(L0, addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1052
      }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1053
      if (count->is_global()) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1054
        __ mov(L1, count);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1055
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
      __ restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
  //  Generate post-write barrier for array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
  //  Input:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
  //     addr     - register containing starting address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
  //     count    - register containing element count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
  //     tmp      - scratch register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
  //  The input registers are overwritten.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
  void gen_write_ref_array_post_barrier(Register addr, Register count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
                                   Register tmp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
    BarrierSet* bs = Universe::heap()->barrier_set();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
    switch (bs->kind()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
      case BarrierSet::G1SATBCT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
      case BarrierSet::G1SATBCTLogging:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
        {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
          // Get some new fresh output registers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
          __ save_frame(0);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1079
          __ mov(addr->after_save(), O0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
          __ call(CAST_FROM_FN_PTR(address, BarrierSet::static_write_ref_array_post));
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1081
          __ delayed()->mov(count->after_save(), O1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
          __ restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
      case BarrierSet::CardTableModRef:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
      case BarrierSet::CardTableExtension:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
        {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
          CardTableModRefBS* ct = (CardTableModRefBS*)bs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
          assert(sizeof(*ct->byte_map_base) == sizeof(jbyte), "adjust this code");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
          assert_different_registers(addr, count, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
          Label L_loop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1094
          __ sll_ptr(count, LogBytesPerHeapOop, count);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1095
          __ sub(count, BytesPerHeapOop, count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
          __ add(count, addr, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
          // Use two shifts to clear out those low order two bits! (Cannot opt. into 1.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
          __ srl_ptr(addr, CardTableModRefBS::card_shift, addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
          __ srl_ptr(count, CardTableModRefBS::card_shift, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
          __ sub(count, addr, count);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
  1101
          AddressLiteral rs(ct->byte_map_base);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
  1102
          __ set(rs, tmp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
        __ BIND(L_loop);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
  1104
          __ stb(G0, tmp, addr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
          __ subcc(count, 1, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
          __ brx(Assembler::greaterEqual, false, Assembler::pt, L_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
          __ delayed()->add(addr, 1, addr);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
  1108
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
      case BarrierSet::ModRef:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
        break;
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
  1112
      default:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
        ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
  // Copy big chunks forward with shift
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
  // Inputs:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
  //   from      - source arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
  //   to        - destination array aligned to 8-bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
  //   count     - elements count to copy >= the count equivalent to 16 bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
  //   count_dec - elements count's decrement equivalent to 16 bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
  //   L_copy_bytes - copy exit label
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
  void copy_16_bytes_forward_with_shift(Register from, Register to,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
                     Register count, int count_dec, Label& L_copy_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
    Label L_loop, L_aligned_copy, L_copy_last_bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
    // if both arrays have the same alignment mod 8, do 8 bytes aligned copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
      __ andcc(from, 7, G1); // misaligned bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
      __ br(Assembler::zero, false, Assembler::pt, L_aligned_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
    const Register left_shift  = G1; // left  shift bit counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
    const Register right_shift = G5; // right shift bit counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
      __ sll(G1, LogBitsPerByte, left_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
      __ mov(64, right_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
      __ sub(right_shift, left_shift, right_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
    // Load 2 aligned 8-bytes chunks and use one from previous iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
    // to form 2 aligned 8-bytes chunks to store.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
      __ deccc(count, count_dec); // Pre-decrement 'count'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
      __ andn(from, 7, from);     // Align address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
      __ ldx(from, 0, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
      __ inc(from, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
      __ align(16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
    __ BIND(L_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
      __ ldx(from, 0, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
      __ deccc(count, count_dec); // Can we do next iteration after this one?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
      __ ldx(from, 8, G4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
      __ inc(to, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
      __ inc(from, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
      __ sllx(O3, left_shift,  O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
      __ srlx(O4, right_shift, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
      __ bset(G3, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
      __ stx(O3, to, -16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
      __ sllx(O4, left_shift,  O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
      __ srlx(G4, right_shift, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
      __ bset(G3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
      __ stx(O4, to, -8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
      __ brx(Assembler::greaterEqual, false, Assembler::pt, L_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
      __ delayed()->mov(G4, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
      __ inccc(count, count_dec>>1 ); // + 8 bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
      __ brx(Assembler::negative, true, Assembler::pn, L_copy_last_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
      __ delayed()->inc(count, count_dec>>1); // restore 'count'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
      // copy 8 bytes, part of them already loaded in O3
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
      __ ldx(from, 0, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
      __ inc(to, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
      __ inc(from, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
      __ sllx(O3, left_shift,  O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
      __ srlx(O4, right_shift, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
      __ bset(O3, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
      __ stx(G3, to, -8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
    __ BIND(L_copy_last_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
      __ srl(right_shift, LogBitsPerByte, right_shift); // misaligned bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
      __ br(Assembler::always, false, Assembler::pt, L_copy_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
      __ delayed()->sub(from, right_shift, from);       // restore address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
    __ BIND(L_aligned_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
  // Copy big chunks backward with shift
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
  // Inputs:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
  //   end_from  - source arrays end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
  //   end_to    - destination array end address aligned to 8-bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
  //   count     - elements count to copy >= the count equivalent to 16 bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
  //   count_dec - elements count's decrement equivalent to 16 bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
  //   L_aligned_copy - aligned copy exit label
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
  //   L_copy_bytes   - copy exit label
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
  void copy_16_bytes_backward_with_shift(Register end_from, Register end_to,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
                     Register count, int count_dec,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
                     Label& L_aligned_copy, Label& L_copy_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
    Label L_loop, L_copy_last_bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
    // if both arrays have the same alignment mod 8, do 8 bytes aligned copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
      __ andcc(end_from, 7, G1); // misaligned bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
      __ br(Assembler::zero, false, Assembler::pt, L_aligned_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
      __ delayed()->deccc(count, count_dec); // Pre-decrement 'count'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
    const Register left_shift  = G1; // left  shift bit counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
    const Register right_shift = G5; // right shift bit counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
      __ sll(G1, LogBitsPerByte, left_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
      __ mov(64, right_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
      __ sub(right_shift, left_shift, right_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
    // Load 2 aligned 8-bytes chunks and use one from previous iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
    // to form 2 aligned 8-bytes chunks to store.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
      __ andn(end_from, 7, end_from);     // Align address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
      __ ldx(end_from, 0, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
      __ align(16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
    __ BIND(L_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
      __ ldx(end_from, -8, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
      __ deccc(count, count_dec); // Can we do next iteration after this one?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
      __ ldx(end_from, -16, G4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
      __ dec(end_to, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
      __ dec(end_from, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
      __ srlx(O3, right_shift, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
      __ sllx(O4, left_shift,  G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
      __ bset(G3, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
      __ stx(O3, end_to, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
      __ srlx(O4, right_shift, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
      __ sllx(G4, left_shift,  G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
      __ bset(G3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
      __ stx(O4, end_to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
      __ brx(Assembler::greaterEqual, false, Assembler::pt, L_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
      __ delayed()->mov(G4, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
      __ inccc(count, count_dec>>1 ); // + 8 bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
      __ brx(Assembler::negative, true, Assembler::pn, L_copy_last_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
      __ delayed()->inc(count, count_dec>>1); // restore 'count'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
      // copy 8 bytes, part of them already loaded in O3
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
      __ ldx(end_from, -8, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
      __ dec(end_to, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
      __ dec(end_from, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
      __ srlx(O3, right_shift, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
      __ sllx(O4, left_shift,  G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
      __ bset(O3, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
      __ stx(G3, end_to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
    __ BIND(L_copy_last_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
      __ srl(left_shift, LogBitsPerByte, left_shift);    // misaligned bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
      __ br(Assembler::always, false, Assembler::pt, L_copy_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
      __ delayed()->add(end_from, left_shift, end_from); // restore address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
  //  Generate stub for disjoint byte copy.  If "aligned" is true, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
  //  "from" and "to" addresses are assumed to be heapword aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
  address generate_disjoint_byte_copy(bool aligned, const char * name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
    Label L_skip_alignment, L_align;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
    Label L_copy_byte, L_copy_byte_loop, L_exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
    const Register from      = O0;   // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
    const Register to        = O1;   // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
    const Register count     = O2;   // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
    const Register offset    = O5;   // offset from start of arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
    // O3, O4, G3, G4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
    assert_clean_int(count, O3);     // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
    if (!aligned)  disjoint_byte_copy_entry = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
    // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
    if (!aligned)  BLOCK_COMMENT("Entry:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
    // for short arrays, just do single element copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
    __ cmp(count, 23); // 16 + 7
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
    __ brx(Assembler::less, false, Assembler::pn, L_copy_byte);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
    __ delayed()->mov(G0, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
    if (aligned) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
      // 'aligned' == true when it is known statically during compilation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
      // of this arraycopy call site that both 'from' and 'to' addresses
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
      // are HeapWordSize aligned (see LibraryCallKit::basictype2arraycopy()).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
      //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
      // Aligned arrays have 4 bytes alignment in 32-bits VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
      // and 8 bytes - in 64-bits VM. So we do it only for 32-bits VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
      //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
#ifndef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
      // copy a 4-bytes word if necessary to align 'to' to 8 bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
      __ andcc(to, 7, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
      __ br(Assembler::zero, false, Assembler::pn, L_skip_alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
      __ delayed()->ld(from, 0, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
      __ inc(from, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
      __ inc(to, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
      __ dec(count, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
      __ st(O3, to, -4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
    __ BIND(L_skip_alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
      // copy bytes to align 'to' on 8 byte boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
      __ andcc(to, 7, G1); // misaligned bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
      __ br(Assembler::zero, false, Assembler::pt, L_skip_alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
      __ delayed()->neg(G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
      __ inc(G1, 8);       // bytes need to copy to next 8-bytes alignment
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
      __ sub(count, G1, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
    __ BIND(L_align);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
      __ ldub(from, 0, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
      __ deccc(G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
      __ inc(from);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
      __ stb(O3, to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
      __ br(Assembler::notZero, false, Assembler::pt, L_align);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
      __ delayed()->inc(to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
    __ BIND(L_skip_alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
    if (!aligned)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
      // Copy with shift 16 bytes per iteration if arrays do not have
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
      // the same alignment mod 8, otherwise fall through to the next
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
      // code for aligned copy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
      // The compare above (count >= 23) guarantes 'count' >= 16 bytes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
      // Also jump over aligned copy after the copy with shift completed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
      copy_16_bytes_forward_with_shift(from, to, count, 16, L_copy_byte);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
    // Both array are 8 bytes aligned, copy 16 bytes at a time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
      __ and3(count, 7, G4); // Save count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
      __ srl(count, 3, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
     generate_disjoint_long_copy_core(aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
      __ mov(G4, count);     // Restore count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
    // copy tailing bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
    __ BIND(L_copy_byte);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
      __ br_zero(Assembler::zero, false, Assembler::pt, count, L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
      __ align(16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
    __ BIND(L_copy_byte_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
      __ ldub(from, offset, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
      __ deccc(count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
      __ stb(O3, to, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
      __ brx(Assembler::notZero, false, Assembler::pt, L_copy_byte_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
      __ delayed()->inc(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
    __ BIND(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
      // O3, O4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
      inc_counter_np(SharedRuntime::_jbyte_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
      __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
      __ delayed()->mov(G0, O0); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
  //  Generate stub for conjoint byte copy.  If "aligned" is true, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
  //  "from" and "to" addresses are assumed to be heapword aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
  address generate_conjoint_byte_copy(bool aligned, const char * name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
    // Do reverse copy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
    address nooverlap_target = aligned ?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
        StubRoutines::arrayof_jbyte_disjoint_arraycopy() :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
        disjoint_byte_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
    Label L_skip_alignment, L_align, L_aligned_copy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
    Label L_copy_byte, L_copy_byte_loop, L_exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
    const Register from      = O0;   // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
    const Register to        = O1;   // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
    const Register count     = O2;   // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
    const Register end_from  = from; // source array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
    const Register end_to    = to;   // destination array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
    assert_clean_int(count, O3);     // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
    if (!aligned)  byte_copy_entry = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
    // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
    if (!aligned)  BLOCK_COMMENT("Entry:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
    array_overlap_test(nooverlap_target, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
    __ add(to, count, end_to);       // offset after last copied element
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
    // for short arrays, just do single element copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
    __ cmp(count, 23); // 16 + 7
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
    __ brx(Assembler::less, false, Assembler::pn, L_copy_byte);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
    __ delayed()->add(from, count, end_from);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
      // Align end of arrays since they could be not aligned even
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
      // when arrays itself are aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
      // copy bytes to align 'end_to' on 8 byte boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
      __ andcc(end_to, 7, G1); // misaligned bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
      __ br(Assembler::zero, false, Assembler::pt, L_skip_alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
      __ sub(count, G1, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
    __ BIND(L_align);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
      __ dec(end_from);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
      __ dec(end_to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
      __ ldub(end_from, 0, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
      __ deccc(G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
      __ brx(Assembler::notZero, false, Assembler::pt, L_align);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
      __ delayed()->stb(O3, end_to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
    __ BIND(L_skip_alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
    if (aligned) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
      // Both arrays are aligned to 8-bytes in 64-bits VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
      // The 'count' is decremented in copy_16_bytes_backward_with_shift()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
      // in unaligned case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
      __ dec(count, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
    } else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1437
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1438
      // Copy with shift 16 bytes per iteration if arrays do not have
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
      // the same alignment mod 8, otherwise jump to the next
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
      // code for aligned copy (and substracting 16 from 'count' before jump).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
      // The compare above (count >= 11) guarantes 'count' >= 16 bytes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
      // Also jump over aligned copy after the copy with shift completed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
      copy_16_bytes_backward_with_shift(end_from, end_to, count, 16,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
                                        L_aligned_copy, L_copy_byte);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
    // copy 4 elements (16 bytes) at a time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
      __ align(16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
    __ BIND(L_aligned_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
      __ dec(end_from, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
      __ ldx(end_from, 8, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
      __ ldx(end_from, 0, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
      __ dec(end_to, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
      __ deccc(count, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
      __ stx(O3, end_to, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
      __ brx(Assembler::greaterEqual, false, Assembler::pt, L_aligned_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
      __ delayed()->stx(O4, end_to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
      __ inc(count, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
    // copy 1 element (2 bytes) at a time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
    __ BIND(L_copy_byte);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
      __ br_zero(Assembler::zero, false, Assembler::pt, count, L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
      __ align(16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
    __ BIND(L_copy_byte_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
      __ dec(end_from);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
      __ dec(end_to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
      __ ldub(end_from, 0, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
      __ deccc(count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
      __ brx(Assembler::greater, false, Assembler::pt, L_copy_byte_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
      __ delayed()->stb(O4, end_to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
    __ BIND(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
    // O3, O4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
    inc_counter_np(SharedRuntime::_jbyte_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
    __ delayed()->mov(G0, O0); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
  //  Generate stub for disjoint short copy.  If "aligned" is true, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
  //  "from" and "to" addresses are assumed to be heapword aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
  address generate_disjoint_short_copy(bool aligned, const char * name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
    Label L_skip_alignment, L_skip_alignment2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
    Label L_copy_2_bytes, L_copy_2_bytes_loop, L_exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
    const Register from      = O0;   // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
    const Register to        = O1;   // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
    const Register count     = O2;   // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
    const Register offset    = O5;   // offset from start of arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
    // O3, O4, G3, G4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
    assert_clean_int(count, O3);     // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
    if (!aligned)  disjoint_short_copy_entry = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
    // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
    if (!aligned)  BLOCK_COMMENT("Entry:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
    // for short arrays, just do single element copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1511
    __ cmp(count, 11); // 8 + 3  (22 bytes)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1512
    __ brx(Assembler::less, false, Assembler::pn, L_copy_2_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
    __ delayed()->mov(G0, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
    if (aligned) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1516
      // 'aligned' == true when it is known statically during compilation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
      // of this arraycopy call site that both 'from' and 'to' addresses
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
      // are HeapWordSize aligned (see LibraryCallKit::basictype2arraycopy()).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
      //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1520
      // Aligned arrays have 4 bytes alignment in 32-bits VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1521
      // and 8 bytes - in 64-bits VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1522
      //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1523
#ifndef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1524
      // copy a 2-elements word if necessary to align 'to' to 8 bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1525
      __ andcc(to, 7, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1526
      __ br(Assembler::zero, false, Assembler::pt, L_skip_alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1527
      __ delayed()->ld(from, 0, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1528
      __ inc(from, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1529
      __ inc(to, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1530
      __ dec(count, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1531
      __ st(O3, to, -4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1532
    __ BIND(L_skip_alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1533
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1534
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1535
      // copy 1 element if necessary to align 'to' on an 4 bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1536
      __ andcc(to, 3, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1537
      __ br(Assembler::zero, false, Assembler::pt, L_skip_alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1538
      __ delayed()->lduh(from, 0, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1539
      __ inc(from, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1540
      __ inc(to, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1541
      __ dec(count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1542
      __ sth(O3, to, -2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
    __ BIND(L_skip_alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1544
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1545
      // copy 2 elements to align 'to' on an 8 byte boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1546
      __ andcc(to, 7, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1547
      __ br(Assembler::zero, false, Assembler::pn, L_skip_alignment2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1548
      __ delayed()->lduh(from, 0, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1549
      __ dec(count, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1550
      __ lduh(from, 2, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1551
      __ inc(from, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1552
      __ inc(to, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1553
      __ sth(O3, to, -4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1554
      __ sth(O4, to, -2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1555
    __ BIND(L_skip_alignment2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1556
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1557
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1558
    if (!aligned)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1559
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
      // Copy with shift 16 bytes per iteration if arrays do not have
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1562
      // the same alignment mod 8, otherwise fall through to the next
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1563
      // code for aligned copy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1564
      // The compare above (count >= 11) guarantes 'count' >= 16 bytes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1565
      // Also jump over aligned copy after the copy with shift completed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1566
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1567
      copy_16_bytes_forward_with_shift(from, to, count, 8, L_copy_2_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1568
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1569
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
    // Both array are 8 bytes aligned, copy 16 bytes at a time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
      __ and3(count, 3, G4); // Save
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
      __ srl(count, 2, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
     generate_disjoint_long_copy_core(aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
      __ mov(G4, count); // restore
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
    // copy 1 element at a time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
    __ BIND(L_copy_2_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
      __ br_zero(Assembler::zero, false, Assembler::pt, count, L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1580
      __ align(16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1581
    __ BIND(L_copy_2_bytes_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1582
      __ lduh(from, offset, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1583
      __ deccc(count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1584
      __ sth(O3, to, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1585
      __ brx(Assembler::notZero, false, Assembler::pt, L_copy_2_bytes_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1586
      __ delayed()->inc(offset, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1587
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1588
    __ BIND(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1589
      // O3, O4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1590
      inc_counter_np(SharedRuntime::_jshort_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1591
      __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1592
      __ delayed()->mov(G0, O0); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1593
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1594
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1595
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1596
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1597
  //  Generate stub for conjoint short copy.  If "aligned" is true, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1598
  //  "from" and "to" addresses are assumed to be heapword aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1599
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1600
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1601
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1602
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1603
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1604
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1605
  address generate_conjoint_short_copy(bool aligned, const char * name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1606
    // Do reverse copy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1607
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1608
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1609
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1610
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1611
    address nooverlap_target = aligned ?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1612
        StubRoutines::arrayof_jshort_disjoint_arraycopy() :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1613
        disjoint_short_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1614
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1615
    Label L_skip_alignment, L_skip_alignment2, L_aligned_copy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1616
    Label L_copy_2_bytes, L_copy_2_bytes_loop, L_exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1617
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1618
    const Register from      = O0;   // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1619
    const Register to        = O1;   // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1620
    const Register count     = O2;   // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1621
    const Register end_from  = from; // source array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1622
    const Register end_to    = to;   // destination array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1623
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1624
    const Register byte_count = O3;  // bytes count to copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1625
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1626
    assert_clean_int(count, O3);     // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1627
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1628
    if (!aligned)  short_copy_entry = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1629
    // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1630
    if (!aligned)  BLOCK_COMMENT("Entry:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1631
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1632
    array_overlap_test(nooverlap_target, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1633
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1634
    __ sllx(count, LogBytesPerShort, byte_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1635
    __ add(to, byte_count, end_to);  // offset after last copied element
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1636
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1637
    // for short arrays, just do single element copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1638
    __ cmp(count, 11); // 8 + 3  (22 bytes)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1639
    __ brx(Assembler::less, false, Assembler::pn, L_copy_2_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1640
    __ delayed()->add(from, byte_count, end_from);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1641
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1642
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1643
      // Align end of arrays since they could be not aligned even
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1644
      // when arrays itself are aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1645
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1646
      // copy 1 element if necessary to align 'end_to' on an 4 bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1647
      __ andcc(end_to, 3, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1648
      __ br(Assembler::zero, false, Assembler::pt, L_skip_alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1649
      __ delayed()->lduh(end_from, -2, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1650
      __ dec(end_from, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1651
      __ dec(end_to, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1652
      __ dec(count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1653
      __ sth(O3, end_to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1654
    __ BIND(L_skip_alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1655
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1656
      // copy 2 elements to align 'end_to' on an 8 byte boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1657
      __ andcc(end_to, 7, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1658
      __ br(Assembler::zero, false, Assembler::pn, L_skip_alignment2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1659
      __ delayed()->lduh(end_from, -2, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1660
      __ dec(count, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1661
      __ lduh(end_from, -4, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1662
      __ dec(end_from, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1663
      __ dec(end_to, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1664
      __ sth(O3, end_to, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1665
      __ sth(O4, end_to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1666
    __ BIND(L_skip_alignment2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1667
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1668
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1669
    if (aligned) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1670
      // Both arrays are aligned to 8-bytes in 64-bits VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1671
      // The 'count' is decremented in copy_16_bytes_backward_with_shift()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1672
      // in unaligned case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1673
      __ dec(count, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1674
    } else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1675
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1676
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1677
      // Copy with shift 16 bytes per iteration if arrays do not have
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1678
      // the same alignment mod 8, otherwise jump to the next
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1679
      // code for aligned copy (and substracting 8 from 'count' before jump).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1680
      // The compare above (count >= 11) guarantes 'count' >= 16 bytes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1681
      // Also jump over aligned copy after the copy with shift completed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1682
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1683
      copy_16_bytes_backward_with_shift(end_from, end_to, count, 8,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1684
                                        L_aligned_copy, L_copy_2_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1685
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1686
    // copy 4 elements (16 bytes) at a time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1687
      __ align(16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1688
    __ BIND(L_aligned_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1689
      __ dec(end_from, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1690
      __ ldx(end_from, 8, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1691
      __ ldx(end_from, 0, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1692
      __ dec(end_to, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1693
      __ deccc(count, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1694
      __ stx(O3, end_to, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1695
      __ brx(Assembler::greaterEqual, false, Assembler::pt, L_aligned_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1696
      __ delayed()->stx(O4, end_to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1697
      __ inc(count, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1698
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1699
    // copy 1 element (2 bytes) at a time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1700
    __ BIND(L_copy_2_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1701
      __ br_zero(Assembler::zero, false, Assembler::pt, count, L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1702
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1703
    __ BIND(L_copy_2_bytes_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1704
      __ dec(end_from, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1705
      __ dec(end_to, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1706
      __ lduh(end_from, 0, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1707
      __ deccc(count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1708
      __ brx(Assembler::greater, false, Assembler::pt, L_copy_2_bytes_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1709
      __ delayed()->sth(O4, end_to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1710
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1711
    __ BIND(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1712
    // O3, O4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1713
    inc_counter_np(SharedRuntime::_jshort_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1714
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1715
    __ delayed()->mov(G0, O0); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1716
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1717
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1718
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1719
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1720
  //  Generate core code for disjoint int copy (and oop copy on 32-bit).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1721
  //  If "aligned" is true, the "from" and "to" addresses are assumed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1722
  //  to be heapword aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1723
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1724
  // Arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1725
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1726
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1727
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1728
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1729
  void generate_disjoint_int_copy_core(bool aligned) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1730
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1731
    Label L_skip_alignment, L_aligned_copy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1732
    Label L_copy_16_bytes,  L_copy_4_bytes, L_copy_4_bytes_loop, L_exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1733
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1734
    const Register from      = O0;   // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1735
    const Register to        = O1;   // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1736
    const Register count     = O2;   // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1737
    const Register offset    = O5;   // offset from start of arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1738
    // O3, O4, G3, G4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1739
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1740
    // 'aligned' == true when it is known statically during compilation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1741
    // of this arraycopy call site that both 'from' and 'to' addresses
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1742
    // are HeapWordSize aligned (see LibraryCallKit::basictype2arraycopy()).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1743
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1744
    // Aligned arrays have 4 bytes alignment in 32-bits VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1745
    // and 8 bytes - in 64-bits VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1746
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1747
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1748
    if (!aligned)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1749
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1750
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1751
      // The next check could be put under 'ifndef' since the code in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1752
      // generate_disjoint_long_copy_core() has own checks and set 'offset'.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1753
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1754
      // for short arrays, just do single element copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1755
      __ cmp(count, 5); // 4 + 1 (20 bytes)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1756
      __ brx(Assembler::lessEqual, false, Assembler::pn, L_copy_4_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1757
      __ delayed()->mov(G0, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1758
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1759
      // copy 1 element to align 'to' on an 8 byte boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1760
      __ andcc(to, 7, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1761
      __ br(Assembler::zero, false, Assembler::pt, L_skip_alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1762
      __ delayed()->ld(from, 0, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1763
      __ inc(from, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1764
      __ inc(to, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1765
      __ dec(count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1766
      __ st(O3, to, -4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1767
    __ BIND(L_skip_alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1768
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1769
    // if arrays have same alignment mod 8, do 4 elements copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1770
      __ andcc(from, 7, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1771
      __ br(Assembler::zero, false, Assembler::pt, L_aligned_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1772
      __ delayed()->ld(from, 0, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1773
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1774
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1775
    // Load 2 aligned 8-bytes chunks and use one from previous iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1776
    // to form 2 aligned 8-bytes chunks to store.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1777
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1778
    // copy_16_bytes_forward_with_shift() is not used here since this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1779
    // code is more optimal.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1780
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1781
    // copy with shift 4 elements (16 bytes) at a time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1782
      __ dec(count, 4);   // The cmp at the beginning guaranty count >= 4
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1783
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1784
      __ align(16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1785
    __ BIND(L_copy_16_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1786
      __ ldx(from, 4, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1787
      __ deccc(count, 4); // Can we do next iteration after this one?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1788
      __ ldx(from, 12, G4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1789
      __ inc(to, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1790
      __ inc(from, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1791
      __ sllx(O3, 32, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1792
      __ srlx(O4, 32, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1793
      __ bset(G3, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1794
      __ stx(O3, to, -16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1795
      __ sllx(O4, 32, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1796
      __ srlx(G4, 32, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1797
      __ bset(G3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1798
      __ stx(O4, to, -8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1799
      __ brx(Assembler::greaterEqual, false, Assembler::pt, L_copy_16_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1800
      __ delayed()->mov(G4, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1801
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1802
      __ br(Assembler::always, false, Assembler::pt, L_copy_4_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1803
      __ delayed()->inc(count, 4); // restore 'count'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1804
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1805
    __ BIND(L_aligned_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1806
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1807
    // copy 4 elements (16 bytes) at a time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1808
      __ and3(count, 1, G4); // Save
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1809
      __ srl(count, 1, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1810
     generate_disjoint_long_copy_core(aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1811
      __ mov(G4, count);     // Restore
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1812
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1813
    // copy 1 element at a time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1814
    __ BIND(L_copy_4_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1815
      __ br_zero(Assembler::zero, false, Assembler::pt, count, L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1816
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1817
    __ BIND(L_copy_4_bytes_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1818
      __ ld(from, offset, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1819
      __ deccc(count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1820
      __ st(O3, to, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1821
      __ brx(Assembler::notZero, false, Assembler::pt, L_copy_4_bytes_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1822
      __ delayed()->inc(offset, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1823
    __ BIND(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1824
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1825
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1826
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1827
  //  Generate stub for disjoint int copy.  If "aligned" is true, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1828
  //  "from" and "to" addresses are assumed to be heapword aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1829
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1830
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1831
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1832
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1833
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1834
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1835
  address generate_disjoint_int_copy(bool aligned, const char * name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1836
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1837
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1838
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1839
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1840
    const Register count = O2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1841
    assert_clean_int(count, O3);     // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1842
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1843
    if (!aligned)  disjoint_int_copy_entry = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1844
    // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1845
    if (!aligned)  BLOCK_COMMENT("Entry:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1846
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1847
    generate_disjoint_int_copy_core(aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1848
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1849
    // O3, O4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1850
    inc_counter_np(SharedRuntime::_jint_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1851
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1852
    __ delayed()->mov(G0, O0); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1853
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1854
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1855
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1856
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1857
  //  Generate core code for conjoint int copy (and oop copy on 32-bit).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1858
  //  If "aligned" is true, the "from" and "to" addresses are assumed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1859
  //  to be heapword aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1860
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1861
  // Arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1862
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1863
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1864
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1865
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1866
  void generate_conjoint_int_copy_core(bool aligned) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1867
    // Do reverse copy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1868
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1869
    Label L_skip_alignment, L_aligned_copy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1870
    Label L_copy_16_bytes,  L_copy_4_bytes, L_copy_4_bytes_loop, L_exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1871
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1872
    const Register from      = O0;   // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1873
    const Register to        = O1;   // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1874
    const Register count     = O2;   // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1875
    const Register end_from  = from; // source array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1876
    const Register end_to    = to;   // destination array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1877
    // O3, O4, O5, G3 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1878
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1879
    const Register byte_count = O3;  // bytes count to copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1880
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1881
      __ sllx(count, LogBytesPerInt, byte_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1882
      __ add(to, byte_count, end_to); // offset after last copied element
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1883
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1884
      __ cmp(count, 5); // for short arrays, just do single element copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1885
      __ brx(Assembler::lessEqual, false, Assembler::pn, L_copy_4_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1886
      __ delayed()->add(from, byte_count, end_from);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1887
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1888
    // copy 1 element to align 'to' on an 8 byte boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1889
      __ andcc(end_to, 7, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1890
      __ br(Assembler::zero, false, Assembler::pt, L_skip_alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1891
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1892
      __ dec(count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1893
      __ dec(end_from, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1894
      __ dec(end_to,   4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1895
      __ ld(end_from, 0, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1896
      __ st(O4, end_to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1897
    __ BIND(L_skip_alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1898
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1899
    // Check if 'end_from' and 'end_to' has the same alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1900
      __ andcc(end_from, 7, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1901
      __ br(Assembler::zero, false, Assembler::pt, L_aligned_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1902
      __ delayed()->dec(count, 4); // The cmp at the start guaranty cnt >= 4
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1903
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1904
    // copy with shift 4 elements (16 bytes) at a time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1905
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1906
    // Load 2 aligned 8-bytes chunks and use one from previous iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1907
    // to form 2 aligned 8-bytes chunks to store.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1908
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1909
      __ ldx(end_from, -4, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1910
      __ align(16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1911
    __ BIND(L_copy_16_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1912
      __ ldx(end_from, -12, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1913
      __ deccc(count, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1914
      __ ldx(end_from, -20, O5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1915
      __ dec(end_to, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1916
      __ dec(end_from, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1917
      __ srlx(O3, 32, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1918
      __ sllx(O4, 32, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1919
      __ bset(G3, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1920
      __ stx(O3, end_to, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1921
      __ srlx(O4, 32, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1922
      __ sllx(O5, 32, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1923
      __ bset(O4, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1924
      __ stx(G3, end_to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1925
      __ brx(Assembler::greaterEqual, false, Assembler::pt, L_copy_16_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1926
      __ delayed()->mov(O5, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1927
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1928
      __ br(Assembler::always, false, Assembler::pt, L_copy_4_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1929
      __ delayed()->inc(count, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1930
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1931
    // copy 4 elements (16 bytes) at a time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1932
      __ align(16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1933
    __ BIND(L_aligned_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1934
      __ dec(end_from, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1935
      __ ldx(end_from, 8, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1936
      __ ldx(end_from, 0, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1937
      __ dec(end_to, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1938
      __ deccc(count, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1939
      __ stx(O3, end_to, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1940
      __ brx(Assembler::greaterEqual, false, Assembler::pt, L_aligned_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1941
      __ delayed()->stx(O4, end_to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1942
      __ inc(count, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1943
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1944
    // copy 1 element (4 bytes) at a time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1945
    __ BIND(L_copy_4_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1946
      __ br_zero(Assembler::zero, false, Assembler::pt, count, L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1947
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1948
    __ BIND(L_copy_4_bytes_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1949
      __ dec(end_from, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1950
      __ dec(end_to, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1951
      __ ld(end_from, 0, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1952
      __ deccc(count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1953
      __ brx(Assembler::greater, false, Assembler::pt, L_copy_4_bytes_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1954
      __ delayed()->st(O4, end_to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1955
    __ BIND(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1956
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1957
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1958
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1959
  //  Generate stub for conjoint int copy.  If "aligned" is true, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1960
  //  "from" and "to" addresses are assumed to be heapword aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1961
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1962
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1963
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1964
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1965
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1966
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1967
  address generate_conjoint_int_copy(bool aligned, const char * name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1968
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1969
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1970
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1971
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1972
    address nooverlap_target = aligned ?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1973
        StubRoutines::arrayof_jint_disjoint_arraycopy() :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1974
        disjoint_int_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1975
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1976
    assert_clean_int(O2, O3);     // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1977
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1978
    if (!aligned)  int_copy_entry = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1979
    // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1980
    if (!aligned)  BLOCK_COMMENT("Entry:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1981
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1982
    array_overlap_test(nooverlap_target, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1983
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1984
    generate_conjoint_int_copy_core(aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1985
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1986
    // O3, O4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1987
    inc_counter_np(SharedRuntime::_jint_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1988
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1989
    __ delayed()->mov(G0, O0); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1990
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1991
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1992
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1993
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1994
  //  Generate core code for disjoint long copy (and oop copy on 64-bit).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1995
  //  "aligned" is ignored, because we must make the stronger
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1996
  //  assumption that both addresses are always 64-bit aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1997
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1998
  // Arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1999
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2000
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2001
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2002
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2003
  void generate_disjoint_long_copy_core(bool aligned) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2004
    Label L_copy_8_bytes, L_copy_16_bytes, L_exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2005
    const Register from    = O0;  // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2006
    const Register to      = O1;  // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2007
    const Register count   = O2;  // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2008
    const Register offset0 = O4;  // element offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2009
    const Register offset8 = O5;  // next element offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2010
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2011
      __ deccc(count, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2012
      __ mov(G0, offset0);   // offset from start of arrays (0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2013
      __ brx(Assembler::negative, false, Assembler::pn, L_copy_8_bytes );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2014
      __ delayed()->add(offset0, 8, offset8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2015
      __ align(16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2016
    __ BIND(L_copy_16_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2017
      __ ldx(from, offset0, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2018
      __ ldx(from, offset8, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2019
      __ deccc(count, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2020
      __ stx(O3, to, offset0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2021
      __ inc(offset0, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2022
      __ stx(G3, to, offset8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2023
      __ brx(Assembler::greaterEqual, false, Assembler::pt, L_copy_16_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2024
      __ delayed()->inc(offset8, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2025
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2026
    __ BIND(L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2027
      __ inccc(count, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2028
      __ brx(Assembler::zero, true, Assembler::pn, L_exit );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2029
      __ delayed()->mov(offset0, offset8); // Set O5 used by other stubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2030
      __ ldx(from, offset0, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2031
      __ stx(O3, to, offset0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2032
    __ BIND(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2033
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2034
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2035
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2036
  //  Generate stub for disjoint long copy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2037
  //  "aligned" is ignored, because we must make the stronger
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2038
  //  assumption that both addresses are always 64-bit aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2039
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2040
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2041
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2042
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2043
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2044
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2045
  address generate_disjoint_long_copy(bool aligned, const char * name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2046
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2047
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2048
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2049
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2050
    assert_clean_int(O2, O3);     // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2051
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2052
    if (!aligned)  disjoint_long_copy_entry = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2053
    // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2054
    if (!aligned)  BLOCK_COMMENT("Entry:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2055
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2056
    generate_disjoint_long_copy_core(aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2057
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2058
    // O3, O4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2059
    inc_counter_np(SharedRuntime::_jlong_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2060
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2061
    __ delayed()->mov(G0, O0); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2062
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2063
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2064
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2065
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2066
  //  Generate core code for conjoint long copy (and oop copy on 64-bit).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2067
  //  "aligned" is ignored, because we must make the stronger
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2068
  //  assumption that both addresses are always 64-bit aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2069
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2070
  // Arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2071
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2072
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2073
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2074
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2075
  void generate_conjoint_long_copy_core(bool aligned) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2076
    // Do reverse copy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2077
    Label L_copy_8_bytes, L_copy_16_bytes, L_exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2078
    const Register from    = O0;  // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2079
    const Register to      = O1;  // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2080
    const Register count   = O2;  // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2081
    const Register offset8 = O4;  // element offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2082
    const Register offset0 = O5;  // previous element offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2083
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2084
      __ subcc(count, 1, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2085
      __ brx(Assembler::lessEqual, false, Assembler::pn, L_copy_8_bytes );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2086
      __ delayed()->sllx(count, LogBytesPerLong, offset8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2087
      __ sub(offset8, 8, offset0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2088
      __ align(16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2089
    __ BIND(L_copy_16_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2090
      __ ldx(from, offset8, O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2091
      __ ldx(from, offset0, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2092
      __ stx(O2, to, offset8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2093
      __ deccc(offset8, 16);      // use offset8 as counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2094
      __ stx(O3, to, offset0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2095
      __ brx(Assembler::greater, false, Assembler::pt, L_copy_16_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2096
      __ delayed()->dec(offset0, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2097
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2098
    __ BIND(L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2099
      __ brx(Assembler::negative, false, Assembler::pn, L_exit );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2100
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2101
      __ ldx(from, 0, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2102
      __ stx(O3, to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2103
    __ BIND(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2104
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2105
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2106
  //  Generate stub for conjoint long copy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2107
  //  "aligned" is ignored, because we must make the stronger
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2108
  //  assumption that both addresses are always 64-bit aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2109
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2110
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2111
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2112
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2113
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2114
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2115
  address generate_conjoint_long_copy(bool aligned, const char * name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2116
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2117
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2118
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2119
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2120
    assert(!aligned, "usage");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2121
    address nooverlap_target = disjoint_long_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2122
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2123
    assert_clean_int(O2, O3);     // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2124
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2125
    if (!aligned)  long_copy_entry = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2126
    // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2127
    if (!aligned)  BLOCK_COMMENT("Entry:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2128
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2129
    array_overlap_test(nooverlap_target, 3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2130
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2131
    generate_conjoint_long_copy_core(aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2132
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2133
    // O3, O4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2134
    inc_counter_np(SharedRuntime::_jlong_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2135
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2136
    __ delayed()->mov(G0, O0); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2137
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2138
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2139
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2140
  //  Generate stub for disjoint oop copy.  If "aligned" is true, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2141
  //  "from" and "to" addresses are assumed to be heapword aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2142
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2143
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2144
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2145
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2146
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2147
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2148
  address generate_disjoint_oop_copy(bool aligned, const char * name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2149
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2150
    const Register from  = O0;  // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2151
    const Register to    = O1;  // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2152
    const Register count = O2;  // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2153
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2154
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2155
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2156
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2157
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2158
    assert_clean_int(count, O3);     // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2159
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2160
    if (!aligned)  disjoint_oop_copy_entry = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2161
    // caller can pass a 64-bit byte count here
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2162
    if (!aligned)  BLOCK_COMMENT("Entry:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2163
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2164
    // save arguments for barrier generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2165
    __ mov(to, G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2166
    __ mov(count, G5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2167
    gen_write_ref_array_pre_barrier(G1, G5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2168
  #ifdef _LP64
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2169
    assert_clean_int(count, O3);     // Make sure 'count' is clean int.
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2170
    if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2171
      generate_disjoint_int_copy_core(aligned);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2172
    } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2173
      generate_disjoint_long_copy_core(aligned);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2174
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2175
  #else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2176
    generate_disjoint_int_copy_core(aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2177
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2178
    // O0 is used as temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2179
    gen_write_ref_array_post_barrier(G1, G5, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2180
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2181
    // O3, O4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2182
    inc_counter_np(SharedRuntime::_oop_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2183
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2184
    __ delayed()->mov(G0, O0); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2185
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2186
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2187
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2188
  //  Generate stub for conjoint oop copy.  If "aligned" is true, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2189
  //  "from" and "to" addresses are assumed to be heapword aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2190
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2191
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2192
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2193
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2194
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2195
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2196
  address generate_conjoint_oop_copy(bool aligned, const char * name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2197
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2198
    const Register from  = O0;  // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2199
    const Register to    = O1;  // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2200
    const Register count = O2;  // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2201
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2202
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2203
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2204
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2205
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2206
    assert_clean_int(count, O3);     // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2207
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2208
    if (!aligned)  oop_copy_entry = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2209
    // caller can pass a 64-bit byte count here
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2210
    if (!aligned)  BLOCK_COMMENT("Entry:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2211
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2212
    // save arguments for barrier generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2213
    __ mov(to, G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2214
    __ mov(count, G5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2215
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2216
    gen_write_ref_array_pre_barrier(G1, G5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2217
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2218
    address nooverlap_target = aligned ?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2219
        StubRoutines::arrayof_oop_disjoint_arraycopy() :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2220
        disjoint_oop_copy_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2221
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2222
    array_overlap_test(nooverlap_target, LogBytesPerHeapOop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2223
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2224
  #ifdef _LP64
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2225
    if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2226
      generate_conjoint_int_copy_core(aligned);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2227
    } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2228
      generate_conjoint_long_copy_core(aligned);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2229
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2230
  #else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2231
    generate_conjoint_int_copy_core(aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2232
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2233
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2234
    // O0 is used as temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2235
    gen_write_ref_array_post_barrier(G1, G5, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2236
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2237
    // O3, O4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2238
    inc_counter_np(SharedRuntime::_oop_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2239
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2240
    __ delayed()->mov(G0, O0); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2241
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2242
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2243
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2244
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2245
  // Helper for generating a dynamic type check.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2246
  // Smashes only the given temp registers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2247
  void generate_type_check(Register sub_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2248
                           Register super_check_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2249
                           Register super_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2250
                           Register temp,
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2251
                           Label& L_success) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2252
    assert_different_registers(sub_klass, super_check_offset, super_klass, temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2253
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2254
    BLOCK_COMMENT("type_check:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2255
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2256
    Label L_miss, L_pop_to_miss;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2257
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2258
    assert_clean_int(super_check_offset, temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2259
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2260
    __ check_klass_subtype_fast_path(sub_klass, super_klass, temp, noreg,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2261
                                     &L_success, &L_miss, NULL,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2262
                                     super_check_offset);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2263
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2264
    BLOCK_COMMENT("type_check_slow_path:");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2265
    __ save_frame(0);
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2266
    __ check_klass_subtype_slow_path(sub_klass->after_save(),
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2267
                                     super_klass->after_save(),
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2268
                                     L0, L1, L2, L4,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2269
                                     NULL, &L_pop_to_miss);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2270
    __ ba(false, L_success);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2271
    __ delayed()->restore();
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2272
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2273
    __ bind(L_pop_to_miss);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2274
    __ restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2275
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2276
    // Fall through on failure!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2277
    __ BIND(L_miss);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2278
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2279
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2280
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2281
  //  Generate stub for checked oop copy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2282
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2283
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2284
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2285
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2286
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2287
  //      ckoff: O3 (super_check_offset)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2288
  //      ckval: O4 (super_klass)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2289
  //      ret:   O0 zero for success; (-1^K) where K is partial transfer count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2290
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2291
  address generate_checkcast_copy(const char* name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2292
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2293
    const Register O0_from   = O0;      // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2294
    const Register O1_to     = O1;      // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2295
    const Register O2_count  = O2;      // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2296
    const Register O3_ckoff  = O3;      // super_check_offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2297
    const Register O4_ckval  = O4;      // super_klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2298
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2299
    const Register O5_offset = O5;      // loop var, with stride wordSize
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2300
    const Register G1_remain = G1;      // loop var, with stride -1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2301
    const Register G3_oop    = G3;      // actual oop copied
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2302
    const Register G4_klass  = G4;      // oop._klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2303
    const Register G5_super  = G5;      // oop._klass._primary_supers[ckval]
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2304
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2305
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2306
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2307
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2308
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  2309
    gen_write_ref_array_pre_barrier(O1, O2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2310
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2311
#ifdef ASSERT
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2312
    // We sometimes save a frame (see generate_type_check below).
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2313
    // If this will cause trouble, let's fail now instead of later.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2314
    __ save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2315
    __ restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2316
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2317
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2318
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2319
    // caller guarantees that the arrays really are different
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2320
    // otherwise, we would have to make conjoint checks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2321
    { Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2322
      __ mov(O3, G1);           // spill: overlap test smashes O3
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2323
      __ mov(O4, G4);           // spill: overlap test smashes O4
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2324
      array_overlap_test(L, LogBytesPerHeapOop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2325
      __ stop("checkcast_copy within a single array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2326
      __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2327
      __ mov(G1, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2328
      __ mov(G4, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2329
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2330
#endif //ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2331
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2332
    assert_clean_int(O2_count, G1);     // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2333
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2334
    checkcast_copy_entry = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2335
    // caller can pass a 64-bit byte count here (from generic stub)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2336
    BLOCK_COMMENT("Entry:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2337
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2338
    Label load_element, store_element, do_card_marks, fail, done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2339
    __ addcc(O2_count, 0, G1_remain);   // initialize loop index, and test it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2340
    __ brx(Assembler::notZero, false, Assembler::pt, load_element);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2341
    __ delayed()->mov(G0, O5_offset);   // offset from start of arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2342
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2343
    // Empty array:  Nothing to do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2344
    inc_counter_np(SharedRuntime::_checkcast_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2345
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2346
    __ delayed()->set(0, O0);           // return 0 on (trivial) success
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2347
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2348
    // ======== begin loop ========
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2349
    // (Loop is rotated; its entry is load_element.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2350
    // Loop variables:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2351
    //   (O5 = 0; ; O5 += wordSize) --- offset from src, dest arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2352
    //   (O2 = len; O2 != 0; O2--) --- number of oops *remaining*
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2353
    //   G3, G4, G5 --- current oop, oop.klass, oop.klass.super
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2354
    __ align(16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2355
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2356
    __ BIND(store_element);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2357
    __ deccc(G1_remain);                // decrement the count
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2358
    __ store_heap_oop(G3_oop, O1_to, O5_offset); // store the oop
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2359
    __ inc(O5_offset, heapOopSize);     // step to next offset
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2360
    __ brx(Assembler::zero, true, Assembler::pt, do_card_marks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2361
    __ delayed()->set(0, O0);           // return -1 on success
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2362
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2363
    // ======== loop entry is here ========
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2364
    __ BIND(load_element);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2365
    __ load_heap_oop(O0_from, O5_offset, G3_oop);  // load the oop
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2366
    __ br_null(G3_oop, true, Assembler::pt, store_element);
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2367
    __ delayed()->nop();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2368
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2369
    __ load_klass(G3_oop, G4_klass); // query the object klass
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2370
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2371
    generate_type_check(G4_klass, O3_ckoff, O4_ckval, G5_super,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2372
                        // branch to this on success:
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2373
                        store_element);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2374
    // ======== end loop ========
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2375
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2376
    // It was a real error; we must depend on the caller to finish the job.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2377
    // Register G1 has number of *remaining* oops, O2 number of *total* oops.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2378
    // Emit GC store barriers for the oops we have copied (O2 minus G1),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2379
    // and report their number to the caller.
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2380
    __ BIND(fail);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2381
    __ subcc(O2_count, G1_remain, O2_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2382
    __ brx(Assembler::zero, false, Assembler::pt, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2383
    __ delayed()->not1(O2_count, O0);   // report (-1^K) to caller
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2384
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2385
    __ BIND(do_card_marks);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2386
    gen_write_ref_array_post_barrier(O1_to, O2_count, O3);   // store check on O1[0..O2]
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2387
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2388
    __ BIND(done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2389
    inc_counter_np(SharedRuntime::_checkcast_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2390
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2391
    __ delayed()->nop();             // return value in 00
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2392
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2393
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2394
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2395
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2396
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2397
  //  Generate 'unsafe' array copy stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2398
  //  Though just as safe as the other stubs, it takes an unscaled
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2399
  //  size_t argument instead of an element count.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2400
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2401
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2402
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2403
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2404
  //      count: O2 byte count, treated as ssize_t, can be zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2405
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2406
  // Examines the alignment of the operands and dispatches
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2407
  // to a long, int, short, or byte copy loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2408
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2409
  address generate_unsafe_copy(const char* name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2410
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2411
    const Register O0_from   = O0;      // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2412
    const Register O1_to     = O1;      // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2413
    const Register O2_count  = O2;      // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2414
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2415
    const Register G1_bits   = G1;      // test copy of low bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2416
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2417
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2418
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2419
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2420
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2421
    // bump this on entry, not on exit:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2422
    inc_counter_np(SharedRuntime::_unsafe_array_copy_ctr, G1, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2423
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2424
    __ or3(O0_from, O1_to, G1_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2425
    __ or3(O2_count,       G1_bits, G1_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2426
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2427
    __ btst(BytesPerLong-1, G1_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2428
    __ br(Assembler::zero, true, Assembler::pt,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2429
          long_copy_entry, relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2430
    // scale the count on the way out:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2431
    __ delayed()->srax(O2_count, LogBytesPerLong, O2_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2432
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2433
    __ btst(BytesPerInt-1, G1_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2434
    __ br(Assembler::zero, true, Assembler::pt,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2435
          int_copy_entry, relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2436
    // scale the count on the way out:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2437
    __ delayed()->srax(O2_count, LogBytesPerInt, O2_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2438
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2439
    __ btst(BytesPerShort-1, G1_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2440
    __ br(Assembler::zero, true, Assembler::pt,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2441
          short_copy_entry, relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2442
    // scale the count on the way out:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2443
    __ delayed()->srax(O2_count, LogBytesPerShort, O2_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2444
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2445
    __ br(Assembler::always, false, Assembler::pt,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2446
          byte_copy_entry, relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2447
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2448
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2449
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2450
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2451
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2452
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2453
  // Perform range checks on the proposed arraycopy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2454
  // Kills the two temps, but nothing else.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2455
  // Also, clean the sign bits of src_pos and dst_pos.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2456
  void arraycopy_range_checks(Register src,     // source array oop (O0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2457
                              Register src_pos, // source position (O1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2458
                              Register dst,     // destination array oo (O2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2459
                              Register dst_pos, // destination position (O3)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2460
                              Register length,  // length of copy (O4)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2461
                              Register temp1, Register temp2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2462
                              Label& L_failed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2463
    BLOCK_COMMENT("arraycopy_range_checks:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2464
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2465
    //  if (src_pos + length > arrayOop(src)->length() ) FAIL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2466
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2467
    const Register array_length = temp1;  // scratch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2468
    const Register end_pos      = temp2;  // scratch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2469
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2470
    // Note:  This next instruction may be in the delay slot of a branch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2471
    __ add(length, src_pos, end_pos);  // src_pos + length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2472
    __ lduw(src, arrayOopDesc::length_offset_in_bytes(), array_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2473
    __ cmp(end_pos, array_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2474
    __ br(Assembler::greater, false, Assembler::pn, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2475
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2476
    //  if (dst_pos + length > arrayOop(dst)->length() ) FAIL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2477
    __ delayed()->add(length, dst_pos, end_pos); // dst_pos + length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2478
    __ lduw(dst, arrayOopDesc::length_offset_in_bytes(), array_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2479
    __ cmp(end_pos, array_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2480
    __ br(Assembler::greater, false, Assembler::pn, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2481
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2482
    // Have to clean up high 32-bits of 'src_pos' and 'dst_pos'.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2483
    // Move with sign extension can be used since they are positive.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2484
    __ delayed()->signx(src_pos, src_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2485
    __ signx(dst_pos, dst_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2486
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2487
    BLOCK_COMMENT("arraycopy_range_checks done");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2488
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2489
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2490
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2491
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2492
  //  Generate generic array copy stubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2493
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2494
  //  Input:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2495
  //    O0    -  src oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2496
  //    O1    -  src_pos
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2497
  //    O2    -  dst oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2498
  //    O3    -  dst_pos
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2499
  //    O4    -  element count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2500
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2501
  //  Output:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2502
  //    O0 ==  0  -  success
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2503
  //    O0 == -1  -  need to call System.arraycopy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2504
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2505
  address generate_generic_copy(const char *name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2506
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2507
    Label L_failed, L_objArray;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2508
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2509
    // Input registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2510
    const Register src      = O0;  // source array oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2511
    const Register src_pos  = O1;  // source position
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2512
    const Register dst      = O2;  // destination array oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2513
    const Register dst_pos  = O3;  // destination position
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2514
    const Register length   = O4;  // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2515
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2516
    // registers used as temp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2517
    const Register G3_src_klass = G3; // source array klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2518
    const Register G4_dst_klass = G4; // destination array klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2519
    const Register G5_lh        = G5; // layout handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2520
    const Register O5_temp      = O5;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2521
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2522
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2523
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2524
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2525
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2526
    // bump this on entry, not on exit:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2527
    inc_counter_np(SharedRuntime::_generic_array_copy_ctr, G1, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2528
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2529
    // In principle, the int arguments could be dirty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2530
    //assert_clean_int(src_pos, G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2531
    //assert_clean_int(dst_pos, G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2532
    //assert_clean_int(length, G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2533
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2534
    //-----------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2535
    // Assembler stubs will be used for this call to arraycopy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2536
    // if the following conditions are met:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2537
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2538
    // (1) src and dst must not be null.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2539
    // (2) src_pos must not be negative.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2540
    // (3) dst_pos must not be negative.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2541
    // (4) length  must not be negative.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2542
    // (5) src klass and dst klass should be the same and not NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2543
    // (6) src and dst should be arrays.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2544
    // (7) src_pos + length must not exceed length of src.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2545
    // (8) dst_pos + length must not exceed length of dst.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2546
    BLOCK_COMMENT("arraycopy initial argument checks");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2547
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2548
    //  if (src == NULL) return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2549
    __ br_null(src, false, Assembler::pn, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2550
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2551
    //  if (src_pos < 0) return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2552
    __ delayed()->tst(src_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2553
    __ br(Assembler::negative, false, Assembler::pn, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2554
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2555
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2556
    //  if (dst == NULL) return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2557
    __ br_null(dst, false, Assembler::pn, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2558
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2559
    //  if (dst_pos < 0) return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2560
    __ delayed()->tst(dst_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2561
    __ br(Assembler::negative, false, Assembler::pn, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2562
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2563
    //  if (length < 0) return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2564
    __ delayed()->tst(length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2565
    __ br(Assembler::negative, false, Assembler::pn, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2566
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2567
    BLOCK_COMMENT("arraycopy argument klass checks");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2568
    //  get src->klass()
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2569
    if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2570
      __ delayed()->nop(); // ??? not good
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2571
      __ load_klass(src, G3_src_klass);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2572
    } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2573
      __ delayed()->ld_ptr(src, oopDesc::klass_offset_in_bytes(), G3_src_klass);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2574
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2575
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2576
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2577
    //  assert(src->klass() != NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2578
    BLOCK_COMMENT("assert klasses not null");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2579
    { Label L_a, L_b;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2580
      __ br_notnull(G3_src_klass, false, Assembler::pt, L_b); // it is broken if klass is NULL
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2581
      __ delayed()->nop();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2582
      __ bind(L_a);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2583
      __ stop("broken null klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2584
      __ bind(L_b);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2585
      __ load_klass(dst, G4_dst_klass);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2586
      __ br_null(G4_dst_klass, false, Assembler::pn, L_a); // this would be broken also
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2587
      __ delayed()->mov(G0, G4_dst_klass);      // scribble the temp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2588
      BLOCK_COMMENT("assert done");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2589
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2590
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2591
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2592
    // Load layout helper
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2593
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2594
    //  |array_tag|     | header_size | element_type |     |log2_element_size|
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2595
    // 32        30    24            16              8     2                 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2596
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2597
    //   array_tag: typeArray = 0x3, objArray = 0x2, non-array = 0x0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2598
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2599
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2600
    int lh_offset = klassOopDesc::header_size() * HeapWordSize +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2601
                    Klass::layout_helper_offset_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2602
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2603
    // Load 32-bits signed value. Use br() instruction with it to check icc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2604
    __ lduw(G3_src_klass, lh_offset, G5_lh);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2605
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2606
    if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2607
      __ load_klass(dst, G4_dst_klass);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2608
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2609
    // Handle objArrays completely differently...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2610
    juint objArray_lh = Klass::array_layout_helper(T_OBJECT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2611
    __ set(objArray_lh, O5_temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2612
    __ cmp(G5_lh,       O5_temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2613
    __ br(Assembler::equal, false, Assembler::pt, L_objArray);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2614
    if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2615
      __ delayed()->nop();
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2616
    } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2617
      __ delayed()->ld_ptr(dst, oopDesc::klass_offset_in_bytes(), G4_dst_klass);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2618
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2619
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2620
    //  if (src->klass() != dst->klass()) return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2621
    __ cmp(G3_src_klass, G4_dst_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2622
    __ brx(Assembler::notEqual, false, Assembler::pn, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2623
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2624
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2625
    //  if (!src->is_Array()) return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2626
    __ cmp(G5_lh, Klass::_lh_neutral_value); // < 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2627
    __ br(Assembler::greaterEqual, false, Assembler::pn, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2628
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2629
    // At this point, it is known to be a typeArray (array_tag 0x3).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2630
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2631
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2632
    { Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2633
      jint lh_prim_tag_in_place = (Klass::_lh_array_tag_type_value << Klass::_lh_array_tag_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2634
      __ set(lh_prim_tag_in_place, O5_temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2635
      __ cmp(G5_lh,                O5_temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2636
      __ br(Assembler::greaterEqual, false, Assembler::pt, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2637
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2638
      __ stop("must be a primitive array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2639
      __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2640
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2641
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2642
    __ delayed();                               // match next insn to prev branch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2643
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2644
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2645
    arraycopy_range_checks(src, src_pos, dst, dst_pos, length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2646
                           O5_temp, G4_dst_klass, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2647
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2648
    // typeArrayKlass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2649
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2650
    // src_addr = (src + array_header_in_bytes()) + (src_pos << log2elemsize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2651
    // dst_addr = (dst + array_header_in_bytes()) + (dst_pos << log2elemsize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2652
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2653
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2654
    const Register G4_offset = G4_dst_klass;    // array offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2655
    const Register G3_elsize = G3_src_klass;    // log2 element size
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2656
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2657
    __ srl(G5_lh, Klass::_lh_header_size_shift, G4_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2658
    __ and3(G4_offset, Klass::_lh_header_size_mask, G4_offset); // array_offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2659
    __ add(src, G4_offset, src);       // src array offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2660
    __ add(dst, G4_offset, dst);       // dst array offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2661
    __ and3(G5_lh, Klass::_lh_log2_element_size_mask, G3_elsize); // log2 element size
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2662
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2663
    // next registers should be set before the jump to corresponding stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2664
    const Register from     = O0;  // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2665
    const Register to       = O1;  // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2666
    const Register count    = O2;  // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2667
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2668
    // 'from', 'to', 'count' registers should be set in this order
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2669
    // since they are the same as 'src', 'src_pos', 'dst'.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2670
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2671
    BLOCK_COMMENT("scale indexes to element size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2672
    __ sll_ptr(src_pos, G3_elsize, src_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2673
    __ sll_ptr(dst_pos, G3_elsize, dst_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2674
    __ add(src, src_pos, from);       // src_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2675
    __ add(dst, dst_pos, to);         // dst_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2676
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2677
    BLOCK_COMMENT("choose copy loop based on element size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2678
    __ cmp(G3_elsize, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2679
    __ br(Assembler::equal,true,Assembler::pt,StubRoutines::_jbyte_arraycopy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2680
    __ delayed()->signx(length, count); // length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2681
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2682
    __ cmp(G3_elsize, LogBytesPerShort);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2683
    __ br(Assembler::equal,true,Assembler::pt,StubRoutines::_jshort_arraycopy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2684
    __ delayed()->signx(length, count); // length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2685
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2686
    __ cmp(G3_elsize, LogBytesPerInt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2687
    __ br(Assembler::equal,true,Assembler::pt,StubRoutines::_jint_arraycopy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2688
    __ delayed()->signx(length, count); // length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2689
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2690
    { Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2691
      __ cmp(G3_elsize, LogBytesPerLong);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2692
      __ br(Assembler::equal, false, Assembler::pt, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2693
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2694
      __ stop("must be long copy, but elsize is wrong");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2695
      __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2696
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2697
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2698
    __ br(Assembler::always,false,Assembler::pt,StubRoutines::_jlong_arraycopy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2699
    __ delayed()->signx(length, count); // length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2700
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2701
    // objArrayKlass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2702
  __ BIND(L_objArray);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2703
    // live at this point:  G3_src_klass, G4_dst_klass, src[_pos], dst[_pos], length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2704
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2705
    Label L_plain_copy, L_checkcast_copy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2706
    //  test array classes for subtyping
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2707
    __ cmp(G3_src_klass, G4_dst_klass);         // usual case is exact equality
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2708
    __ brx(Assembler::notEqual, true, Assembler::pn, L_checkcast_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2709
    __ delayed()->lduw(G4_dst_klass, lh_offset, O5_temp); // hoisted from below
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2710
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2711
    // Identically typed arrays can be copied without element-wise checks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2712
    arraycopy_range_checks(src, src_pos, dst, dst_pos, length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2713
                           O5_temp, G5_lh, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2714
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2715
    __ add(src, arrayOopDesc::base_offset_in_bytes(T_OBJECT), src); //src offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2716
    __ add(dst, arrayOopDesc::base_offset_in_bytes(T_OBJECT), dst); //dst offset
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2717
    __ sll_ptr(src_pos, LogBytesPerHeapOop, src_pos);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2718
    __ sll_ptr(dst_pos, LogBytesPerHeapOop, dst_pos);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2719
    __ add(src, src_pos, from);       // src_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2720
    __ add(dst, dst_pos, to);         // dst_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2721
  __ BIND(L_plain_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2722
    __ br(Assembler::always, false, Assembler::pt,StubRoutines::_oop_arraycopy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2723
    __ delayed()->signx(length, count); // length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2724
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2725
  __ BIND(L_checkcast_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2726
    // live at this point:  G3_src_klass, G4_dst_klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2727
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2728
      // Before looking at dst.length, make sure dst is also an objArray.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2729
      // lduw(G4_dst_klass, lh_offset, O5_temp); // hoisted to delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2730
      __ cmp(G5_lh,                    O5_temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2731
      __ br(Assembler::notEqual, false, Assembler::pn, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2732
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2733
      // It is safe to examine both src.length and dst.length.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2734
      __ delayed();                             // match next insn to prev branch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2735
      arraycopy_range_checks(src, src_pos, dst, dst_pos, length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2736
                             O5_temp, G5_lh, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2737
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2738
      // Marshal the base address arguments now, freeing registers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2739
      __ add(src, arrayOopDesc::base_offset_in_bytes(T_OBJECT), src); //src offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2740
      __ add(dst, arrayOopDesc::base_offset_in_bytes(T_OBJECT), dst); //dst offset
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2741
      __ sll_ptr(src_pos, LogBytesPerHeapOop, src_pos);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2742
      __ sll_ptr(dst_pos, LogBytesPerHeapOop, dst_pos);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2743
      __ add(src, src_pos, from);               // src_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2744
      __ add(dst, dst_pos, to);                 // dst_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2745
      __ signx(length, count);                  // length (reloaded)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2746
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2747
      Register sco_temp = O3;                   // this register is free now
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2748
      assert_different_registers(from, to, count, sco_temp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2749
                                 G4_dst_klass, G3_src_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2750
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2751
      // Generate the type check.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2752
      int sco_offset = (klassOopDesc::header_size() * HeapWordSize +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2753
                        Klass::super_check_offset_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2754
      __ lduw(G4_dst_klass, sco_offset, sco_temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2755
      generate_type_check(G3_src_klass, sco_temp, G4_dst_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2756
                          O5_temp, L_plain_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2757
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2758
      // Fetch destination element klass from the objArrayKlass header.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2759
      int ek_offset = (klassOopDesc::header_size() * HeapWordSize +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2760
                       objArrayKlass::element_klass_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2761
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2762
      // the checkcast_copy loop needs two extra arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2763
      __ ld_ptr(G4_dst_klass, ek_offset, O4);   // dest elem klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2764
      // lduw(O4, sco_offset, O3);              // sco of elem klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2765
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2766
      __ br(Assembler::always, false, Assembler::pt, checkcast_copy_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2767
      __ delayed()->lduw(O4, sco_offset, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2768
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2769
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2770
  __ BIND(L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2771
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2772
    __ delayed()->sub(G0, 1, O0); // return -1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2773
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2774
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2775
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2776
  void generate_arraycopy_stubs() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2777
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2778
    // Note:  the disjoint stubs must be generated first, some of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2779
    //        the conjoint stubs use them.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2780
    StubRoutines::_jbyte_disjoint_arraycopy  = generate_disjoint_byte_copy(false, "jbyte_disjoint_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2781
    StubRoutines::_jshort_disjoint_arraycopy = generate_disjoint_short_copy(false, "jshort_disjoint_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2782
    StubRoutines::_jint_disjoint_arraycopy   = generate_disjoint_int_copy(false, "jint_disjoint_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2783
    StubRoutines::_jlong_disjoint_arraycopy  = generate_disjoint_long_copy(false, "jlong_disjoint_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2784
    StubRoutines::_oop_disjoint_arraycopy    = generate_disjoint_oop_copy(false, "oop_disjoint_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2785
    StubRoutines::_arrayof_jbyte_disjoint_arraycopy  = generate_disjoint_byte_copy(true, "arrayof_jbyte_disjoint_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2786
    StubRoutines::_arrayof_jshort_disjoint_arraycopy = generate_disjoint_short_copy(true, "arrayof_jshort_disjoint_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2787
    StubRoutines::_arrayof_jint_disjoint_arraycopy   = generate_disjoint_int_copy(true, "arrayof_jint_disjoint_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2788
    StubRoutines::_arrayof_jlong_disjoint_arraycopy  = generate_disjoint_long_copy(true, "arrayof_jlong_disjoint_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2789
    StubRoutines::_arrayof_oop_disjoint_arraycopy    =  generate_disjoint_oop_copy(true, "arrayof_oop_disjoint_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2790
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2791
    StubRoutines::_jbyte_arraycopy  = generate_conjoint_byte_copy(false, "jbyte_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2792
    StubRoutines::_jshort_arraycopy = generate_conjoint_short_copy(false, "jshort_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2793
    StubRoutines::_jint_arraycopy   = generate_conjoint_int_copy(false, "jint_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2794
    StubRoutines::_jlong_arraycopy  = generate_conjoint_long_copy(false, "jlong_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2795
    StubRoutines::_oop_arraycopy    = generate_conjoint_oop_copy(false, "oop_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2796
    StubRoutines::_arrayof_jbyte_arraycopy    = generate_conjoint_byte_copy(true, "arrayof_jbyte_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2797
    StubRoutines::_arrayof_jshort_arraycopy   = generate_conjoint_short_copy(true, "arrayof_jshort_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2798
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2799
    // since sizeof(jint) < sizeof(HeapWord), there's a different flavor:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2800
    StubRoutines::_arrayof_jint_arraycopy     = generate_conjoint_int_copy(true, "arrayof_jint_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2801
  #else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2802
    StubRoutines::_arrayof_jint_arraycopy     = StubRoutines::_jint_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2803
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2804
    StubRoutines::_arrayof_jlong_arraycopy    = StubRoutines::_jlong_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2805
    StubRoutines::_arrayof_oop_arraycopy      = StubRoutines::_oop_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2806
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2807
    StubRoutines::_checkcast_arraycopy = generate_checkcast_copy("checkcast_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2808
    StubRoutines::_unsafe_arraycopy    = generate_unsafe_copy("unsafe_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2809
    StubRoutines::_generic_arraycopy   = generate_generic_copy("generic_arraycopy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2810
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2811
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2812
  void generate_initial() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2813
    // Generates all stubs and initializes the entry points
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2814
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2815
    //------------------------------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2816
    // entry points that exist in all platforms
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2817
    // Note: This is code that could be shared among different platforms - however the benefit seems to be smaller than
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2818
    //       the disadvantage of having a much more complicated generator structure. See also comment in stubRoutines.hpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2819
    StubRoutines::_forward_exception_entry                 = generate_forward_exception();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2820
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2821
    StubRoutines::_call_stub_entry                         = generate_call_stub(StubRoutines::_call_stub_return_address);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2822
    StubRoutines::_catch_exception_entry                   = generate_catch_exception();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2823
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2824
    //------------------------------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2825
    // entry points that are platform specific
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2826
    StubRoutines::Sparc::_test_stop_entry                  = generate_test_stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2827
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2828
    StubRoutines::Sparc::_stop_subroutine_entry            = generate_stop_subroutine();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2829
    StubRoutines::Sparc::_flush_callers_register_windows_entry = generate_flush_callers_register_windows();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2830
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2831
#if !defined(COMPILER2) && !defined(_LP64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2832
    StubRoutines::_atomic_xchg_entry         = generate_atomic_xchg();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2833
    StubRoutines::_atomic_cmpxchg_entry      = generate_atomic_cmpxchg();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2834
    StubRoutines::_atomic_add_entry          = generate_atomic_add();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2835
    StubRoutines::_atomic_xchg_ptr_entry     = StubRoutines::_atomic_xchg_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2836
    StubRoutines::_atomic_cmpxchg_ptr_entry  = StubRoutines::_atomic_cmpxchg_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2837
    StubRoutines::_atomic_cmpxchg_long_entry = generate_atomic_cmpxchg_long();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2838
    StubRoutines::_atomic_add_ptr_entry      = StubRoutines::_atomic_add_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2839
#endif  // COMPILER2 !=> _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2840
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2841
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2842
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2843
  void generate_all() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2844
    // Generates all stubs and initializes the entry points
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2845
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 1502
diff changeset
  2846
    // Generate partial_subtype_check first here since its code depends on
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 1502
diff changeset
  2847
    // UseZeroBaseCompressedOops which is defined after heap initialization.
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 1502
diff changeset
  2848
    StubRoutines::Sparc::_partial_subtype_check                = generate_partial_subtype_check();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2849
    // These entry points require SharedInfo::stack0 to be set up in non-core builds
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2850
    StubRoutines::_throw_AbstractMethodError_entry         = generate_throw_exception("AbstractMethodError throw_exception",          CAST_FROM_FN_PTR(address, SharedRuntime::throw_AbstractMethodError),  false);
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  2851
    StubRoutines::_throw_IncompatibleClassChangeError_entry= generate_throw_exception("IncompatibleClassChangeError throw_exception", CAST_FROM_FN_PTR(address, SharedRuntime::throw_IncompatibleClassChangeError),  false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2852
    StubRoutines::_throw_ArithmeticException_entry         = generate_throw_exception("ArithmeticException throw_exception",          CAST_FROM_FN_PTR(address, SharedRuntime::throw_ArithmeticException),  true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2853
    StubRoutines::_throw_NullPointerException_entry        = generate_throw_exception("NullPointerException throw_exception",         CAST_FROM_FN_PTR(address, SharedRuntime::throw_NullPointerException), true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2854
    StubRoutines::_throw_NullPointerException_at_call_entry= generate_throw_exception("NullPointerException at call throw_exception", CAST_FROM_FN_PTR(address, SharedRuntime::throw_NullPointerException_at_call), false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2855
    StubRoutines::_throw_StackOverflowError_entry          = generate_throw_exception("StackOverflowError throw_exception",           CAST_FROM_FN_PTR(address, SharedRuntime::throw_StackOverflowError),   false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2856
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2857
    StubRoutines::_handler_for_unsafe_access_entry =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2858
      generate_handler_for_unsafe_access();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2859
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2860
    // support for verify_oop (must happen after universe_init)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2861
    StubRoutines::_verify_oop_subroutine_entry     = generate_verify_oop_subroutine();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2862
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2863
    // arraycopy stubs used by compilers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2864
    generate_arraycopy_stubs();
4645
0c5f5b94e93a 6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents: 2571
diff changeset
  2865
0c5f5b94e93a 6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents: 2571
diff changeset
  2866
    // Don't initialize the platform math functions since sparc
0c5f5b94e93a 6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents: 2571
diff changeset
  2867
    // doesn't have intrinsics for these operations.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2868
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2869
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2870
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2871
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2872
  StubGenerator(CodeBuffer* code, bool all) : StubCodeGenerator(code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2873
    // replace the standard masm with a special one:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2874
    _masm = new MacroAssembler(code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2875
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2876
    _stub_count = !all ? 0x100 : 0x200;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2877
    if (all) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2878
      generate_all();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2879
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2880
      generate_initial();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2881
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2882
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2883
    // make sure this stub is available for all local calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2884
    if (_atomic_add_stub.is_unbound()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2885
      // generate a second time, if necessary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2886
      (void) generate_atomic_add();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2887
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2888
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2889
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2890
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2891
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2892
  int _stub_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2893
  void stub_prolog(StubCodeDesc* cdesc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2894
    # ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2895
      // put extra information in the stub code, to make it more readable
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2896
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2897
// Write the high part of the address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2898
// [RGV] Check if there is a dependency on the size of this prolog
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2899
      __ emit_data((intptr_t)cdesc >> 32,    relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2900
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2901
      __ emit_data((intptr_t)cdesc,    relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2902
      __ emit_data(++_stub_count, relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2903
    # endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2904
    align(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2905
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2906
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2907
  void align(bool at_header = false) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2908
    // %%%%% move this constant somewhere else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2909
    // UltraSPARC cache line size is 8 instructions:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2910
    const unsigned int icache_line_size = 32;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2911
    const unsigned int icache_half_line_size = 16;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2912
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2913
    if (at_header) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2914
      while ((intptr_t)(__ pc()) % icache_line_size != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2915
        __ emit_data(0, relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2916
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2917
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2918
      while ((intptr_t)(__ pc()) % icache_half_line_size != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2919
        __ nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2920
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2921
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2922
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2923
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2924
}; // end class declaration
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2925
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2926
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2927
address StubGenerator::disjoint_byte_copy_entry  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2928
address StubGenerator::disjoint_short_copy_entry = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2929
address StubGenerator::disjoint_int_copy_entry   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2930
address StubGenerator::disjoint_long_copy_entry  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2931
address StubGenerator::disjoint_oop_copy_entry   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2932
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2933
address StubGenerator::byte_copy_entry  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2934
address StubGenerator::short_copy_entry = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2935
address StubGenerator::int_copy_entry   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2936
address StubGenerator::long_copy_entry  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2937
address StubGenerator::oop_copy_entry   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2938
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2939
address StubGenerator::checkcast_copy_entry = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2940
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2941
void StubGenerator_generate(CodeBuffer* code, bool all) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2942
  StubGenerator g(code, all);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2943
}