src/hotspot/cpu/s390/macroAssembler_s390.cpp
author kbarrett
Fri, 22 Jun 2018 17:46:58 -0400
changeset 50728 9375184cec98
parent 50599 ecc2af326b5f
child 51633 21154cb84d2a
permissions -rw-r--r--
8205459: Rename Access API flag decorators Summary: Rename OOP_NOT_NULL, IN_HEAP_ARRAY, AS_DEST_NOT_INITIALIZED Reviewed-by: pliden, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
     1
/*
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48585
diff changeset
     2
 * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
49748
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49734
diff changeset
     3
 * Copyright (c) 2016, 2018, SAP SE. All rights reserved.
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
     4
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
     5
 *
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
     6
 * This code is free software; you can redistribute it and/or modify it
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
     7
 * under the terms of the GNU General Public License version 2 only, as
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
     8
 * published by the Free Software Foundation.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
     9
 *
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    14
 * accompanied this code).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    15
 *
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    19
 *
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    21
 * or visit www.oracle.com if you need additional information or have any
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    22
 * questions.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    23
 *
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    24
 */
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    25
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    26
#include "precompiled.hpp"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    27
#include "asm/codeBuffer.hpp"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    28
#include "asm/macroAssembler.inline.hpp"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    29
#include "compiler/disassembler.hpp"
49748
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49734
diff changeset
    30
#include "gc/shared/barrierSet.hpp"
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49734
diff changeset
    31
#include "gc/shared/barrierSetAssembler.hpp"
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    32
#include "gc/shared/collectedHeap.inline.hpp"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    33
#include "interpreter/interpreter.hpp"
49455
848864ed9b17 8199604: Rename CardTableModRefBS to CardTableBarrierSet
eosterlund
parents: 49449
diff changeset
    34
#include "gc/shared/cardTableBarrierSet.hpp"
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    35
#include "memory/resourceArea.hpp"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    36
#include "memory/universe.hpp"
50446
39ca7558bc43 8203353: Fixup inferred decorators in the interpreter
eosterlund
parents: 50162
diff changeset
    37
#include "oops/accessDecorators.hpp"
49592
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 49455
diff changeset
    38
#include "oops/compressedOops.inline.hpp"
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    39
#include "oops/klass.inline.hpp"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    40
#include "opto/compile.hpp"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    41
#include "opto/intrinsicnode.hpp"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    42
#include "opto/matcher.hpp"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    43
#include "prims/methodHandles.hpp"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    44
#include "registerSaver_s390.hpp"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    45
#include "runtime/biasedLocking.hpp"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    46
#include "runtime/icache.hpp"
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49347
diff changeset
    47
#include "runtime/interfaceSupport.inline.hpp"
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    48
#include "runtime/objectMonitor.hpp"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    49
#include "runtime/os.hpp"
48332
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
    50
#include "runtime/safepoint.hpp"
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
    51
#include "runtime/safepointMechanism.hpp"
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    52
#include "runtime/sharedRuntime.hpp"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    53
#include "runtime/stubRoutines.hpp"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    54
#include "utilities/events.hpp"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    55
#include "utilities/macros.hpp"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    56
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    57
#include <ucontext.h>
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    58
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    59
#define BLOCK_COMMENT(str) block_comment(str)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    60
#define BIND(label)        bind(label); BLOCK_COMMENT(#label ":")
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    61
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    62
// Move 32-bit register if destination and source are different.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    63
void MacroAssembler::lr_if_needed(Register rd, Register rs) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    64
  if (rs != rd) { z_lr(rd, rs); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    65
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    66
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    67
// Move register if destination and source are different.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    68
void MacroAssembler::lgr_if_needed(Register rd, Register rs) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    69
  if (rs != rd) { z_lgr(rd, rs); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    70
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    71
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    72
// Zero-extend 32-bit register into 64-bit register if destination and source are different.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    73
void MacroAssembler::llgfr_if_needed(Register rd, Register rs) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    74
  if (rs != rd) { z_llgfr(rd, rs); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    75
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    76
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    77
// Move float register if destination and source are different.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    78
void MacroAssembler::ldr_if_needed(FloatRegister rd, FloatRegister rs) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    79
  if (rs != rd) { z_ldr(rd, rs); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    80
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    81
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    82
// Move integer register if destination and source are different.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    83
// It is assumed that shorter-than-int types are already
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    84
// appropriately sign-extended.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    85
void MacroAssembler::move_reg_if_needed(Register dst, BasicType dst_type, Register src,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    86
                                        BasicType src_type) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    87
  assert((dst_type != T_FLOAT) && (dst_type != T_DOUBLE), "use move_freg for float types");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    88
  assert((src_type != T_FLOAT) && (src_type != T_DOUBLE), "use move_freg for float types");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    89
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    90
  if (dst_type == src_type) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    91
    lgr_if_needed(dst, src); // Just move all 64 bits.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    92
    return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    93
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    94
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    95
  switch (dst_type) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    96
    // Do not support these types for now.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    97
    //  case T_BOOLEAN:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    98
    case T_BYTE:  // signed byte
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    99
      switch (src_type) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   100
        case T_INT:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   101
          z_lgbr(dst, src);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   102
          break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   103
        default:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   104
          ShouldNotReachHere();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   105
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   106
      return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   107
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   108
    case T_CHAR:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   109
    case T_SHORT:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   110
      switch (src_type) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   111
        case T_INT:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   112
          if (dst_type == T_CHAR) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   113
            z_llghr(dst, src);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   114
          } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   115
            z_lghr(dst, src);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   116
          }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   117
          break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   118
        default:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   119
          ShouldNotReachHere();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   120
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   121
      return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   122
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   123
    case T_INT:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   124
      switch (src_type) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   125
        case T_BOOLEAN:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   126
        case T_BYTE:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   127
        case T_CHAR:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   128
        case T_SHORT:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   129
        case T_INT:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   130
        case T_LONG:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   131
        case T_OBJECT:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   132
        case T_ARRAY:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   133
        case T_VOID:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   134
        case T_ADDRESS:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   135
          lr_if_needed(dst, src);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   136
          // llgfr_if_needed(dst, src);  // zero-extend (in case we need to find a bug).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   137
          return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   138
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   139
        default:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   140
          assert(false, "non-integer src type");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   141
          return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   142
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   143
    case T_LONG:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   144
      switch (src_type) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   145
        case T_BOOLEAN:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   146
        case T_BYTE:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   147
        case T_CHAR:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   148
        case T_SHORT:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   149
        case T_INT:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   150
          z_lgfr(dst, src); // sign extension
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   151
          return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   152
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   153
        case T_LONG:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   154
        case T_OBJECT:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   155
        case T_ARRAY:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   156
        case T_VOID:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   157
        case T_ADDRESS:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   158
          lgr_if_needed(dst, src);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   159
          return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   160
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   161
        default:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   162
          assert(false, "non-integer src type");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   163
          return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   164
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   165
      return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   166
    case T_OBJECT:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   167
    case T_ARRAY:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   168
    case T_VOID:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   169
    case T_ADDRESS:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   170
      switch (src_type) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   171
        // These types don't make sense to be converted to pointers:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   172
        //      case T_BOOLEAN:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   173
        //      case T_BYTE:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   174
        //      case T_CHAR:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   175
        //      case T_SHORT:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   176
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   177
        case T_INT:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   178
          z_llgfr(dst, src); // zero extension
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   179
          return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   180
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   181
        case T_LONG:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   182
        case T_OBJECT:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   183
        case T_ARRAY:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   184
        case T_VOID:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   185
        case T_ADDRESS:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   186
          lgr_if_needed(dst, src);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   187
          return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   188
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   189
        default:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   190
          assert(false, "non-integer src type");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   191
          return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   192
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   193
      return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   194
    default:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   195
      assert(false, "non-integer dst type");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   196
      return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   197
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   198
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   199
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   200
// Move float register if destination and source are different.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   201
void MacroAssembler::move_freg_if_needed(FloatRegister dst, BasicType dst_type,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   202
                                         FloatRegister src, BasicType src_type) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   203
  assert((dst_type == T_FLOAT) || (dst_type == T_DOUBLE), "use move_reg for int types");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   204
  assert((src_type == T_FLOAT) || (src_type == T_DOUBLE), "use move_reg for int types");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   205
  if (dst_type == src_type) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   206
    ldr_if_needed(dst, src); // Just move all 64 bits.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   207
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   208
    switch (dst_type) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   209
      case T_FLOAT:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   210
        assert(src_type == T_DOUBLE, "invalid float type combination");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   211
        z_ledbr(dst, src);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   212
        return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   213
      case T_DOUBLE:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   214
        assert(src_type == T_FLOAT, "invalid float type combination");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   215
        z_ldebr(dst, src);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   216
        return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   217
      default:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   218
        assert(false, "non-float dst type");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   219
        return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   220
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   221
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   222
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   223
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   224
// Optimized emitter for reg to mem operations.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   225
// Uses modern instructions if running on modern hardware, classic instructions
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   226
// otherwise. Prefers (usually shorter) classic instructions if applicable.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   227
// Data register (reg) cannot be used as work register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   228
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   229
// Don't rely on register locking, instead pass a scratch register (Z_R0 by default).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   230
// CAUTION! Passing registers >= Z_R2 may produce bad results on old CPUs!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   231
void MacroAssembler::freg2mem_opt(FloatRegister reg,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   232
                                  int64_t       disp,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   233
                                  Register      index,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   234
                                  Register      base,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   235
                                  void (MacroAssembler::*modern) (FloatRegister, int64_t, Register, Register),
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   236
                                  void (MacroAssembler::*classic)(FloatRegister, int64_t, Register, Register),
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   237
                                  Register      scratch) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   238
  index = (index == noreg) ? Z_R0 : index;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   239
  if (Displacement::is_shortDisp(disp)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   240
    (this->*classic)(reg, disp, index, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   241
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   242
    if (Displacement::is_validDisp(disp)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   243
      (this->*modern)(reg, disp, index, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   244
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   245
      if (scratch != Z_R0 && scratch != Z_R1) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   246
        (this->*modern)(reg, disp, index, base);      // Will fail with disp out of range.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   247
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   248
        if (scratch != Z_R0) {   // scratch == Z_R1
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   249
          if ((scratch == index) || (index == base)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   250
            (this->*modern)(reg, disp, index, base);  // Will fail with disp out of range.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   251
          } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   252
            add2reg(scratch, disp, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   253
            (this->*classic)(reg, 0, index, scratch);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   254
            if (base == scratch) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   255
              add2reg(base, -disp);  // Restore base.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   256
            }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   257
          }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   258
        } else {   // scratch == Z_R0
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   259
          z_lgr(scratch, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   260
          add2reg(base, disp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   261
          (this->*classic)(reg, 0, index, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   262
          z_lgr(base, scratch);      // Restore base.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   263
        }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   264
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   265
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   266
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   267
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   268
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   269
void MacroAssembler::freg2mem_opt(FloatRegister reg, const Address &a, bool is_double) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   270
  if (is_double) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   271
    freg2mem_opt(reg, a.disp20(), a.indexOrR0(), a.baseOrR0(), MODERN_FFUN(z_stdy), CLASSIC_FFUN(z_std));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   272
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   273
    freg2mem_opt(reg, a.disp20(), a.indexOrR0(), a.baseOrR0(), MODERN_FFUN(z_stey), CLASSIC_FFUN(z_ste));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   274
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   275
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   276
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   277
// Optimized emitter for mem to reg operations.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   278
// Uses modern instructions if running on modern hardware, classic instructions
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   279
// otherwise. Prefers (usually shorter) classic instructions if applicable.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   280
// data register (reg) cannot be used as work register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   281
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   282
// Don't rely on register locking, instead pass a scratch register (Z_R0 by default).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   283
// CAUTION! Passing registers >= Z_R2 may produce bad results on old CPUs!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   284
void MacroAssembler::mem2freg_opt(FloatRegister reg,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   285
                                  int64_t       disp,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   286
                                  Register      index,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   287
                                  Register      base,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   288
                                  void (MacroAssembler::*modern) (FloatRegister, int64_t, Register, Register),
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   289
                                  void (MacroAssembler::*classic)(FloatRegister, int64_t, Register, Register),
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   290
                                  Register      scratch) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   291
  index = (index == noreg) ? Z_R0 : index;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   292
  if (Displacement::is_shortDisp(disp)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   293
    (this->*classic)(reg, disp, index, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   294
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   295
    if (Displacement::is_validDisp(disp)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   296
      (this->*modern)(reg, disp, index, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   297
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   298
      if (scratch != Z_R0 && scratch != Z_R1) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   299
        (this->*modern)(reg, disp, index, base);      // Will fail with disp out of range.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   300
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   301
        if (scratch != Z_R0) {   // scratch == Z_R1
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   302
          if ((scratch == index) || (index == base)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   303
            (this->*modern)(reg, disp, index, base);  // Will fail with disp out of range.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   304
          } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   305
            add2reg(scratch, disp, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   306
            (this->*classic)(reg, 0, index, scratch);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   307
            if (base == scratch) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   308
              add2reg(base, -disp);  // Restore base.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   309
            }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   310
          }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   311
        } else {   // scratch == Z_R0
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   312
          z_lgr(scratch, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   313
          add2reg(base, disp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   314
          (this->*classic)(reg, 0, index, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   315
          z_lgr(base, scratch);      // Restore base.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   316
        }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   317
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   318
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   319
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   320
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   321
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   322
void MacroAssembler::mem2freg_opt(FloatRegister reg, const Address &a, bool is_double) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   323
  if (is_double) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   324
    mem2freg_opt(reg, a.disp20(), a.indexOrR0(), a.baseOrR0(), MODERN_FFUN(z_ldy), CLASSIC_FFUN(z_ld));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   325
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   326
    mem2freg_opt(reg, a.disp20(), a.indexOrR0(), a.baseOrR0(), MODERN_FFUN(z_ley), CLASSIC_FFUN(z_le));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   327
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   328
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   329
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   330
// Optimized emitter for reg to mem operations.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   331
// Uses modern instructions if running on modern hardware, classic instructions
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   332
// otherwise. Prefers (usually shorter) classic instructions if applicable.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   333
// Data register (reg) cannot be used as work register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   334
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   335
// Don't rely on register locking, instead pass a scratch register
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   336
// (Z_R0 by default)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   337
// CAUTION! passing registers >= Z_R2 may produce bad results on old CPUs!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   338
void MacroAssembler::reg2mem_opt(Register reg,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   339
                                 int64_t  disp,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   340
                                 Register index,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   341
                                 Register base,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   342
                                 void (MacroAssembler::*modern) (Register, int64_t, Register, Register),
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   343
                                 void (MacroAssembler::*classic)(Register, int64_t, Register, Register),
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   344
                                 Register scratch) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   345
  index = (index == noreg) ? Z_R0 : index;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   346
  if (Displacement::is_shortDisp(disp)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   347
    (this->*classic)(reg, disp, index, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   348
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   349
    if (Displacement::is_validDisp(disp)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   350
      (this->*modern)(reg, disp, index, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   351
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   352
      if (scratch != Z_R0 && scratch != Z_R1) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   353
        (this->*modern)(reg, disp, index, base);      // Will fail with disp out of range.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   354
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   355
        if (scratch != Z_R0) {   // scratch == Z_R1
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   356
          if ((scratch == index) || (index == base)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   357
            (this->*modern)(reg, disp, index, base);  // Will fail with disp out of range.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   358
          } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   359
            add2reg(scratch, disp, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   360
            (this->*classic)(reg, 0, index, scratch);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   361
            if (base == scratch) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   362
              add2reg(base, -disp);  // Restore base.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   363
            }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   364
          }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   365
        } else {   // scratch == Z_R0
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   366
          if ((scratch == reg) || (scratch == base) || (reg == base)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   367
            (this->*modern)(reg, disp, index, base);  // Will fail with disp out of range.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   368
          } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   369
            z_lgr(scratch, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   370
            add2reg(base, disp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   371
            (this->*classic)(reg, 0, index, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   372
            z_lgr(base, scratch);    // Restore base.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   373
          }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   374
        }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   375
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   376
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   377
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   378
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   379
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   380
int MacroAssembler::reg2mem_opt(Register reg, const Address &a, bool is_double) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   381
  int store_offset = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   382
  if (is_double) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   383
    reg2mem_opt(reg, a.disp20(), a.indexOrR0(), a.baseOrR0(), MODERN_IFUN(z_stg), CLASSIC_IFUN(z_stg));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   384
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   385
    reg2mem_opt(reg, a.disp20(), a.indexOrR0(), a.baseOrR0(), MODERN_IFUN(z_sty), CLASSIC_IFUN(z_st));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   386
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   387
  return store_offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   388
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   389
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   390
// Optimized emitter for mem to reg operations.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   391
// Uses modern instructions if running on modern hardware, classic instructions
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   392
// otherwise. Prefers (usually shorter) classic instructions if applicable.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   393
// Data register (reg) will be used as work register where possible.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   394
void MacroAssembler::mem2reg_opt(Register reg,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   395
                                 int64_t  disp,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   396
                                 Register index,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   397
                                 Register base,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   398
                                 void (MacroAssembler::*modern) (Register, int64_t, Register, Register),
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   399
                                 void (MacroAssembler::*classic)(Register, int64_t, Register, Register)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   400
  index = (index == noreg) ? Z_R0 : index;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   401
  if (Displacement::is_shortDisp(disp)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   402
    (this->*classic)(reg, disp, index, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   403
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   404
    if (Displacement::is_validDisp(disp)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   405
      (this->*modern)(reg, disp, index, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   406
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   407
      if ((reg == index) && (reg == base)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   408
        z_sllg(reg, reg, 1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   409
        add2reg(reg, disp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   410
        (this->*classic)(reg, 0, noreg, reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   411
      } else if ((reg == index) && (reg != Z_R0)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   412
        add2reg(reg, disp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   413
        (this->*classic)(reg, 0, reg, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   414
      } else if (reg == base) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   415
        add2reg(reg, disp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   416
        (this->*classic)(reg, 0, index, reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   417
      } else if (reg != Z_R0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   418
        add2reg(reg, disp, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   419
        (this->*classic)(reg, 0, index, reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   420
      } else { // reg == Z_R0 && reg != base here
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   421
        add2reg(base, disp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   422
        (this->*classic)(reg, 0, index, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   423
        add2reg(base, -disp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   424
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   425
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   426
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   427
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   428
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   429
void MacroAssembler::mem2reg_opt(Register reg, const Address &a, bool is_double) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   430
  if (is_double) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   431
    z_lg(reg, a);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   432
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   433
    mem2reg_opt(reg, a.disp20(), a.indexOrR0(), a.baseOrR0(), MODERN_IFUN(z_ly), CLASSIC_IFUN(z_l));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   434
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   435
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   436
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   437
void MacroAssembler::mem2reg_signed_opt(Register reg, const Address &a) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   438
  mem2reg_opt(reg, a.disp20(), a.indexOrR0(), a.baseOrR0(), MODERN_IFUN(z_lgf), CLASSIC_IFUN(z_lgf));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   439
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   440
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   441
void MacroAssembler::and_imm(Register r, long mask,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   442
                             Register tmp /* = Z_R0 */,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   443
                             bool wide    /* = false */) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   444
  assert(wide || Immediate::is_simm32(mask), "mask value too large");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   445
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   446
  if (!wide) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   447
    z_nilf(r, mask);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   448
    return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   449
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   450
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   451
  assert(r != tmp, " need a different temporary register !");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   452
  load_const_optimized(tmp, mask);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   453
  z_ngr(r, tmp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   454
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   455
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   456
// Calculate the 1's complement.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   457
// Note: The condition code is neither preserved nor correctly set by this code!!!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   458
// Note: (wide == false) does not protect the high order half of the target register
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   459
//       from alteration. It only serves as optimization hint for 32-bit results.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   460
void MacroAssembler::not_(Register r1, Register r2, bool wide) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   461
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   462
  if ((r2 == noreg) || (r2 == r1)) { // Calc 1's complement in place.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   463
    z_xilf(r1, -1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   464
    if (wide) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   465
      z_xihf(r1, -1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   466
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   467
  } else { // Distinct src and dst registers.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   468
    if (VM_Version::has_DistinctOpnds()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   469
      load_const_optimized(r1, -1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   470
      z_xgrk(r1, r2, r1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   471
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   472
      if (wide) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   473
        z_lgr(r1, r2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   474
        z_xilf(r1, -1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   475
        z_xihf(r1, -1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   476
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   477
        z_lr(r1, r2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   478
        z_xilf(r1, -1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   479
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   480
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   481
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   482
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   483
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   484
unsigned long MacroAssembler::create_mask(int lBitPos, int rBitPos) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   485
  assert(lBitPos >=  0,      "zero is  leftmost bit position");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   486
  assert(rBitPos <= 63,      "63   is rightmost bit position");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   487
  assert(lBitPos <= rBitPos, "inverted selection interval");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   488
  return (lBitPos == 0 ? (unsigned long)(-1L) : ((1UL<<(63-lBitPos+1))-1)) & (~((1UL<<(63-rBitPos))-1));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   489
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   490
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   491
// Helper function for the "Rotate_then_<logicalOP>" emitters.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   492
// Rotate src, then mask register contents such that only bits in range survive.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   493
// For oneBits == false, all bits not in range are set to 0. Useful for deleting all bits outside range.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   494
// For oneBits == true,  all bits not in range are set to 1. Useful for preserving all bits outside range.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   495
// The caller must ensure that the selected range only contains bits with defined value.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   496
void MacroAssembler::rotate_then_mask(Register dst, Register src, int lBitPos, int rBitPos,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   497
                                      int nRotate, bool src32bit, bool dst32bit, bool oneBits) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   498
  assert(!(dst32bit && lBitPos < 32), "selection interval out of range for int destination");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   499
  bool sll4rll = (nRotate >= 0) && (nRotate <= (63-rBitPos)); // Substitute SLL(G) for RLL(G).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   500
  bool srl4rll = (nRotate <  0) && (-nRotate <= lBitPos);     // Substitute SRL(G) for RLL(G).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   501
  //  Pre-determine which parts of dst will be zero after shift/rotate.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   502
  bool llZero  =  sll4rll && (nRotate >= 16);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   503
  bool lhZero  = (sll4rll && (nRotate >= 32)) || (srl4rll && (nRotate <= -48));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   504
  bool lfZero  = llZero && lhZero;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   505
  bool hlZero  = (sll4rll && (nRotate >= 48)) || (srl4rll && (nRotate <= -32));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   506
  bool hhZero  =                                 (srl4rll && (nRotate <= -16));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   507
  bool hfZero  = hlZero && hhZero;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   508
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   509
  // rotate then mask src operand.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   510
  // if oneBits == true,  all bits outside selected range are 1s.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   511
  // if oneBits == false, all bits outside selected range are 0s.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   512
  if (src32bit) {   // There might be garbage in the upper 32 bits which will get masked away.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   513
    if (dst32bit) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   514
      z_rll(dst, src, nRotate);   // Copy and rotate, upper half of reg remains undisturbed.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   515
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   516
      if      (sll4rll) { z_sllg(dst, src,  nRotate); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   517
      else if (srl4rll) { z_srlg(dst, src, -nRotate); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   518
      else              { z_rllg(dst, src,  nRotate); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   519
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   520
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   521
    if      (sll4rll) { z_sllg(dst, src,  nRotate); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   522
    else if (srl4rll) { z_srlg(dst, src, -nRotate); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   523
    else              { z_rllg(dst, src,  nRotate); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   524
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   525
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   526
  unsigned long  range_mask    = create_mask(lBitPos, rBitPos);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   527
  unsigned int   range_mask_h  = (unsigned int)(range_mask >> 32);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   528
  unsigned int   range_mask_l  = (unsigned int)range_mask;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   529
  unsigned short range_mask_hh = (unsigned short)(range_mask >> 48);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   530
  unsigned short range_mask_hl = (unsigned short)(range_mask >> 32);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   531
  unsigned short range_mask_lh = (unsigned short)(range_mask >> 16);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   532
  unsigned short range_mask_ll = (unsigned short)range_mask;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   533
  // Works for z9 and newer H/W.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   534
  if (oneBits) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   535
    if ((~range_mask_l) != 0)                { z_oilf(dst, ~range_mask_l); } // All bits outside range become 1s.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   536
    if (((~range_mask_h) != 0) && !dst32bit) { z_oihf(dst, ~range_mask_h); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   537
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   538
    // All bits outside range become 0s
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   539
    if (((~range_mask_l) != 0) &&              !lfZero) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   540
      z_nilf(dst, range_mask_l);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   541
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   542
    if (((~range_mask_h) != 0) && !dst32bit && !hfZero) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   543
      z_nihf(dst, range_mask_h);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   544
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   545
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   546
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   547
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   548
// Rotate src, then insert selected range from rotated src into dst.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   549
// Clear dst before, if requested.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   550
void MacroAssembler::rotate_then_insert(Register dst, Register src, int lBitPos, int rBitPos,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   551
                                        int nRotate, bool clear_dst) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   552
  // This version does not depend on src being zero-extended int2long.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   553
  nRotate &= 0x003f;                                       // For risbg, pretend it's an unsigned value.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   554
  z_risbg(dst, src, lBitPos, rBitPos, nRotate, clear_dst); // Rotate, then insert selected, clear the rest.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   555
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   556
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   557
// Rotate src, then and selected range from rotated src into dst.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   558
// Set condition code only if so requested. Otherwise it is unpredictable.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   559
// See performance note in macroAssembler_s390.hpp for important information.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   560
void MacroAssembler::rotate_then_and(Register dst, Register src, int lBitPos, int rBitPos,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   561
                                     int nRotate, bool test_only) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   562
  guarantee(!test_only, "Emitter not fit for test_only instruction variant.");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   563
  // This version does not depend on src being zero-extended int2long.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   564
  nRotate &= 0x003f;                                       // For risbg, pretend it's an unsigned value.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   565
  z_rxsbg(dst, src, lBitPos, rBitPos, nRotate, test_only); // Rotate, then xor selected.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   566
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   567
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   568
// Rotate src, then or selected range from rotated src into dst.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   569
// Set condition code only if so requested. Otherwise it is unpredictable.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   570
// See performance note in macroAssembler_s390.hpp for important information.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   571
void MacroAssembler::rotate_then_or(Register dst, Register src,  int  lBitPos,  int  rBitPos,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   572
                                    int nRotate, bool test_only) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   573
  guarantee(!test_only, "Emitter not fit for test_only instruction variant.");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   574
  // This version does not depend on src being zero-extended int2long.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   575
  nRotate &= 0x003f;                                       // For risbg, pretend it's an unsigned value.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   576
  z_rosbg(dst, src, lBitPos, rBitPos, nRotate, test_only); // Rotate, then xor selected.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   577
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   578
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   579
// Rotate src, then xor selected range from rotated src into dst.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   580
// Set condition code only if so requested. Otherwise it is unpredictable.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   581
// See performance note in macroAssembler_s390.hpp for important information.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   582
void MacroAssembler::rotate_then_xor(Register dst, Register src,  int  lBitPos,  int  rBitPos,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   583
                                     int nRotate, bool test_only) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   584
  guarantee(!test_only, "Emitter not fit for test_only instruction variant.");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   585
    // This version does not depend on src being zero-extended int2long.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   586
  nRotate &= 0x003f;                                       // For risbg, pretend it's an unsigned value.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   587
  z_rxsbg(dst, src, lBitPos, rBitPos, nRotate, test_only); // Rotate, then xor selected.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   588
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   589
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   590
void MacroAssembler::add64(Register r1, RegisterOrConstant inc) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   591
  if (inc.is_register()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   592
    z_agr(r1, inc.as_register());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   593
  } else { // constant
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   594
    intptr_t imm = inc.as_constant();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   595
    add2reg(r1, imm);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   596
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   597
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   598
// Helper function to multiply the 64bit contents of a register by a 16bit constant.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   599
// The optimization tries to avoid the mghi instruction, since it uses the FPU for
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   600
// calculation and is thus rather slow.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   601
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   602
// There is no handling for special cases, e.g. cval==0 or cval==1.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   603
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   604
// Returns len of generated code block.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   605
unsigned int MacroAssembler::mul_reg64_const16(Register rval, Register work, int cval) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   606
  int block_start = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   607
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   608
  bool sign_flip = cval < 0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   609
  cval = sign_flip ? -cval : cval;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   610
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   611
  BLOCK_COMMENT("Reg64*Con16 {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   612
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   613
  int bit1 = cval & -cval;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   614
  if (bit1 == cval) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   615
    z_sllg(rval, rval, exact_log2(bit1));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   616
    if (sign_flip) { z_lcgr(rval, rval); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   617
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   618
    int bit2 = (cval-bit1) & -(cval-bit1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   619
    if ((bit1+bit2) == cval) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   620
      z_sllg(work, rval, exact_log2(bit1));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   621
      z_sllg(rval, rval, exact_log2(bit2));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   622
      z_agr(rval, work);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   623
      if (sign_flip) { z_lcgr(rval, rval); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   624
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   625
      if (sign_flip) { z_mghi(rval, -cval); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   626
      else           { z_mghi(rval,  cval); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   627
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   628
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   629
  BLOCK_COMMENT("} Reg64*Con16");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   630
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   631
  int block_end = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   632
  return block_end - block_start;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   633
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   634
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   635
// Generic operation r1 := r2 + imm.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   636
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   637
// Should produce the best code for each supported CPU version.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   638
// r2 == noreg yields r1 := r1 + imm
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   639
// imm == 0 emits either no instruction or r1 := r2 !
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   640
// NOTES: 1) Don't use this function where fixed sized
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   641
//           instruction sequences are required!!!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   642
//        2) Don't use this function if condition code
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   643
//           setting is required!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   644
//        3) Despite being declared as int64_t, the parameter imm
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   645
//           must be a simm_32 value (= signed 32-bit integer).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   646
void MacroAssembler::add2reg(Register r1, int64_t imm, Register r2) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   647
  assert(Immediate::is_simm32(imm), "probably an implicit conversion went wrong");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   648
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   649
  if (r2 == noreg) { r2 = r1; }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   650
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   651
  // Handle special case imm == 0.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   652
  if (imm == 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   653
    lgr_if_needed(r1, r2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   654
    // Nothing else to do.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   655
    return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   656
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   657
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   658
  if (!PreferLAoverADD || (r2 == Z_R0)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   659
    bool distinctOpnds = VM_Version::has_DistinctOpnds();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   660
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   661
    // Can we encode imm in 16 bits signed?
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   662
    if (Immediate::is_simm16(imm)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   663
      if (r1 == r2) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   664
        z_aghi(r1, imm);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   665
        return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   666
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   667
      if (distinctOpnds) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   668
        z_aghik(r1, r2, imm);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   669
        return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   670
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   671
      z_lgr(r1, r2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   672
      z_aghi(r1, imm);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   673
      return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   674
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   675
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   676
    // Can we encode imm in 12 bits unsigned?
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   677
    if (Displacement::is_shortDisp(imm)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   678
      z_la(r1, imm, r2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   679
      return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   680
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   681
    // Can we encode imm in 20 bits signed?
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   682
    if (Displacement::is_validDisp(imm)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   683
      // Always use LAY instruction, so we don't need the tmp register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   684
      z_lay(r1, imm, r2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   685
      return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   686
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   687
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   688
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   689
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   690
  // Can handle it (all possible values) with long immediates.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   691
  lgr_if_needed(r1, r2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   692
  z_agfi(r1, imm);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   693
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   694
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   695
// Generic operation r := b + x + d
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   696
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   697
// Addition of several operands with address generation semantics - sort of:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   698
//  - no restriction on the registers. Any register will do for any operand.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   699
//  - x == noreg: operand will be disregarded.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   700
//  - b == noreg: will use (contents of) result reg as operand (r := r + d).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   701
//  - x == Z_R0:  just disregard
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   702
//  - b == Z_R0:  use as operand. This is not address generation semantics!!!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   703
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   704
// The same restrictions as on add2reg() are valid!!!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   705
void MacroAssembler::add2reg_with_index(Register r, int64_t d, Register x, Register b) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   706
  assert(Immediate::is_simm32(d), "probably an implicit conversion went wrong");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   707
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   708
  if (x == noreg) { x = Z_R0; }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   709
  if (b == noreg) { b = r; }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   710
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   711
  // Handle special case x == R0.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   712
  if (x == Z_R0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   713
    // Can simply add the immediate value to the base register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   714
    add2reg(r, d, b);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   715
    return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   716
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   717
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   718
  if (!PreferLAoverADD || (b == Z_R0)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   719
    bool distinctOpnds = VM_Version::has_DistinctOpnds();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   720
    // Handle special case d == 0.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   721
    if (d == 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   722
      if (b == x)        { z_sllg(r, b, 1); return; }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   723
      if (r == x)        { z_agr(r, b);     return; }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   724
      if (r == b)        { z_agr(r, x);     return; }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   725
      if (distinctOpnds) { z_agrk(r, x, b); return; }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   726
      z_lgr(r, b);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   727
      z_agr(r, x);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   728
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   729
      if (x == b)             { z_sllg(r, x, 1); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   730
      else if (r == x)        { z_agr(r, b); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   731
      else if (r == b)        { z_agr(r, x); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   732
      else if (distinctOpnds) { z_agrk(r, x, b); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   733
      else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   734
        z_lgr(r, b);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   735
        z_agr(r, x);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   736
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   737
      add2reg(r, d);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   738
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   739
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   740
    // Can we encode imm in 12 bits unsigned?
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   741
    if (Displacement::is_shortDisp(d)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   742
      z_la(r, d, x, b);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   743
      return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   744
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   745
    // Can we encode imm in 20 bits signed?
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   746
    if (Displacement::is_validDisp(d)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   747
      z_lay(r, d, x, b);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   748
      return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   749
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   750
    z_la(r, 0, x, b);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   751
    add2reg(r, d);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   752
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   753
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   754
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   755
// Generic emitter (32bit) for direct memory increment.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   756
// For optimal code, do not specify Z_R0 as temp register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   757
void MacroAssembler::add2mem_32(const Address &a, int64_t imm, Register tmp) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   758
  if (VM_Version::has_MemWithImmALUOps() && Immediate::is_simm8(imm)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   759
    z_asi(a, imm);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   760
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   761
    z_lgf(tmp, a);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   762
    add2reg(tmp, imm);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   763
    z_st(tmp, a);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   764
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   765
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   766
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   767
void MacroAssembler::add2mem_64(const Address &a, int64_t imm, Register tmp) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   768
  if (VM_Version::has_MemWithImmALUOps() && Immediate::is_simm8(imm)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   769
    z_agsi(a, imm);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   770
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   771
    z_lg(tmp, a);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   772
    add2reg(tmp, imm);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   773
    z_stg(tmp, a);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   774
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   775
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   776
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   777
void MacroAssembler::load_sized_value(Register dst, Address src, size_t size_in_bytes, bool is_signed) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   778
  switch (size_in_bytes) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   779
    case  8: z_lg(dst, src); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   780
    case  4: is_signed ? z_lgf(dst, src) : z_llgf(dst, src); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   781
    case  2: is_signed ? z_lgh(dst, src) : z_llgh(dst, src); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   782
    case  1: is_signed ? z_lgb(dst, src) : z_llgc(dst, src); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   783
    default: ShouldNotReachHere();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   784
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   785
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   786
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   787
void MacroAssembler::store_sized_value(Register src, Address dst, size_t size_in_bytes) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   788
  switch (size_in_bytes) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   789
    case  8: z_stg(src, dst); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   790
    case  4: z_st(src, dst); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   791
    case  2: z_sth(src, dst); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   792
    case  1: z_stc(src, dst); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   793
    default: ShouldNotReachHere();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   794
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   795
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   796
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   797
// Split a si20 offset (20bit, signed) into an ui12 offset (12bit, unsigned) and
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   798
// a high-order summand in register tmp.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   799
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   800
// return value: <  0: No split required, si20 actually has property uimm12.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   801
//               >= 0: Split performed. Use return value as uimm12 displacement and
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   802
//                     tmp as index register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   803
int MacroAssembler::split_largeoffset(int64_t si20_offset, Register tmp, bool fixed_codelen, bool accumulate) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   804
  assert(Immediate::is_simm20(si20_offset), "sanity");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   805
  int lg_off = (int)si20_offset &  0x0fff; // Punch out low-order 12 bits, always positive.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   806
  int ll_off = (int)si20_offset & ~0x0fff; // Force low-order 12 bits to zero.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   807
  assert((Displacement::is_shortDisp(si20_offset) && (ll_off == 0)) ||
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   808
         !Displacement::is_shortDisp(si20_offset), "unexpected offset values");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   809
  assert((lg_off+ll_off) == si20_offset, "offset splitup error");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   810
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   811
  Register work = accumulate? Z_R0 : tmp;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   812
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   813
  if (fixed_codelen) {          // Len of code = 10 = 4 + 6.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   814
    z_lghi(work, ll_off>>12);   // Implicit sign extension.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   815
    z_slag(work, work, 12);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   816
  } else {                      // Len of code = 0..10.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   817
    if (ll_off == 0) { return -1; }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   818
    // ll_off has 8 significant bits (at most) plus sign.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   819
    if ((ll_off & 0x0000f000) == 0) {    // Non-zero bits only in upper halfbyte.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   820
      z_llilh(work, ll_off >> 16);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   821
      if (ll_off < 0) {                  // Sign-extension required.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   822
        z_lgfr(work, work);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   823
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   824
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   825
      if ((ll_off & 0x000f0000) == 0) {  // Non-zero bits only in lower halfbyte.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   826
        z_llill(work, ll_off);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   827
      } else {                           // Non-zero bits in both halfbytes.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   828
        z_lghi(work, ll_off>>12);        // Implicit sign extension.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   829
        z_slag(work, work, 12);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   830
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   831
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   832
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   833
  if (accumulate) { z_algr(tmp, work); } // len of code += 4
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   834
  return lg_off;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   835
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   836
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   837
void MacroAssembler::load_float_largeoffset(FloatRegister t, int64_t si20, Register a, Register tmp) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   838
  if (Displacement::is_validDisp(si20)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   839
    z_ley(t, si20, a);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   840
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   841
    // Fixed_codelen = true is a simple way to ensure that the size of load_float_largeoffset
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   842
    // does not depend on si20 (scratch buffer emit size == code buffer emit size for constant
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   843
    // pool loads).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   844
    bool accumulate    = true;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   845
    bool fixed_codelen = true;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   846
    Register work;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   847
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   848
    if (fixed_codelen) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   849
      z_lgr(tmp, a);  // Lgr_if_needed not applicable due to fixed_codelen.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   850
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   851
      accumulate = (a == tmp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   852
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   853
    work = tmp;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   854
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   855
    int disp12 = split_largeoffset(si20, work, fixed_codelen, accumulate);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   856
    if (disp12 < 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   857
      z_le(t, si20, work);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   858
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   859
      if (accumulate) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   860
        z_le(t, disp12, work);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   861
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   862
        z_le(t, disp12, work, a);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   863
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   864
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   865
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   866
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   867
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   868
void MacroAssembler::load_double_largeoffset(FloatRegister t, int64_t si20, Register a, Register tmp) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   869
  if (Displacement::is_validDisp(si20)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   870
    z_ldy(t, si20, a);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   871
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   872
    // Fixed_codelen = true is a simple way to ensure that the size of load_double_largeoffset
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   873
    // does not depend on si20 (scratch buffer emit size == code buffer emit size for constant
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   874
    // pool loads).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   875
    bool accumulate    = true;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   876
    bool fixed_codelen = true;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   877
    Register work;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   878
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   879
    if (fixed_codelen) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   880
      z_lgr(tmp, a);  // Lgr_if_needed not applicable due to fixed_codelen.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   881
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   882
      accumulate = (a == tmp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   883
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   884
    work = tmp;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   885
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   886
    int disp12 = split_largeoffset(si20, work, fixed_codelen, accumulate);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   887
    if (disp12 < 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   888
      z_ld(t, si20, work);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   889
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   890
      if (accumulate) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   891
        z_ld(t, disp12, work);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   892
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   893
        z_ld(t, disp12, work, a);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   894
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   895
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   896
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   897
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   898
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   899
// PCrelative TOC access.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   900
// Returns distance (in bytes) from current position to start of consts section.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   901
// Returns 0 (zero) if no consts section exists or if it has size zero.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   902
long MacroAssembler::toc_distance() {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   903
  CodeSection* cs = code()->consts();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   904
  return (long)((cs != NULL) ? cs->start()-pc() : 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   905
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   906
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   907
// Implementation on x86/sparc assumes that constant and instruction section are
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   908
// adjacent, but this doesn't hold. Two special situations may occur, that we must
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   909
// be able to handle:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   910
//   1. const section may be located apart from the inst section.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   911
//   2. const section may be empty
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   912
// In both cases, we use the const section's start address to compute the "TOC",
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   913
// this seems to occur only temporarily; in the final step we always seem to end up
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   914
// with the pc-relatice variant.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   915
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   916
// PC-relative offset could be +/-2**32 -> use long for disp
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   917
// Furthermore: makes no sense to have special code for
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   918
// adjacent const and inst sections.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   919
void MacroAssembler::load_toc(Register Rtoc) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   920
  // Simply use distance from start of const section (should be patched in the end).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   921
  long disp = toc_distance();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   922
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   923
  RelocationHolder rspec = internal_word_Relocation::spec(pc() + disp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   924
  relocate(rspec);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   925
  z_larl(Rtoc, RelAddr::pcrel_off32(disp));  // Offset is in halfwords.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   926
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   927
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   928
// PCrelative TOC access.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   929
// Load from anywhere pcrelative (with relocation of load instr)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   930
void MacroAssembler::load_long_pcrelative(Register Rdst, address dataLocation) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   931
  address          pc             = this->pc();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   932
  ptrdiff_t        total_distance = dataLocation - pc;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   933
  RelocationHolder rspec          = internal_word_Relocation::spec(dataLocation);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   934
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   935
  assert((total_distance & 0x01L) == 0, "halfword alignment is mandatory");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   936
  assert(total_distance != 0, "sanity");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   937
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   938
  // Some extra safety net.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   939
  if (!RelAddr::is_in_range_of_RelAddr32(total_distance)) {
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
   940
    guarantee(RelAddr::is_in_range_of_RelAddr32(total_distance), "load_long_pcrelative can't handle distance " INTPTR_FORMAT, total_distance);
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   941
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   942
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   943
  (this)->relocate(rspec, relocInfo::pcrel_addr_format);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   944
  z_lgrl(Rdst, RelAddr::pcrel_off32(total_distance));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   945
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   946
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   947
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   948
// PCrelative TOC access.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   949
// Load from anywhere pcrelative (with relocation of load instr)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   950
// loaded addr has to be relocated when added to constant pool.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   951
void MacroAssembler::load_addr_pcrelative(Register Rdst, address addrLocation) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   952
  address          pc             = this->pc();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   953
  ptrdiff_t        total_distance = addrLocation - pc;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   954
  RelocationHolder rspec          = internal_word_Relocation::spec(addrLocation);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   955
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   956
  assert((total_distance & 0x01L) == 0, "halfword alignment is mandatory");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   957
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   958
  // Some extra safety net.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   959
  if (!RelAddr::is_in_range_of_RelAddr32(total_distance)) {
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
   960
    guarantee(RelAddr::is_in_range_of_RelAddr32(total_distance), "load_long_pcrelative can't handle distance " INTPTR_FORMAT, total_distance);
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   961
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   962
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   963
  (this)->relocate(rspec, relocInfo::pcrel_addr_format);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   964
  z_lgrl(Rdst, RelAddr::pcrel_off32(total_distance));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   965
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   966
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   967
// Generic operation: load a value from memory and test.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   968
// CondCode indicates the sign (<0, ==0, >0) of the loaded value.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   969
void MacroAssembler::load_and_test_byte(Register dst, const Address &a) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   970
  z_lb(dst, a);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   971
  z_ltr(dst, dst);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   972
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   973
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   974
void MacroAssembler::load_and_test_short(Register dst, const Address &a) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   975
  int64_t disp = a.disp20();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   976
  if (Displacement::is_shortDisp(disp)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   977
    z_lh(dst, a);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   978
  } else if (Displacement::is_longDisp(disp)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   979
    z_lhy(dst, a);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   980
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   981
    guarantee(false, "displacement out of range");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   982
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   983
  z_ltr(dst, dst);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   984
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   985
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   986
void MacroAssembler::load_and_test_int(Register dst, const Address &a) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   987
  z_lt(dst, a);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   988
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   989
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   990
void MacroAssembler::load_and_test_int2long(Register dst, const Address &a) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   991
  z_ltgf(dst, a);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   992
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   993
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   994
void MacroAssembler::load_and_test_long(Register dst, const Address &a) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   995
  z_ltg(dst, a);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   996
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   997
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   998
// Test a bit in memory.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
   999
void MacroAssembler::testbit(const Address &a, unsigned int bit) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1000
  assert(a.index() == noreg, "no index reg allowed in testbit");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1001
  if (bit <= 7) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1002
    z_tm(a.disp() + 3, a.base(), 1 << bit);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1003
  } else if (bit <= 15) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1004
    z_tm(a.disp() + 2, a.base(), 1 << (bit - 8));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1005
  } else if (bit <= 23) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1006
    z_tm(a.disp() + 1, a.base(), 1 << (bit - 16));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1007
  } else if (bit <= 31) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1008
    z_tm(a.disp() + 0, a.base(), 1 << (bit - 24));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1009
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1010
    ShouldNotReachHere();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1011
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1012
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1013
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1014
// Test a bit in a register. Result is reflected in CC.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1015
void MacroAssembler::testbit(Register r, unsigned int bitPos) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1016
  if (bitPos < 16) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1017
    z_tmll(r, 1U<<bitPos);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1018
  } else if (bitPos < 32) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1019
    z_tmlh(r, 1U<<(bitPos-16));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1020
  } else if (bitPos < 48) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1021
    z_tmhl(r, 1U<<(bitPos-32));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1022
  } else if (bitPos < 64) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1023
    z_tmhh(r, 1U<<(bitPos-48));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1024
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1025
    ShouldNotReachHere();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1026
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1027
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1028
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  1029
void MacroAssembler::prefetch_read(Address a) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  1030
  z_pfd(1, a.disp20(), a.indexOrR0(), a.base());
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  1031
}
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  1032
void MacroAssembler::prefetch_update(Address a) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  1033
  z_pfd(2, a.disp20(), a.indexOrR0(), a.base());
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  1034
}
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  1035
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1036
// Clear a register, i.e. load const zero into reg.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1037
// Return len (in bytes) of generated instruction(s).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1038
// whole_reg: Clear 64 bits if true, 32 bits otherwise.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1039
// set_cc:    Use instruction that sets the condition code, if true.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1040
int MacroAssembler::clear_reg(Register r, bool whole_reg, bool set_cc) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1041
  unsigned int start_off = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1042
  if (whole_reg) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1043
    set_cc ? z_xgr(r, r) : z_laz(r, 0, Z_R0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1044
  } else {  // Only 32bit register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1045
    set_cc ? z_xr(r, r) : z_lhi(r, 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1046
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1047
  return offset() - start_off;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1048
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1049
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1050
#ifdef ASSERT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1051
int MacroAssembler::preset_reg(Register r, unsigned long pattern, int pattern_len) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1052
  switch (pattern_len) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1053
    case 1:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1054
      pattern = (pattern & 0x000000ff)  | ((pattern & 0x000000ff)<<8);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1055
    case 2:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1056
      pattern = (pattern & 0x0000ffff)  | ((pattern & 0x0000ffff)<<16);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1057
    case 4:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1058
      pattern = (pattern & 0xffffffffL) | ((pattern & 0xffffffffL)<<32);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1059
    case 8:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1060
      return load_const_optimized_rtn_len(r, pattern, true);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1061
      break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1062
    default:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1063
      guarantee(false, "preset_reg: bad len");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1064
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1065
  return 0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1066
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1067
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1068
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1069
// addr: Address descriptor of memory to clear index register will not be used !
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1070
// size: Number of bytes to clear.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1071
//    !!! DO NOT USE THEM FOR ATOMIC MEMORY CLEARING !!!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1072
//    !!! Use store_const() instead                  !!!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1073
void MacroAssembler::clear_mem(const Address& addr, unsigned size) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1074
  guarantee(size <= 256, "MacroAssembler::clear_mem: size too large");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1075
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1076
  if (size == 1) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1077
    z_mvi(addr, 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1078
    return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1079
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1080
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1081
  switch (size) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1082
    case 2: z_mvhhi(addr, 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1083
      return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1084
    case 4: z_mvhi(addr, 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1085
      return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1086
    case 8: z_mvghi(addr, 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1087
      return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1088
    default: ; // Fallthru to xc.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1089
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1090
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1091
  z_xc(addr, size, addr);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1092
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1093
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1094
void MacroAssembler::align(int modulus) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1095
  while (offset() % modulus != 0) z_nop();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1096
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1097
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1098
// Special version for non-relocateable code if required alignment
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1099
// is larger than CodeEntryAlignment.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1100
void MacroAssembler::align_address(int modulus) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1101
  while ((uintptr_t)pc() % modulus != 0) z_nop();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1102
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1103
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1104
Address MacroAssembler::argument_address(RegisterOrConstant arg_slot,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1105
                                         Register temp_reg,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1106
                                         int64_t extra_slot_offset) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1107
  // On Z, we can have index and disp in an Address. So don't call argument_offset,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1108
  // which issues an unnecessary add instruction.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1109
  int stackElementSize = Interpreter::stackElementSize;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1110
  int64_t offset = extra_slot_offset * stackElementSize;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1111
  const Register argbase = Z_esp;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1112
  if (arg_slot.is_constant()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1113
    offset += arg_slot.as_constant() * stackElementSize;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1114
    return Address(argbase, offset);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1115
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1116
  // else
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1117
  assert(temp_reg != noreg, "must specify");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1118
  assert(temp_reg != Z_ARG1, "base and index are conflicting");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1119
  z_sllg(temp_reg, arg_slot.as_register(), exact_log2(stackElementSize)); // tempreg = arg_slot << 3
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1120
  return Address(argbase, temp_reg, offset);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1121
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1122
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1123
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1124
//===================================================================
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1125
//===   START   C O N S T A N T S   I N   C O D E   S T R E A M   ===
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1126
//===================================================================
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1127
//===            P A T CH A B L E   C O N S T A N T S             ===
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1128
//===================================================================
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1129
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1130
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1131
//---------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1132
//  Load (patchable) constant into register
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1133
//---------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1134
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1135
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1136
// Load absolute address (and try to optimize).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1137
//   Note: This method is usable only for position-fixed code,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1138
//         referring to a position-fixed target location.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1139
//         If not so, relocations and patching must be used.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1140
void MacroAssembler::load_absolute_address(Register d, address addr) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1141
  assert(addr != NULL, "should not happen");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1142
  BLOCK_COMMENT("load_absolute_address:");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1143
  if (addr == NULL) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1144
    z_larl(d, pc()); // Dummy emit for size calc.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1145
    return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1146
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1147
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1148
  if (RelAddr::is_in_range_of_RelAddr32(addr, pc())) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1149
    z_larl(d, addr);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1150
    return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1151
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1152
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1153
  load_const_optimized(d, (long)addr);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1154
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1155
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1156
// Load a 64bit constant.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1157
// Patchable code sequence, but not atomically patchable.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1158
// Make sure to keep code size constant -> no value-dependent optimizations.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1159
// Do not kill condition code.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1160
void MacroAssembler::load_const(Register t, long x) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1161
  Assembler::z_iihf(t, (int)(x >> 32));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1162
  Assembler::z_iilf(t, (int)(x & 0xffffffff));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1163
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1164
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1165
// Load a 32bit constant into a 64bit register, sign-extend or zero-extend.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1166
// Patchable code sequence, but not atomically patchable.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1167
// Make sure to keep code size constant -> no value-dependent optimizations.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1168
// Do not kill condition code.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1169
void MacroAssembler::load_const_32to64(Register t, int64_t x, bool sign_extend) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1170
  if (sign_extend) { Assembler::z_lgfi(t, x); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1171
  else             { Assembler::z_llilf(t, x); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1172
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1173
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1174
// Load narrow oop constant, no decompression.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1175
void MacroAssembler::load_narrow_oop(Register t, narrowOop a) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1176
  assert(UseCompressedOops, "must be on to call this method");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1177
  load_const_32to64(t, a, false /*sign_extend*/);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1178
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1179
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1180
// Load narrow klass constant, compression required.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1181
void MacroAssembler::load_narrow_klass(Register t, Klass* k) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1182
  assert(UseCompressedClassPointers, "must be on to call this method");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1183
  narrowKlass encoded_k = Klass::encode_klass(k);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1184
  load_const_32to64(t, encoded_k, false /*sign_extend*/);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1185
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1186
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1187
//------------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1188
//  Compare (patchable) constant with register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1189
//------------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1190
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1191
// Compare narrow oop in reg with narrow oop constant, no decompression.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1192
void MacroAssembler::compare_immediate_narrow_oop(Register oop1, narrowOop oop2) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1193
  assert(UseCompressedOops, "must be on to call this method");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1194
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1195
  Assembler::z_clfi(oop1, oop2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1196
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1197
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1198
// Compare narrow oop in reg with narrow oop constant, no decompression.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1199
void MacroAssembler::compare_immediate_narrow_klass(Register klass1, Klass* klass2) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1200
  assert(UseCompressedClassPointers, "must be on to call this method");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1201
  narrowKlass encoded_k = Klass::encode_klass(klass2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1202
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1203
  Assembler::z_clfi(klass1, encoded_k);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1204
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1205
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1206
//----------------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1207
//  Check which kind of load_constant we have here.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1208
//----------------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1209
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1210
// Detection of CPU version dependent load_const sequence.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1211
// The detection is valid only for code sequences generated by load_const,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1212
// not load_const_optimized.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1213
bool MacroAssembler::is_load_const(address a) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1214
  unsigned long inst1, inst2;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1215
  unsigned int  len1,  len2;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1216
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1217
  len1 = get_instruction(a, &inst1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1218
  len2 = get_instruction(a + len1, &inst2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1219
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1220
  return is_z_iihf(inst1) && is_z_iilf(inst2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1221
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1222
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1223
// Detection of CPU version dependent load_const_32to64 sequence.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1224
// Mostly used for narrow oops and narrow Klass pointers.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1225
// The detection is valid only for code sequences generated by load_const_32to64.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1226
bool MacroAssembler::is_load_const_32to64(address pos) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1227
  unsigned long inst1, inst2;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1228
  unsigned int len1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1229
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1230
  len1 = get_instruction(pos, &inst1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1231
  return is_z_llilf(inst1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1232
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1233
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1234
// Detection of compare_immediate_narrow sequence.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1235
// The detection is valid only for code sequences generated by compare_immediate_narrow_oop.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1236
bool MacroAssembler::is_compare_immediate32(address pos) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1237
  return is_equal(pos, CLFI_ZOPC, RIL_MASK);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1238
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1239
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1240
// Detection of compare_immediate_narrow sequence.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1241
// The detection is valid only for code sequences generated by compare_immediate_narrow_oop.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1242
bool MacroAssembler::is_compare_immediate_narrow_oop(address pos) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1243
  return is_compare_immediate32(pos);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1244
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1245
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1246
// Detection of compare_immediate_narrow sequence.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1247
// The detection is valid only for code sequences generated by compare_immediate_narrow_klass.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1248
bool MacroAssembler::is_compare_immediate_narrow_klass(address pos) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1249
  return is_compare_immediate32(pos);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1250
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1251
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1252
//-----------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1253
//  patch the load_constant
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1254
//-----------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1255
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1256
// CPU-version dependend patching of load_const.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1257
void MacroAssembler::patch_const(address a, long x) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1258
  assert(is_load_const(a), "not a load of a constant");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1259
  set_imm32((address)a, (int) ((x >> 32) & 0xffffffff));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1260
  set_imm32((address)(a + 6), (int)(x & 0xffffffff));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1261
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1262
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1263
// Patching the value of CPU version dependent load_const_32to64 sequence.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1264
// The passed ptr MUST be in compressed format!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1265
int MacroAssembler::patch_load_const_32to64(address pos, int64_t np) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1266
  assert(is_load_const_32to64(pos), "not a load of a narrow ptr (oop or klass)");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1267
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1268
  set_imm32(pos, np);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1269
  return 6;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1270
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1271
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1272
// Patching the value of CPU version dependent compare_immediate_narrow sequence.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1273
// The passed ptr MUST be in compressed format!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1274
int MacroAssembler::patch_compare_immediate_32(address pos, int64_t np) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1275
  assert(is_compare_immediate32(pos), "not a compressed ptr compare");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1276
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1277
  set_imm32(pos, np);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1278
  return 6;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1279
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1280
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1281
// Patching the immediate value of CPU version dependent load_narrow_oop sequence.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1282
// The passed ptr must NOT be in compressed format!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1283
int MacroAssembler::patch_load_narrow_oop(address pos, oop o) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1284
  assert(UseCompressedOops, "Can only patch compressed oops");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1285
49592
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 49455
diff changeset
  1286
  narrowOop no = CompressedOops::encode(o);
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1287
  return patch_load_const_32to64(pos, no);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1288
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1289
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1290
// Patching the immediate value of CPU version dependent load_narrow_klass sequence.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1291
// The passed ptr must NOT be in compressed format!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1292
int MacroAssembler::patch_load_narrow_klass(address pos, Klass* k) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1293
  assert(UseCompressedClassPointers, "Can only patch compressed klass pointers");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1294
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1295
  narrowKlass nk = Klass::encode_klass(k);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1296
  return patch_load_const_32to64(pos, nk);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1297
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1298
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1299
// Patching the immediate value of CPU version dependent compare_immediate_narrow_oop sequence.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1300
// The passed ptr must NOT be in compressed format!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1301
int MacroAssembler::patch_compare_immediate_narrow_oop(address pos, oop o) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1302
  assert(UseCompressedOops, "Can only patch compressed oops");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1303
49592
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 49455
diff changeset
  1304
  narrowOop no = CompressedOops::encode(o);
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1305
  return patch_compare_immediate_32(pos, no);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1306
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1307
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1308
// Patching the immediate value of CPU version dependent compare_immediate_narrow_klass sequence.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1309
// The passed ptr must NOT be in compressed format!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1310
int MacroAssembler::patch_compare_immediate_narrow_klass(address pos, Klass* k) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1311
  assert(UseCompressedClassPointers, "Can only patch compressed klass pointers");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1312
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1313
  narrowKlass nk = Klass::encode_klass(k);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1314
  return patch_compare_immediate_32(pos, nk);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1315
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1316
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1317
//------------------------------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1318
//  Extract the constant from a load_constant instruction stream.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1319
//------------------------------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1320
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1321
// Get constant from a load_const sequence.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1322
long MacroAssembler::get_const(address a) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1323
  assert(is_load_const(a), "not a load of a constant");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1324
  unsigned long x;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1325
  x =  (((unsigned long) (get_imm32(a,0) & 0xffffffff)) << 32);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1326
  x |= (((unsigned long) (get_imm32(a,1) & 0xffffffff)));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1327
  return (long) x;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1328
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1329
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1330
//--------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1331
//  Store a constant in memory.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1332
//--------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1333
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1334
// General emitter to move a constant to memory.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1335
// The store is atomic.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1336
//  o Address must be given in RS format (no index register)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1337
//  o Displacement should be 12bit unsigned for efficiency. 20bit signed also supported.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1338
//  o Constant can be 1, 2, 4, or 8 bytes, signed or unsigned.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1339
//  o Memory slot can be 1, 2, 4, or 8 bytes, signed or unsigned.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1340
//  o Memory slot must be at least as wide as constant, will assert otherwise.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1341
//  o Signed constants will sign-extend, unsigned constants will zero-extend to slot width.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1342
int MacroAssembler::store_const(const Address &dest, long imm,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1343
                                unsigned int lm, unsigned int lc,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1344
                                Register scratch) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1345
  int64_t  disp = dest.disp();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1346
  Register base = dest.base();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1347
  assert(!dest.has_index(), "not supported");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1348
  assert((lm==1)||(lm==2)||(lm==4)||(lm==8), "memory   length not supported");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1349
  assert((lc==1)||(lc==2)||(lc==4)||(lc==8), "constant length not supported");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1350
  assert(lm>=lc, "memory slot too small");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1351
  assert(lc==8 || Immediate::is_simm(imm, lc*8), "const out of range");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1352
  assert(Displacement::is_validDisp(disp), "displacement out of range");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1353
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1354
  bool is_shortDisp = Displacement::is_shortDisp(disp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1355
  int store_offset = -1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1356
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1357
  // For target len == 1 it's easy.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1358
  if (lm == 1) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1359
    store_offset = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1360
    if (is_shortDisp) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1361
      z_mvi(disp, base, imm);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1362
      return store_offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1363
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1364
      z_mviy(disp, base, imm);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1365
      return store_offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1366
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1367
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1368
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1369
  // All the "good stuff" takes an unsigned displacement.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1370
  if (is_shortDisp) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1371
    // NOTE: Cannot use clear_mem for imm==0, because it is not atomic.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1372
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1373
    store_offset = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1374
    switch (lm) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1375
      case 2:  // Lc == 1 handled correctly here, even for unsigned. Instruction does no widening.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1376
        z_mvhhi(disp, base, imm);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1377
        return store_offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1378
      case 4:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1379
        if (Immediate::is_simm16(imm)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1380
          z_mvhi(disp, base, imm);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1381
          return store_offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1382
        }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1383
        break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1384
      case 8:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1385
        if (Immediate::is_simm16(imm)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1386
          z_mvghi(disp, base, imm);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1387
          return store_offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1388
        }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1389
        break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1390
      default:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1391
        ShouldNotReachHere();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1392
        break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1393
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1394
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1395
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1396
  //  Can't optimize, so load value and store it.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1397
  guarantee(scratch != noreg, " need a scratch register here !");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1398
  if (imm != 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1399
    load_const_optimized(scratch, imm);  // Preserves CC anyway.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1400
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1401
    // Leave CC alone!!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1402
    (void) clear_reg(scratch, true, false); // Indicate unused result.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1403
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1404
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1405
  store_offset = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1406
  if (is_shortDisp) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1407
    switch (lm) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1408
      case 2:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1409
        z_sth(scratch, disp, Z_R0, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1410
        return store_offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1411
      case 4:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1412
        z_st(scratch, disp, Z_R0, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1413
        return store_offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1414
      case 8:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1415
        z_stg(scratch, disp, Z_R0, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1416
        return store_offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1417
      default:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1418
        ShouldNotReachHere();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1419
        break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1420
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1421
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1422
    switch (lm) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1423
      case 2:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1424
        z_sthy(scratch, disp, Z_R0, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1425
        return store_offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1426
      case 4:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1427
        z_sty(scratch, disp, Z_R0, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1428
        return store_offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1429
      case 8:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1430
        z_stg(scratch, disp, Z_R0, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1431
        return store_offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1432
      default:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1433
        ShouldNotReachHere();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1434
        break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1435
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1436
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1437
  return -1; // should not reach here
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1438
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1439
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1440
//===================================================================
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1441
//===       N O T   P A T CH A B L E   C O N S T A N T S          ===
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1442
//===================================================================
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1443
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1444
// Load constant x into register t with a fast instrcution sequence
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1445
// depending on the bits in x. Preserves CC under all circumstances.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1446
int MacroAssembler::load_const_optimized_rtn_len(Register t, long x, bool emit) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1447
  if (x == 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1448
    int len;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1449
    if (emit) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1450
      len = clear_reg(t, true, false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1451
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1452
      len = 4;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1453
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1454
    return len;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1455
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1456
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1457
  if (Immediate::is_simm16(x)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1458
    if (emit) { z_lghi(t, x); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1459
    return 4;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1460
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1461
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1462
  // 64 bit value: | part1 | part2 | part3 | part4 |
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1463
  // At least one part is not zero!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1464
  int part1 = ((x >> 32) & 0xffff0000) >> 16;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1465
  int part2 = (x >> 32) & 0x0000ffff;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1466
  int part3 = (x & 0xffff0000) >> 16;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1467
  int part4 = (x & 0x0000ffff);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1468
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1469
  // Lower word only (unsigned).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1470
  if ((part1 == 0) && (part2 == 0)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1471
    if (part3 == 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1472
      if (emit) z_llill(t, part4);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1473
      return 4;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1474
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1475
    if (part4 == 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1476
      if (emit) z_llilh(t, part3);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1477
      return 4;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1478
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1479
    if (emit) z_llilf(t, (int)(x & 0xffffffff));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1480
    return 6;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1481
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1482
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1483
  // Upper word only.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1484
  if ((part3 == 0) && (part4 == 0)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1485
    if (part1 == 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1486
      if (emit) z_llihl(t, part2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1487
      return 4;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1488
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1489
    if (part2 == 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1490
      if (emit) z_llihh(t, part1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1491
      return 4;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1492
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1493
    if (emit) z_llihf(t, (int)(x >> 32));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1494
    return 6;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1495
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1496
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1497
  // Lower word only (signed).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1498
  if ((part1 == 0x0000ffff) && (part2 == 0x0000ffff) && ((part3 & 0x00008000) != 0)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1499
    if (emit) z_lgfi(t, (int)(x & 0xffffffff));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1500
    return 6;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1501
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1502
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1503
  int len = 0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1504
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1505
  if ((part1 == 0) || (part2 == 0)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1506
    if (part1 == 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1507
      if (emit) z_llihl(t, part2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1508
      len += 4;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1509
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1510
      if (emit) z_llihh(t, part1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1511
      len += 4;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1512
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1513
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1514
    if (emit) z_llihf(t, (int)(x >> 32));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1515
    len += 6;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1516
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1517
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1518
  if ((part3 == 0) || (part4 == 0)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1519
    if (part3 == 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1520
      if (emit) z_iill(t, part4);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1521
      len += 4;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1522
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1523
      if (emit) z_iilh(t, part3);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1524
      len += 4;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1525
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1526
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1527
    if (emit) z_iilf(t, (int)(x & 0xffffffff));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1528
    len += 6;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1529
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1530
  return len;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1531
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1532
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1533
//=====================================================================
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1534
//===     H I G H E R   L E V E L   B R A N C H   E M I T T E R S   ===
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1535
//=====================================================================
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1536
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1537
// Note: In the worst case, one of the scratch registers is destroyed!!!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1538
void MacroAssembler::compare32_and_branch(Register r1, RegisterOrConstant x2, branch_condition cond, Label& lbl) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1539
  // Right operand is constant.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1540
  if (x2.is_constant()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1541
    jlong value = x2.as_constant();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1542
    compare_and_branch_optimized(r1, value, cond, lbl, /*len64=*/false, /*has_sign=*/true);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1543
    return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1544
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1545
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1546
  // Right operand is in register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1547
  compare_and_branch_optimized(r1, x2.as_register(), cond, lbl, /*len64=*/false, /*has_sign=*/true);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1548
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1549
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1550
// Note: In the worst case, one of the scratch registers is destroyed!!!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1551
void MacroAssembler::compareU32_and_branch(Register r1, RegisterOrConstant x2, branch_condition cond, Label& lbl) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1552
  // Right operand is constant.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1553
  if (x2.is_constant()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1554
    jlong value = x2.as_constant();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1555
    compare_and_branch_optimized(r1, value, cond, lbl, /*len64=*/false, /*has_sign=*/false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1556
    return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1557
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1558
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1559
  // Right operand is in register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1560
  compare_and_branch_optimized(r1, x2.as_register(), cond, lbl, /*len64=*/false, /*has_sign=*/false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1561
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1562
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1563
// Note: In the worst case, one of the scratch registers is destroyed!!!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1564
void MacroAssembler::compare64_and_branch(Register r1, RegisterOrConstant x2, branch_condition cond, Label& lbl) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1565
  // Right operand is constant.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1566
  if (x2.is_constant()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1567
    jlong value = x2.as_constant();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1568
    compare_and_branch_optimized(r1, value, cond, lbl, /*len64=*/true, /*has_sign=*/true);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1569
    return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1570
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1571
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1572
  // Right operand is in register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1573
  compare_and_branch_optimized(r1, x2.as_register(), cond, lbl, /*len64=*/true, /*has_sign=*/true);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1574
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1575
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1576
void MacroAssembler::compareU64_and_branch(Register r1, RegisterOrConstant x2, branch_condition cond, Label& lbl) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1577
  // Right operand is constant.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1578
  if (x2.is_constant()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1579
    jlong value = x2.as_constant();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1580
    compare_and_branch_optimized(r1, value, cond, lbl, /*len64=*/true, /*has_sign=*/false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1581
    return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1582
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1583
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1584
  // Right operand is in register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1585
  compare_and_branch_optimized(r1, x2.as_register(), cond, lbl, /*len64=*/true, /*has_sign=*/false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1586
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1587
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1588
// Generate an optimal branch to the branch target.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1589
// Optimal means that a relative branch (brc or brcl) is used if the
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1590
// branch distance is short enough. Loading the target address into a
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1591
// register and branching via reg is used as fallback only.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1592
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1593
// Used registers:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1594
//   Z_R1 - work reg. Holds branch target address.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1595
//          Used in fallback case only.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1596
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1597
// This version of branch_optimized is good for cases where the target address is known
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1598
// and constant, i.e. is never changed (no relocation, no patching).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1599
void MacroAssembler::branch_optimized(Assembler::branch_condition cond, address branch_addr) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1600
  address branch_origin = pc();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1601
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1602
  if (RelAddr::is_in_range_of_RelAddr16(branch_addr, branch_origin)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1603
    z_brc(cond, branch_addr);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1604
  } else if (RelAddr::is_in_range_of_RelAddr32(branch_addr, branch_origin)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1605
    z_brcl(cond, branch_addr);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1606
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1607
    load_const_optimized(Z_R1, branch_addr);  // CC must not get killed by load_const_optimized.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1608
    z_bcr(cond, Z_R1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1609
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1610
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1611
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1612
// This version of branch_optimized is good for cases where the target address
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1613
// is potentially not yet known at the time the code is emitted.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1614
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1615
// One very common case is a branch to an unbound label which is handled here.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1616
// The caller might know (or hope) that the branch distance is short enough
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1617
// to be encoded in a 16bit relative address. In this case he will pass a
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1618
// NearLabel branch_target.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1619
// Care must be taken with unbound labels. Each call to target(label) creates
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1620
// an entry in the patch queue for that label to patch all references of the label
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1621
// once it gets bound. Those recorded patch locations must be patchable. Otherwise,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1622
// an assertion fires at patch time.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1623
void MacroAssembler::branch_optimized(Assembler::branch_condition cond, Label& branch_target) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1624
  if (branch_target.is_bound()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1625
    address branch_addr = target(branch_target);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1626
    branch_optimized(cond, branch_addr);
46272
3cee5c1f3459 8173465: Introduce NearLabel for branches known to be short.
goetz
parents: 42065
diff changeset
  1627
  } else if (branch_target.is_near()) {
3cee5c1f3459 8173465: Introduce NearLabel for branches known to be short.
goetz
parents: 42065
diff changeset
  1628
    z_brc(cond, branch_target);  // Caller assures that the target will be in range for z_brc.
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1629
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1630
    z_brcl(cond, branch_target); // Let's hope target is in range. Otherwise, we will abort at patch time.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1631
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1632
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1633
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1634
// Generate an optimal compare and branch to the branch target.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1635
// Optimal means that a relative branch (clgrj, brc or brcl) is used if the
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1636
// branch distance is short enough. Loading the target address into a
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1637
// register and branching via reg is used as fallback only.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1638
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1639
// Input:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1640
//   r1 - left compare operand
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1641
//   r2 - right compare operand
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1642
void MacroAssembler::compare_and_branch_optimized(Register r1,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1643
                                                  Register r2,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1644
                                                  Assembler::branch_condition cond,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1645
                                                  address  branch_addr,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1646
                                                  bool     len64,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1647
                                                  bool     has_sign) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1648
  unsigned int casenum = (len64?2:0)+(has_sign?0:1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1649
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1650
  address branch_origin = pc();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1651
  if (VM_Version::has_CompareBranch() && RelAddr::is_in_range_of_RelAddr16(branch_addr, branch_origin)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1652
    switch (casenum) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1653
      case 0: z_crj( r1, r2, cond, branch_addr); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1654
      case 1: z_clrj (r1, r2, cond, branch_addr); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1655
      case 2: z_cgrj(r1, r2, cond, branch_addr); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1656
      case 3: z_clgrj(r1, r2, cond, branch_addr); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1657
      default: ShouldNotReachHere(); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1658
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1659
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1660
    switch (casenum) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1661
      case 0: z_cr( r1, r2); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1662
      case 1: z_clr(r1, r2); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1663
      case 2: z_cgr(r1, r2); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1664
      case 3: z_clgr(r1, r2); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1665
      default: ShouldNotReachHere(); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1666
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1667
    branch_optimized(cond, branch_addr);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1668
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1669
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1670
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1671
// Generate an optimal compare and branch to the branch target.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1672
// Optimal means that a relative branch (clgij, brc or brcl) is used if the
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1673
// branch distance is short enough. Loading the target address into a
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1674
// register and branching via reg is used as fallback only.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1675
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1676
// Input:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1677
//   r1 - left compare operand (in register)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1678
//   x2 - right compare operand (immediate)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1679
void MacroAssembler::compare_and_branch_optimized(Register r1,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1680
                                                  jlong    x2,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1681
                                                  Assembler::branch_condition cond,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1682
                                                  Label&   branch_target,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1683
                                                  bool     len64,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1684
                                                  bool     has_sign) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1685
  address      branch_origin = pc();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1686
  bool         x2_imm8       = (has_sign && Immediate::is_simm8(x2)) || (!has_sign && Immediate::is_uimm8(x2));
46272
3cee5c1f3459 8173465: Introduce NearLabel for branches known to be short.
goetz
parents: 42065
diff changeset
  1687
  bool         is_RelAddr16  = branch_target.is_near() ||
3cee5c1f3459 8173465: Introduce NearLabel for branches known to be short.
goetz
parents: 42065
diff changeset
  1688
                               (branch_target.is_bound() &&
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1689
                                RelAddr::is_in_range_of_RelAddr16(target(branch_target), branch_origin));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1690
  unsigned int casenum       = (len64?2:0)+(has_sign?0:1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1691
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1692
  if (VM_Version::has_CompareBranch() && is_RelAddr16 && x2_imm8) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1693
    switch (casenum) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1694
      case 0: z_cij( r1, x2, cond, branch_target); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1695
      case 1: z_clij(r1, x2, cond, branch_target); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1696
      case 2: z_cgij(r1, x2, cond, branch_target); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1697
      case 3: z_clgij(r1, x2, cond, branch_target); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1698
      default: ShouldNotReachHere(); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1699
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1700
    return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1701
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1702
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1703
  if (x2 == 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1704
    switch (casenum) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1705
      case 0: z_ltr(r1, r1); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1706
      case 1: z_ltr(r1, r1); break; // Caution: unsigned test only provides zero/notZero indication!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1707
      case 2: z_ltgr(r1, r1); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1708
      case 3: z_ltgr(r1, r1); break; // Caution: unsigned test only provides zero/notZero indication!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1709
      default: ShouldNotReachHere(); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1710
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1711
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1712
    if ((has_sign && Immediate::is_simm16(x2)) || (!has_sign && Immediate::is_uimm(x2, 15))) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1713
      switch (casenum) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1714
        case 0: z_chi(r1, x2); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1715
        case 1: z_chi(r1, x2); break; // positive immediate < 2**15
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1716
        case 2: z_cghi(r1, x2); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1717
        case 3: z_cghi(r1, x2); break; // positive immediate < 2**15
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1718
        default: break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1719
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1720
    } else if ( (has_sign && Immediate::is_simm32(x2)) || (!has_sign && Immediate::is_uimm32(x2)) ) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1721
      switch (casenum) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1722
        case 0: z_cfi( r1, x2); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1723
        case 1: z_clfi(r1, x2); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1724
        case 2: z_cgfi(r1, x2); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1725
        case 3: z_clgfi(r1, x2); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1726
        default: ShouldNotReachHere(); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1727
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1728
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1729
      // No instruction with immediate operand possible, so load into register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1730
      Register scratch = (r1 != Z_R0) ? Z_R0 : Z_R1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1731
      load_const_optimized(scratch, x2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1732
      switch (casenum) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1733
        case 0: z_cr( r1, scratch); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1734
        case 1: z_clr(r1, scratch); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1735
        case 2: z_cgr(r1, scratch); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1736
        case 3: z_clgr(r1, scratch); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1737
        default: ShouldNotReachHere(); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1738
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1739
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1740
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1741
  branch_optimized(cond, branch_target);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1742
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1743
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1744
// Generate an optimal compare and branch to the branch target.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1745
// Optimal means that a relative branch (clgrj, brc or brcl) is used if the
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1746
// branch distance is short enough. Loading the target address into a
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1747
// register and branching via reg is used as fallback only.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1748
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1749
// Input:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1750
//   r1 - left compare operand
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1751
//   r2 - right compare operand
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1752
void MacroAssembler::compare_and_branch_optimized(Register r1,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1753
                                                  Register r2,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1754
                                                  Assembler::branch_condition cond,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1755
                                                  Label&   branch_target,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1756
                                                  bool     len64,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1757
                                                  bool     has_sign) {
46272
3cee5c1f3459 8173465: Introduce NearLabel for branches known to be short.
goetz
parents: 42065
diff changeset
  1758
  unsigned int casenum = (len64 ? 2 : 0) + (has_sign ? 0 : 1);
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1759
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1760
  if (branch_target.is_bound()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1761
    address branch_addr = target(branch_target);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1762
    compare_and_branch_optimized(r1, r2, cond, branch_addr, len64, has_sign);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1763
  } else {
46272
3cee5c1f3459 8173465: Introduce NearLabel for branches known to be short.
goetz
parents: 42065
diff changeset
  1764
    if (VM_Version::has_CompareBranch() && branch_target.is_near()) {
3cee5c1f3459 8173465: Introduce NearLabel for branches known to be short.
goetz
parents: 42065
diff changeset
  1765
      switch (casenum) {
3cee5c1f3459 8173465: Introduce NearLabel for branches known to be short.
goetz
parents: 42065
diff changeset
  1766
        case 0: z_crj(  r1, r2, cond, branch_target); break;
3cee5c1f3459 8173465: Introduce NearLabel for branches known to be short.
goetz
parents: 42065
diff changeset
  1767
        case 1: z_clrj( r1, r2, cond, branch_target); break;
3cee5c1f3459 8173465: Introduce NearLabel for branches known to be short.
goetz
parents: 42065
diff changeset
  1768
        case 2: z_cgrj( r1, r2, cond, branch_target); break;
3cee5c1f3459 8173465: Introduce NearLabel for branches known to be short.
goetz
parents: 42065
diff changeset
  1769
        case 3: z_clgrj(r1, r2, cond, branch_target); break;
3cee5c1f3459 8173465: Introduce NearLabel for branches known to be short.
goetz
parents: 42065
diff changeset
  1770
        default: ShouldNotReachHere(); break;
3cee5c1f3459 8173465: Introduce NearLabel for branches known to be short.
goetz
parents: 42065
diff changeset
  1771
      }
3cee5c1f3459 8173465: Introduce NearLabel for branches known to be short.
goetz
parents: 42065
diff changeset
  1772
    } else {
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1773
      switch (casenum) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1774
        case 0: z_cr( r1, r2); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1775
        case 1: z_clr(r1, r2); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1776
        case 2: z_cgr(r1, r2); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1777
        case 3: z_clgr(r1, r2); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1778
        default: ShouldNotReachHere(); break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1779
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1780
      branch_optimized(cond, branch_target);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1781
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1782
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1783
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1784
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1785
//===========================================================================
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1786
//===   END     H I G H E R   L E V E L   B R A N C H   E M I T T E R S   ===
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1787
//===========================================================================
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1788
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1789
AddressLiteral MacroAssembler::allocate_metadata_address(Metadata* obj) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1790
  assert(oop_recorder() != NULL, "this assembler needs an OopRecorder");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1791
  int index = oop_recorder()->allocate_metadata_index(obj);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1792
  RelocationHolder rspec = metadata_Relocation::spec(index);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1793
  return AddressLiteral((address)obj, rspec);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1794
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1795
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1796
AddressLiteral MacroAssembler::constant_metadata_address(Metadata* obj) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1797
  assert(oop_recorder() != NULL, "this assembler needs an OopRecorder");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1798
  int index = oop_recorder()->find_index(obj);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1799
  RelocationHolder rspec = metadata_Relocation::spec(index);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1800
  return AddressLiteral((address)obj, rspec);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1801
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1802
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1803
AddressLiteral MacroAssembler::allocate_oop_address(jobject obj) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1804
  assert(oop_recorder() != NULL, "this assembler needs an OopRecorder");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1805
  int oop_index = oop_recorder()->allocate_oop_index(obj);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1806
  return AddressLiteral(address(obj), oop_Relocation::spec(oop_index));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1807
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1808
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1809
AddressLiteral MacroAssembler::constant_oop_address(jobject obj) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1810
  assert(oop_recorder() != NULL, "this assembler needs an OopRecorder");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1811
  int oop_index = oop_recorder()->find_index(obj);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1812
  return AddressLiteral(address(obj), oop_Relocation::spec(oop_index));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1813
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1814
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1815
// NOTE: destroys r
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1816
void MacroAssembler::c2bool(Register r, Register t) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1817
  z_lcr(t, r);   // t = -r
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1818
  z_or(r, t);    // r = -r OR r
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1819
  z_srl(r, 31);  // Yields 0 if r was 0, 1 otherwise.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1820
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1821
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1822
RegisterOrConstant MacroAssembler::delayed_value_impl(intptr_t* delayed_value_addr,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1823
                                                      Register tmp,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1824
                                                      int offset) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1825
  intptr_t value = *delayed_value_addr;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1826
  if (value != 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1827
    return RegisterOrConstant(value + offset);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1828
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1829
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1830
  BLOCK_COMMENT("delayed_value {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1831
  // Load indirectly to solve generation ordering problem.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1832
  load_absolute_address(tmp, (address) delayed_value_addr); // tmp = a;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1833
  z_lg(tmp, 0, tmp);                   // tmp = *tmp;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1834
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1835
#ifdef ASSERT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1836
  NearLabel L;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1837
  compare64_and_branch(tmp, (intptr_t)0L, Assembler::bcondNotEqual, L);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1838
  z_illtrap();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1839
  bind(L);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1840
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1841
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1842
  if (offset != 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1843
    z_agfi(tmp, offset);               // tmp = tmp + offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1844
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1845
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1846
  BLOCK_COMMENT("} delayed_value");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1847
  return RegisterOrConstant(tmp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1848
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1849
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1850
// Patch instruction `inst' at offset `inst_pos' to refer to `dest_pos'
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1851
// and return the resulting instruction.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1852
// Dest_pos and inst_pos are 32 bit only. These parms can only designate
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1853
// relative positions.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1854
// Use correct argument types. Do not pre-calculate distance.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1855
unsigned long MacroAssembler::patched_branch(address dest_pos, unsigned long inst, address inst_pos) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1856
  int c = 0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1857
  unsigned long patched_inst = 0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1858
  if (is_call_pcrelative_short(inst) ||
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1859
      is_branch_pcrelative_short(inst) ||
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1860
      is_branchoncount_pcrelative_short(inst) ||
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1861
      is_branchonindex32_pcrelative_short(inst)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1862
    c = 1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1863
    int m = fmask(15, 0);    // simm16(-1, 16, 32);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1864
    int v = simm16(RelAddr::pcrel_off16(dest_pos, inst_pos), 16, 32);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1865
    patched_inst = (inst & ~m) | v;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1866
  } else if (is_compareandbranch_pcrelative_short(inst)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1867
    c = 2;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1868
    long m = fmask(31, 16);  // simm16(-1, 16, 48);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1869
    long v = simm16(RelAddr::pcrel_off16(dest_pos, inst_pos), 16, 48);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1870
    patched_inst = (inst & ~m) | v;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1871
  } else if (is_branchonindex64_pcrelative_short(inst)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1872
    c = 3;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1873
    long m = fmask(31, 16);  // simm16(-1, 16, 48);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1874
    long v = simm16(RelAddr::pcrel_off16(dest_pos, inst_pos), 16, 48);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1875
    patched_inst = (inst & ~m) | v;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1876
  } else if (is_call_pcrelative_long(inst) || is_branch_pcrelative_long(inst)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1877
    c = 4;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1878
    long m = fmask(31, 0);  // simm32(-1, 16, 48);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1879
    long v = simm32(RelAddr::pcrel_off32(dest_pos, inst_pos), 16, 48);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1880
    patched_inst = (inst & ~m) | v;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1881
  } else if (is_pcrelative_long(inst)) { // These are the non-branch pc-relative instructions.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1882
    c = 5;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1883
    long m = fmask(31, 0);  // simm32(-1, 16, 48);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1884
    long v = simm32(RelAddr::pcrel_off32(dest_pos, inst_pos), 16, 48);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1885
    patched_inst = (inst & ~m) | v;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1886
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1887
    print_dbg_msg(tty, inst, "not a relative branch", 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1888
    dump_code_range(tty, inst_pos, 32, "not a pcrelative branch");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1889
    ShouldNotReachHere();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1890
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1891
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1892
  long new_off = get_pcrel_offset(patched_inst);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1893
  if (new_off != (dest_pos-inst_pos)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1894
    tty->print_cr("case %d: dest_pos = %p, inst_pos = %p, disp = %ld(%12.12lx)", c, dest_pos, inst_pos, new_off, new_off);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1895
    print_dbg_msg(tty, inst,         "<- original instruction: branch patching error", 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1896
    print_dbg_msg(tty, patched_inst, "<- patched  instruction: branch patching error", 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1897
#ifdef LUCY_DBG
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1898
    VM_Version::z_SIGSEGV();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1899
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1900
    ShouldNotReachHere();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1901
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1902
  return patched_inst;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1903
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1904
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1905
// Only called when binding labels (share/vm/asm/assembler.cpp)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1906
// Pass arguments as intended. Do not pre-calculate distance.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1907
void MacroAssembler::pd_patch_instruction(address branch, address target) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1908
  unsigned long stub_inst;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1909
  int           inst_len = get_instruction(branch, &stub_inst);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1910
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1911
  set_instruction(branch, patched_branch(target, stub_inst, branch), inst_len);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1912
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1913
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1914
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1915
// Extract relative address (aka offset).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1916
// inv_simm16 works for 4-byte instructions only.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1917
// compare and branch instructions are 6-byte and have a 16bit offset "in the middle".
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1918
long MacroAssembler::get_pcrel_offset(unsigned long inst) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1919
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1920
  if (MacroAssembler::is_pcrelative_short(inst)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1921
    if (((inst&0xFFFFffff00000000UL) == 0) && ((inst&0x00000000FFFF0000UL) != 0)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1922
      return RelAddr::inv_pcrel_off16(inv_simm16(inst));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1923
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1924
      return RelAddr::inv_pcrel_off16(inv_simm16_48(inst));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1925
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1926
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1927
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1928
  if (MacroAssembler::is_pcrelative_long(inst)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1929
    return RelAddr::inv_pcrel_off32(inv_simm32(inst));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1930
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1931
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1932
  print_dbg_msg(tty, inst, "not a pcrelative instruction", 6);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1933
#ifdef LUCY_DBG
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1934
  VM_Version::z_SIGSEGV();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1935
#else
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1936
  ShouldNotReachHere();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1937
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1938
  return -1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1939
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1940
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1941
long MacroAssembler::get_pcrel_offset(address pc) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1942
  unsigned long inst;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1943
  unsigned int  len = get_instruction(pc, &inst);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1944
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1945
#ifdef ASSERT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1946
  long offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1947
  if (MacroAssembler::is_pcrelative_short(inst) || MacroAssembler::is_pcrelative_long(inst)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1948
    offset = get_pcrel_offset(inst);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1949
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1950
    offset = -1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1951
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1952
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1953
  if (offset == -1) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1954
    dump_code_range(tty, pc, 32, "not a pcrelative instruction");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1955
#ifdef LUCY_DBG
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1956
    VM_Version::z_SIGSEGV();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1957
#else
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1958
    ShouldNotReachHere();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1959
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1960
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1961
  return offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1962
#else
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1963
  return get_pcrel_offset(inst);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1964
#endif // ASSERT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1965
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1966
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1967
// Get target address from pc-relative instructions.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1968
address MacroAssembler::get_target_addr_pcrel(address pc) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1969
  assert(is_pcrelative_long(pc), "not a pcrelative instruction");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1970
  return pc + get_pcrel_offset(pc);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1971
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1972
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1973
// Patch pc relative load address.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1974
void MacroAssembler::patch_target_addr_pcrel(address pc, address con) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1975
  unsigned long inst;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1976
  // Offset is +/- 2**32 -> use long.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1977
  ptrdiff_t distance = con - pc;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1978
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1979
  get_instruction(pc, &inst);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1980
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1981
  if (is_pcrelative_short(inst)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1982
    *(short *)(pc+2) = RelAddr::pcrel_off16(con, pc);  // Instructions are at least 2-byte aligned, no test required.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1983
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1984
    // Some extra safety net.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1985
    if (!RelAddr::is_in_range_of_RelAddr16(distance)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1986
      print_dbg_msg(tty, inst, "distance out of range (16bit)", 4);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1987
      dump_code_range(tty, pc, 32, "distance out of range (16bit)");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1988
      guarantee(RelAddr::is_in_range_of_RelAddr16(distance), "too far away (more than +/- 2**16");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1989
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1990
    return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1991
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1992
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1993
  if (is_pcrelative_long(inst)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1994
    *(int *)(pc+2)   = RelAddr::pcrel_off32(con, pc);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1995
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1996
    // Some Extra safety net.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1997
    if (!RelAddr::is_in_range_of_RelAddr32(distance)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1998
      print_dbg_msg(tty, inst, "distance out of range (32bit)", 6);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  1999
      dump_code_range(tty, pc, 32, "distance out of range (32bit)");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2000
      guarantee(RelAddr::is_in_range_of_RelAddr32(distance), "too far away (more than +/- 2**32");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2001
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2002
    return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2003
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2004
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2005
  guarantee(false, "not a pcrelative instruction to patch!");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2006
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2007
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2008
// "Current PC" here means the address just behind the basr instruction.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2009
address MacroAssembler::get_PC(Register result) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2010
  z_basr(result, Z_R0); // Don't branch, just save next instruction address in result.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2011
  return pc();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2012
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2013
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2014
// Get current PC + offset.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2015
// Offset given in bytes, must be even!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2016
// "Current PC" here means the address of the larl instruction plus the given offset.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2017
address MacroAssembler::get_PC(Register result, int64_t offset) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2018
  address here = pc();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2019
  z_larl(result, offset/2); // Save target instruction address in result.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2020
  return here + offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2021
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2022
48332
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2023
void MacroAssembler::instr_size(Register size, Register pc) {
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2024
  // Extract 2 most significant bits of current instruction.
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2025
  z_llgc(size, Address(pc));
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2026
  z_srl(size, 6);
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2027
  // Compute (x+3)&6 which translates 0->2, 1->4, 2->4, 3->6.
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2028
  z_ahi(size, 3);
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2029
  z_nill(size, 6);
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2030
}
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2031
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2032
// Resize_frame with SP(new) = SP(old) - [offset].
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2033
void MacroAssembler::resize_frame_sub(Register offset, Register fp, bool load_fp)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2034
{
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2035
  assert_different_registers(offset, fp, Z_SP);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2036
  if (load_fp) { z_lg(fp, _z_abi(callers_sp), Z_SP); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2037
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2038
  z_sgr(Z_SP, offset);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2039
  z_stg(fp, _z_abi(callers_sp), Z_SP);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2040
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2041
46726
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2042
// Resize_frame with SP(new) = [newSP] + offset.
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2043
//   This emitter is useful if we already have calculated a pointer
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2044
//   into the to-be-allocated stack space, e.g. with special alignment properties,
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2045
//   but need some additional space, e.g. for spilling.
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2046
//   newSP    is the pre-calculated pointer. It must not be modified.
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2047
//   fp       holds, or is filled with, the frame pointer.
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2048
//   offset   is the additional increment which is added to addr to form the new SP.
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2049
//            Note: specify a negative value to reserve more space!
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2050
//   load_fp == true  only indicates that fp is not pre-filled with the frame pointer.
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2051
//                    It does not guarantee that fp contains the frame pointer at the end.
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2052
void MacroAssembler::resize_frame_abs_with_offset(Register newSP, Register fp, int offset, bool load_fp) {
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2053
  assert_different_registers(newSP, fp, Z_SP);
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2054
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2055
  if (load_fp) {
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2056
    z_lg(fp, _z_abi(callers_sp), Z_SP);
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2057
  }
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2058
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2059
  add2reg(Z_SP, offset, newSP);
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2060
  z_stg(fp, _z_abi(callers_sp), Z_SP);
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2061
}
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2062
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2063
// Resize_frame with SP(new) = [newSP].
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2064
//   load_fp == true  only indicates that fp is not pre-filled with the frame pointer.
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2065
//                    It does not guarantee that fp contains the frame pointer at the end.
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2066
void MacroAssembler::resize_frame_absolute(Register newSP, Register fp, bool load_fp) {
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2067
  assert_different_registers(newSP, fp, Z_SP);
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2068
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2069
  if (load_fp) {
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2070
    z_lg(fp, _z_abi(callers_sp), Z_SP); // need to use load/store.
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2071
  }
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2072
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2073
  z_lgr(Z_SP, newSP);
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2074
  if (newSP != Z_R0) { // make sure we generate correct code, no matter what register newSP uses.
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2075
    z_stg(fp, _z_abi(callers_sp), newSP);
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2076
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2077
    z_stg(fp, _z_abi(callers_sp), Z_SP);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2078
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2079
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2080
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2081
// Resize_frame with SP(new) = SP(old) + offset.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2082
void MacroAssembler::resize_frame(RegisterOrConstant offset, Register fp, bool load_fp) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2083
  assert_different_registers(fp, Z_SP);
46726
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2084
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2085
  if (load_fp) {
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2086
    z_lg(fp, _z_abi(callers_sp), Z_SP);
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2087
  }
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2088
  add64(Z_SP, offset);
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2089
  z_stg(fp, _z_abi(callers_sp), Z_SP);
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2090
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2091
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2092
void MacroAssembler::push_frame(Register bytes, Register old_sp, bool copy_sp, bool bytes_with_inverted_sign) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2093
#ifdef ASSERT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2094
  assert_different_registers(bytes, old_sp, Z_SP);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2095
  if (!copy_sp) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2096
    z_cgr(old_sp, Z_SP);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2097
    asm_assert_eq("[old_sp]!=[Z_SP]", 0x211);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2098
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2099
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2100
  if (copy_sp) { z_lgr(old_sp, Z_SP); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2101
  if (bytes_with_inverted_sign) {
46726
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2102
    z_agr(Z_SP, bytes);
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2103
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2104
    z_sgr(Z_SP, bytes); // Z_sgfr sufficient, but probably not faster.
46726
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2105
  }
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2106
  z_stg(old_sp, _z_abi(callers_sp), Z_SP);
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2107
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2108
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2109
unsigned int MacroAssembler::push_frame(unsigned int bytes, Register scratch) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2110
  long offset = Assembler::align(bytes, frame::alignment_in_bytes);
46726
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2111
  assert(offset > 0, "should push a frame with positive size, size = %ld.", offset);
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2112
  assert(Displacement::is_validDisp(-offset), "frame size out of range, size = %ld", offset);
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2113
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2114
  // We must not write outside the current stack bounds (given by Z_SP).
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2115
  // Thus, we have to first update Z_SP and then store the previous SP as stack linkage.
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2116
  // We rely on Z_R0 by default to be available as scratch.
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2117
  z_lgr(scratch, Z_SP);
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2118
  add2reg(Z_SP, -offset);
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2119
  z_stg(scratch, _z_abi(callers_sp), Z_SP);
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2120
#ifdef ASSERT
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2121
  // Just make sure nobody uses the value in the default scratch register.
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2122
  // When another register is used, the caller might rely on it containing the frame pointer.
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2123
  if (scratch == Z_R0) {
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2124
    z_iihf(scratch, 0xbaadbabe);
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2125
    z_iilf(scratch, 0xdeadbeef);
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2126
  }
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2127
#endif
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2128
  return offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2129
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2130
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2131
// Push a frame of size `bytes' plus abi160 on top.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2132
unsigned int MacroAssembler::push_frame_abi160(unsigned int bytes) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2133
  BLOCK_COMMENT("push_frame_abi160 {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2134
  unsigned int res = push_frame(bytes + frame::z_abi_160_size);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2135
  BLOCK_COMMENT("} push_frame_abi160");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2136
  return res;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2137
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2138
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2139
// Pop current C frame.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2140
void MacroAssembler::pop_frame() {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2141
  BLOCK_COMMENT("pop_frame:");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2142
  Assembler::z_lg(Z_SP, _z_abi(callers_sp), Z_SP);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2143
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2144
46726
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2145
// Pop current C frame and restore return PC register (Z_R14).
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2146
void MacroAssembler::pop_frame_restore_retPC(int frame_size_in_bytes) {
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2147
  BLOCK_COMMENT("pop_frame_restore_retPC:");
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2148
  int retPC_offset = _z_abi16(return_pc) + frame_size_in_bytes;
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2149
  // If possible, pop frame by add instead of load (a penny saved is a penny got :-).
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2150
  if (Displacement::is_validDisp(retPC_offset)) {
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2151
    z_lg(Z_R14, retPC_offset, Z_SP);
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2152
    add2reg(Z_SP, frame_size_in_bytes);
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2153
  } else {
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2154
    add2reg(Z_SP, frame_size_in_bytes);
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2155
    restore_return_pc();
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2156
  }
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2157
}
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  2158
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2159
void MacroAssembler::call_VM_leaf_base(address entry_point, bool allow_relocation) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2160
  if (allow_relocation) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2161
    call_c(entry_point);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2162
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2163
    call_c_static(entry_point);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2164
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2165
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2166
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2167
void MacroAssembler::call_VM_leaf_base(address entry_point) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2168
  bool allow_relocation = true;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2169
  call_VM_leaf_base(entry_point, allow_relocation);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2170
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2171
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2172
void MacroAssembler::call_VM_base(Register oop_result,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2173
                                  Register last_java_sp,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2174
                                  address  entry_point,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2175
                                  bool     allow_relocation,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2176
                                  bool     check_exceptions) { // Defaults to true.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2177
  // Allow_relocation indicates, if true, that the generated code shall
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2178
  // be fit for code relocation or referenced data relocation. In other
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2179
  // words: all addresses must be considered variable. PC-relative addressing
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2180
  // is not possible then.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2181
  // On the other hand, if (allow_relocation == false), addresses and offsets
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2182
  // may be considered stable, enabling us to take advantage of some PC-relative
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2183
  // addressing tweaks. These might improve performance and reduce code size.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2184
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2185
  // Determine last_java_sp register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2186
  if (!last_java_sp->is_valid()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2187
    last_java_sp = Z_SP;  // Load Z_SP as SP.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2188
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2189
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2190
  set_top_ijava_frame_at_SP_as_last_Java_frame(last_java_sp, Z_R1, allow_relocation);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2191
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2192
  // ARG1 must hold thread address.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2193
  z_lgr(Z_ARG1, Z_thread);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2194
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2195
  address return_pc = NULL;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2196
  if (allow_relocation) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2197
    return_pc = call_c(entry_point);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2198
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2199
    return_pc = call_c_static(entry_point);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2200
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2201
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2202
  reset_last_Java_frame(allow_relocation);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2203
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2204
  // C++ interp handles this in the interpreter.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2205
  check_and_handle_popframe(Z_thread);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2206
  check_and_handle_earlyret(Z_thread);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2207
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2208
  // Check for pending exceptions.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2209
  if (check_exceptions) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2210
    // Check for pending exceptions (java_thread is set upon return).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2211
    load_and_test_long(Z_R0_scratch, Address(Z_thread, Thread::pending_exception_offset()));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2212
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2213
    // This used to conditionally jump to forward_exception however it is
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2214
    // possible if we relocate that the branch will not reach. So we must jump
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2215
    // around so we can always reach.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2216
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2217
    Label ok;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2218
    z_bre(ok); // Bcondequal is the same as bcondZero.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2219
    call_stub(StubRoutines::forward_exception_entry());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2220
    bind(ok);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2221
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2222
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2223
  // Get oop result if there is one and reset the value in the thread.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2224
  if (oop_result->is_valid()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2225
    get_vm_result(oop_result);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2226
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2227
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2228
  _last_calls_return_pc = return_pc;  // Wipe out other (error handling) calls.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2229
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2230
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2231
void MacroAssembler::call_VM_base(Register oop_result,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2232
                                  Register last_java_sp,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2233
                                  address  entry_point,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2234
                                  bool     check_exceptions) { // Defaults to true.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2235
  bool allow_relocation = true;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2236
  call_VM_base(oop_result, last_java_sp, entry_point, allow_relocation, check_exceptions);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2237
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2238
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2239
// VM calls without explicit last_java_sp.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2240
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2241
void MacroAssembler::call_VM(Register oop_result, address entry_point, bool check_exceptions) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2242
  // Call takes possible detour via InterpreterMacroAssembler.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2243
  call_VM_base(oop_result, noreg, entry_point, true, check_exceptions);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2244
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2245
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2246
void MacroAssembler::call_VM(Register oop_result, address entry_point, Register arg_1, bool check_exceptions) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2247
  // Z_ARG1 is reserved for the thread.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2248
  lgr_if_needed(Z_ARG2, arg_1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2249
  call_VM(oop_result, entry_point, check_exceptions);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2250
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2251
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2252
void MacroAssembler::call_VM(Register oop_result, address entry_point, Register arg_1, Register arg_2, bool check_exceptions) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2253
  // Z_ARG1 is reserved for the thread.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2254
  lgr_if_needed(Z_ARG2, arg_1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2255
  assert(arg_2 != Z_ARG2, "smashed argument");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2256
  lgr_if_needed(Z_ARG3, arg_2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2257
  call_VM(oop_result, entry_point, check_exceptions);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2258
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2259
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2260
void MacroAssembler::call_VM(Register oop_result, address entry_point, Register arg_1, Register arg_2,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2261
                             Register arg_3, bool check_exceptions) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2262
  // Z_ARG1 is reserved for the thread.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2263
  lgr_if_needed(Z_ARG2, arg_1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2264
  assert(arg_2 != Z_ARG2, "smashed argument");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2265
  lgr_if_needed(Z_ARG3, arg_2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2266
  assert(arg_3 != Z_ARG2 && arg_3 != Z_ARG3, "smashed argument");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2267
  lgr_if_needed(Z_ARG4, arg_3);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2268
  call_VM(oop_result, entry_point, check_exceptions);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2269
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2270
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2271
// VM static calls without explicit last_java_sp.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2272
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2273
void MacroAssembler::call_VM_static(Register oop_result, address entry_point, bool check_exceptions) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2274
  // Call takes possible detour via InterpreterMacroAssembler.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2275
  call_VM_base(oop_result, noreg, entry_point, false, check_exceptions);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2276
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2277
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2278
void MacroAssembler::call_VM_static(Register oop_result, address entry_point, Register arg_1, Register arg_2,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2279
                                    Register arg_3, bool check_exceptions) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2280
  // Z_ARG1 is reserved for the thread.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2281
  lgr_if_needed(Z_ARG2, arg_1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2282
  assert(arg_2 != Z_ARG2, "smashed argument");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2283
  lgr_if_needed(Z_ARG3, arg_2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2284
  assert(arg_3 != Z_ARG2 && arg_3 != Z_ARG3, "smashed argument");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2285
  lgr_if_needed(Z_ARG4, arg_3);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2286
  call_VM_static(oop_result, entry_point, check_exceptions);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2287
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2288
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2289
// VM calls with explicit last_java_sp.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2290
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2291
void MacroAssembler::call_VM(Register oop_result, Register last_java_sp, address entry_point, bool check_exceptions) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2292
  // Call takes possible detour via InterpreterMacroAssembler.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2293
  call_VM_base(oop_result, last_java_sp, entry_point, true, check_exceptions);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2294
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2295
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2296
void MacroAssembler::call_VM(Register oop_result, Register last_java_sp, address entry_point, Register arg_1, bool check_exceptions) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2297
   // Z_ARG1 is reserved for the thread.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2298
   lgr_if_needed(Z_ARG2, arg_1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2299
   call_VM(oop_result, last_java_sp, entry_point, check_exceptions);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2300
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2301
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2302
void MacroAssembler::call_VM(Register oop_result, Register last_java_sp, address entry_point, Register arg_1,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2303
                             Register arg_2, bool check_exceptions) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2304
   // Z_ARG1 is reserved for the thread.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2305
   lgr_if_needed(Z_ARG2, arg_1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2306
   assert(arg_2 != Z_ARG2, "smashed argument");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2307
   lgr_if_needed(Z_ARG3, arg_2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2308
   call_VM(oop_result, last_java_sp, entry_point, check_exceptions);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2309
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2310
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2311
void MacroAssembler::call_VM(Register oop_result, Register last_java_sp, address entry_point, Register arg_1,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2312
                             Register arg_2, Register arg_3, bool check_exceptions) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2313
  // Z_ARG1 is reserved for the thread.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2314
  lgr_if_needed(Z_ARG2, arg_1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2315
  assert(arg_2 != Z_ARG2, "smashed argument");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2316
  lgr_if_needed(Z_ARG3, arg_2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2317
  assert(arg_3 != Z_ARG2 && arg_3 != Z_ARG3, "smashed argument");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2318
  lgr_if_needed(Z_ARG4, arg_3);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2319
  call_VM(oop_result, last_java_sp, entry_point, check_exceptions);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2320
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2321
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2322
// VM leaf calls.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2323
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2324
void MacroAssembler::call_VM_leaf(address entry_point) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2325
  // Call takes possible detour via InterpreterMacroAssembler.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2326
  call_VM_leaf_base(entry_point, true);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2327
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2328
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2329
void MacroAssembler::call_VM_leaf(address entry_point, Register arg_1) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2330
  if (arg_1 != noreg) lgr_if_needed(Z_ARG1, arg_1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2331
  call_VM_leaf(entry_point);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2332
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2333
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2334
void MacroAssembler::call_VM_leaf(address entry_point, Register arg_1, Register arg_2) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2335
  if (arg_1 != noreg) lgr_if_needed(Z_ARG1, arg_1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2336
  assert(arg_2 != Z_ARG1, "smashed argument");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2337
  if (arg_2 != noreg) lgr_if_needed(Z_ARG2, arg_2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2338
  call_VM_leaf(entry_point);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2339
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2340
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2341
void MacroAssembler::call_VM_leaf(address entry_point, Register arg_1, Register arg_2, Register arg_3) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2342
  if (arg_1 != noreg) lgr_if_needed(Z_ARG1, arg_1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2343
  assert(arg_2 != Z_ARG1, "smashed argument");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2344
  if (arg_2 != noreg) lgr_if_needed(Z_ARG2, arg_2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2345
  assert(arg_3 != Z_ARG1 && arg_3 != Z_ARG2, "smashed argument");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2346
  if (arg_3 != noreg) lgr_if_needed(Z_ARG3, arg_3);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2347
  call_VM_leaf(entry_point);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2348
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2349
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2350
// Static VM leaf calls.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2351
// Really static VM leaf calls are never patched.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2352
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2353
void MacroAssembler::call_VM_leaf_static(address entry_point) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2354
  // Call takes possible detour via InterpreterMacroAssembler.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2355
  call_VM_leaf_base(entry_point, false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2356
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2357
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2358
void MacroAssembler::call_VM_leaf_static(address entry_point, Register arg_1) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2359
  if (arg_1 != noreg) lgr_if_needed(Z_ARG1, arg_1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2360
  call_VM_leaf_static(entry_point);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2361
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2362
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2363
void MacroAssembler::call_VM_leaf_static(address entry_point, Register arg_1, Register arg_2) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2364
  if (arg_1 != noreg) lgr_if_needed(Z_ARG1, arg_1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2365
  assert(arg_2 != Z_ARG1, "smashed argument");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2366
  if (arg_2 != noreg) lgr_if_needed(Z_ARG2, arg_2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2367
  call_VM_leaf_static(entry_point);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2368
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2369
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2370
void MacroAssembler::call_VM_leaf_static(address entry_point, Register arg_1, Register arg_2, Register arg_3) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2371
  if (arg_1 != noreg) lgr_if_needed(Z_ARG1, arg_1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2372
  assert(arg_2 != Z_ARG1, "smashed argument");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2373
  if (arg_2 != noreg) lgr_if_needed(Z_ARG2, arg_2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2374
  assert(arg_3 != Z_ARG1 && arg_3 != Z_ARG2, "smashed argument");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2375
  if (arg_3 != noreg) lgr_if_needed(Z_ARG3, arg_3);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2376
  call_VM_leaf_static(entry_point);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2377
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2378
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2379
// Don't use detour via call_c(reg).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2380
address MacroAssembler::call_c(address function_entry) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2381
  load_const(Z_R1, function_entry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2382
  return call(Z_R1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2383
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2384
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2385
// Variant for really static (non-relocatable) calls which are never patched.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2386
address MacroAssembler::call_c_static(address function_entry) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2387
  load_absolute_address(Z_R1, function_entry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2388
#if 0 // def ASSERT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2389
  // Verify that call site did not move.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2390
  load_const_optimized(Z_R0, function_entry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2391
  z_cgr(Z_R1, Z_R0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2392
  z_brc(bcondEqual, 3);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2393
  z_illtrap(0xba);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2394
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2395
  return call(Z_R1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2396
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2397
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2398
address MacroAssembler::call_c_opt(address function_entry) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2399
  bool success = call_far_patchable(function_entry, -2 /* emit relocation + constant */);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2400
  _last_calls_return_pc = success ? pc() : NULL;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2401
  return _last_calls_return_pc;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2402
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2403
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2404
// Identify a call_far_patchable instruction: LARL + LG + BASR
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2405
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2406
//    nop                   ; optionally, if required for alignment
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2407
//    lgrl rx,A(TOC entry)  ; PC-relative access into constant pool
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2408
//    basr Z_R14,rx         ; end of this instruction must be aligned to a word boundary
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2409
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2410
// Code pattern will eventually get patched into variant2 (see below for detection code).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2411
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2412
bool MacroAssembler::is_call_far_patchable_variant0_at(address instruction_addr) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2413
  address iaddr = instruction_addr;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2414
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2415
  // Check for the actual load instruction.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2416
  if (!is_load_const_from_toc(iaddr)) { return false; }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2417
  iaddr += load_const_from_toc_size();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2418
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2419
  // Check for the call (BASR) instruction, finally.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2420
  assert(iaddr-instruction_addr+call_byregister_size() == call_far_patchable_size(), "size mismatch");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2421
  return is_call_byregister(iaddr);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2422
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2423
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2424
// Identify a call_far_patchable instruction: BRASL
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2425
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2426
// Code pattern to suits atomic patching:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2427
//    nop                       ; Optionally, if required for alignment.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2428
//    nop    ...                ; Multiple filler nops to compensate for size difference (variant0 is longer).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2429
//    nop                       ; For code pattern detection: Prepend each BRASL with a nop.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2430
//    brasl  Z_R14,<reladdr>    ; End of code must be 4-byte aligned !
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2431
bool MacroAssembler::is_call_far_patchable_variant2_at(address instruction_addr) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2432
  const address call_addr = (address)((intptr_t)instruction_addr + call_far_patchable_size() - call_far_pcrelative_size());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2433
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2434
  // Check for correct number of leading nops.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2435
  address iaddr;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2436
  for (iaddr = instruction_addr; iaddr < call_addr; iaddr += nop_size()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2437
    if (!is_z_nop(iaddr)) { return false; }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2438
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2439
  assert(iaddr == call_addr, "sanity");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2440
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2441
  // --> Check for call instruction.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2442
  if (is_call_far_pcrelative(call_addr)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2443
    assert(call_addr-instruction_addr+call_far_pcrelative_size() == call_far_patchable_size(), "size mismatch");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2444
    return true;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2445
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2446
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2447
  return false;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2448
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2449
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2450
// Emit a NOT mt-safely patchable 64 bit absolute call.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2451
// If toc_offset == -2, then the destination of the call (= target) is emitted
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2452
//                      to the constant pool and a runtime_call relocation is added
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2453
//                      to the code buffer.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2454
// If toc_offset != -2, target must already be in the constant pool at
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2455
//                      _ctableStart+toc_offset (a caller can retrieve toc_offset
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2456
//                      from the runtime_call relocation).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2457
// Special handling of emitting to scratch buffer when there is no constant pool.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2458
// Slightly changed code pattern. We emit an additional nop if we would
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2459
// not end emitting at a word aligned address. This is to ensure
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2460
// an atomically patchable displacement in brasl instructions.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2461
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2462
// A call_far_patchable comes in different flavors:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2463
//  - LARL(CP) / LG(CP) / BR (address in constant pool, access via CP register)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2464
//  - LGRL(CP) / BR          (address in constant pool, pc-relative accesss)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2465
//  - BRASL                  (relative address of call target coded in instruction)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2466
// All flavors occupy the same amount of space. Length differences are compensated
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2467
// by leading nops, such that the instruction sequence always ends at the same
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2468
// byte offset. This is required to keep the return offset constant.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2469
// Furthermore, the return address (the end of the instruction sequence) is forced
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2470
// to be on a 4-byte boundary. This is required for atomic patching, should we ever
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2471
// need to patch the call target of the BRASL flavor.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2472
// RETURN value: false, if no constant pool entry could be allocated, true otherwise.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2473
bool MacroAssembler::call_far_patchable(address target, int64_t tocOffset) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2474
  // Get current pc and ensure word alignment for end of instr sequence.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2475
  const address start_pc = pc();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2476
  const intptr_t       start_off = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2477
  assert(!call_far_patchable_requires_alignment_nop(start_pc), "call_far_patchable requires aligned address");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2478
  const ptrdiff_t      dist      = (ptrdiff_t)(target - (start_pc + 2)); // Prepend each BRASL with a nop.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2479
  const bool emit_target_to_pool = (tocOffset == -2) && !code_section()->scratch_emit();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2480
  const bool emit_relative_call  = !emit_target_to_pool &&
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2481
                                   RelAddr::is_in_range_of_RelAddr32(dist) &&
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2482
                                   ReoptimizeCallSequences &&
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2483
                                   !code_section()->scratch_emit();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2484
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2485
  if (emit_relative_call) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2486
    // Add padding to get the same size as below.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2487
    const unsigned int padding = call_far_patchable_size() - call_far_pcrelative_size();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2488
    unsigned int current_padding;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2489
    for (current_padding = 0; current_padding < padding; current_padding += nop_size()) { z_nop(); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2490
    assert(current_padding == padding, "sanity");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2491
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2492
    // relative call: len = 2(nop) + 6 (brasl)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2493
    // CodeBlob resize cannot occur in this case because
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2494
    // this call is emitted into pre-existing space.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2495
    z_nop(); // Prepend each BRASL with a nop.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2496
    z_brasl(Z_R14, target);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2497
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2498
    // absolute call: Get address from TOC.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2499
    // len = (load TOC){6|0} + (load from TOC){6} + (basr){2} = {14|8}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2500
    if (emit_target_to_pool) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2501
      // When emitting the call for the first time, we do not need to use
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2502
      // the pc-relative version. It will be patched anyway, when the code
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2503
      // buffer is copied.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2504
      // Relocation is not needed when !ReoptimizeCallSequences.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2505
      relocInfo::relocType rt = ReoptimizeCallSequences ? relocInfo::runtime_call_w_cp_type : relocInfo::none;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2506
      AddressLiteral dest(target, rt);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2507
      // Store_oop_in_toc() adds dest to the constant table. As side effect, this kills
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2508
      // inst_mark(). Reset if possible.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2509
      bool reset_mark = (inst_mark() == pc());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2510
      tocOffset = store_oop_in_toc(dest);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2511
      if (reset_mark) { set_inst_mark(); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2512
      if (tocOffset == -1) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2513
        return false; // Couldn't create constant pool entry.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2514
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2515
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2516
    assert(offset() == start_off, "emit no code before this point!");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2517
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2518
    address tocPos = pc() + tocOffset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2519
    if (emit_target_to_pool) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2520
      tocPos = code()->consts()->start() + tocOffset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2521
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2522
    load_long_pcrelative(Z_R14, tocPos);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2523
    z_basr(Z_R14, Z_R14);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2524
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2525
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2526
#ifdef ASSERT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2527
  // Assert that we can identify the emitted call.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2528
  assert(is_call_far_patchable_at(addr_at(start_off)), "can't identify emitted call");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2529
  assert(offset() == start_off+call_far_patchable_size(), "wrong size");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2530
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2531
  if (emit_target_to_pool) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2532
    assert(get_dest_of_call_far_patchable_at(addr_at(start_off), code()->consts()->start()) == target,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2533
           "wrong encoding of dest address");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2534
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2535
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2536
  return true; // success
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2537
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2538
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2539
// Identify a call_far_patchable instruction.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2540
// For more detailed information see header comment of call_far_patchable.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2541
bool MacroAssembler::is_call_far_patchable_at(address instruction_addr) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2542
  return is_call_far_patchable_variant2_at(instruction_addr)  || // short version: BRASL
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2543
         is_call_far_patchable_variant0_at(instruction_addr);    // long version LARL + LG + BASR
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2544
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2545
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2546
// Does the call_far_patchable instruction use a pc-relative encoding
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2547
// of the call destination?
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2548
bool MacroAssembler::is_call_far_patchable_pcrelative_at(address instruction_addr) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2549
  // Variant 2 is pc-relative.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2550
  return is_call_far_patchable_variant2_at(instruction_addr);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2551
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2552
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2553
bool MacroAssembler::is_call_far_pcrelative(address instruction_addr) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2554
  // Prepend each BRASL with a nop.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2555
  return is_z_nop(instruction_addr) && is_z_brasl(instruction_addr + nop_size());  // Match at position after one nop required.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2556
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2557
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2558
// Set destination address of a call_far_patchable instruction.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2559
void MacroAssembler::set_dest_of_call_far_patchable_at(address instruction_addr, address dest, int64_t tocOffset) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2560
  ResourceMark rm;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2561
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2562
  // Now that CP entry is verified, patch call to a pc-relative call (if circumstances permit).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2563
  int code_size = MacroAssembler::call_far_patchable_size();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2564
  CodeBuffer buf(instruction_addr, code_size);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2565
  MacroAssembler masm(&buf);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2566
  masm.call_far_patchable(dest, tocOffset);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2567
  ICache::invalidate_range(instruction_addr, code_size); // Empty on z.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2568
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2569
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2570
// Get dest address of a call_far_patchable instruction.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2571
address MacroAssembler::get_dest_of_call_far_patchable_at(address instruction_addr, address ctable) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2572
  // Dynamic TOC: absolute address in constant pool.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2573
  // Check variant2 first, it is more frequent.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2574
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2575
  // Relative address encoded in call instruction.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2576
  if (is_call_far_patchable_variant2_at(instruction_addr)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2577
    return MacroAssembler::get_target_addr_pcrel(instruction_addr + nop_size()); // Prepend each BRASL with a nop.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2578
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2579
  // Absolute address in constant pool.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2580
  } else if (is_call_far_patchable_variant0_at(instruction_addr)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2581
    address iaddr = instruction_addr;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2582
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2583
    long    tocOffset = get_load_const_from_toc_offset(iaddr);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2584
    address tocLoc    = iaddr + tocOffset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2585
    return *(address *)(tocLoc);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2586
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2587
    fprintf(stderr, "MacroAssembler::get_dest_of_call_far_patchable_at has a problem at %p:\n", instruction_addr);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2588
    fprintf(stderr, "not a call_far_patchable: %16.16lx %16.16lx, len = %d\n",
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2589
            *(unsigned long*)instruction_addr,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2590
            *(unsigned long*)(instruction_addr+8),
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2591
            call_far_patchable_size());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2592
    Disassembler::decode(instruction_addr, instruction_addr+call_far_patchable_size());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2593
    ShouldNotReachHere();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2594
    return NULL;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2595
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2596
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2597
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2598
void MacroAssembler::align_call_far_patchable(address pc) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2599
  if (call_far_patchable_requires_alignment_nop(pc)) { z_nop(); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2600
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2601
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2602
void MacroAssembler::check_and_handle_earlyret(Register java_thread) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2603
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2604
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2605
void MacroAssembler::check_and_handle_popframe(Register java_thread) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2606
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2607
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2608
// Read from the polling page.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2609
// Use TM or TMY instruction, depending on read offset.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2610
//   offset = 0: Use TM, safepoint polling.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2611
//   offset < 0: Use TMY, profiling safepoint polling.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2612
void MacroAssembler::load_from_polling_page(Register polling_page_address, int64_t offset) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2613
  if (Immediate::is_uimm12(offset)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2614
    z_tm(offset, polling_page_address, mask_safepoint);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2615
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2616
    z_tmy(offset, polling_page_address, mask_profiling);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2617
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2618
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2619
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2620
// Check whether z_instruction is a read access to the polling page
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2621
// which was emitted by load_from_polling_page(..).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2622
bool MacroAssembler::is_load_from_polling_page(address instr_loc) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2623
  unsigned long z_instruction;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2624
  unsigned int  ilen = get_instruction(instr_loc, &z_instruction);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2625
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2626
  if (ilen == 2) { return false; } // It's none of the allowed instructions.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2627
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2628
  if (ilen == 4) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2629
    if (!is_z_tm(z_instruction)) { return false; } // It's len=4, but not a z_tm. fail.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2630
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2631
    int ms = inv_mask(z_instruction,8,32);  // mask
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2632
    int ra = inv_reg(z_instruction,16,32);  // base register
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2633
    int ds = inv_uimm12(z_instruction);     // displacement
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2634
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2635
    if (!(ds == 0 && ra != 0 && ms == mask_safepoint)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2636
      return false; // It's not a z_tm(0, ra, mask_safepoint). Fail.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2637
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2638
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2639
  } else { /* if (ilen == 6) */
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2640
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2641
    assert(!is_z_lg(z_instruction), "old form (LG) polling page access. Please fix and use TM(Y).");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2642
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2643
    if (!is_z_tmy(z_instruction)) { return false; } // It's len=6, but not a z_tmy. fail.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2644
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2645
    int ms = inv_mask(z_instruction,8,48);  // mask
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2646
    int ra = inv_reg(z_instruction,16,48);  // base register
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2647
    int ds = inv_simm20(z_instruction);     // displacement
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2648
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2649
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2650
  return true;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2651
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2652
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2653
// Extract poll address from instruction and ucontext.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2654
address MacroAssembler::get_poll_address(address instr_loc, void* ucontext) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2655
  assert(ucontext != NULL, "must have ucontext");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2656
  ucontext_t* uc = (ucontext_t*) ucontext;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2657
  unsigned long z_instruction;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2658
  unsigned int ilen = get_instruction(instr_loc, &z_instruction);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2659
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2660
  if (ilen == 4 && is_z_tm(z_instruction)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2661
    int ra = inv_reg(z_instruction, 16, 32);  // base register
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2662
    int ds = inv_uimm12(z_instruction);       // displacement
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2663
    address addr = (address)uc->uc_mcontext.gregs[ra];
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2664
    return addr + ds;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2665
  } else if (ilen == 6 && is_z_tmy(z_instruction)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2666
    int ra = inv_reg(z_instruction, 16, 48);  // base register
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2667
    int ds = inv_simm20(z_instruction);       // displacement
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2668
    address addr = (address)uc->uc_mcontext.gregs[ra];
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2669
    return addr + ds;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2670
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2671
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2672
  ShouldNotReachHere();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2673
  return NULL;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2674
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2675
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2676
// Extract poll register from instruction.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2677
uint MacroAssembler::get_poll_register(address instr_loc) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2678
  unsigned long z_instruction;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2679
  unsigned int ilen = get_instruction(instr_loc, &z_instruction);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2680
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2681
  if (ilen == 4 && is_z_tm(z_instruction)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2682
    return (uint)inv_reg(z_instruction, 16, 32);  // base register
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2683
  } else if (ilen == 6 && is_z_tmy(z_instruction)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2684
    return (uint)inv_reg(z_instruction, 16, 48);  // base register
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2685
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2686
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2687
  ShouldNotReachHere();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2688
  return 0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2689
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2690
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2691
bool MacroAssembler::is_memory_serialization(int instruction, JavaThread* thread, void* ucontext) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2692
  ShouldNotCallThis();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2693
  return false;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2694
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2695
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2696
// Write serialization page so VM thread can do a pseudo remote membar
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2697
// We use the current thread pointer to calculate a thread specific
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2698
// offset to write to within the page. This minimizes bus traffic
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2699
// due to cache line collision.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2700
void MacroAssembler::serialize_memory(Register thread, Register tmp1, Register tmp2) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2701
  assert_different_registers(tmp1, tmp2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2702
  z_sllg(tmp2, thread, os::get_serialize_page_shift_count());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2703
  load_const_optimized(tmp1, (long) os::get_memory_serialize_page());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2704
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2705
  int mask = os::get_serialize_page_mask();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2706
  if (Immediate::is_uimm16(mask)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2707
    z_nill(tmp2, mask);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2708
    z_llghr(tmp2, tmp2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2709
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2710
    z_nilf(tmp2, mask);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2711
    z_llgfr(tmp2, tmp2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2712
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2713
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2714
  z_release();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2715
  z_st(Z_R0, 0, tmp2, tmp1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2716
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2717
48332
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2718
void MacroAssembler::safepoint_poll(Label& slow_path, Register temp_reg) {
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2719
  if (SafepointMechanism::uses_thread_local_poll()) {
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2720
    const Address poll_byte_addr(Z_thread, in_bytes(Thread::polling_page_offset()) + 7 /* Big Endian */);
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2721
    // Armed page has poll_bit set.
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2722
    z_tm(poll_byte_addr, SafepointMechanism::poll_bit());
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2723
    z_brnaz(slow_path);
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2724
  } else {
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2725
    load_const_optimized(temp_reg, SafepointSynchronize::address_of_state());
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2726
    z_cli(/*SafepointSynchronize::sz_state()*/4-1, temp_reg, SafepointSynchronize::_not_synchronized);
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2727
    z_brne(slow_path);
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2728
  }
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2729
}
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 48331
diff changeset
  2730
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2731
// Don't rely on register locking, always use Z_R1 as scratch register instead.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2732
void MacroAssembler::bang_stack_with_offset(int offset) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2733
  // Stack grows down, caller passes positive offset.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2734
  assert(offset > 0, "must bang with positive offset");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2735
  if (Displacement::is_validDisp(-offset)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2736
    z_tmy(-offset, Z_SP, mask_stackbang);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2737
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2738
    add2reg(Z_R1, -offset, Z_SP);    // Do not destroy Z_SP!!!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2739
    z_tm(0, Z_R1, mask_stackbang);  // Just banging.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2740
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2741
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2742
43420
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2743
void MacroAssembler::reserved_stack_check(Register return_pc) {
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2744
  // Test if reserved zone needs to be enabled.
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2745
  Label no_reserved_zone_enabling;
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2746
  assert(return_pc == Z_R14, "Return pc must be in R14 before z_br() to StackOverflow stub.");
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2747
  BLOCK_COMMENT("reserved_stack_check {");
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2748
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2749
  z_clg(Z_SP, Address(Z_thread, JavaThread::reserved_stack_activation_offset()));
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2750
  z_brl(no_reserved_zone_enabling);
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2751
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2752
  // Enable reserved zone again, throw stack overflow exception.
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2753
  save_return_pc();
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2754
  push_frame_abi160(0);
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2755
  call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::enable_stack_reserved_zone), Z_thread);
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2756
  pop_frame();
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2757
  restore_return_pc();
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2758
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2759
  load_const_optimized(Z_R1, StubRoutines::throw_delayed_StackOverflowError_entry());
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2760
  // Don't use call() or z_basr(), they will invalidate Z_R14 which contains the return pc.
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2761
  z_br(Z_R1);
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2762
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2763
  should_not_reach_here();
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2764
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2765
  bind(no_reserved_zone_enabling);
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2766
  BLOCK_COMMENT("} reserved_stack_check");
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2767
}
a056d6465ef9 8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 42065
diff changeset
  2768
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2769
// Defines obj, preserves var_size_in_bytes, okay for t2 == var_size_in_bytes.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2770
void MacroAssembler::tlab_allocate(Register obj,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2771
                                   Register var_size_in_bytes,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2772
                                   int con_size_in_bytes,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2773
                                   Register t1,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2774
                                   Label& slow_case) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2775
  assert_different_registers(obj, var_size_in_bytes, t1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2776
  Register end = t1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2777
  Register thread = Z_thread;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2778
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2779
  z_lg(obj, Address(thread, JavaThread::tlab_top_offset()));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2780
  if (var_size_in_bytes == noreg) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2781
    z_lay(end, Address(obj, con_size_in_bytes));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2782
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2783
    z_lay(end, Address(obj, var_size_in_bytes));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2784
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2785
  z_cg(end, Address(thread, JavaThread::tlab_end_offset()));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2786
  branch_optimized(bcondHigh, slow_case);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2787
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2788
  // Update the tlab top pointer.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2789
  z_stg(end, Address(thread, JavaThread::tlab_top_offset()));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2790
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2791
  // Recover var_size_in_bytes if necessary.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2792
  if (var_size_in_bytes == end) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2793
    z_sgr(var_size_in_bytes, obj);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2794
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2795
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2796
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2797
// Emitter for interface method lookup.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2798
//   input: recv_klass, intf_klass, itable_index
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2799
//   output: method_result
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2800
//   kills: itable_index, temp1_reg, Z_R0, Z_R1
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2801
// TODO: Temp2_reg is unused. we may use this emitter also in the itable stubs.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2802
// If the register is still not needed then, remove it.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2803
void MacroAssembler::lookup_interface_method(Register           recv_klass,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2804
                                             Register           intf_klass,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2805
                                             RegisterOrConstant itable_index,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2806
                                             Register           method_result,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2807
                                             Register           temp1_reg,
48585
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2808
                                             Label&             no_such_interface,
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2809
                                             bool               return_method) {
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2810
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2811
  const Register vtable_len = temp1_reg;    // Used to compute itable_entry_addr.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2812
  const Register itable_entry_addr = Z_R1_scratch;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2813
  const Register itable_interface = Z_R0_scratch;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2814
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2815
  BLOCK_COMMENT("lookup_interface_method {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2816
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2817
  // Load start of itable entries into itable_entry_addr.
46280
6eef3d367beb 8175269: [s390] cleanup calls to vtable_start_offset() and vtable_length_offset()
lucy
parents: 46272
diff changeset
  2818
  z_llgf(vtable_len, Address(recv_klass, Klass::vtable_length_offset()));
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2819
  z_sllg(vtable_len, vtable_len, exact_log2(vtableEntry::size_in_bytes()));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2820
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2821
  // Loop over all itable entries until desired interfaceOop(Rinterface) found.
46280
6eef3d367beb 8175269: [s390] cleanup calls to vtable_start_offset() and vtable_length_offset()
lucy
parents: 46272
diff changeset
  2822
  const int vtable_base_offset = in_bytes(Klass::vtable_start_offset());
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2823
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2824
  add2reg_with_index(itable_entry_addr,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2825
                     vtable_base_offset + itableOffsetEntry::interface_offset_in_bytes(),
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2826
                     recv_klass, vtable_len);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2827
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2828
  const int itable_offset_search_inc = itableOffsetEntry::size() * wordSize;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2829
  Label     search;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2830
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2831
  bind(search);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2832
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2833
  // Handle IncompatibleClassChangeError.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2834
  // If the entry is NULL then we've reached the end of the table
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2835
  // without finding the expected interface, so throw an exception.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2836
  load_and_test_long(itable_interface, Address(itable_entry_addr));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2837
  z_bre(no_such_interface);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2838
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2839
  add2reg(itable_entry_addr, itable_offset_search_inc);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2840
  z_cgr(itable_interface, intf_klass);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2841
  z_brne(search);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2842
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2843
  // Entry found and itable_entry_addr points to it, get offset of vtable for interface.
48585
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2844
  if (return_method) {
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2845
    const int vtable_offset_offset = (itableOffsetEntry::offset_offset_in_bytes() -
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2846
                                      itableOffsetEntry::interface_offset_in_bytes()) -
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2847
                                     itable_offset_search_inc;
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2848
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2849
    // Compute itableMethodEntry and get method and entry point
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2850
    // we use addressing with index and displacement, since the formula
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2851
    // for computing the entry's offset has a fixed and a dynamic part,
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2852
    // the latter depending on the matched interface entry and on the case,
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2853
    // that the itable index has been passed as a register, not a constant value.
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2854
    int method_offset = itableMethodEntry::method_offset_in_bytes();
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2855
                             // Fixed part (displacement), common operand.
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2856
    Register itable_offset = method_result;  // Dynamic part (index register).
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2857
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2858
    if (itable_index.is_register()) {
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2859
       // Compute the method's offset in that register, for the formula, see the
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2860
       // else-clause below.
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2861
       z_sllg(itable_offset, itable_index.as_register(), exact_log2(itableMethodEntry::size() * wordSize));
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2862
       z_agf(itable_offset, vtable_offset_offset, itable_entry_addr);
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2863
    } else {
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2864
      // Displacement increases.
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2865
      method_offset += itableMethodEntry::size() * wordSize * itable_index.as_constant();
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2866
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2867
      // Load index from itable.
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2868
      z_llgf(itable_offset, vtable_offset_offset, itable_entry_addr);
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2869
    }
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2870
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2871
    // Finally load the method's oop.
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2872
    z_lg(method_result, method_offset, itable_offset, recv_klass);
d9fcb7ba8133 8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents: 48332
diff changeset
  2873
  }
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2874
  BLOCK_COMMENT("} lookup_interface_method");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2875
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2876
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2877
// Lookup for virtual method invocation.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2878
void MacroAssembler::lookup_virtual_method(Register           recv_klass,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2879
                                           RegisterOrConstant vtable_index,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2880
                                           Register           method_result) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2881
  assert_different_registers(recv_klass, vtable_index.register_or_noreg());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2882
  assert(vtableEntry::size() * wordSize == wordSize,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2883
         "else adjust the scaling in the code below");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2884
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2885
  BLOCK_COMMENT("lookup_virtual_method {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2886
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2887
  const int base = in_bytes(Klass::vtable_start_offset());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2888
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2889
  if (vtable_index.is_constant()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2890
    // Load with base + disp.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2891
    Address vtable_entry_addr(recv_klass,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2892
                              vtable_index.as_constant() * wordSize +
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2893
                              base +
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2894
                              vtableEntry::method_offset_in_bytes());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2895
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2896
    z_lg(method_result, vtable_entry_addr);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2897
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2898
    // Shift index properly and load with base + index + disp.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2899
    Register vindex = vtable_index.as_register();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2900
    Address  vtable_entry_addr(recv_klass, vindex,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2901
                               base + vtableEntry::method_offset_in_bytes());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2902
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2903
    z_sllg(vindex, vindex, exact_log2(wordSize));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2904
    z_lg(method_result, vtable_entry_addr);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2905
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2906
  BLOCK_COMMENT("} lookup_virtual_method");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2907
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2908
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2909
// Factor out code to call ic_miss_handler.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2910
// Generate code to call the inline cache miss handler.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2911
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2912
// In most cases, this code will be generated out-of-line.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2913
// The method parameters are intended to provide some variability.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2914
//   ICM          - Label which has to be bound to the start of useful code (past any traps).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2915
//   trapMarker   - Marking byte for the generated illtrap instructions (if any).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2916
//                  Any value except 0x00 is supported.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2917
//                  = 0x00 - do not generate illtrap instructions.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2918
//                         use nops to fill ununsed space.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2919
//   requiredSize - required size of the generated code. If the actually
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2920
//                  generated code is smaller, use padding instructions to fill up.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2921
//                  = 0 - no size requirement, no padding.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2922
//   scratch      - scratch register to hold branch target address.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2923
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2924
//  The method returns the code offset of the bound label.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2925
unsigned int MacroAssembler::call_ic_miss_handler(Label& ICM, int trapMarker, int requiredSize, Register scratch) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2926
  intptr_t startOffset = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2927
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2928
  // Prevent entry at content_begin().
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2929
  if (trapMarker != 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2930
    z_illtrap(trapMarker);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2931
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2932
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2933
  // Load address of inline cache miss code into scratch register
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2934
  // and branch to cache miss handler.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2935
  BLOCK_COMMENT("IC miss handler {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2936
  BIND(ICM);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2937
  unsigned int   labelOffset = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2938
  AddressLiteral icmiss(SharedRuntime::get_ic_miss_stub());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2939
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2940
  load_const_optimized(scratch, icmiss);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2941
  z_br(scratch);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2942
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2943
  // Fill unused space.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2944
  if (requiredSize > 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2945
    while ((offset() - startOffset) < requiredSize) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2946
      if (trapMarker == 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2947
        z_nop();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2948
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2949
        z_illtrap(trapMarker);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2950
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2951
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2952
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2953
  BLOCK_COMMENT("} IC miss handler");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2954
  return labelOffset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2955
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2956
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2957
void MacroAssembler::nmethod_UEP(Label& ic_miss) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2958
  Register ic_reg       = as_Register(Matcher::inline_cache_reg_encode());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2959
  int      klass_offset = oopDesc::klass_offset_in_bytes();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2960
  if (!ImplicitNullChecks || MacroAssembler::needs_explicit_null_check(klass_offset)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2961
    if (VM_Version::has_CompareBranch()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2962
      z_cgij(Z_ARG1, 0, Assembler::bcondEqual, ic_miss);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2963
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2964
      z_ltgr(Z_ARG1, Z_ARG1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2965
      z_bre(ic_miss);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2966
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2967
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2968
  // Compare cached class against klass from receiver.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2969
  compare_klass_ptr(ic_reg, klass_offset, Z_ARG1, false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2970
  z_brne(ic_miss);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2971
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2972
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2973
void MacroAssembler::check_klass_subtype_fast_path(Register   sub_klass,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2974
                                                   Register   super_klass,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2975
                                                   Register   temp1_reg,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2976
                                                   Label*     L_success,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2977
                                                   Label*     L_failure,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2978
                                                   Label*     L_slow_path,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2979
                                                   RegisterOrConstant super_check_offset) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2980
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2981
  const int sc_offset  = in_bytes(Klass::secondary_super_cache_offset());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2982
  const int sco_offset = in_bytes(Klass::super_check_offset_offset());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2983
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2984
  bool must_load_sco = (super_check_offset.constant_or_zero() == -1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2985
  bool need_slow_path = (must_load_sco ||
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2986
                         super_check_offset.constant_or_zero() == sc_offset);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2987
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2988
  // Input registers must not overlap.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2989
  assert_different_registers(sub_klass, super_klass, temp1_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2990
  if (super_check_offset.is_register()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2991
    assert_different_registers(sub_klass, super_klass,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2992
                               super_check_offset.as_register());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2993
  } else if (must_load_sco) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2994
    assert(temp1_reg != noreg, "supply either a temp or a register offset");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2995
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2996
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2997
  const Register Rsuper_check_offset = temp1_reg;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2998
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  2999
  NearLabel L_fallthrough;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3000
  int label_nulls = 0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3001
  if (L_success == NULL)   { L_success   = &L_fallthrough; label_nulls++; }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3002
  if (L_failure == NULL)   { L_failure   = &L_fallthrough; label_nulls++; }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3003
  if (L_slow_path == NULL) { L_slow_path = &L_fallthrough; label_nulls++; }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3004
  assert(label_nulls <= 1 ||
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3005
         (L_slow_path == &L_fallthrough && label_nulls <= 2 && !need_slow_path),
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3006
         "at most one NULL in the batch, usually");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3007
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3008
  BLOCK_COMMENT("check_klass_subtype_fast_path {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3009
  // If the pointers are equal, we are done (e.g., String[] elements).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3010
  // This self-check enables sharing of secondary supertype arrays among
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3011
  // non-primary types such as array-of-interface. Otherwise, each such
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3012
  // type would need its own customized SSA.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3013
  // We move this check to the front of the fast path because many
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3014
  // type checks are in fact trivially successful in this manner,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3015
  // so we get a nicely predicted branch right at the start of the check.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3016
  compare64_and_branch(sub_klass, super_klass, bcondEqual, *L_success);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3017
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3018
  // Check the supertype display, which is uint.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3019
  if (must_load_sco) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3020
    z_llgf(Rsuper_check_offset, sco_offset, super_klass);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3021
    super_check_offset = RegisterOrConstant(Rsuper_check_offset);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3022
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3023
  Address super_check_addr(sub_klass, super_check_offset, 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3024
  z_cg(super_klass, super_check_addr); // compare w/ displayed supertype
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3025
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3026
  // This check has worked decisively for primary supers.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3027
  // Secondary supers are sought in the super_cache ('super_cache_addr').
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3028
  // (Secondary supers are interfaces and very deeply nested subtypes.)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3029
  // This works in the same check above because of a tricky aliasing
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3030
  // between the super_cache and the primary super display elements.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3031
  // (The 'super_check_addr' can address either, as the case requires.)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3032
  // Note that the cache is updated below if it does not help us find
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3033
  // what we need immediately.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3034
  // So if it was a primary super, we can just fail immediately.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3035
  // Otherwise, it's the slow path for us (no success at this point).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3036
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3037
  // Hacked jmp, which may only be used just before L_fallthrough.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3038
#define final_jmp(label)                                                \
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3039
  if (&(label) == &L_fallthrough) { /*do nothing*/ }                    \
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3040
  else                            { branch_optimized(Assembler::bcondAlways, label); } /*omit semicolon*/
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3041
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3042
  if (super_check_offset.is_register()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3043
    branch_optimized(Assembler::bcondEqual, *L_success);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3044
    z_cfi(super_check_offset.as_register(), sc_offset);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3045
    if (L_failure == &L_fallthrough) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3046
      branch_optimized(Assembler::bcondEqual, *L_slow_path);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3047
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3048
      branch_optimized(Assembler::bcondNotEqual, *L_failure);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3049
      final_jmp(*L_slow_path);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3050
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3051
  } else if (super_check_offset.as_constant() == sc_offset) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3052
    // Need a slow path; fast failure is impossible.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3053
    if (L_slow_path == &L_fallthrough) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3054
      branch_optimized(Assembler::bcondEqual, *L_success);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3055
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3056
      branch_optimized(Assembler::bcondNotEqual, *L_slow_path);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3057
      final_jmp(*L_success);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3058
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3059
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3060
    // No slow path; it's a fast decision.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3061
    if (L_failure == &L_fallthrough) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3062
      branch_optimized(Assembler::bcondEqual, *L_success);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3063
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3064
      branch_optimized(Assembler::bcondNotEqual, *L_failure);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3065
      final_jmp(*L_success);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3066
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3067
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3068
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3069
  bind(L_fallthrough);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3070
#undef local_brc
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3071
#undef final_jmp
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3072
  BLOCK_COMMENT("} check_klass_subtype_fast_path");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3073
  // fallthru (to slow path)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3074
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3075
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3076
void MacroAssembler::check_klass_subtype_slow_path(Register Rsubklass,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3077
                                                   Register Rsuperklass,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3078
                                                   Register Rarray_ptr,  // tmp
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3079
                                                   Register Rlength,     // tmp
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3080
                                                   Label* L_success,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3081
                                                   Label* L_failure) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3082
  // Input registers must not overlap.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3083
  // Also check for R1 which is explicitely used here.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3084
  assert_different_registers(Z_R1, Rsubklass, Rsuperklass, Rarray_ptr, Rlength);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3085
  NearLabel L_fallthrough, L_loop;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3086
  int label_nulls = 0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3087
  if (L_success == NULL) { L_success = &L_fallthrough; label_nulls++; }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3088
  if (L_failure == NULL) { L_failure = &L_fallthrough; label_nulls++; }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3089
  assert(label_nulls <= 1, "at most one NULL in the batch");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3090
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3091
  const int ss_offset = in_bytes(Klass::secondary_supers_offset());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3092
  const int sc_offset = in_bytes(Klass::secondary_super_cache_offset());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3093
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3094
  const int length_offset = Array<Klass*>::length_offset_in_bytes();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3095
  const int base_offset   = Array<Klass*>::base_offset_in_bytes();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3096
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3097
  // Hacked jmp, which may only be used just before L_fallthrough.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3098
#define final_jmp(label)                                                \
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3099
  if (&(label) == &L_fallthrough) { /*do nothing*/ }                    \
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3100
  else                            branch_optimized(Assembler::bcondAlways, label) /*omit semicolon*/
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3101
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3102
  NearLabel loop_iterate, loop_count, match;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3103
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3104
  BLOCK_COMMENT("check_klass_subtype_slow_path {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3105
  z_lg(Rarray_ptr, ss_offset, Rsubklass);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3106
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3107
  load_and_test_int(Rlength, Address(Rarray_ptr, length_offset));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3108
  branch_optimized(Assembler::bcondZero, *L_failure);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3109
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3110
  // Oops in table are NO MORE compressed.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3111
  z_cg(Rsuperklass, base_offset, Rarray_ptr); // Check array element for match.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3112
  z_bre(match);                               // Shortcut for array length = 1.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3113
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3114
  // No match yet, so we must walk the array's elements.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3115
  z_lngfr(Rlength, Rlength);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3116
  z_sllg(Rlength, Rlength, LogBytesPerWord); // -#bytes of cache array
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3117
  z_llill(Z_R1, BytesPerWord);               // Set increment/end index.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3118
  add2reg(Rlength, 2 * BytesPerWord);        // start index  = -(n-2)*BytesPerWord
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3119
  z_slgr(Rarray_ptr, Rlength);               // start addr: +=  (n-2)*BytesPerWord
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3120
  z_bru(loop_count);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3121
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3122
  BIND(loop_iterate);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3123
  z_cg(Rsuperklass, base_offset, Rlength, Rarray_ptr); // Check array element for match.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3124
  z_bre(match);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3125
  BIND(loop_count);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3126
  z_brxlg(Rlength, Z_R1, loop_iterate);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3127
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3128
  // Rsuperklass not found among secondary super classes -> failure.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3129
  branch_optimized(Assembler::bcondAlways, *L_failure);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3130
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3131
  // Got a hit. Return success (zero result). Set cache.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3132
  // Cache load doesn't happen here. For speed it is directly emitted by the compiler.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3133
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3134
  BIND(match);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3135
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3136
  z_stg(Rsuperklass, sc_offset, Rsubklass); // Save result to cache.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3137
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3138
  final_jmp(*L_success);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3139
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3140
  // Exit to the surrounding code.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3141
  BIND(L_fallthrough);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3142
#undef local_brc
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3143
#undef final_jmp
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3144
  BLOCK_COMMENT("} check_klass_subtype_slow_path");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3145
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3146
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3147
// Emitter for combining fast and slow path.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3148
void MacroAssembler::check_klass_subtype(Register sub_klass,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3149
                                         Register super_klass,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3150
                                         Register temp1_reg,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3151
                                         Register temp2_reg,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3152
                                         Label&   L_success) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3153
  NearLabel failure;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3154
  BLOCK_COMMENT(err_msg("check_klass_subtype(%s subclass of %s) {", sub_klass->name(), super_klass->name()));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3155
  check_klass_subtype_fast_path(sub_klass, super_klass, temp1_reg,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3156
                                &L_success, &failure, NULL);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3157
  check_klass_subtype_slow_path(sub_klass, super_klass,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3158
                                temp1_reg, temp2_reg, &L_success, NULL);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3159
  BIND(failure);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3160
  BLOCK_COMMENT("} check_klass_subtype");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3161
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3162
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3163
// Increment a counter at counter_address when the eq condition code is
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3164
// set. Kills registers tmp1_reg and tmp2_reg and preserves the condition code.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3165
void MacroAssembler::increment_counter_eq(address counter_address, Register tmp1_reg, Register tmp2_reg) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3166
  Label l;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3167
  z_brne(l);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3168
  load_const(tmp1_reg, counter_address);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3169
  add2mem_32(Address(tmp1_reg), 1, tmp2_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3170
  z_cr(tmp1_reg, tmp1_reg); // Set cc to eq.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3171
  bind(l);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3172
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3173
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3174
// Semantics are dependent on the slow_case label:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3175
//   If the slow_case label is not NULL, failure to biased-lock the object
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3176
//   transfers control to the location of the slow_case label. If the
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3177
//   object could be biased-locked, control is transferred to the done label.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3178
//   The condition code is unpredictable.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3179
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3180
//   If the slow_case label is NULL, failure to biased-lock the object results
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3181
//   in a transfer of control to the done label with a condition code of not_equal.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3182
//   If the biased-lock could be successfully obtained, control is transfered to
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3183
//   the done label with a condition code of equal.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3184
//   It is mandatory to react on the condition code At the done label.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3185
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3186
void MacroAssembler::biased_locking_enter(Register  obj_reg,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3187
                                          Register  mark_reg,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3188
                                          Register  temp_reg,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3189
                                          Register  temp2_reg,    // May be Z_RO!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3190
                                          Label    &done,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3191
                                          Label    *slow_case) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3192
  assert(UseBiasedLocking, "why call this otherwise?");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3193
  assert_different_registers(obj_reg, mark_reg, temp_reg, temp2_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3194
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3195
  Label cas_label; // Try, if implemented, CAS locking. Fall thru to slow path otherwise.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3196
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3197
  BLOCK_COMMENT("biased_locking_enter {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3198
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3199
  // Biased locking
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3200
  // See whether the lock is currently biased toward our thread and
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3201
  // whether the epoch is still valid.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3202
  // Note that the runtime guarantees sufficient alignment of JavaThread
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3203
  // pointers to allow age to be placed into low bits.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3204
  assert(markOopDesc::age_shift == markOopDesc::lock_bits + markOopDesc::biased_lock_bits,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3205
         "biased locking makes assumptions about bit layout");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3206
  z_lr(temp_reg, mark_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3207
  z_nilf(temp_reg, markOopDesc::biased_lock_mask_in_place);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3208
  z_chi(temp_reg, markOopDesc::biased_lock_pattern);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3209
  z_brne(cas_label);  // Try cas if object is not biased, i.e. cannot be biased locked.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3210
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3211
  load_prototype_header(temp_reg, obj_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3212
  load_const_optimized(temp2_reg, ~((int) markOopDesc::age_mask_in_place));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3213
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3214
  z_ogr(temp_reg, Z_thread);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3215
  z_xgr(temp_reg, mark_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3216
  z_ngr(temp_reg, temp2_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3217
  if (PrintBiasedLockingStatistics) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3218
    increment_counter_eq((address) BiasedLocking::biased_lock_entry_count_addr(), mark_reg, temp2_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3219
    // Restore mark_reg.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3220
    z_lg(mark_reg, oopDesc::mark_offset_in_bytes(), obj_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3221
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3222
  branch_optimized(Assembler::bcondEqual, done);  // Biased lock obtained, return success.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3223
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3224
  Label try_revoke_bias;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3225
  Label try_rebias;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3226
  Address mark_addr = Address(obj_reg, oopDesc::mark_offset_in_bytes());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3227
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3228
  //----------------------------------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3229
  // At this point we know that the header has the bias pattern and
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3230
  // that we are not the bias owner in the current epoch. We need to
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3231
  // figure out more details about the state of the header in order to
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3232
  // know what operations can be legally performed on the object's
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3233
  // header.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3234
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3235
  // If the low three bits in the xor result aren't clear, that means
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3236
  // the prototype header is no longer biased and we have to revoke
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3237
  // the bias on this object.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3238
  z_tmll(temp_reg, markOopDesc::biased_lock_mask_in_place);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3239
  z_brnaz(try_revoke_bias);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3240
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3241
  // Biasing is still enabled for this data type. See whether the
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3242
  // epoch of the current bias is still valid, meaning that the epoch
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3243
  // bits of the mark word are equal to the epoch bits of the
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3244
  // prototype header. (Note that the prototype header's epoch bits
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3245
  // only change at a safepoint.) If not, attempt to rebias the object
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3246
  // toward the current thread. Note that we must be absolutely sure
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3247
  // that the current epoch is invalid in order to do this because
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3248
  // otherwise the manipulations it performs on the mark word are
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3249
  // illegal.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3250
  z_tmll(temp_reg, markOopDesc::epoch_mask_in_place);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3251
  z_brnaz(try_rebias);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3252
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3253
  //----------------------------------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3254
  // The epoch of the current bias is still valid but we know nothing
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3255
  // about the owner; it might be set or it might be clear. Try to
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3256
  // acquire the bias of the object using an atomic operation. If this
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3257
  // fails we will go in to the runtime to revoke the object's bias.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3258
  // Note that we first construct the presumed unbiased header so we
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3259
  // don't accidentally blow away another thread's valid bias.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3260
  z_nilf(mark_reg, markOopDesc::biased_lock_mask_in_place | markOopDesc::age_mask_in_place |
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3261
         markOopDesc::epoch_mask_in_place);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3262
  z_lgr(temp_reg, Z_thread);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3263
  z_llgfr(mark_reg, mark_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3264
  z_ogr(temp_reg, mark_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3265
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3266
  assert(oopDesc::mark_offset_in_bytes() == 0, "offset of _mark is not 0");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3267
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3268
  z_csg(mark_reg, temp_reg, 0, obj_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3269
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3270
  // If the biasing toward our thread failed, this means that
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3271
  // another thread succeeded in biasing it toward itself and we
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3272
  // need to revoke that bias. The revocation will occur in the
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3273
  // interpreter runtime in the slow case.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3274
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3275
  if (PrintBiasedLockingStatistics) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3276
    increment_counter_eq((address) BiasedLocking::anonymously_biased_lock_entry_count_addr(),
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3277
                         temp_reg, temp2_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3278
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3279
  if (slow_case != NULL) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3280
    branch_optimized(Assembler::bcondNotEqual, *slow_case); // Biased lock not obtained, need to go the long way.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3281
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3282
  branch_optimized(Assembler::bcondAlways, done);           // Biased lock status given in condition code.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3283
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3284
  //----------------------------------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3285
  bind(try_rebias);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3286
  // At this point we know the epoch has expired, meaning that the
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3287
  // current "bias owner", if any, is actually invalid. Under these
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3288
  // circumstances _only_, we are allowed to use the current header's
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3289
  // value as the comparison value when doing the cas to acquire the
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3290
  // bias in the current epoch. In other words, we allow transfer of
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3291
  // the bias from one thread to another directly in this situation.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3292
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3293
  z_nilf(mark_reg, markOopDesc::biased_lock_mask_in_place | markOopDesc::age_mask_in_place | markOopDesc::epoch_mask_in_place);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3294
  load_prototype_header(temp_reg, obj_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3295
  z_llgfr(mark_reg, mark_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3296
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3297
  z_ogr(temp_reg, Z_thread);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3298
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3299
  assert(oopDesc::mark_offset_in_bytes() == 0, "offset of _mark is not 0");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3300
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3301
  z_csg(mark_reg, temp_reg, 0, obj_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3302
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3303
  // If the biasing toward our thread failed, this means that
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3304
  // another thread succeeded in biasing it toward itself and we
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3305
  // need to revoke that bias. The revocation will occur in the
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3306
  // interpreter runtime in the slow case.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3307
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3308
  if (PrintBiasedLockingStatistics) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3309
    increment_counter_eq((address) BiasedLocking::rebiased_lock_entry_count_addr(), temp_reg, temp2_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3310
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3311
  if (slow_case != NULL) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3312
    branch_optimized(Assembler::bcondNotEqual, *slow_case);  // Biased lock not obtained, need to go the long way.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3313
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3314
  z_bru(done);           // Biased lock status given in condition code.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3315
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3316
  //----------------------------------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3317
  bind(try_revoke_bias);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3318
  // The prototype mark in the klass doesn't have the bias bit set any
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3319
  // more, indicating that objects of this data type are not supposed
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3320
  // to be biased any more. We are going to try to reset the mark of
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3321
  // this object to the prototype value and fall through to the
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3322
  // CAS-based locking scheme. Note that if our CAS fails, it means
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3323
  // that another thread raced us for the privilege of revoking the
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3324
  // bias of this particular object, so it's okay to continue in the
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3325
  // normal locking code.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3326
  load_prototype_header(temp_reg, obj_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3327
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3328
  assert(oopDesc::mark_offset_in_bytes() == 0, "offset of _mark is not 0");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3329
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3330
  z_csg(mark_reg, temp_reg, 0, obj_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3331
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3332
  // Fall through to the normal CAS-based lock, because no matter what
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3333
  // the result of the above CAS, some thread must have succeeded in
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3334
  // removing the bias bit from the object's header.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3335
  if (PrintBiasedLockingStatistics) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3336
    // z_cgr(mark_reg, temp2_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3337
    increment_counter_eq((address) BiasedLocking::revoked_lock_entry_count_addr(), temp_reg, temp2_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3338
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3339
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3340
  bind(cas_label);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3341
  BLOCK_COMMENT("} biased_locking_enter");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3342
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3343
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3344
void MacroAssembler::biased_locking_exit(Register mark_addr, Register temp_reg, Label& done) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3345
  // Check for biased locking unlock case, which is a no-op
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3346
  // Note: we do not have to check the thread ID for two reasons.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3347
  // First, the interpreter checks for IllegalMonitorStateException at
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3348
  // a higher level. Second, if the bias was revoked while we held the
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3349
  // lock, the object could not be rebiased toward another thread, so
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3350
  // the bias bit would be clear.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3351
  BLOCK_COMMENT("biased_locking_exit {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3352
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3353
  z_lg(temp_reg, 0, mark_addr);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3354
  z_nilf(temp_reg, markOopDesc::biased_lock_mask_in_place);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3355
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3356
  z_chi(temp_reg, markOopDesc::biased_lock_pattern);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3357
  z_bre(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3358
  BLOCK_COMMENT("} biased_locking_exit");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3359
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3360
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3361
void MacroAssembler::compiler_fast_lock_object(Register oop, Register box, Register temp1, Register temp2, bool try_bias) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3362
  Register displacedHeader = temp1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3363
  Register currentHeader = temp1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3364
  Register temp = temp2;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3365
  NearLabel done, object_has_monitor;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3366
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3367
  BLOCK_COMMENT("compiler_fast_lock_object {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3368
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3369
  // Load markOop from oop into mark.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3370
  z_lg(displacedHeader, 0, oop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3371
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3372
  if (try_bias) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3373
    biased_locking_enter(oop, displacedHeader, temp, Z_R0, done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3374
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3375
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3376
  // Handle existing monitor.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3377
  if ((EmitSync & 0x01) == 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3378
    // The object has an existing monitor iff (mark & monitor_value) != 0.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3379
    guarantee(Immediate::is_uimm16(markOopDesc::monitor_value), "must be half-word");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3380
    z_lr(temp, displacedHeader);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3381
    z_nill(temp, markOopDesc::monitor_value);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3382
    z_brne(object_has_monitor);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3383
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3384
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3385
  // Set mark to markOop | markOopDesc::unlocked_value.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3386
  z_oill(displacedHeader, markOopDesc::unlocked_value);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3387
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3388
  // Load Compare Value application register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3389
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3390
  // Initialize the box (must happen before we update the object mark).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3391
  z_stg(displacedHeader, BasicLock::displaced_header_offset_in_bytes(), box);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3392
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3393
  // Memory Fence (in cmpxchgd)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3394
  // Compare object markOop with mark and if equal exchange scratch1 with object markOop.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3395
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3396
  // If the compare-and-swap succeeded, then we found an unlocked object and we
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3397
  // have now locked it.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3398
  z_csg(displacedHeader, box, 0, oop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3399
  assert(currentHeader==displacedHeader, "must be same register"); // Identified two registers from z/Architecture.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3400
  z_bre(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3401
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3402
  // We did not see an unlocked object so try the fast recursive case.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3403
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3404
  z_sgr(currentHeader, Z_SP);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3405
  load_const_optimized(temp, (~(os::vm_page_size()-1) | markOopDesc::lock_mask_in_place));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3406
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3407
  z_ngr(currentHeader, temp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3408
  //   z_brne(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3409
  //   z_release();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3410
  z_stg(currentHeader/*==0 or not 0*/, BasicLock::displaced_header_offset_in_bytes(), box);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3411
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3412
  z_bru(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3413
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3414
  if ((EmitSync & 0x01) == 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3415
    Register zero = temp;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3416
    Register monitor_tagged = displacedHeader; // Tagged with markOopDesc::monitor_value.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3417
    bind(object_has_monitor);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3418
    // The object's monitor m is unlocked iff m->owner == NULL,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3419
    // otherwise m->owner may contain a thread or a stack address.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3420
    //
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3421
    // Try to CAS m->owner from NULL to current thread.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3422
    z_lghi(zero, 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3423
    // If m->owner is null, then csg succeeds and sets m->owner=THREAD and CR=EQ.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3424
    z_csg(zero, Z_thread, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner), monitor_tagged);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3425
    // Store a non-null value into the box.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3426
    z_stg(box, BasicLock::displaced_header_offset_in_bytes(), box);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3427
#ifdef ASSERT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3428
      z_brne(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3429
      // We've acquired the monitor, check some invariants.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3430
      // Invariant 1: _recursions should be 0.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3431
      asm_assert_mem8_is_zero(OM_OFFSET_NO_MONITOR_VALUE_TAG(recursions), monitor_tagged,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3432
                              "monitor->_recursions should be 0", -1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3433
      z_ltgr(zero, zero); // Set CR=EQ.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3434
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3435
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3436
  bind(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3437
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3438
  BLOCK_COMMENT("} compiler_fast_lock_object");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3439
  // If locking was successful, CR should indicate 'EQ'.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3440
  // The compiler or the native wrapper generates a branch to the runtime call
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3441
  // _complete_monitor_locking_Java.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3442
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3443
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3444
void MacroAssembler::compiler_fast_unlock_object(Register oop, Register box, Register temp1, Register temp2, bool try_bias) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3445
  Register displacedHeader = temp1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3446
  Register currentHeader = temp2;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3447
  Register temp = temp1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3448
  Register monitor = temp2;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3449
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3450
  Label done, object_has_monitor;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3451
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3452
  BLOCK_COMMENT("compiler_fast_unlock_object {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3453
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3454
  if (try_bias) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3455
    biased_locking_exit(oop, currentHeader, done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3456
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3457
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3458
  // Find the lock address and load the displaced header from the stack.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3459
  // if the displaced header is zero, we have a recursive unlock.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3460
  load_and_test_long(displacedHeader, Address(box, BasicLock::displaced_header_offset_in_bytes()));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3461
  z_bre(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3462
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3463
  // Handle existing monitor.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3464
  if ((EmitSync & 0x02) == 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3465
    // The object has an existing monitor iff (mark & monitor_value) != 0.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3466
    z_lg(currentHeader, oopDesc::mark_offset_in_bytes(), oop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3467
    guarantee(Immediate::is_uimm16(markOopDesc::monitor_value), "must be half-word");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3468
    z_nill(currentHeader, markOopDesc::monitor_value);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3469
    z_brne(object_has_monitor);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3470
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3471
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3472
  // Check if it is still a light weight lock, this is true if we see
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3473
  // the stack address of the basicLock in the markOop of the object
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3474
  // copy box to currentHeader such that csg does not kill it.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3475
  z_lgr(currentHeader, box);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3476
  z_csg(currentHeader, displacedHeader, 0, oop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3477
  z_bru(done); // Csg sets CR as desired.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3478
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3479
  // Handle existing monitor.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3480
  if ((EmitSync & 0x02) == 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3481
    bind(object_has_monitor);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3482
    z_lg(currentHeader, oopDesc::mark_offset_in_bytes(), oop);    // CurrentHeader is tagged with monitor_value set.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3483
    load_and_test_long(temp, Address(currentHeader, OM_OFFSET_NO_MONITOR_VALUE_TAG(recursions)));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3484
    z_brne(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3485
    load_and_test_long(temp, Address(currentHeader, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner)));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3486
    z_brne(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3487
    load_and_test_long(temp, Address(currentHeader, OM_OFFSET_NO_MONITOR_VALUE_TAG(EntryList)));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3488
    z_brne(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3489
    load_and_test_long(temp, Address(currentHeader, OM_OFFSET_NO_MONITOR_VALUE_TAG(cxq)));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3490
    z_brne(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3491
    z_release();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3492
    z_stg(temp/*=0*/, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner), currentHeader);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3493
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3494
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3495
  bind(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3496
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3497
  BLOCK_COMMENT("} compiler_fast_unlock_object");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3498
  // flag == EQ indicates success
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3499
  // flag == NE indicates failure
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3500
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3501
44406
a46a6c4d1dd9 8176100: [REDO][REDO] G1 Needs pre barrier on dereference of weak JNI handles
mgerdin
parents: 44093
diff changeset
  3502
void MacroAssembler::resolve_jobject(Register value, Register tmp1, Register tmp2) {
49754
ee93c1087584 8201362: Remove CollectedHeap::barrier_set()
pliden
parents: 49748
diff changeset
  3503
  BarrierSetAssembler* bs = BarrierSet::barrier_set()->barrier_set_assembler();
49748
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49734
diff changeset
  3504
  bs->resolve_jobject(this, value, tmp1, tmp2);
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49734
diff changeset
  3505
}
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3506
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3507
// Last_Java_sp must comply to the rules in frame_s390.hpp.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3508
void MacroAssembler::set_last_Java_frame(Register last_Java_sp, Register last_Java_pc, bool allow_relocation) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3509
  BLOCK_COMMENT("set_last_Java_frame {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3510
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3511
  // Always set last_Java_pc and flags first because once last_Java_sp
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3512
  // is visible has_last_Java_frame is true and users will look at the
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3513
  // rest of the fields. (Note: flags should always be zero before we
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3514
  // get here so doesn't need to be set.)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3515
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3516
  // Verify that last_Java_pc was zeroed on return to Java.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3517
  if (allow_relocation) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3518
    asm_assert_mem8_is_zero(in_bytes(JavaThread::last_Java_pc_offset()),
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3519
                            Z_thread,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3520
                            "last_Java_pc not zeroed before leaving Java",
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3521
                            0x200);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3522
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3523
    asm_assert_mem8_is_zero_static(in_bytes(JavaThread::last_Java_pc_offset()),
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3524
                                   Z_thread,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3525
                                   "last_Java_pc not zeroed before leaving Java",
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3526
                                   0x200);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3527
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3528
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3529
  // When returning from calling out from Java mode the frame anchor's
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3530
  // last_Java_pc will always be set to NULL. It is set here so that
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3531
  // if we are doing a call to native (not VM) that we capture the
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3532
  // known pc and don't have to rely on the native call having a
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3533
  // standard frame linkage where we can find the pc.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3534
  if (last_Java_pc!=noreg) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3535
    z_stg(last_Java_pc, Address(Z_thread, JavaThread::last_Java_pc_offset()));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3536
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3537
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3538
  // This membar release is not required on z/Architecture, since the sequence of stores
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3539
  // in maintained. Nevertheless, we leave it in to document the required ordering.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3540
  // The implementation of z_release() should be empty.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3541
  // z_release();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3542
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3543
  z_stg(last_Java_sp, Address(Z_thread, JavaThread::last_Java_sp_offset()));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3544
  BLOCK_COMMENT("} set_last_Java_frame");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3545
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3546
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3547
void MacroAssembler::reset_last_Java_frame(bool allow_relocation) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3548
  BLOCK_COMMENT("reset_last_Java_frame {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3549
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3550
  if (allow_relocation) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3551
    asm_assert_mem8_isnot_zero(in_bytes(JavaThread::last_Java_sp_offset()),
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3552
                               Z_thread,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3553
                               "SP was not set, still zero",
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3554
                               0x202);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3555
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3556
    asm_assert_mem8_isnot_zero_static(in_bytes(JavaThread::last_Java_sp_offset()),
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3557
                                      Z_thread,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3558
                                      "SP was not set, still zero",
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3559
                                      0x202);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3560
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3561
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3562
  // _last_Java_sp = 0
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3563
  // Clearing storage must be atomic here, so don't use clear_mem()!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3564
  store_const(Address(Z_thread, JavaThread::last_Java_sp_offset()), 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3565
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3566
  // _last_Java_pc = 0
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3567
  store_const(Address(Z_thread, JavaThread::last_Java_pc_offset()), 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3568
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3569
  BLOCK_COMMENT("} reset_last_Java_frame");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3570
  return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3571
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3572
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3573
void MacroAssembler::set_top_ijava_frame_at_SP_as_last_Java_frame(Register sp, Register tmp1, bool allow_relocation) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3574
  assert_different_registers(sp, tmp1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3575
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3576
  // We cannot trust that code generated by the C++ compiler saves R14
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3577
  // to z_abi_160.return_pc, because sometimes it spills R14 using stmg at
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3578
  // z_abi_160.gpr14 (e.g. InterpreterRuntime::_new()).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3579
  // Therefore we load the PC into tmp1 and let set_last_Java_frame() save
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3580
  // it into the frame anchor.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3581
  get_PC(tmp1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3582
  set_last_Java_frame(/*sp=*/sp, /*pc=*/tmp1, allow_relocation);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3583
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3584
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3585
void MacroAssembler::set_thread_state(JavaThreadState new_state) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3586
  z_release();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3587
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3588
  assert(Immediate::is_uimm16(_thread_max_state), "enum value out of range for instruction");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3589
  assert(sizeof(JavaThreadState) == sizeof(int), "enum value must have base type int");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3590
  store_const(Address(Z_thread, JavaThread::thread_state_offset()), new_state, Z_R0, false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3591
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3592
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3593
void MacroAssembler::get_vm_result(Register oop_result) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3594
  verify_thread();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3595
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3596
  z_lg(oop_result, Address(Z_thread, JavaThread::vm_result_offset()));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3597
  clear_mem(Address(Z_thread, JavaThread::vm_result_offset()), sizeof(void*));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3598
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3599
  verify_oop(oop_result);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3600
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3601
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3602
void MacroAssembler::get_vm_result_2(Register result) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3603
  verify_thread();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3604
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3605
  z_lg(result, Address(Z_thread, JavaThread::vm_result_2_offset()));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3606
  clear_mem(Address(Z_thread, JavaThread::vm_result_2_offset()), sizeof(void*));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3607
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3608
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3609
// We require that C code which does not return a value in vm_result will
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3610
// leave it undisturbed.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3611
void MacroAssembler::set_vm_result(Register oop_result) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3612
  z_stg(oop_result, Address(Z_thread, JavaThread::vm_result_offset()));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3613
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3614
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3615
// Explicit null checks (used for method handle code).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3616
void MacroAssembler::null_check(Register reg, Register tmp, int64_t offset) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3617
  if (!ImplicitNullChecks) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3618
    NearLabel ok;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3619
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3620
    compare64_and_branch(reg, (intptr_t) 0, Assembler::bcondNotEqual, ok);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3621
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3622
    // We just put the address into reg if it was 0 (tmp==Z_R0 is allowed so we can't use it for the address).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3623
    address exception_entry = Interpreter::throw_NullPointerException_entry();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3624
    load_absolute_address(reg, exception_entry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3625
    z_br(reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3626
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3627
    bind(ok);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3628
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3629
    if (needs_explicit_null_check((intptr_t)offset)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3630
      // Provoke OS NULL exception if reg = NULL by
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3631
      // accessing M[reg] w/o changing any registers.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3632
      z_lg(tmp, 0, reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3633
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3634
    // else
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3635
      // Nothing to do, (later) access of M[reg + offset]
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3636
      // will provoke OS NULL exception if reg = NULL.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3637
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3638
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3639
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3640
//-------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3641
//  Compressed Klass Pointers
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3642
//-------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3643
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3644
// Klass oop manipulations if compressed.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3645
void MacroAssembler::encode_klass_not_null(Register dst, Register src) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3646
  Register current = (src != noreg) ? src : dst; // Klass is in dst if no src provided. (dst == src) also possible.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3647
  address  base    = Universe::narrow_klass_base();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3648
  int      shift   = Universe::narrow_klass_shift();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3649
  assert(UseCompressedClassPointers, "only for compressed klass ptrs");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3650
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3651
  BLOCK_COMMENT("cKlass encoder {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3652
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3653
#ifdef ASSERT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3654
  Label ok;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3655
  z_tmll(current, KlassAlignmentInBytes-1); // Check alignment.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3656
  z_brc(Assembler::bcondAllZero, ok);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3657
  // The plain disassembler does not recognize illtrap. It instead displays
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3658
  // a 32-bit value. Issueing two illtraps assures the disassembler finds
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3659
  // the proper beginning of the next instruction.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3660
  z_illtrap(0xee);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3661
  z_illtrap(0xee);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3662
  bind(ok);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3663
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3664
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3665
  if (base != NULL) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3666
    unsigned int base_h = ((unsigned long)base)>>32;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3667
    unsigned int base_l = (unsigned int)((unsigned long)base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3668
    if ((base_h != 0) && (base_l == 0) && VM_Version::has_HighWordInstr()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3669
      lgr_if_needed(dst, current);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3670
      z_aih(dst, -((int)base_h));     // Base has no set bits in lower half.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3671
    } else if ((base_h == 0) && (base_l != 0)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3672
      lgr_if_needed(dst, current);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3673
      z_agfi(dst, -(int)base_l);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3674
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3675
      load_const(Z_R0, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3676
      lgr_if_needed(dst, current);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3677
      z_sgr(dst, Z_R0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3678
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3679
    current = dst;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3680
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3681
  if (shift != 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3682
    assert (LogKlassAlignmentInBytes == shift, "decode alg wrong");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3683
    z_srlg(dst, current, shift);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3684
    current = dst;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3685
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3686
  lgr_if_needed(dst, current); // Move may be required (if neither base nor shift != 0).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3687
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3688
  BLOCK_COMMENT("} cKlass encoder");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3689
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3690
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3691
// This function calculates the size of the code generated by
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3692
//   decode_klass_not_null(register dst, Register src)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3693
// when (Universe::heap() != NULL). Hence, if the instructions
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3694
// it generates change, then this method needs to be updated.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3695
int MacroAssembler::instr_size_for_decode_klass_not_null() {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3696
  address  base    = Universe::narrow_klass_base();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3697
  int shift_size   = Universe::narrow_klass_shift() == 0 ? 0 : 6; /* sllg */
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3698
  int addbase_size = 0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3699
  assert(UseCompressedClassPointers, "only for compressed klass ptrs");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3700
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3701
  if (base != NULL) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3702
    unsigned int base_h = ((unsigned long)base)>>32;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3703
    unsigned int base_l = (unsigned int)((unsigned long)base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3704
    if ((base_h != 0) && (base_l == 0) && VM_Version::has_HighWordInstr()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3705
      addbase_size += 6; /* aih */
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3706
    } else if ((base_h == 0) && (base_l != 0)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3707
      addbase_size += 6; /* algfi */
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3708
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3709
      addbase_size += load_const_size();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3710
      addbase_size += 4; /* algr */
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3711
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3712
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3713
#ifdef ASSERT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3714
  addbase_size += 10;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3715
  addbase_size += 2; // Extra sigill.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3716
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3717
  return addbase_size + shift_size;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3718
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3719
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3720
// !!! If the instructions that get generated here change
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3721
//     then function instr_size_for_decode_klass_not_null()
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3722
//     needs to get updated.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3723
// This variant of decode_klass_not_null() must generate predictable code!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3724
// The code must only depend on globally known parameters.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3725
void MacroAssembler::decode_klass_not_null(Register dst) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3726
  address  base    = Universe::narrow_klass_base();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3727
  int      shift   = Universe::narrow_klass_shift();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3728
  int      beg_off = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3729
  assert(UseCompressedClassPointers, "only for compressed klass ptrs");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3730
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3731
  BLOCK_COMMENT("cKlass decoder (const size) {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3732
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3733
  if (shift != 0) { // Shift required?
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3734
    z_sllg(dst, dst, shift);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3735
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3736
  if (base != NULL) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3737
    unsigned int base_h = ((unsigned long)base)>>32;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3738
    unsigned int base_l = (unsigned int)((unsigned long)base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3739
    if ((base_h != 0) && (base_l == 0) && VM_Version::has_HighWordInstr()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3740
      z_aih(dst, base_h);     // Base has no set bits in lower half.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3741
    } else if ((base_h == 0) && (base_l != 0)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3742
      z_algfi(dst, base_l);   // Base has no set bits in upper half.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3743
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3744
      load_const(Z_R0, base); // Base has set bits everywhere.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3745
      z_algr(dst, Z_R0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3746
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3747
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3748
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3749
#ifdef ASSERT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3750
  Label ok;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3751
  z_tmll(dst, KlassAlignmentInBytes-1); // Check alignment.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3752
  z_brc(Assembler::bcondAllZero, ok);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3753
  // The plain disassembler does not recognize illtrap. It instead displays
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3754
  // a 32-bit value. Issueing two illtraps assures the disassembler finds
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3755
  // the proper beginning of the next instruction.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3756
  z_illtrap(0xd1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3757
  z_illtrap(0xd1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3758
  bind(ok);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3759
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3760
  assert(offset() == beg_off + instr_size_for_decode_klass_not_null(), "Code gen mismatch.");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3761
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3762
  BLOCK_COMMENT("} cKlass decoder (const size)");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3763
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3764
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3765
// This variant of decode_klass_not_null() is for cases where
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3766
//  1) the size of the generated instructions may vary
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3767
//  2) the result is (potentially) stored in a register different from the source.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3768
void MacroAssembler::decode_klass_not_null(Register dst, Register src) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3769
  address base  = Universe::narrow_klass_base();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3770
  int     shift = Universe::narrow_klass_shift();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3771
  assert(UseCompressedClassPointers, "only for compressed klass ptrs");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3772
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3773
  BLOCK_COMMENT("cKlass decoder {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3774
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3775
  if (src == noreg) src = dst;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3776
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3777
  if (shift != 0) { // Shift or at least move required?
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3778
    z_sllg(dst, src, shift);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3779
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3780
    lgr_if_needed(dst, src);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3781
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3782
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3783
  if (base != NULL) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3784
    unsigned int base_h = ((unsigned long)base)>>32;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3785
    unsigned int base_l = (unsigned int)((unsigned long)base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3786
    if ((base_h != 0) && (base_l == 0) && VM_Version::has_HighWordInstr()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3787
      z_aih(dst, base_h);     // Base has not set bits in lower half.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3788
    } else if ((base_h == 0) && (base_l != 0)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3789
      z_algfi(dst, base_l);   // Base has no set bits in upper half.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3790
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3791
      load_const_optimized(Z_R0, base); // Base has set bits everywhere.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3792
      z_algr(dst, Z_R0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3793
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3794
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3795
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3796
#ifdef ASSERT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3797
  Label ok;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3798
  z_tmll(dst, KlassAlignmentInBytes-1); // Check alignment.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3799
  z_brc(Assembler::bcondAllZero, ok);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3800
  // The plain disassembler does not recognize illtrap. It instead displays
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3801
  // a 32-bit value. Issueing two illtraps assures the disassembler finds
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3802
  // the proper beginning of the next instruction.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3803
  z_illtrap(0xd2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3804
  z_illtrap(0xd2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3805
  bind(ok);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3806
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3807
  BLOCK_COMMENT("} cKlass decoder");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3808
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3809
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3810
void MacroAssembler::load_klass(Register klass, Address mem) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3811
  if (UseCompressedClassPointers) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3812
    z_llgf(klass, mem);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3813
    // Attention: no null check here!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3814
    decode_klass_not_null(klass);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3815
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3816
    z_lg(klass, mem);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3817
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3818
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3819
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3820
void MacroAssembler::load_klass(Register klass, Register src_oop) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3821
  if (UseCompressedClassPointers) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3822
    z_llgf(klass, oopDesc::klass_offset_in_bytes(), src_oop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3823
    // Attention: no null check here!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3824
    decode_klass_not_null(klass);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3825
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3826
    z_lg(klass, oopDesc::klass_offset_in_bytes(), src_oop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3827
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3828
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3829
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3830
void MacroAssembler::load_prototype_header(Register Rheader, Register Rsrc_oop) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3831
  assert_different_registers(Rheader, Rsrc_oop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3832
  load_klass(Rheader, Rsrc_oop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3833
  z_lg(Rheader, Address(Rheader, Klass::prototype_header_offset()));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3834
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3835
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3836
void MacroAssembler::store_klass(Register klass, Register dst_oop, Register ck) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3837
  if (UseCompressedClassPointers) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3838
    assert_different_registers(dst_oop, klass, Z_R0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3839
    if (ck == noreg) ck = klass;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3840
    encode_klass_not_null(ck, klass);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3841
    z_st(ck, Address(dst_oop, oopDesc::klass_offset_in_bytes()));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3842
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3843
    z_stg(klass, Address(dst_oop, oopDesc::klass_offset_in_bytes()));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3844
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3845
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3846
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3847
void MacroAssembler::store_klass_gap(Register s, Register d) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3848
  if (UseCompressedClassPointers) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3849
    assert(s != d, "not enough registers");
46726
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  3850
    // Support s = noreg.
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  3851
    if (s != noreg) {
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  3852
      z_st(s, Address(d, oopDesc::klass_gap_offset_in_bytes()));
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  3853
    } else {
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  3854
      z_mvhi(Address(d, oopDesc::klass_gap_offset_in_bytes()), 0);
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  3855
    }
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3856
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3857
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3858
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3859
// Compare klass ptr in memory against klass ptr in register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3860
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3861
// Rop1            - klass in register, always uncompressed.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3862
// disp            - Offset of klass in memory, compressed/uncompressed, depending on runtime flag.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3863
// Rbase           - Base address of cKlass in memory.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3864
// maybeNULL       - True if Rop1 possibly is a NULL.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3865
void MacroAssembler::compare_klass_ptr(Register Rop1, int64_t disp, Register Rbase, bool maybeNULL) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3866
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3867
  BLOCK_COMMENT("compare klass ptr {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3868
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3869
  if (UseCompressedClassPointers) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3870
    const int shift = Universe::narrow_klass_shift();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3871
    address   base  = Universe::narrow_klass_base();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3872
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3873
    assert((shift == 0) || (shift == LogKlassAlignmentInBytes), "cKlass encoder detected bad shift");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3874
    assert_different_registers(Rop1, Z_R0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3875
    assert_different_registers(Rop1, Rbase, Z_R1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3876
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3877
    // First encode register oop and then compare with cOop in memory.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3878
    // This sequence saves an unnecessary cOop load and decode.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3879
    if (base == NULL) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3880
      if (shift == 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3881
        z_cl(Rop1, disp, Rbase);     // Unscaled
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3882
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3883
        z_srlg(Z_R0, Rop1, shift);   // ZeroBased
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3884
        z_cl(Z_R0, disp, Rbase);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3885
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3886
    } else {                         // HeapBased
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3887
#ifdef ASSERT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3888
      bool     used_R0 = true;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3889
      bool     used_R1 = true;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3890
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3891
      Register current = Rop1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3892
      Label    done;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3893
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3894
      if (maybeNULL) {       // NULL ptr must be preserved!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3895
        z_ltgr(Z_R0, current);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3896
        z_bre(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3897
        current = Z_R0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3898
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3899
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3900
      unsigned int base_h = ((unsigned long)base)>>32;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3901
      unsigned int base_l = (unsigned int)((unsigned long)base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3902
      if ((base_h != 0) && (base_l == 0) && VM_Version::has_HighWordInstr()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3903
        lgr_if_needed(Z_R0, current);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3904
        z_aih(Z_R0, -((int)base_h));     // Base has no set bits in lower half.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3905
      } else if ((base_h == 0) && (base_l != 0)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3906
        lgr_if_needed(Z_R0, current);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3907
        z_agfi(Z_R0, -(int)base_l);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3908
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3909
        int pow2_offset = get_oop_base_complement(Z_R1, ((uint64_t)(intptr_t)base));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3910
        add2reg_with_index(Z_R0, pow2_offset, Z_R1, Rop1); // Subtract base by adding complement.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3911
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3912
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3913
      if (shift != 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3914
        z_srlg(Z_R0, Z_R0, shift);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3915
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3916
      bind(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3917
      z_cl(Z_R0, disp, Rbase);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3918
#ifdef ASSERT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3919
      if (used_R0) preset_reg(Z_R0, 0xb05bUL, 2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3920
      if (used_R1) preset_reg(Z_R1, 0xb06bUL, 2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3921
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3922
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3923
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3924
    z_clg(Rop1, disp, Z_R0, Rbase);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3925
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3926
  BLOCK_COMMENT("} compare klass ptr");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3927
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3928
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3929
//---------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3930
//  Compressed oops
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3931
//---------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3932
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3933
void MacroAssembler::encode_heap_oop(Register oop) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3934
  oop_encoder(oop, oop, true /*maybe null*/);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3935
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3936
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3937
void MacroAssembler::encode_heap_oop_not_null(Register oop) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3938
  oop_encoder(oop, oop, false /*not null*/);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3939
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3940
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3941
// Called with something derived from the oop base. e.g. oop_base>>3.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3942
int MacroAssembler::get_oop_base_pow2_offset(uint64_t oop_base) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3943
  unsigned int oop_base_ll = ((unsigned int)(oop_base >>  0)) & 0xffff;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3944
  unsigned int oop_base_lh = ((unsigned int)(oop_base >> 16)) & 0xffff;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3945
  unsigned int oop_base_hl = ((unsigned int)(oop_base >> 32)) & 0xffff;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3946
  unsigned int oop_base_hh = ((unsigned int)(oop_base >> 48)) & 0xffff;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3947
  unsigned int n_notzero_parts = (oop_base_ll == 0 ? 0:1)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3948
                               + (oop_base_lh == 0 ? 0:1)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3949
                               + (oop_base_hl == 0 ? 0:1)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3950
                               + (oop_base_hh == 0 ? 0:1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3951
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3952
  assert(oop_base != 0, "This is for HeapBased cOops only");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3953
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3954
  if (n_notzero_parts != 1) { //  Check if oop_base is just a few pages shy of a power of 2.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3955
    uint64_t pow2_offset = 0x10000 - oop_base_ll;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3956
    if (pow2_offset < 0x8000) {  // This might not be necessary.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3957
      uint64_t oop_base2 = oop_base + pow2_offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3958
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3959
      oop_base_ll = ((unsigned int)(oop_base2 >>  0)) & 0xffff;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3960
      oop_base_lh = ((unsigned int)(oop_base2 >> 16)) & 0xffff;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3961
      oop_base_hl = ((unsigned int)(oop_base2 >> 32)) & 0xffff;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3962
      oop_base_hh = ((unsigned int)(oop_base2 >> 48)) & 0xffff;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3963
      n_notzero_parts = (oop_base_ll == 0 ? 0:1) +
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3964
                        (oop_base_lh == 0 ? 0:1) +
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3965
                        (oop_base_hl == 0 ? 0:1) +
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3966
                        (oop_base_hh == 0 ? 0:1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3967
      if (n_notzero_parts == 1) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3968
        assert(-(int64_t)pow2_offset != (int64_t)-1, "We use -1 to signal uninitialized base register");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3969
        return -pow2_offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3970
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3971
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3972
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3973
  return 0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3974
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3975
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3976
// If base address is offset from a straight power of two by just a few pages,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3977
// return this offset to the caller for a possible later composite add.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3978
// TODO/FIX: will only work correctly for 4k pages.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3979
int MacroAssembler::get_oop_base(Register Rbase, uint64_t oop_base) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3980
  int pow2_offset = get_oop_base_pow2_offset(oop_base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3981
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3982
  load_const_optimized(Rbase, oop_base - pow2_offset); // Best job possible.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3983
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3984
  return pow2_offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3985
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3986
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3987
int MacroAssembler::get_oop_base_complement(Register Rbase, uint64_t oop_base) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3988
  int offset = get_oop_base(Rbase, oop_base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3989
  z_lcgr(Rbase, Rbase);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3990
  return -offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3991
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3992
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3993
// Compare compressed oop in memory against oop in register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3994
// Rop1            - Oop in register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3995
// disp            - Offset of cOop in memory.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3996
// Rbase           - Base address of cOop in memory.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3997
// maybeNULL       - True if Rop1 possibly is a NULL.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3998
// maybeNULLtarget - Branch target for Rop1 == NULL, if flow control shall NOT continue with compare instruction.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  3999
void MacroAssembler::compare_heap_oop(Register Rop1, Address mem, bool maybeNULL) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4000
  Register Rbase  = mem.baseOrR0();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4001
  Register Rindex = mem.indexOrR0();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4002
  int64_t  disp   = mem.disp();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4003
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4004
  const int shift = Universe::narrow_oop_shift();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4005
  address   base  = Universe::narrow_oop_base();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4006
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4007
  assert(UseCompressedOops, "must be on to call this method");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4008
  assert(Universe::heap() != NULL, "java heap must be initialized to call this method");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4009
  assert((shift == 0) || (shift == LogMinObjAlignmentInBytes), "cOop encoder detected bad shift");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4010
  assert_different_registers(Rop1, Z_R0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4011
  assert_different_registers(Rop1, Rbase, Z_R1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4012
  assert_different_registers(Rop1, Rindex, Z_R1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4013
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4014
  BLOCK_COMMENT("compare heap oop {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4015
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4016
  // First encode register oop and then compare with cOop in memory.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4017
  // This sequence saves an unnecessary cOop load and decode.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4018
  if (base == NULL) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4019
    if (shift == 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4020
      z_cl(Rop1, disp, Rindex, Rbase);  // Unscaled
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4021
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4022
      z_srlg(Z_R0, Rop1, shift);        // ZeroBased
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4023
      z_cl(Z_R0, disp, Rindex, Rbase);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4024
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4025
  } else {                              // HeapBased
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4026
#ifdef ASSERT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4027
    bool  used_R0 = true;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4028
    bool  used_R1 = true;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4029
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4030
    Label done;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4031
    int   pow2_offset = get_oop_base_complement(Z_R1, ((uint64_t)(intptr_t)base));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4032
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4033
    if (maybeNULL) {       // NULL ptr must be preserved!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4034
      z_ltgr(Z_R0, Rop1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4035
      z_bre(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4036
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4037
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4038
    add2reg_with_index(Z_R0, pow2_offset, Z_R1, Rop1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4039
    z_srlg(Z_R0, Z_R0, shift);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4040
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4041
    bind(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4042
    z_cl(Z_R0, disp, Rindex, Rbase);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4043
#ifdef ASSERT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4044
    if (used_R0) preset_reg(Z_R0, 0xb05bUL, 2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4045
    if (used_R1) preset_reg(Z_R1, 0xb06bUL, 2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4046
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4047
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4048
  BLOCK_COMMENT("} compare heap oop");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4049
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4050
50162
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4051
void MacroAssembler::access_store_at(BasicType type, DecoratorSet decorators,
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4052
                                     const Address& addr, Register val,
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4053
                                     Register tmp1, Register tmp2, Register tmp3) {
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50599
diff changeset
  4054
  assert((decorators & ~(AS_RAW | IN_HEAP | IN_NATIVE | IS_ARRAY | IS_NOT_NULL |
50162
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4055
                         ON_UNKNOWN_OOP_REF)) == 0, "unsupported decorator");
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4056
  BarrierSetAssembler* bs = BarrierSet::barrier_set()->barrier_set_assembler();
50446
39ca7558bc43 8203353: Fixup inferred decorators in the interpreter
eosterlund
parents: 50162
diff changeset
  4057
  decorators = AccessInternal::decorator_fixup(decorators);
50162
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4058
  bool as_raw = (decorators & AS_RAW) != 0;
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4059
  if (as_raw) {
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4060
    bs->BarrierSetAssembler::store_at(this, decorators, type,
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4061
                                      addr, val,
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4062
                                      tmp1, tmp2, tmp3);
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4063
  } else {
50162
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4064
    bs->store_at(this, decorators, type,
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4065
                 addr, val,
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4066
                 tmp1, tmp2, tmp3);
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4067
  }
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4068
}
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4069
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4070
void MacroAssembler::access_load_at(BasicType type, DecoratorSet decorators,
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4071
                                    const Address& addr, Register dst,
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4072
                                    Register tmp1, Register tmp2, Label *is_null) {
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50599
diff changeset
  4073
  assert((decorators & ~(AS_RAW | IN_HEAP | IN_NATIVE | IS_ARRAY | IS_NOT_NULL |
50162
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4074
                         ON_PHANTOM_OOP_REF | ON_WEAK_OOP_REF)) == 0, "unsupported decorator");
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4075
  BarrierSetAssembler* bs = BarrierSet::barrier_set()->barrier_set_assembler();
50446
39ca7558bc43 8203353: Fixup inferred decorators in the interpreter
eosterlund
parents: 50162
diff changeset
  4076
  decorators = AccessInternal::decorator_fixup(decorators);
50162
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4077
  bool as_raw = (decorators & AS_RAW) != 0;
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4078
  if (as_raw) {
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4079
    bs->BarrierSetAssembler::load_at(this, decorators, type,
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4080
                                     addr, dst,
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4081
                                     tmp1, tmp2, is_null);
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4082
  } else {
50162
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4083
    bs->load_at(this, decorators, type,
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4084
                addr, dst,
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4085
                tmp1, tmp2, is_null);
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4086
  }
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4087
}
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4088
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4089
void MacroAssembler::load_heap_oop(Register dest, const Address &a,
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4090
                                   Register tmp1, Register tmp2,
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4091
                                   DecoratorSet decorators, Label *is_null) {
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4092
  access_load_at(T_OBJECT, IN_HEAP | decorators, a, dest, tmp1, tmp2, is_null);
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4093
}
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4094
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4095
void MacroAssembler::store_heap_oop(Register Roop, const Address &a,
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4096
                                    Register tmp1, Register tmp2, Register tmp3,
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4097
                                    DecoratorSet decorators) {
f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC
mdoerr
parents: 49754
diff changeset
  4098
  access_store_at(T_OBJECT, IN_HEAP | decorators, a, Roop, tmp1, tmp2, tmp3);
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4099
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4100
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4101
//-------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4102
// Encode compressed oop. Generally usable encoder.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4103
//-------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4104
// Rsrc - contains regular oop on entry. It remains unchanged.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4105
// Rdst - contains compressed oop on exit.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4106
// Rdst and Rsrc may indicate same register, in which case Rsrc does not remain unchanged.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4107
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4108
// Rdst must not indicate scratch register Z_R1 (Z_R1_scratch) for functionality.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4109
// Rdst should not indicate scratch register Z_R0 (Z_R0_scratch) for performance.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4110
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4111
// only32bitValid is set, if later code only uses the lower 32 bits. In this
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4112
// case we must not fix the upper 32 bits.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4113
void MacroAssembler::oop_encoder(Register Rdst, Register Rsrc, bool maybeNULL,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4114
                                 Register Rbase, int pow2_offset, bool only32bitValid) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4115
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4116
  const address oop_base  = Universe::narrow_oop_base();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4117
  const int     oop_shift = Universe::narrow_oop_shift();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4118
  const bool    disjoint  = Universe::narrow_oop_base_disjoint();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4119
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4120
  assert(UseCompressedOops, "must be on to call this method");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4121
  assert(Universe::heap() != NULL, "java heap must be initialized to call this encoder");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4122
  assert((oop_shift == 0) || (oop_shift == LogMinObjAlignmentInBytes), "cOop encoder detected bad shift");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4123
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4124
  if (disjoint || (oop_base == NULL)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4125
    BLOCK_COMMENT("cOop encoder zeroBase {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4126
    if (oop_shift == 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4127
      if (oop_base != NULL && !only32bitValid) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4128
        z_llgfr(Rdst, Rsrc); // Clear upper bits in case the register will be decoded again.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4129
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4130
        lgr_if_needed(Rdst, Rsrc);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4131
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4132
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4133
      z_srlg(Rdst, Rsrc, oop_shift);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4134
      if (oop_base != NULL && !only32bitValid) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4135
        z_llgfr(Rdst, Rdst); // Clear upper bits in case the register will be decoded again.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4136
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4137
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4138
    BLOCK_COMMENT("} cOop encoder zeroBase");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4139
    return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4140
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4141
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4142
  bool used_R0 = false;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4143
  bool used_R1 = false;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4144
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4145
  BLOCK_COMMENT("cOop encoder general {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4146
  assert_different_registers(Rdst, Z_R1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4147
  assert_different_registers(Rsrc, Rbase);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4148
  if (maybeNULL) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4149
    Label done;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4150
    // We reorder shifting and subtracting, so that we can compare
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4151
    // and shift in parallel:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4152
    //
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4153
    // cycle 0:  potential LoadN, base = <const>
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4154
    // cycle 1:  base = !base     dst = src >> 3,    cmp cr = (src != 0)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4155
    // cycle 2:  if (cr) br,      dst = dst + base + offset
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4156
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4157
    // Get oop_base components.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4158
    if (pow2_offset == -1) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4159
      if (Rdst == Rbase) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4160
        if (Rdst == Z_R1 || Rsrc == Z_R1) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4161
          Rbase = Z_R0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4162
          used_R0 = true;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4163
        } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4164
          Rdst = Z_R1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4165
          used_R1 = true;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4166
        }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4167
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4168
      if (Rbase == Z_R1) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4169
        used_R1 = true;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4170
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4171
      pow2_offset = get_oop_base_complement(Rbase, ((uint64_t)(intptr_t)oop_base) >> oop_shift);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4172
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4173
    assert_different_registers(Rdst, Rbase);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4174
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4175
    // Check for NULL oop (must be left alone) and shift.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4176
    if (oop_shift != 0) {  // Shift out alignment bits
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4177
      if (((intptr_t)oop_base&0xc000000000000000L) == 0L) { // We are sure: no single address will have the leftmost bit set.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4178
        z_srag(Rdst, Rsrc, oop_shift);  // Arithmetic shift sets the condition code.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4179
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4180
        z_srlg(Rdst, Rsrc, oop_shift);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4181
        z_ltgr(Rsrc, Rsrc);  // This is the recommended way of testing for zero.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4182
        // This probably is faster, as it does not write a register. No!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4183
        // z_cghi(Rsrc, 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4184
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4185
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4186
      z_ltgr(Rdst, Rsrc);   // Move NULL to result register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4187
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4188
    z_bre(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4189
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4190
    // Subtract oop_base components.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4191
    if ((Rdst == Z_R0) || (Rbase == Z_R0)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4192
      z_algr(Rdst, Rbase);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4193
      if (pow2_offset != 0) { add2reg(Rdst, pow2_offset); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4194
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4195
      add2reg_with_index(Rdst, pow2_offset, Rbase, Rdst);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4196
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4197
    if (!only32bitValid) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4198
      z_llgfr(Rdst, Rdst); // Clear upper bits in case the register will be decoded again.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4199
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4200
    bind(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4201
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4202
  } else {  // not null
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4203
    // Get oop_base components.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4204
    if (pow2_offset == -1) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4205
      pow2_offset = get_oop_base_complement(Rbase, (uint64_t)(intptr_t)oop_base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4206
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4207
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4208
    // Subtract oop_base components and shift.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4209
    if (Rdst == Z_R0 || Rsrc == Z_R0 || Rbase == Z_R0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4210
      // Don't use lay instruction.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4211
      if (Rdst == Rsrc) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4212
        z_algr(Rdst, Rbase);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4213
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4214
        lgr_if_needed(Rdst, Rbase);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4215
        z_algr(Rdst, Rsrc);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4216
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4217
      if (pow2_offset != 0) add2reg(Rdst, pow2_offset);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4218
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4219
      add2reg_with_index(Rdst, pow2_offset, Rbase, Rsrc);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4220
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4221
    if (oop_shift != 0) {   // Shift out alignment bits.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4222
      z_srlg(Rdst, Rdst, oop_shift);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4223
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4224
    if (!only32bitValid) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4225
      z_llgfr(Rdst, Rdst); // Clear upper bits in case the register will be decoded again.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4226
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4227
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4228
#ifdef ASSERT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4229
  if (used_R0 && Rdst != Z_R0 && Rsrc != Z_R0) { preset_reg(Z_R0, 0xb01bUL, 2); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4230
  if (used_R1 && Rdst != Z_R1 && Rsrc != Z_R1) { preset_reg(Z_R1, 0xb02bUL, 2); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4231
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4232
  BLOCK_COMMENT("} cOop encoder general");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4233
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4234
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4235
//-------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4236
// decode compressed oop. Generally usable decoder.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4237
//-------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4238
// Rsrc - contains compressed oop on entry.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4239
// Rdst - contains regular oop on exit.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4240
// Rdst and Rsrc may indicate same register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4241
// Rdst must not be the same register as Rbase, if Rbase was preloaded (before call).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4242
// Rdst can be the same register as Rbase. Then, either Z_R0 or Z_R1 must be available as scratch.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4243
// Rbase - register to use for the base
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4244
// pow2_offset - offset of base to nice value. If -1, base must be loaded.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4245
// For performance, it is good to
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4246
//  - avoid Z_R0 for any of the argument registers.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4247
//  - keep Rdst and Rsrc distinct from Rbase. Rdst == Rsrc is ok for performance.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4248
//  - avoid Z_R1 for Rdst if Rdst == Rbase.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4249
void MacroAssembler::oop_decoder(Register Rdst, Register Rsrc, bool maybeNULL, Register Rbase, int pow2_offset) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4250
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4251
  const address oop_base  = Universe::narrow_oop_base();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4252
  const int     oop_shift = Universe::narrow_oop_shift();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4253
  const bool    disjoint  = Universe::narrow_oop_base_disjoint();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4254
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4255
  assert(UseCompressedOops, "must be on to call this method");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4256
  assert(Universe::heap() != NULL, "java heap must be initialized to call this decoder");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4257
  assert((oop_shift == 0) || (oop_shift == LogMinObjAlignmentInBytes),
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4258
         "cOop encoder detected bad shift");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4259
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4260
  // cOops are always loaded zero-extended from memory. No explicit zero-extension necessary.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4261
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4262
  if (oop_base != NULL) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4263
    unsigned int oop_base_hl = ((unsigned int)((uint64_t)(intptr_t)oop_base >> 32)) & 0xffff;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4264
    unsigned int oop_base_hh = ((unsigned int)((uint64_t)(intptr_t)oop_base >> 48)) & 0xffff;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4265
    unsigned int oop_base_hf = ((unsigned int)((uint64_t)(intptr_t)oop_base >> 32)) & 0xFFFFffff;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4266
    if (disjoint && (oop_base_hl == 0 || oop_base_hh == 0)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4267
      BLOCK_COMMENT("cOop decoder disjointBase {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4268
      // We do not need to load the base. Instead, we can install the upper bits
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4269
      // with an OR instead of an ADD.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4270
      Label done;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4271
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4272
      // Rsrc contains a narrow oop. Thus we are sure the leftmost <oop_shift> bits will never be set.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4273
      if (maybeNULL) {  // NULL ptr must be preserved!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4274
        z_slag(Rdst, Rsrc, oop_shift);  // Arithmetic shift sets the condition code.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4275
        z_bre(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4276
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4277
        z_sllg(Rdst, Rsrc, oop_shift);  // Logical shift leaves condition code alone.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4278
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4279
      if ((oop_base_hl != 0) && (oop_base_hh != 0)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4280
        z_oihf(Rdst, oop_base_hf);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4281
      } else if (oop_base_hl != 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4282
        z_oihl(Rdst, oop_base_hl);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4283
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4284
        assert(oop_base_hh != 0, "not heapbased mode");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4285
        z_oihh(Rdst, oop_base_hh);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4286
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4287
      bind(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4288
      BLOCK_COMMENT("} cOop decoder disjointBase");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4289
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4290
      BLOCK_COMMENT("cOop decoder general {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4291
      // There are three decode steps:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4292
      //   scale oop offset (shift left)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4293
      //   get base (in reg) and pow2_offset (constant)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4294
      //   add base, pow2_offset, and oop offset
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4295
      // The following register overlap situations may exist:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4296
      // Rdst == Rsrc,  Rbase any other
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4297
      //   not a problem. Scaling in-place leaves Rbase undisturbed.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4298
      //   Loading Rbase does not impact the scaled offset.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4299
      // Rdst == Rbase, Rsrc  any other
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4300
      //   scaling would destroy a possibly preloaded Rbase. Loading Rbase
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4301
      //   would destroy the scaled offset.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4302
      //   Remedy: use Rdst_tmp if Rbase has been preloaded.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4303
      //           use Rbase_tmp if base has to be loaded.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4304
      // Rsrc == Rbase, Rdst  any other
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4305
      //   Only possible without preloaded Rbase.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4306
      //   Loading Rbase does not destroy compressed oop because it was scaled into Rdst before.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4307
      // Rsrc == Rbase, Rdst == Rbase
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4308
      //   Only possible without preloaded Rbase.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4309
      //   Loading Rbase would destroy compressed oop. Scaling in-place is ok.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4310
      //   Remedy: use Rbase_tmp.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4311
      //
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4312
      Label    done;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4313
      Register Rdst_tmp       = Rdst;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4314
      Register Rbase_tmp      = Rbase;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4315
      bool     used_R0        = false;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4316
      bool     used_R1        = false;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4317
      bool     base_preloaded = pow2_offset >= 0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4318
      guarantee(!(base_preloaded && (Rsrc == Rbase)), "Register clash, check caller");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4319
      assert(oop_shift != 0, "room for optimization");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4320
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4321
      // Check if we need to use scratch registers.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4322
      if (Rdst == Rbase) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4323
        assert(!(((Rdst == Z_R0) && (Rsrc == Z_R1)) || ((Rdst == Z_R1) && (Rsrc == Z_R0))), "need a scratch reg");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4324
        if (Rdst != Rsrc) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4325
          if (base_preloaded) { Rdst_tmp  = (Rdst == Z_R1) ? Z_R0 : Z_R1; }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4326
          else                { Rbase_tmp = (Rdst == Z_R1) ? Z_R0 : Z_R1; }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4327
        } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4328
          Rbase_tmp = (Rdst == Z_R1) ? Z_R0 : Z_R1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4329
        }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4330
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4331
      if (base_preloaded) lgr_if_needed(Rbase_tmp, Rbase);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4332
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4333
      // Scale oop and check for NULL.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4334
      // Rsrc contains a narrow oop. Thus we are sure the leftmost <oop_shift> bits will never be set.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4335
      if (maybeNULL) {  // NULL ptr must be preserved!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4336
        z_slag(Rdst_tmp, Rsrc, oop_shift);  // Arithmetic shift sets the condition code.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4337
        z_bre(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4338
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4339
        z_sllg(Rdst_tmp, Rsrc, oop_shift);  // Logical shift leaves condition code alone.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4340
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4341
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4342
      // Get oop_base components.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4343
      if (!base_preloaded) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4344
        pow2_offset = get_oop_base(Rbase_tmp, (uint64_t)(intptr_t)oop_base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4345
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4346
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4347
      // Add up all components.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4348
      if ((Rbase_tmp == Z_R0) || (Rdst_tmp == Z_R0)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4349
        z_algr(Rdst_tmp, Rbase_tmp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4350
        if (pow2_offset != 0) { add2reg(Rdst_tmp, pow2_offset); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4351
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4352
        add2reg_with_index(Rdst_tmp, pow2_offset, Rbase_tmp, Rdst_tmp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4353
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4354
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4355
      bind(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4356
      lgr_if_needed(Rdst, Rdst_tmp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4357
#ifdef ASSERT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4358
      if (used_R0 && Rdst != Z_R0 && Rsrc != Z_R0) { preset_reg(Z_R0, 0xb03bUL, 2); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4359
      if (used_R1 && Rdst != Z_R1 && Rsrc != Z_R1) { preset_reg(Z_R1, 0xb04bUL, 2); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4360
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4361
      BLOCK_COMMENT("} cOop decoder general");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4362
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4363
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4364
    BLOCK_COMMENT("cOop decoder zeroBase {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4365
    if (oop_shift == 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4366
      lgr_if_needed(Rdst, Rsrc);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4367
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4368
      z_sllg(Rdst, Rsrc, oop_shift);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4369
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4370
    BLOCK_COMMENT("} cOop decoder zeroBase");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4371
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4372
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4373
46961
c9094b1e5f87 8186088: ConstantPoolCache::_resolved_references is not a JNIHandle
coleenp
parents: 46726
diff changeset
  4374
// ((OopHandle)result).resolve();
c9094b1e5f87 8186088: ConstantPoolCache::_resolved_references is not a JNIHandle
coleenp
parents: 46726
diff changeset
  4375
void MacroAssembler::resolve_oop_handle(Register result) {
c9094b1e5f87 8186088: ConstantPoolCache::_resolved_references is not a JNIHandle
coleenp
parents: 46726
diff changeset
  4376
  // OopHandle::resolve is an indirection.
c9094b1e5f87 8186088: ConstantPoolCache::_resolved_references is not a JNIHandle
coleenp
parents: 46726
diff changeset
  4377
  z_lg(result, 0, result);
c9094b1e5f87 8186088: ConstantPoolCache::_resolved_references is not a JNIHandle
coleenp
parents: 46726
diff changeset
  4378
}
c9094b1e5f87 8186088: ConstantPoolCache::_resolved_references is not a JNIHandle
coleenp
parents: 46726
diff changeset
  4379
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4380
void MacroAssembler::load_mirror(Register mirror, Register method) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4381
  mem2reg_opt(mirror, Address(method, Method::const_offset()));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4382
  mem2reg_opt(mirror, Address(mirror, ConstMethod::constants_offset()));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4383
  mem2reg_opt(mirror, Address(mirror, ConstantPool::pool_holder_offset_in_bytes()));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4384
  mem2reg_opt(mirror, Address(mirror, Klass::java_mirror_offset()));
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
  4385
  resolve_oop_handle(mirror);
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4386
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4387
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4388
//---------------------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4389
//---  Operations on arrays.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4390
//---------------------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4391
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4392
// Compiler ensures base is doubleword aligned and cnt is #doublewords.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4393
// Emitter does not KILL cnt and base arguments, since they need to be copied to
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4394
// work registers anyway.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4395
// Actually, only r0, r1, and r5 are killed.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4396
unsigned int MacroAssembler::Clear_Array(Register cnt_arg, Register base_pointer_arg, Register src_addr, Register src_len) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4397
  // Src_addr is evenReg.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4398
  // Src_len is odd_Reg.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4399
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4400
  int      block_start = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4401
  Register tmp_reg  = src_len; // Holds target instr addr for EX.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4402
  Register dst_len  = Z_R1;    // Holds dst len  for MVCLE.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4403
  Register dst_addr = Z_R0;    // Holds dst addr for MVCLE.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4404
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4405
  Label doXC, doMVCLE, done;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4406
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4407
  BLOCK_COMMENT("Clear_Array {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4408
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4409
  // Check for zero len and convert to long.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4410
  z_ltgfr(src_len, cnt_arg);      // Remember casted value for doSTG case.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4411
  z_bre(done);                    // Nothing to do if len == 0.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4412
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4413
  // Prefetch data to be cleared.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4414
  if (VM_Version::has_Prefetch()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4415
    z_pfd(0x02,   0, Z_R0, base_pointer_arg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4416
    z_pfd(0x02, 256, Z_R0, base_pointer_arg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4417
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4418
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4419
  z_sllg(dst_len, src_len, 3);    // #bytes to clear.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4420
  z_cghi(src_len, 32);            // Check for len <= 256 bytes (<=32 DW).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4421
  z_brnh(doXC);                   // If so, use executed XC to clear.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4422
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4423
  // MVCLE: initialize long arrays (general case).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4424
  bind(doMVCLE);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4425
  z_lgr(dst_addr, base_pointer_arg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4426
  clear_reg(src_len, true, false); // Src len of MVCLE is zero.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4427
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4428
  MacroAssembler::move_long_ext(dst_addr, src_addr, 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4429
  z_bru(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4430
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4431
  // XC: initialize short arrays.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4432
  Label XC_template; // Instr template, never exec directly!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4433
    bind(XC_template);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4434
    z_xc(0,0,base_pointer_arg,0,base_pointer_arg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4435
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4436
  bind(doXC);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4437
    add2reg(dst_len, -1);             // Get #bytes-1 for EXECUTE.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4438
    if (VM_Version::has_ExecuteExtensions()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4439
      z_exrl(dst_len, XC_template);   // Execute XC with var. len.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4440
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4441
      z_larl(tmp_reg, XC_template);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4442
      z_ex(dst_len,0,Z_R0,tmp_reg);   // Execute XC with var. len.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4443
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4444
    // z_bru(done);      // fallthru
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4445
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4446
  bind(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4447
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4448
  BLOCK_COMMENT("} Clear_Array");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4449
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4450
  int block_end = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4451
  return block_end - block_start;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4452
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4453
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4454
// Compiler ensures base is doubleword aligned and cnt is count of doublewords.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4455
// Emitter does not KILL any arguments nor work registers.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4456
// Emitter generates up to 16 XC instructions, depending on the array length.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4457
unsigned int MacroAssembler::Clear_Array_Const(long cnt, Register base) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4458
  int  block_start    = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4459
  int  off;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4460
  int  lineSize_Bytes = AllocatePrefetchStepSize;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4461
  int  lineSize_DW    = AllocatePrefetchStepSize>>LogBytesPerWord;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4462
  bool doPrefetch     = VM_Version::has_Prefetch();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4463
  int  XC_maxlen      = 256;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4464
  int  numXCInstr     = cnt > 0 ? (cnt*BytesPerWord-1)/XC_maxlen+1 : 0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4465
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4466
  BLOCK_COMMENT("Clear_Array_Const {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4467
  assert(cnt*BytesPerWord <= 4096, "ClearArrayConst can handle 4k only");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4468
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4469
  // Do less prefetching for very short arrays.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4470
  if (numXCInstr > 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4471
    // Prefetch only some cache lines, then begin clearing.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4472
    if (doPrefetch) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4473
      if (cnt*BytesPerWord <= lineSize_Bytes/4) {  // If less than 1/4 of a cache line to clear,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4474
        z_pfd(0x02, 0, Z_R0, base);                // prefetch just the first cache line.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4475
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4476
        assert(XC_maxlen == lineSize_Bytes, "ClearArrayConst needs 256B cache lines");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4477
        for (off = 0; (off < AllocatePrefetchLines) && (off <= numXCInstr); off ++) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4478
          z_pfd(0x02, off*lineSize_Bytes, Z_R0, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4479
        }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4480
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4481
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4482
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4483
    for (off=0; off<(numXCInstr-1); off++) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4484
      z_xc(off*XC_maxlen, XC_maxlen-1, base, off*XC_maxlen, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4485
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4486
      // Prefetch some cache lines in advance.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4487
      if (doPrefetch && (off <= numXCInstr-AllocatePrefetchLines)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4488
        z_pfd(0x02, (off+AllocatePrefetchLines)*lineSize_Bytes, Z_R0, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4489
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4490
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4491
    if (off*XC_maxlen < cnt*BytesPerWord) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4492
      z_xc(off*XC_maxlen, (cnt*BytesPerWord-off*XC_maxlen)-1, base, off*XC_maxlen, base);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4493
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4494
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4495
  BLOCK_COMMENT("} Clear_Array_Const");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4496
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4497
  int block_end = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4498
  return block_end - block_start;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4499
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4500
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4501
// Compiler ensures base is doubleword aligned and cnt is #doublewords.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4502
// Emitter does not KILL cnt and base arguments, since they need to be copied to
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4503
// work registers anyway.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4504
// Actually, only r0, r1, r4, and r5 (which are work registers) are killed.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4505
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4506
// For very large arrays, exploit MVCLE H/W support.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4507
// MVCLE instruction automatically exploits H/W-optimized page mover.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4508
// - Bytes up to next page boundary are cleared with a series of XC to self.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4509
// - All full pages are cleared with the page mover H/W assist.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4510
// - Remaining bytes are again cleared by a series of XC to self.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4511
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4512
unsigned int MacroAssembler::Clear_Array_Const_Big(long cnt, Register base_pointer_arg, Register src_addr, Register src_len) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4513
  // Src_addr is evenReg.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4514
  // Src_len is odd_Reg.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4515
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4516
  int      block_start = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4517
  Register dst_len  = Z_R1;      // Holds dst len  for MVCLE.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4518
  Register dst_addr = Z_R0;      // Holds dst addr for MVCLE.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4519
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4520
  BLOCK_COMMENT("Clear_Array_Const_Big {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4521
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4522
  // Get len to clear.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4523
  load_const_optimized(dst_len, (long)cnt*8L);  // in Bytes = #DW*8
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4524
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4525
  // Prepare other args to MVCLE.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4526
  z_lgr(dst_addr, base_pointer_arg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4527
  // Indicate unused result.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4528
  (void) clear_reg(src_len, true, false);  // Src len of MVCLE is zero.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4529
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4530
  // Clear.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4531
  MacroAssembler::move_long_ext(dst_addr, src_addr, 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4532
  BLOCK_COMMENT("} Clear_Array_Const_Big");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4533
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4534
  int block_end = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4535
  return block_end - block_start;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4536
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4537
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4538
// Allocator.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4539
unsigned int MacroAssembler::CopyRawMemory_AlignedDisjoint(Register src_reg, Register dst_reg,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4540
                                                           Register cnt_reg,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4541
                                                           Register tmp1_reg, Register tmp2_reg) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4542
  // Tmp1 is oddReg.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4543
  // Tmp2 is evenReg.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4544
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4545
  int block_start = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4546
  Label doMVC, doMVCLE, done, MVC_template;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4547
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4548
  BLOCK_COMMENT("CopyRawMemory_AlignedDisjoint {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4549
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4550
  // Check for zero len and convert to long.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4551
  z_ltgfr(cnt_reg, cnt_reg);      // Remember casted value for doSTG case.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4552
  z_bre(done);                    // Nothing to do if len == 0.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4553
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4554
  z_sllg(Z_R1, cnt_reg, 3);       // Dst len in bytes. calc early to have the result ready.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4555
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4556
  z_cghi(cnt_reg, 32);            // Check for len <= 256 bytes (<=32 DW).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4557
  z_brnh(doMVC);                  // If so, use executed MVC to clear.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4558
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4559
  bind(doMVCLE);                  // A lot of data (more than 256 bytes).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4560
  // Prep dest reg pair.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4561
  z_lgr(Z_R0, dst_reg);           // dst addr
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4562
  // Dst len already in Z_R1.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4563
  // Prep src reg pair.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4564
  z_lgr(tmp2_reg, src_reg);       // src addr
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4565
  z_lgr(tmp1_reg, Z_R1);          // Src len same as dst len.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4566
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4567
  // Do the copy.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4568
  move_long_ext(Z_R0, tmp2_reg, 0xb0); // Bypass cache.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4569
  z_bru(done);                         // All done.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4570
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4571
  bind(MVC_template);             // Just some data (not more than 256 bytes).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4572
  z_mvc(0, 0, dst_reg, 0, src_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4573
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4574
  bind(doMVC);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4575
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4576
  if (VM_Version::has_ExecuteExtensions()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4577
    add2reg(Z_R1, -1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4578
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4579
    add2reg(tmp1_reg, -1, Z_R1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4580
    z_larl(Z_R1, MVC_template);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4581
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4582
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4583
  if (VM_Version::has_Prefetch()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4584
    z_pfd(1,  0,Z_R0,src_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4585
    z_pfd(2,  0,Z_R0,dst_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4586
    //    z_pfd(1,256,Z_R0,src_reg);    // Assume very short copy.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4587
    //    z_pfd(2,256,Z_R0,dst_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4588
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4589
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4590
  if (VM_Version::has_ExecuteExtensions()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4591
    z_exrl(Z_R1, MVC_template);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4592
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4593
    z_ex(tmp1_reg, 0, Z_R0, Z_R1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4594
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4595
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4596
  bind(done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4597
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4598
  BLOCK_COMMENT("} CopyRawMemory_AlignedDisjoint");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4599
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4600
  int block_end = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4601
  return block_end - block_start;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4602
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4603
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4604
//------------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4605
//   Special String Intrinsics. Implementation
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4606
//------------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4607
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4608
// Intrinsics for CompactStrings
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4609
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4610
// Compress char[] to byte[].
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4611
//   Restores: src, dst
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4612
//   Uses:     cnt
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4613
//   Kills:    tmp, Z_R0, Z_R1.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4614
//   Early clobber: result.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4615
// Note:
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4616
//   cnt is signed int. Do not rely on high word!
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4617
//       counts # characters, not bytes.
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4618
// The result is the number of characters copied before the first incompatible character was found.
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4619
// If precise is true, the processing stops exactly at this point. Otherwise, the result may be off
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4620
// by a few bytes. The result always indicates the number of copied characters.
48331
a8e39cc7b88f 8193443: [s390]: EncodeISOArray generates wrong vector code
lucy
parents: 48186
diff changeset
  4621
// When used as a character index, the returned value points to the first incompatible character.
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4622
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4623
// Note: Does not behave exactly like package private StringUTF16 compress java implementation in case of failure:
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4624
// - Different number of characters may have been written to dead array (if precise is false).
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4625
// - Returns a number <cnt instead of 0. (Result gets compared with cnt.)
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4626
unsigned int MacroAssembler::string_compress(Register result, Register src, Register dst, Register cnt,
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4627
                                             Register tmp,    bool precise) {
48331
a8e39cc7b88f 8193443: [s390]: EncodeISOArray generates wrong vector code
lucy
parents: 48186
diff changeset
  4628
  assert_different_registers(Z_R0, Z_R1, result, src, dst, cnt, tmp);
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4629
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4630
  if (precise) {
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4631
    BLOCK_COMMENT("encode_iso_array {");
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4632
  } else {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4633
    BLOCK_COMMENT("string_compress {");
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4634
  }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4635
  int  block_start = offset();
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4636
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4637
  Register       Rsrc  = src;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4638
  Register       Rdst  = dst;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4639
  Register       Rix   = tmp;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4640
  Register       Rcnt  = cnt;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4641
  Register       Rmask = result;  // holds incompatibility check mask until result value is stored.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4642
  Label          ScalarShortcut, AllDone;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4643
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4644
  z_iilf(Rmask, 0xFF00FF00);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4645
  z_iihf(Rmask, 0xFF00FF00);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4646
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4647
#if 0  // Sacrifice shortcuts for code compactness
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4648
  {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4649
    //---<  shortcuts for short strings (very frequent)   >---
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4650
    //   Strings with 4 and 8 characters were fond to occur very frequently.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4651
    //   Therefore, we handle them right away with minimal overhead.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4652
    Label     skipShortcut, skip4Shortcut, skip8Shortcut;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4653
    Register  Rout = Z_R0;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4654
    z_chi(Rcnt, 4);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4655
    z_brne(skip4Shortcut);                 // 4 characters are very frequent
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4656
      z_lg(Z_R0, 0, Rsrc);                 // Treat exactly 4 characters specially.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4657
      if (VM_Version::has_DistinctOpnds()) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4658
        Rout = Z_R0;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4659
        z_ngrk(Rix, Z_R0, Rmask);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4660
      } else {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4661
        Rout = Rix;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4662
        z_lgr(Rix, Z_R0);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4663
        z_ngr(Z_R0, Rmask);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4664
      }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4665
      z_brnz(skipShortcut);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4666
      z_stcmh(Rout, 5, 0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4667
      z_stcm(Rout,  5, 2, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4668
      z_lgfr(result, Rcnt);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4669
      z_bru(AllDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4670
    bind(skip4Shortcut);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4671
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4672
    z_chi(Rcnt, 8);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4673
    z_brne(skip8Shortcut);                 // There's more to do...
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4674
      z_lmg(Z_R0, Z_R1, 0, Rsrc);          // Treat exactly 8 characters specially.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4675
      if (VM_Version::has_DistinctOpnds()) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4676
        Rout = Z_R0;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4677
        z_ogrk(Rix, Z_R0, Z_R1);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4678
        z_ngr(Rix, Rmask);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4679
      } else {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4680
        Rout = Rix;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4681
        z_lgr(Rix, Z_R0);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4682
        z_ogr(Z_R0, Z_R1);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4683
        z_ngr(Z_R0, Rmask);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4684
      }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4685
      z_brnz(skipShortcut);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4686
      z_stcmh(Rout, 5, 0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4687
      z_stcm(Rout,  5, 2, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4688
      z_stcmh(Z_R1, 5, 4, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4689
      z_stcm(Z_R1,  5, 6, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4690
      z_lgfr(result, Rcnt);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4691
      z_bru(AllDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4692
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4693
    bind(skip8Shortcut);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4694
    clear_reg(Z_R0, true, false);          // #characters already processed (none). Precond for scalar loop.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4695
    z_brl(ScalarShortcut);                 // Just a few characters
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4696
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4697
    bind(skipShortcut);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4698
  }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4699
#endif
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4700
  clear_reg(Z_R0);                         // make sure register is properly initialized.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4701
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4702
  if (VM_Version::has_VectorFacility()) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4703
    const int  min_vcnt     = 32;          // Minimum #characters required to use vector instructions.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4704
                                           // Otherwise just do nothing in vector mode.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4705
                                           // Must be multiple of 2*(vector register length in chars (8 HW = 128 bits)).
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4706
    const int  log_min_vcnt = exact_log2(min_vcnt);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4707
    Label      VectorLoop, VectorDone, VectorBreak;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4708
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4709
    VectorRegister Vtmp1      = Z_V16;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4710
    VectorRegister Vtmp2      = Z_V17;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4711
    VectorRegister Vmask      = Z_V18;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4712
    VectorRegister Vzero      = Z_V19;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4713
    VectorRegister Vsrc_first = Z_V20;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4714
    VectorRegister Vsrc_last  = Z_V23;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4715
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4716
    assert((Vsrc_last->encoding() - Vsrc_first->encoding() + 1) == min_vcnt/8, "logic error");
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4717
    assert(VM_Version::has_DistinctOpnds(), "Assumption when has_VectorFacility()");
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4718
    z_srak(Rix, Rcnt, log_min_vcnt);       // # vector loop iterations
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4719
    z_brz(VectorDone);                     // not enough data for vector loop
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4720
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4721
    z_vzero(Vzero);                        // all zeroes
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4722
    z_vgmh(Vmask, 0, 7);                   // generate 0xff00 mask for all 2-byte elements
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4723
    z_sllg(Z_R0, Rix, log_min_vcnt);       // remember #chars that will be processed by vector loop
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4724
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4725
    bind(VectorLoop);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4726
      z_vlm(Vsrc_first, Vsrc_last, 0, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4727
      add2reg(Rsrc, min_vcnt*2);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4728
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4729
      //---<  check for incompatible character  >---
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4730
      z_vo(Vtmp1, Z_V20, Z_V21);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4731
      z_vo(Vtmp2, Z_V22, Z_V23);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4732
      z_vo(Vtmp1, Vtmp1, Vtmp2);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4733
      z_vn(Vtmp1, Vtmp1, Vmask);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4734
      z_vceqhs(Vtmp1, Vtmp1, Vzero);       // high half of all chars must be zero for successful compress.
48331
a8e39cc7b88f 8193443: [s390]: EncodeISOArray generates wrong vector code
lucy
parents: 48186
diff changeset
  4735
      z_bvnt(VectorBreak);                 // break vector loop if not all vector elements compare eq -> incompatible character found.
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4736
                                           // re-process data from current iteration in break handler.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4737
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4738
      //---<  pack & store characters  >---
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4739
      z_vpkh(Vtmp1, Z_V20, Z_V21);         // pack (src1, src2) -> tmp1
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4740
      z_vpkh(Vtmp2, Z_V22, Z_V23);         // pack (src3, src4) -> tmp2
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4741
      z_vstm(Vtmp1, Vtmp2, 0, Rdst);       // store packed string
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4742
      add2reg(Rdst, min_vcnt);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4743
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4744
      z_brct(Rix, VectorLoop);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4745
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4746
    z_bru(VectorDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4747
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4748
    bind(VectorBreak);
48186
c722887b75a2 8192818: [s390]: restoring register contents calculates wrong value
lucy
parents: 48094
diff changeset
  4749
      add2reg(Rsrc, -min_vcnt*2);          // Fix Rsrc. Rsrc was already updated, but Rdst and Rix are not.
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4750
      z_sll(Rix, log_min_vcnt);            // # chars processed so far in VectorLoop, excl. current iteration.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4751
      z_sr(Z_R0, Rix);                     // correct # chars processed in total.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4752
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4753
    bind(VectorDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4754
  }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4755
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4756
  {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4757
    const int  min_cnt     =  8;           // Minimum #characters required to use unrolled loop.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4758
                                           // Otherwise just do nothing in unrolled loop.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4759
                                           // Must be multiple of 8.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4760
    const int  log_min_cnt = exact_log2(min_cnt);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4761
    Label      UnrolledLoop, UnrolledDone, UnrolledBreak;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4762
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4763
    if (VM_Version::has_DistinctOpnds()) {
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4764
      z_srk(Rix, Rcnt, Z_R0);              // remaining # chars to compress in unrolled loop
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4765
    } else {
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4766
      z_lr(Rix, Rcnt);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4767
      z_sr(Rix, Z_R0);
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4768
    }
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4769
    z_sra(Rix, log_min_cnt);             // unrolled loop count
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4770
    z_brz(UnrolledDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4771
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4772
    bind(UnrolledLoop);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4773
      z_lmg(Z_R0, Z_R1, 0, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4774
      if (precise) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4775
        z_ogr(Z_R1, Z_R0);                 // check all 8 chars for incompatibility
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4776
        z_ngr(Z_R1, Rmask);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4777
        z_brnz(UnrolledBreak);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4778
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4779
        z_lg(Z_R1, 8, Rsrc);               // reload destroyed register
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4780
        z_stcmh(Z_R0, 5, 0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4781
        z_stcm(Z_R0,  5, 2, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4782
      } else {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4783
        z_stcmh(Z_R0, 5, 0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4784
        z_stcm(Z_R0,  5, 2, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4785
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4786
        z_ogr(Z_R0, Z_R1);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4787
        z_ngr(Z_R0, Rmask);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4788
        z_brnz(UnrolledBreak);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4789
      }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4790
      z_stcmh(Z_R1, 5, 4, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4791
      z_stcm(Z_R1,  5, 6, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4792
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4793
      add2reg(Rsrc, min_cnt*2);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4794
      add2reg(Rdst, min_cnt);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4795
      z_brct(Rix, UnrolledLoop);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4796
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4797
    z_lgfr(Z_R0, Rcnt);                    // # chars processed in total after unrolled loop.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4798
    z_nilf(Z_R0, ~(min_cnt-1));
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4799
    z_tmll(Rcnt, min_cnt-1);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4800
    z_brnaz(ScalarShortcut);               // if all bits zero, there is nothing left to do for scalar loop.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4801
                                           // Rix == 0 in all cases.
48331
a8e39cc7b88f 8193443: [s390]: EncodeISOArray generates wrong vector code
lucy
parents: 48186
diff changeset
  4802
    z_sllg(Z_R1, Rcnt, 1);                 // # src bytes already processed. Only lower 32 bits are valid!
a8e39cc7b88f 8193443: [s390]: EncodeISOArray generates wrong vector code
lucy
parents: 48186
diff changeset
  4803
                                           //   Z_R1 contents must be treated as unsigned operand! For huge strings,
a8e39cc7b88f 8193443: [s390]: EncodeISOArray generates wrong vector code
lucy
parents: 48186
diff changeset
  4804
                                           //   (Rcnt >= 2**30), the value may spill into the sign bit by sllg.
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4805
    z_lgfr(result, Rcnt);                  // all characters processed.
48331
a8e39cc7b88f 8193443: [s390]: EncodeISOArray generates wrong vector code
lucy
parents: 48186
diff changeset
  4806
    z_slgfr(Rdst, Rcnt);                   // restore ptr
a8e39cc7b88f 8193443: [s390]: EncodeISOArray generates wrong vector code
lucy
parents: 48186
diff changeset
  4807
    z_slgfr(Rsrc, Z_R1);                   // restore ptr, double the element count for Rsrc restore
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4808
    z_bru(AllDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4809
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4810
    bind(UnrolledBreak);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4811
    z_lgfr(Z_R0, Rcnt);                    // # chars processed in total after unrolled loop
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4812
    z_nilf(Z_R0, ~(min_cnt-1));
48331
a8e39cc7b88f 8193443: [s390]: EncodeISOArray generates wrong vector code
lucy
parents: 48186
diff changeset
  4813
    z_sll(Rix, log_min_cnt);               // # chars not yet processed in UnrolledLoop (due to break), broken iteration not included.
a8e39cc7b88f 8193443: [s390]: EncodeISOArray generates wrong vector code
lucy
parents: 48186
diff changeset
  4814
    z_sr(Z_R0, Rix);                       // fix # chars processed OK so far.
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4815
    if (!precise) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4816
      z_lgfr(result, Z_R0);
48331
a8e39cc7b88f 8193443: [s390]: EncodeISOArray generates wrong vector code
lucy
parents: 48186
diff changeset
  4817
      z_sllg(Z_R1, Z_R0, 1);               // # src bytes already processed. Only lower 32 bits are valid!
a8e39cc7b88f 8193443: [s390]: EncodeISOArray generates wrong vector code
lucy
parents: 48186
diff changeset
  4818
                                           //   Z_R1 contents must be treated as unsigned operand! For huge strings,
a8e39cc7b88f 8193443: [s390]: EncodeISOArray generates wrong vector code
lucy
parents: 48186
diff changeset
  4819
                                           //   (Rcnt >= 2**30), the value may spill into the sign bit by sllg.
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4820
      z_aghi(result, min_cnt/2);           // min_cnt/2 characters have already been written
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4821
                                           // but ptrs were not updated yet.
48331
a8e39cc7b88f 8193443: [s390]: EncodeISOArray generates wrong vector code
lucy
parents: 48186
diff changeset
  4822
      z_slgfr(Rdst, Z_R0);                 // restore ptr
a8e39cc7b88f 8193443: [s390]: EncodeISOArray generates wrong vector code
lucy
parents: 48186
diff changeset
  4823
      z_slgfr(Rsrc, Z_R1);                 // restore ptr, double the element count for Rsrc restore
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4824
      z_bru(AllDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4825
    }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4826
    bind(UnrolledDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4827
  }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4828
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4829
  {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4830
    Label     ScalarLoop, ScalarDone, ScalarBreak;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4831
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4832
    bind(ScalarShortcut);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4833
    z_ltgfr(result, Rcnt);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4834
    z_brz(AllDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4835
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4836
#if 0  // Sacrifice shortcuts for code compactness
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4837
    {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4838
      //---<  Special treatment for very short strings (one or two characters)  >---
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4839
      //   For these strings, we are sure that the above code was skipped.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4840
      //   Thus, no registers were modified, register restore is not required.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4841
      Label     ScalarDoit, Scalar2Char;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4842
      z_chi(Rcnt, 2);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4843
      z_brh(ScalarDoit);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4844
      z_llh(Z_R1,  0, Z_R0, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4845
      z_bre(Scalar2Char);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4846
      z_tmll(Z_R1, 0xff00);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4847
      z_lghi(result, 0);                   // cnt == 1, first char invalid, no chars successfully processed
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4848
      z_brnaz(AllDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4849
      z_stc(Z_R1,  0, Z_R0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4850
      z_lghi(result, 1);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4851
      z_bru(AllDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4852
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4853
      bind(Scalar2Char);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4854
      z_llh(Z_R0,  2, Z_R0, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4855
      z_tmll(Z_R1, 0xff00);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4856
      z_lghi(result, 0);                   // cnt == 2, first char invalid, no chars successfully processed
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4857
      z_brnaz(AllDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4858
      z_stc(Z_R1,  0, Z_R0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4859
      z_tmll(Z_R0, 0xff00);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4860
      z_lghi(result, 1);                   // cnt == 2, second char invalid, one char successfully processed
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4861
      z_brnaz(AllDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4862
      z_stc(Z_R0,  1, Z_R0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4863
      z_lghi(result, 2);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4864
      z_bru(AllDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4865
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4866
      bind(ScalarDoit);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4867
    }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4868
#endif
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4869
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4870
    if (VM_Version::has_DistinctOpnds()) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4871
      z_srk(Rix, Rcnt, Z_R0);              // remaining # chars to compress in unrolled loop
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4872
    } else {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4873
      z_lr(Rix, Rcnt);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4874
      z_sr(Rix, Z_R0);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4875
    }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4876
    z_lgfr(result, Rcnt);                  // # processed characters (if all runs ok).
48331
a8e39cc7b88f 8193443: [s390]: EncodeISOArray generates wrong vector code
lucy
parents: 48186
diff changeset
  4877
    z_brz(ScalarDone);                     // uses CC from Rix calculation
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4878
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4879
    bind(ScalarLoop);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4880
      z_llh(Z_R1, 0, Z_R0, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4881
      z_tmll(Z_R1, 0xff00);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4882
      z_brnaz(ScalarBreak);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4883
      z_stc(Z_R1, 0, Z_R0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4884
      add2reg(Rsrc, 2);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4885
      add2reg(Rdst, 1);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4886
      z_brct(Rix, ScalarLoop);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4887
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4888
    z_bru(ScalarDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4889
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4890
    bind(ScalarBreak);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4891
    z_sr(result, Rix);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4892
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4893
    bind(ScalarDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4894
    z_sgfr(Rdst, result);                  // restore ptr
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4895
    z_sgfr(Rsrc, result);                  // restore ptr, double the element count for Rsrc restore
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4896
    z_sgfr(Rsrc, result);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4897
  }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4898
  bind(AllDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4899
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4900
  if (precise) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4901
    BLOCK_COMMENT("} encode_iso_array");
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4902
  } else {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4903
    BLOCK_COMMENT("} string_compress");
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4904
  }
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4905
  return offset() - block_start;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4906
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4907
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4908
// Inflate byte[] to char[].
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4909
unsigned int MacroAssembler::string_inflate_trot(Register src, Register dst, Register cnt, Register tmp) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4910
  int block_start = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4911
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4912
  BLOCK_COMMENT("string_inflate {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4913
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4914
  Register stop_char = Z_R0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4915
  Register table     = Z_R1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4916
  Register src_addr  = tmp;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4917
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4918
  assert_different_registers(Z_R0, Z_R1, tmp, src, dst, cnt);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4919
  assert(dst->encoding()%2 == 0, "must be even reg");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4920
  assert(cnt->encoding()%2 == 1, "must be odd reg");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4921
  assert(cnt->encoding() - dst->encoding() == 1, "must be even/odd pair");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4922
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4923
  StubRoutines::zarch::generate_load_trot_table_addr(this, table);  // kills Z_R0 (if ASSERT)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4924
  clear_reg(stop_char);  // Stop character. Not used here, but initialized to have a defined value.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4925
  lgr_if_needed(src_addr, src);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4926
  z_llgfr(cnt, cnt);     // # src characters, must be a positive simm32.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4927
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4928
  translate_ot(dst, src_addr, /* mask = */ 0x0001);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4929
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4930
  BLOCK_COMMENT("} string_inflate");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4931
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4932
  return offset() - block_start;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4933
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4934
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4935
// Inflate byte[] to char[].
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4936
//   Restores: src, dst
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4937
//   Uses:     cnt
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4938
//   Kills:    tmp, Z_R0, Z_R1.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4939
// Note:
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4940
//   cnt is signed int. Do not rely on high word!
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4941
//       counts # characters, not bytes.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4942
unsigned int MacroAssembler::string_inflate(Register src, Register dst, Register cnt, Register tmp) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4943
  assert_different_registers(Z_R0, Z_R1, src, dst, cnt, tmp);
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4944
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  4945
  BLOCK_COMMENT("string_inflate {");
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4946
  int block_start = offset();
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4947
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4948
  Register   Rcnt = cnt;   // # characters (src: bytes, dst: char (2-byte)), remaining after current loop.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4949
  Register   Rix  = tmp;   // loop index
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4950
  Register   Rsrc = src;   // addr(src array)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4951
  Register   Rdst = dst;   // addr(dst array)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4952
  Label      ScalarShortcut, AllDone;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4953
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4954
#if 0  // Sacrifice shortcuts for code compactness
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4955
  {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4956
    //---<  shortcuts for short strings (very frequent)   >---
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4957
    Label   skipShortcut, skip4Shortcut;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4958
    z_ltr(Rcnt, Rcnt);                     // absolutely nothing to do for strings of len == 0.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4959
    z_brz(AllDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4960
    clear_reg(Z_R0);                       // make sure registers are properly initialized.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4961
    clear_reg(Z_R1);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4962
    z_chi(Rcnt, 4);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4963
    z_brne(skip4Shortcut);                 // 4 characters are very frequent
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4964
      z_icm(Z_R0, 5,    0, Rsrc);          // Treat exactly 4 characters specially.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4965
      z_icm(Z_R1, 5,    2, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4966
      z_stm(Z_R0, Z_R1, 0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4967
      z_bru(AllDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4968
    bind(skip4Shortcut);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4969
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4970
    z_chi(Rcnt, 8);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4971
    z_brh(skipShortcut);                   // There's a lot to do...
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4972
    z_lgfr(Z_R0, Rcnt);                    // remaining #characters (<= 8). Precond for scalar loop.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4973
                                           // This does not destroy the "register cleared" state of Z_R0.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4974
    z_brl(ScalarShortcut);                 // Just a few characters
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4975
      z_icmh(Z_R0, 5, 0, Rsrc);            // Treat exactly 8 characters specially.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4976
      z_icmh(Z_R1, 5, 4, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4977
      z_icm(Z_R0,  5, 2, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4978
      z_icm(Z_R1,  5, 6, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4979
      z_stmg(Z_R0, Z_R1, 0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4980
      z_bru(AllDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4981
    bind(skipShortcut);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4982
  }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4983
#endif
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4984
  clear_reg(Z_R0);                         // make sure register is properly initialized.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4985
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4986
  if (VM_Version::has_VectorFacility()) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4987
    const int  min_vcnt     = 32;          // Minimum #characters required to use vector instructions.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4988
                                           // Otherwise just do nothing in vector mode.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4989
                                           // Must be multiple of vector register length (16 bytes = 128 bits).
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4990
    const int  log_min_vcnt = exact_log2(min_vcnt);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4991
    Label      VectorLoop, VectorDone;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4992
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4993
    assert(VM_Version::has_DistinctOpnds(), "Assumption when has_VectorFacility()");
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4994
    z_srak(Rix, Rcnt, log_min_vcnt);       // calculate # vector loop iterations
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4995
    z_brz(VectorDone);                     // skip if none
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4996
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4997
    z_sllg(Z_R0, Rix, log_min_vcnt);       // remember #chars that will be processed by vector loop
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4998
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  4999
    bind(VectorLoop);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5000
      z_vlm(Z_V20, Z_V21, 0, Rsrc);        // get next 32 characters (single-byte)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5001
      add2reg(Rsrc, min_vcnt);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5002
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5003
      z_vuplhb(Z_V22, Z_V20);              // V2 <- (expand) V0(high)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5004
      z_vupllb(Z_V23, Z_V20);              // V3 <- (expand) V0(low)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5005
      z_vuplhb(Z_V24, Z_V21);              // V4 <- (expand) V1(high)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5006
      z_vupllb(Z_V25, Z_V21);              // V5 <- (expand) V1(low)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5007
      z_vstm(Z_V22, Z_V25, 0, Rdst);       // store next 32 bytes
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5008
      add2reg(Rdst, min_vcnt*2);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5009
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5010
      z_brct(Rix, VectorLoop);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5011
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5012
    bind(VectorDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5013
  }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5014
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5015
  const int  min_cnt     =  8;             // Minimum #characters required to use unrolled scalar loop.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5016
                                           // Otherwise just do nothing in unrolled scalar mode.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5017
                                           // Must be multiple of 8.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5018
  {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5019
    const int  log_min_cnt = exact_log2(min_cnt);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5020
    Label      UnrolledLoop, UnrolledDone;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5021
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5022
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5023
    if (VM_Version::has_DistinctOpnds()) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5024
      z_srk(Rix, Rcnt, Z_R0);              // remaining # chars to process in unrolled loop
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5025
    } else {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5026
      z_lr(Rix, Rcnt);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5027
      z_sr(Rix, Z_R0);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5028
    }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5029
    z_sra(Rix, log_min_cnt);               // unrolled loop count
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5030
    z_brz(UnrolledDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5031
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5032
    clear_reg(Z_R0);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5033
    clear_reg(Z_R1);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5034
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5035
    bind(UnrolledLoop);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5036
      z_icmh(Z_R0, 5, 0, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5037
      z_icmh(Z_R1, 5, 4, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5038
      z_icm(Z_R0,  5, 2, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5039
      z_icm(Z_R1,  5, 6, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5040
      add2reg(Rsrc, min_cnt);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5041
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5042
      z_stmg(Z_R0, Z_R1, 0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5043
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5044
      add2reg(Rdst, min_cnt*2);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5045
      z_brct(Rix, UnrolledLoop);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5046
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5047
    bind(UnrolledDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5048
    z_lgfr(Z_R0, Rcnt);                    // # chars left over after unrolled loop.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5049
    z_nilf(Z_R0, min_cnt-1);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5050
    z_brnz(ScalarShortcut);                // if zero, there is nothing left to do for scalar loop.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5051
                                           // Rix == 0 in all cases.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5052
    z_sgfr(Z_R0, Rcnt);                    // negative # characters the ptrs have been advanced previously.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5053
    z_agr(Rdst, Z_R0);                     // restore ptr, double the element count for Rdst restore.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5054
    z_agr(Rdst, Z_R0);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5055
    z_agr(Rsrc, Z_R0);                     // restore ptr.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5056
    z_bru(AllDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5057
  }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5058
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5059
  {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5060
    bind(ScalarShortcut);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5061
    // Z_R0 must contain remaining # characters as 64-bit signed int here.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5062
    //      register contents is preserved over scalar processing (for register fixup).
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5063
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5064
#if 0  // Sacrifice shortcuts for code compactness
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5065
    {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5066
      Label      ScalarDefault;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5067
      z_chi(Rcnt, 2);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5068
      z_brh(ScalarDefault);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5069
      z_llc(Z_R0,  0, Z_R0, Rsrc);     // 6 bytes
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5070
      z_sth(Z_R0,  0, Z_R0, Rdst);     // 4 bytes
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5071
      z_brl(AllDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5072
      z_llc(Z_R0,  1, Z_R0, Rsrc);     // 6 bytes
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5073
      z_sth(Z_R0,  2, Z_R0, Rdst);     // 4 bytes
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5074
      z_bru(AllDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5075
      bind(ScalarDefault);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5076
    }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5077
#endif
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5078
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5079
    Label   CodeTable;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5080
    // Some comments on Rix calculation:
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5081
    //  - Rcnt is small, therefore no bits shifted out of low word (sll(g) instructions).
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5082
    //  - high word of both Rix and Rcnt may contain garbage
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5083
    //  - the final lngfr takes care of that garbage, extending the sign to high word
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5084
    z_sllg(Rix, Z_R0, 2);                // calculate 10*Rix = (4*Rix + Rix)*2
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5085
    z_ar(Rix, Z_R0);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5086
    z_larl(Z_R1, CodeTable);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5087
    z_sll(Rix, 1);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5088
    z_lngfr(Rix, Rix);      // ix range: [0..7], after inversion & mult: [-(7*12)..(0*12)].
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5089
    z_bc(Assembler::bcondAlways, 0, Rix, Z_R1);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5090
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5091
    z_llc(Z_R1,  6, Z_R0, Rsrc);  // 6 bytes
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5092
    z_sth(Z_R1, 12, Z_R0, Rdst);  // 4 bytes
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5093
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5094
    z_llc(Z_R1,  5, Z_R0, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5095
    z_sth(Z_R1, 10, Z_R0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5096
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5097
    z_llc(Z_R1,  4, Z_R0, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5098
    z_sth(Z_R1,  8, Z_R0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5099
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5100
    z_llc(Z_R1,  3, Z_R0, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5101
    z_sth(Z_R1,  6, Z_R0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5102
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5103
    z_llc(Z_R1,  2, Z_R0, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5104
    z_sth(Z_R1,  4, Z_R0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5105
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5106
    z_llc(Z_R1,  1, Z_R0, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5107
    z_sth(Z_R1,  2, Z_R0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5108
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5109
    z_llc(Z_R1,  0, Z_R0, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5110
    z_sth(Z_R1,  0, Z_R0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5111
    bind(CodeTable);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5112
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5113
    z_chi(Rcnt, 8);                        // no fixup for small strings. Rdst, Rsrc were not modified.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5114
    z_brl(AllDone);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5115
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5116
    z_sgfr(Z_R0, Rcnt);                    // # characters the ptrs have been advanced previously.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5117
    z_agr(Rdst, Z_R0);                     // restore ptr, double the element count for Rdst restore.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5118
    z_agr(Rdst, Z_R0);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5119
    z_agr(Rsrc, Z_R0);                     // restore ptr.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5120
  }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5121
  bind(AllDone);
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5122
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5123
  BLOCK_COMMENT("} string_inflate");
48094
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5124
  return offset() - block_start;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5125
}
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5126
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5127
// Inflate byte[] to char[], length known at compile time.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5128
//   Restores: src, dst
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5129
//   Kills:    tmp, Z_R0, Z_R1.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5130
// Note:
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5131
//   len is signed int. Counts # characters, not bytes.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5132
unsigned int MacroAssembler::string_inflate_const(Register src, Register dst, Register tmp, int len) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5133
  assert_different_registers(Z_R0, Z_R1, src, dst, tmp);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5134
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5135
  BLOCK_COMMENT("string_inflate_const {");
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5136
  int block_start = offset();
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5137
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5138
  Register   Rix  = tmp;   // loop index
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5139
  Register   Rsrc = src;   // addr(src array)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5140
  Register   Rdst = dst;   // addr(dst array)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5141
  Label      ScalarShortcut, AllDone;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5142
  int        nprocessed = 0;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5143
  int        src_off    = 0;  // compensate for saved (optimized away) ptr advancement.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5144
  int        dst_off    = 0;  // compensate for saved (optimized away) ptr advancement.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5145
  bool       restore_inputs = false;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5146
  bool       workreg_clear  = false;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5147
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5148
  if ((len >= 32) && VM_Version::has_VectorFacility()) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5149
    const int  min_vcnt     = 32;          // Minimum #characters required to use vector instructions.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5150
                                           // Otherwise just do nothing in vector mode.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5151
                                           // Must be multiple of vector register length (16 bytes = 128 bits).
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5152
    const int  log_min_vcnt = exact_log2(min_vcnt);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5153
    const int  iterations   = (len - nprocessed) >> log_min_vcnt;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5154
    nprocessed             += iterations << log_min_vcnt;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5155
    Label      VectorLoop;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5156
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5157
    if (iterations == 1) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5158
      z_vlm(Z_V20, Z_V21, 0+src_off, Rsrc);  // get next 32 characters (single-byte)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5159
      z_vuplhb(Z_V22, Z_V20);                // V2 <- (expand) V0(high)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5160
      z_vupllb(Z_V23, Z_V20);                // V3 <- (expand) V0(low)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5161
      z_vuplhb(Z_V24, Z_V21);                // V4 <- (expand) V1(high)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5162
      z_vupllb(Z_V25, Z_V21);                // V5 <- (expand) V1(low)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5163
      z_vstm(Z_V22, Z_V25, 0+dst_off, Rdst); // store next 32 bytes
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5164
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5165
      src_off += min_vcnt;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5166
      dst_off += min_vcnt*2;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5167
    } else {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5168
      restore_inputs = true;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5169
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5170
      z_lgfi(Rix, len>>log_min_vcnt);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5171
      bind(VectorLoop);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5172
        z_vlm(Z_V20, Z_V21, 0, Rsrc);        // get next 32 characters (single-byte)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5173
        add2reg(Rsrc, min_vcnt);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5174
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5175
        z_vuplhb(Z_V22, Z_V20);              // V2 <- (expand) V0(high)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5176
        z_vupllb(Z_V23, Z_V20);              // V3 <- (expand) V0(low)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5177
        z_vuplhb(Z_V24, Z_V21);              // V4 <- (expand) V1(high)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5178
        z_vupllb(Z_V25, Z_V21);              // V5 <- (expand) V1(low)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5179
        z_vstm(Z_V22, Z_V25, 0, Rdst);       // store next 32 bytes
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5180
        add2reg(Rdst, min_vcnt*2);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5181
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5182
        z_brct(Rix, VectorLoop);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5183
    }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5184
  }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5185
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5186
  if (((len-nprocessed) >= 16) && VM_Version::has_VectorFacility()) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5187
    const int  min_vcnt     = 16;          // Minimum #characters required to use vector instructions.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5188
                                           // Otherwise just do nothing in vector mode.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5189
                                           // Must be multiple of vector register length (16 bytes = 128 bits).
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5190
    const int  log_min_vcnt = exact_log2(min_vcnt);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5191
    const int  iterations   = (len - nprocessed) >> log_min_vcnt;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5192
    nprocessed             += iterations << log_min_vcnt;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5193
    assert(iterations == 1, "must be!");
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5194
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5195
    z_vl(Z_V20, 0+src_off, Z_R0, Rsrc);    // get next 16 characters (single-byte)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5196
    z_vuplhb(Z_V22, Z_V20);                // V2 <- (expand) V0(high)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5197
    z_vupllb(Z_V23, Z_V20);                // V3 <- (expand) V0(low)
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5198
    z_vstm(Z_V22, Z_V23, 0+dst_off, Rdst); // store next 32 bytes
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5199
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5200
    src_off += min_vcnt;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5201
    dst_off += min_vcnt*2;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5202
  }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5203
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5204
  if ((len-nprocessed) > 8) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5205
    const int  min_cnt     =  8;           // Minimum #characters required to use unrolled scalar loop.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5206
                                           // Otherwise just do nothing in unrolled scalar mode.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5207
                                           // Must be multiple of 8.
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5208
    const int  log_min_cnt = exact_log2(min_cnt);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5209
    const int  iterations  = (len - nprocessed) >> log_min_cnt;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5210
    nprocessed     += iterations << log_min_cnt;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5211
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5212
    //---<  avoid loop overhead/ptr increment for small # iterations  >---
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5213
    if (iterations <= 2) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5214
      clear_reg(Z_R0);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5215
      clear_reg(Z_R1);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5216
      workreg_clear = true;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5217
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5218
      z_icmh(Z_R0, 5, 0+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5219
      z_icmh(Z_R1, 5, 4+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5220
      z_icm(Z_R0,  5, 2+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5221
      z_icm(Z_R1,  5, 6+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5222
      z_stmg(Z_R0, Z_R1, 0+dst_off, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5223
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5224
      src_off += min_cnt;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5225
      dst_off += min_cnt*2;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5226
    }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5227
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5228
    if (iterations == 2) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5229
      z_icmh(Z_R0, 5, 0+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5230
      z_icmh(Z_R1, 5, 4+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5231
      z_icm(Z_R0,  5, 2+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5232
      z_icm(Z_R1,  5, 6+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5233
      z_stmg(Z_R0, Z_R1, 0+dst_off, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5234
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5235
      src_off += min_cnt;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5236
      dst_off += min_cnt*2;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5237
    }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5238
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5239
    if (iterations > 2) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5240
      Label      UnrolledLoop;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5241
      restore_inputs  = true;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5242
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5243
      clear_reg(Z_R0);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5244
      clear_reg(Z_R1);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5245
      workreg_clear = true;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5246
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5247
      z_lgfi(Rix, iterations);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5248
      bind(UnrolledLoop);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5249
        z_icmh(Z_R0, 5, 0, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5250
        z_icmh(Z_R1, 5, 4, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5251
        z_icm(Z_R0,  5, 2, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5252
        z_icm(Z_R1,  5, 6, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5253
        add2reg(Rsrc, min_cnt);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5254
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5255
        z_stmg(Z_R0, Z_R1, 0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5256
        add2reg(Rdst, min_cnt*2);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5257
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5258
        z_brct(Rix, UnrolledLoop);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5259
    }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5260
  }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5261
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5262
  if ((len-nprocessed) > 0) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5263
    switch (len-nprocessed) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5264
      case 8:
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5265
        if (!workreg_clear) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5266
          clear_reg(Z_R0);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5267
          clear_reg(Z_R1);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5268
        }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5269
        z_icmh(Z_R0, 5, 0+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5270
        z_icmh(Z_R1, 5, 4+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5271
        z_icm(Z_R0,  5, 2+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5272
        z_icm(Z_R1,  5, 6+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5273
        z_stmg(Z_R0, Z_R1, 0+dst_off, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5274
        break;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5275
      case 7:
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5276
        if (!workreg_clear) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5277
          clear_reg(Z_R0);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5278
          clear_reg(Z_R1);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5279
        }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5280
        clear_reg(Rix);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5281
        z_icm(Z_R0,  5, 0+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5282
        z_icm(Z_R1,  5, 2+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5283
        z_icm(Rix,   5, 4+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5284
        z_stm(Z_R0,  Z_R1, 0+dst_off, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5285
        z_llc(Z_R0,  6+src_off, Z_R0, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5286
        z_st(Rix,    8+dst_off, Z_R0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5287
        z_sth(Z_R0, 12+dst_off, Z_R0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5288
        break;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5289
      case 6:
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5290
        if (!workreg_clear) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5291
          clear_reg(Z_R0);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5292
          clear_reg(Z_R1);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5293
        }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5294
        clear_reg(Rix);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5295
        z_icm(Z_R0, 5, 0+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5296
        z_icm(Z_R1, 5, 2+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5297
        z_icm(Rix,  5, 4+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5298
        z_stm(Z_R0, Z_R1, 0+dst_off, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5299
        z_st(Rix,   8+dst_off, Z_R0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5300
        break;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5301
      case 5:
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5302
        if (!workreg_clear) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5303
          clear_reg(Z_R0);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5304
          clear_reg(Z_R1);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5305
        }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5306
        z_icm(Z_R0, 5, 0+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5307
        z_icm(Z_R1, 5, 2+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5308
        z_llc(Rix,  4+src_off, Z_R0, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5309
        z_stm(Z_R0, Z_R1, 0+dst_off, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5310
        z_sth(Rix,  8+dst_off, Z_R0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5311
        break;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5312
      case 4:
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5313
        if (!workreg_clear) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5314
          clear_reg(Z_R0);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5315
          clear_reg(Z_R1);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5316
        }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5317
        z_icm(Z_R0, 5, 0+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5318
        z_icm(Z_R1, 5, 2+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5319
        z_stm(Z_R0, Z_R1, 0+dst_off, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5320
        break;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5321
      case 3:
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5322
        if (!workreg_clear) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5323
          clear_reg(Z_R0);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5324
        }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5325
        z_llc(Z_R1, 2+src_off, Z_R0, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5326
        z_icm(Z_R0, 5, 0+src_off, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5327
        z_sth(Z_R1, 4+dst_off, Z_R0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5328
        z_st(Z_R0,  0+dst_off, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5329
        break;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5330
      case 2:
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5331
        z_llc(Z_R0, 0+src_off, Z_R0, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5332
        z_llc(Z_R1, 1+src_off, Z_R0, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5333
        z_sth(Z_R0, 0+dst_off, Z_R0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5334
        z_sth(Z_R1, 2+dst_off, Z_R0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5335
        break;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5336
      case 1:
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5337
        z_llc(Z_R0, 0+src_off, Z_R0, Rsrc);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5338
        z_sth(Z_R0, 0+dst_off, Z_R0, Rdst);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5339
        break;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5340
      default:
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5341
        guarantee(false, "Impossible");
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5342
        break;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5343
    }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5344
    src_off   +=  len-nprocessed;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5345
    dst_off   += (len-nprocessed)*2;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5346
    nprocessed = len;
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5347
  }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5348
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5349
  //---< restore modified input registers  >---
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5350
  if ((nprocessed > 0) && restore_inputs) {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5351
    z_agfi(Rsrc, -(nprocessed-src_off));
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5352
    if (nprocessed < 1000000000) { // avoid int overflow
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5353
      z_agfi(Rdst, -(nprocessed*2-dst_off));
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5354
    } else {
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5355
      z_agfi(Rdst, -(nprocessed-dst_off));
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5356
      z_agfi(Rdst, -nprocessed);
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5357
    }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5358
  }
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5359
bca569f79fa1 8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents: 47580
diff changeset
  5360
  BLOCK_COMMENT("} string_inflate_const");
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5361
  return offset() - block_start;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5362
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5363
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5364
// Kills src.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5365
unsigned int MacroAssembler::has_negatives(Register result, Register src, Register cnt,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5366
                                           Register odd_reg, Register even_reg, Register tmp) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5367
  int block_start = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5368
  Label Lloop1, Lloop2, Lslow, Lnotfound, Ldone;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5369
  const Register addr = src, mask = tmp;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5370
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5371
  BLOCK_COMMENT("has_negatives {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5372
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5373
  z_llgfr(Z_R1, cnt);      // Number of bytes to read. (Must be a positive simm32.)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5374
  z_llilf(mask, 0x80808080);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5375
  z_lhi(result, 1);        // Assume true.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5376
  // Last possible addr for fast loop.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5377
  z_lay(odd_reg, -16, Z_R1, src);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5378
  z_chi(cnt, 16);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5379
  z_brl(Lslow);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5380
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5381
  // ind1: index, even_reg: index increment, odd_reg: index limit
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5382
  z_iihf(mask, 0x80808080);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5383
  z_lghi(even_reg, 16);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5384
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5385
  bind(Lloop1); // 16 bytes per iteration.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5386
  z_lg(Z_R0, Address(addr));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5387
  z_lg(Z_R1, Address(addr, 8));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5388
  z_ogr(Z_R0, Z_R1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5389
  z_ngr(Z_R0, mask);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5390
  z_brne(Ldone);           // If found return 1.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5391
  z_brxlg(addr, even_reg, Lloop1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5392
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5393
  bind(Lslow);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5394
  z_aghi(odd_reg, 16-1);   // Last possible addr for slow loop.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5395
  z_lghi(even_reg, 1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5396
  z_cgr(addr, odd_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5397
  z_brh(Lnotfound);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5398
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5399
  bind(Lloop2); // 1 byte per iteration.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5400
  z_cli(Address(addr), 0x80);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5401
  z_brnl(Ldone);           // If found return 1.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5402
  z_brxlg(addr, even_reg, Lloop2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5403
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5404
  bind(Lnotfound);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5405
  z_lhi(result, 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5406
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5407
  bind(Ldone);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5408
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5409
  BLOCK_COMMENT("} has_negatives");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5410
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5411
  return offset() - block_start;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5412
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5413
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5414
// kill: cnt1, cnt2, odd_reg, even_reg; early clobber: result
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5415
unsigned int MacroAssembler::string_compare(Register str1, Register str2,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5416
                                            Register cnt1, Register cnt2,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5417
                                            Register odd_reg, Register even_reg, Register result, int ae) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5418
  int block_start = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5419
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5420
  assert_different_registers(str1, cnt1, cnt2, odd_reg, even_reg, result);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5421
  assert_different_registers(str2, cnt1, cnt2, odd_reg, even_reg, result);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5422
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5423
  // If strings are equal up to min length, return the length difference.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5424
  const Register diff = result, // Pre-set result with length difference.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5425
                 min  = cnt1,   // min number of bytes
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5426
                 tmp  = cnt2;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5427
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5428
  // Note: Making use of the fact that compareTo(a, b) == -compareTo(b, a)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5429
  // we interchange str1 and str2 in the UL case and negate the result.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5430
  // Like this, str1 is always latin1 encoded, except for the UU case.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5431
  // In addition, we need 0 (or sign which is 0) extend when using 64 bit register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5432
  const bool used_as_LU = (ae == StrIntrinsicNode::LU || ae == StrIntrinsicNode::UL);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5433
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5434
  BLOCK_COMMENT("string_compare {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5435
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5436
  if (used_as_LU) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5437
    z_srl(cnt2, 1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5438
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5439
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5440
  // See if the lengths are different, and calculate min in cnt1.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5441
  // Save diff in case we need it for a tie-breaker.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5442
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5443
  // diff = cnt1 - cnt2
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5444
  if (VM_Version::has_DistinctOpnds()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5445
    z_srk(diff, cnt1, cnt2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5446
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5447
    z_lr(diff, cnt1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5448
    z_sr(diff, cnt2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5449
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5450
  if (str1 != str2) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5451
    if (VM_Version::has_LoadStoreConditional()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5452
      z_locr(min, cnt2, Assembler::bcondHigh);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5453
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5454
      Label Lskip;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5455
      z_brl(Lskip);    // min ok if cnt1 < cnt2
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5456
      z_lr(min, cnt2); // min = cnt2
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5457
      bind(Lskip);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5458
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5459
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5460
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5461
  if (ae == StrIntrinsicNode::UU) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5462
    z_sra(diff, 1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5463
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5464
  if (str1 != str2) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5465
    Label Ldone;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5466
    if (used_as_LU) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5467
      // Loop which searches the first difference character by character.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5468
      Label Lloop;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5469
      const Register ind1 = Z_R1,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5470
                     ind2 = min;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5471
      int stride1 = 1, stride2 = 2; // See comment above.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5472
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5473
      // ind1: index, even_reg: index increment, odd_reg: index limit
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5474
      z_llilf(ind1, (unsigned int)(-stride1));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5475
      z_lhi(even_reg, stride1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5476
      add2reg(odd_reg, -stride1, min);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5477
      clear_reg(ind2); // kills min
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5478
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5479
      bind(Lloop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5480
      z_brxh(ind1, even_reg, Ldone);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5481
      z_llc(tmp, Address(str1, ind1));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5482
      z_llh(Z_R0, Address(str2, ind2));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5483
      z_ahi(ind2, stride2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5484
      z_sr(tmp, Z_R0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5485
      z_bre(Lloop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5486
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5487
      z_lr(result, tmp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5488
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5489
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5490
      // Use clcle in fast loop (only for same encoding).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5491
      z_lgr(Z_R0, str1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5492
      z_lgr(even_reg, str2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5493
      z_llgfr(Z_R1, min);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5494
      z_llgfr(odd_reg, min);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5495
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5496
      if (ae == StrIntrinsicNode::LL) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5497
        compare_long_ext(Z_R0, even_reg, 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5498
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5499
        compare_long_uni(Z_R0, even_reg, 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5500
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5501
      z_bre(Ldone);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5502
      z_lgr(Z_R1, Z_R0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5503
      if (ae == StrIntrinsicNode::LL) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5504
        z_llc(Z_R0, Address(even_reg));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5505
        z_llc(result, Address(Z_R1));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5506
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5507
        z_llh(Z_R0, Address(even_reg));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5508
        z_llh(result, Address(Z_R1));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5509
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5510
      z_sr(result, Z_R0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5511
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5512
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5513
    // Otherwise, return the difference between the first mismatched chars.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5514
    bind(Ldone);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5515
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5516
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5517
  if (ae == StrIntrinsicNode::UL) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5518
    z_lcr(result, result); // Negate result (see note above).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5519
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5520
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5521
  BLOCK_COMMENT("} string_compare");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5522
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5523
  return offset() - block_start;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5524
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5525
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5526
unsigned int MacroAssembler::array_equals(bool is_array_equ, Register ary1, Register ary2, Register limit,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5527
                                          Register odd_reg, Register even_reg, Register result, bool is_byte) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5528
  int block_start = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5529
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5530
  BLOCK_COMMENT("array_equals {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5531
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5532
  assert_different_registers(ary1, limit, odd_reg, even_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5533
  assert_different_registers(ary2, limit, odd_reg, even_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5534
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5535
  Label Ldone, Ldone_true, Ldone_false, Lclcle, CLC_template;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5536
  int base_offset = 0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5537
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5538
  if (ary1 != ary2) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5539
    if (is_array_equ) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5540
      base_offset = arrayOopDesc::base_offset_in_bytes(is_byte ? T_BYTE : T_CHAR);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5541
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5542
      // Return true if the same array.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5543
      compareU64_and_branch(ary1, ary2, Assembler::bcondEqual, Ldone_true);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5544
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5545
      // Return false if one of them is NULL.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5546
      compareU64_and_branch(ary1, (intptr_t)0, Assembler::bcondEqual, Ldone_false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5547
      compareU64_and_branch(ary2, (intptr_t)0, Assembler::bcondEqual, Ldone_false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5548
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5549
      // Load the lengths of arrays.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5550
      z_llgf(odd_reg, Address(ary1, arrayOopDesc::length_offset_in_bytes()));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5551
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5552
      // Return false if the two arrays are not equal length.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5553
      z_c(odd_reg, Address(ary2, arrayOopDesc::length_offset_in_bytes()));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5554
      z_brne(Ldone_false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5555
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5556
      // string len in bytes (right operand)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5557
      if (!is_byte) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5558
        z_chi(odd_reg, 128);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5559
        z_sll(odd_reg, 1); // preserves flags
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5560
        z_brh(Lclcle);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5561
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5562
        compareU32_and_branch(odd_reg, (intptr_t)256, Assembler::bcondHigh, Lclcle);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5563
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5564
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5565
      z_llgfr(odd_reg, limit); // Need to zero-extend prior to using the value.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5566
      compareU32_and_branch(limit, (intptr_t)256, Assembler::bcondHigh, Lclcle);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5567
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5568
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5569
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5570
    // Use clc instruction for up to 256 bytes.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5571
    {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5572
      Register str1_reg = ary1,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5573
          str2_reg = ary2;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5574
      if (is_array_equ) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5575
        str1_reg = Z_R1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5576
        str2_reg = even_reg;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5577
        add2reg(str1_reg, base_offset, ary1); // string addr (left operand)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5578
        add2reg(str2_reg, base_offset, ary2); // string addr (right operand)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5579
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5580
      z_ahi(odd_reg, -1); // Clc uses decremented limit. Also compare result to 0.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5581
      z_brl(Ldone_true);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5582
      // Note: We could jump to the template if equal.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5583
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5584
      assert(VM_Version::has_ExecuteExtensions(), "unsupported hardware");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5585
      z_exrl(odd_reg, CLC_template);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5586
      z_bre(Ldone_true);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5587
      // fall through
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5588
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5589
      bind(Ldone_false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5590
      clear_reg(result);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5591
      z_bru(Ldone);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5592
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5593
      bind(CLC_template);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5594
      z_clc(0, 0, str1_reg, 0, str2_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5595
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5596
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5597
    // Use clcle instruction.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5598
    {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5599
      bind(Lclcle);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5600
      add2reg(even_reg, base_offset, ary2); // string addr (right operand)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5601
      add2reg(Z_R0, base_offset, ary1);     // string addr (left operand)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5602
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5603
      z_lgr(Z_R1, odd_reg); // string len in bytes (left operand)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5604
      if (is_byte) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5605
        compare_long_ext(Z_R0, even_reg, 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5606
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5607
        compare_long_uni(Z_R0, even_reg, 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5608
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5609
      z_lghi(result, 0); // Preserve flags.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5610
      z_brne(Ldone);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5611
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5612
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5613
  // fall through
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5614
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5615
  bind(Ldone_true);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5616
  z_lghi(result, 1); // All characters are equal.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5617
  bind(Ldone);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5618
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5619
  BLOCK_COMMENT("} array_equals");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5620
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5621
  return offset() - block_start;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5622
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5623
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5624
// kill: haycnt, needlecnt, odd_reg, even_reg; early clobber: result
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5625
unsigned int MacroAssembler::string_indexof(Register result, Register haystack, Register haycnt,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5626
                                            Register needle, Register needlecnt, int needlecntval,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5627
                                            Register odd_reg, Register even_reg, int ae) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5628
  int block_start = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5629
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5630
  // Ensure 0<needlecnt<=haycnt in ideal graph as prerequisite!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5631
  assert(ae != StrIntrinsicNode::LU, "Invalid encoding");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5632
  const int h_csize = (ae == StrIntrinsicNode::LL) ? 1 : 2;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5633
  const int n_csize = (ae == StrIntrinsicNode::UU) ? 2 : 1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5634
  Label L_needle1, L_Found, L_NotFound;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5635
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5636
  BLOCK_COMMENT("string_indexof {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5637
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5638
  if (needle == haystack) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5639
    z_lhi(result, 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5640
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5641
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5642
  // Load first character of needle (R0 used by search_string instructions).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5643
  if (n_csize == 2) { z_llgh(Z_R0, Address(needle)); } else { z_llgc(Z_R0, Address(needle)); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5644
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5645
  // Compute last haystack addr to use if no match gets found.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5646
  if (needlecnt != noreg) { // variable needlecnt
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5647
    z_ahi(needlecnt, -1); // Remaining characters after first one.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5648
    z_sr(haycnt, needlecnt); // Compute index succeeding last element to compare.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5649
    if (n_csize == 2) { z_sll(needlecnt, 1); } // In bytes.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5650
  } else { // constant needlecnt
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5651
    assert((needlecntval & 0x7fff) == needlecntval, "must be positive simm16 immediate");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5652
    // Compute index succeeding last element to compare.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5653
    if (needlecntval != 1) { z_ahi(haycnt, 1 - needlecntval); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5654
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5655
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5656
  z_llgfr(haycnt, haycnt); // Clear high half.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5657
  z_lgr(result, haystack); // Final result will be computed from needle start pointer.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5658
  if (h_csize == 2) { z_sll(haycnt, 1); } // Scale to number of bytes.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5659
  z_agr(haycnt, haystack); // Point to address succeeding last element (haystack+scale*(haycnt-needlecnt+1)).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5660
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5661
  if (h_csize != n_csize) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5662
    assert(ae == StrIntrinsicNode::UL, "Invalid encoding");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5663
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5664
    if (needlecnt != noreg || needlecntval != 1) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5665
      if (needlecnt != noreg) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5666
        compare32_and_branch(needlecnt, (intptr_t)0, Assembler::bcondEqual, L_needle1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5667
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5668
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5669
      // Main Loop: UL version (now we have at least 2 characters).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5670
      Label L_OuterLoop, L_InnerLoop, L_Skip;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5671
      bind(L_OuterLoop); // Search for 1st 2 characters.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5672
      z_lgr(Z_R1, haycnt);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5673
      MacroAssembler::search_string_uni(Z_R1, result);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5674
      z_brc(Assembler::bcondNotFound, L_NotFound);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5675
      z_lgr(result, Z_R1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5676
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5677
      z_lghi(Z_R1, n_csize);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5678
      z_lghi(even_reg, h_csize);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5679
      bind(L_InnerLoop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5680
      z_llgc(odd_reg, Address(needle, Z_R1));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5681
      z_ch(odd_reg, Address(result, even_reg));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5682
      z_brne(L_Skip);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5683
      if (needlecnt != noreg) { z_cr(Z_R1, needlecnt); } else { z_chi(Z_R1, needlecntval - 1); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5684
      z_brnl(L_Found);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5685
      z_aghi(Z_R1, n_csize);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5686
      z_aghi(even_reg, h_csize);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5687
      z_bru(L_InnerLoop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5688
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5689
      bind(L_Skip);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5690
      z_aghi(result, h_csize); // This is the new address we want to use for comparing.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5691
      z_bru(L_OuterLoop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5692
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5693
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5694
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5695
    const intptr_t needle_bytes = (n_csize == 2) ? ((needlecntval - 1) << 1) : (needlecntval - 1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5696
    Label L_clcle;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5697
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5698
    if (needlecnt != noreg || (needlecntval != 1 && needle_bytes <= 256)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5699
      if (needlecnt != noreg) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5700
        compare32_and_branch(needlecnt, 256, Assembler::bcondHigh, L_clcle);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5701
        z_ahi(needlecnt, -1); // remaining bytes -1 (for CLC)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5702
        z_brl(L_needle1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5703
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5704
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5705
      // Main Loop: clc version (now we have at least 2 characters).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5706
      Label L_OuterLoop, CLC_template;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5707
      bind(L_OuterLoop); // Search for 1st 2 characters.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5708
      z_lgr(Z_R1, haycnt);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5709
      if (h_csize == 1) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5710
        MacroAssembler::search_string(Z_R1, result);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5711
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5712
        MacroAssembler::search_string_uni(Z_R1, result);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5713
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5714
      z_brc(Assembler::bcondNotFound, L_NotFound);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5715
      z_lgr(result, Z_R1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5716
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5717
      if (needlecnt != noreg) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5718
        assert(VM_Version::has_ExecuteExtensions(), "unsupported hardware");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5719
        z_exrl(needlecnt, CLC_template);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5720
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5721
        z_clc(h_csize, needle_bytes -1, Z_R1, n_csize, needle);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5722
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5723
      z_bre(L_Found);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5724
      z_aghi(result, h_csize); // This is the new address we want to use for comparing.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5725
      z_bru(L_OuterLoop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5726
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5727
      if (needlecnt != noreg) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5728
        bind(CLC_template);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5729
        z_clc(h_csize, 0, Z_R1, n_csize, needle);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5730
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5731
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5732
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5733
    if (needlecnt != noreg || needle_bytes > 256) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5734
      bind(L_clcle);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5735
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5736
      // Main Loop: clcle version (now we have at least 256 bytes).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5737
      Label L_OuterLoop, CLC_template;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5738
      bind(L_OuterLoop); // Search for 1st 2 characters.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5739
      z_lgr(Z_R1, haycnt);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5740
      if (h_csize == 1) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5741
        MacroAssembler::search_string(Z_R1, result);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5742
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5743
        MacroAssembler::search_string_uni(Z_R1, result);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5744
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5745
      z_brc(Assembler::bcondNotFound, L_NotFound);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5746
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5747
      add2reg(Z_R0, n_csize, needle);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5748
      add2reg(even_reg, h_csize, Z_R1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5749
      z_lgr(result, Z_R1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5750
      if (needlecnt != noreg) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5751
        z_llgfr(Z_R1, needlecnt); // needle len in bytes (left operand)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5752
        z_llgfr(odd_reg, needlecnt);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5753
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5754
        load_const_optimized(Z_R1, needle_bytes);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5755
        if (Immediate::is_simm16(needle_bytes)) { z_lghi(odd_reg, needle_bytes); } else { z_lgr(odd_reg, Z_R1); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5756
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5757
      if (h_csize == 1) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5758
        compare_long_ext(Z_R0, even_reg, 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5759
      } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5760
        compare_long_uni(Z_R0, even_reg, 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5761
      }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5762
      z_bre(L_Found);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5763
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5764
      if (n_csize == 2) { z_llgh(Z_R0, Address(needle)); } else { z_llgc(Z_R0, Address(needle)); } // Reload.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5765
      z_aghi(result, h_csize); // This is the new address we want to use for comparing.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5766
      z_bru(L_OuterLoop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5767
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5768
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5769
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5770
  if (needlecnt != noreg || needlecntval == 1) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5771
    bind(L_needle1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5772
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5773
    // Single needle character version.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5774
    if (h_csize == 1) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5775
      MacroAssembler::search_string(haycnt, result);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5776
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5777
      MacroAssembler::search_string_uni(haycnt, result);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5778
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5779
    z_lgr(result, haycnt);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5780
    z_brc(Assembler::bcondFound, L_Found);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5781
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5782
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5783
  bind(L_NotFound);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5784
  add2reg(result, -1, haystack); // Return -1.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5785
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5786
  bind(L_Found); // Return index (or -1 in fallthrough case).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5787
  z_sgr(result, haystack);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5788
  if (h_csize == 2) { z_srag(result, result, exact_log2(sizeof(jchar))); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5789
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5790
  BLOCK_COMMENT("} string_indexof");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5791
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5792
  return offset() - block_start;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5793
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5794
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5795
// early clobber: result
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5796
unsigned int MacroAssembler::string_indexof_char(Register result, Register haystack, Register haycnt,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5797
                                                 Register needle, jchar needleChar, Register odd_reg, Register even_reg, bool is_byte) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5798
  int block_start = offset();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5799
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5800
  BLOCK_COMMENT("string_indexof_char {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5801
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5802
  if (needle == haystack) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5803
    z_lhi(result, 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5804
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5805
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5806
  Label Ldone;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5807
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5808
  z_llgfr(odd_reg, haycnt);  // Preset loop ctr/searchrange end.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5809
  if (needle == noreg) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5810
    load_const_optimized(Z_R0, (unsigned long)needleChar);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5811
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5812
    if (is_byte) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5813
      z_llgcr(Z_R0, needle); // First (and only) needle char.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5814
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5815
      z_llghr(Z_R0, needle); // First (and only) needle char.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5816
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5817
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5818
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5819
  if (!is_byte) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5820
    z_agr(odd_reg, odd_reg); // Calc #bytes to be processed with SRSTU.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5821
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5822
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5823
  z_lgr(even_reg, haystack); // haystack addr
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5824
  z_agr(odd_reg, haystack);  // First char after range end.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5825
  z_lghi(result, -1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5826
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5827
  if (is_byte) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5828
    MacroAssembler::search_string(odd_reg, even_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5829
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5830
    MacroAssembler::search_string_uni(odd_reg, even_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5831
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5832
  z_brc(Assembler::bcondNotFound, Ldone);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5833
  if (is_byte) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5834
    if (VM_Version::has_DistinctOpnds()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5835
      z_sgrk(result, odd_reg, haystack);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5836
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5837
      z_sgr(odd_reg, haystack);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5838
      z_lgr(result, odd_reg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5839
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5840
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5841
    z_slgr(odd_reg, haystack);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5842
    z_srlg(result, odd_reg, exact_log2(sizeof(jchar)));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5843
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5844
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5845
  bind(Ldone);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5846
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5847
  BLOCK_COMMENT("} string_indexof_char");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5848
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5849
  return offset() - block_start;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5850
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5851
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5852
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5853
//-------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5854
//   Constants (scalar and oop) in constant pool
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5855
//-------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5856
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5857
// Add a non-relocated constant to the CP.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5858
int MacroAssembler::store_const_in_toc(AddressLiteral& val) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5859
  long    value  = val.value();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5860
  address tocPos = long_constant(value);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5861
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5862
  if (tocPos != NULL) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5863
    int tocOffset = (int)(tocPos - code()->consts()->start());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5864
    return tocOffset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5865
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5866
  // Address_constant returned NULL, so no constant entry has been created.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5867
  // In that case, we return a "fatal" offset, just in case that subsequently
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5868
  // generated access code is executed.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5869
  return -1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5870
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5871
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5872
// Returns the TOC offset where the address is stored.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5873
// Add a relocated constant to the CP.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5874
int MacroAssembler::store_oop_in_toc(AddressLiteral& oop) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5875
  // Use RelocationHolder::none for the constant pool entry.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5876
  // Otherwise we will end up with a failing NativeCall::verify(x),
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5877
  // where x is the address of the constant pool entry.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5878
  address tocPos = address_constant((address)oop.value(), RelocationHolder::none);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5879
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5880
  if (tocPos != NULL) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5881
    int              tocOffset = (int)(tocPos - code()->consts()->start());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5882
    RelocationHolder rsp = oop.rspec();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5883
    Relocation      *rel = rsp.reloc();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5884
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5885
    // Store toc_offset in relocation, used by call_far_patchable.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5886
    if ((relocInfo::relocType)rel->type() == relocInfo::runtime_call_w_cp_type) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5887
      ((runtime_call_w_cp_Relocation *)(rel))->set_constant_pool_offset(tocOffset);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5888
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5889
    // Relocate at the load's pc.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5890
    relocate(rsp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5891
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5892
    return tocOffset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5893
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5894
  // Address_constant returned NULL, so no constant entry has been created
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5895
  // in that case, we return a "fatal" offset, just in case that subsequently
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5896
  // generated access code is executed.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5897
  return -1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5898
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5899
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5900
bool MacroAssembler::load_const_from_toc(Register dst, AddressLiteral& a, Register Rtoc) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5901
  int     tocOffset = store_const_in_toc(a);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5902
  if (tocOffset == -1) return false;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5903
  address tocPos    = tocOffset + code()->consts()->start();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5904
  assert((address)code()->consts()->start() != NULL, "Please add CP address");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5905
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5906
  load_long_pcrelative(dst, tocPos);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5907
  return true;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5908
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5909
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5910
bool MacroAssembler::load_oop_from_toc(Register dst, AddressLiteral& a, Register Rtoc) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5911
  int     tocOffset = store_oop_in_toc(a);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5912
  if (tocOffset == -1) return false;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5913
  address tocPos    = tocOffset + code()->consts()->start();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5914
  assert((address)code()->consts()->start() != NULL, "Please add CP address");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5915
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5916
  load_addr_pcrelative(dst, tocPos);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5917
  return true;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5918
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5919
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5920
// If the instruction sequence at the given pc is a load_const_from_toc
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5921
// sequence, return the value currently stored at the referenced position
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5922
// in the TOC.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5923
intptr_t MacroAssembler::get_const_from_toc(address pc) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5924
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5925
  assert(is_load_const_from_toc(pc), "must be load_const_from_pool");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5926
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5927
  long    offset  = get_load_const_from_toc_offset(pc);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5928
  address dataLoc = NULL;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5929
  if (is_load_const_from_toc_pcrelative(pc)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5930
    dataLoc = pc + offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5931
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5932
    CodeBlob* cb = CodeCache::find_blob_unsafe(pc);   // Else we get assertion if nmethod is zombie.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5933
    assert(cb && cb->is_nmethod(), "sanity");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5934
    nmethod* nm = (nmethod*)cb;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5935
    dataLoc = nm->ctable_begin() + offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5936
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5937
  return *(intptr_t *)dataLoc;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5938
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5939
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5940
// If the instruction sequence at the given pc is a load_const_from_toc
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5941
// sequence, copy the passed-in new_data value into the referenced
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5942
// position in the TOC.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5943
void MacroAssembler::set_const_in_toc(address pc, unsigned long new_data, CodeBlob *cb) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5944
  assert(is_load_const_from_toc(pc), "must be load_const_from_pool");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5945
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5946
  long    offset = MacroAssembler::get_load_const_from_toc_offset(pc);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5947
  address dataLoc = NULL;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5948
  if (is_load_const_from_toc_pcrelative(pc)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5949
    dataLoc = pc+offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5950
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5951
    nmethod* nm = CodeCache::find_nmethod(pc);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5952
    assert((cb == NULL) || (nm == (nmethod*)cb), "instruction address should be in CodeBlob");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5953
    dataLoc = nm->ctable_begin() + offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5954
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5955
  if (*(unsigned long *)dataLoc != new_data) { // Prevent cache invalidation: update only if necessary.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5956
    *(unsigned long *)dataLoc = new_data;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5957
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5958
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5959
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5960
// Dynamic TOC. Getter must only be called if "a" is a load_const_from_toc
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5961
// site. Verify by calling is_load_const_from_toc() before!!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5962
// Offset is +/- 2**32 -> use long.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5963
long MacroAssembler::get_load_const_from_toc_offset(address a) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5964
  assert(is_load_const_from_toc_pcrelative(a), "expected pc relative load");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5965
  //  expected code sequence:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5966
  //    z_lgrl(t, simm32);    len = 6
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5967
  unsigned long inst;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5968
  unsigned int  len = get_instruction(a, &inst);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5969
  return get_pcrel_offset(inst);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5970
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5971
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5972
//**********************************************************************************
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5973
//  inspection of generated instruction sequences for a particular pattern
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5974
//**********************************************************************************
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5975
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5976
bool MacroAssembler::is_load_const_from_toc_pcrelative(address a) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5977
#ifdef ASSERT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5978
  unsigned long inst;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5979
  unsigned int  len = get_instruction(a+2, &inst);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5980
  if ((len == 6) && is_load_pcrelative_long(a) && is_call_pcrelative_long(inst)) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5981
    const int range = 128;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5982
    Assembler::dump_code_range(tty, a, range, "instr(a) == z_lgrl && instr(a+2) == z_brasl");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5983
    VM_Version::z_SIGSEGV();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5984
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5985
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5986
  // expected code sequence:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5987
  //   z_lgrl(t, relAddr32);    len = 6
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5988
  //TODO: verify accessed data is in CP, if possible.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5989
  return is_load_pcrelative_long(a);  // TODO: might be too general. Currently, only lgrl is used.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5990
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5991
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5992
bool MacroAssembler::is_load_const_from_toc_call(address a) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5993
  return is_load_const_from_toc(a) && is_call_byregister(a + load_const_from_toc_size());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5994
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5995
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5996
bool MacroAssembler::is_load_const_call(address a) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5997
  return is_load_const(a) && is_call_byregister(a + load_const_size());
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5998
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  5999
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6000
//-------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6001
//   Emitters for some really CICS instructions
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6002
//-------------------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6003
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6004
void MacroAssembler::move_long_ext(Register dst, Register src, unsigned int pad) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6005
  assert(dst->encoding()%2==0, "must be an even/odd register pair");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6006
  assert(src->encoding()%2==0, "must be an even/odd register pair");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6007
  assert(pad<256, "must be a padding BYTE");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6008
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6009
  Label retry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6010
  bind(retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6011
  Assembler::z_mvcle(dst, src, pad);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6012
  Assembler::z_brc(Assembler::bcondOverflow /* CC==3 (iterate) */, retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6013
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6014
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6015
void MacroAssembler::compare_long_ext(Register left, Register right, unsigned int pad) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6016
  assert(left->encoding() % 2 == 0, "must be an even/odd register pair");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6017
  assert(right->encoding() % 2 == 0, "must be an even/odd register pair");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6018
  assert(pad<256, "must be a padding BYTE");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6019
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6020
  Label retry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6021
  bind(retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6022
  Assembler::z_clcle(left, right, pad, Z_R0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6023
  Assembler::z_brc(Assembler::bcondOverflow /* CC==3 (iterate) */, retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6024
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6025
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6026
void MacroAssembler::compare_long_uni(Register left, Register right, unsigned int pad) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6027
  assert(left->encoding() % 2 == 0, "must be an even/odd register pair");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6028
  assert(right->encoding() % 2 == 0, "must be an even/odd register pair");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6029
  assert(pad<=0xfff, "must be a padding HALFWORD");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6030
  assert(VM_Version::has_ETF2(), "instruction must be available");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6031
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6032
  Label retry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6033
  bind(retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6034
  Assembler::z_clclu(left, right, pad, Z_R0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6035
  Assembler::z_brc(Assembler::bcondOverflow /* CC==3 (iterate) */, retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6036
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6037
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6038
void MacroAssembler::search_string(Register end, Register start) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6039
  assert(end->encoding() != 0, "end address must not be in R0");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6040
  assert(start->encoding() != 0, "start address must not be in R0");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6041
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6042
  Label retry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6043
  bind(retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6044
  Assembler::z_srst(end, start);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6045
  Assembler::z_brc(Assembler::bcondOverflow /* CC==3 (iterate) */, retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6046
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6047
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6048
void MacroAssembler::search_string_uni(Register end, Register start) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6049
  assert(end->encoding() != 0, "end address must not be in R0");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6050
  assert(start->encoding() != 0, "start address must not be in R0");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6051
  assert(VM_Version::has_ETF3(), "instruction must be available");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6052
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6053
  Label retry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6054
  bind(retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6055
  Assembler::z_srstu(end, start);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6056
  Assembler::z_brc(Assembler::bcondOverflow /* CC==3 (iterate) */, retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6057
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6058
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6059
void MacroAssembler::kmac(Register srcBuff) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6060
  assert(srcBuff->encoding()     != 0, "src buffer address can't be in Z_R0");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6061
  assert(srcBuff->encoding() % 2 == 0, "src buffer/len must be an even/odd register pair");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6062
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6063
  Label retry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6064
  bind(retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6065
  Assembler::z_kmac(Z_R0, srcBuff);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6066
  Assembler::z_brc(Assembler::bcondOverflow /* CC==3 (iterate) */, retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6067
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6068
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6069
void MacroAssembler::kimd(Register srcBuff) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6070
  assert(srcBuff->encoding()     != 0, "src buffer address can't be in Z_R0");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6071
  assert(srcBuff->encoding() % 2 == 0, "src buffer/len must be an even/odd register pair");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6072
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6073
  Label retry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6074
  bind(retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6075
  Assembler::z_kimd(Z_R0, srcBuff);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6076
  Assembler::z_brc(Assembler::bcondOverflow /* CC==3 (iterate) */, retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6077
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6078
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6079
void MacroAssembler::klmd(Register srcBuff) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6080
  assert(srcBuff->encoding()     != 0, "src buffer address can't be in Z_R0");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6081
  assert(srcBuff->encoding() % 2 == 0, "src buffer/len must be an even/odd register pair");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6082
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6083
  Label retry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6084
  bind(retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6085
  Assembler::z_klmd(Z_R0, srcBuff);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6086
  Assembler::z_brc(Assembler::bcondOverflow /* CC==3 (iterate) */, retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6087
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6088
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6089
void MacroAssembler::km(Register dstBuff, Register srcBuff) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6090
  // DstBuff and srcBuff are allowed to be the same register (encryption in-place).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6091
  // DstBuff and srcBuff storage must not overlap destructively, and neither must overlap the parameter block.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6092
  assert(srcBuff->encoding()     != 0, "src buffer address can't be in Z_R0");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6093
  assert(dstBuff->encoding() % 2 == 0, "dst buffer addr must be an even register");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6094
  assert(srcBuff->encoding() % 2 == 0, "src buffer addr/len must be an even/odd register pair");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6095
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6096
  Label retry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6097
  bind(retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6098
  Assembler::z_km(dstBuff, srcBuff);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6099
  Assembler::z_brc(Assembler::bcondOverflow /* CC==3 (iterate) */, retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6100
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6101
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6102
void MacroAssembler::kmc(Register dstBuff, Register srcBuff) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6103
  // DstBuff and srcBuff are allowed to be the same register (encryption in-place).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6104
  // DstBuff and srcBuff storage must not overlap destructively, and neither must overlap the parameter block.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6105
  assert(srcBuff->encoding()     != 0, "src buffer address can't be in Z_R0");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6106
  assert(dstBuff->encoding() % 2 == 0, "dst buffer addr must be an even register");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6107
  assert(srcBuff->encoding() % 2 == 0, "src buffer addr/len must be an even/odd register pair");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6108
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6109
  Label retry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6110
  bind(retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6111
  Assembler::z_kmc(dstBuff, srcBuff);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6112
  Assembler::z_brc(Assembler::bcondOverflow /* CC==3 (iterate) */, retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6113
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6114
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6115
void MacroAssembler::cksm(Register crcBuff, Register srcBuff) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6116
  assert(srcBuff->encoding() % 2 == 0, "src buffer addr/len must be an even/odd register pair");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6117
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6118
  Label retry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6119
  bind(retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6120
  Assembler::z_cksm(crcBuff, srcBuff);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6121
  Assembler::z_brc(Assembler::bcondOverflow /* CC==3 (iterate) */, retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6122
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6123
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6124
void MacroAssembler::translate_oo(Register r1, Register r2, uint m3) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6125
  assert(r1->encoding() % 2 == 0, "dst addr/src len must be an even/odd register pair");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6126
  assert((m3 & 0b1110) == 0, "Unused mask bits must be zero");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6127
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6128
  Label retry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6129
  bind(retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6130
  Assembler::z_troo(r1, r2, m3);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6131
  Assembler::z_brc(Assembler::bcondOverflow /* CC==3 (iterate) */, retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6132
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6133
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6134
void MacroAssembler::translate_ot(Register r1, Register r2, uint m3) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6135
  assert(r1->encoding() % 2 == 0, "dst addr/src len must be an even/odd register pair");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6136
  assert((m3 & 0b1110) == 0, "Unused mask bits must be zero");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6137
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6138
  Label retry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6139
  bind(retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6140
  Assembler::z_trot(r1, r2, m3);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6141
  Assembler::z_brc(Assembler::bcondOverflow /* CC==3 (iterate) */, retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6142
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6143
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6144
void MacroAssembler::translate_to(Register r1, Register r2, uint m3) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6145
  assert(r1->encoding() % 2 == 0, "dst addr/src len must be an even/odd register pair");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6146
  assert((m3 & 0b1110) == 0, "Unused mask bits must be zero");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6147
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6148
  Label retry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6149
  bind(retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6150
  Assembler::z_trto(r1, r2, m3);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6151
  Assembler::z_brc(Assembler::bcondOverflow /* CC==3 (iterate) */, retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6152
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6153
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6154
void MacroAssembler::translate_tt(Register r1, Register r2, uint m3) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6155
  assert(r1->encoding() % 2 == 0, "dst addr/src len must be an even/odd register pair");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6156
  assert((m3 & 0b1110) == 0, "Unused mask bits must be zero");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6157
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6158
  Label retry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6159
  bind(retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6160
  Assembler::z_trtt(r1, r2, m3);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6161
  Assembler::z_brc(Assembler::bcondOverflow /* CC==3 (iterate) */, retry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6162
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6163
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6164
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6165
void MacroAssembler::generate_type_profiling(const Register Rdata,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6166
                                             const Register Rreceiver_klass,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6167
                                             const Register Rwanted_receiver_klass,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6168
                                             const Register Rmatching_row,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6169
                                             bool is_virtual_call) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6170
  const int row_size = in_bytes(ReceiverTypeData::receiver_offset(1)) -
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6171
                       in_bytes(ReceiverTypeData::receiver_offset(0));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6172
  const int num_rows = ReceiverTypeData::row_limit();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6173
  NearLabel found_free_row;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6174
  NearLabel do_increment;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6175
  NearLabel found_no_slot;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6176
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6177
  BLOCK_COMMENT("type profiling {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6178
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6179
  // search for:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6180
  //    a) The type given in Rwanted_receiver_klass.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6181
  //    b) The *first* empty row.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6182
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6183
  // First search for a) only, just running over b) with no regard.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6184
  // This is possible because
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6185
  //    wanted_receiver_class == receiver_class  &&  wanted_receiver_class == 0
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6186
  // is never true (receiver_class can't be zero).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6187
  for (int row_num = 0; row_num < num_rows; row_num++) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6188
    // Row_offset should be a well-behaved positive number. The generated code relies
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6189
    // on that wrt constant code size. Add2reg can handle all row_offset values, but
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6190
    // will have to vary generated code size.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6191
    int row_offset = in_bytes(ReceiverTypeData::receiver_offset(row_num));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6192
    assert(Displacement::is_shortDisp(row_offset), "Limitation of generated code");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6193
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6194
    // Is Rwanted_receiver_klass in this row?
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6195
    if (VM_Version::has_CompareBranch()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6196
      z_lg(Rwanted_receiver_klass, row_offset, Z_R0, Rdata);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6197
      // Rmatching_row = Rdata + row_offset;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6198
      add2reg(Rmatching_row, row_offset, Rdata);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6199
      // if (*row_recv == (intptr_t) receiver_klass) goto fill_existing_slot;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6200
      compare64_and_branch(Rwanted_receiver_klass, Rreceiver_klass, Assembler::bcondEqual, do_increment);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6201
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6202
      add2reg(Rmatching_row, row_offset, Rdata);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6203
      z_cg(Rreceiver_klass, row_offset, Z_R0, Rdata);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6204
      z_bre(do_increment);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6205
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6206
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6207
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6208
  // Now that we did not find a match, let's search for b).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6209
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6210
  // We could save the first calculation of Rmatching_row if we woud search for a) in reverse order.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6211
  // We would then end up here with Rmatching_row containing the value for row_num == 0.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6212
  // We would not see much benefit, if any at all, because the CPU can schedule
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6213
  // two instructions together with a branch anyway.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6214
  for (int row_num = 0; row_num < num_rows; row_num++) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6215
    int row_offset = in_bytes(ReceiverTypeData::receiver_offset(row_num));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6216
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6217
    // Has this row a zero receiver_klass, i.e. is it empty?
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6218
    if (VM_Version::has_CompareBranch()) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6219
      z_lg(Rwanted_receiver_klass, row_offset, Z_R0, Rdata);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6220
      // Rmatching_row = Rdata + row_offset
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6221
      add2reg(Rmatching_row, row_offset, Rdata);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6222
      // if (*row_recv == (intptr_t) 0) goto found_free_row
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6223
      compare64_and_branch(Rwanted_receiver_klass, (intptr_t)0, Assembler::bcondEqual, found_free_row);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6224
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6225
      add2reg(Rmatching_row, row_offset, Rdata);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6226
      load_and_test_long(Rwanted_receiver_klass, Address(Rdata, row_offset));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6227
      z_bre(found_free_row);  // zero -> Found a free row.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6228
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6229
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6230
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6231
  // No match, no empty row found.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6232
  // Increment total counter to indicate polymorphic case.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6233
  if (is_virtual_call) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6234
    add2mem_64(Address(Rdata, CounterData::count_offset()), 1, Rmatching_row);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6235
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6236
  z_bru(found_no_slot);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6237
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6238
  // Here we found an empty row, but we have not found Rwanted_receiver_klass.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6239
  // Rmatching_row holds the address to the first empty row.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6240
  bind(found_free_row);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6241
  // Store receiver_klass into empty slot.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6242
  z_stg(Rreceiver_klass, 0, Z_R0, Rmatching_row);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6243
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6244
  // Increment the counter of Rmatching_row.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6245
  bind(do_increment);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6246
  ByteSize counter_offset = ReceiverTypeData::receiver_count_offset(0) - ReceiverTypeData::receiver_offset(0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6247
  add2mem_64(Address(Rmatching_row, counter_offset), 1, Rdata);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6248
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6249
  bind(found_no_slot);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6250
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6251
  BLOCK_COMMENT("} type profiling");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6252
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6253
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6254
//---------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6255
// Helpers for Intrinsic Emitters
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6256
//---------------------------------------
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6257
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6258
/**
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6259
 * uint32_t crc;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6260
 * timesXtoThe32[crc & 0xFF] ^ (crc >> 8);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6261
 */
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6262
void MacroAssembler::fold_byte_crc32(Register crc, Register val, Register table, Register tmp) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6263
  assert_different_registers(crc, table, tmp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6264
  assert_different_registers(val, table);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6265
  if (crc == val) {      // Must rotate first to use the unmodified value.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6266
    rotate_then_insert(tmp, val, 56-2, 63-2, 2, true);  // Insert byte 7 of val, shifted left by 2, into byte 6..7 of tmp, clear the rest.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6267
    z_srl(crc, 8);       // Unsigned shift, clear leftmost 8 bits.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6268
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6269
    z_srl(crc, 8);       // Unsigned shift, clear leftmost 8 bits.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6270
    rotate_then_insert(tmp, val, 56-2, 63-2, 2, true);  // Insert byte 7 of val, shifted left by 2, into byte 6..7 of tmp, clear the rest.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6271
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6272
  z_x(crc, Address(table, tmp, 0));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6273
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6274
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6275
/**
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6276
 * uint32_t crc;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6277
 * timesXtoThe32[crc & 0xFF] ^ (crc >> 8);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6278
 */
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6279
void MacroAssembler::fold_8bit_crc32(Register crc, Register table, Register tmp) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6280
  fold_byte_crc32(crc, crc, table, tmp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6281
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6282
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6283
/**
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6284
 * Emits code to update CRC-32 with a byte value according to constants in table.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6285
 *
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6286
 * @param [in,out]crc Register containing the crc.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6287
 * @param [in]val     Register containing the byte to fold into the CRC.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6288
 * @param [in]table   Register containing the table of crc constants.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6289
 *
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6290
 * uint32_t crc;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6291
 * val = crc_table[(val ^ crc) & 0xFF];
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6292
 * crc = val ^ (crc >> 8);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6293
 */
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6294
void MacroAssembler::update_byte_crc32(Register crc, Register val, Register table) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6295
  z_xr(val, crc);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6296
  fold_byte_crc32(crc, val, table, val);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6297
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6298
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6299
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6300
/**
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6301
 * @param crc   register containing existing CRC (32-bit)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6302
 * @param buf   register pointing to input byte buffer (byte*)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6303
 * @param len   register containing number of bytes
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6304
 * @param table register pointing to CRC table
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6305
 */
46315
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6306
void MacroAssembler::update_byteLoop_crc32(Register crc, Register buf, Register len, Register table, Register data) {
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6307
  assert_different_registers(crc, buf, len, table, data);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6308
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6309
  Label L_mainLoop, L_done;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6310
  const int mainLoop_stepping = 1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6311
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6312
  // Process all bytes in a single-byte loop.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6313
  z_ltr(len, len);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6314
  z_brnh(L_done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6315
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6316
  bind(L_mainLoop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6317
    z_llgc(data, Address(buf, (intptr_t)0));// Current byte of input buffer (zero extended). Avoids garbage in upper half of register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6318
    add2reg(buf, mainLoop_stepping);        // Advance buffer position.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6319
    update_byte_crc32(crc, data, table);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6320
    z_brct(len, L_mainLoop);                // Iterate.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6321
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6322
  bind(L_done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6323
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6324
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6325
/**
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6326
 * Emits code to update CRC-32 with a 4-byte value according to constants in table.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6327
 * Implementation according to jdk/src/share/native/java/util/zip/zlib-1.2.8/crc32.c.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6328
 *
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6329
 */
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6330
void MacroAssembler::update_1word_crc32(Register crc, Register buf, Register table, int bufDisp, int bufInc,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6331
                                        Register t0,  Register t1,  Register t2,    Register t3) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6332
  // This is what we implement (the DOBIG4 part):
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6333
  //
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6334
  // #define DOBIG4 c ^= *++buf4; \
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6335
  //         c = crc_table[4][c & 0xff] ^ crc_table[5][(c >> 8) & 0xff] ^ \
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6336
  //             crc_table[6][(c >> 16) & 0xff] ^ crc_table[7][c >> 24]
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6337
  // #define DOBIG32 DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4
46315
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6338
  // Pre-calculate (constant) column offsets, use columns 4..7 for big-endian.
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6339
  const int ix0 = 4*(4*CRC32_COLUMN_SIZE);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6340
  const int ix1 = 5*(4*CRC32_COLUMN_SIZE);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6341
  const int ix2 = 6*(4*CRC32_COLUMN_SIZE);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6342
  const int ix3 = 7*(4*CRC32_COLUMN_SIZE);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6343
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6344
  // XOR crc with next four bytes of buffer.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6345
  lgr_if_needed(t0, crc);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6346
  z_x(t0, Address(buf, bufDisp));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6347
  if (bufInc != 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6348
    add2reg(buf, bufInc);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6349
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6350
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6351
  // Chop crc into 4 single-byte pieces, shifted left 2 bits, to form the table indices.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6352
  rotate_then_insert(t3, t0, 56-2, 63-2, 2,    true);  // ((c >>  0) & 0xff) << 2
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6353
  rotate_then_insert(t2, t0, 56-2, 63-2, 2-8,  true);  // ((c >>  8) & 0xff) << 2
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6354
  rotate_then_insert(t1, t0, 56-2, 63-2, 2-16, true);  // ((c >> 16) & 0xff) << 2
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6355
  rotate_then_insert(t0, t0, 56-2, 63-2, 2-24, true);  // ((c >> 24) & 0xff) << 2
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6356
46315
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6357
  // XOR indexed table values to calculate updated crc.
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6358
  z_ly(t2, Address(table, t2, (intptr_t)ix1));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6359
  z_ly(t0, Address(table, t0, (intptr_t)ix3));
46315
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6360
  z_xy(t2, Address(table, t3, (intptr_t)ix0));
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6361
  z_xy(t0, Address(table, t1, (intptr_t)ix2));
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6362
  z_xr(t0, t2);           // Now t0 contains the updated CRC value.
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6363
  lgr_if_needed(crc, t0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6364
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6365
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6366
/**
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6367
 * @param crc   register containing existing CRC (32-bit)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6368
 * @param buf   register pointing to input byte buffer (byte*)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6369
 * @param len   register containing number of bytes
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6370
 * @param table register pointing to CRC table
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6371
 *
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6372
 * uses Z_R10..Z_R13 as work register. Must be saved/restored by caller!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6373
 */
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6374
void MacroAssembler::kernel_crc32_2word(Register crc, Register buf, Register len, Register table,
46315
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6375
                                        Register t0,  Register t1,  Register t2,  Register t3,
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6376
                                        bool invertCRC) {
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6377
  assert_different_registers(crc, buf, len, table);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6378
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6379
  Label L_mainLoop, L_tail;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6380
  Register  data = t0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6381
  Register  ctr  = Z_R0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6382
  const int mainLoop_stepping = 8;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6383
  const int tailLoop_stepping = 1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6384
  const int log_stepping      = exact_log2(mainLoop_stepping);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6385
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6386
  // Don't test for len <= 0 here. This pathological case should not occur anyway.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6387
  // Optimizing for it by adding a test and a branch seems to be a waste of CPU cycles.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6388
  // The situation itself is detected and handled correctly by the conditional branches
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6389
  // following aghi(len, -stepping) and aghi(len, +stepping).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6390
46315
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6391
  if (invertCRC) {
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6392
    not_(crc, noreg, false);           // 1s complement of crc
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6393
  }
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6394
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6395
#if 0
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6396
  {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6397
    // Pre-mainLoop alignment did not show any positive effect on performance.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6398
    // We leave the code in for reference. Maybe the vector instructions in z13 depend on alignment.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6399
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6400
    z_cghi(len, mainLoop_stepping);    // Alignment is useless for short data streams.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6401
    z_brnh(L_tail);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6402
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6403
    // Align buf to word (4-byte) boundary.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6404
    z_lcr(ctr, buf);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6405
    rotate_then_insert(ctr, ctr, 62, 63, 0, true); // TODO: should set cc
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6406
    z_sgfr(len, ctr);                  // Remaining len after alignment.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6407
46315
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6408
    update_byteLoop_crc32(crc, buf, ctr, table, data);
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6409
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6410
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6411
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6412
  // Check for short (<mainLoop_stepping bytes) buffer.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6413
  z_srag(ctr, len, log_stepping);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6414
  z_brnh(L_tail);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6415
46315
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6416
  z_lrvr(crc, crc);          // Revert byte order because we are dealing with big-endian data.
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6417
  rotate_then_insert(len, len, 64-log_stepping, 63, 0, true); // #bytes for tailLoop
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6418
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6419
  BIND(L_mainLoop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6420
    update_1word_crc32(crc, buf, table, 0, 0, crc, t1, t2, t3);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6421
    update_1word_crc32(crc, buf, table, 4, mainLoop_stepping, crc, t1, t2, t3);
46315
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6422
    z_brct(ctr, L_mainLoop); // Iterate.
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6423
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6424
  z_lrvr(crc, crc);          // Revert byte order back to original.
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6425
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6426
  // Process last few (<8) bytes of buffer.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6427
  BIND(L_tail);
46315
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6428
  update_byteLoop_crc32(crc, buf, len, table, data);
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6429
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6430
  if (invertCRC) {
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6431
    not_(crc, noreg, false);           // 1s complement of crc
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6432
  }
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6433
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6434
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6435
/**
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6436
 * @param crc   register containing existing CRC (32-bit)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6437
 * @param buf   register pointing to input byte buffer (byte*)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6438
 * @param len   register containing number of bytes
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6439
 * @param table register pointing to CRC table
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6440
 *
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6441
 * uses Z_R10..Z_R13 as work register. Must be saved/restored by caller!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6442
 */
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6443
void MacroAssembler::kernel_crc32_1word(Register crc, Register buf, Register len, Register table,
46315
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6444
                                        Register t0,  Register t1,  Register t2,  Register t3,
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6445
                                        bool invertCRC) {
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6446
  assert_different_registers(crc, buf, len, table);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6447
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6448
  Label L_mainLoop, L_tail;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6449
  Register  data = t0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6450
  Register  ctr  = Z_R0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6451
  const int mainLoop_stepping = 4;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6452
  const int log_stepping      = exact_log2(mainLoop_stepping);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6453
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6454
  // Don't test for len <= 0 here. This pathological case should not occur anyway.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6455
  // Optimizing for it by adding a test and a branch seems to be a waste of CPU cycles.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6456
  // The situation itself is detected and handled correctly by the conditional branches
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6457
  // following aghi(len, -stepping) and aghi(len, +stepping).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6458
46315
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6459
  if (invertCRC) {
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6460
    not_(crc, noreg, false);           // 1s complement of crc
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6461
  }
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6462
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6463
  // Check for short (<4 bytes) buffer.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6464
  z_srag(ctr, len, log_stepping);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6465
  z_brnh(L_tail);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6466
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6467
  z_lrvr(crc, crc);          // Revert byte order because we are dealing with big-endian data.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6468
  rotate_then_insert(len, len, 64-log_stepping, 63, 0, true); // #bytes for tailLoop
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6469
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6470
  BIND(L_mainLoop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6471
    update_1word_crc32(crc, buf, table, 0, mainLoop_stepping, crc, t1, t2, t3);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6472
    z_brct(ctr, L_mainLoop); // Iterate.
46315
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6473
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6474
  z_lrvr(crc, crc);          // Revert byte order back to original.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6475
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6476
  // Process last few (<8) bytes of buffer.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6477
  BIND(L_tail);
46315
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6478
  update_byteLoop_crc32(crc, buf, len, table, data);
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6479
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6480
  if (invertCRC) {
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6481
    not_(crc, noreg, false);           // 1s complement of crc
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6482
  }
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6483
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6484
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6485
/**
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6486
 * @param crc   register containing existing CRC (32-bit)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6487
 * @param buf   register pointing to input byte buffer (byte*)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6488
 * @param len   register containing number of bytes
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6489
 * @param table register pointing to CRC table
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6490
 */
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6491
void MacroAssembler::kernel_crc32_1byte(Register crc, Register buf, Register len, Register table,
46315
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6492
                                        Register t0,  Register t1,  Register t2,  Register t3,
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6493
                                        bool invertCRC) {
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6494
  assert_different_registers(crc, buf, len, table);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6495
  Register data = t0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6496
46315
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6497
  if (invertCRC) {
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6498
    not_(crc, noreg, false);           // 1s complement of crc
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6499
  }
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6500
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6501
  update_byteLoop_crc32(crc, buf, len, table, data);
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6502
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6503
  if (invertCRC) {
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6504
    not_(crc, noreg, false);           // 1s complement of crc
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6505
  }
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6506
}
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6507
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6508
void MacroAssembler::kernel_crc32_singleByte(Register crc, Register buf, Register len, Register table, Register tmp,
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6509
                                             bool invertCRC) {
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6510
  assert_different_registers(crc, buf, len, table, tmp);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6511
46315
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6512
  if (invertCRC) {
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6513
    not_(crc, noreg, false);           // 1s complement of crc
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6514
  }
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6515
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6516
  z_llgc(tmp, Address(buf, (intptr_t)0));  // Current byte of input buffer (zero extended). Avoids garbage in upper half of register.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6517
  update_byte_crc32(crc, tmp, table);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6518
46315
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6519
  if (invertCRC) {
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6520
    not_(crc, noreg, false);           // 1s complement of crc
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6521
  }
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6522
}
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6523
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6524
void MacroAssembler::kernel_crc32_singleByteReg(Register crc, Register val, Register table,
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6525
                                                bool invertCRC) {
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6526
  assert_different_registers(crc, val, table);
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6527
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6528
  if (invertCRC) {
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6529
    not_(crc, noreg, false);           // 1s complement of crc
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6530
  }
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6531
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6532
  update_byte_crc32(crc, val, table);
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6533
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6534
  if (invertCRC) {
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6535
    not_(crc, noreg, false);           // 1s complement of crc
a796c32af782 8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents: 46289
diff changeset
  6536
  }
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6537
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6538
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6539
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6540
// Code for BigInteger::multiplyToLen() intrinsic.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6541
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6542
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6543
// dest_lo += src1 + src2
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6544
// dest_hi += carry1 + carry2
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6545
// Z_R7 is destroyed !
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6546
void MacroAssembler::add2_with_carry(Register dest_hi, Register dest_lo,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6547
                                     Register src1, Register src2) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6548
  clear_reg(Z_R7);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6549
  z_algr(dest_lo, src1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6550
  z_alcgr(dest_hi, Z_R7);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6551
  z_algr(dest_lo, src2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6552
  z_alcgr(dest_hi, Z_R7);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6553
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6554
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6555
// Multiply 64 bit by 64 bit first loop.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6556
void MacroAssembler::multiply_64_x_64_loop(Register x, Register xstart,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6557
                                           Register x_xstart,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6558
                                           Register y, Register y_idx,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6559
                                           Register z,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6560
                                           Register carry,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6561
                                           Register product,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6562
                                           Register idx, Register kdx) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6563
  // jlong carry, x[], y[], z[];
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6564
  // for (int idx=ystart, kdx=ystart+1+xstart; idx >= 0; idx--, kdx--) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6565
  //   huge_128 product = y[idx] * x[xstart] + carry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6566
  //   z[kdx] = (jlong)product;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6567
  //   carry  = (jlong)(product >>> 64);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6568
  // }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6569
  // z[xstart] = carry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6570
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6571
  Label L_first_loop, L_first_loop_exit;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6572
  Label L_one_x, L_one_y, L_multiply;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6573
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6574
  z_aghi(xstart, -1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6575
  z_brl(L_one_x);   // Special case: length of x is 1.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6576
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6577
  // Load next two integers of x.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6578
  z_sllg(Z_R1_scratch, xstart, LogBytesPerInt);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6579
  mem2reg_opt(x_xstart, Address(x, Z_R1_scratch, 0));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6580
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6581
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6582
  bind(L_first_loop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6583
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6584
  z_aghi(idx, -1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6585
  z_brl(L_first_loop_exit);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6586
  z_aghi(idx, -1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6587
  z_brl(L_one_y);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6588
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6589
  // Load next two integers of y.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6590
  z_sllg(Z_R1_scratch, idx, LogBytesPerInt);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6591
  mem2reg_opt(y_idx, Address(y, Z_R1_scratch, 0));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6592
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6593
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6594
  bind(L_multiply);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6595
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6596
  Register multiplicand = product->successor();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6597
  Register product_low = multiplicand;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6598
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6599
  lgr_if_needed(multiplicand, x_xstart);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6600
  z_mlgr(product, y_idx);     // multiplicand * y_idx -> product::multiplicand
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6601
  clear_reg(Z_R7);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6602
  z_algr(product_low, carry); // Add carry to result.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6603
  z_alcgr(product, Z_R7);     // Add carry of the last addition.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6604
  add2reg(kdx, -2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6605
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6606
  // Store result.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6607
  z_sllg(Z_R7, kdx, LogBytesPerInt);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6608
  reg2mem_opt(product_low, Address(z, Z_R7, 0));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6609
  lgr_if_needed(carry, product);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6610
  z_bru(L_first_loop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6611
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6612
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6613
  bind(L_one_y); // Load one 32 bit portion of y as (0,value).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6614
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6615
  clear_reg(y_idx);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6616
  mem2reg_opt(y_idx, Address(y, (intptr_t) 0), false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6617
  z_bru(L_multiply);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6618
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6619
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6620
  bind(L_one_x); // Load one 32 bit portion of x as (0,value).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6621
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6622
  clear_reg(x_xstart);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6623
  mem2reg_opt(x_xstart, Address(x, (intptr_t) 0), false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6624
  z_bru(L_first_loop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6625
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6626
  bind(L_first_loop_exit);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6627
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6628
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6629
// Multiply 64 bit by 64 bit and add 128 bit.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6630
void MacroAssembler::multiply_add_128_x_128(Register x_xstart, Register y,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6631
                                            Register z,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6632
                                            Register yz_idx, Register idx,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6633
                                            Register carry, Register product,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6634
                                            int offset) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6635
  // huge_128 product = (y[idx] * x_xstart) + z[kdx] + carry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6636
  // z[kdx] = (jlong)product;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6637
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6638
  Register multiplicand = product->successor();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6639
  Register product_low = multiplicand;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6640
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6641
  z_sllg(Z_R7, idx, LogBytesPerInt);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6642
  mem2reg_opt(yz_idx, Address(y, Z_R7, offset));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6643
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6644
  lgr_if_needed(multiplicand, x_xstart);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6645
  z_mlgr(product, yz_idx); // multiplicand * yz_idx -> product::multiplicand
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6646
  mem2reg_opt(yz_idx, Address(z, Z_R7, offset));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6647
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6648
  add2_with_carry(product, product_low, carry, yz_idx);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6649
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6650
  z_sllg(Z_R7, idx, LogBytesPerInt);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6651
  reg2mem_opt(product_low, Address(z, Z_R7, offset));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6652
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6653
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6654
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6655
// Multiply 128 bit by 128 bit. Unrolled inner loop.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6656
void MacroAssembler::multiply_128_x_128_loop(Register x_xstart,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6657
                                             Register y, Register z,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6658
                                             Register yz_idx, Register idx,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6659
                                             Register jdx,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6660
                                             Register carry, Register product,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6661
                                             Register carry2) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6662
  // jlong carry, x[], y[], z[];
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6663
  // int kdx = ystart+1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6664
  // for (int idx=ystart-2; idx >= 0; idx -= 2) { // Third loop
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6665
  //   huge_128 product = (y[idx+1] * x_xstart) + z[kdx+idx+1] + carry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6666
  //   z[kdx+idx+1] = (jlong)product;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6667
  //   jlong carry2 = (jlong)(product >>> 64);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6668
  //   product = (y[idx] * x_xstart) + z[kdx+idx] + carry2;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6669
  //   z[kdx+idx] = (jlong)product;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6670
  //   carry = (jlong)(product >>> 64);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6671
  // }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6672
  // idx += 2;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6673
  // if (idx > 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6674
  //   product = (y[idx] * x_xstart) + z[kdx+idx] + carry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6675
  //   z[kdx+idx] = (jlong)product;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6676
  //   carry = (jlong)(product >>> 64);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6677
  // }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6678
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6679
  Label L_third_loop, L_third_loop_exit, L_post_third_loop_done;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6680
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6681
  // scale the index
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6682
  lgr_if_needed(jdx, idx);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6683
  and_imm(jdx, 0xfffffffffffffffcL);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6684
  rshift(jdx, 2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6685
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6686
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6687
  bind(L_third_loop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6688
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6689
  z_aghi(jdx, -1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6690
  z_brl(L_third_loop_exit);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6691
  add2reg(idx, -4);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6692
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6693
  multiply_add_128_x_128(x_xstart, y, z, yz_idx, idx, carry, product, 8);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6694
  lgr_if_needed(carry2, product);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6695
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6696
  multiply_add_128_x_128(x_xstart, y, z, yz_idx, idx, carry2, product, 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6697
  lgr_if_needed(carry, product);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6698
  z_bru(L_third_loop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6699
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6700
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6701
  bind(L_third_loop_exit);  // Handle any left-over operand parts.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6702
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6703
  and_imm(idx, 0x3);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6704
  z_brz(L_post_third_loop_done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6705
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6706
  Label L_check_1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6707
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6708
  z_aghi(idx, -2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6709
  z_brl(L_check_1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6710
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6711
  multiply_add_128_x_128(x_xstart, y, z, yz_idx, idx, carry, product, 0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6712
  lgr_if_needed(carry, product);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6713
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6714
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6715
  bind(L_check_1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6716
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6717
  add2reg(idx, 0x2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6718
  and_imm(idx, 0x1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6719
  z_aghi(idx, -1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6720
  z_brl(L_post_third_loop_done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6721
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6722
  Register   multiplicand = product->successor();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6723
  Register   product_low = multiplicand;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6724
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6725
  z_sllg(Z_R7, idx, LogBytesPerInt);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6726
  clear_reg(yz_idx);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6727
  mem2reg_opt(yz_idx, Address(y, Z_R7, 0), false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6728
  lgr_if_needed(multiplicand, x_xstart);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6729
  z_mlgr(product, yz_idx); // multiplicand * yz_idx -> product::multiplicand
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6730
  clear_reg(yz_idx);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6731
  mem2reg_opt(yz_idx, Address(z, Z_R7, 0), false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6732
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6733
  add2_with_carry(product, product_low, yz_idx, carry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6734
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6735
  z_sllg(Z_R7, idx, LogBytesPerInt);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6736
  reg2mem_opt(product_low, Address(z, Z_R7, 0), false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6737
  rshift(product_low, 32);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6738
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6739
  lshift(product, 32);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6740
  z_ogr(product_low, product);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6741
  lgr_if_needed(carry, product_low);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6742
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6743
  bind(L_post_third_loop_done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6744
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6745
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6746
void MacroAssembler::multiply_to_len(Register x, Register xlen,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6747
                                     Register y, Register ylen,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6748
                                     Register z,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6749
                                     Register tmp1, Register tmp2,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6750
                                     Register tmp3, Register tmp4,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6751
                                     Register tmp5) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6752
  ShortBranchVerifier sbv(this);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6753
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6754
  assert_different_registers(x, xlen, y, ylen, z,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6755
                             tmp1, tmp2, tmp3, tmp4, tmp5, Z_R1_scratch, Z_R7);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6756
  assert_different_registers(x, xlen, y, ylen, z,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6757
                             tmp1, tmp2, tmp3, tmp4, tmp5, Z_R8);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6758
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6759
  z_stmg(Z_R7, Z_R13, _z_abi(gpr7), Z_SP);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6760
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6761
  // In openJdk, we store the argument as 32-bit value to slot.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6762
  Address zlen(Z_SP, _z_abi(remaining_cargs));  // Int in long on big endian.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6763
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6764
  const Register idx = tmp1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6765
  const Register kdx = tmp2;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6766
  const Register xstart = tmp3;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6767
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6768
  const Register y_idx = tmp4;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6769
  const Register carry = tmp5;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6770
  const Register product  = Z_R0_scratch;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6771
  const Register x_xstart = Z_R8;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6772
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6773
  // First Loop.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6774
  //
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6775
  //   final static long LONG_MASK = 0xffffffffL;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6776
  //   int xstart = xlen - 1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6777
  //   int ystart = ylen - 1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6778
  //   long carry = 0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6779
  //   for (int idx=ystart, kdx=ystart+1+xstart; idx >= 0; idx-, kdx--) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6780
  //     long product = (y[idx] & LONG_MASK) * (x[xstart] & LONG_MASK) + carry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6781
  //     z[kdx] = (int)product;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6782
  //     carry = product >>> 32;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6783
  //   }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6784
  //   z[xstart] = (int)carry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6785
  //
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6786
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6787
  lgr_if_needed(idx, ylen);  // idx = ylen
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6788
  z_llgf(kdx, zlen);         // C2 does not respect int to long conversion for stub calls, thus load zero-extended.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6789
  clear_reg(carry);          // carry = 0
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6790
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6791
  Label L_done;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6792
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6793
  lgr_if_needed(xstart, xlen);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6794
  z_aghi(xstart, -1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6795
  z_brl(L_done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6796
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6797
  multiply_64_x_64_loop(x, xstart, x_xstart, y, y_idx, z, carry, product, idx, kdx);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6798
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6799
  NearLabel L_second_loop;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6800
  compare64_and_branch(kdx, RegisterOrConstant((intptr_t) 0), bcondEqual, L_second_loop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6801
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6802
  NearLabel L_carry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6803
  z_aghi(kdx, -1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6804
  z_brz(L_carry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6805
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6806
  // Store lower 32 bits of carry.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6807
  z_sllg(Z_R1_scratch, kdx, LogBytesPerInt);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6808
  reg2mem_opt(carry, Address(z, Z_R1_scratch, 0), false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6809
  rshift(carry, 32);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6810
  z_aghi(kdx, -1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6811
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6812
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6813
  bind(L_carry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6814
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6815
  // Store upper 32 bits of carry.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6816
  z_sllg(Z_R1_scratch, kdx, LogBytesPerInt);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6817
  reg2mem_opt(carry, Address(z, Z_R1_scratch, 0), false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6818
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6819
  // Second and third (nested) loops.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6820
  //
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6821
  // for (int i = xstart-1; i >= 0; i--) { // Second loop
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6822
  //   carry = 0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6823
  //   for (int jdx=ystart, k=ystart+1+i; jdx >= 0; jdx--, k--) { // Third loop
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6824
  //     long product = (y[jdx] & LONG_MASK) * (x[i] & LONG_MASK) +
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6825
  //                    (z[k] & LONG_MASK) + carry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6826
  //     z[k] = (int)product;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6827
  //     carry = product >>> 32;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6828
  //   }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6829
  //   z[i] = (int)carry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6830
  // }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6831
  //
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6832
  // i = xlen, j = tmp1, k = tmp2, carry = tmp5, x[i] = rdx
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6833
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6834
  const Register jdx = tmp1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6835
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6836
  bind(L_second_loop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6837
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6838
  clear_reg(carry);           // carry = 0;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6839
  lgr_if_needed(jdx, ylen);   // j = ystart+1
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6840
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6841
  z_aghi(xstart, -1);         // i = xstart-1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6842
  z_brl(L_done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6843
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6844
  // Use free slots in the current stackframe instead of push/pop.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6845
  Address zsave(Z_SP, _z_abi(carg_1));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6846
  reg2mem_opt(z, zsave);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6847
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6848
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6849
  Label L_last_x;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6850
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6851
  z_sllg(Z_R1_scratch, xstart, LogBytesPerInt);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6852
  load_address(z, Address(z, Z_R1_scratch, 4)); // z = z + k - j
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6853
  z_aghi(xstart, -1);                           // i = xstart-1;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6854
  z_brl(L_last_x);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6855
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6856
  z_sllg(Z_R1_scratch, xstart, LogBytesPerInt);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6857
  mem2reg_opt(x_xstart, Address(x, Z_R1_scratch, 0));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6858
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6859
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6860
  Label L_third_loop_prologue;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6861
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6862
  bind(L_third_loop_prologue);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6863
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6864
  Address xsave(Z_SP, _z_abi(carg_2));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6865
  Address xlensave(Z_SP, _z_abi(carg_3));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6866
  Address ylensave(Z_SP, _z_abi(carg_4));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6867
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6868
  reg2mem_opt(x, xsave);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6869
  reg2mem_opt(xstart, xlensave);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6870
  reg2mem_opt(ylen, ylensave);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6871
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6872
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6873
  multiply_128_x_128_loop(x_xstart, y, z, y_idx, jdx, ylen, carry, product, x);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6874
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6875
  mem2reg_opt(z, zsave);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6876
  mem2reg_opt(x, xsave);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6877
  mem2reg_opt(xlen, xlensave);   // This is the decrement of the loop counter!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6878
  mem2reg_opt(ylen, ylensave);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6879
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6880
  add2reg(tmp3, 1, xlen);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6881
  z_sllg(Z_R1_scratch, tmp3, LogBytesPerInt);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6882
  reg2mem_opt(carry, Address(z, Z_R1_scratch, 0), false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6883
  z_aghi(tmp3, -1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6884
  z_brl(L_done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6885
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6886
  rshift(carry, 32);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6887
  z_sllg(Z_R1_scratch, tmp3, LogBytesPerInt);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6888
  reg2mem_opt(carry, Address(z, Z_R1_scratch, 0), false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6889
  z_bru(L_second_loop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6890
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6891
  // Next infrequent code is moved outside loops.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6892
  bind(L_last_x);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6893
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6894
  clear_reg(x_xstart);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6895
  mem2reg_opt(x_xstart, Address(x, (intptr_t) 0), false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6896
  z_bru(L_third_loop_prologue);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6897
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6898
  bind(L_done);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6899
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6900
  z_lmg(Z_R7, Z_R13, _z_abi(gpr7), Z_SP);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6901
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6902
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6903
#ifndef PRODUCT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6904
// Assert if CC indicates "not equal" (check_equal==true) or "equal" (check_equal==false).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6905
void MacroAssembler::asm_assert(bool check_equal, const char *msg, int id) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6906
  Label ok;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6907
  if (check_equal) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6908
    z_bre(ok);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6909
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6910
    z_brne(ok);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6911
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6912
  stop(msg, id);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6913
  bind(ok);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6914
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6915
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6916
// Assert if CC indicates "low".
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6917
void MacroAssembler::asm_assert_low(const char *msg, int id) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6918
  Label ok;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6919
  z_brnl(ok);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6920
  stop(msg, id);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6921
  bind(ok);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6922
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6923
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6924
// Assert if CC indicates "high".
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6925
void MacroAssembler::asm_assert_high(const char *msg, int id) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6926
  Label ok;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6927
  z_brnh(ok);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6928
  stop(msg, id);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6929
  bind(ok);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6930
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6931
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6932
// Assert if CC indicates "not equal" (check_equal==true) or "equal" (check_equal==false)
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6933
// generate non-relocatable code.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6934
void MacroAssembler::asm_assert_static(bool check_equal, const char *msg, int id) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6935
  Label ok;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6936
  if (check_equal) { z_bre(ok); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6937
  else             { z_brne(ok); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6938
  stop_static(msg, id);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6939
  bind(ok);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6940
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6941
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6942
void MacroAssembler::asm_assert_mems_zero(bool check_equal, bool allow_relocation, int size, int64_t mem_offset,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6943
                                          Register mem_base, const char* msg, int id) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6944
  switch (size) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6945
    case 4:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6946
      load_and_test_int(Z_R0, Address(mem_base, mem_offset));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6947
      break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6948
    case 8:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6949
      load_and_test_long(Z_R0,  Address(mem_base, mem_offset));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6950
      break;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6951
    default:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6952
      ShouldNotReachHere();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6953
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6954
  if (allow_relocation) { asm_assert(check_equal, msg, id); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6955
  else                  { asm_assert_static(check_equal, msg, id); }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6956
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6957
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6958
// Check the condition
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6959
//   expected_size == FP - SP
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6960
// after transformation:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6961
//   expected_size - FP + SP == 0
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6962
// Destroys Register expected_size if no tmp register is passed.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6963
void MacroAssembler::asm_assert_frame_size(Register expected_size, Register tmp, const char* msg, int id) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6964
  if (tmp == noreg) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6965
    tmp = expected_size;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6966
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6967
    if (tmp != expected_size) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6968
      z_lgr(tmp, expected_size);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6969
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6970
    z_algr(tmp, Z_SP);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6971
    z_slg(tmp, 0, Z_R0, Z_SP);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6972
    asm_assert_eq(msg, id);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6973
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6974
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6975
#endif // !PRODUCT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6976
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6977
void MacroAssembler::verify_thread() {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6978
  if (VerifyThread) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6979
    unimplemented("", 117);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6980
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6981
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6982
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6983
// Plausibility check for oops.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6984
void MacroAssembler::verify_oop(Register oop, const char* msg) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6985
  if (!VerifyOops) return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6986
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6987
  BLOCK_COMMENT("verify_oop {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6988
  Register tmp = Z_R0;
46726
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  6989
  unsigned int nbytes_save = 5*BytesPerWord;
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6990
  address entry = StubRoutines::verify_oop_subroutine_entry_address();
46726
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  6991
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6992
  save_return_pc();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6993
  push_frame_abi160(nbytes_save);
46726
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  6994
  z_stmg(Z_R1, Z_R5, frame::z_abi_160_size, Z_SP);
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6995
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6996
  z_lgr(Z_ARG2, oop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6997
  load_const(Z_ARG1, (address) msg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6998
  load_const(Z_R1, entry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  6999
  z_lg(Z_R1, 0, Z_R1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7000
  call_c(Z_R1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7001
46726
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  7002
  z_lmg(Z_R1, Z_R5, frame::z_abi_160_size, Z_SP);
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7003
  pop_frame();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7004
  restore_return_pc();
46726
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  7005
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7006
  BLOCK_COMMENT("} verify_oop ");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7007
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7008
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7009
const char* MacroAssembler::stop_types[] = {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7010
  "stop",
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7011
  "untested",
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7012
  "unimplemented",
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7013
  "shouldnotreachhere"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7014
};
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7015
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7016
static void stop_on_request(const char* tp, const char* msg) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7017
  tty->print("Z assembly code requires stop: (%s) %s\n", tp, msg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7018
  guarantee(false, "Z assembly code requires stop: %s", msg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7019
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7020
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7021
void MacroAssembler::stop(int type, const char* msg, int id) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7022
  BLOCK_COMMENT(err_msg("stop: %s {", msg));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7023
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7024
  // Setup arguments.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7025
  load_const(Z_ARG1, (void*) stop_types[type%stop_end]);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7026
  load_const(Z_ARG2, (void*) msg);
46726
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  7027
  get_PC(Z_R14);     // Following code pushes a frame without entering a new function. Use current pc as return address.
7801367e3cc9 8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents: 46369
diff changeset
  7028
  save_return_pc();  // Saves return pc Z_R14.
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7029
  push_frame_abi160(0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7030
  call_VM_leaf(CAST_FROM_FN_PTR(address, stop_on_request), Z_ARG1, Z_ARG2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7031
  // The plain disassembler does not recognize illtrap. It instead displays
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7032
  // a 32-bit value. Issueing two illtraps assures the disassembler finds
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7033
  // the proper beginning of the next instruction.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7034
  z_illtrap(); // Illegal instruction.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7035
  z_illtrap(); // Illegal instruction.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7036
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7037
  BLOCK_COMMENT(" } stop");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7038
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7039
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7040
// Special version of stop() for code size reduction.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7041
// Reuses the previously generated call sequence, if any.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7042
// Generates the call sequence on its own, if necessary.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7043
// Note: This code will work only in non-relocatable code!
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7044
//       The relative address of the data elements (arg1, arg2) must not change.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7045
//       The reentry point must not move relative to it's users. This prerequisite
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7046
//       should be given for "hand-written" code, if all chain calls are in the same code blob.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7047
//       Generated code must not undergo any transformation, e.g. ShortenBranches, to be safe.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7048
address MacroAssembler::stop_chain(address reentry, int type, const char* msg, int id, bool allow_relocation) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7049
  BLOCK_COMMENT(err_msg("stop_chain(%s,%s): %s {", reentry==NULL?"init":"cont", allow_relocation?"reloc ":"static", msg));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7050
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7051
  // Setup arguments.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7052
  if (allow_relocation) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7053
    // Relocatable version (for comparison purposes). Remove after some time.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7054
    load_const(Z_ARG1, (void*) stop_types[type%stop_end]);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7055
    load_const(Z_ARG2, (void*) msg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7056
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7057
    load_absolute_address(Z_ARG1, (address)stop_types[type%stop_end]);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7058
    load_absolute_address(Z_ARG2, (address)msg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7059
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7060
  if ((reentry != NULL) && RelAddr::is_in_range_of_RelAddr16(reentry, pc())) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7061
    BLOCK_COMMENT("branch to reentry point:");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7062
    z_brc(bcondAlways, reentry);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7063
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7064
    BLOCK_COMMENT("reentry point:");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7065
    reentry = pc();      // Re-entry point for subsequent stop calls.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7066
    save_return_pc();    // Saves return pc Z_R14.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7067
    push_frame_abi160(0);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7068
    if (allow_relocation) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7069
      reentry = NULL;    // Prevent reentry if code relocation is allowed.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7070
      call_VM_leaf(CAST_FROM_FN_PTR(address, stop_on_request), Z_ARG1, Z_ARG2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7071
    } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7072
      call_VM_leaf_static(CAST_FROM_FN_PTR(address, stop_on_request), Z_ARG1, Z_ARG2);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7073
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7074
    z_illtrap(); // Illegal instruction as emergency stop, should the above call return.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7075
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7076
  BLOCK_COMMENT(" } stop_chain");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7077
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7078
  return reentry;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7079
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7080
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7081
// Special version of stop() for code size reduction.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7082
// Assumes constant relative addresses for data and runtime call.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7083
void MacroAssembler::stop_static(int type, const char* msg, int id) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7084
  stop_chain(NULL, type, msg, id, false);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7085
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7086
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7087
void MacroAssembler::stop_subroutine() {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7088
  unimplemented("stop_subroutine", 710);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7089
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7090
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7091
// Prints msg to stdout from within generated code..
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7092
void MacroAssembler::warn(const char* msg) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7093
  RegisterSaver::save_live_registers(this, RegisterSaver::all_registers, Z_R14);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7094
  load_absolute_address(Z_R1, (address) warning);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7095
  load_absolute_address(Z_ARG1, (address) msg);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7096
  (void) call(Z_R1);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7097
  RegisterSaver::restore_live_registers(this, RegisterSaver::all_registers);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7098
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7099
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7100
#ifndef PRODUCT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7101
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7102
// Write pattern 0x0101010101010101 in region [low-before, high+after].
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7103
void MacroAssembler::zap_from_to(Register low, Register high, Register val, Register addr, int before, int after) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7104
  if (!ZapEmptyStackFields) return;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7105
  BLOCK_COMMENT("zap memory region {");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7106
  load_const_optimized(val, 0x0101010101010101);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7107
  int size = before + after;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7108
  if (low == high && size < 5 && size > 0) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7109
    int offset = -before*BytesPerWord;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7110
    for (int i = 0; i < size; ++i) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7111
      z_stg(val, Address(low, offset));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7112
      offset +=(1*BytesPerWord);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7113
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7114
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7115
    add2reg(addr, -before*BytesPerWord, low);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7116
    if (after) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7117
#ifdef ASSERT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7118
      jlong check = after * BytesPerWord;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7119
      assert(Immediate::is_simm32(check) && Immediate::is_simm32(-check), "value not encodable !");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7120
#endif
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7121
      add2reg(high, after * BytesPerWord);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7122
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7123
    NearLabel loop;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7124
    bind(loop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7125
    z_stg(val, Address(addr));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7126
    add2reg(addr, 8);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7127
    compare64_and_branch(addr, high, bcondNotHigh, loop);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7128
    if (after) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7129
      add2reg(high, -after * BytesPerWord);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7130
    }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7131
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7132
  BLOCK_COMMENT("} zap memory region");
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7133
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7134
#endif // !PRODUCT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7135
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7136
SkipIfEqual::SkipIfEqual(MacroAssembler* masm, const bool* flag_addr, bool value, Register _rscratch) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7137
  _masm = masm;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7138
  _masm->load_absolute_address(_rscratch, (address)flag_addr);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7139
  _masm->load_and_test_int(_rscratch, Address(_rscratch));
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7140
  if (value) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7141
    _masm->z_brne(_label); // Skip if true, i.e. != 0.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7142
  } else {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7143
    _masm->z_bre(_label);  // Skip if false, i.e. == 0.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7144
  }
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7145
}
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7146
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7147
SkipIfEqual::~SkipIfEqual() {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7148
  _masm->bind(_label);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
  7149
}