src/hotspot/cpu/sparc/stubGenerator_sparc.cpp
author stefank
Mon, 25 Nov 2019 12:31:39 +0100
changeset 59249 29b0d0b61615
parent 55490 3f3dc00a69a5
child 59251 4cbfa5077d68
permissions -rw-r--r--
8234737: Harmonize parameter order in Atomic - add Reviewed-by: rehn, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53591
bf4c38b9afaf 8209951: Problematic sparc intrinsic: com.sun.crypto.provider.CipherBlockChaining
kevinw
parents: 50728
diff changeset
     2
 * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5419
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5419
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5419
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    25
#include "precompiled.hpp"
14631
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 13952
diff changeset
    26
#include "asm/macroAssembler.inline.hpp"
49484
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
    27
#include "gc/shared/barrierSet.hpp"
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
    28
#include "gc/shared/barrierSetAssembler.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    29
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    30
#include "nativeInst_sparc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    31
#include "oops/instanceOop.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    32
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    33
#include "oops/objArrayKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    34
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    35
#include "prims/methodHandles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    36
#include "runtime/frame.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    37
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    38
#include "runtime/sharedRuntime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    39
#include "runtime/stubCodeGenerator.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    40
#include "runtime/stubRoutines.hpp"
14583
d70ee55535f4 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 13952
diff changeset
    41
#include "runtime/thread.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    42
#ifdef COMPILER2
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    43
#include "opto/runtime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    44
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// Declaration and definition of StubGenerator (no .hpp file).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// For a more detailed description of the stub routine structure
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// see the comment in stubRoutines.hpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
#define __ _masm->
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
#ifdef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
#define BLOCK_COMMENT(str) /* nothing */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
#define BLOCK_COMMENT(str) __ block_comment(str)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
#define BIND(label) bind(label); BLOCK_COMMENT(#label ":")
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// Note:  The register L7 is used as L7_thread_cache, and may not be used
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
//        any other way within this module.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
static const Register& Lstub_temp = L2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
// -------------------------------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
// Stub Code definitions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
class StubGenerator: public StubCodeGenerator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
#ifdef PRODUCT
24326
d3fdd5c16fe0 8022070: Compilation error in stubGenerator_sparc.cpp with some compilers
mikael
parents: 22505
diff changeset
    72
#define inc_counter_np(a,b,c)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
#define inc_counter_np(counter, t1, t2) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  BLOCK_COMMENT("inc_counter " #counter); \
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
    76
  __ inc_counter(&counter, t1, t2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  //----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // Call stubs are used to call Java from C
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  address generate_call_stub(address& return_pc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    StubCodeMark mark(this, "StubRoutines", "call_stub");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    // Incoming arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    // o0         : call wrapper address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    // o1         : result (address)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    // o2         : result type
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    // o3         : method
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    // o4         : (interpreter) entry point
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    // o5         : parameters (address)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    // [sp + 0x5c]: parameter size (in words)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    // [sp + 0x60]: thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    // +---------------+ <--- sp + 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    // . reg save area .
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    // +---------------+ <--- sp + 0x40
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    // . extra 7 slots .
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    // +---------------+ <--- sp + 0x5c
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    // |  param. size  |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    // +---------------+ <--- sp + 0x60
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    // |    thread     |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    // +---------------+
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    // note: if the link argument position changes, adjust
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    //       the code in frame::entry_frame_call_wrapper()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    const Argument link           = Argument(0, false); // used only for GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    const Argument result         = Argument(1, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    const Argument result_type    = Argument(2, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    const Argument method         = Argument(3, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    const Argument entry_point    = Argument(4, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    const Argument parameters     = Argument(5, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    const Argument parameter_size = Argument(6, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    const Argument thread         = Argument(7, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    // setup thread register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    __ 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
   126
    __ reinit_heapbase();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    // make sure we have no pending exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    { const Register t = G3_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
      Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
      __ ld_ptr(G2_thread, in_bytes(Thread::pending_exception_offset()), t);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10004
diff changeset
   133
      __ br_null_short(t, Assembler::pt, L);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
      __ stop("StubRoutines::call_stub: entered with pending exception");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
      __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    // create activation frame & allocate space for parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    { const Register t = G3_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
      __ ld_ptr(parameter_size.as_address(), t);                // get parameter size (in words)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
      __ add(t, frame::memory_parameter_word_sp_offset, t);     // add space for save area (in words)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
      __ round_to(t, WordsPerLong);                             // make sure it is multiple of 2 (in words)
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5416
diff changeset
   144
      __ sll(t, Interpreter::logStackElementSize, t);           // compute number of bytes
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
      __ neg(t);                                                // negate so it can be used with save
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
      __ save(SP, t, SP);                                       // setup new frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    // +---------------+ <--- sp + 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    // . reg save area .
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    // +---------------+ <--- sp + 0x40
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    // . extra 7 slots .
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    // +---------------+ <--- sp + 0x5c
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    // |  empty slot   |      (only if parameter size is even)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    // +---------------+
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    // .  parameters   .
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    // +---------------+ <--- fp + 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    // . reg save area .
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    // +---------------+ <--- fp + 0x40
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    // . extra 7 slots .
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    // +---------------+ <--- fp + 0x5c
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    // |  param. size  |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    // +---------------+ <--- fp + 0x60
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    // |    thread     |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    // +---------------+
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    // |               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    // pass parameters if any
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    BLOCK_COMMENT("pass parameters if any");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    { const Register src = parameters.as_in().as_register();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
      const Register dst = Lentry_args;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
      const Register tmp = G3_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
      const Register cnt = G4_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
      // test if any parameters & setup of Lentry_args
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
      Label exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
      __ ld_ptr(parameter_size.as_in().as_address(), cnt);      // parameter counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
      __ add( FP, STACK_BIAS, dst );
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10004
diff changeset
   189
      __ cmp_zero_and_br(Assembler::zero, cnt, exit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
      __ delayed()->sub(dst, BytesPerWord, dst);                 // setup Lentry_args
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
      // copy parameters if any
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
      Label loop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
      __ BIND(loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
      // Store parameter value
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);
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5416
diff changeset
   198
      __ st_ptr(tmp, dst, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
      __ deccc(cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
      __ br(Assembler::greater, false, Assembler::pt, loop);
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5416
diff changeset
   201
      __ delayed()->sub(dst, Interpreter::stackElementSize, dst);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
      // done
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
      __ BIND(exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    // setup parameters, method & call Java function
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    // layout_activation_impl checks it's notion of saved SP against
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    // this register, so if this changes update it as well.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    const Register saved_SP = Lscratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    __ mov(SP, saved_SP);                               // keep track of SP before call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    // setup parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    const Register t = G3_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    __ ld_ptr(parameter_size.as_in().as_address(), t); // get parameter size (in words)
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5416
diff changeset
   218
    __ sll(t, Interpreter::logStackElementSize, t);    // compute number of bytes
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    __ sub(FP, t, Gargs);                              // setup parameter pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    __ add( Gargs, STACK_BIAS, Gargs );                // Account for LP64 stack bias
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    __ mov(SP, O5_savedSP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    // do the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    // the following register must be setup:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    // G2_thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    // G5_method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    // Gargs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    BLOCK_COMMENT("call Java function");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    __ jmpl(entry_point.as_in().as_register(), G0, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    __ delayed()->mov(method.as_in().as_register(), G5_method);   // setup method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    BLOCK_COMMENT("call_stub_return_address:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    return_pc = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    // The callee, if it wasn't interpreted, can return with SP changed so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    // we can no longer assert of change of SP.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    // store result depending on type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    // (everything that is not T_OBJECT, T_LONG, T_FLOAT, or T_DOUBLE
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    //  is treated as T_INT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    { const Register addr = result     .as_in().as_register();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
      const Register type = result_type.as_in().as_register();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
      Label is_long, is_float, is_double, is_object, exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
      __            cmp(type, T_OBJECT);  __ br(Assembler::equal, false, Assembler::pn, is_object);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
      __ delayed()->cmp(type, T_FLOAT);   __ br(Assembler::equal, false, Assembler::pn, is_float);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
      __ delayed()->cmp(type, T_DOUBLE);  __ br(Assembler::equal, false, Assembler::pn, is_double);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
      __ delayed()->cmp(type, T_LONG);    __ br(Assembler::equal, false, Assembler::pn, is_long);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
      // store int result
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
      __ st(O0, addr, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      __ BIND(exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
      __ ret();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
      __ delayed()->restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
      __ BIND(is_object);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10004
diff changeset
   261
      __ ba(exit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
      __ delayed()->st_ptr(O0, addr, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
      __ BIND(is_float);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10004
diff changeset
   265
      __ ba(exit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
      __ delayed()->stf(FloatRegisterImpl::S, F0, addr, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
      __ BIND(is_double);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10004
diff changeset
   269
      __ ba(exit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
      __ delayed()->stf(FloatRegisterImpl::D, F0, addr, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
      __ BIND(is_long);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10004
diff changeset
   273
      __ ba(exit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
      __ delayed()->st_long(O0, addr, G0);      // store entire long
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
     return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  //----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  // Return point for a Java call if there's an exception thrown in Java code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  // The exception is caught and transformed into a pending exception stored in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  // JavaThread that can be tested from within the VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  // Oexception: exception oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  address generate_catch_exception() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
    StubCodeMark mark(this, "StubRoutines", "catch_exception");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    // verify that thread corresponds
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
    __ verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    const Register& temp_reg = Gtemp;
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
   295
    Address pending_exception_addr    (G2_thread, Thread::pending_exception_offset());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
   296
    Address exception_file_offset_addr(G2_thread, Thread::exception_file_offset   ());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
   297
    Address exception_line_offset_addr(G2_thread, Thread::exception_line_offset   ());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
    // set pending exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    __ verify_oop(Oexception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
    __ st_ptr(Oexception, pending_exception_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
    __ set((intptr_t)__FILE__, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
    __ st_ptr(temp_reg, exception_file_offset_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
    __ set((intptr_t)__LINE__, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    __ st(temp_reg, exception_line_offset_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
    // complete return to VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
    assert(StubRoutines::_call_stub_return_address != NULL, "must have been generated before");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
   310
    AddressLiteral stub_ret(StubRoutines::_call_stub_return_address);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
   311
    __ jump_to(stub_ret, temp_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  //----------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  // Continuation point for runtime calls returning with a pending exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  // The pending exception check happened in the runtime or native call stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  // The pending exception in Thread is converted into a Java-level exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  // Contract with Java-level exception handler: O0 = exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  //                                             O1 = throwing pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  address generate_forward_exception() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
    StubCodeMark mark(this, "StubRoutines", "forward_exception");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
    // Upon entry, O7 has the return address returning into Java
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    // (interpreted or compiled) code; i.e. the return address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
    // becomes the throwing pc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
    const Register& handler_reg = Gtemp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
   336
    Address exception_addr(G2_thread, Thread::pending_exception_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
    // make sure that this code is only executed if there is a pending exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    { Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
      __ ld_ptr(exception_addr, Gtemp);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10004
diff changeset
   342
      __ br_notnull_short(Gtemp, Assembler::pt, L);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
      __ stop("StubRoutines::forward exception: no pending exception (1)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
      __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
    // compute exception handler into handler_reg
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
    __ get_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
    __ ld_ptr(exception_addr, Oexception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
    __ verify_oop(Oexception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
    __ save_frame(0);             // compensates for compiler weakness
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
    __ add(O7->after_save(), frame::pc_return_offset, Lscratch); // save the issuing PC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
    BLOCK_COMMENT("call exception_handler_for_return_address");
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 4645
diff changeset
   355
    __ 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
   356
    __ mov(O0, handler_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    __ restore();                 // compensates for compiler weakness
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
    __ ld_ptr(exception_addr, Oexception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    __ add(O7, frame::pc_return_offset, Oissuing_pc); // save the issuing PC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    // make sure exception is set
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    { Label L;
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10004
diff changeset
   365
      __ br_notnull_short(Oexception, Assembler::pt, L);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
      __ stop("StubRoutines::forward exception: no pending exception (2)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
      __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
    // jump to exception handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
    __ jmp(handler_reg, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
    // clear pending exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
    __ delayed()->st_ptr(G0, exception_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
18740
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   378
  // Safefetch stubs.
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   379
  void generate_safefetch(const char* name, int size, address* entry,
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   380
                          address* fault_pc, address* continuation_pc) {
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   381
    // safefetch signatures:
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   382
    //   int      SafeFetch32(int*      adr, int      errValue);
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   383
    //   intptr_t SafeFetchN (intptr_t* adr, intptr_t errValue);
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   384
    //
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   385
    // arguments:
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   386
    //   o0 = adr
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   387
    //   o1 = errValue
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   388
    //
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   389
    // result:
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   390
    //   o0  = *adr or errValue
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   391
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   392
    StubCodeMark mark(this, "StubRoutines", name);
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   393
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   394
    // Entry point, pc or function descriptor.
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   395
    __ align(CodeEntryAlignment);
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   396
    *entry = __ pc();
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   397
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   398
    __ mov(O0, G1);  // g1 = o0
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   399
    __ mov(O1, O0);  // o0 = o1
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   400
    // Load *adr into c_rarg1, may fault.
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   401
    *fault_pc = __ pc();
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   402
    switch (size) {
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   403
      case 4:
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   404
        // int32_t
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   405
        __ ldsw(G1, 0, O0);  // o0 = [g1]
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   406
        break;
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   407
      case 8:
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   408
        // int64_t
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   409
        __ ldx(G1, 0, O0);   // o0 = [g1]
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   410
        break;
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   411
      default:
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   412
        ShouldNotReachHere();
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   413
    }
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   414
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   415
    // return errValue or *adr
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   416
    *continuation_pc = __ pc();
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   417
    // By convention with the trap handler we ensure there is a non-CTI
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   418
    // instruction in the trap shadow.
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   419
    __ nop();
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   420
    __ retl();
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   421
    __ delayed()->nop();
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
   422
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  //------------------------------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  // Continuation point for throwing of implicit exceptions that are not handled in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  // the current activation. Fabricates an exception oop and initiates normal
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  // exception dispatching in this frame. Only callee-saved registers are preserved
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  // (through the normal register window / RegisterMap handling).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  // If the compiler needs all registers to be preserved between the fault
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  // point and the exception handler then it must assume responsibility for that in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  // AbstractCompiler::continuation_for_implicit_null_exception or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  // continuation_for_implicit_division_by_zero_exception. All other implicit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  // exceptions (e.g., NullPointerException or AbstractMethodError on entry) are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  // either at call sites or otherwise assume that stack unwinding will be initiated,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  // so caller saved registers were assumed volatile in the compiler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  // Note that we generate only this stub into a RuntimeStub, because it needs to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  // properly traversed and ignored during GC, so we change the meaning of the "__"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  // macro within this method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
#undef __
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
#define __ masm->
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
10545
fec876499aae 7088020: SEGV in JNIHandleBlock::release_block
never
parents: 10512
diff changeset
   443
  address generate_throw_exception(const char* name, address runtime_entry,
10004
190e88f7edd1 7055355: JSR 292: crash while throwing WrongMethodTypeException
never
parents: 8498
diff changeset
   444
                                   Register arg1 = noreg, Register arg2 = noreg) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
    int insts_size = VerifyThread ? 1 * K : 600;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
    int insts_size = VerifyThread ? 1 * K : 256;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
#endif /* ASSERT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
    int locs_size  = 32;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
    CodeBuffer      code(name, insts_size, locs_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
    MacroAssembler* masm = new MacroAssembler(&code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
    __ verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    // This is an inlined and slightly modified version of call_VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
    // which has the ability to fetch the return PC out of thread-local storage
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    __ assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    // Note that we always push a frame because on the SPARC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    // architecture, for all of our implicit exception kinds at call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    // sites, the implicit exception is taken before the callee frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    // is pushed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    __ save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
    int frame_complete = __ offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
    // Note that we always have a runtime stub frame on the top of stack by this point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
    Register last_java_sp = SP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
    // 64-bit last_java_sp is biased!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
    __ set_last_Java_frame(last_java_sp, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
    if (VerifyThread)  __ mov(G2_thread, O0); // about to be smashed; pass early
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
    __ save_thread(noreg);
10004
190e88f7edd1 7055355: JSR 292: crash while throwing WrongMethodTypeException
never
parents: 8498
diff changeset
   475
    if (arg1 != noreg) {
190e88f7edd1 7055355: JSR 292: crash while throwing WrongMethodTypeException
never
parents: 8498
diff changeset
   476
      assert(arg2 != O1, "clobbered");
190e88f7edd1 7055355: JSR 292: crash while throwing WrongMethodTypeException
never
parents: 8498
diff changeset
   477
      __ mov(arg1, O1);
190e88f7edd1 7055355: JSR 292: crash while throwing WrongMethodTypeException
never
parents: 8498
diff changeset
   478
    }
190e88f7edd1 7055355: JSR 292: crash while throwing WrongMethodTypeException
never
parents: 8498
diff changeset
   479
    if (arg2 != noreg) {
190e88f7edd1 7055355: JSR 292: crash while throwing WrongMethodTypeException
never
parents: 8498
diff changeset
   480
      __ mov(arg2, O2);
190e88f7edd1 7055355: JSR 292: crash while throwing WrongMethodTypeException
never
parents: 8498
diff changeset
   481
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
    // do the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
    BLOCK_COMMENT("call runtime_entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
    __ call(runtime_entry, relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
    if (!VerifyThread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
      __ delayed()->mov(G2_thread, O0);  // pass thread as first argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
    else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
      __ delayed()->nop();             // (thread already passed)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
    __ restore_thread(noreg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
    __ reset_last_Java_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
    // check for pending exceptions. use Gtemp as scratch register.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2338
diff changeset
   496
    Address exception_addr(G2_thread, Thread::pending_exception_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
    Register scratch_reg = Gtemp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
    __ ld_ptr(exception_addr, scratch_reg);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10004
diff changeset
   499
    __ br_notnull_short(scratch_reg, Assembler::pt, L);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
    __ should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
    __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
    BLOCK_COMMENT("call forward_exception_entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
    __ call(StubRoutines::forward_exception_entry(), relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
    // we use O7 linkage so that forward_exception_entry has the issuing PC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
    __ delayed()->restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
    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
   509
    return stub->entry_point();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
#undef __
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
#define __ _masm->
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  // Generate a routine that sets all the registers so we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  // can tell if the stop routine prints them correctly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  address generate_test_stop() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
    StubCodeMark mark(this, "StubRoutines", "test_stop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
    int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
    __ save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
    static jfloat zero = 0.0, one = 1.0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
    // put addr in L0, then load through L0 to F0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
    __ set((intptr_t)&zero, L0);  __ ldf( FloatRegisterImpl::S, L0, 0, F0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
    __ set((intptr_t)&one,  L0);  __ ldf( FloatRegisterImpl::S, L0, 0, F1); // 1.0 to F1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
    // use add to put 2..18 in F2..F18
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
    for ( i = 2;  i <= 18;  ++i ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
      __ fadd( FloatRegisterImpl::S, F1, as_FloatRegister(i-1),  as_FloatRegister(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
    // Now put double 2 in F16, double 18 in F18
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
    __ ftof( FloatRegisterImpl::S, FloatRegisterImpl::D, F2, F16 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
    __ ftof( FloatRegisterImpl::S, FloatRegisterImpl::D, F18, F18 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
    // use add to put 20..32 in F20..F32
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
    for (i = 20; i < 32; i += 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
      __ fadd( FloatRegisterImpl::D, F16, as_FloatRegister(i-2),  as_FloatRegister(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
    // 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
   547
    for ( i = 0; i < 8; ++i ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
      if (i < 6) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
        __ set(     i, as_iRegister(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
        __ set(16 + i, as_oRegister(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
        __ set(24 + i, as_gRegister(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
      __ set( 8 + i, as_lRegister(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
    __ stop("testing stop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
    __ ret();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
    __ delayed()->restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  address generate_stop_subroutine() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
    StubCodeMark mark(this, "StubRoutines", "stop_subroutine");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
    __ stop_subroutine();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  address generate_flush_callers_register_windows() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
    StubCodeMark mark(this, "StubRoutines", "flush_callers_register_windows");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
18097
acd70736bd60 8008407: remove SPARC V8 support
morris
parents: 14633
diff changeset
   579
    __ flushw();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
    __ retl(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
    __ delayed()->add( FP, STACK_BIAS, O0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
    // The returned value must be a stack pointer whose register save area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
    // is flushed, and will stay flushed while the caller executes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  // Support for jint Atomic::xchg(jint exchange_value, volatile jint* dest).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  //
18097
acd70736bd60 8008407: remove SPARC V8 support
morris
parents: 14633
diff changeset
   590
  // Arguments:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  //      exchange_value: O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  //      dest:           O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  // Results:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  //     O0: the value previously stored in dest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  address generate_atomic_xchg() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
    StubCodeMark mark(this, "StubRoutines", "atomic_xchg");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
    if (UseCASForSwap) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
      // Use CAS instead of swap, just in case the MP hardware
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
      // prefers to work with just one kind of synch. instruction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
      Label retry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
      __ BIND(retry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
      __ mov(O0, O3);       // scratch copy of exchange value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
      __ ld(O1, 0, O2);     // observe the previous value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
      // try to replace O2 with O3
18097
acd70736bd60 8008407: remove SPARC V8 support
morris
parents: 14633
diff changeset
   611
      __ cas(O1, O2, O3);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10004
diff changeset
   612
      __ cmp_and_br_short(O2, O3, Assembler::notEqual, Assembler::pn, retry);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
      __ retl(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
      __ delayed()->mov(O2, O0);  // report previous value to caller
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
    } else {
18097
acd70736bd60 8008407: remove SPARC V8 support
morris
parents: 14633
diff changeset
   617
      __ retl(false);
acd70736bd60 8008407: remove SPARC V8 support
morris
parents: 14633
diff changeset
   618
      __ delayed()->swap(O1, 0, O0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  // Support for jint Atomic::cmpxchg(jint exchange_value, volatile jint* dest, jint compare_value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  //
18097
acd70736bd60 8008407: remove SPARC V8 support
morris
parents: 14633
diff changeset
   627
  // Arguments:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  //      exchange_value: O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  //      dest:           O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  //      compare_value:  O2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  // Results:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  //     O0: the value previously stored in dest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  address generate_atomic_cmpxchg() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
    StubCodeMark mark(this, "StubRoutines", "atomic_cmpxchg");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
    // cmpxchg(dest, compare_value, exchange_value)
18097
acd70736bd60 8008407: remove SPARC V8 support
morris
parents: 14633
diff changeset
   642
    __ cas(O1, O2, O0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
    __ retl(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  // Support for jlong Atomic::cmpxchg(jlong exchange_value, volatile jlong *dest, jlong compare_value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  //
18097
acd70736bd60 8008407: remove SPARC V8 support
morris
parents: 14633
diff changeset
   651
  // Arguments:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  //      exchange_value: O1:O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  //      dest:           O2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  //      compare_value:  O4:O3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  // Results:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  //     O1:O0: the value previously stored in dest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  // Overwrites: G1,G2,G3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  address generate_atomic_cmpxchg_long() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
    StubCodeMark mark(this, "StubRoutines", "atomic_cmpxchg_long");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
    __ sllx(O0, 32, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
    __ srl(O1, 0, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
    __ or3(O0,O1,O0);      // O0 holds 64-bit value from compare_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
    __ sllx(O3, 32, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
    __ srl(O4, 0, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
    __ or3(O3,O4,O3);     // O3 holds 64-bit value from exchange_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
    __ casx(O2, O3, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
    __ srl(O0, 0, O1);    // unpacked return value in O1:O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
    __ retl(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
    __ delayed()->srlx(O0, 32, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
59249
29b0d0b61615 8234737: Harmonize parameter order in Atomic - add
stefank
parents: 55490
diff changeset
   682
  // Implementation of jint atomic_add(jint add_value, volatile jint* dest)
29b0d0b61615 8234737: Harmonize parameter order in Atomic - add
stefank
parents: 55490
diff changeset
   683
  // used by Atomic::add(volatile jint* dest, jint add_value)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  //
18097
acd70736bd60 8008407: remove SPARC V8 support
morris
parents: 14633
diff changeset
   685
  // Arguments:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  //      add_value: O0   (e.g., +1 or -1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  //      dest:      O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  // Results:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  //     O0: the new value stored in dest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  //
18097
acd70736bd60 8008407: remove SPARC V8 support
morris
parents: 14633
diff changeset
   694
  // Overwrites: O3
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  address generate_atomic_add() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
    StubCodeMark mark(this, "StubRoutines", "atomic_add");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
    __ BIND(_atomic_add_stub);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
18097
acd70736bd60 8008407: remove SPARC V8 support
morris
parents: 14633
diff changeset
   701
    Label(retry);
acd70736bd60 8008407: remove SPARC V8 support
morris
parents: 14633
diff changeset
   702
    __ BIND(retry);
acd70736bd60 8008407: remove SPARC V8 support
morris
parents: 14633
diff changeset
   703
acd70736bd60 8008407: remove SPARC V8 support
morris
parents: 14633
diff changeset
   704
    __ lduw(O1, 0, O2);
acd70736bd60 8008407: remove SPARC V8 support
morris
parents: 14633
diff changeset
   705
    __ add(O0, O2, O3);
acd70736bd60 8008407: remove SPARC V8 support
morris
parents: 14633
diff changeset
   706
    __ cas(O1, O2, O3);
acd70736bd60 8008407: remove SPARC V8 support
morris
parents: 14633
diff changeset
   707
    __ cmp_and_br_short(O2, O3, Assembler::notEqual, Assembler::pn, retry);
acd70736bd60 8008407: remove SPARC V8 support
morris
parents: 14633
diff changeset
   708
    __ retl(false);
acd70736bd60 8008407: remove SPARC V8 support
morris
parents: 14633
diff changeset
   709
    __ delayed()->add(O0, O2, O0); // note that cas made O2==O3
1
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
  Label _atomic_add_stub;  // called from other stubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  // Support for uint StubRoutine::Sparc::partial_subtype_check( Klass sub, Klass super );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  // Arguments :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
  //      ret  : O0, returned
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  //      icc/xcc: set as O0 (depending on wordSize)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  //      sub  : O1, argument, not changed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
  //      super: O2, argument, not changed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
  //      raddr: O7, blown by call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
  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
   725
    __ align(CodeEntryAlignment);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
    StubCodeMark mark(this, "StubRoutines", "partial_subtype_check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
    address start = __ pc();
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
   728
    Label miss;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
    __ save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
    Register Rret   = I0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
    Register Rsub   = I1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
    Register Rsuper = I2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
    Register L0_ary_len = L0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
    Register L1_ary_ptr = L1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
    Register L2_super   = L2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
    Register L3_index   = L3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
   740
    __ check_klass_subtype_slow_path(Rsub, Rsuper,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
   741
                                     L0, L1, L2, L3,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
   742
                                     NULL, &miss);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
   743
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
   744
    // Match falls through here.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
   745
    __ addcc(G0,0,Rret);        // set Z flags, Z result
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
    __ ret();                   // Result in Rret is zero; flags set to Z
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
    __ delayed()->restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
    __ BIND(miss);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
    __ addcc(G0,1,Rret);        // set NZ flags, NZ result
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
    __ ret();                   // Result in Rret is != 0; flags set to NZ
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
    __ delayed()->restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
  // Called from MacroAssembler::verify_oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  address generate_verify_oop_subroutine() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
    StubCodeMark mark(this, "StubRoutines", "verify_oop_stub");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
    __ verify_oop_subroutine();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  // Verify that a register contains clean 32-bits positive value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  // (high 32-bits are 0) so it could be used in 64-bits shifts (sllx, srax).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
  //  Input:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  //    Rint  -  32-bits value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
  //    Rtmp  -  scratch
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
  void assert_clean_int(Register Rint, Register Rtmp) {
46381
020219e46c86 8150388: Remove SPARC 32-bit support
gtriantafill
parents: 38246
diff changeset
   782
  #if defined(ASSERT)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
    __ signx(Rint, Rtmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
    __ cmp(Rint, Rtmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
    __ breakpoint_trap(Assembler::notEqual, Assembler::xcc);
46381
020219e46c86 8150388: Remove SPARC 32-bit support
gtriantafill
parents: 38246
diff changeset
   786
  #endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
  //  Generate overlap test for array copy stubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  //  Input:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
  //    O0    -  array1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
  //    O1    -  array2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  //    O2    -  element count
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
  //  Kills temps:  O3, O4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
  void array_overlap_test(address no_overlap_target, int log2_elem_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
    assert(no_overlap_target != NULL, "must be generated");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
    array_overlap_test(no_overlap_target, NULL, log2_elem_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
  void array_overlap_test(Label& L_no_overlap, int log2_elem_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
    array_overlap_test(NULL, &L_no_overlap, log2_elem_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
  void array_overlap_test(address no_overlap_target, Label* NOLp, int log2_elem_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
    const Register from       = O0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
    const Register to         = O1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
    const Register count      = O2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
    const Register to_from    = O3; // to - from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
    const Register byte_count = O4; // count << log2_elem_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
      __ subcc(to, from, to_from);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
      __ sll_ptr(count, log2_elem_size, byte_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
      if (NOLp == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
        __ brx(Assembler::lessEqualUnsigned, false, Assembler::pt, no_overlap_target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
      else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
        __ brx(Assembler::lessEqualUnsigned, false, Assembler::pt, (*NOLp));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
      __ delayed()->cmp(to_from, byte_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
      if (NOLp == NULL)
6057
e660446e0804 6962569: assembler_sparc.cpp:1969: assert(false) failed: error
tonyp
parents: 5702
diff changeset
   821
        __ brx(Assembler::greaterEqualUnsigned, false, Assembler::pt, no_overlap_target);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
      else
6057
e660446e0804 6962569: assembler_sparc.cpp:1969: assert(false) failed: error
tonyp
parents: 5702
diff changeset
   823
        __ brx(Assembler::greaterEqualUnsigned, false, Assembler::pt, (*NOLp));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   828
  //
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   829
  // Generate main code for disjoint arraycopy
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   830
  //
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   831
  typedef void (StubGenerator::*CopyLoopFunc)(Register from, Register to, Register count, int count_dec,
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   832
                                              Label& L_loop, bool use_prefetch, bool use_bis);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   833
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   834
  void disjoint_copy_core(Register from, Register to, Register count, int log2_elem_size,
24326
d3fdd5c16fe0 8022070: Compilation error in stubGenerator_sparc.cpp with some compilers
mikael
parents: 22505
diff changeset
   835
                          int iter_size, StubGenerator::CopyLoopFunc copy_loop_func) {
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   836
    Label L_copy;
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   837
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   838
    assert(log2_elem_size <= 3, "the following code should be changed");
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   839
    int count_dec = 16>>log2_elem_size;
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   840
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   841
    int prefetch_dist = MAX2(ArraycopySrcPrefetchDistance, ArraycopyDstPrefetchDistance);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   842
    assert(prefetch_dist < 4096, "invalid value");
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   843
    prefetch_dist = (prefetch_dist + (iter_size-1)) & (-iter_size); // round up to one iteration copy size
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   844
    int prefetch_count = (prefetch_dist >> log2_elem_size); // elements count
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   845
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   846
    if (UseBlockCopy) {
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   847
      Label L_block_copy, L_block_copy_prefetch, L_skip_block_copy;
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   848
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   849
      // 64 bytes tail + bytes copied in one loop iteration
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   850
      int tail_size = 64 + iter_size;
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   851
      int block_copy_count = (MAX2(tail_size, (int)BlockCopyLowLimit)) >> log2_elem_size;
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   852
      // Use BIS copy only for big arrays since it requires membar.
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   853
      __ set(block_copy_count, O4);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   854
      __ cmp_and_br_short(count, O4, Assembler::lessUnsigned, Assembler::pt, L_skip_block_copy);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   855
      // This code is for disjoint source and destination:
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   856
      //   to <= from || to >= from+count
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   857
      // but BIS will stomp over 'from' if (to > from-tail_size && to <= from)
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   858
      __ sub(from, to, O4);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   859
      __ srax(O4, 4, O4); // divide by 16 since following short branch have only 5 bits for imm.
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   860
      __ cmp_and_br_short(O4, (tail_size>>4), Assembler::lessEqualUnsigned, Assembler::pn, L_skip_block_copy);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   861
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   862
      __ wrasi(G0, Assembler::ASI_ST_BLKINIT_PRIMARY);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   863
      // BIS should not be used to copy tail (64 bytes+iter_size)
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   864
      // to avoid zeroing of following values.
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   865
      __ sub(count, (tail_size>>log2_elem_size), count); // count is still positive >= 0
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   866
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   867
      if (prefetch_count > 0) { // rounded up to one iteration count
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   868
        // Do prefetching only if copy size is bigger
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   869
        // than prefetch distance.
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   870
        __ set(prefetch_count, O4);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   871
        __ cmp_and_brx_short(count, O4, Assembler::less, Assembler::pt, L_block_copy);
46422
6ecc7cc67619 8179019: Correct range checks for command-line options ArraycopySrcPrefetchDistance and ArraycopyDstPrefetchDistance
zmajo
parents: 46381
diff changeset
   872
        __ sub(count, O4, count);
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   873
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   874
        (this->*copy_loop_func)(from, to, count, count_dec, L_block_copy_prefetch, true, true);
46422
6ecc7cc67619 8179019: Correct range checks for command-line options ArraycopySrcPrefetchDistance and ArraycopyDstPrefetchDistance
zmajo
parents: 46381
diff changeset
   875
        __ set(prefetch_count, O4);
6ecc7cc67619 8179019: Correct range checks for command-line options ArraycopySrcPrefetchDistance and ArraycopyDstPrefetchDistance
zmajo
parents: 46381
diff changeset
   876
        __ add(count, O4, count);
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   877
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   878
      } // prefetch_count > 0
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   879
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   880
      (this->*copy_loop_func)(from, to, count, count_dec, L_block_copy, false, true);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   881
      __ add(count, (tail_size>>log2_elem_size), count); // restore count
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   882
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   883
      __ wrasi(G0, Assembler::ASI_PRIMARY_NOFAULT);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   884
      // BIS needs membar.
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   885
      __ membar(Assembler::StoreLoad);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   886
      // Copy tail
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   887
      __ ba_short(L_copy);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   888
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   889
      __ BIND(L_skip_block_copy);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   890
    } // UseBlockCopy
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   891
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   892
    if (prefetch_count > 0) { // rounded up to one iteration count
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   893
      // Do prefetching only if copy size is bigger
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   894
      // than prefetch distance.
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   895
      __ set(prefetch_count, O4);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   896
      __ cmp_and_brx_short(count, O4, Assembler::lessUnsigned, Assembler::pt, L_copy);
46422
6ecc7cc67619 8179019: Correct range checks for command-line options ArraycopySrcPrefetchDistance and ArraycopyDstPrefetchDistance
zmajo
parents: 46381
diff changeset
   897
      __ sub(count, O4, count);
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   898
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   899
      Label L_copy_prefetch;
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   900
      (this->*copy_loop_func)(from, to, count, count_dec, L_copy_prefetch, true, false);
46422
6ecc7cc67619 8179019: Correct range checks for command-line options ArraycopySrcPrefetchDistance and ArraycopyDstPrefetchDistance
zmajo
parents: 46381
diff changeset
   901
      __ set(prefetch_count, O4);
6ecc7cc67619 8179019: Correct range checks for command-line options ArraycopySrcPrefetchDistance and ArraycopyDstPrefetchDistance
zmajo
parents: 46381
diff changeset
   902
      __ add(count, O4, count);
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   903
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   904
    } // prefetch_count > 0
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   905
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   906
    (this->*copy_loop_func)(from, to, count, count_dec, L_copy, false, false);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   907
  }
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   908
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   909
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   910
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   911
  //
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   912
  // Helper methods for copy_16_bytes_forward_with_shift()
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   913
  //
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   914
  void copy_16_bytes_shift_loop(Register from, Register to, Register count, int count_dec,
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   915
                                Label& L_loop, bool use_prefetch, bool use_bis) {
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   916
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   917
    const Register left_shift  = G1; // left  shift bit counter
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   918
    const Register right_shift = G5; // right shift bit counter
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   919
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   920
    __ align(OptoLoopAlignment);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   921
    __ BIND(L_loop);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   922
    if (use_prefetch) {
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   923
      if (ArraycopySrcPrefetchDistance > 0) {
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   924
        __ prefetch(from, ArraycopySrcPrefetchDistance, Assembler::severalReads);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   925
      }
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   926
      if (ArraycopyDstPrefetchDistance > 0) {
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   927
        __ prefetch(to, ArraycopyDstPrefetchDistance, Assembler::severalWritesAndPossiblyReads);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   928
      }
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   929
    }
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   930
    __ ldx(from, 0, O4);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   931
    __ ldx(from, 8, G4);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   932
    __ inc(to, 16);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   933
    __ inc(from, 16);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   934
    __ deccc(count, count_dec); // Can we do next iteration after this one?
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   935
    __ srlx(O4, right_shift, G3);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   936
    __ bset(G3, O3);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   937
    __ sllx(O4, left_shift,  O4);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   938
    __ srlx(G4, right_shift, G3);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   939
    __ bset(G3, O4);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   940
    if (use_bis) {
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   941
      __ stxa(O3, to, -16);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   942
      __ stxa(O4, to, -8);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   943
    } else {
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   944
      __ stx(O3, to, -16);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   945
      __ stx(O4, to, -8);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   946
    }
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   947
    __ brx(Assembler::greaterEqual, false, Assembler::pt, L_loop);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   948
    __ delayed()->sllx(G4, left_shift,  O3);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   949
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
  // Copy big chunks forward with shift
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
  // Inputs:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
  //   from      - source arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
  //   to        - destination array aligned to 8-bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
  //   count     - elements count to copy >= the count equivalent to 16 bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
  //   count_dec - elements count's decrement equivalent to 16 bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
  //   L_copy_bytes - copy exit label
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
  void copy_16_bytes_forward_with_shift(Register from, Register to,
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   961
                     Register count, int log2_elem_size, Label& L_copy_bytes) {
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   962
    Label L_aligned_copy, L_copy_last_bytes;
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   963
    assert(log2_elem_size <= 3, "the following code should be changed");
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   964
    int count_dec = 16>>log2_elem_size;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
    // if both arrays have the same alignment mod 8, do 8 bytes aligned copy
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   967
    __ andcc(from, 7, G1); // misaligned bytes
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   968
    __ br(Assembler::zero, false, Assembler::pt, L_aligned_copy);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   969
    __ delayed()->nop();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
    const Register left_shift  = G1; // left  shift bit counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
    const Register right_shift = G5; // right shift bit counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   974
    __ sll(G1, LogBitsPerByte, left_shift);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   975
    __ mov(64, right_shift);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   976
    __ sub(right_shift, left_shift, right_shift);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
    // Load 2 aligned 8-bytes chunks and use one from previous iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
    // to form 2 aligned 8-bytes chunks to store.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
    //
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   982
    __ dec(count, count_dec);   // Pre-decrement 'count'
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   983
    __ andn(from, 7, from);     // Align address
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   984
    __ ldx(from, 0, O3);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   985
    __ inc(from, 8);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   986
    __ sllx(O3, left_shift,  O3);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   987
24326
d3fdd5c16fe0 8022070: Compilation error in stubGenerator_sparc.cpp with some compilers
mikael
parents: 22505
diff changeset
   988
    disjoint_copy_core(from, to, count, log2_elem_size, 16, &StubGenerator::copy_16_bytes_shift_loop);
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   989
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   990
    __ inccc(count, count_dec>>1 ); // + 8 bytes
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   991
    __ brx(Assembler::negative, true, Assembler::pn, L_copy_last_bytes);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   992
    __ delayed()->inc(count, count_dec>>1); // restore 'count'
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   993
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   994
    // copy 8 bytes, part of them already loaded in O3
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   995
    __ ldx(from, 0, O4);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   996
    __ inc(to, 8);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   997
    __ inc(from, 8);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   998
    __ srlx(O4, right_shift, G3);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
   999
    __ bset(O3, G3);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1000
    __ stx(G3, to, -8);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
    __ BIND(L_copy_last_bytes);
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1003
    __ srl(right_shift, LogBitsPerByte, right_shift); // misaligned bytes
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1004
    __ br(Assembler::always, false, Assembler::pt, L_copy_bytes);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1005
    __ delayed()->sub(from, right_shift, from);       // restore address
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
    __ BIND(L_aligned_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
  // Copy big chunks backward with shift
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
  // Inputs:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
  //   end_from  - source arrays end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
  //   end_to    - destination array end address aligned to 8-bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
  //   count     - elements count to copy >= the count equivalent to 16 bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
  //   count_dec - elements count's decrement equivalent to 16 bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
  //   L_aligned_copy - aligned copy exit label
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
  //   L_copy_bytes   - copy exit label
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
  void copy_16_bytes_backward_with_shift(Register end_from, Register end_to,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
                     Register count, int count_dec,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
                     Label& L_aligned_copy, Label& L_copy_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
    Label L_loop, L_copy_last_bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
    // if both arrays have the same alignment mod 8, do 8 bytes aligned copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
      __ andcc(end_from, 7, G1); // misaligned bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
      __ br(Assembler::zero, false, Assembler::pt, L_aligned_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
      __ delayed()->deccc(count, count_dec); // Pre-decrement 'count'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
    const Register left_shift  = G1; // left  shift bit counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
    const Register right_shift = G5; // right shift bit counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
      __ sll(G1, LogBitsPerByte, left_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
      __ mov(64, right_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
      __ sub(right_shift, left_shift, right_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
    // Load 2 aligned 8-bytes chunks and use one from previous iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
    // to form 2 aligned 8-bytes chunks to store.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
      __ andn(end_from, 7, end_from);     // Align address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
      __ ldx(end_from, 0, O3);
5249
5cac34e6fe54 6940701: Don't align loops in stubs for Niagara sparc
kvn
parents: 5248
diff changeset
  1043
      __ align(OptoLoopAlignment);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
    __ BIND(L_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
      __ ldx(end_from, -8, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
      __ deccc(count, count_dec); // Can we do next iteration after this one?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
      __ ldx(end_from, -16, G4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
      __ dec(end_to, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
      __ dec(end_from, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
      __ srlx(O3, right_shift, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
      __ sllx(O4, left_shift,  G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
      __ bset(G3, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
      __ stx(O3, end_to, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
      __ srlx(O4, right_shift, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
      __ sllx(G4, left_shift,  G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
      __ bset(G3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
      __ stx(O4, end_to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
      __ brx(Assembler::greaterEqual, false, Assembler::pt, L_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
      __ delayed()->mov(G4, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
      __ inccc(count, count_dec>>1 ); // + 8 bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
      __ brx(Assembler::negative, true, Assembler::pn, L_copy_last_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
      __ delayed()->inc(count, count_dec>>1); // restore 'count'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
      // copy 8 bytes, part of them already loaded in O3
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
      __ ldx(end_from, -8, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
      __ dec(end_to, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
      __ dec(end_from, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
      __ srlx(O3, right_shift, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
      __ sllx(O4, left_shift,  G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
      __ bset(O3, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
      __ stx(G3, end_to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
    __ BIND(L_copy_last_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
      __ srl(left_shift, LogBitsPerByte, left_shift);    // misaligned bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
      __ br(Assembler::always, false, Assembler::pt, L_copy_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
      __ delayed()->add(end_from, left_shift, end_from); // restore address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
55490
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1080
  address generate_unsafecopy_common_error_exit() {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1081
    address start_pc = __ pc();
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1082
    if (UseBlockCopy) {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1083
      __ wrasi(G0, Assembler::ASI_PRIMARY_NOFAULT);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1084
      __ membar(Assembler::StoreLoad);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1085
    }
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1086
    __ retl();
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1087
    __ delayed()->mov(G0, O0); // return 0
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1088
    return start_pc;
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1089
  }
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1090
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
  //  Generate stub for disjoint byte copy.  If "aligned" is true, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
  //  "from" and "to" addresses are assumed to be heapword aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
  //
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1100
  address generate_disjoint_byte_copy(bool aligned, address *entry, const char *name) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
    Label L_skip_alignment, L_align;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
    Label L_copy_byte, L_copy_byte_loop, L_exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
    const Register from      = O0;   // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
    const Register to        = O1;   // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
    const Register count     = O2;   // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
    const Register offset    = O5;   // offset from start of arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
    // O3, O4, G3, G4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
    assert_clean_int(count, O3);     // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1116
    if (entry != NULL) {
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1117
      *entry = __ pc();
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1118
      // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1119
      BLOCK_COMMENT("Entry:");
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1120
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
55490
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1122
    {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1123
      // UnsafeCopyMemory page error: continue at UnsafeCopyMemory common_error_exit
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1124
      UnsafeCopyMemoryMark ucmm(this, !aligned, false);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1125
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1126
      // for short arrays, just do single element copy
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1127
      __ cmp(count, 23); // 16 + 7
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1128
      __ brx(Assembler::less, false, Assembler::pn, L_copy_byte);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1129
      __ delayed()->mov(G0, offset);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1130
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1131
      if (aligned) {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1132
        // 'aligned' == true when it is known statically during compilation
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1133
        // of this arraycopy call site that both 'from' and 'to' addresses
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1134
        // are HeapWordSize aligned (see LibraryCallKit::basictype2arraycopy()).
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1135
        //
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1136
        // Aligned arrays have 4 bytes alignment in 32-bits VM
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1137
        // and 8 bytes - in 64-bits VM. So we do it only for 32-bits VM
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1138
        //
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1139
      } else {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1140
        // copy bytes to align 'to' on 8 byte boundary
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1141
        __ andcc(to, 7, G1); // misaligned bytes
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1142
        __ br(Assembler::zero, false, Assembler::pt, L_skip_alignment);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1143
        __ delayed()->neg(G1);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1144
        __ inc(G1, 8);       // bytes need to copy to next 8-bytes alignment
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1145
        __ sub(count, G1, count);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1146
      __ BIND(L_align);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1147
        __ ldub(from, 0, O3);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1148
        __ deccc(G1);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1149
        __ inc(from);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1150
        __ stb(O3, to, 0);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1151
        __ br(Assembler::notZero, false, Assembler::pt, L_align);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1152
        __ delayed()->inc(to);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1153
      __ BIND(L_skip_alignment);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1154
      }
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1155
      if (!aligned) {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1156
        // Copy with shift 16 bytes per iteration if arrays do not have
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1157
        // the same alignment mod 8, otherwise fall through to the next
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1158
        // code for aligned copy.
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1159
        // The compare above (count >= 23) guarantes 'count' >= 16 bytes.
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1160
        // Also jump over aligned copy after the copy with shift completed.
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1161
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1162
        copy_16_bytes_forward_with_shift(from, to, count, 0, L_copy_byte);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1163
      }
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1164
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1165
      // Both array are 8 bytes aligned, copy 16 bytes at a time
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
      __ and3(count, 7, G4); // Save count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
      __ srl(count, 3, count);
55490
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1168
      generate_disjoint_long_copy_core(aligned);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
      __ mov(G4, count);     // Restore count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
55490
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1171
      // copy tailing bytes
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1172
      __ BIND(L_copy_byte);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1173
        __ cmp_and_br_short(count, 0, Assembler::equal, Assembler::pt, L_exit);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1174
        __ align(OptoLoopAlignment);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1175
      __ BIND(L_copy_byte_loop);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1176
        __ ldub(from, offset, O3);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1177
        __ deccc(count);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1178
        __ stb(O3, to, offset);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1179
        __ brx(Assembler::notZero, false, Assembler::pt, L_copy_byte_loop);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1180
        __ delayed()->inc(offset);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1181
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
    __ BIND(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
      // O3, O4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
      inc_counter_np(SharedRuntime::_jbyte_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
      __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
      __ delayed()->mov(G0, O0); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
  //  Generate stub for conjoint byte copy.  If "aligned" is true, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
  //  "from" and "to" addresses are assumed to be heapword aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
  //
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1200
  address generate_conjoint_byte_copy(bool aligned, address nooverlap_target,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1201
                                      address *entry, const char *name) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
    // Do reverse copy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
    Label L_skip_alignment, L_align, L_aligned_copy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
    Label L_copy_byte, L_copy_byte_loop, L_exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
    const Register from      = O0;   // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
    const Register to        = O1;   // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
    const Register count     = O2;   // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
    const Register end_from  = from; // source array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
    const Register end_to    = to;   // destination array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
    assert_clean_int(count, O3);     // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1219
    if (entry != NULL) {
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1220
      *entry = __ pc();
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1221
      // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1222
      BLOCK_COMMENT("Entry:");
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1223
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
    array_overlap_test(nooverlap_target, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
    {
55490
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1228
      // UnsafeCopyMemory page error: continue at UnsafeCopyMemory common_error_exit
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1229
      UnsafeCopyMemoryMark ucmm(this, !aligned, false);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1230
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1231
      __ add(to, count, end_to);       // offset after last copied element
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1232
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1233
      // for short arrays, just do single element copy
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1234
      __ cmp(count, 23); // 16 + 7
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1235
      __ brx(Assembler::less, false, Assembler::pn, L_copy_byte);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1236
      __ delayed()->add(from, count, end_from);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1237
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1238
      {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1239
        // Align end of arrays since they could be not aligned even
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1240
        // when arrays itself are aligned.
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1241
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1242
        // copy bytes to align 'end_to' on 8 byte boundary
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1243
        __ andcc(end_to, 7, G1); // misaligned bytes
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1244
        __ br(Assembler::zero, false, Assembler::pt, L_skip_alignment);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1245
        __ delayed()->nop();
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1246
        __ sub(count, G1, count);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1247
      __ BIND(L_align);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1248
        __ dec(end_from);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1249
        __ dec(end_to);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1250
        __ ldub(end_from, 0, O3);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1251
        __ deccc(G1);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1252
        __ brx(Assembler::notZero, false, Assembler::pt, L_align);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1253
        __ delayed()->stb(O3, end_to, 0);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1254
      __ BIND(L_skip_alignment);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1255
      }
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1256
      if (aligned) {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1257
        // Both arrays are aligned to 8-bytes in 64-bits VM.
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1258
        // The 'count' is decremented in copy_16_bytes_backward_with_shift()
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1259
        // in unaligned case.
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1260
        __ dec(count, 16);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1261
      } else {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1262
        // Copy with shift 16 bytes per iteration if arrays do not have
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1263
        // the same alignment mod 8, otherwise jump to the next
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1264
        // code for aligned copy (and substracting 16 from 'count' before jump).
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1265
        // The compare above (count >= 11) guarantes 'count' >= 16 bytes.
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1266
        // Also jump over aligned copy after the copy with shift completed.
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1267
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1268
       copy_16_bytes_backward_with_shift(end_from, end_to, count, 16,
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1269
                                          L_aligned_copy, L_copy_byte);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1270
      }
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1271
      // copy 4 elements (16 bytes) at a time
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1272
        __ align(OptoLoopAlignment);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1273
      __ BIND(L_aligned_copy);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1274
        __ dec(end_from, 16);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1275
        __ ldx(end_from, 8, O3);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1276
        __ ldx(end_from, 0, O4);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1277
        __ dec(end_to, 16);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1278
        __ deccc(count, 16);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1279
        __ stx(O3, end_to, 8);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1280
        __ brx(Assembler::greaterEqual, false, Assembler::pt, L_aligned_copy);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1281
        __ delayed()->stx(O4, end_to, 0);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1282
        __ inc(count, 16);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1283
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1284
      // copy 1 element (2 bytes) at a time
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1285
      __ BIND(L_copy_byte);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1286
        __ cmp_and_br_short(count, 0, Assembler::equal, Assembler::pt, L_exit);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1287
        __ align(OptoLoopAlignment);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1288
      __ BIND(L_copy_byte_loop);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1289
        __ dec(end_from);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1290
        __ dec(end_to);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1291
        __ ldub(end_from, 0, O4);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1292
        __ deccc(count);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1293
        __ brx(Assembler::greater, false, Assembler::pt, L_copy_byte_loop);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1294
        __ delayed()->stb(O4, end_to, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
    __ BIND(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
    // O3, O4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
    inc_counter_np(SharedRuntime::_jbyte_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
    __ delayed()->mov(G0, O0); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
  //  Generate stub for disjoint short copy.  If "aligned" is true, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
  //  "from" and "to" addresses are assumed to be heapword aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
  //
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1314
  address generate_disjoint_short_copy(bool aligned, address *entry, const char * name) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
    Label L_skip_alignment, L_skip_alignment2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
    Label L_copy_2_bytes, L_copy_2_bytes_loop, L_exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
    const Register from      = O0;   // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
    const Register to        = O1;   // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
    const Register count     = O2;   // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
    const Register offset    = O5;   // offset from start of arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
    // O3, O4, G3, G4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
    assert_clean_int(count, O3);     // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1330
    if (entry != NULL) {
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1331
      *entry = __ pc();
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1332
      // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1333
      BLOCK_COMMENT("Entry:");
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1334
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
55490
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1336
    {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1337
      // UnsafeCopyMemory page error: continue at UnsafeCopyMemory common_error_exit
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1338
      UnsafeCopyMemoryMark ucmm(this, !aligned, false);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1339
      // for short arrays, just do single element copy
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1340
      __ cmp(count, 11); // 8 + 3  (22 bytes)
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1341
      __ brx(Assembler::less, false, Assembler::pn, L_copy_2_bytes);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1342
      __ delayed()->mov(G0, offset);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1343
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1344
      if (aligned) {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1345
        // 'aligned' == true when it is known statically during compilation
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1346
        // of this arraycopy call site that both 'from' and 'to' addresses
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1347
        // are HeapWordSize aligned (see LibraryCallKit::basictype2arraycopy()).
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1348
        //
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1349
        // Aligned arrays have 4 bytes alignment in 32-bits VM
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1350
        // and 8 bytes - in 64-bits VM.
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1351
        //
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1352
      } else {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1353
        // copy 1 element if necessary to align 'to' on an 4 bytes
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1354
        __ andcc(to, 3, G0);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1355
        __ br(Assembler::zero, false, Assembler::pt, L_skip_alignment);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1356
        __ delayed()->lduh(from, 0, O3);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1357
        __ inc(from, 2);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1358
        __ inc(to, 2);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1359
        __ dec(count);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1360
        __ sth(O3, to, -2);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1361
      __ BIND(L_skip_alignment);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1362
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1363
        // copy 2 elements to align 'to' on an 8 byte boundary
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1364
        __ andcc(to, 7, G0);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1365
        __ br(Assembler::zero, false, Assembler::pn, L_skip_alignment2);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1366
        __ delayed()->lduh(from, 0, O3);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1367
        __ dec(count, 2);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1368
        __ lduh(from, 2, O4);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1369
        __ inc(from, 4);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1370
        __ inc(to, 4);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1371
        __ sth(O3, to, -4);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1372
        __ sth(O4, to, -2);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1373
      __ BIND(L_skip_alignment2);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1374
      }
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1375
      if (!aligned) {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1376
        // Copy with shift 16 bytes per iteration if arrays do not have
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1377
        // the same alignment mod 8, otherwise fall through to the next
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1378
        // code for aligned copy.
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1379
        // The compare above (count >= 11) guarantes 'count' >= 16 bytes.
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1380
        // Also jump over aligned copy after the copy with shift completed.
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1381
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1382
        copy_16_bytes_forward_with_shift(from, to, count, 1, L_copy_2_bytes);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1383
      }
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1384
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1385
      // Both array are 8 bytes aligned, copy 16 bytes at a time
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1386
        __ and3(count, 3, G4); // Save
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1387
        __ srl(count, 2, count);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1388
       generate_disjoint_long_copy_core(aligned);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1389
        __ mov(G4, count); // restore
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1390
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1391
      // copy 1 element at a time
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1392
      __ BIND(L_copy_2_bytes);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1393
        __ cmp_and_br_short(count, 0, Assembler::equal, Assembler::pt, L_exit);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1394
        __ align(OptoLoopAlignment);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1395
      __ BIND(L_copy_2_bytes_loop);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1396
        __ lduh(from, offset, O3);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1397
        __ deccc(count);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1398
        __ sth(O3, to, offset);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1399
        __ brx(Assembler::notZero, false, Assembler::pt, L_copy_2_bytes_loop);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1400
        __ delayed()->inc(offset, 2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
    __ BIND(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
      // O3, O4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
      inc_counter_np(SharedRuntime::_jshort_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
      __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
      __ delayed()->mov(G0, O0); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
  //
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1412
  //  Generate stub for disjoint short fill.  If "aligned" is true, the
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1413
  //  "to" address is assumed to be heapword aligned.
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1414
  //
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1415
  // Arguments for generated stub:
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1416
  //      to:    O0
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1417
  //      value: O1
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1418
  //      count: O2 treated as signed
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1419
  //
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1420
  address generate_fill(BasicType t, bool aligned, const char* name) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1421
    __ align(CodeEntryAlignment);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1422
    StubCodeMark mark(this, "StubRoutines", name);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1423
    address start = __ pc();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1424
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1425
    const Register to        = O0;   // source array address
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1426
    const Register value     = O1;   // fill value
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1427
    const Register count     = O2;   // elements count
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1428
    // O3 is used as a temp register
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1429
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1430
    assert_clean_int(count, O3);     // Make sure 'count' is clean int.
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1431
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1432
    Label L_exit, L_skip_align1, L_skip_align2, L_fill_byte;
6464
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1433
    Label L_fill_2_bytes, L_fill_elements, L_fill_32_bytes;
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1434
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1435
    int shift = -1;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1436
    switch (t) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1437
       case T_BYTE:
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1438
        shift = 2;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1439
        break;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1440
       case T_SHORT:
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1441
        shift = 1;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1442
        break;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1443
      case T_INT:
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1444
         shift = 0;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1445
        break;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1446
      default: ShouldNotReachHere();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1447
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1448
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1449
    BLOCK_COMMENT("Entry:");
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1450
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1451
    if (t == T_BYTE) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1452
      // Zero extend value
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1453
      __ and3(value, 0xff, value);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1454
      __ sllx(value, 8, O3);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1455
      __ or3(value, O3, value);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1456
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1457
    if (t == T_SHORT) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1458
      // Zero extend value
6464
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1459
      __ sllx(value, 48, value);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1460
      __ srlx(value, 48, value);
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1461
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1462
    if (t == T_BYTE || t == T_SHORT) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1463
      __ sllx(value, 16, O3);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1464
      __ or3(value, O3, value);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1465
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1466
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1467
    __ cmp(count, 2<<shift); // Short arrays (< 8 bytes) fill by element
6464
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1468
    __ brx(Assembler::lessUnsigned, false, Assembler::pn, L_fill_elements); // use unsigned cmp
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1469
    __ delayed()->andcc(count, 1, G0);
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1470
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1471
    if (!aligned && (t == T_BYTE || t == T_SHORT)) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1472
      // align source address at 4 bytes address boundary
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1473
      if (t == T_BYTE) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1474
        // One byte misalignment happens only for byte arrays
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1475
        __ andcc(to, 1, G0);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1476
        __ br(Assembler::zero, false, Assembler::pt, L_skip_align1);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1477
        __ delayed()->nop();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1478
        __ stb(value, to, 0);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1479
        __ inc(to, 1);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1480
        __ dec(count, 1);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1481
        __ BIND(L_skip_align1);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1482
      }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1483
      // Two bytes misalignment happens only for byte and short (char) arrays
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1484
      __ andcc(to, 2, G0);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1485
      __ br(Assembler::zero, false, Assembler::pt, L_skip_align2);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1486
      __ delayed()->nop();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1487
      __ sth(value, to, 0);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1488
      __ inc(to, 2);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1489
      __ dec(count, 1 << (shift - 1));
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1490
      __ BIND(L_skip_align2);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1491
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1492
    if (!aligned) {
46462
f92a713126b1 8179903: Clean up SPARC 32-bit support
gtriantafill
parents: 46422
diff changeset
  1493
      // align to 8 bytes, we know we are 4 byte aligned to start
f92a713126b1 8179903: Clean up SPARC 32-bit support
gtriantafill
parents: 46422
diff changeset
  1494
      __ andcc(to, 7, G0);
f92a713126b1 8179903: Clean up SPARC 32-bit support
gtriantafill
parents: 46422
diff changeset
  1495
      __ br(Assembler::zero, false, Assembler::pt, L_fill_32_bytes);
f92a713126b1 8179903: Clean up SPARC 32-bit support
gtriantafill
parents: 46422
diff changeset
  1496
      __ delayed()->nop();
f92a713126b1 8179903: Clean up SPARC 32-bit support
gtriantafill
parents: 46422
diff changeset
  1497
      __ stw(value, to, 0);
f92a713126b1 8179903: Clean up SPARC 32-bit support
gtriantafill
parents: 46422
diff changeset
  1498
      __ inc(to, 4);
f92a713126b1 8179903: Clean up SPARC 32-bit support
gtriantafill
parents: 46422
diff changeset
  1499
      __ dec(count, 1 << shift);
f92a713126b1 8179903: Clean up SPARC 32-bit support
gtriantafill
parents: 46422
diff changeset
  1500
      __ BIND(L_fill_32_bytes);
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1501
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1502
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1503
    if (t == T_INT) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1504
      // Zero extend value
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1505
      __ srl(value, 0, value);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1506
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1507
    if (t == T_BYTE || t == T_SHORT || t == T_INT) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1508
      __ sllx(value, 32, O3);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1509
      __ or3(value, O3, value);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1510
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1511
6452
cc624b341ab2 6981773: incorrect fill value with OptimizeFill
never
parents: 6433
diff changeset
  1512
    Label L_check_fill_8_bytes;
cc624b341ab2 6981773: incorrect fill value with OptimizeFill
never
parents: 6433
diff changeset
  1513
    // Fill 32-byte chunks
cc624b341ab2 6981773: incorrect fill value with OptimizeFill
never
parents: 6433
diff changeset
  1514
    __ subcc(count, 8 << shift, count);
cc624b341ab2 6981773: incorrect fill value with OptimizeFill
never
parents: 6433
diff changeset
  1515
    __ brx(Assembler::less, false, Assembler::pt, L_check_fill_8_bytes);
cc624b341ab2 6981773: incorrect fill value with OptimizeFill
never
parents: 6433
diff changeset
  1516
    __ delayed()->nop();
cc624b341ab2 6981773: incorrect fill value with OptimizeFill
never
parents: 6433
diff changeset
  1517
6464
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1518
    Label L_fill_32_bytes_loop, L_fill_4_bytes;
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1519
    __ align(16);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1520
    __ BIND(L_fill_32_bytes_loop);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1521
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1522
    __ stx(value, to, 0);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1523
    __ stx(value, to, 8);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1524
    __ stx(value, to, 16);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1525
    __ stx(value, to, 24);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1526
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1527
    __ subcc(count, 8 << shift, count);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1528
    __ brx(Assembler::greaterEqual, false, Assembler::pt, L_fill_32_bytes_loop);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1529
    __ delayed()->add(to, 32, to);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1530
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1531
    __ BIND(L_check_fill_8_bytes);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1532
    __ addcc(count, 8 << shift, count);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1533
    __ brx(Assembler::zero, false, Assembler::pn, L_exit);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1534
    __ delayed()->subcc(count, 1 << (shift + 1), count);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1535
    __ brx(Assembler::less, false, Assembler::pn, L_fill_4_bytes);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1536
    __ delayed()->andcc(count, 1<<shift, G0);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1537
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1538
    //
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1539
    // length is too short, just fill 8 bytes at a time
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1540
    //
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1541
    Label L_fill_8_bytes_loop;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1542
    __ BIND(L_fill_8_bytes_loop);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1543
    __ stx(value, to, 0);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1544
    __ subcc(count, 1 << (shift + 1), count);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1545
    __ brx(Assembler::greaterEqual, false, Assembler::pn, L_fill_8_bytes_loop);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1546
    __ delayed()->add(to, 8, to);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1547
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1548
    // fill trailing 4 bytes
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1549
    __ andcc(count, 1<<shift, G0);  // in delay slot of branches
6464
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1550
    if (t == T_INT) {
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1551
      __ BIND(L_fill_elements);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1552
    }
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1553
    __ BIND(L_fill_4_bytes);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1554
    __ brx(Assembler::zero, false, Assembler::pt, L_fill_2_bytes);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1555
    if (t == T_BYTE || t == T_SHORT) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1556
      __ delayed()->andcc(count, 1<<(shift-1), G0);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1557
    } else {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1558
      __ delayed()->nop();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1559
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1560
    __ stw(value, to, 0);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1561
    if (t == T_BYTE || t == T_SHORT) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1562
      __ inc(to, 4);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1563
      // fill trailing 2 bytes
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1564
      __ andcc(count, 1<<(shift-1), G0); // in delay slot of branches
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1565
      __ BIND(L_fill_2_bytes);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1566
      __ brx(Assembler::zero, false, Assembler::pt, L_fill_byte);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1567
      __ delayed()->andcc(count, 1, count);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1568
      __ sth(value, to, 0);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1569
      if (t == T_BYTE) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1570
        __ inc(to, 2);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1571
        // fill trailing byte
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1572
        __ andcc(count, 1, count);  // in delay slot of branches
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1573
        __ BIND(L_fill_byte);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1574
        __ brx(Assembler::zero, false, Assembler::pt, L_exit);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1575
        __ delayed()->nop();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1576
        __ stb(value, to, 0);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1577
      } else {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1578
        __ BIND(L_fill_byte);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1579
      }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1580
    } else {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1581
      __ BIND(L_fill_2_bytes);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1582
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1583
    __ BIND(L_exit);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1584
    __ retl();
6464
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1585
    __ delayed()->nop();
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1586
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1587
    // Handle copies less than 8 bytes.  Int is handled elsewhere.
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1588
    if (t == T_BYTE) {
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1589
      __ BIND(L_fill_elements);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1590
      Label L_fill_2, L_fill_4;
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1591
      // in delay slot __ andcc(count, 1, G0);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1592
      __ brx(Assembler::zero, false, Assembler::pt, L_fill_2);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1593
      __ delayed()->andcc(count, 2, G0);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1594
      __ stb(value, to, 0);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1595
      __ inc(to, 1);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1596
      __ BIND(L_fill_2);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1597
      __ brx(Assembler::zero, false, Assembler::pt, L_fill_4);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1598
      __ delayed()->andcc(count, 4, G0);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1599
      __ stb(value, to, 0);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1600
      __ stb(value, to, 1);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1601
      __ inc(to, 2);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1602
      __ BIND(L_fill_4);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1603
      __ brx(Assembler::zero, false, Assembler::pt, L_exit);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1604
      __ delayed()->nop();
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1605
      __ stb(value, to, 0);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1606
      __ stb(value, to, 1);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1607
      __ stb(value, to, 2);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1608
      __ retl();
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1609
      __ delayed()->stb(value, to, 3);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1610
    }
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1611
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1612
    if (t == T_SHORT) {
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1613
      Label L_fill_2;
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1614
      __ BIND(L_fill_elements);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1615
      // in delay slot __ andcc(count, 1, G0);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1616
      __ brx(Assembler::zero, false, Assembler::pt, L_fill_2);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1617
      __ delayed()->andcc(count, 2, G0);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1618
      __ sth(value, to, 0);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1619
      __ inc(to, 2);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1620
      __ BIND(L_fill_2);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1621
      __ brx(Assembler::zero, false, Assembler::pt, L_exit);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1622
      __ delayed()->nop();
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1623
      __ sth(value, to, 0);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1624
      __ retl();
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1625
      __ delayed()->sth(value, to, 2);
cd40daf5b832 6982370: SIGBUS in jbyte_fill
never
parents: 6452
diff changeset
  1626
    }
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1627
    return start;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1628
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1629
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  1630
  //
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1631
  //  Generate stub for conjoint short copy.  If "aligned" is true, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1632
  //  "from" and "to" addresses are assumed to be heapword aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1633
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1634
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1635
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1636
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1637
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1638
  //
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1639
  address generate_conjoint_short_copy(bool aligned, address nooverlap_target,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1640
                                       address *entry, const char *name) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1641
    // Do reverse copy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1642
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1643
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1644
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1645
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1646
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1647
    Label L_skip_alignment, L_skip_alignment2, L_aligned_copy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1648
    Label L_copy_2_bytes, L_copy_2_bytes_loop, L_exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1649
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1650
    const Register from      = O0;   // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1651
    const Register to        = O1;   // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1652
    const Register count     = O2;   // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1653
    const Register end_from  = from; // source array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1654
    const Register end_to    = to;   // destination array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1655
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1656
    const Register byte_count = O3;  // bytes count to copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1657
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1658
    assert_clean_int(count, O3);     // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1659
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1660
    if (entry != NULL) {
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1661
      *entry = __ pc();
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1662
      // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1663
      BLOCK_COMMENT("Entry:");
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1664
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1665
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1666
    array_overlap_test(nooverlap_target, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1667
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1668
    {
55490
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1669
      // UnsafeCopyMemory page error: continue at UnsafeCopyMemory common_error_exit
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1670
      UnsafeCopyMemoryMark ucmm(this, !aligned, false);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1671
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1672
      __ sllx(count, LogBytesPerShort, byte_count);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1673
      __ add(to, byte_count, end_to);  // offset after last copied element
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1674
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1675
      // for short arrays, just do single element copy
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1676
      __ cmp(count, 11); // 8 + 3  (22 bytes)
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1677
      __ brx(Assembler::less, false, Assembler::pn, L_copy_2_bytes);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1678
      __ delayed()->add(from, byte_count, end_from);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1679
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1680
      {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1681
        // Align end of arrays since they could be not aligned even
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1682
        // when arrays itself are aligned.
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1683
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1684
        // copy 1 element if necessary to align 'end_to' on an 4 bytes
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1685
        __ andcc(end_to, 3, G0);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1686
        __ br(Assembler::zero, false, Assembler::pt, L_skip_alignment);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1687
        __ delayed()->lduh(end_from, -2, O3);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1688
        __ dec(end_from, 2);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1689
        __ dec(end_to, 2);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1690
        __ dec(count);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1691
        __ sth(O3, end_to, 0);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1692
      __ BIND(L_skip_alignment);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1693
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1694
        // copy 2 elements to align 'end_to' on an 8 byte boundary
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1695
        __ andcc(end_to, 7, G0);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1696
        __ br(Assembler::zero, false, Assembler::pn, L_skip_alignment2);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1697
        __ delayed()->lduh(end_from, -2, O3);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1698
        __ dec(count, 2);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1699
        __ lduh(end_from, -4, O4);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1700
        __ dec(end_from, 4);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1701
        __ dec(end_to, 4);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1702
        __ sth(O3, end_to, 2);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1703
        __ sth(O4, end_to, 0);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1704
      __ BIND(L_skip_alignment2);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1705
      }
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1706
      if (aligned) {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1707
        // Both arrays are aligned to 8-bytes in 64-bits VM.
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1708
        // The 'count' is decremented in copy_16_bytes_backward_with_shift()
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1709
        // in unaligned case.
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1710
        __ dec(count, 8);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1711
      } else {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1712
        // Copy with shift 16 bytes per iteration if arrays do not have
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1713
        // the same alignment mod 8, otherwise jump to the next
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1714
        // code for aligned copy (and substracting 8 from 'count' before jump).
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1715
        // The compare above (count >= 11) guarantes 'count' >= 16 bytes.
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1716
        // Also jump over aligned copy after the copy with shift completed.
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1717
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1718
        copy_16_bytes_backward_with_shift(end_from, end_to, count, 8,
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1719
                                        L_aligned_copy, L_copy_2_bytes);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1720
      }
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1721
      // copy 4 elements (16 bytes) at a time
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1722
        __ align(OptoLoopAlignment);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1723
      __ BIND(L_aligned_copy);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1724
        __ dec(end_from, 16);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1725
        __ ldx(end_from, 8, O3);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1726
        __ ldx(end_from, 0, O4);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1727
        __ dec(end_to, 16);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1728
        __ deccc(count, 8);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1729
        __ stx(O3, end_to, 8);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1730
        __ brx(Assembler::greaterEqual, false, Assembler::pt, L_aligned_copy);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1731
        __ delayed()->stx(O4, end_to, 0);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1732
        __ inc(count, 8);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1733
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1734
      // copy 1 element (2 bytes) at a time
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1735
      __ BIND(L_copy_2_bytes);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1736
        __ cmp_and_br_short(count, 0, Assembler::equal, Assembler::pt, L_exit);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1737
      __ BIND(L_copy_2_bytes_loop);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1738
        __ dec(end_from, 2);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1739
        __ dec(end_to, 2);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1740
        __ lduh(end_from, 0, O4);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1741
        __ deccc(count);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1742
        __ brx(Assembler::greater, false, Assembler::pt, L_copy_2_bytes_loop);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1743
        __ delayed()->sth(O4, end_to, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1744
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1745
    __ BIND(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1746
    // O3, O4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1747
    inc_counter_np(SharedRuntime::_jshort_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1748
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1749
    __ delayed()->mov(G0, O0); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1750
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1751
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1752
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1753
  //
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1754
  // Helper methods for generate_disjoint_int_copy_core()
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1755
  //
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1756
  void copy_16_bytes_loop(Register from, Register to, Register count, int count_dec,
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1757
                          Label& L_loop, bool use_prefetch, bool use_bis) {
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1758
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1759
    __ align(OptoLoopAlignment);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1760
    __ BIND(L_loop);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1761
    if (use_prefetch) {
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1762
      if (ArraycopySrcPrefetchDistance > 0) {
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1763
        __ prefetch(from, ArraycopySrcPrefetchDistance, Assembler::severalReads);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1764
      }
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1765
      if (ArraycopyDstPrefetchDistance > 0) {
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1766
        __ prefetch(to, ArraycopyDstPrefetchDistance, Assembler::severalWritesAndPossiblyReads);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1767
      }
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1768
    }
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1769
    __ ldx(from, 4, O4);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1770
    __ ldx(from, 12, G4);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1771
    __ inc(to, 16);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1772
    __ inc(from, 16);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1773
    __ deccc(count, 4); // Can we do next iteration after this one?
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1774
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1775
    __ srlx(O4, 32, G3);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1776
    __ bset(G3, O3);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1777
    __ sllx(O4, 32, O4);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1778
    __ srlx(G4, 32, G3);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1779
    __ bset(G3, O4);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1780
    if (use_bis) {
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1781
      __ stxa(O3, to, -16);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1782
      __ stxa(O4, to, -8);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1783
    } else {
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1784
      __ stx(O3, to, -16);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1785
      __ stx(O4, to, -8);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1786
    }
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1787
    __ brx(Assembler::greaterEqual, false, Assembler::pt, L_loop);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1788
    __ delayed()->sllx(G4, 32,  O3);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1789
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1790
  }
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1791
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1792
  //
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1793
  //  Generate core code for disjoint int copy (and oop copy on 32-bit).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1794
  //  If "aligned" is true, the "from" and "to" addresses are assumed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1795
  //  to be heapword aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1796
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1797
  // Arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1798
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1799
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1800
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1801
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1802
  void generate_disjoint_int_copy_core(bool aligned) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1803
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1804
    Label L_skip_alignment, L_aligned_copy;
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1805
    Label L_copy_4_bytes, L_copy_4_bytes_loop, L_exit;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1806
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1807
    const Register from      = O0;   // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1808
    const Register to        = O1;   // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1809
    const Register count     = O2;   // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1810
    const Register offset    = O5;   // offset from start of arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1811
    // O3, O4, G3, G4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1812
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1813
    // 'aligned' == true when it is known statically during compilation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1814
    // of this arraycopy call site that both 'from' and 'to' addresses
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1815
    // are HeapWordSize aligned (see LibraryCallKit::basictype2arraycopy()).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1816
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1817
    // Aligned arrays have 4 bytes alignment in 32-bits VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1818
    // and 8 bytes - in 64-bits VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1819
    //
46462
f92a713126b1 8179903: Clean up SPARC 32-bit support
gtriantafill
parents: 46422
diff changeset
  1820
    if (!aligned) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1821
      // The next check could be put under 'ifndef' since the code in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1822
      // generate_disjoint_long_copy_core() has own checks and set 'offset'.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1823
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1824
      // for short arrays, just do single element copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1825
      __ cmp(count, 5); // 4 + 1 (20 bytes)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1826
      __ brx(Assembler::lessEqual, false, Assembler::pn, L_copy_4_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1827
      __ delayed()->mov(G0, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1828
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1829
      // copy 1 element to align 'to' on an 8 byte boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1830
      __ andcc(to, 7, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1831
      __ br(Assembler::zero, false, Assembler::pt, L_skip_alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1832
      __ delayed()->ld(from, 0, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1833
      __ inc(from, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1834
      __ inc(to, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1835
      __ dec(count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1836
      __ st(O3, to, -4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1837
    __ BIND(L_skip_alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1838
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1839
    // if arrays have same alignment mod 8, do 4 elements copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1840
      __ andcc(from, 7, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1841
      __ br(Assembler::zero, false, Assembler::pt, L_aligned_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1842
      __ delayed()->ld(from, 0, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1843
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1844
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1845
    // Load 2 aligned 8-bytes chunks and use one from previous iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1846
    // to form 2 aligned 8-bytes chunks to store.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1847
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1848
    // copy_16_bytes_forward_with_shift() is not used here since this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1849
    // code is more optimal.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1850
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1851
    // copy with shift 4 elements (16 bytes) at a time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1852
      __ dec(count, 4);   // The cmp at the beginning guaranty count >= 4
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1853
      __ sllx(O3, 32,  O3);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1854
24326
d3fdd5c16fe0 8022070: Compilation error in stubGenerator_sparc.cpp with some compilers
mikael
parents: 22505
diff changeset
  1855
      disjoint_copy_core(from, to, count, 2, 16, &StubGenerator::copy_16_bytes_loop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1856
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1857
      __ br(Assembler::always, false, Assembler::pt, L_copy_4_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1858
      __ delayed()->inc(count, 4); // restore 'count'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1859
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1860
    __ BIND(L_aligned_copy);
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1861
    } // !aligned
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  1862
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1863
    // copy 4 elements (16 bytes) at a time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1864
      __ and3(count, 1, G4); // Save
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1865
      __ srl(count, 1, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1866
     generate_disjoint_long_copy_core(aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1867
      __ mov(G4, count);     // Restore
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1868
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1869
    // copy 1 element at a time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1870
    __ BIND(L_copy_4_bytes);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10004
diff changeset
  1871
      __ cmp_and_br_short(count, 0, Assembler::equal, Assembler::pt, L_exit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1872
    __ BIND(L_copy_4_bytes_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1873
      __ ld(from, offset, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1874
      __ deccc(count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1875
      __ st(O3, to, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1876
      __ brx(Assembler::notZero, false, Assembler::pt, L_copy_4_bytes_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1877
      __ delayed()->inc(offset, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1878
    __ BIND(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1879
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1880
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1881
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1882
  //  Generate stub for disjoint int copy.  If "aligned" is true, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1883
  //  "from" and "to" addresses are assumed to be heapword aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1884
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1885
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1886
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1887
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1888
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1889
  //
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1890
  address generate_disjoint_int_copy(bool aligned, address *entry, const char *name) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1891
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1892
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1893
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1894
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1895
    const Register count = O2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1896
    assert_clean_int(count, O3);     // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1897
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1898
    if (entry != NULL) {
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1899
      *entry = __ pc();
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1900
      // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1901
      BLOCK_COMMENT("Entry:");
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  1902
    }
55490
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1903
    {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1904
      // UnsafeCopyMemory page error: continue at UnsafeCopyMemory common_error_exit
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1905
      UnsafeCopyMemoryMark ucmm(this, !aligned, false);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1906
      generate_disjoint_int_copy_core(aligned);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  1907
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1908
    // O3, O4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1909
    inc_counter_np(SharedRuntime::_jint_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1910
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1911
    __ delayed()->mov(G0, O0); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1912
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1913
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1914
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1915
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1916
  //  Generate core code for conjoint int copy (and oop copy on 32-bit).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1917
  //  If "aligned" is true, the "from" and "to" addresses are assumed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1918
  //  to be heapword aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1919
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1920
  // Arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1921
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1922
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1923
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1924
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1925
  void generate_conjoint_int_copy_core(bool aligned) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1926
    // Do reverse copy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1927
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1928
    Label L_skip_alignment, L_aligned_copy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1929
    Label L_copy_16_bytes,  L_copy_4_bytes, L_copy_4_bytes_loop, L_exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1930
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1931
    const Register from      = O0;   // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1932
    const Register to        = O1;   // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1933
    const Register count     = O2;   // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1934
    const Register end_from  = from; // source array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1935
    const Register end_to    = to;   // destination array end address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1936
    // O3, O4, O5, G3 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1937
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1938
    const Register byte_count = O3;  // bytes count to copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1939
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1940
      __ sllx(count, LogBytesPerInt, byte_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1941
      __ add(to, byte_count, end_to); // offset after last copied element
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1942
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1943
      __ cmp(count, 5); // for short arrays, just do single element copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1944
      __ brx(Assembler::lessEqual, false, Assembler::pn, L_copy_4_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1945
      __ delayed()->add(from, byte_count, end_from);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1946
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1947
    // copy 1 element to align 'to' on an 8 byte boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1948
      __ andcc(end_to, 7, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1949
      __ br(Assembler::zero, false, Assembler::pt, L_skip_alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1950
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1951
      __ dec(count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1952
      __ dec(end_from, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1953
      __ dec(end_to,   4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1954
      __ ld(end_from, 0, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1955
      __ st(O4, end_to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1956
    __ BIND(L_skip_alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1957
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1958
    // Check if 'end_from' and 'end_to' has the same alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1959
      __ andcc(end_from, 7, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1960
      __ br(Assembler::zero, false, Assembler::pt, L_aligned_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1961
      __ delayed()->dec(count, 4); // The cmp at the start guaranty cnt >= 4
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1962
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1963
    // copy with shift 4 elements (16 bytes) at a time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1964
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1965
    // Load 2 aligned 8-bytes chunks and use one from previous iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1966
    // to form 2 aligned 8-bytes chunks to store.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1967
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1968
      __ ldx(end_from, -4, O3);
5249
5cac34e6fe54 6940701: Don't align loops in stubs for Niagara sparc
kvn
parents: 5248
diff changeset
  1969
      __ align(OptoLoopAlignment);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1970
    __ BIND(L_copy_16_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1971
      __ ldx(end_from, -12, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1972
      __ deccc(count, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1973
      __ ldx(end_from, -20, O5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1974
      __ dec(end_to, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1975
      __ dec(end_from, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1976
      __ srlx(O3, 32, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1977
      __ sllx(O4, 32, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1978
      __ bset(G3, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1979
      __ stx(O3, end_to, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1980
      __ srlx(O4, 32, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1981
      __ sllx(O5, 32, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1982
      __ bset(O4, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1983
      __ stx(G3, end_to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1984
      __ brx(Assembler::greaterEqual, false, Assembler::pt, L_copy_16_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1985
      __ delayed()->mov(O5, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1986
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1987
      __ br(Assembler::always, false, Assembler::pt, L_copy_4_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1988
      __ delayed()->inc(count, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1989
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1990
    // copy 4 elements (16 bytes) at a time
5249
5cac34e6fe54 6940701: Don't align loops in stubs for Niagara sparc
kvn
parents: 5248
diff changeset
  1991
      __ align(OptoLoopAlignment);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1992
    __ BIND(L_aligned_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1993
      __ dec(end_from, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1994
      __ ldx(end_from, 8, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1995
      __ ldx(end_from, 0, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1996
      __ dec(end_to, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1997
      __ deccc(count, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1998
      __ stx(O3, end_to, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1999
      __ brx(Assembler::greaterEqual, false, Assembler::pt, L_aligned_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2000
      __ delayed()->stx(O4, end_to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2001
      __ inc(count, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2002
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2003
    // copy 1 element (4 bytes) at a time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2004
    __ BIND(L_copy_4_bytes);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10004
diff changeset
  2005
      __ cmp_and_br_short(count, 0, Assembler::equal, Assembler::pt, L_exit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2006
    __ BIND(L_copy_4_bytes_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2007
      __ dec(end_from, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2008
      __ dec(end_to, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2009
      __ ld(end_from, 0, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2010
      __ deccc(count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2011
      __ brx(Assembler::greater, false, Assembler::pt, L_copy_4_bytes_loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2012
      __ delayed()->st(O4, end_to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2013
    __ BIND(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2014
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2015
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2016
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2017
  //  Generate stub for conjoint int copy.  If "aligned" is true, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2018
  //  "from" and "to" addresses are assumed to be heapword aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2019
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2020
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2021
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2022
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2023
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2024
  //
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2025
  address generate_conjoint_int_copy(bool aligned, address nooverlap_target,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2026
                                     address *entry, const char *name) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2027
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2028
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2029
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2030
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2031
    assert_clean_int(O2, O3);     // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2032
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2033
    if (entry != NULL) {
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2034
      *entry = __ pc();
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2035
      // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2036
      BLOCK_COMMENT("Entry:");
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2037
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2038
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2039
    array_overlap_test(nooverlap_target, 2);
55490
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  2040
    {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  2041
      // UnsafeCopyMemory page error: continue at UnsafeCopyMemory common_error_exit
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  2042
      UnsafeCopyMemoryMark ucmm(this, !aligned, false);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  2043
      generate_conjoint_int_copy_core(aligned);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  2044
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2045
    // O3, O4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2046
    inc_counter_np(SharedRuntime::_jint_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2047
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2048
    __ delayed()->mov(G0, O0); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2049
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2050
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2051
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2052
  //
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2053
  // Helper methods for generate_disjoint_long_copy_core()
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2054
  //
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2055
  void copy_64_bytes_loop(Register from, Register to, Register count, int count_dec,
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2056
                          Label& L_loop, bool use_prefetch, bool use_bis) {
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2057
    __ align(OptoLoopAlignment);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2058
    __ BIND(L_loop);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2059
    for (int off = 0; off < 64; off += 16) {
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2060
      if (use_prefetch && (off & 31) == 0) {
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2061
        if (ArraycopySrcPrefetchDistance > 0) {
10566
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10545
diff changeset
  2062
          __ prefetch(from, ArraycopySrcPrefetchDistance+off, Assembler::severalReads);
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2063
        }
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2064
        if (ArraycopyDstPrefetchDistance > 0) {
10566
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10545
diff changeset
  2065
          __ prefetch(to, ArraycopyDstPrefetchDistance+off, Assembler::severalWritesAndPossiblyReads);
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2066
        }
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2067
      }
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2068
      __ ldx(from,  off+0, O4);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2069
      __ ldx(from,  off+8, O5);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2070
      if (use_bis) {
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2071
        __ stxa(O4, to,  off+0);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2072
        __ stxa(O5, to,  off+8);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2073
      } else {
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2074
        __ stx(O4, to,  off+0);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2075
        __ stx(O5, to,  off+8);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2076
      }
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2077
    }
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2078
    __ deccc(count, 8);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2079
    __ inc(from, 64);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2080
    __ brx(Assembler::greaterEqual, false, Assembler::pt, L_loop);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2081
    __ delayed()->inc(to, 64);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2082
  }
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2083
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2084
  //
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2085
  //  Generate core code for disjoint long copy (and oop copy on 64-bit).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2086
  //  "aligned" is ignored, because we must make the stronger
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2087
  //  assumption that both addresses are always 64-bit aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2088
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2089
  // Arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2090
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2091
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2092
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2093
  //
5248
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2094
  // count -= 2;
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2095
  // if ( count >= 0 ) { // >= 2 elements
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2096
  //   if ( count > 6) { // >= 8 elements
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2097
  //     count -= 6; // original count - 8
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2098
  //     do {
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2099
  //       copy_8_elements;
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2100
  //       count -= 8;
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2101
  //     } while ( count >= 0 );
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2102
  //     count += 6;
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2103
  //   }
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2104
  //   if ( count >= 0 ) { // >= 2 elements
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2105
  //     do {
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2106
  //       copy_2_elements;
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2107
  //     } while ( (count=count-2) >= 0 );
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2108
  //   }
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2109
  // }
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2110
  // count += 2;
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2111
  // if ( count != 0 ) { // 1 element left
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2112
  //   copy_1_element;
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2113
  // }
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2114
  //
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2115
  void generate_disjoint_long_copy_core(bool aligned) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2116
    Label L_copy_8_bytes, L_copy_16_bytes, L_exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2117
    const Register from    = O0;  // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2118
    const Register to      = O1;  // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2119
    const Register count   = O2;  // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2120
    const Register offset0 = O4;  // element offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2121
    const Register offset8 = O5;  // next element offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2122
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2123
    __ deccc(count, 2);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2124
    __ mov(G0, offset0);   // offset from start of arrays (0)
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2125
    __ brx(Assembler::negative, false, Assembler::pn, L_copy_8_bytes );
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2126
    __ delayed()->add(offset0, 8, offset8);
5248
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2127
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2128
    // Copy by 64 bytes chunks
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2129
5248
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2130
    const Register from64 = O3;  // source address
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2131
    const Register to64   = G3;  // destination address
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2132
    __ subcc(count, 6, O3);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2133
    __ brx(Assembler::negative, false, Assembler::pt, L_copy_16_bytes );
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2134
    __ delayed()->mov(to,   to64);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2135
    // Now we can use O4(offset0), O5(offset8) as temps
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2136
    __ mov(O3, count);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2137
    // count >= 0 (original count - 8)
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2138
    __ mov(from, from64);
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2139
24326
d3fdd5c16fe0 8022070: Compilation error in stubGenerator_sparc.cpp with some compilers
mikael
parents: 22505
diff changeset
  2140
    disjoint_copy_core(from64, to64, count, 3, 64, &StubGenerator::copy_64_bytes_loop);
5248
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2141
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2142
      // Restore O4(offset0), O5(offset8)
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2143
      __ sub(from64, from, offset0);
10512
935fc9d89f08 7039731: arraycopy could use prefetch on SPARC
kvn
parents: 10501
diff changeset
  2144
      __ inccc(count, 6); // restore count
5248
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2145
      __ brx(Assembler::negative, false, Assembler::pn, L_copy_8_bytes );
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2146
      __ delayed()->add(offset0, 8, offset8);
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2147
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2148
      // Copy by 16 bytes chunks
5249
5cac34e6fe54 6940701: Don't align loops in stubs for Niagara sparc
kvn
parents: 5248
diff changeset
  2149
      __ align(OptoLoopAlignment);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2150
    __ BIND(L_copy_16_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2151
      __ ldx(from, offset0, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2152
      __ ldx(from, offset8, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2153
      __ deccc(count, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2154
      __ stx(O3, to, offset0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2155
      __ inc(offset0, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2156
      __ stx(G3, to, offset8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2157
      __ brx(Assembler::greaterEqual, false, Assembler::pt, L_copy_16_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2158
      __ delayed()->inc(offset8, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2159
5248
5eddf88cc3c9 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn
parents: 5046
diff changeset
  2160
      // Copy last 8 bytes
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2161
    __ BIND(L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2162
      __ inccc(count, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2163
      __ brx(Assembler::zero, true, Assembler::pn, L_exit );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2164
      __ delayed()->mov(offset0, offset8); // Set O5 used by other stubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2165
      __ ldx(from, offset0, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2166
      __ stx(O3, to, offset0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2167
    __ BIND(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2168
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2169
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2170
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2171
  //  Generate stub for disjoint long copy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2172
  //  "aligned" is ignored, because we must make the stronger
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2173
  //  assumption that both addresses are always 64-bit aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2174
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2175
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2176
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2177
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2178
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2179
  //
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2180
  address generate_disjoint_long_copy(bool aligned, address *entry, const char *name) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2181
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2182
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2183
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2184
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2185
    assert_clean_int(O2, O3);     // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2186
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2187
    if (entry != NULL) {
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2188
      *entry = __ pc();
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2189
      // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2190
      BLOCK_COMMENT("Entry:");
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2191
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2192
55490
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  2193
    {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  2194
      // UnsafeCopyMemory page error: continue at UnsafeCopyMemory common_error_exit
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  2195
      UnsafeCopyMemoryMark ucmm(this, true, false);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  2196
      generate_disjoint_long_copy_core(aligned);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  2197
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2198
    // O3, O4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2199
    inc_counter_np(SharedRuntime::_jlong_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2200
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2201
    __ delayed()->mov(G0, O0); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2202
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2203
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2204
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2205
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2206
  //  Generate core code for conjoint long copy (and oop copy on 64-bit).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2207
  //  "aligned" is ignored, because we must make the stronger
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2208
  //  assumption that both addresses are always 64-bit aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2209
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2210
  // Arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2211
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2212
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2213
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2214
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2215
  void generate_conjoint_long_copy_core(bool aligned) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2216
    // Do reverse copy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2217
    Label L_copy_8_bytes, L_copy_16_bytes, L_exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2218
    const Register from    = O0;  // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2219
    const Register to      = O1;  // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2220
    const Register count   = O2;  // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2221
    const Register offset8 = O4;  // element offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2222
    const Register offset0 = O5;  // previous element offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2223
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2224
      __ subcc(count, 1, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2225
      __ brx(Assembler::lessEqual, false, Assembler::pn, L_copy_8_bytes );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2226
      __ delayed()->sllx(count, LogBytesPerLong, offset8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2227
      __ sub(offset8, 8, offset0);
5249
5cac34e6fe54 6940701: Don't align loops in stubs for Niagara sparc
kvn
parents: 5248
diff changeset
  2228
      __ align(OptoLoopAlignment);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2229
    __ BIND(L_copy_16_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2230
      __ ldx(from, offset8, O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2231
      __ ldx(from, offset0, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2232
      __ stx(O2, to, offset8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2233
      __ deccc(offset8, 16);      // use offset8 as counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2234
      __ stx(O3, to, offset0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2235
      __ brx(Assembler::greater, false, Assembler::pt, L_copy_16_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2236
      __ delayed()->dec(offset0, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2237
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2238
    __ BIND(L_copy_8_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2239
      __ brx(Assembler::negative, false, Assembler::pn, L_exit );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2240
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2241
      __ ldx(from, 0, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2242
      __ stx(O3, to, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2243
    __ BIND(L_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2244
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2245
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2246
  //  Generate stub for conjoint long copy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2247
  //  "aligned" is ignored, because we must make the stronger
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2248
  //  assumption that both addresses are always 64-bit aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2249
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2250
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2251
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2252
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2253
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2254
  //
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2255
  address generate_conjoint_long_copy(bool aligned, address nooverlap_target,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2256
                                      address *entry, const char *name) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2257
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2258
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2259
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2260
8498
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2261
    assert(aligned, "Should always be aligned");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2262
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2263
    assert_clean_int(O2, O3);     // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2264
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2265
    if (entry != NULL) {
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2266
      *entry = __ pc();
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2267
      // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2268
      BLOCK_COMMENT("Entry:");
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2269
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2270
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2271
    array_overlap_test(nooverlap_target, 3);
55490
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  2272
    {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  2273
      // UnsafeCopyMemory page error: continue at UnsafeCopyMemory common_error_exit
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  2274
      UnsafeCopyMemoryMark ucmm(this, true, false);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  2275
      generate_conjoint_long_copy_core(aligned);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  2276
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2277
    // O3, O4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2278
    inc_counter_np(SharedRuntime::_jlong_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2279
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2280
    __ delayed()->mov(G0, O0); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2281
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2282
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2283
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2284
  //  Generate stub for disjoint oop copy.  If "aligned" is true, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2285
  //  "from" and "to" addresses are assumed to be heapword aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2286
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2287
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2288
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2289
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2290
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2291
  //
8498
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2292
  address generate_disjoint_oop_copy(bool aligned, address *entry, const char *name,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2293
                                     bool dest_uninitialized = false) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2294
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2295
    const Register from  = O0;  // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2296
    const Register to    = O1;  // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2297
    const Register count = O2;  // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2298
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2299
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2300
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2301
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2302
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2303
    assert_clean_int(count, O3);     // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2304
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2305
    if (entry != NULL) {
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2306
      *entry = __ pc();
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2307
      // caller can pass a 64-bit byte count here
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2308
      BLOCK_COMMENT("Entry:");
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2309
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2310
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50179
diff changeset
  2311
    DecoratorSet decorators = IN_HEAP | IS_ARRAY | ARRAYCOPY_DISJOINT;
49484
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2312
    if (dest_uninitialized) {
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50179
diff changeset
  2313
      decorators |= IS_DEST_UNINITIALIZED;
49484
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2314
    }
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2315
    if (aligned) {
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2316
      decorators |= ARRAYCOPY_ALIGNED;
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2317
    }
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2318
49754
ee93c1087584 8201362: Remove CollectedHeap::barrier_set()
pliden
parents: 49748
diff changeset
  2319
    BarrierSetAssembler *bs = BarrierSet::barrier_set()->barrier_set_assembler();
49484
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2320
    bs->arraycopy_prologue(_masm, decorators, T_OBJECT, from, to, count);
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2321
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2322
    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
  2323
    if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2324
      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
  2325
    } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2326
      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
  2327
    }
49484
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2328
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2329
    bs->arraycopy_epilogue(_masm, decorators, T_OBJECT, from, to, count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2330
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2331
    // O3, O4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2332
    inc_counter_np(SharedRuntime::_oop_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2333
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2334
    __ delayed()->mov(G0, O0); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2335
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2336
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2337
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2338
  //  Generate stub for conjoint oop copy.  If "aligned" is true, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2339
  //  "from" and "to" addresses are assumed to be heapword aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2340
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2341
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2342
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2343
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2344
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2345
  //
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2346
  address generate_conjoint_oop_copy(bool aligned, address nooverlap_target,
8498
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2347
                                     address *entry, const char *name,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2348
                                     bool dest_uninitialized = false) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2349
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2350
    const Register from  = O0;  // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2351
    const Register to    = O1;  // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2352
    const Register count = O2;  // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2353
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2354
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2355
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2356
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2357
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2358
    assert_clean_int(count, O3);     // Make sure 'count' is clean int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2359
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2360
    if (entry != NULL) {
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2361
      *entry = __ pc();
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2362
      // caller can pass a 64-bit byte count here
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2363
      BLOCK_COMMENT("Entry:");
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2364
    }
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2365
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2366
    array_overlap_test(nooverlap_target, LogBytesPerHeapOop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2367
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50179
diff changeset
  2368
    DecoratorSet decorators = IN_HEAP | IS_ARRAY;
49484
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2369
    if (dest_uninitialized) {
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50179
diff changeset
  2370
      decorators |= IS_DEST_UNINITIALIZED;
49484
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2371
    }
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2372
    if (aligned) {
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2373
      decorators |= ARRAYCOPY_ALIGNED;
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2374
    }
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2375
49754
ee93c1087584 8201362: Remove CollectedHeap::barrier_set()
pliden
parents: 49748
diff changeset
  2376
    BarrierSetAssembler *bs = BarrierSet::barrier_set()->barrier_set_assembler();
49484
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2377
    bs->arraycopy_prologue(_masm, decorators, T_OBJECT, from, to, count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2378
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2379
    if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2380
      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
  2381
    } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2382
      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
  2383
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2384
49484
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2385
    bs->arraycopy_epilogue(_masm, decorators, T_OBJECT, from, to, count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2386
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2387
    // O3, O4 are used as temp registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2388
    inc_counter_np(SharedRuntime::_oop_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2389
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2390
    __ delayed()->mov(G0, O0); // return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2391
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2392
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2393
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2394
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2395
  // Helper for generating a dynamic type check.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2396
  // Smashes only the given temp registers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2397
  void generate_type_check(Register sub_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2398
                           Register super_check_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2399
                           Register super_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2400
                           Register temp,
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2401
                           Label& L_success) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2402
    assert_different_registers(sub_klass, super_check_offset, super_klass, temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2403
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2404
    BLOCK_COMMENT("type_check:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2405
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2406
    Label L_miss, L_pop_to_miss;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2407
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2408
    assert_clean_int(super_check_offset, temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2409
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2410
    __ 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
  2411
                                     &L_success, &L_miss, NULL,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2412
                                     super_check_offset);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2413
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2414
    BLOCK_COMMENT("type_check_slow_path:");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2415
    __ save_frame(0);
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2416
    __ 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
  2417
                                     super_klass->after_save(),
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2418
                                     L0, L1, L2, L4,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2419
                                     NULL, &L_pop_to_miss);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10004
diff changeset
  2420
    __ ba(L_success);
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2421
    __ delayed()->restore();
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2422
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2423
    __ bind(L_pop_to_miss);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2424
    __ restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2425
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2426
    // Fall through on failure!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2427
    __ BIND(L_miss);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2428
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2429
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2430
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2431
  //  Generate stub for checked oop copy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2432
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2433
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2434
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2435
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2436
  //      count: O2 treated as signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2437
  //      ckoff: O3 (super_check_offset)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2438
  //      ckval: O4 (super_klass)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2439
  //      ret:   O0 zero for success; (-1^K) where K is partial transfer count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2440
  //
8498
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2441
  address generate_checkcast_copy(const char *name, address *entry, bool dest_uninitialized = false) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2442
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2443
    const Register O0_from   = O0;      // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2444
    const Register O1_to     = O1;      // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2445
    const Register O2_count  = O2;      // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2446
    const Register O3_ckoff  = O3;      // super_check_offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2447
    const Register O4_ckval  = O4;      // super_klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2448
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2449
    const Register O5_offset = O5;      // loop var, with stride wordSize
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2450
    const Register G1_remain = G1;      // loop var, with stride -1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2451
    const Register G3_oop    = G3;      // actual oop copied
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2452
    const Register G4_klass  = G4;      // oop._klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2453
    const Register G5_super  = G5;      // oop._klass._primary_supers[ckval]
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2454
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2455
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2456
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2457
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2458
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2459
#ifdef ASSERT
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2460
    // We sometimes save a frame (see generate_type_check below).
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2461
    // If this will cause trouble, let's fail now instead of later.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2462
    __ save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2463
    __ restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2464
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2465
6770
a67870aaedb3 6980792: Crash "exception happened outside interpreter, nmethods and vtable stubs (1)"
never
parents: 6464
diff changeset
  2466
    assert_clean_int(O2_count, G1);     // Make sure 'count' is clean int.
a67870aaedb3 6980792: Crash "exception happened outside interpreter, nmethods and vtable stubs (1)"
never
parents: 6464
diff changeset
  2467
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2468
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2469
    // caller guarantees that the arrays really are different
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2470
    // otherwise, we would have to make conjoint checks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2471
    { Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2472
      __ mov(O3, G1);           // spill: overlap test smashes O3
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2473
      __ 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
  2474
      array_overlap_test(L, LogBytesPerHeapOop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2475
      __ stop("checkcast_copy within a single array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2476
      __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2477
      __ mov(G1, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2478
      __ mov(G4, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2479
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2480
#endif //ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2481
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2482
    if (entry != NULL) {
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2483
      *entry = __ pc();
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2484
      // caller can pass a 64-bit byte count here (from generic stub)
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2485
      BLOCK_COMMENT("Entry:");
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2486
    }
49484
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2487
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50179
diff changeset
  2488
    DecoratorSet decorators = IN_HEAP | IS_ARRAY | ARRAYCOPY_CHECKCAST;
49484
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2489
    if (dest_uninitialized) {
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50179
diff changeset
  2490
      decorators |= IS_DEST_UNINITIALIZED;
49484
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2491
    }
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2492
49754
ee93c1087584 8201362: Remove CollectedHeap::barrier_set()
pliden
parents: 49748
diff changeset
  2493
    BarrierSetAssembler *bs = BarrierSet::barrier_set()->barrier_set_assembler();
49484
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2494
    bs->arraycopy_prologue(_masm, decorators, T_OBJECT, O0_from, O1_to, O2_count);
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2495
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2496
    Label load_element, store_element, do_epilogue, fail, done;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2497
    __ addcc(O2_count, 0, G1_remain);   // initialize loop index, and test it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2498
    __ brx(Assembler::notZero, false, Assembler::pt, load_element);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2499
    __ delayed()->mov(G0, O5_offset);   // offset from start of arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2500
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2501
    // Empty array:  Nothing to do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2502
    inc_counter_np(SharedRuntime::_checkcast_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2503
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2504
    __ delayed()->set(0, O0);           // return 0 on (trivial) success
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2505
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2506
    // ======== begin loop ========
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2507
    // (Loop is rotated; its entry is load_element.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2508
    // Loop variables:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2509
    //   (O5 = 0; ; O5 += wordSize) --- offset from src, dest arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2510
    //   (O2 = len; O2 != 0; O2--) --- number of oops *remaining*
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2511
    //   G3, G4, G5 --- current oop, oop.klass, oop.klass.super
5249
5cac34e6fe54 6940701: Don't align loops in stubs for Niagara sparc
kvn
parents: 5248
diff changeset
  2512
    __ align(OptoLoopAlignment);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2513
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2514
    __ BIND(store_element);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2515
    __ deccc(G1_remain);                // decrement the count
49748
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49484
diff changeset
  2516
    __ store_heap_oop(G3_oop, O1_to, O5_offset, noreg, AS_RAW); // store the oop
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2517
    __ inc(O5_offset, heapOopSize);     // step to next offset
49484
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2518
    __ brx(Assembler::zero, true, Assembler::pt, do_epilogue);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2519
    __ delayed()->set(0, O0);           // return -1 on success
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2520
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2521
    // ======== loop entry is here ========
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2522
    __ BIND(load_element);
49748
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49484
diff changeset
  2523
    __ load_heap_oop(O0_from, O5_offset, G3_oop, noreg, AS_RAW);  // load the oop
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10004
diff changeset
  2524
    __ br_null_short(G3_oop, Assembler::pt, store_element);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2525
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2526
    __ load_klass(G3_oop, G4_klass); // query the object klass
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2527
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2528
    generate_type_check(G4_klass, O3_ckoff, O4_ckval, G5_super,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2529
                        // branch to this on success:
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2530
                        store_element);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2531
    // ======== end loop ========
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2532
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2533
    // It was a real error; we must depend on the caller to finish the job.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2534
    // Register G1 has number of *remaining* oops, O2 number of *total* oops.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2535
    // Emit GC store barriers for the oops we have copied (O2 minus G1),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2536
    // 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
  2537
    __ BIND(fail);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2538
    __ subcc(O2_count, G1_remain, O2_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2539
    __ brx(Assembler::zero, false, Assembler::pt, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2540
    __ delayed()->not1(O2_count, O0);   // report (-1^K) to caller
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2541
49484
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2542
    __ BIND(do_epilogue);
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49455
diff changeset
  2543
    bs->arraycopy_epilogue(_masm, decorators, T_OBJECT, O0_from, O1_to, O2_count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2544
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2545
    __ BIND(done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2546
    inc_counter_np(SharedRuntime::_checkcast_array_copy_ctr, O3, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2547
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2548
    __ delayed()->nop();             // return value in 00
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2549
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2550
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2551
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2552
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2553
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2554
  //  Generate 'unsafe' array copy stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2555
  //  Though just as safe as the other stubs, it takes an unscaled
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2556
  //  size_t argument instead of an element count.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2557
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2558
  // Arguments for generated stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2559
  //      from:  O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2560
  //      to:    O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2561
  //      count: O2 byte count, treated as ssize_t, can be zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2562
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2563
  // Examines the alignment of the operands and dispatches
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2564
  // to a long, int, short, or byte copy loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2565
  //
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2566
  address generate_unsafe_copy(const char* name,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2567
                               address byte_copy_entry,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2568
                               address short_copy_entry,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2569
                               address int_copy_entry,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2570
                               address long_copy_entry) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2571
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2572
    const Register O0_from   = O0;      // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2573
    const Register O1_to     = O1;      // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2574
    const Register O2_count  = O2;      // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2575
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2576
    const Register G1_bits   = G1;      // test copy of low bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2577
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2578
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2579
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2580
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2581
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2582
    // bump this on entry, not on exit:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2583
    inc_counter_np(SharedRuntime::_unsafe_array_copy_ctr, G1, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2584
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2585
    __ or3(O0_from, O1_to, G1_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2586
    __ or3(O2_count,       G1_bits, G1_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2587
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2588
    __ btst(BytesPerLong-1, G1_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2589
    __ br(Assembler::zero, true, Assembler::pt,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2590
          long_copy_entry, relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2591
    // scale the count on the way out:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2592
    __ delayed()->srax(O2_count, LogBytesPerLong, O2_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2593
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2594
    __ btst(BytesPerInt-1, G1_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2595
    __ br(Assembler::zero, true, Assembler::pt,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2596
          int_copy_entry, relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2597
    // scale the count on the way out:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2598
    __ delayed()->srax(O2_count, LogBytesPerInt, O2_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2599
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2600
    __ btst(BytesPerShort-1, G1_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2601
    __ br(Assembler::zero, true, Assembler::pt,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2602
          short_copy_entry, relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2603
    // scale the count on the way out:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2604
    __ delayed()->srax(O2_count, LogBytesPerShort, O2_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2605
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2606
    __ br(Assembler::always, false, Assembler::pt,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2607
          byte_copy_entry, relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2608
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2609
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2610
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2611
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2612
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2613
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2614
  // Perform range checks on the proposed arraycopy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2615
  // Kills the two temps, but nothing else.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2616
  // Also, clean the sign bits of src_pos and dst_pos.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2617
  void arraycopy_range_checks(Register src,     // source array oop (O0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2618
                              Register src_pos, // source position (O1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2619
                              Register dst,     // destination array oo (O2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2620
                              Register dst_pos, // destination position (O3)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2621
                              Register length,  // length of copy (O4)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2622
                              Register temp1, Register temp2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2623
                              Label& L_failed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2624
    BLOCK_COMMENT("arraycopy_range_checks:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2625
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2626
    //  if (src_pos + length > arrayOop(src)->length() ) FAIL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2627
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2628
    const Register array_length = temp1;  // scratch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2629
    const Register end_pos      = temp2;  // scratch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2630
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2631
    // Note:  This next instruction may be in the delay slot of a branch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2632
    __ add(length, src_pos, end_pos);  // src_pos + length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2633
    __ lduw(src, arrayOopDesc::length_offset_in_bytes(), array_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2634
    __ cmp(end_pos, array_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2635
    __ br(Assembler::greater, false, Assembler::pn, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2636
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2637
    //  if (dst_pos + length > arrayOop(dst)->length() ) FAIL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2638
    __ delayed()->add(length, dst_pos, end_pos); // dst_pos + length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2639
    __ lduw(dst, arrayOopDesc::length_offset_in_bytes(), array_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2640
    __ cmp(end_pos, array_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2641
    __ br(Assembler::greater, false, Assembler::pn, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2642
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2643
    // Have to clean up high 32-bits of 'src_pos' and 'dst_pos'.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2644
    // Move with sign extension can be used since they are positive.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2645
    __ delayed()->signx(src_pos, src_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2646
    __ signx(dst_pos, dst_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2647
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2648
    BLOCK_COMMENT("arraycopy_range_checks done");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2649
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2650
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2651
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2652
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2653
  //  Generate generic array copy stubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2654
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2655
  //  Input:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2656
  //    O0    -  src oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2657
  //    O1    -  src_pos
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2658
  //    O2    -  dst oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2659
  //    O3    -  dst_pos
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2660
  //    O4    -  element count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2661
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2662
  //  Output:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2663
  //    O0 ==  0  -  success
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2664
  //    O0 == -1  -  need to call System.arraycopy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2665
  //
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2666
  address generate_generic_copy(const char *name,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2667
                                address entry_jbyte_arraycopy,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2668
                                address entry_jshort_arraycopy,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2669
                                address entry_jint_arraycopy,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2670
                                address entry_oop_arraycopy,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2671
                                address entry_jlong_arraycopy,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2672
                                address entry_checkcast_arraycopy) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2673
    Label L_failed, L_objArray;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2674
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2675
    // Input registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2676
    const Register src      = O0;  // source array oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2677
    const Register src_pos  = O1;  // source position
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2678
    const Register dst      = O2;  // destination array oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2679
    const Register dst_pos  = O3;  // destination position
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2680
    const Register length   = O4;  // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2681
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2682
    // registers used as temp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2683
    const Register G3_src_klass = G3; // source array klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2684
    const Register G4_dst_klass = G4; // destination array klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2685
    const Register G5_lh        = G5; // layout handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2686
    const Register O5_temp      = O5;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2687
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2688
    __ align(CodeEntryAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2689
    StubCodeMark mark(this, "StubRoutines", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2690
    address start = __ pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2691
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2692
    // bump this on entry, not on exit:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2693
    inc_counter_np(SharedRuntime::_generic_array_copy_ctr, G1, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2694
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2695
    // In principle, the int arguments could be dirty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2696
    //assert_clean_int(src_pos, G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2697
    //assert_clean_int(dst_pos, G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2698
    //assert_clean_int(length, G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2699
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2700
    //-----------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2701
    // Assembler stubs will be used for this call to arraycopy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2702
    // if the following conditions are met:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2703
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2704
    // (1) src and dst must not be null.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2705
    // (2) src_pos must not be negative.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2706
    // (3) dst_pos must not be negative.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2707
    // (4) length  must not be negative.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2708
    // (5) src klass and dst klass should be the same and not NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2709
    // (6) src and dst should be arrays.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2710
    // (7) src_pos + length must not exceed length of src.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2711
    // (8) dst_pos + length must not exceed length of dst.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2712
    BLOCK_COMMENT("arraycopy initial argument checks");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2713
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2714
    //  if (src == NULL) return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2715
    __ br_null(src, false, Assembler::pn, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2716
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2717
    //  if (src_pos < 0) return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2718
    __ delayed()->tst(src_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2719
    __ br(Assembler::negative, false, Assembler::pn, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2720
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2721
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2722
    //  if (dst == NULL) return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2723
    __ br_null(dst, false, Assembler::pn, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2724
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2725
    //  if (dst_pos < 0) return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2726
    __ delayed()->tst(dst_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2727
    __ br(Assembler::negative, false, Assembler::pn, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2728
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2729
    //  if (length < 0) return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2730
    __ delayed()->tst(length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2731
    __ br(Assembler::negative, false, Assembler::pn, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2732
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2733
    BLOCK_COMMENT("arraycopy argument klass checks");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2734
    //  get src->klass()
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 18740
diff changeset
  2735
    if (UseCompressedClassPointers) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2736
      __ delayed()->nop(); // ??? not good
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2737
      __ 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
  2738
    } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2739
      __ 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
  2740
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2741
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2742
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2743
    //  assert(src->klass() != NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2744
    BLOCK_COMMENT("assert klasses not null");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2745
    { Label L_a, L_b;
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10004
diff changeset
  2746
      __ br_notnull_short(G3_src_klass, Assembler::pt, L_b); // it is broken if klass is NULL
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2747
      __ bind(L_a);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2748
      __ stop("broken null klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2749
      __ bind(L_b);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2750
      __ load_klass(dst, G4_dst_klass);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2751
      __ br_null(G4_dst_klass, false, Assembler::pn, L_a); // this would be broken also
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2752
      __ delayed()->mov(G0, G4_dst_klass);      // scribble the temp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2753
      BLOCK_COMMENT("assert done");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2754
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2755
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2756
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2757
    // Load layout helper
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2758
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2759
    //  |array_tag|     | header_size | element_type |     |log2_element_size|
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2760
    // 32        30    24            16              8     2                 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2761
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2762
    //   array_tag: typeArray = 0x3, objArray = 0x2, non-array = 0x0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2763
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2764
11430
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 10566
diff changeset
  2765
    int lh_offset = in_bytes(Klass::layout_helper_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2766
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2767
    // Load 32-bits signed value. Use br() instruction with it to check icc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2768
    __ lduw(G3_src_klass, lh_offset, G5_lh);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2769
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 18740
diff changeset
  2770
    if (UseCompressedClassPointers) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2771
      __ 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
  2772
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2773
    // Handle objArrays completely differently...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2774
    juint objArray_lh = Klass::array_layout_helper(T_OBJECT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2775
    __ set(objArray_lh, O5_temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2776
    __ cmp(G5_lh,       O5_temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2777
    __ br(Assembler::equal, false, Assembler::pt, L_objArray);
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 18740
diff changeset
  2778
    if (UseCompressedClassPointers) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2779
      __ delayed()->nop();
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2780
    } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  2781
      __ 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
  2782
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2783
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2784
    //  if (src->klass() != dst->klass()) return -1;
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10004
diff changeset
  2785
    __ cmp_and_brx_short(G3_src_klass, G4_dst_klass, Assembler::notEqual, Assembler::pn, L_failed);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2786
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2787
    //  if (!src->is_Array()) return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2788
    __ cmp(G5_lh, Klass::_lh_neutral_value); // < 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2789
    __ br(Assembler::greaterEqual, false, Assembler::pn, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2790
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2791
    // At this point, it is known to be a typeArray (array_tag 0x3).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2792
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2793
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2794
    { Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2795
      jint lh_prim_tag_in_place = (Klass::_lh_array_tag_type_value << Klass::_lh_array_tag_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2796
      __ set(lh_prim_tag_in_place, O5_temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2797
      __ cmp(G5_lh,                O5_temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2798
      __ br(Assembler::greaterEqual, false, Assembler::pt, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2799
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2800
      __ stop("must be a primitive array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2801
      __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2802
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2803
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2804
    __ delayed();                               // match next insn to prev branch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2805
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2806
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2807
    arraycopy_range_checks(src, src_pos, dst, dst_pos, length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2808
                           O5_temp, G4_dst_klass, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2809
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
  2810
    // TypeArrayKlass
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2811
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2812
    // src_addr = (src + array_header_in_bytes()) + (src_pos << log2elemsize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2813
    // dst_addr = (dst + array_header_in_bytes()) + (dst_pos << log2elemsize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2814
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2815
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2816
    const Register G4_offset = G4_dst_klass;    // array offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2817
    const Register G3_elsize = G3_src_klass;    // log2 element size
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2818
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2819
    __ srl(G5_lh, Klass::_lh_header_size_shift, G4_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2820
    __ and3(G4_offset, Klass::_lh_header_size_mask, G4_offset); // array_offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2821
    __ add(src, G4_offset, src);       // src array offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2822
    __ add(dst, G4_offset, dst);       // dst array offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2823
    __ and3(G5_lh, Klass::_lh_log2_element_size_mask, G3_elsize); // log2 element size
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2824
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2825
    // next registers should be set before the jump to corresponding stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2826
    const Register from     = O0;  // source array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2827
    const Register to       = O1;  // destination array address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2828
    const Register count    = O2;  // elements count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2829
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2830
    // 'from', 'to', 'count' registers should be set in this order
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2831
    // since they are the same as 'src', 'src_pos', 'dst'.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2832
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2833
    BLOCK_COMMENT("scale indexes to element size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2834
    __ sll_ptr(src_pos, G3_elsize, src_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2835
    __ sll_ptr(dst_pos, G3_elsize, dst_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2836
    __ add(src, src_pos, from);       // src_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2837
    __ add(dst, dst_pos, to);         // dst_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2838
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2839
    BLOCK_COMMENT("choose copy loop based on element size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2840
    __ cmp(G3_elsize, 0);
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2841
    __ br(Assembler::equal, true, Assembler::pt, entry_jbyte_arraycopy);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2842
    __ delayed()->signx(length, count); // length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2843
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2844
    __ cmp(G3_elsize, LogBytesPerShort);
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2845
    __ br(Assembler::equal, true, Assembler::pt, entry_jshort_arraycopy);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2846
    __ delayed()->signx(length, count); // length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2847
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2848
    __ cmp(G3_elsize, LogBytesPerInt);
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2849
    __ br(Assembler::equal, true, Assembler::pt, entry_jint_arraycopy);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2850
    __ delayed()->signx(length, count); // length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2851
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2852
    { Label L;
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10004
diff changeset
  2853
      __ cmp_and_br_short(G3_elsize, LogBytesPerLong, Assembler::equal, Assembler::pt, L);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2854
      __ stop("must be long copy, but elsize is wrong");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2855
      __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2856
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2857
#endif
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2858
    __ br(Assembler::always, false, Assembler::pt, entry_jlong_arraycopy);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2859
    __ delayed()->signx(length, count); // length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2860
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
  2861
    // ObjArrayKlass
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2862
  __ BIND(L_objArray);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2863
    // live at this point:  G3_src_klass, G4_dst_klass, src[_pos], dst[_pos], length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2864
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2865
    Label L_plain_copy, L_checkcast_copy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2866
    //  test array classes for subtyping
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2867
    __ cmp(G3_src_klass, G4_dst_klass);         // usual case is exact equality
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2868
    __ brx(Assembler::notEqual, true, Assembler::pn, L_checkcast_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2869
    __ delayed()->lduw(G4_dst_klass, lh_offset, O5_temp); // hoisted from below
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2870
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2871
    // Identically typed arrays can be copied without element-wise checks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2872
    arraycopy_range_checks(src, src_pos, dst, dst_pos, length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2873
                           O5_temp, G5_lh, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2874
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2875
    __ add(src, arrayOopDesc::base_offset_in_bytes(T_OBJECT), src); //src offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2876
    __ 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
  2877
    __ 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
  2878
    __ sll_ptr(dst_pos, LogBytesPerHeapOop, dst_pos);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2879
    __ add(src, src_pos, from);       // src_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2880
    __ add(dst, dst_pos, to);         // dst_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2881
  __ BIND(L_plain_copy);
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2882
    __ br(Assembler::always, false, Assembler::pt, entry_oop_arraycopy);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2883
    __ delayed()->signx(length, count); // length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2884
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2885
  __ BIND(L_checkcast_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2886
    // live at this point:  G3_src_klass, G4_dst_klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2887
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2888
      // Before looking at dst.length, make sure dst is also an objArray.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2889
      // lduw(G4_dst_klass, lh_offset, O5_temp); // hoisted to delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2890
      __ cmp(G5_lh,                    O5_temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2891
      __ br(Assembler::notEqual, false, Assembler::pn, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2892
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2893
      // It is safe to examine both src.length and dst.length.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2894
      __ delayed();                             // match next insn to prev branch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2895
      arraycopy_range_checks(src, src_pos, dst, dst_pos, length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2896
                             O5_temp, G5_lh, L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2897
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2898
      // Marshal the base address arguments now, freeing registers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2899
      __ add(src, arrayOopDesc::base_offset_in_bytes(T_OBJECT), src); //src offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2900
      __ 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
  2901
      __ 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
  2902
      __ sll_ptr(dst_pos, LogBytesPerHeapOop, dst_pos);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2903
      __ add(src, src_pos, from);               // src_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2904
      __ add(dst, dst_pos, to);                 // dst_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2905
      __ signx(length, count);                  // length (reloaded)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2906
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2907
      Register sco_temp = O3;                   // this register is free now
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2908
      assert_different_registers(from, to, count, sco_temp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2909
                                 G4_dst_klass, G3_src_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2910
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2911
      // Generate the type check.
11430
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 10566
diff changeset
  2912
      int sco_offset = in_bytes(Klass::super_check_offset_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2913
      __ lduw(G4_dst_klass, sco_offset, sco_temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2914
      generate_type_check(G3_src_klass, sco_temp, G4_dst_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2915
                          O5_temp, L_plain_copy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2916
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
  2917
      // Fetch destination element klass from the ObjArrayKlass header.
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
  2918
      int ek_offset = in_bytes(ObjArrayKlass::element_klass_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2919
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2920
      // the checkcast_copy loop needs two extra arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2921
      __ ld_ptr(G4_dst_klass, ek_offset, O4);   // dest elem klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2922
      // lduw(O4, sco_offset, O3);              // sco of elem klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2923
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2924
      __ br(Assembler::always, false, Assembler::pt, entry_checkcast_arraycopy);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2925
      __ delayed()->lduw(O4, sco_offset, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2926
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2927
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2928
  __ BIND(L_failed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2929
    __ retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2930
    __ delayed()->sub(G0, 1, O0); // return -1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2931
    return start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2932
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2933
10501
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2934
  //
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2935
  //  Generate stub for heap zeroing.
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2936
  //  "to" address is aligned to jlong (8 bytes).
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2937
  //
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2938
  // Arguments for generated stub:
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2939
  //      to:    O0
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2940
  //      count: O1 treated as signed (count of HeapWord)
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2941
  //             count could be 0
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2942
  //
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2943
  address generate_zero_aligned_words(const char* name) {
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2944
    __ align(CodeEntryAlignment);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2945
    StubCodeMark mark(this, "StubRoutines", name);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2946
    address start = __ pc();
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2947
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2948
    const Register to    = O0;   // source array address
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2949
    const Register count = O1;   // HeapWords count
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2950
    const Register temp  = O2;   // scratch
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2951
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2952
    Label Ldone;
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2953
    __ sllx(count, LogHeapWordSize, count); // to bytes count
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2954
    // Use BIS for zeroing
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2955
    __ bis_zeroing(to, count, temp, Ldone);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2956
    __ bind(Ldone);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2957
    __ retl();
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2958
    __ delayed()->nop();
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2959
    return start;
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2960
}
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  2961
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2962
  void generate_arraycopy_stubs() {
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2963
    address entry;
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2964
    address entry_jbyte_arraycopy;
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2965
    address entry_jshort_arraycopy;
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2966
    address entry_jint_arraycopy;
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2967
    address entry_oop_arraycopy;
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2968
    address entry_jlong_arraycopy;
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2969
    address entry_checkcast_arraycopy;
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2970
55490
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  2971
    address ucm_common_error_exit       =  generate_unsafecopy_common_error_exit();
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  2972
    UnsafeCopyMemory::set_common_exit_stub_pc(ucm_common_error_exit);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  2973
8498
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2974
    //*** jbyte
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2975
    // Always need aligned and unaligned versions
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2976
    StubRoutines::_jbyte_disjoint_arraycopy         = generate_disjoint_byte_copy(false, &entry,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2977
                                                                                  "jbyte_disjoint_arraycopy");
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2978
    StubRoutines::_jbyte_arraycopy                  = generate_conjoint_byte_copy(false, entry,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2979
                                                                                  &entry_jbyte_arraycopy,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2980
                                                                                  "jbyte_arraycopy");
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2981
    StubRoutines::_arrayof_jbyte_disjoint_arraycopy = generate_disjoint_byte_copy(true, &entry,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2982
                                                                                  "arrayof_jbyte_disjoint_arraycopy");
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2983
    StubRoutines::_arrayof_jbyte_arraycopy          = generate_conjoint_byte_copy(true, entry, NULL,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2984
                                                                                  "arrayof_jbyte_arraycopy");
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2985
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2986
    //*** jshort
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2987
    // Always need aligned and unaligned versions
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2988
    StubRoutines::_jshort_disjoint_arraycopy         = generate_disjoint_short_copy(false, &entry,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2989
                                                                                    "jshort_disjoint_arraycopy");
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2990
    StubRoutines::_jshort_arraycopy                  = generate_conjoint_short_copy(false, entry,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2991
                                                                                    &entry_jshort_arraycopy,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2992
                                                                                    "jshort_arraycopy");
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2993
    StubRoutines::_arrayof_jshort_disjoint_arraycopy = generate_disjoint_short_copy(true, &entry,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2994
                                                                                    "arrayof_jshort_disjoint_arraycopy");
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2995
    StubRoutines::_arrayof_jshort_arraycopy          = generate_conjoint_short_copy(true, entry, NULL,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2996
                                                                                    "arrayof_jshort_arraycopy");
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  2997
8498
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2998
    //*** jint
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  2999
    // Aligned versions
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3000
    StubRoutines::_arrayof_jint_disjoint_arraycopy = generate_disjoint_int_copy(true, &entry,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3001
                                                                                "arrayof_jint_disjoint_arraycopy");
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3002
    StubRoutines::_arrayof_jint_arraycopy          = generate_conjoint_int_copy(true, entry, &entry_jint_arraycopy,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3003
                                                                                "arrayof_jint_arraycopy");
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3004
    // In 64 bit we need both aligned and unaligned versions of jint arraycopy.
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3005
    // entry_jint_arraycopy always points to the unaligned version (notice that we overwrite it).
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3006
    StubRoutines::_jint_disjoint_arraycopy         = generate_disjoint_int_copy(false, &entry,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3007
                                                                                "jint_disjoint_arraycopy");
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3008
    StubRoutines::_jint_arraycopy                  = generate_conjoint_int_copy(false, entry,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3009
                                                                                &entry_jint_arraycopy,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3010
                                                                                "jint_arraycopy");
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3011
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3012
    //*** jlong
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3013
    // It is always aligned
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3014
    StubRoutines::_arrayof_jlong_disjoint_arraycopy = generate_disjoint_long_copy(true, &entry,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3015
                                                                                  "arrayof_jlong_disjoint_arraycopy");
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3016
    StubRoutines::_arrayof_jlong_arraycopy          = generate_conjoint_long_copy(true, entry, &entry_jlong_arraycopy,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3017
                                                                                  "arrayof_jlong_arraycopy");
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3018
    StubRoutines::_jlong_disjoint_arraycopy         = StubRoutines::_arrayof_jlong_disjoint_arraycopy;
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3019
    StubRoutines::_jlong_arraycopy                  = StubRoutines::_arrayof_jlong_arraycopy;
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3020
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3021
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3022
    //*** oops
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3023
    // Aligned versions
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3024
    StubRoutines::_arrayof_oop_disjoint_arraycopy        = generate_disjoint_oop_copy(true, &entry,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3025
                                                                                      "arrayof_oop_disjoint_arraycopy");
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3026
    StubRoutines::_arrayof_oop_arraycopy                 = generate_conjoint_oop_copy(true, entry, &entry_oop_arraycopy,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3027
                                                                                      "arrayof_oop_arraycopy");
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3028
    // Aligned versions without pre-barriers
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3029
    StubRoutines::_arrayof_oop_disjoint_arraycopy_uninit = generate_disjoint_oop_copy(true, &entry,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3030
                                                                                      "arrayof_oop_disjoint_arraycopy_uninit",
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3031
                                                                                      /*dest_uninitialized*/true);
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3032
    StubRoutines::_arrayof_oop_arraycopy_uninit          = generate_conjoint_oop_copy(true, entry, NULL,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3033
                                                                                      "arrayof_oop_arraycopy_uninit",
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3034
                                                                                      /*dest_uninitialized*/true);
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3035
    if (UseCompressedOops) {
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3036
      // With compressed oops we need unaligned versions, notice that we overwrite entry_oop_arraycopy.
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3037
      StubRoutines::_oop_disjoint_arraycopy            = generate_disjoint_oop_copy(false, &entry,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3038
                                                                                    "oop_disjoint_arraycopy");
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3039
      StubRoutines::_oop_arraycopy                     = generate_conjoint_oop_copy(false, entry, &entry_oop_arraycopy,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3040
                                                                                    "oop_arraycopy");
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3041
      // Unaligned versions without pre-barriers
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3042
      StubRoutines::_oop_disjoint_arraycopy_uninit     = generate_disjoint_oop_copy(false, &entry,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3043
                                                                                    "oop_disjoint_arraycopy_uninit",
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3044
                                                                                    /*dest_uninitialized*/true);
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3045
      StubRoutines::_oop_arraycopy_uninit              = generate_conjoint_oop_copy(false, entry, NULL,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3046
                                                                                    "oop_arraycopy_uninit",
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3047
                                                                                    /*dest_uninitialized*/true);
46462
f92a713126b1 8179903: Clean up SPARC 32-bit support
gtriantafill
parents: 46422
diff changeset
  3048
    } else {
8498
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3049
      // oop arraycopy is always aligned on 32bit and 64bit without compressed oops
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3050
      StubRoutines::_oop_disjoint_arraycopy            = StubRoutines::_arrayof_oop_disjoint_arraycopy;
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3051
      StubRoutines::_oop_arraycopy                     = StubRoutines::_arrayof_oop_arraycopy;
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3052
      StubRoutines::_oop_disjoint_arraycopy_uninit     = StubRoutines::_arrayof_oop_disjoint_arraycopy_uninit;
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3053
      StubRoutines::_oop_arraycopy_uninit              = StubRoutines::_arrayof_oop_arraycopy_uninit;
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3054
    }
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3055
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3056
    StubRoutines::_checkcast_arraycopy        = generate_checkcast_copy("checkcast_arraycopy", &entry_checkcast_arraycopy);
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3057
    StubRoutines::_checkcast_arraycopy_uninit = generate_checkcast_copy("checkcast_arraycopy_uninit", NULL,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3058
                                                                        /*dest_uninitialized*/true);
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8487
diff changeset
  3059
8487
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  3060
    StubRoutines::_unsafe_arraycopy    = generate_unsafe_copy("unsafe_arraycopy",
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  3061
                                                              entry_jbyte_arraycopy,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  3062
                                                              entry_jshort_arraycopy,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  3063
                                                              entry_jint_arraycopy,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  3064
                                                              entry_jlong_arraycopy);
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  3065
    StubRoutines::_generic_arraycopy   = generate_generic_copy("generic_arraycopy",
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  3066
                                                               entry_jbyte_arraycopy,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  3067
                                                               entry_jshort_arraycopy,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  3068
                                                               entry_jint_arraycopy,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  3069
                                                               entry_oop_arraycopy,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  3070
                                                               entry_jlong_arraycopy,
bf96596f06d2 7020521: arraycopy stubs place prebarriers incorrectly
iveresov
parents: 7397
diff changeset
  3071
                                                               entry_checkcast_arraycopy);
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  3072
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  3073
    StubRoutines::_jbyte_fill = generate_fill(T_BYTE, false, "jbyte_fill");
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  3074
    StubRoutines::_jshort_fill = generate_fill(T_SHORT, false, "jshort_fill");
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  3075
    StubRoutines::_jint_fill = generate_fill(T_INT, false, "jint_fill");
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  3076
    StubRoutines::_arrayof_jbyte_fill = generate_fill(T_BYTE, true, "arrayof_jbyte_fill");
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  3077
    StubRoutines::_arrayof_jshort_fill = generate_fill(T_SHORT, true, "arrayof_jshort_fill");
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6057
diff changeset
  3078
    StubRoutines::_arrayof_jint_fill = generate_fill(T_INT, true, "arrayof_jint_fill");
10501
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  3079
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  3080
    if (UseBlockZeroing) {
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  3081
      StubRoutines::_zero_aligned_words = generate_zero_aligned_words("zero_aligned_words");
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  3082
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3083
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3084
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3085
  address generate_aescrypt_encryptBlock() {
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3086
    // required since we read expanded key 'int' array starting first element without alignment considerations
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3087
    assert((arrayOopDesc::base_offset_in_bytes(T_INT) & 7) == 0,
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3088
           "the following code assumes that first element of an int array is aligned to 8 bytes");
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3089
    __ align(CodeEntryAlignment);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3090
    StubCodeMark mark(this, "StubRoutines", "aescrypt_encryptBlock");
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3091
    Label L_load_misaligned_input, L_load_expanded_key, L_doLast128bit, L_storeOutput, L_store_misaligned_output;
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3092
    address start = __ pc();
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3093
    Register from = O0; // source byte array
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3094
    Register to = O1;   // destination byte array
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3095
    Register key = O2;  // expanded key array
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3096
    const Register keylen = O4; //reg for storing expanded key array length
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3097
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3098
    // read expanded key length
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3099
    __ ldsw(Address(key, arrayOopDesc::length_offset_in_bytes() - arrayOopDesc::base_offset_in_bytes(T_INT)), keylen, 0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3100
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3101
    // Method to address arbitrary alignment for load instructions:
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3102
    // Check last 3 bits of 'from' address to see if it is aligned to 8-byte boundary
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3103
    // If zero/aligned then continue with double FP load instructions
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3104
    // If not zero/mis-aligned then alignaddr will set GSR.align with number of bytes to skip during faligndata
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3105
    // alignaddr will also convert arbitrary aligned 'from' address to nearest 8-byte aligned address
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3106
    // load 3 * 8-byte components (to read 16 bytes input) in 3 different FP regs starting at this aligned address
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3107
    // faligndata will then extract (based on GSR.align value) the appropriate 8 bytes from the 2 source regs
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3108
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3109
    // check for 8-byte alignment since source byte array may have an arbitrary alignment if offset mod 8 is non-zero
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3110
    __ andcc(from, 7, G0);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3111
    __ br(Assembler::notZero, true, Assembler::pn, L_load_misaligned_input);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3112
    __ delayed()->alignaddr(from, G0, from);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3113
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3114
    // aligned case: load input into F54-F56
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3115
    __ ldf(FloatRegisterImpl::D, from, 0, F54);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3116
    __ ldf(FloatRegisterImpl::D, from, 8, F56);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3117
    __ ba_short(L_load_expanded_key);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3118
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3119
    __ BIND(L_load_misaligned_input);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3120
    __ ldf(FloatRegisterImpl::D, from, 0, F54);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3121
    __ ldf(FloatRegisterImpl::D, from, 8, F56);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3122
    __ ldf(FloatRegisterImpl::D, from, 16, F58);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3123
    __ faligndata(F54, F56, F54);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3124
    __ faligndata(F56, F58, F56);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3125
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3126
    __ BIND(L_load_expanded_key);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3127
    // Since we load expanded key buffers starting first element, 8-byte alignment is guaranteed
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3128
    for ( int i = 0;  i <= 38; i += 2 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3129
      __ ldf(FloatRegisterImpl::D, key, i*4, as_FloatRegister(i));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3130
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3131
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3132
    // perform cipher transformation
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3133
    __ fxor(FloatRegisterImpl::D, F0, F54, F54);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3134
    __ fxor(FloatRegisterImpl::D, F2, F56, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3135
    // rounds 1 through 8
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3136
    for ( int i = 4;  i <= 28; i += 8 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3137
      __ aes_eround01(as_FloatRegister(i), F54, F56, F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3138
      __ aes_eround23(as_FloatRegister(i+2), F54, F56, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3139
      __ aes_eround01(as_FloatRegister(i+4), F58, F60, F54);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3140
      __ aes_eround23(as_FloatRegister(i+6), F58, F60, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3141
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3142
    __ aes_eround01(F36, F54, F56, F58); //round 9
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3143
    __ aes_eround23(F38, F54, F56, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3144
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3145
    // 128-bit original key size
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3146
    __ cmp_and_brx_short(keylen, 44, Assembler::equal, Assembler::pt, L_doLast128bit);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3147
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3148
    for ( int i = 40;  i <= 50; i += 2 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3149
      __ ldf(FloatRegisterImpl::D, key, i*4, as_FloatRegister(i) );
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3150
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3151
    __ aes_eround01(F40, F58, F60, F54); //round 10
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3152
    __ aes_eround23(F42, F58, F60, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3153
    __ aes_eround01(F44, F54, F56, F58); //round 11
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3154
    __ aes_eround23(F46, F54, F56, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3155
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3156
    // 192-bit original key size
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3157
    __ cmp_and_brx_short(keylen, 52, Assembler::equal, Assembler::pt, L_storeOutput);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3158
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3159
    __ ldf(FloatRegisterImpl::D, key, 208, F52);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3160
    __ aes_eround01(F48, F58, F60, F54); //round 12
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3161
    __ aes_eround23(F50, F58, F60, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3162
    __ ldf(FloatRegisterImpl::D, key, 216, F46);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3163
    __ ldf(FloatRegisterImpl::D, key, 224, F48);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3164
    __ ldf(FloatRegisterImpl::D, key, 232, F50);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3165
    __ aes_eround01(F52, F54, F56, F58); //round 13
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3166
    __ aes_eround23(F46, F54, F56, F60);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3167
    __ ba_short(L_storeOutput);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3168
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3169
    __ BIND(L_doLast128bit);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3170
    __ ldf(FloatRegisterImpl::D, key, 160, F48);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3171
    __ ldf(FloatRegisterImpl::D, key, 168, F50);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3172
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3173
    __ BIND(L_storeOutput);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3174
    // perform last round of encryption common for all key sizes
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3175
    __ aes_eround01_l(F48, F58, F60, F54); //last round
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3176
    __ aes_eround23_l(F50, F58, F60, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3177
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3178
    // Method to address arbitrary alignment for store instructions:
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3179
    // Check last 3 bits of 'dest' address to see if it is aligned to 8-byte boundary
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3180
    // If zero/aligned then continue with double FP store instructions
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3181
    // If not zero/mis-aligned then edge8n will generate edge mask in result reg (O3 in below case)
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3182
    // Example: If dest address is 0x07 and nearest 8-byte aligned address is 0x00 then edge mask will be 00000001
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3183
    // Compute (8-n) where n is # of bytes skipped by partial store(stpartialf) inst from edge mask, n=7 in this case
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3184
    // We get the value of n from the andcc that checks 'dest' alignment. n is available in O5 in below case.
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3185
    // Set GSR.align to (8-n) using alignaddr
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3186
    // Circular byte shift store values by n places so that the original bytes are at correct position for stpartialf
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3187
    // Set the arbitrarily aligned 'dest' address to nearest 8-byte aligned address
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3188
    // Store (partial) the original first (8-n) bytes starting at the original 'dest' address
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3189
    // Negate the edge mask so that the subsequent stpartialf can store the original (8-n-1)th through 8th bytes at appropriate address
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3190
    // We need to execute this process for both the 8-byte result values
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3191
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3192
    // check for 8-byte alignment since dest byte array may have arbitrary alignment if offset mod 8 is non-zero
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3193
    __ andcc(to, 7, O5);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3194
    __ br(Assembler::notZero, true, Assembler::pn, L_store_misaligned_output);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3195
    __ delayed()->edge8n(to, G0, O3);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3196
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3197
    // aligned case: store output into the destination array
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3198
    __ stf(FloatRegisterImpl::D, F54, to, 0);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3199
    __ retl();
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3200
    __ delayed()->stf(FloatRegisterImpl::D, F56, to, 8);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3201
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3202
    __ BIND(L_store_misaligned_output);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3203
    __ add(to, 8, O4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3204
    __ mov(8, O2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3205
    __ sub(O2, O5, O2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3206
    __ alignaddr(O2, G0, O2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3207
    __ faligndata(F54, F54, F54);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3208
    __ faligndata(F56, F56, F56);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3209
    __ and3(to, -8, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3210
    __ and3(O4, -8, O4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3211
    __ stpartialf(to, O3, F54, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3212
    __ stpartialf(O4, O3, F56, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3213
    __ add(to, 8, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3214
    __ add(O4, 8, O4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3215
    __ orn(G0, O3, O3);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3216
    __ stpartialf(to, O3, F54, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3217
    __ retl();
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3218
    __ delayed()->stpartialf(O4, O3, F56, Assembler::ASI_PST8_PRIMARY);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3219
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3220
    return start;
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3221
  }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3222
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3223
  address generate_aescrypt_decryptBlock() {
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3224
    assert((arrayOopDesc::base_offset_in_bytes(T_INT) & 7) == 0,
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3225
           "the following code assumes that first element of an int array is aligned to 8 bytes");
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3226
    // required since we read original key 'byte' array as well in the decryption stubs
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3227
    assert((arrayOopDesc::base_offset_in_bytes(T_BYTE) & 7) == 0,
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3228
           "the following code assumes that first element of a byte array is aligned to 8 bytes");
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3229
    __ align(CodeEntryAlignment);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3230
    StubCodeMark mark(this, "StubRoutines", "aescrypt_decryptBlock");
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3231
    address start = __ pc();
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3232
    Label L_load_misaligned_input, L_load_original_key, L_expand192bit, L_expand256bit, L_reload_misaligned_input;
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3233
    Label L_256bit_transform, L_common_transform, L_store_misaligned_output;
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3234
    Register from = O0; // source byte array
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3235
    Register to = O1;   // destination byte array
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3236
    Register key = O2;  // expanded key array
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3237
    Register original_key = O3;  // original key array only required during decryption
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3238
    const Register keylen = O4;  // reg for storing expanded key array length
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3239
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3240
    // read expanded key array length
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3241
    __ ldsw(Address(key, arrayOopDesc::length_offset_in_bytes() - arrayOopDesc::base_offset_in_bytes(T_INT)), keylen, 0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3242
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3243
    // save 'from' since we may need to recheck alignment in case of 256-bit decryption
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3244
    __ mov(from, G1);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3245
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3246
    // check for 8-byte alignment since source byte array may have an arbitrary alignment if offset mod 8 is non-zero
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3247
    __ andcc(from, 7, G0);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3248
    __ br(Assembler::notZero, true, Assembler::pn, L_load_misaligned_input);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3249
    __ delayed()->alignaddr(from, G0, from);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3250
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3251
    // aligned case: load input into F52-F54
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3252
    __ ldf(FloatRegisterImpl::D, from, 0, F52);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3253
    __ ldf(FloatRegisterImpl::D, from, 8, F54);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3254
    __ ba_short(L_load_original_key);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3255
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3256
    __ BIND(L_load_misaligned_input);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3257
    __ ldf(FloatRegisterImpl::D, from, 0, F52);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3258
    __ ldf(FloatRegisterImpl::D, from, 8, F54);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3259
    __ ldf(FloatRegisterImpl::D, from, 16, F56);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3260
    __ faligndata(F52, F54, F52);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3261
    __ faligndata(F54, F56, F54);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3262
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3263
    __ BIND(L_load_original_key);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3264
    // load original key from SunJCE expanded decryption key
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3265
    // Since we load original key buffer starting first element, 8-byte alignment is guaranteed
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3266
    for ( int i = 0;  i <= 3; i++ ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3267
      __ ldf(FloatRegisterImpl::S, original_key, i*4, as_FloatRegister(i));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3268
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3269
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3270
    // 256-bit original key size
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3271
    __ cmp_and_brx_short(keylen, 60, Assembler::equal, Assembler::pn, L_expand256bit);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3272
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3273
    // 192-bit original key size
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3274
    __ cmp_and_brx_short(keylen, 52, Assembler::equal, Assembler::pn, L_expand192bit);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3275
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3276
    // 128-bit original key size
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3277
    // perform key expansion since SunJCE decryption-key expansion is not compatible with SPARC crypto instructions
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3278
    for ( int i = 0;  i <= 36; i += 4 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3279
      __ aes_kexpand1(as_FloatRegister(i), as_FloatRegister(i+2), i/4, as_FloatRegister(i+4));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3280
      __ aes_kexpand2(as_FloatRegister(i+2), as_FloatRegister(i+4), as_FloatRegister(i+6));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3281
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3282
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3283
    // perform 128-bit key specific inverse cipher transformation
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3284
    __ fxor(FloatRegisterImpl::D, F42, F54, F54);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3285
    __ fxor(FloatRegisterImpl::D, F40, F52, F52);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3286
    __ ba_short(L_common_transform);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3287
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3288
    __ BIND(L_expand192bit);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3289
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3290
    // start loading rest of the 192-bit key
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3291
    __ ldf(FloatRegisterImpl::S, original_key, 16, F4);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3292
    __ ldf(FloatRegisterImpl::S, original_key, 20, F5);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3293
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3294
    // perform key expansion since SunJCE decryption-key expansion is not compatible with SPARC crypto instructions
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3295
    for ( int i = 0;  i <= 36; i += 6 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3296
      __ aes_kexpand1(as_FloatRegister(i), as_FloatRegister(i+4), i/6, as_FloatRegister(i+6));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3297
      __ aes_kexpand2(as_FloatRegister(i+2), as_FloatRegister(i+6), as_FloatRegister(i+8));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3298
      __ aes_kexpand2(as_FloatRegister(i+4), as_FloatRegister(i+8), as_FloatRegister(i+10));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3299
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3300
    __ aes_kexpand1(F42, F46, 7, F48);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3301
    __ aes_kexpand2(F44, F48, F50);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3302
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3303
    // perform 192-bit key specific inverse cipher transformation
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3304
    __ fxor(FloatRegisterImpl::D, F50, F54, F54);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3305
    __ fxor(FloatRegisterImpl::D, F48, F52, F52);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3306
    __ aes_dround23(F46, F52, F54, F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3307
    __ aes_dround01(F44, F52, F54, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3308
    __ aes_dround23(F42, F56, F58, F54);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3309
    __ aes_dround01(F40, F56, F58, F52);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3310
    __ ba_short(L_common_transform);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3311
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3312
    __ BIND(L_expand256bit);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3313
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3314
    // load rest of the 256-bit key
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3315
    for ( int i = 4;  i <= 7; i++ ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3316
      __ ldf(FloatRegisterImpl::S, original_key, i*4, as_FloatRegister(i));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3317
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3318
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3319
    // perform key expansion since SunJCE decryption-key expansion is not compatible with SPARC crypto instructions
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3320
    for ( int i = 0;  i <= 40; i += 8 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3321
      __ aes_kexpand1(as_FloatRegister(i), as_FloatRegister(i+6), i/8, as_FloatRegister(i+8));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3322
      __ aes_kexpand2(as_FloatRegister(i+2), as_FloatRegister(i+8), as_FloatRegister(i+10));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3323
      __ aes_kexpand0(as_FloatRegister(i+4), as_FloatRegister(i+10), as_FloatRegister(i+12));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3324
      __ aes_kexpand2(as_FloatRegister(i+6), as_FloatRegister(i+12), as_FloatRegister(i+14));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3325
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3326
    __ aes_kexpand1(F48, F54, 6, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3327
    __ aes_kexpand2(F50, F56, F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3328
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3329
    for ( int i = 0;  i <= 6; i += 2 ) {
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3330
      __ fsrc2(FloatRegisterImpl::D, as_FloatRegister(58-i), as_FloatRegister(i));
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3331
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3332
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3333
    // reload original 'from' address
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3334
    __ mov(G1, from);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3335
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3336
    // re-check 8-byte alignment
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3337
    __ andcc(from, 7, G0);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3338
    __ br(Assembler::notZero, true, Assembler::pn, L_reload_misaligned_input);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3339
    __ delayed()->alignaddr(from, G0, from);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3340
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3341
    // aligned case: load input into F52-F54
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3342
    __ ldf(FloatRegisterImpl::D, from, 0, F52);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3343
    __ ldf(FloatRegisterImpl::D, from, 8, F54);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3344
    __ ba_short(L_256bit_transform);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3345
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3346
    __ BIND(L_reload_misaligned_input);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3347
    __ ldf(FloatRegisterImpl::D, from, 0, F52);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3348
    __ ldf(FloatRegisterImpl::D, from, 8, F54);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3349
    __ ldf(FloatRegisterImpl::D, from, 16, F56);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3350
    __ faligndata(F52, F54, F52);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3351
    __ faligndata(F54, F56, F54);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3352
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3353
    // perform 256-bit key specific inverse cipher transformation
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3354
    __ BIND(L_256bit_transform);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3355
    __ fxor(FloatRegisterImpl::D, F0, F54, F54);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3356
    __ fxor(FloatRegisterImpl::D, F2, F52, F52);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3357
    __ aes_dround23(F4, F52, F54, F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3358
    __ aes_dround01(F6, F52, F54, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3359
    __ aes_dround23(F50, F56, F58, F54);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3360
    __ aes_dround01(F48, F56, F58, F52);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3361
    __ aes_dround23(F46, F52, F54, F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3362
    __ aes_dround01(F44, F52, F54, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3363
    __ aes_dround23(F42, F56, F58, F54);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3364
    __ aes_dround01(F40, F56, F58, F52);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3365
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3366
    for ( int i = 0;  i <= 7; i++ ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3367
      __ ldf(FloatRegisterImpl::S, original_key, i*4, as_FloatRegister(i));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3368
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3369
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3370
    // perform inverse cipher transformations common for all key sizes
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3371
    __ BIND(L_common_transform);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3372
    for ( int i = 38;  i >= 6; i -= 8 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3373
      __ aes_dround23(as_FloatRegister(i), F52, F54, F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3374
      __ aes_dround01(as_FloatRegister(i-2), F52, F54, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3375
      if ( i != 6) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3376
        __ aes_dround23(as_FloatRegister(i-4), F56, F58, F54);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3377
        __ aes_dround01(as_FloatRegister(i-6), F56, F58, F52);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3378
      } else {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3379
        __ aes_dround23_l(as_FloatRegister(i-4), F56, F58, F54);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3380
        __ aes_dround01_l(as_FloatRegister(i-6), F56, F58, F52);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3381
      }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3382
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3383
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3384
    // check for 8-byte alignment since dest byte array may have arbitrary alignment if offset mod 8 is non-zero
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3385
    __ andcc(to, 7, O5);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3386
    __ br(Assembler::notZero, true, Assembler::pn, L_store_misaligned_output);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3387
    __ delayed()->edge8n(to, G0, O3);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3388
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3389
    // aligned case: store output into the destination array
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3390
    __ stf(FloatRegisterImpl::D, F52, to, 0);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3391
    __ retl();
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3392
    __ delayed()->stf(FloatRegisterImpl::D, F54, to, 8);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3393
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3394
    __ BIND(L_store_misaligned_output);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3395
    __ add(to, 8, O4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3396
    __ mov(8, O2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3397
    __ sub(O2, O5, O2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3398
    __ alignaddr(O2, G0, O2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3399
    __ faligndata(F52, F52, F52);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3400
    __ faligndata(F54, F54, F54);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3401
    __ and3(to, -8, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3402
    __ and3(O4, -8, O4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3403
    __ stpartialf(to, O3, F52, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3404
    __ stpartialf(O4, O3, F54, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3405
    __ add(to, 8, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3406
    __ add(O4, 8, O4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3407
    __ orn(G0, O3, O3);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3408
    __ stpartialf(to, O3, F52, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3409
    __ retl();
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3410
    __ delayed()->stpartialf(O4, O3, F54, Assembler::ASI_PST8_PRIMARY);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3411
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3412
    return start;
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3413
  }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3414
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3415
  address generate_cipherBlockChaining_encryptAESCrypt() {
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3416
    assert((arrayOopDesc::base_offset_in_bytes(T_INT) & 7) == 0,
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3417
           "the following code assumes that first element of an int array is aligned to 8 bytes");
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3418
    assert((arrayOopDesc::base_offset_in_bytes(T_BYTE) & 7) == 0,
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3419
           "the following code assumes that first element of a byte array is aligned to 8 bytes");
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3420
    __ align(CodeEntryAlignment);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3421
    StubCodeMark mark(this, "StubRoutines", "cipherBlockChaining_encryptAESCrypt");
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3422
    Label L_cbcenc128, L_load_misaligned_input_128bit, L_128bit_transform, L_store_misaligned_output_128bit;
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3423
    Label L_check_loop_end_128bit, L_cbcenc192, L_load_misaligned_input_192bit, L_192bit_transform;
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3424
    Label L_store_misaligned_output_192bit, L_check_loop_end_192bit, L_cbcenc256, L_load_misaligned_input_256bit;
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3425
    Label L_256bit_transform, L_store_misaligned_output_256bit, L_check_loop_end_256bit;
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3426
    address start = __ pc();
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3427
    Register from = I0; // source byte array
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3428
    Register to = I1;   // destination byte array
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3429
    Register key = I2;  // expanded key array
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3430
    Register rvec = I3; // init vector
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3431
    const Register len_reg = I4; // cipher length
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3432
    const Register keylen = I5;  // reg for storing expanded key array length
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3433
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3434
    __ save_frame(0);
24488
6872367f4335 8043274: Test compiler/7184394/TestAESMain.java gets NPE on solaris
kvn
parents: 24328
diff changeset
  3435
    // save cipher len to return in the end
6872367f4335 8043274: Test compiler/7184394/TestAESMain.java gets NPE on solaris
kvn
parents: 24328
diff changeset
  3436
    __ mov(len_reg, L0);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3437
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3438
    // read expanded key length
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3439
    __ ldsw(Address(key, arrayOopDesc::length_offset_in_bytes() - arrayOopDesc::base_offset_in_bytes(T_INT)), keylen, 0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3440
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3441
    // load initial vector, 8-byte alignment is guranteed
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3442
    __ ldf(FloatRegisterImpl::D, rvec, 0, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3443
    __ ldf(FloatRegisterImpl::D, rvec, 8, F62);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3444
    // load key, 8-byte alignment is guranteed
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3445
    __ ldx(key,0,G1);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3446
    __ ldx(key,8,G5);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3447
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3448
    // start loading expanded key, 8-byte alignment is guranteed
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3449
    for ( int i = 0, j = 16;  i <= 38; i += 2, j += 8 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3450
      __ ldf(FloatRegisterImpl::D, key, j, as_FloatRegister(i));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3451
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3452
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3453
    // 128-bit original key size
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3454
    __ cmp_and_brx_short(keylen, 44, Assembler::equal, Assembler::pt, L_cbcenc128);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3455
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3456
    for ( int i = 40, j = 176;  i <= 46; i += 2, j += 8 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3457
      __ ldf(FloatRegisterImpl::D, key, j, as_FloatRegister(i));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3458
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3459
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3460
    // 192-bit original key size
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3461
    __ cmp_and_brx_short(keylen, 52, Assembler::equal, Assembler::pt, L_cbcenc192);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3462
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3463
    for ( int i = 48, j = 208;  i <= 54; i += 2, j += 8 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3464
      __ ldf(FloatRegisterImpl::D, key, j, as_FloatRegister(i));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3465
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3466
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3467
    // 256-bit original key size
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3468
    __ ba_short(L_cbcenc256);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3469
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3470
    __ align(OptoLoopAlignment);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3471
    __ BIND(L_cbcenc128);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3472
    // check for 8-byte alignment since source byte array may have an arbitrary alignment if offset mod 8 is non-zero
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3473
    __ andcc(from, 7, G0);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3474
    __ br(Assembler::notZero, true, Assembler::pn, L_load_misaligned_input_128bit);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3475
    __ delayed()->mov(from, L1); // save original 'from' address before alignaddr
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3476
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3477
    // aligned case: load input into G3 and G4
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3478
    __ ldx(from,0,G3);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3479
    __ ldx(from,8,G4);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3480
    __ ba_short(L_128bit_transform);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3481
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3482
    __ BIND(L_load_misaligned_input_128bit);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3483
    // can clobber F48, F50 and F52 as they are not used in 128 and 192-bit key encryption
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3484
    __ alignaddr(from, G0, from);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3485
    __ ldf(FloatRegisterImpl::D, from, 0, F48);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3486
    __ ldf(FloatRegisterImpl::D, from, 8, F50);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3487
    __ ldf(FloatRegisterImpl::D, from, 16, F52);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3488
    __ faligndata(F48, F50, F48);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3489
    __ faligndata(F50, F52, F50);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3490
    __ movdtox(F48, G3);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3491
    __ movdtox(F50, G4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3492
    __ mov(L1, from);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3493
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3494
    __ BIND(L_128bit_transform);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3495
    __ xor3(G1,G3,G3);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3496
    __ xor3(G5,G4,G4);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3497
    __ movxtod(G3,F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3498
    __ movxtod(G4,F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3499
    __ fxor(FloatRegisterImpl::D, F60, F56, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3500
    __ fxor(FloatRegisterImpl::D, F62, F58, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3501
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3502
    // TEN_EROUNDS
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3503
    for ( int i = 0;  i <= 32; i += 8 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3504
      __ aes_eround01(as_FloatRegister(i), F60, F62, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3505
      __ aes_eround23(as_FloatRegister(i+2), F60, F62, F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3506
      if (i != 32 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3507
        __ aes_eround01(as_FloatRegister(i+4), F56, F58, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3508
        __ aes_eround23(as_FloatRegister(i+6), F56, F58, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3509
      } else {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3510
        __ aes_eround01_l(as_FloatRegister(i+4), F56, F58, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3511
        __ aes_eround23_l(as_FloatRegister(i+6), F56, F58, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3512
      }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3513
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3514
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3515
    // check for 8-byte alignment since dest byte array may have arbitrary alignment if offset mod 8 is non-zero
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3516
    __ andcc(to, 7, L1);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3517
    __ br(Assembler::notZero, true, Assembler::pn, L_store_misaligned_output_128bit);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3518
    __ delayed()->edge8n(to, G0, L2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3519
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3520
    // aligned case: store output into the destination array
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3521
    __ stf(FloatRegisterImpl::D, F60, to, 0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3522
    __ stf(FloatRegisterImpl::D, F62, to, 8);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3523
    __ ba_short(L_check_loop_end_128bit);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3524
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3525
    __ BIND(L_store_misaligned_output_128bit);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3526
    __ add(to, 8, L3);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3527
    __ mov(8, L4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3528
    __ sub(L4, L1, L4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3529
    __ alignaddr(L4, G0, L4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3530
    // save cipher text before circular right shift
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3531
    // as it needs to be stored as iv for next block (see code before next retl)
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3532
    __ movdtox(F60, L6);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3533
    __ movdtox(F62, L7);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3534
    __ faligndata(F60, F60, F60);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3535
    __ faligndata(F62, F62, F62);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3536
    __ mov(to, L5);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3537
    __ and3(to, -8, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3538
    __ and3(L3, -8, L3);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3539
    __ stpartialf(to, L2, F60, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3540
    __ stpartialf(L3, L2, F62, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3541
    __ add(to, 8, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3542
    __ add(L3, 8, L3);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3543
    __ orn(G0, L2, L2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3544
    __ stpartialf(to, L2, F60, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3545
    __ stpartialf(L3, L2, F62, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3546
    __ mov(L5, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3547
    __ movxtod(L6, F60);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3548
    __ movxtod(L7, F62);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3549
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3550
    __ BIND(L_check_loop_end_128bit);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3551
    __ add(from, 16, from);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3552
    __ add(to, 16, to);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3553
    __ subcc(len_reg, 16, len_reg);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3554
    __ br(Assembler::notEqual, false, Assembler::pt, L_cbcenc128);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3555
    __ delayed()->nop();
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3556
    // re-init intial vector for next block, 8-byte alignment is guaranteed
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3557
    __ stf(FloatRegisterImpl::D, F60, rvec, 0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3558
    __ stf(FloatRegisterImpl::D, F62, rvec, 8);
24488
6872367f4335 8043274: Test compiler/7184394/TestAESMain.java gets NPE on solaris
kvn
parents: 24328
diff changeset
  3559
    __ mov(L0, I0);
6872367f4335 8043274: Test compiler/7184394/TestAESMain.java gets NPE on solaris
kvn
parents: 24328
diff changeset
  3560
    __ ret();
6872367f4335 8043274: Test compiler/7184394/TestAESMain.java gets NPE on solaris
kvn
parents: 24328
diff changeset
  3561
    __ delayed()->restore();
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3562
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3563
    __ align(OptoLoopAlignment);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3564
    __ BIND(L_cbcenc192);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3565
    // check for 8-byte alignment since source byte array may have an arbitrary alignment if offset mod 8 is non-zero
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3566
    __ andcc(from, 7, G0);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3567
    __ br(Assembler::notZero, true, Assembler::pn, L_load_misaligned_input_192bit);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3568
    __ delayed()->mov(from, L1); // save original 'from' address before alignaddr
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3569
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3570
    // aligned case: load input into G3 and G4
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3571
    __ ldx(from,0,G3);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3572
    __ ldx(from,8,G4);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3573
    __ ba_short(L_192bit_transform);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3574
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3575
    __ BIND(L_load_misaligned_input_192bit);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3576
    // can clobber F48, F50 and F52 as they are not used in 128 and 192-bit key encryption
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3577
    __ alignaddr(from, G0, from);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3578
    __ ldf(FloatRegisterImpl::D, from, 0, F48);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3579
    __ ldf(FloatRegisterImpl::D, from, 8, F50);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3580
    __ ldf(FloatRegisterImpl::D, from, 16, F52);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3581
    __ faligndata(F48, F50, F48);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3582
    __ faligndata(F50, F52, F50);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3583
    __ movdtox(F48, G3);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3584
    __ movdtox(F50, G4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3585
    __ mov(L1, from);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3586
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3587
    __ BIND(L_192bit_transform);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3588
    __ xor3(G1,G3,G3);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3589
    __ xor3(G5,G4,G4);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3590
    __ movxtod(G3,F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3591
    __ movxtod(G4,F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3592
    __ fxor(FloatRegisterImpl::D, F60, F56, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3593
    __ fxor(FloatRegisterImpl::D, F62, F58, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3594
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3595
    // TWELEVE_EROUNDS
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3596
    for ( int i = 0;  i <= 40; i += 8 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3597
      __ aes_eround01(as_FloatRegister(i), F60, F62, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3598
      __ aes_eround23(as_FloatRegister(i+2), F60, F62, F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3599
      if (i != 40 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3600
        __ aes_eround01(as_FloatRegister(i+4), F56, F58, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3601
        __ aes_eround23(as_FloatRegister(i+6), F56, F58, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3602
      } else {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3603
        __ aes_eround01_l(as_FloatRegister(i+4), F56, F58, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3604
        __ aes_eround23_l(as_FloatRegister(i+6), F56, F58, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3605
      }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3606
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3607
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3608
    // check for 8-byte alignment since dest byte array may have arbitrary alignment if offset mod 8 is non-zero
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3609
    __ andcc(to, 7, L1);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3610
    __ br(Assembler::notZero, true, Assembler::pn, L_store_misaligned_output_192bit);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3611
    __ delayed()->edge8n(to, G0, L2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3612
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3613
    // aligned case: store output into the destination array
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3614
    __ stf(FloatRegisterImpl::D, F60, to, 0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3615
    __ stf(FloatRegisterImpl::D, F62, to, 8);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3616
    __ ba_short(L_check_loop_end_192bit);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3617
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3618
    __ BIND(L_store_misaligned_output_192bit);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3619
    __ add(to, 8, L3);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3620
    __ mov(8, L4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3621
    __ sub(L4, L1, L4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3622
    __ alignaddr(L4, G0, L4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3623
    __ movdtox(F60, L6);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3624
    __ movdtox(F62, L7);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3625
    __ faligndata(F60, F60, F60);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3626
    __ faligndata(F62, F62, F62);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3627
    __ mov(to, L5);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3628
    __ and3(to, -8, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3629
    __ and3(L3, -8, L3);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3630
    __ stpartialf(to, L2, F60, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3631
    __ stpartialf(L3, L2, F62, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3632
    __ add(to, 8, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3633
    __ add(L3, 8, L3);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3634
    __ orn(G0, L2, L2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3635
    __ stpartialf(to, L2, F60, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3636
    __ stpartialf(L3, L2, F62, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3637
    __ mov(L5, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3638
    __ movxtod(L6, F60);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3639
    __ movxtod(L7, F62);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3640
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3641
    __ BIND(L_check_loop_end_192bit);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3642
    __ add(from, 16, from);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3643
    __ subcc(len_reg, 16, len_reg);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3644
    __ add(to, 16, to);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3645
    __ br(Assembler::notEqual, false, Assembler::pt, L_cbcenc192);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3646
    __ delayed()->nop();
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3647
    // re-init intial vector for next block, 8-byte alignment is guaranteed
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3648
    __ stf(FloatRegisterImpl::D, F60, rvec, 0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3649
    __ stf(FloatRegisterImpl::D, F62, rvec, 8);
24488
6872367f4335 8043274: Test compiler/7184394/TestAESMain.java gets NPE on solaris
kvn
parents: 24328
diff changeset
  3650
    __ mov(L0, I0);
6872367f4335 8043274: Test compiler/7184394/TestAESMain.java gets NPE on solaris
kvn
parents: 24328
diff changeset
  3651
    __ ret();
6872367f4335 8043274: Test compiler/7184394/TestAESMain.java gets NPE on solaris
kvn
parents: 24328
diff changeset
  3652
    __ delayed()->restore();
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3653
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3654
    __ align(OptoLoopAlignment);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3655
    __ BIND(L_cbcenc256);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3656
    // check for 8-byte alignment since source byte array may have an arbitrary alignment if offset mod 8 is non-zero
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3657
    __ andcc(from, 7, G0);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3658
    __ br(Assembler::notZero, true, Assembler::pn, L_load_misaligned_input_256bit);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3659
    __ delayed()->mov(from, L1); // save original 'from' address before alignaddr
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3660
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3661
    // aligned case: load input into G3 and G4
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3662
    __ ldx(from,0,G3);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3663
    __ ldx(from,8,G4);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3664
    __ ba_short(L_256bit_transform);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3665
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3666
    __ BIND(L_load_misaligned_input_256bit);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3667
    // cannot clobber F48, F50 and F52. F56, F58 can be used though
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3668
    __ alignaddr(from, G0, from);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3669
    __ movdtox(F60, L2); // save F60 before overwriting
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3670
    __ ldf(FloatRegisterImpl::D, from, 0, F56);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3671
    __ ldf(FloatRegisterImpl::D, from, 8, F58);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3672
    __ ldf(FloatRegisterImpl::D, from, 16, F60);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3673
    __ faligndata(F56, F58, F56);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3674
    __ faligndata(F58, F60, F58);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3675
    __ movdtox(F56, G3);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3676
    __ movdtox(F58, G4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3677
    __ mov(L1, from);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3678
    __ movxtod(L2, F60);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3679
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3680
    __ BIND(L_256bit_transform);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3681
    __ xor3(G1,G3,G3);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3682
    __ xor3(G5,G4,G4);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3683
    __ movxtod(G3,F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3684
    __ movxtod(G4,F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3685
    __ fxor(FloatRegisterImpl::D, F60, F56, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3686
    __ fxor(FloatRegisterImpl::D, F62, F58, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3687
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3688
    // FOURTEEN_EROUNDS
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3689
    for ( int i = 0;  i <= 48; i += 8 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3690
      __ aes_eround01(as_FloatRegister(i), F60, F62, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3691
      __ aes_eround23(as_FloatRegister(i+2), F60, F62, F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3692
      if (i != 48 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3693
        __ aes_eround01(as_FloatRegister(i+4), F56, F58, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3694
        __ aes_eround23(as_FloatRegister(i+6), F56, F58, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3695
      } else {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3696
        __ aes_eround01_l(as_FloatRegister(i+4), F56, F58, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3697
        __ aes_eround23_l(as_FloatRegister(i+6), F56, F58, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3698
      }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3699
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3700
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3701
    // check for 8-byte alignment since dest byte array may have arbitrary alignment if offset mod 8 is non-zero
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3702
    __ andcc(to, 7, L1);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3703
    __ br(Assembler::notZero, true, Assembler::pn, L_store_misaligned_output_256bit);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3704
    __ delayed()->edge8n(to, G0, L2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3705
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3706
    // aligned case: store output into the destination array
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3707
    __ stf(FloatRegisterImpl::D, F60, to, 0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3708
    __ stf(FloatRegisterImpl::D, F62, to, 8);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3709
    __ ba_short(L_check_loop_end_256bit);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3710
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3711
    __ BIND(L_store_misaligned_output_256bit);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3712
    __ add(to, 8, L3);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3713
    __ mov(8, L4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3714
    __ sub(L4, L1, L4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3715
    __ alignaddr(L4, G0, L4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3716
    __ movdtox(F60, L6);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3717
    __ movdtox(F62, L7);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3718
    __ faligndata(F60, F60, F60);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3719
    __ faligndata(F62, F62, F62);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3720
    __ mov(to, L5);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3721
    __ and3(to, -8, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3722
    __ and3(L3, -8, L3);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3723
    __ stpartialf(to, L2, F60, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3724
    __ stpartialf(L3, L2, F62, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3725
    __ add(to, 8, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3726
    __ add(L3, 8, L3);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3727
    __ orn(G0, L2, L2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3728
    __ stpartialf(to, L2, F60, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3729
    __ stpartialf(L3, L2, F62, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3730
    __ mov(L5, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3731
    __ movxtod(L6, F60);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3732
    __ movxtod(L7, F62);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3733
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3734
    __ BIND(L_check_loop_end_256bit);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3735
    __ add(from, 16, from);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3736
    __ subcc(len_reg, 16, len_reg);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3737
    __ add(to, 16, to);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3738
    __ br(Assembler::notEqual, false, Assembler::pt, L_cbcenc256);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3739
    __ delayed()->nop();
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3740
    // re-init intial vector for next block, 8-byte alignment is guaranteed
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3741
    __ stf(FloatRegisterImpl::D, F60, rvec, 0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3742
    __ stf(FloatRegisterImpl::D, F62, rvec, 8);
24488
6872367f4335 8043274: Test compiler/7184394/TestAESMain.java gets NPE on solaris
kvn
parents: 24328
diff changeset
  3743
    __ mov(L0, I0);
6872367f4335 8043274: Test compiler/7184394/TestAESMain.java gets NPE on solaris
kvn
parents: 24328
diff changeset
  3744
    __ ret();
6872367f4335 8043274: Test compiler/7184394/TestAESMain.java gets NPE on solaris
kvn
parents: 24328
diff changeset
  3745
    __ delayed()->restore();
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3746
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3747
    return start;
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3748
  }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3749
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3750
  address generate_cipherBlockChaining_decryptAESCrypt_Parallel() {
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3751
    assert((arrayOopDesc::base_offset_in_bytes(T_INT) & 7) == 0,
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3752
           "the following code assumes that first element of an int array is aligned to 8 bytes");
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3753
    assert((arrayOopDesc::base_offset_in_bytes(T_BYTE) & 7) == 0,
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3754
           "the following code assumes that first element of a byte array is aligned to 8 bytes");
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3755
    __ align(CodeEntryAlignment);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3756
    StubCodeMark mark(this, "StubRoutines", "cipherBlockChaining_decryptAESCrypt");
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3757
    Label L_cbcdec_end, L_expand192bit, L_expand256bit, L_dec_first_block_start;
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3758
    Label L_dec_first_block128, L_dec_first_block192, L_dec_next2_blocks128, L_dec_next2_blocks192, L_dec_next2_blocks256;
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3759
    Label L_load_misaligned_input_first_block, L_transform_first_block, L_load_misaligned_next2_blocks128, L_transform_next2_blocks128;
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3760
    Label L_load_misaligned_next2_blocks192, L_transform_next2_blocks192, L_load_misaligned_next2_blocks256, L_transform_next2_blocks256;
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3761
    Label L_store_misaligned_output_first_block, L_check_decrypt_end, L_store_misaligned_output_next2_blocks128;
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3762
    Label L_check_decrypt_loop_end128, L_store_misaligned_output_next2_blocks192, L_check_decrypt_loop_end192;
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3763
    Label L_store_misaligned_output_next2_blocks256, L_check_decrypt_loop_end256;
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3764
    address start = __ pc();
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3765
    Register from = I0; // source byte array
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3766
    Register to = I1;   // destination byte array
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3767
    Register key = I2;  // expanded key array
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3768
    Register rvec = I3; // init vector
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3769
    const Register len_reg = I4; // cipher length
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3770
    const Register original_key = I5;  // original key array only required during decryption
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3771
    const Register keylen = L6;  // reg for storing expanded key array length
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3772
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3773
    __ save_frame(0); //args are read from I* registers since we save the frame in the beginning
24488
6872367f4335 8043274: Test compiler/7184394/TestAESMain.java gets NPE on solaris
kvn
parents: 24328
diff changeset
  3774
    // save cipher len to return in the end
6872367f4335 8043274: Test compiler/7184394/TestAESMain.java gets NPE on solaris
kvn
parents: 24328
diff changeset
  3775
    __ mov(len_reg, L7);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3776
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3777
    // load original key from SunJCE expanded decryption key
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3778
    // Since we load original key buffer starting first element, 8-byte alignment is guaranteed
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3779
    for ( int i = 0;  i <= 3; i++ ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3780
      __ ldf(FloatRegisterImpl::S, original_key, i*4, as_FloatRegister(i));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3781
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3782
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3783
    // load initial vector, 8-byte alignment is guaranteed
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3784
    __ ldx(rvec,0,L0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3785
    __ ldx(rvec,8,L1);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3786
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3787
    // read expanded key array length
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3788
    __ ldsw(Address(key, arrayOopDesc::length_offset_in_bytes() - arrayOopDesc::base_offset_in_bytes(T_INT)), keylen, 0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3789
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3790
    // 256-bit original key size
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3791
    __ cmp_and_brx_short(keylen, 60, Assembler::equal, Assembler::pn, L_expand256bit);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3792
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3793
    // 192-bit original key size
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3794
    __ cmp_and_brx_short(keylen, 52, Assembler::equal, Assembler::pn, L_expand192bit);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3795
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3796
    // 128-bit original key size
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3797
    // perform key expansion since SunJCE decryption-key expansion is not compatible with SPARC crypto instructions
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3798
    for ( int i = 0;  i <= 36; i += 4 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3799
      __ aes_kexpand1(as_FloatRegister(i), as_FloatRegister(i+2), i/4, as_FloatRegister(i+4));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3800
      __ aes_kexpand2(as_FloatRegister(i+2), as_FloatRegister(i+4), as_FloatRegister(i+6));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3801
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3802
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3803
    // load expanded key[last-1] and key[last] elements
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3804
    __ movdtox(F40,L2);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3805
    __ movdtox(F42,L3);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3806
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3807
    __ and3(len_reg, 16, L4);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3808
    __ br_null_short(L4, Assembler::pt, L_dec_next2_blocks128);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3809
    __ nop();
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3810
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3811
    __ ba_short(L_dec_first_block_start);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3812
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3813
    __ BIND(L_expand192bit);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3814
    // load rest of the 192-bit key
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3815
    __ ldf(FloatRegisterImpl::S, original_key, 16, F4);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3816
    __ ldf(FloatRegisterImpl::S, original_key, 20, F5);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3817
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3818
    // perform key expansion since SunJCE decryption-key expansion is not compatible with SPARC crypto instructions
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3819
    for ( int i = 0;  i <= 36; i += 6 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3820
      __ aes_kexpand1(as_FloatRegister(i), as_FloatRegister(i+4), i/6, as_FloatRegister(i+6));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3821
      __ aes_kexpand2(as_FloatRegister(i+2), as_FloatRegister(i+6), as_FloatRegister(i+8));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3822
      __ aes_kexpand2(as_FloatRegister(i+4), as_FloatRegister(i+8), as_FloatRegister(i+10));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3823
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3824
    __ aes_kexpand1(F42, F46, 7, F48);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3825
    __ aes_kexpand2(F44, F48, F50);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3826
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3827
    // load expanded key[last-1] and key[last] elements
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3828
    __ movdtox(F48,L2);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3829
    __ movdtox(F50,L3);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3830
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3831
    __ and3(len_reg, 16, L4);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3832
    __ br_null_short(L4, Assembler::pt, L_dec_next2_blocks192);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3833
    __ nop();
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3834
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3835
    __ ba_short(L_dec_first_block_start);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3836
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3837
    __ BIND(L_expand256bit);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3838
    // load rest of the 256-bit key
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3839
    for ( int i = 4;  i <= 7; i++ ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3840
      __ ldf(FloatRegisterImpl::S, original_key, i*4, as_FloatRegister(i));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3841
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3842
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3843
    // perform key expansion since SunJCE decryption-key expansion is not compatible with SPARC crypto instructions
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3844
    for ( int i = 0;  i <= 40; i += 8 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3845
      __ aes_kexpand1(as_FloatRegister(i), as_FloatRegister(i+6), i/8, as_FloatRegister(i+8));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3846
      __ aes_kexpand2(as_FloatRegister(i+2), as_FloatRegister(i+8), as_FloatRegister(i+10));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3847
      __ aes_kexpand0(as_FloatRegister(i+4), as_FloatRegister(i+10), as_FloatRegister(i+12));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3848
      __ aes_kexpand2(as_FloatRegister(i+6), as_FloatRegister(i+12), as_FloatRegister(i+14));
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3849
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3850
    __ aes_kexpand1(F48, F54, 6, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3851
    __ aes_kexpand2(F50, F56, F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3852
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3853
    // load expanded key[last-1] and key[last] elements
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3854
    __ movdtox(F56,L2);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3855
    __ movdtox(F58,L3);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3856
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3857
    __ and3(len_reg, 16, L4);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3858
    __ br_null_short(L4, Assembler::pt, L_dec_next2_blocks256);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3859
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3860
    __ BIND(L_dec_first_block_start);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3861
    // check for 8-byte alignment since source byte array may have an arbitrary alignment if offset mod 8 is non-zero
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3862
    __ andcc(from, 7, G0);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3863
    __ br(Assembler::notZero, true, Assembler::pn, L_load_misaligned_input_first_block);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3864
    __ delayed()->mov(from, G1); // save original 'from' address before alignaddr
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3865
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3866
    // aligned case: load input into L4 and L5
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3867
    __ ldx(from,0,L4);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3868
    __ ldx(from,8,L5);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3869
    __ ba_short(L_transform_first_block);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3870
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3871
    __ BIND(L_load_misaligned_input_first_block);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3872
    __ alignaddr(from, G0, from);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3873
    // F58, F60, F62 can be clobbered
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3874
    __ ldf(FloatRegisterImpl::D, from, 0, F58);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3875
    __ ldf(FloatRegisterImpl::D, from, 8, F60);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3876
    __ ldf(FloatRegisterImpl::D, from, 16, F62);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3877
    __ faligndata(F58, F60, F58);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3878
    __ faligndata(F60, F62, F60);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3879
    __ movdtox(F58, L4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3880
    __ movdtox(F60, L5);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3881
    __ mov(G1, from);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3882
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3883
    __ BIND(L_transform_first_block);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3884
    __ xor3(L2,L4,G1);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3885
    __ movxtod(G1,F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3886
    __ xor3(L3,L5,G1);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3887
    __ movxtod(G1,F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3888
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3889
    // 128-bit original key size
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3890
    __ cmp_and_brx_short(keylen, 44, Assembler::equal, Assembler::pn, L_dec_first_block128);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3891
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3892
    // 192-bit original key size
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3893
    __ cmp_and_brx_short(keylen, 52, Assembler::equal, Assembler::pn, L_dec_first_block192);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3894
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3895
    __ aes_dround23(F54, F60, F62, F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3896
    __ aes_dround01(F52, F60, F62, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3897
    __ aes_dround23(F50, F56, F58, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3898
    __ aes_dround01(F48, F56, F58, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3899
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3900
    __ BIND(L_dec_first_block192);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3901
    __ aes_dround23(F46, F60, F62, F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3902
    __ aes_dround01(F44, F60, F62, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3903
    __ aes_dround23(F42, F56, F58, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3904
    __ aes_dround01(F40, F56, F58, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3905
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3906
    __ BIND(L_dec_first_block128);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3907
    for ( int i = 38;  i >= 6; i -= 8 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3908
      __ aes_dround23(as_FloatRegister(i), F60, F62, F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3909
      __ aes_dround01(as_FloatRegister(i-2), F60, F62, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3910
      if ( i != 6) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3911
        __ aes_dround23(as_FloatRegister(i-4), F56, F58, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3912
        __ aes_dround01(as_FloatRegister(i-6), F56, F58, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3913
      } else {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3914
        __ aes_dround23_l(as_FloatRegister(i-4), F56, F58, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3915
        __ aes_dround01_l(as_FloatRegister(i-6), F56, F58, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3916
      }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3917
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3918
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3919
    __ movxtod(L0,F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3920
    __ movxtod(L1,F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3921
    __ mov(L4,L0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3922
    __ mov(L5,L1);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3923
    __ fxor(FloatRegisterImpl::D, F56, F60, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3924
    __ fxor(FloatRegisterImpl::D, F58, F62, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3925
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3926
    // check for 8-byte alignment since dest byte array may have arbitrary alignment if offset mod 8 is non-zero
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3927
    __ andcc(to, 7, G1);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3928
    __ br(Assembler::notZero, true, Assembler::pn, L_store_misaligned_output_first_block);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3929
    __ delayed()->edge8n(to, G0, G2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3930
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3931
    // aligned case: store output into the destination array
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3932
    __ stf(FloatRegisterImpl::D, F60, to, 0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3933
    __ stf(FloatRegisterImpl::D, F62, to, 8);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3934
    __ ba_short(L_check_decrypt_end);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3935
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3936
    __ BIND(L_store_misaligned_output_first_block);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3937
    __ add(to, 8, G3);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3938
    __ mov(8, G4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3939
    __ sub(G4, G1, G4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3940
    __ alignaddr(G4, G0, G4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3941
    __ faligndata(F60, F60, F60);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3942
    __ faligndata(F62, F62, F62);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3943
    __ mov(to, G1);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3944
    __ and3(to, -8, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3945
    __ and3(G3, -8, G3);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3946
    __ stpartialf(to, G2, F60, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3947
    __ stpartialf(G3, G2, F62, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3948
    __ add(to, 8, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3949
    __ add(G3, 8, G3);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3950
    __ orn(G0, G2, G2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3951
    __ stpartialf(to, G2, F60, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3952
    __ stpartialf(G3, G2, F62, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3953
    __ mov(G1, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3954
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3955
    __ BIND(L_check_decrypt_end);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3956
    __ add(from, 16, from);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3957
    __ add(to, 16, to);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3958
    __ subcc(len_reg, 16, len_reg);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3959
    __ br(Assembler::equal, false, Assembler::pt, L_cbcdec_end);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3960
    __ delayed()->nop();
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3961
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3962
    // 256-bit original key size
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3963
    __ cmp_and_brx_short(keylen, 60, Assembler::equal, Assembler::pn, L_dec_next2_blocks256);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3964
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3965
    // 192-bit original key size
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3966
    __ cmp_and_brx_short(keylen, 52, Assembler::equal, Assembler::pn, L_dec_next2_blocks192);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3967
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3968
    __ align(OptoLoopAlignment);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3969
    __ BIND(L_dec_next2_blocks128);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3970
    __ nop();
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3971
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3972
    // check for 8-byte alignment since source byte array may have an arbitrary alignment if offset mod 8 is non-zero
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3973
    __ andcc(from, 7, G0);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3974
    __ br(Assembler::notZero, true, Assembler::pn, L_load_misaligned_next2_blocks128);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3975
    __ delayed()->mov(from, G1); // save original 'from' address before alignaddr
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3976
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3977
    // aligned case: load input into G4, G5, L4 and L5
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3978
    __ ldx(from,0,G4);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  3979
    __ ldx(from,8,G5);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3980
    __ ldx(from,16,L4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3981
    __ ldx(from,24,L5);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3982
    __ ba_short(L_transform_next2_blocks128);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3983
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3984
    __ BIND(L_load_misaligned_next2_blocks128);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3985
    __ alignaddr(from, G0, from);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3986
    // F40, F42, F58, F60, F62 can be clobbered
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3987
    __ ldf(FloatRegisterImpl::D, from, 0, F40);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3988
    __ ldf(FloatRegisterImpl::D, from, 8, F42);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3989
    __ ldf(FloatRegisterImpl::D, from, 16, F60);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3990
    __ ldf(FloatRegisterImpl::D, from, 24, F62);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3991
    __ ldf(FloatRegisterImpl::D, from, 32, F58);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3992
    __ faligndata(F40, F42, F40);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3993
    __ faligndata(F42, F60, F42);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3994
    __ faligndata(F60, F62, F60);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3995
    __ faligndata(F62, F58, F62);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3996
    __ movdtox(F40, G4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3997
    __ movdtox(F42, G5);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3998
    __ movdtox(F60, L4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  3999
    __ movdtox(F62, L5);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4000
    __ mov(G1, from);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4001
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4002
    __ BIND(L_transform_next2_blocks128);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4003
    // F40:F42 used for first 16-bytes
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4004
    __ xor3(L2,G4,G1);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4005
    __ movxtod(G1,F40);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4006
    __ xor3(L3,G5,G1);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4007
    __ movxtod(G1,F42);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4008
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4009
    // F60:F62 used for next 16-bytes
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4010
    __ xor3(L2,L4,G1);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4011
    __ movxtod(G1,F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4012
    __ xor3(L3,L5,G1);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4013
    __ movxtod(G1,F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4014
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4015
    for ( int i = 38;  i >= 6; i -= 8 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4016
      __ aes_dround23(as_FloatRegister(i), F40, F42, F44);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4017
      __ aes_dround01(as_FloatRegister(i-2), F40, F42, F46);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4018
      __ aes_dround23(as_FloatRegister(i), F60, F62, F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4019
      __ aes_dround01(as_FloatRegister(i-2), F60, F62, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4020
      if (i != 6 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4021
        __ aes_dround23(as_FloatRegister(i-4), F46, F44, F42);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4022
        __ aes_dround01(as_FloatRegister(i-6), F46, F44, F40);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4023
        __ aes_dround23(as_FloatRegister(i-4), F56, F58, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4024
        __ aes_dround01(as_FloatRegister(i-6), F56, F58, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4025
      } else {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4026
        __ aes_dround23_l(as_FloatRegister(i-4), F46, F44, F42);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4027
        __ aes_dround01_l(as_FloatRegister(i-6), F46, F44, F40);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4028
        __ aes_dround23_l(as_FloatRegister(i-4), F56, F58, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4029
        __ aes_dround01_l(as_FloatRegister(i-6), F56, F58, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4030
      }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4031
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4032
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4033
    __ movxtod(L0,F46);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4034
    __ movxtod(L1,F44);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4035
    __ fxor(FloatRegisterImpl::D, F46, F40, F40);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4036
    __ fxor(FloatRegisterImpl::D, F44, F42, F42);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4037
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4038
    __ movxtod(G4,F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4039
    __ movxtod(G5,F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4040
    __ mov(L4,L0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4041
    __ mov(L5,L1);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4042
    __ fxor(FloatRegisterImpl::D, F56, F60, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4043
    __ fxor(FloatRegisterImpl::D, F58, F62, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4044
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4045
    // For mis-aligned store of 32 bytes of result we can do:
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4046
    // Circular right-shift all 4 FP registers so that 'head' and 'tail'
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4047
    // parts that need to be stored starting at mis-aligned address are in a FP reg
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4048
    // the other 3 FP regs can thus be stored using regular store
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4049
    // we then use the edge + partial-store mechanism to store the 'head' and 'tail' parts
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4050
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4051
    // check for 8-byte alignment since dest byte array may have arbitrary alignment if offset mod 8 is non-zero
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4052
    __ andcc(to, 7, G1);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4053
    __ br(Assembler::notZero, true, Assembler::pn, L_store_misaligned_output_next2_blocks128);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4054
    __ delayed()->edge8n(to, G0, G2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4055
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4056
    // aligned case: store output into the destination array
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4057
    __ stf(FloatRegisterImpl::D, F40, to, 0);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4058
    __ stf(FloatRegisterImpl::D, F42, to, 8);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4059
    __ stf(FloatRegisterImpl::D, F60, to, 16);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4060
    __ stf(FloatRegisterImpl::D, F62, to, 24);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4061
    __ ba_short(L_check_decrypt_loop_end128);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4062
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4063
    __ BIND(L_store_misaligned_output_next2_blocks128);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4064
    __ mov(8, G4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4065
    __ sub(G4, G1, G4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4066
    __ alignaddr(G4, G0, G4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4067
    __ faligndata(F40, F42, F56); // F56 can be clobbered
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4068
    __ faligndata(F42, F60, F42);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4069
    __ faligndata(F60, F62, F60);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4070
    __ faligndata(F62, F40, F40);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4071
    __ mov(to, G1);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4072
    __ and3(to, -8, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4073
    __ stpartialf(to, G2, F40, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4074
    __ stf(FloatRegisterImpl::D, F56, to, 8);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4075
    __ stf(FloatRegisterImpl::D, F42, to, 16);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4076
    __ stf(FloatRegisterImpl::D, F60, to, 24);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4077
    __ add(to, 32, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4078
    __ orn(G0, G2, G2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4079
    __ stpartialf(to, G2, F40, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4080
    __ mov(G1, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4081
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4082
    __ BIND(L_check_decrypt_loop_end128);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4083
    __ add(from, 32, from);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4084
    __ add(to, 32, to);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4085
    __ subcc(len_reg, 32, len_reg);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4086
    __ br(Assembler::notEqual, false, Assembler::pt, L_dec_next2_blocks128);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4087
    __ delayed()->nop();
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4088
    __ ba_short(L_cbcdec_end);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4089
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4090
    __ align(OptoLoopAlignment);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4091
    __ BIND(L_dec_next2_blocks192);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4092
    __ nop();
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4093
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4094
    // check for 8-byte alignment since source byte array may have an arbitrary alignment if offset mod 8 is non-zero
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4095
    __ andcc(from, 7, G0);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4096
    __ br(Assembler::notZero, true, Assembler::pn, L_load_misaligned_next2_blocks192);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4097
    __ delayed()->mov(from, G1); // save original 'from' address before alignaddr
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4098
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4099
    // aligned case: load input into G4, G5, L4 and L5
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4100
    __ ldx(from,0,G4);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4101
    __ ldx(from,8,G5);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4102
    __ ldx(from,16,L4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4103
    __ ldx(from,24,L5);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4104
    __ ba_short(L_transform_next2_blocks192);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4105
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4106
    __ BIND(L_load_misaligned_next2_blocks192);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4107
    __ alignaddr(from, G0, from);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4108
    // F48, F50, F52, F60, F62 can be clobbered
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4109
    __ ldf(FloatRegisterImpl::D, from, 0, F48);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4110
    __ ldf(FloatRegisterImpl::D, from, 8, F50);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4111
    __ ldf(FloatRegisterImpl::D, from, 16, F60);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4112
    __ ldf(FloatRegisterImpl::D, from, 24, F62);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4113
    __ ldf(FloatRegisterImpl::D, from, 32, F52);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4114
    __ faligndata(F48, F50, F48);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4115
    __ faligndata(F50, F60, F50);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4116
    __ faligndata(F60, F62, F60);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4117
    __ faligndata(F62, F52, F62);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4118
    __ movdtox(F48, G4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4119
    __ movdtox(F50, G5);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4120
    __ movdtox(F60, L4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4121
    __ movdtox(F62, L5);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4122
    __ mov(G1, from);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4123
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4124
    __ BIND(L_transform_next2_blocks192);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4125
    // F48:F50 used for first 16-bytes
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4126
    __ xor3(L2,G4,G1);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4127
    __ movxtod(G1,F48);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4128
    __ xor3(L3,G5,G1);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4129
    __ movxtod(G1,F50);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4130
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4131
    // F60:F62 used for next 16-bytes
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4132
    __ xor3(L2,L4,G1);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4133
    __ movxtod(G1,F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4134
    __ xor3(L3,L5,G1);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4135
    __ movxtod(G1,F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4136
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4137
    for ( int i = 46;  i >= 6; i -= 8 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4138
      __ aes_dround23(as_FloatRegister(i), F48, F50, F52);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4139
      __ aes_dround01(as_FloatRegister(i-2), F48, F50, F54);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4140
      __ aes_dround23(as_FloatRegister(i), F60, F62, F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4141
      __ aes_dround01(as_FloatRegister(i-2), F60, F62, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4142
      if (i != 6 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4143
        __ aes_dround23(as_FloatRegister(i-4), F54, F52, F50);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4144
        __ aes_dround01(as_FloatRegister(i-6), F54, F52, F48);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4145
        __ aes_dround23(as_FloatRegister(i-4), F56, F58, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4146
        __ aes_dround01(as_FloatRegister(i-6), F56, F58, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4147
      } else {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4148
        __ aes_dround23_l(as_FloatRegister(i-4), F54, F52, F50);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4149
        __ aes_dround01_l(as_FloatRegister(i-6), F54, F52, F48);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4150
        __ aes_dround23_l(as_FloatRegister(i-4), F56, F58, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4151
        __ aes_dround01_l(as_FloatRegister(i-6), F56, F58, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4152
      }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4153
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4154
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4155
    __ movxtod(L0,F54);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4156
    __ movxtod(L1,F52);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4157
    __ fxor(FloatRegisterImpl::D, F54, F48, F48);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4158
    __ fxor(FloatRegisterImpl::D, F52, F50, F50);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4159
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4160
    __ movxtod(G4,F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4161
    __ movxtod(G5,F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4162
    __ mov(L4,L0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4163
    __ mov(L5,L1);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4164
    __ fxor(FloatRegisterImpl::D, F56, F60, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4165
    __ fxor(FloatRegisterImpl::D, F58, F62, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4166
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4167
    // check for 8-byte alignment since dest byte array may have arbitrary alignment if offset mod 8 is non-zero
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4168
    __ andcc(to, 7, G1);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4169
    __ br(Assembler::notZero, true, Assembler::pn, L_store_misaligned_output_next2_blocks192);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4170
    __ delayed()->edge8n(to, G0, G2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4171
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4172
    // aligned case: store output into the destination array
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4173
    __ stf(FloatRegisterImpl::D, F48, to, 0);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4174
    __ stf(FloatRegisterImpl::D, F50, to, 8);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4175
    __ stf(FloatRegisterImpl::D, F60, to, 16);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4176
    __ stf(FloatRegisterImpl::D, F62, to, 24);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4177
    __ ba_short(L_check_decrypt_loop_end192);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4178
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4179
    __ BIND(L_store_misaligned_output_next2_blocks192);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4180
    __ mov(8, G4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4181
    __ sub(G4, G1, G4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4182
    __ alignaddr(G4, G0, G4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4183
    __ faligndata(F48, F50, F56); // F56 can be clobbered
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4184
    __ faligndata(F50, F60, F50);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4185
    __ faligndata(F60, F62, F60);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4186
    __ faligndata(F62, F48, F48);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4187
    __ mov(to, G1);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4188
    __ and3(to, -8, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4189
    __ stpartialf(to, G2, F48, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4190
    __ stf(FloatRegisterImpl::D, F56, to, 8);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4191
    __ stf(FloatRegisterImpl::D, F50, to, 16);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4192
    __ stf(FloatRegisterImpl::D, F60, to, 24);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4193
    __ add(to, 32, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4194
    __ orn(G0, G2, G2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4195
    __ stpartialf(to, G2, F48, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4196
    __ mov(G1, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4197
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4198
    __ BIND(L_check_decrypt_loop_end192);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4199
    __ add(from, 32, from);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4200
    __ add(to, 32, to);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4201
    __ subcc(len_reg, 32, len_reg);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4202
    __ br(Assembler::notEqual, false, Assembler::pt, L_dec_next2_blocks192);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4203
    __ delayed()->nop();
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4204
    __ ba_short(L_cbcdec_end);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4205
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4206
    __ align(OptoLoopAlignment);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4207
    __ BIND(L_dec_next2_blocks256);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4208
    __ nop();
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4209
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4210
    // check for 8-byte alignment since source byte array may have an arbitrary alignment if offset mod 8 is non-zero
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4211
    __ andcc(from, 7, G0);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4212
    __ br(Assembler::notZero, true, Assembler::pn, L_load_misaligned_next2_blocks256);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4213
    __ delayed()->mov(from, G1); // save original 'from' address before alignaddr
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4214
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4215
    // aligned case: load input into G4, G5, L4 and L5
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4216
    __ ldx(from,0,G4);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4217
    __ ldx(from,8,G5);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4218
    __ ldx(from,16,L4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4219
    __ ldx(from,24,L5);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4220
    __ ba_short(L_transform_next2_blocks256);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4221
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4222
    __ BIND(L_load_misaligned_next2_blocks256);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4223
    __ alignaddr(from, G0, from);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4224
    // F0, F2, F4, F60, F62 can be clobbered
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4225
    __ ldf(FloatRegisterImpl::D, from, 0, F0);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4226
    __ ldf(FloatRegisterImpl::D, from, 8, F2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4227
    __ ldf(FloatRegisterImpl::D, from, 16, F60);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4228
    __ ldf(FloatRegisterImpl::D, from, 24, F62);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4229
    __ ldf(FloatRegisterImpl::D, from, 32, F4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4230
    __ faligndata(F0, F2, F0);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4231
    __ faligndata(F2, F60, F2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4232
    __ faligndata(F60, F62, F60);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4233
    __ faligndata(F62, F4, F62);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4234
    __ movdtox(F0, G4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4235
    __ movdtox(F2, G5);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4236
    __ movdtox(F60, L4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4237
    __ movdtox(F62, L5);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4238
    __ mov(G1, from);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4239
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4240
    __ BIND(L_transform_next2_blocks256);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4241
    // F0:F2 used for first 16-bytes
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4242
    __ xor3(L2,G4,G1);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4243
    __ movxtod(G1,F0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4244
    __ xor3(L3,G5,G1);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4245
    __ movxtod(G1,F2);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4246
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4247
    // F60:F62 used for next 16-bytes
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4248
    __ xor3(L2,L4,G1);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4249
    __ movxtod(G1,F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4250
    __ xor3(L3,L5,G1);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4251
    __ movxtod(G1,F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4252
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4253
    __ aes_dround23(F54, F0, F2, F4);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4254
    __ aes_dround01(F52, F0, F2, F6);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4255
    __ aes_dround23(F54, F60, F62, F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4256
    __ aes_dround01(F52, F60, F62, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4257
    __ aes_dround23(F50, F6, F4, F2);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4258
    __ aes_dround01(F48, F6, F4, F0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4259
    __ aes_dround23(F50, F56, F58, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4260
    __ aes_dround01(F48, F56, F58, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4261
    // save F48:F54 in temp registers
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4262
    __ movdtox(F54,G2);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4263
    __ movdtox(F52,G3);
53591
bf4c38b9afaf 8209951: Problematic sparc intrinsic: com.sun.crypto.provider.CipherBlockChaining
kevinw
parents: 50728
diff changeset
  4264
    __ movdtox(F50,L6);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4265
    __ movdtox(F48,G1);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4266
    for ( int i = 46;  i >= 14; i -= 8 ) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4267
      __ aes_dround23(as_FloatRegister(i), F0, F2, F4);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4268
      __ aes_dround01(as_FloatRegister(i-2), F0, F2, F6);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4269
      __ aes_dround23(as_FloatRegister(i), F60, F62, F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4270
      __ aes_dround01(as_FloatRegister(i-2), F60, F62, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4271
      __ aes_dround23(as_FloatRegister(i-4), F6, F4, F2);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4272
      __ aes_dround01(as_FloatRegister(i-6), F6, F4, F0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4273
      __ aes_dround23(as_FloatRegister(i-4), F56, F58, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4274
      __ aes_dround01(as_FloatRegister(i-6), F56, F58, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4275
    }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4276
    // init F48:F54 with F0:F6 values (original key)
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4277
    __ ldf(FloatRegisterImpl::D, original_key, 0, F48);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4278
    __ ldf(FloatRegisterImpl::D, original_key, 8, F50);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4279
    __ ldf(FloatRegisterImpl::D, original_key, 16, F52);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4280
    __ ldf(FloatRegisterImpl::D, original_key, 24, F54);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4281
    __ aes_dround23(F54, F0, F2, F4);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4282
    __ aes_dround01(F52, F0, F2, F6);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4283
    __ aes_dround23(F54, F60, F62, F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4284
    __ aes_dround01(F52, F60, F62, F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4285
    __ aes_dround23_l(F50, F6, F4, F2);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4286
    __ aes_dround01_l(F48, F6, F4, F0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4287
    __ aes_dround23_l(F50, F56, F58, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4288
    __ aes_dround01_l(F48, F56, F58, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4289
    // re-init F48:F54 with their original values
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4290
    __ movxtod(G2,F54);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4291
    __ movxtod(G3,F52);
53591
bf4c38b9afaf 8209951: Problematic sparc intrinsic: com.sun.crypto.provider.CipherBlockChaining
kevinw
parents: 50728
diff changeset
  4292
    __ movxtod(L6,F50);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4293
    __ movxtod(G1,F48);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4294
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4295
    __ movxtod(L0,F6);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4296
    __ movxtod(L1,F4);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4297
    __ fxor(FloatRegisterImpl::D, F6, F0, F0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4298
    __ fxor(FloatRegisterImpl::D, F4, F2, F2);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4299
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4300
    __ movxtod(G4,F56);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4301
    __ movxtod(G5,F58);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4302
    __ mov(L4,L0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4303
    __ mov(L5,L1);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4304
    __ fxor(FloatRegisterImpl::D, F56, F60, F60);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4305
    __ fxor(FloatRegisterImpl::D, F58, F62, F62);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4306
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4307
    // check for 8-byte alignment since dest byte array may have arbitrary alignment if offset mod 8 is non-zero
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4308
    __ andcc(to, 7, G1);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4309
    __ br(Assembler::notZero, true, Assembler::pn, L_store_misaligned_output_next2_blocks256);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4310
    __ delayed()->edge8n(to, G0, G2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4311
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4312
    // aligned case: store output into the destination array
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4313
    __ stf(FloatRegisterImpl::D, F0, to, 0);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4314
    __ stf(FloatRegisterImpl::D, F2, to, 8);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4315
    __ stf(FloatRegisterImpl::D, F60, to, 16);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4316
    __ stf(FloatRegisterImpl::D, F62, to, 24);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4317
    __ ba_short(L_check_decrypt_loop_end256);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4318
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4319
    __ BIND(L_store_misaligned_output_next2_blocks256);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4320
    __ mov(8, G4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4321
    __ sub(G4, G1, G4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4322
    __ alignaddr(G4, G0, G4);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4323
    __ faligndata(F0, F2, F56); // F56 can be clobbered
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4324
    __ faligndata(F2, F60, F2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4325
    __ faligndata(F60, F62, F60);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4326
    __ faligndata(F62, F0, F0);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4327
    __ mov(to, G1);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4328
    __ and3(to, -8, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4329
    __ stpartialf(to, G2, F0, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4330
    __ stf(FloatRegisterImpl::D, F56, to, 8);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4331
    __ stf(FloatRegisterImpl::D, F2, to, 16);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4332
    __ stf(FloatRegisterImpl::D, F60, to, 24);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4333
    __ add(to, 32, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4334
    __ orn(G0, G2, G2);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4335
    __ stpartialf(to, G2, F0, Assembler::ASI_PST8_PRIMARY);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4336
    __ mov(G1, to);
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4337
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4338
    __ BIND(L_check_decrypt_loop_end256);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4339
    __ add(from, 32, from);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4340
    __ add(to, 32, to);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4341
    __ subcc(len_reg, 32, len_reg);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4342
    __ br(Assembler::notEqual, false, Assembler::pt, L_dec_next2_blocks256);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4343
    __ delayed()->nop();
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4344
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4345
    __ BIND(L_cbcdec_end);
24328
bddefb356fba 8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents: 24326
diff changeset
  4346
    // re-init intial vector for next block, 8-byte alignment is guaranteed
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4347
    __ stx(L0, rvec, 0);
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4348
    __ stx(L1, rvec, 8);
24488
6872367f4335 8043274: Test compiler/7184394/TestAESMain.java gets NPE on solaris
kvn
parents: 24328
diff changeset
  4349
    __ mov(L7, I0);
6872367f4335 8043274: Test compiler/7184394/TestAESMain.java gets NPE on solaris
kvn
parents: 24328
diff changeset
  4350
    __ ret();
6872367f4335 8043274: Test compiler/7184394/TestAESMain.java gets NPE on solaris
kvn
parents: 24328
diff changeset
  4351
    __ delayed()->restore();
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4352
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4353
    return start;
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4354
  }
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  4355
24953
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4356
  address generate_sha1_implCompress(bool multi_block, const char *name) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4357
    __ align(CodeEntryAlignment);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4358
    StubCodeMark mark(this, "StubRoutines", name);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4359
    address start = __ pc();
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4360
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4361
    Label L_sha1_loop, L_sha1_unaligned_input, L_sha1_unaligned_input_loop;
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4362
    int i;
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4363
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4364
    Register buf   = O0; // byte[] source+offset
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4365
    Register state = O1; // int[]  SHA.state
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4366
    Register ofs   = O2; // int    offset
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4367
    Register limit = O3; // int    limit
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4368
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4369
    // load state into F0-F4
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4370
    for (i = 0; i < 5; i++) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4371
      __ ldf(FloatRegisterImpl::S, state, i*4, as_FloatRegister(i));
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4372
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4373
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4374
    __ andcc(buf, 7, G0);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4375
    __ br(Assembler::notZero, false, Assembler::pn, L_sha1_unaligned_input);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4376
    __ delayed()->nop();
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4377
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4378
    __ BIND(L_sha1_loop);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4379
    // load buf into F8-F22
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4380
    for (i = 0; i < 8; i++) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4381
      __ ldf(FloatRegisterImpl::D, buf, i*8, as_FloatRegister(i*2 + 8));
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4382
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4383
    __ sha1();
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4384
    if (multi_block) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4385
      __ add(ofs, 64, ofs);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4386
      __ add(buf, 64, buf);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4387
      __ cmp_and_brx_short(ofs, limit, Assembler::lessEqual, Assembler::pt, L_sha1_loop);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4388
      __ mov(ofs, O0); // to be returned
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4389
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4390
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4391
    // store F0-F4 into state and return
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4392
    for (i = 0; i < 4; i++) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4393
      __ stf(FloatRegisterImpl::S, as_FloatRegister(i), state, i*4);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4394
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4395
    __ retl();
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4396
    __ delayed()->stf(FloatRegisterImpl::S, F4, state, 0x10);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4397
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4398
    __ BIND(L_sha1_unaligned_input);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4399
    __ alignaddr(buf, G0, buf);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4400
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4401
    __ BIND(L_sha1_unaligned_input_loop);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4402
    // load buf into F8-F22
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4403
    for (i = 0; i < 9; i++) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4404
      __ ldf(FloatRegisterImpl::D, buf, i*8, as_FloatRegister(i*2 + 8));
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4405
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4406
    for (i = 0; i < 8; i++) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4407
      __ faligndata(as_FloatRegister(i*2 + 8), as_FloatRegister(i*2 + 10), as_FloatRegister(i*2 + 8));
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4408
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4409
    __ sha1();
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4410
    if (multi_block) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4411
      __ add(ofs, 64, ofs);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4412
      __ add(buf, 64, buf);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4413
      __ cmp_and_brx_short(ofs, limit, Assembler::lessEqual, Assembler::pt, L_sha1_unaligned_input_loop);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4414
      __ mov(ofs, O0); // to be returned
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4415
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4416
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4417
    // store F0-F4 into state and return
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4418
    for (i = 0; i < 4; i++) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4419
      __ stf(FloatRegisterImpl::S, as_FloatRegister(i), state, i*4);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4420
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4421
    __ retl();
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4422
    __ delayed()->stf(FloatRegisterImpl::S, F4, state, 0x10);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4423
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4424
    return start;
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4425
  }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4426
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4427
  address generate_sha256_implCompress(bool multi_block, const char *name) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4428
    __ align(CodeEntryAlignment);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4429
    StubCodeMark mark(this, "StubRoutines", name);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4430
    address start = __ pc();
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4431
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4432
    Label L_sha256_loop, L_sha256_unaligned_input, L_sha256_unaligned_input_loop;
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4433
    int i;
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4434
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4435
    Register buf   = O0; // byte[] source+offset
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4436
    Register state = O1; // int[]  SHA2.state
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4437
    Register ofs   = O2; // int    offset
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4438
    Register limit = O3; // int    limit
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4439
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4440
    // load state into F0-F7
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4441
    for (i = 0; i < 8; i++) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4442
      __ ldf(FloatRegisterImpl::S, state, i*4, as_FloatRegister(i));
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4443
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4444
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4445
    __ andcc(buf, 7, G0);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4446
    __ br(Assembler::notZero, false, Assembler::pn, L_sha256_unaligned_input);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4447
    __ delayed()->nop();
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4448
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4449
    __ BIND(L_sha256_loop);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4450
    // load buf into F8-F22
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4451
    for (i = 0; i < 8; i++) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4452
      __ ldf(FloatRegisterImpl::D, buf, i*8, as_FloatRegister(i*2 + 8));
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4453
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4454
    __ sha256();
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4455
    if (multi_block) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4456
      __ add(ofs, 64, ofs);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4457
      __ add(buf, 64, buf);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4458
      __ cmp_and_brx_short(ofs, limit, Assembler::lessEqual, Assembler::pt, L_sha256_loop);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4459
      __ mov(ofs, O0); // to be returned
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4460
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4461
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4462
    // store F0-F7 into state and return
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4463
    for (i = 0; i < 7; i++) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4464
      __ stf(FloatRegisterImpl::S, as_FloatRegister(i), state, i*4);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4465
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4466
    __ retl();
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4467
    __ delayed()->stf(FloatRegisterImpl::S, F7, state, 0x1c);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4468
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4469
    __ BIND(L_sha256_unaligned_input);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4470
    __ alignaddr(buf, G0, buf);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4471
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4472
    __ BIND(L_sha256_unaligned_input_loop);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4473
    // load buf into F8-F22
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4474
    for (i = 0; i < 9; i++) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4475
      __ ldf(FloatRegisterImpl::D, buf, i*8, as_FloatRegister(i*2 + 8));
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4476
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4477
    for (i = 0; i < 8; i++) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4478
      __ faligndata(as_FloatRegister(i*2 + 8), as_FloatRegister(i*2 + 10), as_FloatRegister(i*2 + 8));
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4479
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4480
    __ sha256();
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4481
    if (multi_block) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4482
      __ add(ofs, 64, ofs);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4483
      __ add(buf, 64, buf);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4484
      __ cmp_and_brx_short(ofs, limit, Assembler::lessEqual, Assembler::pt, L_sha256_unaligned_input_loop);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4485
      __ mov(ofs, O0); // to be returned
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4486
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4487
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4488
    // store F0-F7 into state and return
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4489
    for (i = 0; i < 7; i++) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4490
      __ stf(FloatRegisterImpl::S, as_FloatRegister(i), state, i*4);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4491
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4492
    __ retl();
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4493
    __ delayed()->stf(FloatRegisterImpl::S, F7, state, 0x1c);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4494
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4495
    return start;
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4496
  }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4497
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4498
  address generate_sha512_implCompress(bool multi_block, const char *name) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4499
    __ align(CodeEntryAlignment);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4500
    StubCodeMark mark(this, "StubRoutines", name);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4501
    address start = __ pc();
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4502
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4503
    Label L_sha512_loop, L_sha512_unaligned_input, L_sha512_unaligned_input_loop;
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4504
    int i;
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4505
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4506
    Register buf   = O0; // byte[] source+offset
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4507
    Register state = O1; // long[] SHA5.state
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4508
    Register ofs   = O2; // int    offset
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4509
    Register limit = O3; // int    limit
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4510
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4511
    // load state into F0-F14
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4512
    for (i = 0; i < 8; i++) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4513
      __ ldf(FloatRegisterImpl::D, state, i*8, as_FloatRegister(i*2));
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4514
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4515
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4516
    __ andcc(buf, 7, G0);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4517
    __ br(Assembler::notZero, false, Assembler::pn, L_sha512_unaligned_input);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4518
    __ delayed()->nop();
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4519
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4520
    __ BIND(L_sha512_loop);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4521
    // load buf into F16-F46
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4522
    for (i = 0; i < 16; i++) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4523
      __ ldf(FloatRegisterImpl::D, buf, i*8, as_FloatRegister(i*2 + 16));
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4524
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4525
    __ sha512();
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4526
    if (multi_block) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4527
      __ add(ofs, 128, ofs);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4528
      __ add(buf, 128, buf);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4529
      __ cmp_and_brx_short(ofs, limit, Assembler::lessEqual, Assembler::pt, L_sha512_loop);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4530
      __ mov(ofs, O0); // to be returned
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4531
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4532
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4533
    // store F0-F14 into state and return
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4534
    for (i = 0; i < 7; i++) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4535
      __ stf(FloatRegisterImpl::D, as_FloatRegister(i*2), state, i*8);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4536
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4537
    __ retl();
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4538
    __ delayed()->stf(FloatRegisterImpl::D, F14, state, 0x38);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4539
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4540
    __ BIND(L_sha512_unaligned_input);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4541
    __ alignaddr(buf, G0, buf);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4542
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4543
    __ BIND(L_sha512_unaligned_input_loop);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4544
    // load buf into F16-F46
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4545
    for (i = 0; i < 17; i++) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4546
      __ ldf(FloatRegisterImpl::D, buf, i*8, as_FloatRegister(i*2 + 16));
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4547
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4548
    for (i = 0; i < 16; i++) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4549
      __ faligndata(as_FloatRegister(i*2 + 16), as_FloatRegister(i*2 + 18), as_FloatRegister(i*2 + 16));
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4550
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4551
    __ sha512();
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4552
    if (multi_block) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4553
      __ add(ofs, 128, ofs);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4554
      __ add(buf, 128, buf);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4555
      __ cmp_and_brx_short(ofs, limit, Assembler::lessEqual, Assembler::pt, L_sha512_unaligned_input_loop);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4556
      __ mov(ofs, O0); // to be returned
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4557
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4558
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4559
    // store F0-F14 into state and return
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4560
    for (i = 0; i < 7; i++) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4561
      __ stf(FloatRegisterImpl::D, as_FloatRegister(i*2), state, i*8);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4562
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4563
    __ retl();
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4564
    __ delayed()->stf(FloatRegisterImpl::D, F14, state, 0x38);
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4565
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4566
    return start;
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4567
  }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  4568
31404
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4569
  /* Single and multi-block ghash operations */
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4570
  address generate_ghash_processBlocks() {
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4571
      __ align(CodeEntryAlignment);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4572
      Label L_ghash_loop, L_aligned, L_main;
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4573
      StubCodeMark mark(this, "StubRoutines", "ghash_processBlocks");
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4574
      address start = __ pc();
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4575
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4576
      Register state = I0;
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4577
      Register subkeyH = I1;
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4578
      Register data = I2;
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4579
      Register len = I3;
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4580
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4581
      __ save_frame(0);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4582
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4583
      __ ldx(state, 0, O0);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4584
      __ ldx(state, 8, O1);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4585
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4586
      // Loop label for multiblock operations
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4587
      __ BIND(L_ghash_loop);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4588
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4589
      // Check if 'data' is unaligned
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4590
      __ andcc(data, 7, G1);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4591
      __ br(Assembler::zero, false, Assembler::pt, L_aligned);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4592
      __ delayed()->nop();
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4593
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4594
      Register left_shift = L1;
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4595
      Register right_shift = L2;
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4596
      Register data_ptr = L3;
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4597
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4598
      // Get left and right shift values in bits
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4599
      __ sll(G1, LogBitsPerByte, left_shift);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4600
      __ mov(64, right_shift);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4601
      __ sub(right_shift, left_shift, right_shift);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4602
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4603
      // Align to read 'data'
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4604
      __ sub(data, G1, data_ptr);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4605
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4606
      // Load first 8 bytes of 'data'
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4607
      __ ldx(data_ptr, 0, O4);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4608
      __ sllx(O4, left_shift, O4);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4609
      __ ldx(data_ptr, 8, O5);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4610
      __ srlx(O5, right_shift, G4);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4611
      __ bset(G4, O4);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4612
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4613
      // Load second 8 bytes of 'data'
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4614
      __ sllx(O5, left_shift, O5);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4615
      __ ldx(data_ptr, 16, G4);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4616
      __ srlx(G4, right_shift, G4);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4617
      __ ba(L_main);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4618
      __ delayed()->bset(G4, O5);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4619
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4620
      // If 'data' is aligned, load normally
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4621
      __ BIND(L_aligned);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4622
      __ ldx(data, 0, O4);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4623
      __ ldx(data, 8, O5);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4624
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4625
      __ BIND(L_main);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4626
      __ ldx(subkeyH, 0, O2);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4627
      __ ldx(subkeyH, 8, O3);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4628
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4629
      __ xor3(O0, O4, O0);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4630
      __ xor3(O1, O5, O1);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4631
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4632
      __ xmulxhi(O0, O3, G3);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4633
      __ xmulx(O0, O2, O5);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4634
      __ xmulxhi(O1, O2, G4);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4635
      __ xmulxhi(O1, O3, G5);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4636
      __ xmulx(O0, O3, G1);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4637
      __ xmulx(O1, O3, G2);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4638
      __ xmulx(O1, O2, O3);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4639
      __ xmulxhi(O0, O2, O4);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4640
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4641
      __ mov(0xE1, O0);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4642
      __ sllx(O0, 56, O0);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4643
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4644
      __ xor3(O5, G3, O5);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4645
      __ xor3(O5, G4, O5);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4646
      __ xor3(G5, G1, G1);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4647
      __ xor3(G1, O3, G1);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4648
      __ srlx(G2, 63, O1);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4649
      __ srlx(G1, 63, G3);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4650
      __ sllx(G2, 63, O3);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4651
      __ sllx(G2, 58, O2);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4652
      __ xor3(O3, O2, O2);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4653
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4654
      __ sllx(G1, 1, G1);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4655
      __ or3(G1, O1, G1);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4656
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4657
      __ xor3(G1, O2, G1);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4658
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4659
      __ sllx(G2, 1, G2);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4660
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4661
      __ xmulxhi(G1, O0, O1);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4662
      __ xmulx(G1, O0, O2);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4663
      __ xmulxhi(G2, O0, O3);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4664
      __ xmulx(G2, O0, G1);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4665
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4666
      __ xor3(O4, O1, O4);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4667
      __ xor3(O5, O2, O5);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4668
      __ xor3(O5, O3, O5);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4669
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4670
      __ sllx(O4, 1, O2);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4671
      __ srlx(O5, 63, O3);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4672
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4673
      __ or3(O2, O3, O0);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4674
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4675
      __ sllx(O5, 1, O1);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4676
      __ srlx(G1, 63, O2);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4677
      __ or3(O1, O2, O1);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4678
      __ xor3(O1, G3, O1);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4679
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4680
      __ deccc(len);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4681
      __ br(Assembler::notZero, true, Assembler::pt, L_ghash_loop);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4682
      __ delayed()->add(data, 16, data);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4683
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4684
      __ stx(O0, I0, 0);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4685
      __ stx(O1, I0, 8);
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4686
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4687
      __ ret();
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4688
      __ delayed()->restore();
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4689
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4690
      return start;
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4691
  }
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  4692
31515
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4693
  /**
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4694
   *  Arguments:
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4695
   *
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4696
   * Inputs:
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4697
   *   O0   - int   crc
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4698
   *   O1   - byte* buf
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4699
   *   O2   - int   len
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4700
   *   O3   - int*  table
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4701
   *
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4702
   * Output:
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4703
   *   O0   - int crc result
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4704
   */
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4705
  address generate_updateBytesCRC32C() {
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4706
    assert(UseCRC32CIntrinsics, "need CRC32C instruction");
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4707
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4708
    __ align(CodeEntryAlignment);
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4709
    StubCodeMark mark(this, "StubRoutines", "updateBytesCRC32C");
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4710
    address start = __ pc();
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4711
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4712
    const Register crc   = O0;  // crc
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4713
    const Register buf   = O1;  // source java byte array address
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4714
    const Register len   = O2;  // number of bytes
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4715
    const Register table = O3;  // byteTable
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4716
38237
d972e3a2df53 8155162: java.util.zip.CRC32C Interpreter/C1 intrinsics support on SPARC
kvn
parents: 37466
diff changeset
  4717
    __ kernel_crc32c(crc, buf, len, table);
d972e3a2df53 8155162: java.util.zip.CRC32C Interpreter/C1 intrinsics support on SPARC
kvn
parents: 37466
diff changeset
  4718
31515
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4719
    __ retl();
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4720
    __ delayed()->nop();
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4721
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4722
    return start;
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4723
  }
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
  4724
32581
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4725
#define ADLER32_NUM_TEMPS 16
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4726
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4727
  /**
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4728
   *  Arguments:
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4729
   *
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4730
   * Inputs:
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4731
   *   O0   - int   adler
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4732
   *   O1   - byte* buff
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4733
   *   O2   - int   len
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4734
   *
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4735
   * Output:
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4736
   *   O0   - int adler result
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4737
   */
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4738
  address generate_updateBytesAdler32() {
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4739
    __ align(CodeEntryAlignment);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4740
    StubCodeMark mark(this, "StubRoutines", "updateBytesAdler32");
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4741
    address start = __ pc();
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4742
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4743
    Label L_cleanup_loop, L_cleanup_loop_check;
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4744
    Label L_main_loop_check, L_main_loop, L_inner_loop, L_inner_loop_check;
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4745
    Label L_nmax_check_done;
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4746
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4747
    // Aliases
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4748
    Register s1     = O0;
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4749
    Register s2     = O3;
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4750
    Register buff   = O1;
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4751
    Register len    = O2;
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4752
    Register temp[ADLER32_NUM_TEMPS] = {L0, L1, L2, L3, L4, L5, L6, L7, I0, I1, I2, I3, I4, I5, G3, I7};
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4753
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4754
    // Max number of bytes we can process before having to take the mod
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4755
    // 0x15B0 is 5552 in decimal, the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4756
    unsigned long NMAX = 0x15B0;
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4757
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4758
    // Zero-out the upper bits of len
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4759
    __ clruwu(len);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4760
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4761
    // Create the mask 0xFFFF
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4762
    __ set64(0x00FFFF, O4, O5); // O5 is the temp register
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4763
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4764
    // s1 is initialized to the lower 16 bits of adler
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4765
    // s2 is initialized to the upper 16 bits of adler
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4766
    __ srlx(O0, 16, O5); // adler >> 16
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4767
    __ and3(O0, O4, s1); // s1  = (adler & 0xFFFF)
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4768
    __ and3(O5, O4, s2); // s2  = ((adler >> 16) & 0xFFFF)
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4769
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4770
    // The pipelined loop needs at least 16 elements for 1 iteration
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4771
    // It does check this, but it is more effective to skip to the cleanup loop
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4772
    // Setup the constant for cutoff checking
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4773
    __ mov(15, O4);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4774
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4775
    // Check if we are above the cutoff, if not go to the cleanup loop immediately
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4776
    __ cmp_and_br_short(len, O4, Assembler::lessEqualUnsigned, Assembler::pt, L_cleanup_loop_check);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4777
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4778
    // Free up some registers for our use
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4779
    for (int i = 0; i < ADLER32_NUM_TEMPS; i++) {
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4780
      __ movxtod(temp[i], as_FloatRegister(2*i));
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4781
    }
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4782
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4783
    // Loop maintenance stuff is done at the end of the loop, so skip to there
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4784
    __ ba_short(L_main_loop_check);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4785
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4786
    __ BIND(L_main_loop);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4787
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4788
    // Prologue for inner loop
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4789
    __ ldub(buff, 0, L0);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4790
    __ dec(O5);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4791
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4792
    for (int i = 1; i < 8; i++) {
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4793
      __ ldub(buff, i, temp[i]);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4794
    }
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4795
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4796
    __ inc(buff, 8);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4797
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4798
    // Inner loop processes 16 elements at a time, might never execute if only 16 elements
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4799
    // to be processed by the outter loop
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4800
    __ ba_short(L_inner_loop_check);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4801
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4802
    __ BIND(L_inner_loop);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4803
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4804
    for (int i = 0; i < 8; i++) {
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4805
      __ ldub(buff, (2*i), temp[(8+(2*i)) % ADLER32_NUM_TEMPS]);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4806
      __ add(s1, temp[i], s1);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4807
      __ ldub(buff, (2*i)+1, temp[(8+(2*i)+1) % ADLER32_NUM_TEMPS]);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4808
      __ add(s2, s1, s2);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4809
    }
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4810
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4811
    // Original temp 0-7 used and new loads to temp 0-7 issued
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4812
    // temp 8-15 ready to be consumed
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4813
    __ add(s1, I0, s1);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4814
    __ dec(O5);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4815
    __ add(s2, s1, s2);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4816
    __ add(s1, I1, s1);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4817
    __ inc(buff, 16);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4818
    __ add(s2, s1, s2);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4819
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4820
    for (int i = 0; i < 6; i++) {
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4821
      __ add(s1, temp[10+i], s1);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4822
      __ add(s2, s1, s2);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4823
    }
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4824
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4825
    __ BIND(L_inner_loop_check);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4826
    __ nop();
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4827
    __ cmp_and_br_short(O5, 0, Assembler::notEqual, Assembler::pt, L_inner_loop);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4828
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4829
    // Epilogue
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4830
    for (int i = 0; i < 4; i++) {
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4831
      __ ldub(buff, (2*i), temp[8+(2*i)]);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4832
      __ add(s1, temp[i], s1);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4833
      __ ldub(buff, (2*i)+1, temp[8+(2*i)+1]);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4834
      __ add(s2, s1, s2);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4835
    }
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4836
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4837
    __ add(s1, temp[4], s1);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4838
    __ inc(buff, 8);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4839
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4840
    for (int i = 0; i < 11; i++) {
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4841
      __ add(s2, s1, s2);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4842
      __ add(s1, temp[5+i], s1);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4843
    }
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4844
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4845
    __ add(s2, s1, s2);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4846
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4847
    // Take the mod for s1 and s2
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4848
    __ set64(0xFFF1, L0, L1);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4849
    __ udivx(s1, L0, L1);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4850
    __ udivx(s2, L0, L2);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4851
    __ mulx(L0, L1, L1);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4852
    __ mulx(L0, L2, L2);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4853
    __ sub(s1, L1, s1);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4854
    __ sub(s2, L2, s2);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4855
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4856
    // Make sure there is something left to process
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4857
    __ BIND(L_main_loop_check);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4858
    __ set64(NMAX, L0, L1);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4859
    // k = len < NMAX ? len : NMAX
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4860
    __ cmp_and_br_short(len, L0, Assembler::greaterEqualUnsigned, Assembler::pt, L_nmax_check_done);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4861
    __ andn(len, 0x0F, L0); // only loop a multiple of 16 times
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4862
    __ BIND(L_nmax_check_done);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4863
    __ mov(L0, O5);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4864
    __ sub(len, L0, len); // len -= k
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4865
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4866
    __ srlx(O5, 4, O5); // multiplies of 16
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4867
    __ cmp_and_br_short(O5, 0, Assembler::notEqual, Assembler::pt, L_main_loop);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4868
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4869
    // Restore anything we used, take the mod one last time, combine and return
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4870
    // Restore any registers we saved
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4871
    for (int i = 0; i < ADLER32_NUM_TEMPS; i++) {
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4872
      __ movdtox(as_FloatRegister(2*i), temp[i]);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4873
    }
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4874
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4875
    // There might be nothing left to process
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4876
    __ ba_short(L_cleanup_loop_check);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4877
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4878
    __ BIND(L_cleanup_loop);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4879
    __ ldub(buff, 0, O4); // load single byte form buffer
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4880
    __ inc(buff); // buff++
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4881
    __ add(s1, O4, s1); // s1 += *buff++;
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4882
    __ dec(len); // len--
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4883
    __ add(s1, s2, s2); // s2 += s1;
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4884
    __ BIND(L_cleanup_loop_check);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4885
    __ nop();
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4886
    __ cmp_and_br_short(len, 0, Assembler::notEqual, Assembler::pt, L_cleanup_loop);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4887
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4888
    // Take the mod one last time
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4889
    __ set64(0xFFF1, O1, O2);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4890
    __ udivx(s1, O1, O2);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4891
    __ udivx(s2, O1, O5);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4892
    __ mulx(O1, O2, O2);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4893
    __ mulx(O1, O5, O5);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4894
    __ sub(s1, O2, s1);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4895
    __ sub(s2, O5, s2);
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4896
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4897
    // Combine lower bits and higher bits
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4898
    __ sllx(s2, 16, s2); // s2 = s2 << 16
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4899
    __ or3(s1, s2, s1);  // adler = s2 | s1
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4900
    // Final return value is in O0
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4901
    __ retl();
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4902
    __ delayed()->nop();
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4903
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4904
    return start;
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4905
  }
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  4906
47561
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4907
  /**
34205
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4908
   *  Arguments:
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4909
   *
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4910
   * Inputs:
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4911
   *   O0   - int   crc
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4912
   *   O1   - byte* buf
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4913
   *   O2   - int   len
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4914
   *   O3   - int*  table
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4915
   *
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4916
   * Output:
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4917
   *   O0   - int crc result
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4918
   */
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4919
  address generate_updateBytesCRC32() {
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4920
    assert(UseCRC32Intrinsics, "need VIS3 instructions");
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4921
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4922
    __ align(CodeEntryAlignment);
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4923
    StubCodeMark mark(this, "StubRoutines", "updateBytesCRC32");
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4924
    address start = __ pc();
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4925
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4926
    const Register crc   = O0; // crc
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4927
    const Register buf   = O1; // source java byte array address
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4928
    const Register len   = O2; // length
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4929
    const Register table = O3; // crc_table address (reuse register)
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4930
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4931
    __ kernel_crc32(crc, buf, len, table);
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4932
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4933
    __ retl();
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4934
    __ delayed()->nop();
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4935
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4936
    return start;
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4937
  }
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  4938
47561
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4939
  /**
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4940
   * Arguments:
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4941
   *
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4942
   * Inputs:
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4943
   *   I0   - int* x-addr
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4944
   *   I1   - int  x-len
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4945
   *   I2   - int* y-addr
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4946
   *   I3   - int  y-len
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4947
   *   I4   - int* z-addr   (output vector)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4948
   *   I5   - int  z-len
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4949
   */
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4950
  address generate_multiplyToLen() {
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4951
    assert(UseMultiplyToLenIntrinsic, "need VIS3 instructions");
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4952
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4953
    __ align(CodeEntryAlignment);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4954
    StubCodeMark mark(this, "StubRoutines", "multiplyToLen");
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4955
    address start = __ pc();
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4956
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4957
    __ save_frame(0);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4958
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4959
    const Register xptr = I0; // input address
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4960
    const Register xlen = I1; // ...and length in 32b-words
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4961
    const Register yptr = I2; //
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4962
    const Register ylen = I3; //
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4963
    const Register zptr = I4; // output address
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4964
    const Register zlen = I5; // ...and length in 32b-words
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4965
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4966
    /* The minimal "limb" representation suggest that odd length vectors are as
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4967
     * likely as even length dittos. This in turn suggests that we need to cope
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4968
     * with odd/even length arrays and data not aligned properly for 64-bit read
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4969
     * and write operations. We thus use a number of different kernels:
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4970
     *
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4971
     *   if (is_even(x.len) && is_even(y.len))
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4972
     *      if (is_align64(x) && is_align64(y) && is_align64(z))
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4973
     *         if (x.len == y.len && 16 <= x.len && x.len <= 64)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4974
     *            memv_mult_mpmul(...)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4975
     *         else
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4976
     *            memv_mult_64x64(...)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4977
     *      else
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4978
     *         memv_mult_64x64u(...)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4979
     *   else
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4980
     *      memv_mult_32x32(...)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4981
     *
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4982
     * Here we assume VIS3 support (for 'umulxhi', 'addxc' and 'addxccc').
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4983
     * In case CBCOND instructions are supported, we will use 'cxbX'. If the
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4984
     * MPMUL instruction is supported, we will generate a kernel using 'mpmul'
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4985
     * (for vectors with proper characteristics).
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4986
     */
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4987
    const Register tmp0 = L0;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4988
    const Register tmp1 = L1;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4989
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4990
    Label L_mult_32x32;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4991
    Label L_mult_64x64u;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4992
    Label L_mult_64x64;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4993
    Label L_exit;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4994
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4995
    if_both_even(xlen, ylen, tmp0, false, L_mult_32x32);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4996
    if_all3_aligned(xptr, yptr, zptr, tmp1, 64, false, L_mult_64x64u);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4997
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4998
    if (UseMPMUL) {
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  4999
      if_eq(xlen, ylen, false, L_mult_64x64);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5000
      if_in_rng(xlen, 16, 64, tmp0, tmp1, false, L_mult_64x64);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5001
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5002
      // 1. Multiply naturally aligned 64b-datums using a generic 'mpmul' kernel,
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5003
      //    operating on equal length vectors of size [16..64].
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5004
      gen_mult_mpmul(xlen, xptr, yptr, zptr, L_exit);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5005
    }
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5006
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5007
    // 2. Multiply naturally aligned 64-bit datums (64x64).
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5008
    __ bind(L_mult_64x64);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5009
    gen_mult_64x64(xptr, xlen, yptr, ylen, zptr, zlen, L_exit);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5010
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5011
    // 3. Multiply unaligned 64-bit datums (64x64).
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5012
    __ bind(L_mult_64x64u);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5013
    gen_mult_64x64_unaligned(xptr, xlen, yptr, ylen, zptr, zlen, L_exit);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5014
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5015
    // 4. Multiply naturally aligned 32-bit datums (32x32).
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5016
    __ bind(L_mult_32x32);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5017
    gen_mult_32x32(xptr, xlen, yptr, ylen, zptr, zlen, L_exit);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5018
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5019
    __ bind(L_exit);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5020
    __ ret();
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5021
    __ delayed()->restore();
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5022
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5023
    return start;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5024
  }
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5025
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5026
  // Additional help functions used by multiplyToLen generation.
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5027
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5028
  void if_both_even(Register r1, Register r2, Register tmp, bool iseven, Label &L)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5029
  {
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5030
    __ or3(r1, r2, tmp);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5031
    __ andcc(tmp, 0x1, tmp);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5032
    __ br_icc_zero(iseven, Assembler::pn, L);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5033
  }
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5034
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5035
  void if_all3_aligned(Register r1, Register r2, Register r3,
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5036
                       Register tmp, uint align, bool isalign, Label &L)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5037
  {
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5038
    __ or3(r1, r2, tmp);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5039
    __ or3(r3, tmp, tmp);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5040
    __ andcc(tmp, (align - 1), tmp);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5041
    __ br_icc_zero(isalign, Assembler::pn, L);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5042
  }
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5043
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5044
  void if_eq(Register x, Register y, bool iseq, Label &L)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5045
  {
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5046
    Assembler::Condition cf = (iseq ? Assembler::equal : Assembler::notEqual);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5047
    __ cmp_and_br_short(x, y, cf, Assembler::pt, L);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5048
  }
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5049
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5050
  void if_in_rng(Register x, int lb, int ub, Register t1, Register t2, bool inrng, Label &L)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5051
  {
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5052
    assert(Assembler::is_simm13(lb), "Small ints only!");
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5053
    assert(Assembler::is_simm13(ub), "Small ints only!");
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5054
    // Compute (x - lb) * (ub - x) >= 0
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5055
    // NOTE: With the local use of this routine, we rely on small integers to
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5056
    //       guarantee that we do not overflow in the multiplication.
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5057
    __ add(G0, ub, t2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5058
    __ sub(x, lb, t1);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5059
    __ sub(t2, x, t2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5060
    __ mulx(t1, t2, t1);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5061
    Assembler::Condition cf = (inrng ? Assembler::greaterEqual : Assembler::less);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5062
    __ cmp_and_br_short(t1, G0, cf, Assembler::pt, L);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5063
  }
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5064
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5065
  void ldd_entry(Register base, Register offs, FloatRegister dest)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5066
  {
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5067
    __ ldd(base, offs, dest);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5068
    __ inc(offs, 8);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5069
  }
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5070
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5071
  void ldx_entry(Register base, Register offs, Register dest)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5072
  {
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5073
    __ ldx(base, offs, dest);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5074
    __ inc(offs, 8);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5075
  }
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5076
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5077
  void mpmul_entry(int m, Label &next)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5078
  {
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5079
    __ mpmul(m);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5080
    __ cbcond(Assembler::equal, Assembler::icc, G0, G0, next);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5081
  }
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5082
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5083
  void stx_entry(Label &L, Register r1, Register r2, Register base, Register offs)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5084
  {
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5085
    __ bind(L);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5086
    __ stx(r1, base, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5087
    __ inc(offs, 8);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5088
    __ stx(r2, base, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5089
    __ inc(offs, 8);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5090
  }
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5091
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5092
  void offs_entry(Label &Lbl0, Label &Lbl1)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5093
  {
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5094
    assert(Lbl0.is_bound(), "must be");
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5095
    assert(Lbl1.is_bound(), "must be");
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5096
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5097
    int offset = Lbl0.loc_pos() - Lbl1.loc_pos();
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5098
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5099
    __ emit_data(offset);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5100
  }
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5101
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5102
  /* Generate the actual multiplication kernels for BigInteger vectors:
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5103
   *
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5104
   *   1. gen_mult_mpmul(...)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5105
   *
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5106
   *   2. gen_mult_64x64(...)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5107
   *
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5108
   *   3. gen_mult_64x64_unaligned(...)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5109
   *
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5110
   *   4. gen_mult_32x32(...)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5111
   */
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5112
  void gen_mult_mpmul(Register len, Register xptr, Register yptr, Register zptr,
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5113
                      Label &L_exit)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5114
  {
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5115
    const Register zero = G0;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5116
    const Register gxp  = G1;   // Need to use global registers across RWs.
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5117
    const Register gyp  = G2;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5118
    const Register gzp  = G3;
48304
600997105565 8191232: compiler/intrinsics/bigInteger/TestMultiplyToLen.java fails with java.lang.Exception: Failed
phedlin
parents: 48104
diff changeset
  5119
    const Register disp = G4;
600997105565 8191232: compiler/intrinsics/bigInteger/TestMultiplyToLen.java fails with java.lang.Exception: Failed
phedlin
parents: 48104
diff changeset
  5120
    const Register offs = G5;
47561
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5121
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5122
    __ mov(xptr, gxp);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5123
    __ mov(yptr, gyp);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5124
    __ mov(zptr, gzp);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5125
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5126
    /* Compute jump vector entry:
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5127
     *
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5128
     *   1. mpmul input size (0..31) x 64b
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5129
     *   2. vector input size in 32b limbs (even number)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5130
     *   3. branch entries in reverse order (31..0), using two
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5131
     *      instructions per entry (2 * 4 bytes).
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5132
     *
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5133
     *   displacement = byte_offset(bra_offset(len))
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5134
     *                = byte_offset((64 - len)/2)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5135
     *                = 8 * (64 - len)/2
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5136
     *                = 4 * (64 - len)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5137
     */
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5138
    Register temp = I5;         // Alright to use input regs. in first batch.
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5139
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5140
    __ sub(zero, len, temp);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5141
    __ add(temp, 64, temp);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5142
    __ sllx(temp, 2, disp);     // disp := (64 - len) << 2
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5143
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5144
    // Dispatch relative current PC, into instruction table below.
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5145
    __ rdpc(temp);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5146
    __ add(temp, 16, temp);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5147
    __ jmp(temp, disp);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5148
    __ delayed()->clr(offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5149
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5150
    ldd_entry(gxp, offs, F22);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5151
    ldd_entry(gxp, offs, F20);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5152
    ldd_entry(gxp, offs, F18);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5153
    ldd_entry(gxp, offs, F16);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5154
    ldd_entry(gxp, offs, F14);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5155
    ldd_entry(gxp, offs, F12);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5156
    ldd_entry(gxp, offs, F10);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5157
    ldd_entry(gxp, offs, F8);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5158
    ldd_entry(gxp, offs, F6);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5159
    ldd_entry(gxp, offs, F4);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5160
    ldx_entry(gxp, offs, I5);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5161
    ldx_entry(gxp, offs, I4);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5162
    ldx_entry(gxp, offs, I3);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5163
    ldx_entry(gxp, offs, I2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5164
    ldx_entry(gxp, offs, I1);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5165
    ldx_entry(gxp, offs, I0);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5166
    ldx_entry(gxp, offs, L7);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5167
    ldx_entry(gxp, offs, L6);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5168
    ldx_entry(gxp, offs, L5);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5169
    ldx_entry(gxp, offs, L4);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5170
    ldx_entry(gxp, offs, L3);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5171
    ldx_entry(gxp, offs, L2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5172
    ldx_entry(gxp, offs, L1);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5173
    ldx_entry(gxp, offs, L0);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5174
    ldd_entry(gxp, offs, F2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5175
    ldd_entry(gxp, offs, F0);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5176
    ldx_entry(gxp, offs, O5);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5177
    ldx_entry(gxp, offs, O4);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5178
    ldx_entry(gxp, offs, O3);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5179
    ldx_entry(gxp, offs, O2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5180
    ldx_entry(gxp, offs, O1);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5181
    ldx_entry(gxp, offs, O0);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5182
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5183
    __ save(SP, -176, SP);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5184
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5185
    const Register addr = gxp;  // Alright to reuse 'gxp'.
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5186
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5187
    // Dispatch relative current PC, into instruction table below.
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5188
    __ rdpc(addr);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5189
    __ add(addr, 16, addr);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5190
    __ jmp(addr, disp);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5191
    __ delayed()->clr(offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5192
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5193
    ldd_entry(gyp, offs, F58);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5194
    ldd_entry(gyp, offs, F56);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5195
    ldd_entry(gyp, offs, F54);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5196
    ldd_entry(gyp, offs, F52);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5197
    ldd_entry(gyp, offs, F50);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5198
    ldd_entry(gyp, offs, F48);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5199
    ldd_entry(gyp, offs, F46);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5200
    ldd_entry(gyp, offs, F44);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5201
    ldd_entry(gyp, offs, F42);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5202
    ldd_entry(gyp, offs, F40);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5203
    ldd_entry(gyp, offs, F38);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5204
    ldd_entry(gyp, offs, F36);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5205
    ldd_entry(gyp, offs, F34);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5206
    ldd_entry(gyp, offs, F32);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5207
    ldd_entry(gyp, offs, F30);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5208
    ldd_entry(gyp, offs, F28);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5209
    ldd_entry(gyp, offs, F26);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5210
    ldd_entry(gyp, offs, F24);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5211
    ldx_entry(gyp, offs, O5);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5212
    ldx_entry(gyp, offs, O4);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5213
    ldx_entry(gyp, offs, O3);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5214
    ldx_entry(gyp, offs, O2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5215
    ldx_entry(gyp, offs, O1);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5216
    ldx_entry(gyp, offs, O0);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5217
    ldx_entry(gyp, offs, L7);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5218
    ldx_entry(gyp, offs, L6);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5219
    ldx_entry(gyp, offs, L5);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5220
    ldx_entry(gyp, offs, L4);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5221
    ldx_entry(gyp, offs, L3);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5222
    ldx_entry(gyp, offs, L2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5223
    ldx_entry(gyp, offs, L1);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5224
    ldx_entry(gyp, offs, L0);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5225
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5226
    __ save(SP, -176, SP);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5227
    __ save(SP, -176, SP);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5228
    __ save(SP, -176, SP);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5229
    __ save(SP, -176, SP);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5230
    __ save(SP, -176, SP);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5231
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5232
    Label L_mpmul_restore_4, L_mpmul_restore_3, L_mpmul_restore_2;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5233
    Label L_mpmul_restore_1, L_mpmul_restore_0;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5234
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5235
    // Dispatch relative current PC, into instruction table below.
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5236
    __ rdpc(addr);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5237
    __ add(addr, 16, addr);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5238
    __ jmp(addr, disp);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5239
    __ delayed()->clr(offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5240
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5241
    mpmul_entry(31, L_mpmul_restore_0);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5242
    mpmul_entry(30, L_mpmul_restore_0);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5243
    mpmul_entry(29, L_mpmul_restore_0);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5244
    mpmul_entry(28, L_mpmul_restore_0);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5245
    mpmul_entry(27, L_mpmul_restore_1);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5246
    mpmul_entry(26, L_mpmul_restore_1);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5247
    mpmul_entry(25, L_mpmul_restore_1);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5248
    mpmul_entry(24, L_mpmul_restore_1);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5249
    mpmul_entry(23, L_mpmul_restore_1);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5250
    mpmul_entry(22, L_mpmul_restore_1);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5251
    mpmul_entry(21, L_mpmul_restore_1);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5252
    mpmul_entry(20, L_mpmul_restore_2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5253
    mpmul_entry(19, L_mpmul_restore_2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5254
    mpmul_entry(18, L_mpmul_restore_2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5255
    mpmul_entry(17, L_mpmul_restore_2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5256
    mpmul_entry(16, L_mpmul_restore_2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5257
    mpmul_entry(15, L_mpmul_restore_2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5258
    mpmul_entry(14, L_mpmul_restore_2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5259
    mpmul_entry(13, L_mpmul_restore_3);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5260
    mpmul_entry(12, L_mpmul_restore_3);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5261
    mpmul_entry(11, L_mpmul_restore_3);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5262
    mpmul_entry(10, L_mpmul_restore_3);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5263
    mpmul_entry( 9, L_mpmul_restore_3);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5264
    mpmul_entry( 8, L_mpmul_restore_3);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5265
    mpmul_entry( 7, L_mpmul_restore_3);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5266
    mpmul_entry( 6, L_mpmul_restore_4);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5267
    mpmul_entry( 5, L_mpmul_restore_4);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5268
    mpmul_entry( 4, L_mpmul_restore_4);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5269
    mpmul_entry( 3, L_mpmul_restore_4);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5270
    mpmul_entry( 2, L_mpmul_restore_4);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5271
    mpmul_entry( 1, L_mpmul_restore_4);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5272
    mpmul_entry( 0, L_mpmul_restore_4);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5273
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5274
    Label L_z31, L_z30, L_z29, L_z28, L_z27, L_z26, L_z25, L_z24;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5275
    Label L_z23, L_z22, L_z21, L_z20, L_z19, L_z18, L_z17, L_z16;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5276
    Label L_z15, L_z14, L_z13, L_z12, L_z11, L_z10, L_z09, L_z08;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5277
    Label L_z07, L_z06, L_z05, L_z04, L_z03, L_z02, L_z01, L_z00;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5278
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5279
    Label L_zst_base;    // Store sequence base address.
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5280
    __ bind(L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5281
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5282
    stx_entry(L_z31, L7, L6, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5283
    stx_entry(L_z30, L5, L4, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5284
    stx_entry(L_z29, L3, L2, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5285
    stx_entry(L_z28, L1, L0, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5286
    __ restore();
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5287
    stx_entry(L_z27, O5, O4, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5288
    stx_entry(L_z26, O3, O2, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5289
    stx_entry(L_z25, O1, O0, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5290
    stx_entry(L_z24, L7, L6, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5291
    stx_entry(L_z23, L5, L4, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5292
    stx_entry(L_z22, L3, L2, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5293
    stx_entry(L_z21, L1, L0, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5294
    __ restore();
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5295
    stx_entry(L_z20, O5, O4, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5296
    stx_entry(L_z19, O3, O2, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5297
    stx_entry(L_z18, O1, O0, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5298
    stx_entry(L_z17, L7, L6, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5299
    stx_entry(L_z16, L5, L4, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5300
    stx_entry(L_z15, L3, L2, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5301
    stx_entry(L_z14, L1, L0, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5302
    __ restore();
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5303
    stx_entry(L_z13, O5, O4, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5304
    stx_entry(L_z12, O3, O2, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5305
    stx_entry(L_z11, O1, O0, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5306
    stx_entry(L_z10, L7, L6, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5307
    stx_entry(L_z09, L5, L4, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5308
    stx_entry(L_z08, L3, L2, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5309
    stx_entry(L_z07, L1, L0, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5310
    __ restore();
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5311
    stx_entry(L_z06, O5, O4, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5312
    stx_entry(L_z05, O3, O2, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5313
    stx_entry(L_z04, O1, O0, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5314
    stx_entry(L_z03, L7, L6, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5315
    stx_entry(L_z02, L5, L4, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5316
    stx_entry(L_z01, L3, L2, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5317
    stx_entry(L_z00, L1, L0, gzp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5318
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5319
    __ restore();
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5320
    __ restore();
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5321
    // Exit out of 'mpmul' routine, back to multiplyToLen.
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5322
    __ ba_short(L_exit);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5323
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5324
    Label L_zst_offs;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5325
    __ bind(L_zst_offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5326
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5327
    offs_entry(L_z31, L_zst_base);  // index 31: 2048x2048
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5328
    offs_entry(L_z30, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5329
    offs_entry(L_z29, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5330
    offs_entry(L_z28, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5331
    offs_entry(L_z27, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5332
    offs_entry(L_z26, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5333
    offs_entry(L_z25, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5334
    offs_entry(L_z24, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5335
    offs_entry(L_z23, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5336
    offs_entry(L_z22, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5337
    offs_entry(L_z21, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5338
    offs_entry(L_z20, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5339
    offs_entry(L_z19, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5340
    offs_entry(L_z18, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5341
    offs_entry(L_z17, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5342
    offs_entry(L_z16, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5343
    offs_entry(L_z15, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5344
    offs_entry(L_z14, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5345
    offs_entry(L_z13, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5346
    offs_entry(L_z12, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5347
    offs_entry(L_z11, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5348
    offs_entry(L_z10, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5349
    offs_entry(L_z09, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5350
    offs_entry(L_z08, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5351
    offs_entry(L_z07, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5352
    offs_entry(L_z06, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5353
    offs_entry(L_z05, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5354
    offs_entry(L_z04, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5355
    offs_entry(L_z03, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5356
    offs_entry(L_z02, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5357
    offs_entry(L_z01, L_zst_base);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5358
    offs_entry(L_z00, L_zst_base);  // index  0:   64x64
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5359
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5360
    __ bind(L_mpmul_restore_4);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5361
    __ restore();
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5362
    __ bind(L_mpmul_restore_3);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5363
    __ restore();
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5364
    __ bind(L_mpmul_restore_2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5365
    __ restore();
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5366
    __ bind(L_mpmul_restore_1);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5367
    __ restore();
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5368
    __ bind(L_mpmul_restore_0);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5369
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5370
    // Dispatch via offset vector entry, into z-store sequence.
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5371
    Label L_zst_rdpc;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5372
    __ bind(L_zst_rdpc);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5373
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5374
    assert(L_zst_base.is_bound(), "must be");
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5375
    assert(L_zst_offs.is_bound(), "must be");
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5376
    assert(L_zst_rdpc.is_bound(), "must be");
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5377
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5378
    int dbase = L_zst_rdpc.loc_pos() - L_zst_base.loc_pos();
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5379
    int doffs = L_zst_rdpc.loc_pos() - L_zst_offs.loc_pos();
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5380
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5381
    temp = gyp;   // Alright to reuse 'gyp'.
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5382
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5383
    __ rdpc(addr);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5384
    __ sub(addr, doffs, temp);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5385
    __ srlx(disp, 1, disp);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5386
    __ lduw(temp, disp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5387
    __ sub(addr, dbase, temp);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5388
    __ jmp(temp, offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5389
    __ delayed()->clr(offs);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5390
  }
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5391
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5392
  void gen_mult_64x64(Register xp, Register xn,
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5393
                      Register yp, Register yn,
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5394
                      Register zp, Register zn, Label &L_exit)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5395
  {
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5396
    // Assuming that a stack frame has already been created, i.e. local and
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5397
    // output registers are available for immediate use.
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5398
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5399
    const Register ri = L0;     // Outer loop index, xv[i]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5400
    const Register rj = L1;     // Inner loop index, yv[j]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5401
    const Register rk = L2;     // Output loop index, zv[k]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5402
    const Register rx = L4;     // x-vector datum [i]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5403
    const Register ry = L5;     // y-vector datum [j]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5404
    const Register rz = L6;     // z-vector datum [k]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5405
    const Register rc = L7;     // carry over (to z-vector datum [k-1])
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5406
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5407
    const Register lop = O0;    // lo-64b product
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5408
    const Register hip = O1;    // hi-64b product
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5409
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5410
    const Register zero = G0;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5411
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5412
    Label L_loop_i,  L_exit_loop_i;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5413
    Label L_loop_j;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5414
    Label L_loop_i2, L_exit_loop_i2;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5415
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5416
    __ srlx(xn, 1, xn);         // index for u32 to u64 ditto
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5417
    __ srlx(yn, 1, yn);         // index for u32 to u64 ditto
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5418
    __ srlx(zn, 1, zn);         // index for u32 to u64 ditto
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5419
    __ dec(xn);                 // Adjust [0..(N/2)-1]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5420
    __ dec(yn);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5421
    __ dec(zn);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5422
    __ clr(rc);                 // u64 c = 0
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5423
    __ sllx(xn, 3, ri);         // int i = xn (byte offset i = 8*xn)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5424
    __ sllx(yn, 3, rj);         // int j = yn (byte offset i = 8*xn)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5425
    __ sllx(zn, 3, rk);         // int k = zn (byte offset k = 8*zn)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5426
    __ ldx(yp, rj, ry);         // u64 y = yp[yn]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5427
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5428
    // for (int i = xn; i >= 0; i--)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5429
    __ bind(L_loop_i);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5430
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5431
    __ cmp_and_br_short(ri, 0,  // i >= 0
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5432
                        Assembler::less, Assembler::pn, L_exit_loop_i);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5433
    __ ldx(xp, ri, rx);         // x = xp[i]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5434
    __ mulx(rx, ry, lop);       // lo-64b-part of result 64x64
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5435
    __ umulxhi(rx, ry, hip);    // hi-64b-part of result 64x64
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5436
    __ addcc(rc, lop, lop);     // Accumulate lower order bits (producing carry)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5437
    __ addxc(hip, zero, rc);    // carry over to next datum [k-1]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5438
    __ stx(lop, zp, rk);        // z[k] = lop
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5439
    __ dec(rk, 8);              // k--
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5440
    __ dec(ri, 8);              // i--
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5441
    __ ba_short(L_loop_i);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5442
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5443
    __ bind(L_exit_loop_i);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5444
    __ stx(rc, zp, rk);         // z[k] = c
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5445
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5446
    // for (int j = yn - 1; j >= 0; j--)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5447
    __ sllx(yn, 3, rj);         // int j = yn - 1 (byte offset j = 8*yn)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5448
    __ dec(rj, 8);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5449
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5450
    __ bind(L_loop_j);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5451
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5452
    __ cmp_and_br_short(rj, 0,  // j >= 0
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5453
                        Assembler::less, Assembler::pn, L_exit);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5454
    __ clr(rc);                 // u64 c = 0
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5455
    __ ldx(yp, rj, ry);         // u64 y = yp[j]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5456
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5457
    // for (int i = xn, k = --zn; i >= 0; i--)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5458
    __ dec(zn);                 // --zn
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5459
    __ sllx(xn, 3, ri);         // int i = xn (byte offset i = 8*xn)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5460
    __ sllx(zn, 3, rk);         // int k = zn (byte offset k = 8*zn)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5461
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5462
    __ bind(L_loop_i2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5463
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5464
    __ cmp_and_br_short(ri, 0,  // i >= 0
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5465
                        Assembler::less, Assembler::pn, L_exit_loop_i2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5466
    __ ldx(xp, ri, rx);         // x = xp[i]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5467
    __ ldx(zp, rk, rz);         // z = zp[k], accumulator
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5468
    __ mulx(rx, ry, lop);       // lo-64b-part of result 64x64
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5469
    __ umulxhi(rx, ry, hip);    // hi-64b-part of result 64x64
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5470
    __ addcc(rz, rc, rz);       // Accumulate lower order bits,
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5471
    __ addxc(hip, zero, rc);    // Accumulate higher order bits to carry
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5472
    __ addcc(rz, lop, rz);      //    z += lo(p) + c
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5473
    __ addxc(rc, zero, rc);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5474
    __ stx(rz, zp, rk);         // zp[k] = z
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5475
    __ dec(rk, 8);              // k--
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5476
    __ dec(ri, 8);              // i--
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5477
    __ ba_short(L_loop_i2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5478
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5479
    __ bind(L_exit_loop_i2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5480
    __ stx(rc, zp, rk);         // z[k] = c
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5481
    __ dec(rj, 8);              // j--
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5482
    __ ba_short(L_loop_j);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5483
  }
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5484
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5485
  void gen_mult_64x64_unaligned(Register xp, Register xn,
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5486
                                Register yp, Register yn,
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5487
                                Register zp, Register zn, Label &L_exit)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5488
  {
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5489
    // Assuming that a stack frame has already been created, i.e. local and
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5490
    // output registers are available for use.
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5491
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5492
    const Register xpc = L0;    // Outer loop cursor, xp[i]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5493
    const Register ypc = L1;    // Inner loop cursor, yp[j]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5494
    const Register zpc = L2;    // Output loop cursor, zp[k]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5495
    const Register rx  = L4;    // x-vector datum [i]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5496
    const Register ry  = L5;    // y-vector datum [j]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5497
    const Register rz  = L6;    // z-vector datum [k]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5498
    const Register rc  = L7;    // carry over (to z-vector datum [k-1])
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5499
    const Register rt  = O2;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5500
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5501
    const Register lop = O0;    // lo-64b product
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5502
    const Register hip = O1;    // hi-64b product
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5503
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5504
    const Register zero = G0;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5505
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5506
    Label L_loop_i,  L_exit_loop_i;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5507
    Label L_loop_j;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5508
    Label L_loop_i2, L_exit_loop_i2;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5509
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5510
    __ srlx(xn, 1, xn);         // index for u32 to u64 ditto
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5511
    __ srlx(yn, 1, yn);         // index for u32 to u64 ditto
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5512
    __ srlx(zn, 1, zn);         // index for u32 to u64 ditto
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5513
    __ dec(xn);                 // Adjust [0..(N/2)-1]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5514
    __ dec(yn);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5515
    __ dec(zn);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5516
    __ clr(rc);                 // u64 c = 0
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5517
    __ sllx(xn, 3, xpc);        // u32* xpc = &xp[xn] (byte offset 8*xn)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5518
    __ add(xp, xpc, xpc);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5519
    __ sllx(yn, 3, ypc);        // u32* ypc = &yp[yn] (byte offset 8*yn)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5520
    __ add(yp, ypc, ypc);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5521
    __ sllx(zn, 3, zpc);        // u32* zpc = &zp[zn] (byte offset 8*zn)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5522
    __ add(zp, zpc, zpc);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5523
    __ lduw(ypc, 0, rt);        // u64 y = yp[yn]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5524
    __ lduw(ypc, 4, ry);        //   ...
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5525
    __ sllx(rt, 32, rt);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5526
    __ or3(rt, ry, ry);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5527
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5528
    // for (int i = xn; i >= 0; i--)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5529
    __ bind(L_loop_i);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5530
48304
600997105565 8191232: compiler/intrinsics/bigInteger/TestMultiplyToLen.java fails with java.lang.Exception: Failed
phedlin
parents: 48104
diff changeset
  5531
    __ cmp_and_brx_short(xpc, xp,// i >= 0
600997105565 8191232: compiler/intrinsics/bigInteger/TestMultiplyToLen.java fails with java.lang.Exception: Failed
phedlin
parents: 48104
diff changeset
  5532
                         Assembler::lessUnsigned, Assembler::pn, L_exit_loop_i);
47561
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5533
    __ lduw(xpc, 0, rt);        // u64 x = xp[i]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5534
    __ lduw(xpc, 4, rx);        //   ...
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5535
    __ sllx(rt, 32, rt);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5536
    __ or3(rt, rx, rx);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5537
    __ mulx(rx, ry, lop);       // lo-64b-part of result 64x64
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5538
    __ umulxhi(rx, ry, hip);    // hi-64b-part of result 64x64
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5539
    __ addcc(rc, lop, lop);     // Accumulate lower order bits (producing carry)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5540
    __ addxc(hip, zero, rc);    // carry over to next datum [k-1]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5541
    __ srlx(lop, 32, rt);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5542
    __ stw(rt, zpc, 0);         // z[k] = lop
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5543
    __ stw(lop, zpc, 4);        //   ...
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5544
    __ dec(zpc, 8);             // k-- (zpc--)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5545
    __ dec(xpc, 8);             // i-- (xpc--)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5546
    __ ba_short(L_loop_i);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5547
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5548
    __ bind(L_exit_loop_i);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5549
    __ srlx(rc, 32, rt);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5550
    __ stw(rt, zpc, 0);         // z[k] = c
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5551
    __ stw(rc, zpc, 4);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5552
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5553
    // for (int j = yn - 1; j >= 0; j--)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5554
    __ sllx(yn, 3, ypc);        // u32* ypc = &yp[yn] (byte offset 8*yn)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5555
    __ add(yp, ypc, ypc);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5556
    __ dec(ypc, 8);             // yn - 1 (ypc--)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5557
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5558
    __ bind(L_loop_j);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5559
48304
600997105565 8191232: compiler/intrinsics/bigInteger/TestMultiplyToLen.java fails with java.lang.Exception: Failed
phedlin
parents: 48104
diff changeset
  5560
    __ cmp_and_brx_short(ypc, yp,// j >= 0
600997105565 8191232: compiler/intrinsics/bigInteger/TestMultiplyToLen.java fails with java.lang.Exception: Failed
phedlin
parents: 48104
diff changeset
  5561
                         Assembler::lessUnsigned, Assembler::pn, L_exit);
47561
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5562
    __ clr(rc);                 // u64 c = 0
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5563
    __ lduw(ypc, 0, rt);        // u64 y = yp[j] (= *ypc)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5564
    __ lduw(ypc, 4, ry);        //   ...
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5565
    __ sllx(rt, 32, rt);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5566
    __ or3(rt, ry, ry);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5567
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5568
    // for (int i = xn, k = --zn; i >= 0; i--)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5569
    __ sllx(xn, 3, xpc);        // u32* xpc = &xp[xn] (byte offset 8*xn)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5570
    __ add(xp, xpc, xpc);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5571
    __ dec(zn);                 // --zn
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5572
    __ sllx(zn, 3, zpc);        // u32* zpc = &zp[zn] (byte offset 8*zn)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5573
    __ add(zp, zpc, zpc);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5574
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5575
    __ bind(L_loop_i2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5576
48304
600997105565 8191232: compiler/intrinsics/bigInteger/TestMultiplyToLen.java fails with java.lang.Exception: Failed
phedlin
parents: 48104
diff changeset
  5577
    __ cmp_and_brx_short(xpc, xp,// i >= 0
600997105565 8191232: compiler/intrinsics/bigInteger/TestMultiplyToLen.java fails with java.lang.Exception: Failed
phedlin
parents: 48104
diff changeset
  5578
                         Assembler::lessUnsigned, Assembler::pn, L_exit_loop_i2);
47561
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5579
    __ lduw(xpc, 0, rt);        // u64 x = xp[i] (= *xpc)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5580
    __ lduw(xpc, 4, rx);        //   ...
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5581
    __ sllx(rt, 32, rt);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5582
    __ or3(rt, rx, rx);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5583
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5584
    __ lduw(zpc, 0, rt);        // u64 z = zp[k] (= *zpc)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5585
    __ lduw(zpc, 4, rz);        //   ...
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5586
    __ sllx(rt, 32, rt);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5587
    __ or3(rt, rz, rz);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5588
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5589
    __ mulx(rx, ry, lop);       // lo-64b-part of result 64x64
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5590
    __ umulxhi(rx, ry, hip);    // hi-64b-part of result 64x64
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5591
    __ addcc(rz, rc, rz);       // Accumulate lower order bits...
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5592
    __ addxc(hip, zero, rc);    // Accumulate higher order bits to carry
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5593
    __ addcc(rz, lop, rz);      // ... z += lo(p) + c
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5594
    __ addxccc(rc, zero, rc);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5595
    __ srlx(rz, 32, rt);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5596
    __ stw(rt, zpc, 0);         // zp[k] = z    (*zpc = z)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5597
    __ stw(rz, zpc, 4);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5598
    __ dec(zpc, 8);             // k-- (zpc--)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5599
    __ dec(xpc, 8);             // i-- (xpc--)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5600
    __ ba_short(L_loop_i2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5601
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5602
    __ bind(L_exit_loop_i2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5603
    __ srlx(rc, 32, rt);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5604
    __ stw(rt, zpc, 0);         // z[k] = c
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5605
    __ stw(rc, zpc, 4);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5606
    __ dec(ypc, 8);             // j-- (ypc--)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5607
    __ ba_short(L_loop_j);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5608
  }
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5609
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5610
  void gen_mult_32x32(Register xp, Register xn,
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5611
                      Register yp, Register yn,
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5612
                      Register zp, Register zn, Label &L_exit)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5613
  {
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5614
    // Assuming that a stack frame has already been created, i.e. local and
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5615
    // output registers are available for use.
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5616
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5617
    const Register ri = L0;     // Outer loop index, xv[i]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5618
    const Register rj = L1;     // Inner loop index, yv[j]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5619
    const Register rk = L2;     // Output loop index, zv[k]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5620
    const Register rx = L4;     // x-vector datum [i]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5621
    const Register ry = L5;     // y-vector datum [j]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5622
    const Register rz = L6;     // z-vector datum [k]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5623
    const Register rc = L7;     // carry over (to z-vector datum [k-1])
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5624
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5625
    const Register p64 = O0;    // 64b product
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5626
    const Register z65 = O1;    // carry+64b accumulator
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5627
    const Register c65 = O2;    // carry at bit 65
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5628
    const Register c33 = O2;    // carry at bit 33 (after shift)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5629
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5630
    const Register zero = G0;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5631
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5632
    Label L_loop_i,  L_exit_loop_i;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5633
    Label L_loop_j;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5634
    Label L_loop_i2, L_exit_loop_i2;
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5635
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5636
    __ dec(xn);                 // Adjust [0..N-1]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5637
    __ dec(yn);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5638
    __ dec(zn);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5639
    __ clr(rc);                 // u32 c = 0
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5640
    __ sllx(xn, 2, ri);         // int i = xn (byte offset i = 4*xn)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5641
    __ sllx(yn, 2, rj);         // int j = yn (byte offset i = 4*xn)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5642
    __ sllx(zn, 2, rk);         // int k = zn (byte offset k = 4*zn)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5643
    __ lduw(yp, rj, ry);        // u32 y = yp[yn]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5644
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5645
    // for (int i = xn; i >= 0; i--)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5646
    __ bind(L_loop_i);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5647
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5648
    __ cmp_and_br_short(ri, 0,  // i >= 0
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5649
                        Assembler::less, Assembler::pn, L_exit_loop_i);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5650
    __ lduw(xp, ri, rx);        // x = xp[i]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5651
    __ mulx(rx, ry, p64);       // 64b result of 32x32
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5652
    __ addcc(rc, p64, z65);     // Accumulate to 65 bits (producing carry)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5653
    __ addxc(zero, zero, c65);  // Materialise carry (in bit 65) into lsb,
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5654
    __ sllx(c65, 32, c33);      // and shift into bit 33
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5655
    __ srlx(z65, 32, rc);       // carry = c33 | hi(z65) >> 32
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5656
    __ add(c33, rc, rc);        // carry over to next datum [k-1]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5657
    __ stw(z65, zp, rk);        // z[k] = lo(z65)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5658
    __ dec(rk, 4);              // k--
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5659
    __ dec(ri, 4);              // i--
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5660
    __ ba_short(L_loop_i);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5661
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5662
    __ bind(L_exit_loop_i);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5663
    __ stw(rc, zp, rk);         // z[k] = c
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5664
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5665
    // for (int j = yn - 1; j >= 0; j--)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5666
    __ sllx(yn, 2, rj);         // int j = yn - 1 (byte offset j = 4*yn)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5667
    __ dec(rj, 4);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5668
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5669
    __ bind(L_loop_j);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5670
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5671
    __ cmp_and_br_short(rj, 0,  // j >= 0
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5672
                        Assembler::less, Assembler::pn, L_exit);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5673
    __ clr(rc);                 // u32 c = 0
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5674
    __ lduw(yp, rj, ry);        // u32 y = yp[j]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5675
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5676
    // for (int i = xn, k = --zn; i >= 0; i--)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5677
    __ dec(zn);                 // --zn
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5678
    __ sllx(xn, 2, ri);         // int i = xn (byte offset i = 4*xn)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5679
    __ sllx(zn, 2, rk);         // int k = zn (byte offset k = 4*zn)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5680
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5681
    __ bind(L_loop_i2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5682
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5683
    __ cmp_and_br_short(ri, 0,  // i >= 0
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5684
                        Assembler::less, Assembler::pn, L_exit_loop_i2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5685
    __ lduw(xp, ri, rx);        // x = xp[i]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5686
    __ lduw(zp, rk, rz);        // z = zp[k], accumulator
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5687
    __ mulx(rx, ry, p64);       // 64b result of 32x32
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5688
    __ add(rz, rc, rz);         // Accumulate lower order bits,
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5689
    __ addcc(rz, p64, z65);     //   z += lo(p64) + c
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5690
    __ addxc(zero, zero, c65);  // Materialise carry (in bit 65) into lsb,
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5691
    __ sllx(c65, 32, c33);      // and shift into bit 33
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5692
    __ srlx(z65, 32, rc);       // carry = c33 | hi(z65) >> 32
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5693
    __ add(c33, rc, rc);        // carry over to next datum [k-1]
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5694
    __ stw(z65, zp, rk);        // zp[k] = lo(z65)
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5695
    __ dec(rk, 4);              // k--
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5696
    __ dec(ri, 4);              // i--
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5697
    __ ba_short(L_loop_i2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5698
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5699
    __ bind(L_exit_loop_i2);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5700
    __ stw(rc, zp, rk);         // z[k] = c
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5701
    __ dec(rj, 4);              // j--
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5702
    __ ba_short(L_loop_j);
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5703
  }
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5704
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5705
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5706
  void generate_initial() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5707
    // Generates all stubs and initializes the entry points
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5708
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5709
    //------------------------------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5710
    // entry points that exist in all platforms
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5711
    // 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
  5712
    //       the disadvantage of having a much more complicated generator structure. See also comment in stubRoutines.hpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5713
    StubRoutines::_forward_exception_entry                 = generate_forward_exception();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5714
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5715
    StubRoutines::_call_stub_entry                         = generate_call_stub(StubRoutines::_call_stub_return_address);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5716
    StubRoutines::_catch_exception_entry                   = generate_catch_exception();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5717
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5718
    //------------------------------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5719
    // entry points that are platform specific
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5720
    StubRoutines::Sparc::_test_stop_entry                  = generate_test_stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5721
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5722
    StubRoutines::Sparc::_stop_subroutine_entry            = generate_stop_subroutine();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5723
    StubRoutines::Sparc::_flush_callers_register_windows_entry = generate_flush_callers_register_windows();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5724
11411
16b151e1e088 7116216: StackOverflow GC crash
bdelsart
parents: 10566
diff changeset
  5725
    // Build this early so it's available for the interpreter.
35071
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34205
diff changeset
  5726
    StubRoutines::_throw_StackOverflowError_entry =
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34205
diff changeset
  5727
            generate_throw_exception("StackOverflowError throw_exception",
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34205
diff changeset
  5728
            CAST_FROM_FN_PTR(address, SharedRuntime::throw_StackOverflowError));
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34205
diff changeset
  5729
    StubRoutines::_throw_delayed_StackOverflowError_entry =
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34205
diff changeset
  5730
            generate_throw_exception("delayed StackOverflowError throw_exception",
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34205
diff changeset
  5731
            CAST_FROM_FN_PTR(address, SharedRuntime::throw_delayed_StackOverflowError));
34205
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  5732
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  5733
    if (UseCRC32Intrinsics) {
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  5734
      // set table address before stub generation which use it
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  5735
      StubRoutines::_crc_table_adr = (address)StubRoutines::Sparc::_crc_table;
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  5736
      StubRoutines::_updateBytesCRC32 = generate_updateBytesCRC32();
9ec51d30a11e 8143012: CRC32 Intrinsics support on SPARC
kvn
parents: 32627
diff changeset
  5737
    }
38237
d972e3a2df53 8155162: java.util.zip.CRC32C Interpreter/C1 intrinsics support on SPARC
kvn
parents: 37466
diff changeset
  5738
d972e3a2df53 8155162: java.util.zip.CRC32C Interpreter/C1 intrinsics support on SPARC
kvn
parents: 37466
diff changeset
  5739
    if (UseCRC32CIntrinsics) {
d972e3a2df53 8155162: java.util.zip.CRC32C Interpreter/C1 intrinsics support on SPARC
kvn
parents: 37466
diff changeset
  5740
      // set table address before stub generation which use it
d972e3a2df53 8155162: java.util.zip.CRC32C Interpreter/C1 intrinsics support on SPARC
kvn
parents: 37466
diff changeset
  5741
      StubRoutines::_crc32c_table_addr = (address)StubRoutines::Sparc::_crc32c_table;
d972e3a2df53 8155162: java.util.zip.CRC32C Interpreter/C1 intrinsics support on SPARC
kvn
parents: 37466
diff changeset
  5742
      StubRoutines::_updateBytesCRC32C = generate_updateBytesCRC32C();
d972e3a2df53 8155162: java.util.zip.CRC32C Interpreter/C1 intrinsics support on SPARC
kvn
parents: 37466
diff changeset
  5743
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5744
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5745
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5746
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5747
  void generate_all() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5748
    // Generates all stubs and initializes the entry points
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5749
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 1502
diff changeset
  5750
    // 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
  5751
    // UseZeroBaseCompressedOops which is defined after heap initialization.
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 1502
diff changeset
  5752
    StubRoutines::Sparc::_partial_subtype_check                = generate_partial_subtype_check();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5753
    // These entry points require SharedInfo::stack0 to be set up in non-core builds
10545
fec876499aae 7088020: SEGV in JNIHandleBlock::release_block
never
parents: 10512
diff changeset
  5754
    StubRoutines::_throw_AbstractMethodError_entry         = generate_throw_exception("AbstractMethodError throw_exception",          CAST_FROM_FN_PTR(address, SharedRuntime::throw_AbstractMethodError));
fec876499aae 7088020: SEGV in JNIHandleBlock::release_block
never
parents: 10512
diff changeset
  5755
    StubRoutines::_throw_IncompatibleClassChangeError_entry= generate_throw_exception("IncompatibleClassChangeError throw_exception", CAST_FROM_FN_PTR(address, SharedRuntime::throw_IncompatibleClassChangeError));
fec876499aae 7088020: SEGV in JNIHandleBlock::release_block
never
parents: 10512
diff changeset
  5756
    StubRoutines::_throw_NullPointerException_at_call_entry= generate_throw_exception("NullPointerException at call throw_exception", CAST_FROM_FN_PTR(address, SharedRuntime::throw_NullPointerException_at_call));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5757
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5758
    // support for verify_oop (must happen after universe_init)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5759
    StubRoutines::_verify_oop_subroutine_entry     = generate_verify_oop_subroutine();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5760
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5761
    // arraycopy stubs used by compilers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5762
    generate_arraycopy_stubs();
4645
0c5f5b94e93a 6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents: 2571
diff changeset
  5763
0c5f5b94e93a 6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents: 2571
diff changeset
  5764
    // 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
  5765
    // doesn't have intrinsics for these operations.
18740
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
  5766
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
  5767
    // Safefetch stubs.
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
  5768
    generate_safefetch("SafeFetch32", sizeof(int),     &StubRoutines::_safefetch32_entry,
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
  5769
                                                       &StubRoutines::_safefetch32_fault_pc,
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
  5770
                                                       &StubRoutines::_safefetch32_continuation_pc);
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
  5771
    generate_safefetch("SafeFetchN", sizeof(intptr_t), &StubRoutines::_safefetchN_entry,
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
  5772
                                                       &StubRoutines::_safefetchN_fault_pc,
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18097
diff changeset
  5773
                                                       &StubRoutines::_safefetchN_continuation_pc);
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  5774
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  5775
    // generate AES intrinsics code
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  5776
    if (UseAESIntrinsics) {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  5777
      StubRoutines::_aescrypt_encryptBlock = generate_aescrypt_encryptBlock();
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  5778
      StubRoutines::_aescrypt_decryptBlock = generate_aescrypt_decryptBlock();
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  5779
      StubRoutines::_cipherBlockChaining_encryptAESCrypt = generate_cipherBlockChaining_encryptAESCrypt();
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  5780
      StubRoutines::_cipherBlockChaining_decryptAESCrypt = generate_cipherBlockChaining_decryptAESCrypt_Parallel();
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22234
diff changeset
  5781
    }
31404
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  5782
    // generate GHASH intrinsics code
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  5783
    if (UseGHASHIntrinsics) {
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  5784
      StubRoutines::_ghash_processBlocks = generate_ghash_processBlocks();
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 29695
diff changeset
  5785
    }
24953
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  5786
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  5787
    // generate SHA1/SHA256/SHA512 intrinsics code
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  5788
    if (UseSHA1Intrinsics) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  5789
      StubRoutines::_sha1_implCompress     = generate_sha1_implCompress(false,   "sha1_implCompress");
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  5790
      StubRoutines::_sha1_implCompressMB   = generate_sha1_implCompress(true,    "sha1_implCompressMB");
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  5791
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  5792
    if (UseSHA256Intrinsics) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  5793
      StubRoutines::_sha256_implCompress   = generate_sha256_implCompress(false, "sha256_implCompress");
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  5794
      StubRoutines::_sha256_implCompressMB = generate_sha256_implCompress(true,  "sha256_implCompressMB");
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  5795
    }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  5796
    if (UseSHA512Intrinsics) {
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  5797
      StubRoutines::_sha512_implCompress   = generate_sha512_implCompress(false, "sha512_implCompress");
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  5798
      StubRoutines::_sha512_implCompressMB = generate_sha512_implCompress(true,  "sha512_implCompressMB");
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 24488
diff changeset
  5799
    }
32581
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  5800
    // generate Adler32 intrinsics code
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  5801
    if (UseAdler32Intrinsics) {
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  5802
      StubRoutines::_updateBytesAdler32 = generate_updateBytesAdler32();
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31515
diff changeset
  5803
    }
47561
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5804
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5805
#ifdef COMPILER2
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5806
    // Intrinsics supported by C2 only:
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5807
    if (UseMultiplyToLenIntrinsic) {
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5808
      StubRoutines::_multiplyToLen = generate_multiplyToLen();
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5809
    }
f59f0e51ef8a 8167199: Add C2 SPARC intrinsic for BigInteger::multiplyToLen() method.
neliasso
parents: 47216
diff changeset
  5810
#endif // COMPILER2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5811
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5812
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5813
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5814
  StubGenerator(CodeBuffer* code, bool all) : StubCodeGenerator(code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5815
    // replace the standard masm with a special one:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5816
    _masm = new MacroAssembler(code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5817
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5818
    _stub_count = !all ? 0x100 : 0x200;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5819
    if (all) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5820
      generate_all();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5821
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5822
      generate_initial();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5823
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5824
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5825
    // make sure this stub is available for all local calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5826
    if (_atomic_add_stub.is_unbound()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5827
      // generate a second time, if necessary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5828
      (void) generate_atomic_add();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5829
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5830
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5831
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5832
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5833
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5834
  int _stub_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5835
  void stub_prolog(StubCodeDesc* cdesc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5836
    # ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5837
      // put extra information in the stub code, to make it more readable
46462
f92a713126b1 8179903: Clean up SPARC 32-bit support
gtriantafill
parents: 46422
diff changeset
  5838
      // Write the high part of the address
f92a713126b1 8179903: Clean up SPARC 32-bit support
gtriantafill
parents: 46422
diff changeset
  5839
      // [RGV] Check if there is a dependency on the size of this prolog
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5840
      __ emit_data((intptr_t)cdesc >> 32,    relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5841
      __ emit_data((intptr_t)cdesc,    relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5842
      __ emit_data(++_stub_count, relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5843
    # endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5844
    align(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5845
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5846
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5847
  void align(bool at_header = false) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5848
    // %%%%% move this constant somewhere else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5849
    // UltraSPARC cache line size is 8 instructions:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5850
    const unsigned int icache_line_size = 32;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5851
    const unsigned int icache_half_line_size = 16;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5852
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5853
    if (at_header) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5854
      while ((intptr_t)(__ pc()) % icache_line_size != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5855
        __ emit_data(0, relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5856
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5857
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5858
      while ((intptr_t)(__ pc()) % icache_half_line_size != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5859
        __ nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5860
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5861
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5862
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5863
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5864
}; // end class declaration
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5865
55490
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  5866
#define UCM_TABLE_MAX_ENTRIES 8
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5867
void StubGenerator_generate(CodeBuffer* code, bool all) {
55490
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  5868
  if (UnsafeCopyMemory::_table == NULL) {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  5869
    UnsafeCopyMemory::create_table(UCM_TABLE_MAX_ENTRIES);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53591
diff changeset
  5870
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5871
  StubGenerator g(code, all);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5872
}