hotspot/src/cpu/x86/vm/macroAssembler_x86.cpp
author kbarrett
Wed, 15 Feb 2017 22:19:13 -0500
changeset 43964 2f5e556a6037
parent 43423 bcaab17f72a5
child 43969 ae5c415036b0
permissions -rw-r--r--
8166188: G1 Needs pre barrier on dereference of weak JNI handles Summary: Add low tag to jweaks and G1 barrier for jweak loads. Reviewed-by: mgerdin, mdoerr, pliden, dlong, dcubed, coleenp, aph, tschatzl Contributed-by: kim.barrett@oracle.com, martin.doerr@sap.com, volker.simonis@sap.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
     1
/*
43964
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
     2
 * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
     4
 *
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
     7
 * published by the Free Software Foundation.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
     8
 *
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    13
 * accompanied this code).
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    14
 *
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    18
 *
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    21
 * questions.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    22
 *
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    23
 */
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    24
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    25
#include "precompiled.hpp"
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    26
#include "asm/assembler.hpp"
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    27
#include "asm/assembler.inline.hpp"
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    28
#include "compiler/disassembler.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30310
diff changeset
    29
#include "gc/shared/cardTableModRefBS.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30310
diff changeset
    30
#include "gc/shared/collectedHeap.inline.hpp"
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    31
#include "interpreter/interpreter.hpp"
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    32
#include "memory/resourceArea.hpp"
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
    33
#include "memory/universe.hpp"
31849
92ca49fa9fa7 8131344: Missing klass.inline.hpp include in compiler files
tschatzl
parents: 31782
diff changeset
    34
#include "oops/klass.inline.hpp"
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    35
#include "prims/methodHandles.hpp"
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    36
#include "runtime/biasedLocking.hpp"
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    37
#include "runtime/interfaceSupport.hpp"
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    38
#include "runtime/objectMonitor.hpp"
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    39
#include "runtime/os.hpp"
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    40
#include "runtime/sharedRuntime.hpp"
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    41
#include "runtime/stubRoutines.hpp"
34633
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
    42
#include "runtime/thread.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 15117
diff changeset
    43
#include "utilities/macros.hpp"
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 15117
diff changeset
    44
#if INCLUDE_ALL_GCS
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30310
diff changeset
    45
#include "gc/g1/g1CollectedHeap.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30310
diff changeset
    46
#include "gc/g1/g1SATBCardTableModRefBS.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30310
diff changeset
    47
#include "gc/g1/heapRegion.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 15117
diff changeset
    48
#endif // INCLUDE_ALL_GCS
33066
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
    49
#include "crc32c.h"
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
    50
#ifdef COMPILER2
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
    51
#include "opto/intrinsicnode.hpp"
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
    52
#endif
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    53
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    54
#ifdef PRODUCT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    55
#define BLOCK_COMMENT(str) /* nothing */
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    56
#define STOP(error) stop(error)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    57
#else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    58
#define BLOCK_COMMENT(str) block_comment(str)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    59
#define STOP(error) block_comment(error); stop(error)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    60
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    61
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    62
#define BIND(label) bind(label); BLOCK_COMMENT(#label ":")
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    63
14631
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 14626
diff changeset
    64
#ifdef ASSERT
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 14626
diff changeset
    65
bool AbstractAssembler::pd_check_instruction_mark() { return true; }
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 14626
diff changeset
    66
#endif
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 14626
diff changeset
    67
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    68
static Assembler::Condition reverse[] = {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    69
    Assembler::noOverflow     /* overflow      = 0x0 */ ,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    70
    Assembler::overflow       /* noOverflow    = 0x1 */ ,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    71
    Assembler::aboveEqual     /* carrySet      = 0x2, below         = 0x2 */ ,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    72
    Assembler::below          /* aboveEqual    = 0x3, carryClear    = 0x3 */ ,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    73
    Assembler::notZero        /* zero          = 0x4, equal         = 0x4 */ ,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    74
    Assembler::zero           /* notZero       = 0x5, notEqual      = 0x5 */ ,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    75
    Assembler::above          /* belowEqual    = 0x6 */ ,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    76
    Assembler::belowEqual     /* above         = 0x7 */ ,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    77
    Assembler::positive       /* negative      = 0x8 */ ,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    78
    Assembler::negative       /* positive      = 0x9 */ ,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    79
    Assembler::noParity       /* parity        = 0xa */ ,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    80
    Assembler::parity         /* noParity      = 0xb */ ,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    81
    Assembler::greaterEqual   /* less          = 0xc */ ,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    82
    Assembler::less           /* greaterEqual  = 0xd */ ,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    83
    Assembler::greater        /* lessEqual     = 0xe */ ,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    84
    Assembler::lessEqual      /* greater       = 0xf, */
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    85
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    86
};
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    87
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    88
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    89
// Implementation of MacroAssembler
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    90
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    91
// First all the versions that have distinct versions depending on 32/64 bit
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    92
// Unless the difference is trivial (1 line or so).
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    93
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    94
#ifndef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    95
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    96
// 32bit versions
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    97
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    98
Address MacroAssembler::as_Address(AddressLiteral adr) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
    99
  return Address(adr.target(), adr.rspec());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   100
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   101
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   102
Address MacroAssembler::as_Address(ArrayAddress adr) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   103
  return Address::make_array(adr);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   104
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   105
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   106
void MacroAssembler::call_VM_leaf_base(address entry_point,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   107
                                       int number_of_arguments) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   108
  call(RuntimeAddress(entry_point));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   109
  increment(rsp, number_of_arguments * wordSize);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   110
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   111
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   112
void MacroAssembler::cmpklass(Address src1, Metadata* obj) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   113
  cmp_literal32(src1, (int32_t)obj, metadata_Relocation::spec_for_immediate());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   114
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   115
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   116
void MacroAssembler::cmpklass(Register src1, Metadata* obj) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   117
  cmp_literal32(src1, (int32_t)obj, metadata_Relocation::spec_for_immediate());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   118
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   119
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   120
void MacroAssembler::cmpoop(Address src1, jobject obj) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   121
  cmp_literal32(src1, (int32_t)obj, oop_Relocation::spec_for_immediate());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   122
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   123
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   124
void MacroAssembler::cmpoop(Register src1, jobject obj) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   125
  cmp_literal32(src1, (int32_t)obj, oop_Relocation::spec_for_immediate());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   126
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   127
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   128
void MacroAssembler::extend_sign(Register hi, Register lo) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   129
  // According to Intel Doc. AP-526, "Integer Divide", p.18.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   130
  if (VM_Version::is_P6() && hi == rdx && lo == rax) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   131
    cdql();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   132
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   133
    movl(hi, lo);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   134
    sarl(hi, 31);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   135
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   136
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   137
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   138
void MacroAssembler::jC2(Register tmp, Label& L) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   139
  // set parity bit if FPU flag C2 is set (via rax)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   140
  save_rax(tmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   141
  fwait(); fnstsw_ax();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   142
  sahf();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   143
  restore_rax(tmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   144
  // branch
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   145
  jcc(Assembler::parity, L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   146
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   147
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   148
void MacroAssembler::jnC2(Register tmp, Label& L) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   149
  // set parity bit if FPU flag C2 is set (via rax)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   150
  save_rax(tmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   151
  fwait(); fnstsw_ax();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   152
  sahf();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   153
  restore_rax(tmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   154
  // branch
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   155
  jcc(Assembler::noParity, L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   156
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   157
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   158
// 32bit can do a case table jump in one instruction but we no longer allow the base
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   159
// to be installed in the Address class
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   160
void MacroAssembler::jump(ArrayAddress entry) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   161
  jmp(as_Address(entry));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   162
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   163
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   164
// Note: y_lo will be destroyed
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   165
void MacroAssembler::lcmp2int(Register x_hi, Register x_lo, Register y_hi, Register y_lo) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   166
  // Long compare for Java (semantics as described in JVM spec.)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   167
  Label high, low, done;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   168
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   169
  cmpl(x_hi, y_hi);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   170
  jcc(Assembler::less, low);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   171
  jcc(Assembler::greater, high);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   172
  // x_hi is the return register
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   173
  xorl(x_hi, x_hi);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   174
  cmpl(x_lo, y_lo);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   175
  jcc(Assembler::below, low);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   176
  jcc(Assembler::equal, done);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   177
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   178
  bind(high);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   179
  xorl(x_hi, x_hi);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   180
  increment(x_hi);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   181
  jmp(done);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   182
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   183
  bind(low);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   184
  xorl(x_hi, x_hi);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   185
  decrementl(x_hi);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   186
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   187
  bind(done);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   188
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   189
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   190
void MacroAssembler::lea(Register dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   191
    mov_literal32(dst, (int32_t)src.target(), src.rspec());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   192
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   193
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   194
void MacroAssembler::lea(Address dst, AddressLiteral adr) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   195
  // leal(dst, as_Address(adr));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   196
  // see note in movl as to why we must use a move
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   197
  mov_literal32(dst, (int32_t) adr.target(), adr.rspec());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   198
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   199
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   200
void MacroAssembler::leave() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   201
  mov(rsp, rbp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   202
  pop(rbp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   203
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   204
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   205
void MacroAssembler::lmul(int x_rsp_offset, int y_rsp_offset) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   206
  // Multiplication of two Java long values stored on the stack
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   207
  // as illustrated below. Result is in rdx:rax.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   208
  //
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   209
  // rsp ---> [  ??  ] \               \
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   210
  //            ....    | y_rsp_offset  |
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   211
  //          [ y_lo ] /  (in bytes)    | x_rsp_offset
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   212
  //          [ y_hi ]                  | (in bytes)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   213
  //            ....                    |
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   214
  //          [ x_lo ]                 /
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   215
  //          [ x_hi ]
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   216
  //            ....
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   217
  //
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   218
  // Basic idea: lo(result) = lo(x_lo * y_lo)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   219
  //             hi(result) = hi(x_lo * y_lo) + lo(x_hi * y_lo) + lo(x_lo * y_hi)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   220
  Address x_hi(rsp, x_rsp_offset + wordSize); Address x_lo(rsp, x_rsp_offset);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   221
  Address y_hi(rsp, y_rsp_offset + wordSize); Address y_lo(rsp, y_rsp_offset);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   222
  Label quick;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   223
  // load x_hi, y_hi and check if quick
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   224
  // multiplication is possible
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   225
  movl(rbx, x_hi);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   226
  movl(rcx, y_hi);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   227
  movl(rax, rbx);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   228
  orl(rbx, rcx);                                 // rbx, = 0 <=> x_hi = 0 and y_hi = 0
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   229
  jcc(Assembler::zero, quick);                   // if rbx, = 0 do quick multiply
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   230
  // do full multiplication
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   231
  // 1st step
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   232
  mull(y_lo);                                    // x_hi * y_lo
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   233
  movl(rbx, rax);                                // save lo(x_hi * y_lo) in rbx,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   234
  // 2nd step
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   235
  movl(rax, x_lo);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   236
  mull(rcx);                                     // x_lo * y_hi
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   237
  addl(rbx, rax);                                // add lo(x_lo * y_hi) to rbx,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   238
  // 3rd step
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   239
  bind(quick);                                   // note: rbx, = 0 if quick multiply!
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   240
  movl(rax, x_lo);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   241
  mull(y_lo);                                    // x_lo * y_lo
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   242
  addl(rdx, rbx);                                // correct hi(x_lo * y_lo)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   243
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   244
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   245
void MacroAssembler::lneg(Register hi, Register lo) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   246
  negl(lo);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   247
  adcl(hi, 0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   248
  negl(hi);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   249
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   250
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   251
void MacroAssembler::lshl(Register hi, Register lo) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   252
  // Java shift left long support (semantics as described in JVM spec., p.305)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   253
  // (basic idea for shift counts s >= n: x << s == (x << n) << (s - n))
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   254
  // shift value is in rcx !
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   255
  assert(hi != rcx, "must not use rcx");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   256
  assert(lo != rcx, "must not use rcx");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   257
  const Register s = rcx;                        // shift count
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   258
  const int      n = BitsPerWord;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   259
  Label L;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   260
  andl(s, 0x3f);                                 // s := s & 0x3f (s < 0x40)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   261
  cmpl(s, n);                                    // if (s < n)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   262
  jcc(Assembler::less, L);                       // else (s >= n)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   263
  movl(hi, lo);                                  // x := x << n
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   264
  xorl(lo, lo);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   265
  // Note: subl(s, n) is not needed since the Intel shift instructions work rcx mod n!
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   266
  bind(L);                                       // s (mod n) < n
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   267
  shldl(hi, lo);                                 // x := x << s
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   268
  shll(lo);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   269
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   270
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   271
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   272
void MacroAssembler::lshr(Register hi, Register lo, bool sign_extension) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   273
  // Java shift right long support (semantics as described in JVM spec., p.306 & p.310)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   274
  // (basic idea for shift counts s >= n: x >> s == (x >> n) >> (s - n))
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   275
  assert(hi != rcx, "must not use rcx");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   276
  assert(lo != rcx, "must not use rcx");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   277
  const Register s = rcx;                        // shift count
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   278
  const int      n = BitsPerWord;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   279
  Label L;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   280
  andl(s, 0x3f);                                 // s := s & 0x3f (s < 0x40)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   281
  cmpl(s, n);                                    // if (s < n)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   282
  jcc(Assembler::less, L);                       // else (s >= n)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   283
  movl(lo, hi);                                  // x := x >> n
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   284
  if (sign_extension) sarl(hi, 31);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   285
  else                xorl(hi, hi);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   286
  // Note: subl(s, n) is not needed since the Intel shift instructions work rcx mod n!
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   287
  bind(L);                                       // s (mod n) < n
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   288
  shrdl(lo, hi);                                 // x := x >> s
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   289
  if (sign_extension) sarl(hi);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   290
  else                shrl(hi);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   291
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   292
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   293
void MacroAssembler::movoop(Register dst, jobject obj) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   294
  mov_literal32(dst, (int32_t)obj, oop_Relocation::spec_for_immediate());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   295
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   296
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   297
void MacroAssembler::movoop(Address dst, jobject obj) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   298
  mov_literal32(dst, (int32_t)obj, oop_Relocation::spec_for_immediate());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   299
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   300
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   301
void MacroAssembler::mov_metadata(Register dst, Metadata* obj) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   302
  mov_literal32(dst, (int32_t)obj, metadata_Relocation::spec_for_immediate());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   303
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   304
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   305
void MacroAssembler::mov_metadata(Address dst, Metadata* obj) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   306
  mov_literal32(dst, (int32_t)obj, metadata_Relocation::spec_for_immediate());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   307
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   308
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
   309
void MacroAssembler::movptr(Register dst, AddressLiteral src, Register scratch) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
   310
  // scratch register is not used,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
   311
  // it is defined to match parameters of 64-bit version of this method.
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   312
  if (src.is_lval()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   313
    mov_literal32(dst, (intptr_t)src.target(), src.rspec());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   314
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   315
    movl(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   316
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   317
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   318
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   319
void MacroAssembler::movptr(ArrayAddress dst, Register src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   320
  movl(as_Address(dst), src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   321
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   322
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   323
void MacroAssembler::movptr(Register dst, ArrayAddress src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   324
  movl(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   325
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   326
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   327
// src should NEVER be a real pointer. Use AddressLiteral for true pointers
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   328
void MacroAssembler::movptr(Address dst, intptr_t src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   329
  movl(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   330
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   331
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   332
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   333
void MacroAssembler::pop_callee_saved_registers() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   334
  pop(rcx);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   335
  pop(rdx);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   336
  pop(rdi);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   337
  pop(rsi);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   338
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   339
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   340
void MacroAssembler::pop_fTOS() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   341
  fld_d(Address(rsp, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   342
  addl(rsp, 2 * wordSize);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   343
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   344
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   345
void MacroAssembler::push_callee_saved_registers() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   346
  push(rsi);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   347
  push(rdi);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   348
  push(rdx);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   349
  push(rcx);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   350
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   351
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   352
void MacroAssembler::push_fTOS() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   353
  subl(rsp, 2 * wordSize);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   354
  fstp_d(Address(rsp, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   355
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   356
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   357
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   358
void MacroAssembler::pushoop(jobject obj) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   359
  push_literal32((int32_t)obj, oop_Relocation::spec_for_immediate());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   360
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   361
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   362
void MacroAssembler::pushklass(Metadata* obj) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   363
  push_literal32((int32_t)obj, metadata_Relocation::spec_for_immediate());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   364
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   365
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   366
void MacroAssembler::pushptr(AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   367
  if (src.is_lval()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   368
    push_literal32((int32_t)src.target(), src.rspec());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   369
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   370
    pushl(as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   371
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   372
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   373
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   374
void MacroAssembler::set_word_if_not_zero(Register dst) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   375
  xorl(dst, dst);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   376
  set_byte_if_not_zero(dst);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   377
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   378
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   379
static void pass_arg0(MacroAssembler* masm, Register arg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   380
  masm->push(arg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   381
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   382
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   383
static void pass_arg1(MacroAssembler* masm, Register arg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   384
  masm->push(arg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   385
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   386
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   387
static void pass_arg2(MacroAssembler* masm, Register arg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   388
  masm->push(arg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   389
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   390
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   391
static void pass_arg3(MacroAssembler* masm, Register arg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   392
  masm->push(arg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   393
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   394
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   395
#ifndef PRODUCT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   396
extern "C" void findpc(intptr_t x);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   397
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   398
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   399
void MacroAssembler::debug32(int rdi, int rsi, int rbp, int rsp, int rbx, int rdx, int rcx, int rax, int eip, char* msg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   400
  // In order to get locks to work, we need to fake a in_VM state
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   401
  JavaThread* thread = JavaThread::current();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   402
  JavaThreadState saved_state = thread->thread_state();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   403
  thread->set_thread_state(_thread_in_vm);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   404
  if (ShowMessageBoxOnError) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   405
    JavaThread* thread = JavaThread::current();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   406
    JavaThreadState saved_state = thread->thread_state();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   407
    thread->set_thread_state(_thread_in_vm);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   408
    if (CountBytecodes || TraceBytecodes || StopInterpreterAt) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   409
      ttyLocker ttyl;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   410
      BytecodeCounter::print();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   411
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   412
    // To see where a verify_oop failed, get $ebx+40/X for this frame.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   413
    // This is the value of eip which points to where verify_oop will return.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   414
    if (os::message_box(msg, "Execution stopped, print registers?")) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   415
      print_state32(rdi, rsi, rbp, rsp, rbx, rdx, rcx, rax, eip);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   416
      BREAKPOINT;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   417
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   418
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   419
    ttyLocker ttyl;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   420
    ::tty->print_cr("=============== DEBUG MESSAGE: %s ================\n", msg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   421
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   422
  // Don't assert holding the ttyLock
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32727
diff changeset
   423
    assert(false, "DEBUG MESSAGE: %s", msg);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   424
  ThreadStateTransition::transition(thread, _thread_in_vm, saved_state);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   425
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   426
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   427
void MacroAssembler::print_state32(int rdi, int rsi, int rbp, int rsp, int rbx, int rdx, int rcx, int rax, int eip) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   428
  ttyLocker ttyl;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   429
  FlagSetting fs(Debugging, true);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   430
  tty->print_cr("eip = 0x%08x", eip);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   431
#ifndef PRODUCT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   432
  if ((WizardMode || Verbose) && PrintMiscellaneous) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   433
    tty->cr();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   434
    findpc(eip);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   435
    tty->cr();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   436
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   437
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   438
#define PRINT_REG(rax) \
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   439
  { tty->print("%s = ", #rax); os::print_location(tty, rax); }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   440
  PRINT_REG(rax);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   441
  PRINT_REG(rbx);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   442
  PRINT_REG(rcx);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   443
  PRINT_REG(rdx);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   444
  PRINT_REG(rdi);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   445
  PRINT_REG(rsi);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   446
  PRINT_REG(rbp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   447
  PRINT_REG(rsp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   448
#undef PRINT_REG
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   449
  // Print some words near top of staack.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   450
  int* dump_sp = (int*) rsp;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   451
  for (int col1 = 0; col1 < 8; col1++) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   452
    tty->print("(rsp+0x%03x) 0x%08x: ", (int)((intptr_t)dump_sp - (intptr_t)rsp), (intptr_t)dump_sp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   453
    os::print_location(tty, *dump_sp++);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   454
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   455
  for (int row = 0; row < 16; row++) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   456
    tty->print("(rsp+0x%03x) 0x%08x: ", (int)((intptr_t)dump_sp - (intptr_t)rsp), (intptr_t)dump_sp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   457
    for (int col = 0; col < 8; col++) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   458
      tty->print(" 0x%08x", *dump_sp++);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   459
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   460
    tty->cr();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   461
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   462
  // Print some instructions around pc:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   463
  Disassembler::decode((address)eip-64, (address)eip);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   464
  tty->print_cr("--------");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   465
  Disassembler::decode((address)eip, (address)eip+32);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   466
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   467
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   468
void MacroAssembler::stop(const char* msg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   469
  ExternalAddress message((address)msg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   470
  // push address of message
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   471
  pushptr(message.addr());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   472
  { Label L; call(L, relocInfo::none); bind(L); }     // push eip
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   473
  pusha();                                            // push registers
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   474
  call(RuntimeAddress(CAST_FROM_FN_PTR(address, MacroAssembler::debug32)));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   475
  hlt();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   476
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   477
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   478
void MacroAssembler::warn(const char* msg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   479
  push_CPU_state();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   480
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   481
  ExternalAddress message((address) msg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   482
  // push address of message
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   483
  pushptr(message.addr());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   484
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   485
  call(RuntimeAddress(CAST_FROM_FN_PTR(address, warning)));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   486
  addl(rsp, wordSize);       // discard argument
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   487
  pop_CPU_state();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   488
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   489
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   490
void MacroAssembler::print_state() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   491
  { Label L; call(L, relocInfo::none); bind(L); }     // push eip
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   492
  pusha();                                            // push registers
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   493
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   494
  push_CPU_state();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   495
  call(RuntimeAddress(CAST_FROM_FN_PTR(address, MacroAssembler::print_state32)));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   496
  pop_CPU_state();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   497
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   498
  popa();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   499
  addl(rsp, wordSize);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   500
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   501
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   502
#else // _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   503
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   504
// 64 bit versions
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   505
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   506
Address MacroAssembler::as_Address(AddressLiteral adr) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   507
  // amd64 always does this as a pc-rel
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   508
  // we can be absolute or disp based on the instruction type
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   509
  // jmp/call are displacements others are absolute
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   510
  assert(!adr.is_lval(), "must be rval");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   511
  assert(reachable(adr), "must be");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   512
  return Address((int32_t)(intptr_t)(adr.target() - pc()), adr.target(), adr.reloc());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   513
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   514
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   515
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   516
Address MacroAssembler::as_Address(ArrayAddress adr) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   517
  AddressLiteral base = adr.base();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   518
  lea(rscratch1, base);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   519
  Address index = adr.index();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   520
  assert(index._disp == 0, "must not have disp"); // maybe it can?
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   521
  Address array(rscratch1, index._index, index._scale, index._disp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   522
  return array;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   523
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   524
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   525
void MacroAssembler::call_VM_leaf_base(address entry_point, int num_args) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   526
  Label L, E;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   527
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   528
#ifdef _WIN64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   529
  // Windows always allocates space for it's register args
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   530
  assert(num_args <= 4, "only register arguments supported");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   531
  subq(rsp,  frame::arg_reg_save_area_bytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   532
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   533
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   534
  // Align stack if necessary
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   535
  testl(rsp, 15);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   536
  jcc(Assembler::zero, L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   537
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   538
  subq(rsp, 8);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   539
  {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   540
    call(RuntimeAddress(entry_point));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   541
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   542
  addq(rsp, 8);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   543
  jmp(E);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   544
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   545
  bind(L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   546
  {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   547
    call(RuntimeAddress(entry_point));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   548
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   549
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   550
  bind(E);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   551
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   552
#ifdef _WIN64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   553
  // restore stack pointer
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   554
  addq(rsp, frame::arg_reg_save_area_bytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   555
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   556
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   557
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   558
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   559
void MacroAssembler::cmp64(Register src1, AddressLiteral src2) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   560
  assert(!src2.is_lval(), "should use cmpptr");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   561
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   562
  if (reachable(src2)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   563
    cmpq(src1, as_Address(src2));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   564
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   565
    lea(rscratch1, src2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   566
    Assembler::cmpq(src1, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   567
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   568
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   569
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   570
int MacroAssembler::corrected_idivq(Register reg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   571
  // Full implementation of Java ldiv and lrem; checks for special
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   572
  // case as described in JVM spec., p.243 & p.271.  The function
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   573
  // returns the (pc) offset of the idivl instruction - may be needed
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   574
  // for implicit exceptions.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   575
  //
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   576
  //         normal case                           special case
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   577
  //
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   578
  // input : rax: dividend                         min_long
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   579
  //         reg: divisor   (may not be eax/edx)   -1
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   580
  //
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   581
  // output: rax: quotient  (= rax idiv reg)       min_long
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   582
  //         rdx: remainder (= rax irem reg)       0
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   583
  assert(reg != rax && reg != rdx, "reg cannot be rax or rdx register");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   584
  static const int64_t min_long = 0x8000000000000000;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   585
  Label normal_case, special_case;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   586
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   587
  // check for special case
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   588
  cmp64(rax, ExternalAddress((address) &min_long));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   589
  jcc(Assembler::notEqual, normal_case);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   590
  xorl(rdx, rdx); // prepare rdx for possible special case (where
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   591
                  // remainder = 0)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   592
  cmpq(reg, -1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   593
  jcc(Assembler::equal, special_case);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   594
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   595
  // handle normal case
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   596
  bind(normal_case);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   597
  cdqq();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   598
  int idivq_offset = offset();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   599
  idivq(reg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   600
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   601
  // normal and special case exit
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   602
  bind(special_case);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   603
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   604
  return idivq_offset;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   605
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   606
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   607
void MacroAssembler::decrementq(Register reg, int value) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   608
  if (value == min_jint) { subq(reg, value); return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   609
  if (value <  0) { incrementq(reg, -value); return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   610
  if (value == 0) {                        ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   611
  if (value == 1 && UseIncDec) { decq(reg) ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   612
  /* else */      { subq(reg, value)       ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   613
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   614
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   615
void MacroAssembler::decrementq(Address dst, int value) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   616
  if (value == min_jint) { subq(dst, value); return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   617
  if (value <  0) { incrementq(dst, -value); return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   618
  if (value == 0) {                        ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   619
  if (value == 1 && UseIncDec) { decq(dst) ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   620
  /* else */      { subq(dst, value)       ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   621
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   622
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
   623
void MacroAssembler::incrementq(AddressLiteral dst) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
   624
  if (reachable(dst)) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
   625
    incrementq(as_Address(dst));
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
   626
  } else {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
   627
    lea(rscratch1, dst);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
   628
    incrementq(Address(rscratch1, 0));
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
   629
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
   630
}
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
   631
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   632
void MacroAssembler::incrementq(Register reg, int value) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   633
  if (value == min_jint) { addq(reg, value); return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   634
  if (value <  0) { decrementq(reg, -value); return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   635
  if (value == 0) {                        ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   636
  if (value == 1 && UseIncDec) { incq(reg) ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   637
  /* else */      { addq(reg, value)       ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   638
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   639
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   640
void MacroAssembler::incrementq(Address dst, int value) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   641
  if (value == min_jint) { addq(dst, value); return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   642
  if (value <  0) { decrementq(dst, -value); return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   643
  if (value == 0) {                        ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   644
  if (value == 1 && UseIncDec) { incq(dst) ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   645
  /* else */      { addq(dst, value)       ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   646
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   647
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   648
// 32bit can do a case table jump in one instruction but we no longer allow the base
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   649
// to be installed in the Address class
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   650
void MacroAssembler::jump(ArrayAddress entry) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   651
  lea(rscratch1, entry.base());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   652
  Address dispatch = entry.index();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   653
  assert(dispatch._base == noreg, "must be");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   654
  dispatch._base = rscratch1;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   655
  jmp(dispatch);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   656
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   657
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   658
void MacroAssembler::lcmp2int(Register x_hi, Register x_lo, Register y_hi, Register y_lo) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   659
  ShouldNotReachHere(); // 64bit doesn't use two regs
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   660
  cmpq(x_lo, y_lo);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   661
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   662
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   663
void MacroAssembler::lea(Register dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   664
    mov_literal64(dst, (intptr_t)src.target(), src.rspec());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   665
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   666
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   667
void MacroAssembler::lea(Address dst, AddressLiteral adr) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   668
  mov_literal64(rscratch1, (intptr_t)adr.target(), adr.rspec());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   669
  movptr(dst, rscratch1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   670
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   671
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   672
void MacroAssembler::leave() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   673
  // %%% is this really better? Why not on 32bit too?
14837
a75c3082d106 8004250: replace AbstractAssembler a_byte/a_long with emit_int8/emit_int32
twisti
parents: 14834
diff changeset
   674
  emit_int8((unsigned char)0xC9); // LEAVE
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   675
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   676
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   677
void MacroAssembler::lneg(Register hi, Register lo) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   678
  ShouldNotReachHere(); // 64bit doesn't use two regs
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   679
  negq(lo);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   680
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   681
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   682
void MacroAssembler::movoop(Register dst, jobject obj) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   683
  mov_literal64(dst, (intptr_t)obj, oop_Relocation::spec_for_immediate());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   684
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   685
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   686
void MacroAssembler::movoop(Address dst, jobject obj) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   687
  mov_literal64(rscratch1, (intptr_t)obj, oop_Relocation::spec_for_immediate());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   688
  movq(dst, rscratch1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   689
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   690
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   691
void MacroAssembler::mov_metadata(Register dst, Metadata* obj) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   692
  mov_literal64(dst, (intptr_t)obj, metadata_Relocation::spec_for_immediate());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   693
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   694
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   695
void MacroAssembler::mov_metadata(Address dst, Metadata* obj) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   696
  mov_literal64(rscratch1, (intptr_t)obj, metadata_Relocation::spec_for_immediate());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   697
  movq(dst, rscratch1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   698
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   699
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
   700
void MacroAssembler::movptr(Register dst, AddressLiteral src, Register scratch) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   701
  if (src.is_lval()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   702
    mov_literal64(dst, (intptr_t)src.target(), src.rspec());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   703
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   704
    if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   705
      movq(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   706
    } else {
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
   707
      lea(scratch, src);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
   708
      movq(dst, Address(scratch, 0));
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   709
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   710
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   711
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   712
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   713
void MacroAssembler::movptr(ArrayAddress dst, Register src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   714
  movq(as_Address(dst), src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   715
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   716
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   717
void MacroAssembler::movptr(Register dst, ArrayAddress src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   718
  movq(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   719
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   720
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   721
// src should NEVER be a real pointer. Use AddressLiteral for true pointers
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   722
void MacroAssembler::movptr(Address dst, intptr_t src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   723
  mov64(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   724
  movq(dst, rscratch1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   725
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   726
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   727
// These are mostly for initializing NULL
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   728
void MacroAssembler::movptr(Address dst, int32_t src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   729
  movslq(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   730
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   731
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   732
void MacroAssembler::movptr(Register dst, int32_t src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   733
  mov64(dst, (intptr_t)src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   734
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   735
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   736
void MacroAssembler::pushoop(jobject obj) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   737
  movoop(rscratch1, obj);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   738
  push(rscratch1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   739
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   740
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   741
void MacroAssembler::pushklass(Metadata* obj) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   742
  mov_metadata(rscratch1, obj);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   743
  push(rscratch1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   744
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   745
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   746
void MacroAssembler::pushptr(AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   747
  lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   748
  if (src.is_lval()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   749
    push(rscratch1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   750
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   751
    pushq(Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   752
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   753
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   754
40644
39e631ed7145 8161598: Kitchensink fails: assert(nm->insts_contains(original_pc)) failed: original PC must be in nmethod/CompiledMethod
dlong
parents: 39256
diff changeset
   755
void MacroAssembler::reset_last_Java_frame(bool clear_fp) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   756
  // we must set sp to zero to clear frame
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   757
  movptr(Address(r15_thread, JavaThread::last_Java_sp_offset()), NULL_WORD);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   758
  // must clear fp, so that compiled frames are not confused; it is
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   759
  // possible that we need it only for debugging
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   760
  if (clear_fp) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   761
    movptr(Address(r15_thread, JavaThread::last_Java_fp_offset()), NULL_WORD);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   762
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   763
40644
39e631ed7145 8161598: Kitchensink fails: assert(nm->insts_contains(original_pc)) failed: original PC must be in nmethod/CompiledMethod
dlong
parents: 39256
diff changeset
   764
  // Always clear the pc because it could have been set by make_walkable()
39e631ed7145 8161598: Kitchensink fails: assert(nm->insts_contains(original_pc)) failed: original PC must be in nmethod/CompiledMethod
dlong
parents: 39256
diff changeset
   765
  movptr(Address(r15_thread, JavaThread::last_Java_pc_offset()), NULL_WORD);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   766
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   767
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   768
void MacroAssembler::set_last_Java_frame(Register last_java_sp,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   769
                                         Register last_java_fp,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   770
                                         address  last_java_pc) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   771
  // determine last_java_sp register
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   772
  if (!last_java_sp->is_valid()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   773
    last_java_sp = rsp;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   774
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   775
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   776
  // last_java_fp is optional
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   777
  if (last_java_fp->is_valid()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   778
    movptr(Address(r15_thread, JavaThread::last_Java_fp_offset()),
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   779
           last_java_fp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   780
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   781
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   782
  // last_java_pc is optional
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   783
  if (last_java_pc != NULL) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   784
    Address java_pc(r15_thread,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   785
                    JavaThread::frame_anchor_offset() + JavaFrameAnchor::last_Java_pc_offset());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   786
    lea(rscratch1, InternalAddress(last_java_pc));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   787
    movptr(java_pc, rscratch1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   788
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   789
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   790
  movptr(Address(r15_thread, JavaThread::last_Java_sp_offset()), last_java_sp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   791
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   792
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   793
static void pass_arg0(MacroAssembler* masm, Register arg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   794
  if (c_rarg0 != arg ) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   795
    masm->mov(c_rarg0, arg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   796
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   797
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   798
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   799
static void pass_arg1(MacroAssembler* masm, Register arg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   800
  if (c_rarg1 != arg ) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   801
    masm->mov(c_rarg1, arg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   802
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   803
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   804
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   805
static void pass_arg2(MacroAssembler* masm, Register arg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   806
  if (c_rarg2 != arg ) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   807
    masm->mov(c_rarg2, arg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   808
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   809
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   810
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   811
static void pass_arg3(MacroAssembler* masm, Register arg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   812
  if (c_rarg3 != arg ) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   813
    masm->mov(c_rarg3, arg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   814
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   815
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   816
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   817
void MacroAssembler::stop(const char* msg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   818
  address rip = pc();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   819
  pusha(); // get regs on stack
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   820
  lea(c_rarg0, ExternalAddress((address) msg));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   821
  lea(c_rarg1, InternalAddress(rip));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   822
  movq(c_rarg2, rsp); // pass pointer to regs array
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   823
  andq(rsp, -16); // align stack as required by ABI
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   824
  call(RuntimeAddress(CAST_FROM_FN_PTR(address, MacroAssembler::debug64)));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   825
  hlt();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   826
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   827
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   828
void MacroAssembler::warn(const char* msg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   829
  push(rbp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   830
  movq(rbp, rsp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   831
  andq(rsp, -16);     // align stack as required by push_CPU_state and call
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   832
  push_CPU_state();   // keeps alignment at 16 bytes
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   833
  lea(c_rarg0, ExternalAddress((address) msg));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   834
  call_VM_leaf(CAST_FROM_FN_PTR(address, warning), c_rarg0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   835
  pop_CPU_state();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   836
  mov(rsp, rbp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   837
  pop(rbp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   838
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   839
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   840
void MacroAssembler::print_state() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   841
  address rip = pc();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   842
  pusha();            // get regs on stack
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   843
  push(rbp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   844
  movq(rbp, rsp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   845
  andq(rsp, -16);     // align stack as required by push_CPU_state and call
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   846
  push_CPU_state();   // keeps alignment at 16 bytes
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   847
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   848
  lea(c_rarg0, InternalAddress(rip));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   849
  lea(c_rarg1, Address(rbp, wordSize)); // pass pointer to regs array
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   850
  call_VM_leaf(CAST_FROM_FN_PTR(address, MacroAssembler::print_state64), c_rarg0, c_rarg1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   851
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   852
  pop_CPU_state();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   853
  mov(rsp, rbp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   854
  pop(rbp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   855
  popa();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   856
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   857
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   858
#ifndef PRODUCT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   859
extern "C" void findpc(intptr_t x);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   860
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   861
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   862
void MacroAssembler::debug64(char* msg, int64_t pc, int64_t regs[]) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   863
  // In order to get locks to work, we need to fake a in_VM state
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   864
  if (ShowMessageBoxOnError) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   865
    JavaThread* thread = JavaThread::current();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   866
    JavaThreadState saved_state = thread->thread_state();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   867
    thread->set_thread_state(_thread_in_vm);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   868
#ifndef PRODUCT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   869
    if (CountBytecodes || TraceBytecodes || StopInterpreterAt) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   870
      ttyLocker ttyl;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   871
      BytecodeCounter::print();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   872
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   873
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   874
    // To see where a verify_oop failed, get $ebx+40/X for this frame.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   875
    // XXX correct this offset for amd64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   876
    // This is the value of eip which points to where verify_oop will return.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   877
    if (os::message_box(msg, "Execution stopped, print registers?")) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   878
      print_state64(pc, regs);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   879
      BREAKPOINT;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   880
      assert(false, "start up GDB");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   881
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   882
    ThreadStateTransition::transition(thread, _thread_in_vm, saved_state);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   883
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   884
    ttyLocker ttyl;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   885
    ::tty->print_cr("=============== DEBUG MESSAGE: %s ================\n",
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   886
                    msg);
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32727
diff changeset
   887
    assert(false, "DEBUG MESSAGE: %s", msg);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   888
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   889
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   890
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   891
void MacroAssembler::print_state64(int64_t pc, int64_t regs[]) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   892
  ttyLocker ttyl;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   893
  FlagSetting fs(Debugging, true);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   894
  tty->print_cr("rip = 0x%016lx", pc);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   895
#ifndef PRODUCT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   896
  tty->cr();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   897
  findpc(pc);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   898
  tty->cr();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   899
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   900
#define PRINT_REG(rax, value) \
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   901
  { tty->print("%s = ", #rax); os::print_location(tty, value); }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   902
  PRINT_REG(rax, regs[15]);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   903
  PRINT_REG(rbx, regs[12]);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   904
  PRINT_REG(rcx, regs[14]);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   905
  PRINT_REG(rdx, regs[13]);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   906
  PRINT_REG(rdi, regs[8]);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   907
  PRINT_REG(rsi, regs[9]);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   908
  PRINT_REG(rbp, regs[10]);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   909
  PRINT_REG(rsp, regs[11]);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   910
  PRINT_REG(r8 , regs[7]);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   911
  PRINT_REG(r9 , regs[6]);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   912
  PRINT_REG(r10, regs[5]);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   913
  PRINT_REG(r11, regs[4]);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   914
  PRINT_REG(r12, regs[3]);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   915
  PRINT_REG(r13, regs[2]);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   916
  PRINT_REG(r14, regs[1]);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   917
  PRINT_REG(r15, regs[0]);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   918
#undef PRINT_REG
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   919
  // Print some words near top of staack.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   920
  int64_t* rsp = (int64_t*) regs[11];
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   921
  int64_t* dump_sp = rsp;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   922
  for (int col1 = 0; col1 < 8; col1++) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   923
    tty->print("(rsp+0x%03x) 0x%016lx: ", (int)((intptr_t)dump_sp - (intptr_t)rsp), (int64_t)dump_sp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   924
    os::print_location(tty, *dump_sp++);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   925
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   926
  for (int row = 0; row < 25; row++) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   927
    tty->print("(rsp+0x%03x) 0x%016lx: ", (int)((intptr_t)dump_sp - (intptr_t)rsp), (int64_t)dump_sp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   928
    for (int col = 0; col < 4; col++) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   929
      tty->print(" 0x%016lx", *dump_sp++);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   930
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   931
    tty->cr();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   932
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   933
  // Print some instructions around pc:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   934
  Disassembler::decode((address)pc-64, (address)pc);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   935
  tty->print_cr("--------");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   936
  Disassembler::decode((address)pc, (address)pc+32);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   937
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   938
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   939
#endif // _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   940
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   941
// Now versions that are common to 32/64 bit
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   942
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   943
void MacroAssembler::addptr(Register dst, int32_t imm32) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   944
  LP64_ONLY(addq(dst, imm32)) NOT_LP64(addl(dst, imm32));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   945
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   946
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   947
void MacroAssembler::addptr(Register dst, Register src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   948
  LP64_ONLY(addq(dst, src)) NOT_LP64(addl(dst, src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   949
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   950
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   951
void MacroAssembler::addptr(Address dst, Register src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   952
  LP64_ONLY(addq(dst, src)) NOT_LP64(addl(dst, src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   953
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   954
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   955
void MacroAssembler::addsd(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   956
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   957
    Assembler::addsd(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   958
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   959
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   960
    Assembler::addsd(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   961
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   962
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   963
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   964
void MacroAssembler::addss(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   965
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   966
    addss(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   967
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   968
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   969
    addss(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   970
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   971
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   972
35540
e001ad24dcdb 8143353: update for x86 sin and cos in the math lib
vdeshpande
parents: 35146
diff changeset
   973
void MacroAssembler::addpd(XMMRegister dst, AddressLiteral src) {
e001ad24dcdb 8143353: update for x86 sin and cos in the math lib
vdeshpande
parents: 35146
diff changeset
   974
  if (reachable(src)) {
e001ad24dcdb 8143353: update for x86 sin and cos in the math lib
vdeshpande
parents: 35146
diff changeset
   975
    Assembler::addpd(dst, as_Address(src));
e001ad24dcdb 8143353: update for x86 sin and cos in the math lib
vdeshpande
parents: 35146
diff changeset
   976
  } else {
e001ad24dcdb 8143353: update for x86 sin and cos in the math lib
vdeshpande
parents: 35146
diff changeset
   977
    lea(rscratch1, src);
e001ad24dcdb 8143353: update for x86 sin and cos in the math lib
vdeshpande
parents: 35146
diff changeset
   978
    Assembler::addpd(dst, Address(rscratch1, 0));
e001ad24dcdb 8143353: update for x86 sin and cos in the math lib
vdeshpande
parents: 35146
diff changeset
   979
  }
e001ad24dcdb 8143353: update for x86 sin and cos in the math lib
vdeshpande
parents: 35146
diff changeset
   980
}
e001ad24dcdb 8143353: update for x86 sin and cos in the math lib
vdeshpande
parents: 35146
diff changeset
   981
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   982
void MacroAssembler::align(int modulus) {
32203
01a3716ed455 8131682: C1 should use multibyte nops everywhere
shade
parents: 31849
diff changeset
   983
  align(modulus, offset());
01a3716ed455 8131682: C1 should use multibyte nops everywhere
shade
parents: 31849
diff changeset
   984
}
01a3716ed455 8131682: C1 should use multibyte nops everywhere
shade
parents: 31849
diff changeset
   985
01a3716ed455 8131682: C1 should use multibyte nops everywhere
shade
parents: 31849
diff changeset
   986
void MacroAssembler::align(int modulus, int target) {
01a3716ed455 8131682: C1 should use multibyte nops everywhere
shade
parents: 31849
diff changeset
   987
  if (target % modulus != 0) {
01a3716ed455 8131682: C1 should use multibyte nops everywhere
shade
parents: 31849
diff changeset
   988
    nop(modulus - (target % modulus));
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   989
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   990
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   991
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   992
void MacroAssembler::andpd(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   993
  // Used in sign-masking with aligned address.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   994
  assert((UseAVX > 0) || (((intptr_t)src.target() & 15) == 0), "SSE mode requires address alignment 16 bytes");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   995
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   996
    Assembler::andpd(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   997
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   998
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
   999
    Assembler::andpd(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1000
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1001
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1002
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1003
void MacroAssembler::andps(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1004
  // Used in sign-masking with aligned address.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1005
  assert((UseAVX > 0) || (((intptr_t)src.target() & 15) == 0), "SSE mode requires address alignment 16 bytes");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1006
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1007
    Assembler::andps(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1008
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1009
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1010
    Assembler::andps(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1011
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1012
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1013
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1014
void MacroAssembler::andptr(Register dst, int32_t imm32) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1015
  LP64_ONLY(andq(dst, imm32)) NOT_LP64(andl(dst, imm32));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1016
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1017
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1018
void MacroAssembler::atomic_incl(Address counter_addr) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1019
  if (os::is_MP())
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1020
    lock();
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1021
  incrementl(counter_addr);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1022
}
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1023
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1024
void MacroAssembler::atomic_incl(AddressLiteral counter_addr, Register scr) {
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1025
  if (reachable(counter_addr)) {
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1026
    atomic_incl(as_Address(counter_addr));
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1027
  } else {
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1028
    lea(scr, counter_addr);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1029
    atomic_incl(Address(scr, 0));
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1030
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1031
}
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1032
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1033
#ifdef _LP64
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1034
void MacroAssembler::atomic_incq(Address counter_addr) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1035
  if (os::is_MP())
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1036
    lock();
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1037
  incrementq(counter_addr);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1038
}
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1039
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1040
void MacroAssembler::atomic_incq(AddressLiteral counter_addr, Register scr) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1041
  if (reachable(counter_addr)) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1042
    atomic_incq(as_Address(counter_addr));
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1043
  } else {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1044
    lea(scr, counter_addr);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1045
    atomic_incq(Address(scr, 0));
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1046
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1047
}
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1048
#endif
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1049
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1050
// Writes to stack successive pages until offset reached to check for
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1051
// stack overflow + shadow pages.  This clobbers tmp.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1052
void MacroAssembler::bang_stack_size(Register size, Register tmp) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1053
  movptr(tmp, rsp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1054
  // Bang stack for total size given plus shadow page size.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1055
  // Bang one page at a time because large size can bang beyond yellow and
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1056
  // red zones.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1057
  Label loop;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1058
  bind(loop);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1059
  movl(Address(tmp, (-os::vm_page_size())), size );
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1060
  subptr(tmp, os::vm_page_size());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1061
  subl(size, os::vm_page_size());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1062
  jcc(Assembler::greater, loop);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1063
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1064
  // Bang down shadow pages too.
21528
479228ecf6ac 8026775: nsk/jvmti/RedefineClasses/StressRedefine crashes due to EXCEPTION_ACCESS_VIOLATION
mikael
parents: 21188
diff changeset
  1065
  // At this point, (tmp-0) is the last address touched, so don't
479228ecf6ac 8026775: nsk/jvmti/RedefineClasses/StressRedefine crashes due to EXCEPTION_ACCESS_VIOLATION
mikael
parents: 21188
diff changeset
  1066
  // touch it again.  (It was touched as (tmp-pagesize) but then tmp
479228ecf6ac 8026775: nsk/jvmti/RedefineClasses/StressRedefine crashes due to EXCEPTION_ACCESS_VIOLATION
mikael
parents: 21188
diff changeset
  1067
  // was post-decremented.)  Skip this address by starting at i=1, and
479228ecf6ac 8026775: nsk/jvmti/RedefineClasses/StressRedefine crashes due to EXCEPTION_ACCESS_VIOLATION
mikael
parents: 21188
diff changeset
  1068
  // touch a few more pages below.  N.B.  It is important to touch all
35201
996db89f378e 8139864: Improve handling of stack protection zones.
goetz
parents: 35071
diff changeset
  1069
  // the way down including all pages in the shadow zone.
996db89f378e 8139864: Improve handling of stack protection zones.
goetz
parents: 35071
diff changeset
  1070
  for (int i = 1; i < ((int)JavaThread::stack_shadow_zone_size() / os::vm_page_size()); i++) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1071
    // this could be any sized move but this is can be a debugging crumb
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1072
    // so the bigger the better.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1073
    movptr(Address(tmp, (-i*os::vm_page_size())), size );
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1074
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1075
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1076
35071
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34633
diff changeset
  1077
void MacroAssembler::reserved_stack_check() {
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34633
diff changeset
  1078
    // testing if reserved zone needs to be enabled
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34633
diff changeset
  1079
    Label no_reserved_zone_enabling;
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34633
diff changeset
  1080
    Register thread = NOT_LP64(rsi) LP64_ONLY(r15_thread);
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34633
diff changeset
  1081
    NOT_LP64(get_thread(rsi);)
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34633
diff changeset
  1082
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34633
diff changeset
  1083
    cmpptr(rsp, Address(thread, JavaThread::reserved_stack_activation_offset()));
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34633
diff changeset
  1084
    jcc(Assembler::below, no_reserved_zone_enabling);
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34633
diff changeset
  1085
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34633
diff changeset
  1086
    call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::enable_stack_reserved_zone), thread);
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34633
diff changeset
  1087
    jump(RuntimeAddress(StubRoutines::throw_delayed_StackOverflowError_entry()));
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34633
diff changeset
  1088
    should_not_reach_here();
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34633
diff changeset
  1089
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34633
diff changeset
  1090
    bind(no_reserved_zone_enabling);
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34633
diff changeset
  1091
}
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34633
diff changeset
  1092
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1093
int MacroAssembler::biased_locking_enter(Register lock_reg,
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1094
                                         Register obj_reg,
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1095
                                         Register swap_reg,
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1096
                                         Register tmp_reg,
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1097
                                         bool swap_reg_contains_mark,
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1098
                                         Label& done,
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1099
                                         Label* slow_case,
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1100
                                         BiasedLockingCounters* counters) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1101
  assert(UseBiasedLocking, "why call this otherwise?");
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1102
  assert(swap_reg == rax, "swap_reg must be rax for cmpxchgq");
30749
39a2475280ee 6811960: x86 biasedlocking epoch expired rare bug
mockner
parents: 30310
diff changeset
  1103
  assert(tmp_reg != noreg, "tmp_reg must be supplied");
39a2475280ee 6811960: x86 biasedlocking epoch expired rare bug
mockner
parents: 30310
diff changeset
  1104
  assert_different_registers(lock_reg, obj_reg, swap_reg, tmp_reg);
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1105
  assert(markOopDesc::age_shift == markOopDesc::lock_bits + markOopDesc::biased_lock_bits, "biased locking makes assumptions about bit layout");
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1106
  Address mark_addr      (obj_reg, oopDesc::mark_offset_in_bytes());
37251
9fc139ad74b5 8152358: code and comment cleanups found during the hunt for 8077392
dcubed
parents: 36561
diff changeset
  1107
  NOT_LP64( Address saved_mark_addr(lock_reg, 0); )
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1108
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1109
  if (PrintBiasedLockingStatistics && counters == NULL) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1110
    counters = BiasedLocking::counters();
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1111
  }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1112
  // Biased locking
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1113
  // See whether the lock is currently biased toward our thread and
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1114
  // whether the epoch is still valid
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1115
  // Note that the runtime guarantees sufficient alignment of JavaThread
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1116
  // pointers to allow age to be placed into low bits
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1117
  // First check to see whether biasing is even enabled for this object
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1118
  Label cas_label;
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1119
  int null_check_offset = -1;
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1120
  if (!swap_reg_contains_mark) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1121
    null_check_offset = offset();
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1122
    movptr(swap_reg, mark_addr);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1123
  }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1124
  movptr(tmp_reg, swap_reg);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1125
  andptr(tmp_reg, markOopDesc::biased_lock_mask_in_place);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1126
  cmpptr(tmp_reg, markOopDesc::biased_lock_pattern);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1127
  jcc(Assembler::notEqual, cas_label);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1128
  // The bias pattern is present in the object's header. Need to check
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1129
  // whether the bias owner and the epoch are both still current.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1130
#ifndef _LP64
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1131
  // Note that because there is no current thread register on x86_32 we
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1132
  // need to store off the mark word we read out of the object to
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1133
  // avoid reloading it and needing to recheck invariants below. This
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1134
  // store is unfortunate but it makes the overall code shorter and
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1135
  // simpler.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1136
  movptr(saved_mark_addr, swap_reg);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1137
#endif
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1138
  if (swap_reg_contains_mark) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1139
    null_check_offset = offset();
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1140
  }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1141
  load_prototype_header(tmp_reg, obj_reg);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1142
#ifdef _LP64
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1143
  orptr(tmp_reg, r15_thread);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1144
  xorptr(tmp_reg, swap_reg);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1145
  Register header_reg = tmp_reg;
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1146
#else
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1147
  xorptr(tmp_reg, swap_reg);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1148
  get_thread(swap_reg);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1149
  xorptr(swap_reg, tmp_reg);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1150
  Register header_reg = swap_reg;
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1151
#endif
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1152
  andptr(header_reg, ~((int) markOopDesc::age_mask_in_place));
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1153
  if (counters != NULL) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1154
    cond_inc32(Assembler::zero,
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1155
               ExternalAddress((address) counters->biased_lock_entry_count_addr()));
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1156
  }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1157
  jcc(Assembler::equal, done);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1158
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1159
  Label try_revoke_bias;
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1160
  Label try_rebias;
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1161
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1162
  // At this point we know that the header has the bias pattern and
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1163
  // that we are not the bias owner in the current epoch. We need to
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1164
  // figure out more details about the state of the header in order to
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1165
  // know what operations can be legally performed on the object's
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1166
  // header.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1167
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1168
  // If the low three bits in the xor result aren't clear, that means
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1169
  // the prototype header is no longer biased and we have to revoke
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1170
  // the bias on this object.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1171
  testptr(header_reg, markOopDesc::biased_lock_mask_in_place);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1172
  jccb(Assembler::notZero, try_revoke_bias);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1173
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1174
  // Biasing is still enabled for this data type. See whether the
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1175
  // epoch of the current bias is still valid, meaning that the epoch
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1176
  // bits of the mark word are equal to the epoch bits of the
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1177
  // prototype header. (Note that the prototype header's epoch bits
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1178
  // only change at a safepoint.) If not, attempt to rebias the object
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1179
  // toward the current thread. Note that we must be absolutely sure
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1180
  // that the current epoch is invalid in order to do this because
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1181
  // otherwise the manipulations it performs on the mark word are
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1182
  // illegal.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1183
  testptr(header_reg, markOopDesc::epoch_mask_in_place);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1184
  jccb(Assembler::notZero, try_rebias);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1185
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1186
  // The epoch of the current bias is still valid but we know nothing
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1187
  // about the owner; it might be set or it might be clear. Try to
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1188
  // acquire the bias of the object using an atomic operation. If this
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1189
  // fails we will go in to the runtime to revoke the object's bias.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1190
  // Note that we first construct the presumed unbiased header so we
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1191
  // don't accidentally blow away another thread's valid bias.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1192
  NOT_LP64( movptr(swap_reg, saved_mark_addr); )
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1193
  andptr(swap_reg,
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1194
         markOopDesc::biased_lock_mask_in_place | markOopDesc::age_mask_in_place | markOopDesc::epoch_mask_in_place);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1195
#ifdef _LP64
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1196
  movptr(tmp_reg, swap_reg);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1197
  orptr(tmp_reg, r15_thread);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1198
#else
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1199
  get_thread(tmp_reg);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1200
  orptr(tmp_reg, swap_reg);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1201
#endif
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1202
  if (os::is_MP()) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1203
    lock();
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1204
  }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1205
  cmpxchgptr(tmp_reg, mark_addr); // compare tmp_reg and swap_reg
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1206
  // If the biasing toward our thread failed, this means that
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1207
  // another thread succeeded in biasing it toward itself and we
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1208
  // need to revoke that bias. The revocation will occur in the
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1209
  // interpreter runtime in the slow case.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1210
  if (counters != NULL) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1211
    cond_inc32(Assembler::zero,
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1212
               ExternalAddress((address) counters->anonymously_biased_lock_entry_count_addr()));
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1213
  }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1214
  if (slow_case != NULL) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1215
    jcc(Assembler::notZero, *slow_case);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1216
  }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1217
  jmp(done);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1218
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1219
  bind(try_rebias);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1220
  // At this point we know the epoch has expired, meaning that the
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1221
  // current "bias owner", if any, is actually invalid. Under these
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1222
  // circumstances _only_, we are allowed to use the current header's
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1223
  // value as the comparison value when doing the cas to acquire the
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1224
  // bias in the current epoch. In other words, we allow transfer of
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1225
  // the bias from one thread to another directly in this situation.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1226
  //
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1227
  // FIXME: due to a lack of registers we currently blow away the age
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1228
  // bits in this situation. Should attempt to preserve them.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1229
  load_prototype_header(tmp_reg, obj_reg);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1230
#ifdef _LP64
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1231
  orptr(tmp_reg, r15_thread);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1232
#else
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1233
  get_thread(swap_reg);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1234
  orptr(tmp_reg, swap_reg);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1235
  movptr(swap_reg, saved_mark_addr);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1236
#endif
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1237
  if (os::is_MP()) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1238
    lock();
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1239
  }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1240
  cmpxchgptr(tmp_reg, mark_addr); // compare tmp_reg and swap_reg
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1241
  // If the biasing toward our thread failed, then another thread
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1242
  // succeeded in biasing it toward itself and we need to revoke that
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1243
  // bias. The revocation will occur in the runtime in the slow case.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1244
  if (counters != NULL) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1245
    cond_inc32(Assembler::zero,
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1246
               ExternalAddress((address) counters->rebiased_lock_entry_count_addr()));
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1247
  }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1248
  if (slow_case != NULL) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1249
    jcc(Assembler::notZero, *slow_case);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1250
  }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1251
  jmp(done);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1252
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1253
  bind(try_revoke_bias);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1254
  // The prototype mark in the klass doesn't have the bias bit set any
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1255
  // more, indicating that objects of this data type are not supposed
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1256
  // to be biased any more. We are going to try to reset the mark of
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1257
  // this object to the prototype value and fall through to the
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1258
  // CAS-based locking scheme. Note that if our CAS fails, it means
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1259
  // that another thread raced us for the privilege of revoking the
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1260
  // bias of this particular object, so it's okay to continue in the
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1261
  // normal locking code.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1262
  //
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1263
  // FIXME: due to a lack of registers we currently blow away the age
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1264
  // bits in this situation. Should attempt to preserve them.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1265
  NOT_LP64( movptr(swap_reg, saved_mark_addr); )
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1266
  load_prototype_header(tmp_reg, obj_reg);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1267
  if (os::is_MP()) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1268
    lock();
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1269
  }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1270
  cmpxchgptr(tmp_reg, mark_addr); // compare tmp_reg and swap_reg
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1271
  // Fall through to the normal CAS-based lock, because no matter what
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1272
  // the result of the above CAS, some thread must have succeeded in
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1273
  // removing the bias bit from the object's header.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1274
  if (counters != NULL) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1275
    cond_inc32(Assembler::zero,
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1276
               ExternalAddress((address) counters->revoked_lock_entry_count_addr()));
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1277
  }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1278
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1279
  bind(cas_label);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1280
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1281
  return null_check_offset;
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1282
}
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1283
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1284
void MacroAssembler::biased_locking_exit(Register obj_reg, Register temp_reg, Label& done) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1285
  assert(UseBiasedLocking, "why call this otherwise?");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1286
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1287
  // Check for biased locking unlock case, which is a no-op
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1288
  // Note: we do not have to check the thread ID for two reasons.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1289
  // First, the interpreter checks for IllegalMonitorStateException at
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1290
  // a higher level. Second, if the bias was revoked while we held the
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1291
  // lock, the object could not be rebiased toward another thread, so
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1292
  // the bias bit would be clear.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1293
  movptr(temp_reg, Address(obj_reg, oopDesc::mark_offset_in_bytes()));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1294
  andptr(temp_reg, markOopDesc::biased_lock_mask_in_place);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1295
  cmpptr(temp_reg, markOopDesc::biased_lock_pattern);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1296
  jcc(Assembler::equal, done);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1297
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  1298
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1299
#ifdef COMPILER2
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1300
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1301
#if INCLUDE_RTM_OPT
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1302
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1303
// Update rtm_counters based on abort status
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1304
// input: abort_status
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1305
//        rtm_counters (RTMLockingCounters*)
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1306
// flags are killed
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1307
void MacroAssembler::rtm_counters_update(Register abort_status, Register rtm_counters) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1308
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1309
  atomic_incptr(Address(rtm_counters, RTMLockingCounters::abort_count_offset()));
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1310
  if (PrintPreciseRTMLockingStatistics) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1311
    for (int i = 0; i < RTMLockingCounters::ABORT_STATUS_LIMIT; i++) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1312
      Label check_abort;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1313
      testl(abort_status, (1<<i));
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1314
      jccb(Assembler::equal, check_abort);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1315
      atomic_incptr(Address(rtm_counters, RTMLockingCounters::abortX_count_offset() + (i * sizeof(uintx))));
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1316
      bind(check_abort);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1317
    }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1318
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1319
}
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1320
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1321
// Branch if (random & (count-1) != 0), count is 2^n
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1322
// tmp, scr and flags are killed
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1323
void MacroAssembler::branch_on_random_using_rdtsc(Register tmp, Register scr, int count, Label& brLabel) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1324
  assert(tmp == rax, "");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1325
  assert(scr == rdx, "");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1326
  rdtsc(); // modifies EDX:EAX
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1327
  andptr(tmp, count-1);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1328
  jccb(Assembler::notZero, brLabel);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1329
}
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1330
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1331
// Perform abort ratio calculation, set no_rtm bit if high ratio
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1332
// input:  rtm_counters_Reg (RTMLockingCounters* address)
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1333
// tmpReg, rtm_counters_Reg and flags are killed
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1334
void MacroAssembler::rtm_abort_ratio_calculation(Register tmpReg,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1335
                                                 Register rtm_counters_Reg,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1336
                                                 RTMLockingCounters* rtm_counters,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1337
                                                 Metadata* method_data) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1338
  Label L_done, L_check_always_rtm1, L_check_always_rtm2;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1339
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1340
  if (RTMLockingCalculationDelay > 0) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1341
    // Delay calculation
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1342
    movptr(tmpReg, ExternalAddress((address) RTMLockingCounters::rtm_calculation_flag_addr()), tmpReg);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1343
    testptr(tmpReg, tmpReg);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1344
    jccb(Assembler::equal, L_done);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1345
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1346
  // Abort ratio calculation only if abort_count > RTMAbortThreshold
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1347
  //   Aborted transactions = abort_count * 100
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1348
  //   All transactions = total_count *  RTMTotalCountIncrRate
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1349
  //   Set no_rtm bit if (Aborted transactions >= All transactions * RTMAbortRatio)
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1350
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1351
  movptr(tmpReg, Address(rtm_counters_Reg, RTMLockingCounters::abort_count_offset()));
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1352
  cmpptr(tmpReg, RTMAbortThreshold);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1353
  jccb(Assembler::below, L_check_always_rtm2);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1354
  imulptr(tmpReg, tmpReg, 100);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1355
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1356
  Register scrReg = rtm_counters_Reg;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1357
  movptr(scrReg, Address(rtm_counters_Reg, RTMLockingCounters::total_count_offset()));
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1358
  imulptr(scrReg, scrReg, RTMTotalCountIncrRate);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1359
  imulptr(scrReg, scrReg, RTMAbortRatio);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1360
  cmpptr(tmpReg, scrReg);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1361
  jccb(Assembler::below, L_check_always_rtm1);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1362
  if (method_data != NULL) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1363
    // set rtm_state to "no rtm" in MDO
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1364
    mov_metadata(tmpReg, method_data);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1365
    if (os::is_MP()) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1366
      lock();
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1367
    }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1368
    orl(Address(tmpReg, MethodData::rtm_state_offset_in_bytes()), NoRTM);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1369
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1370
  jmpb(L_done);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1371
  bind(L_check_always_rtm1);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1372
  // Reload RTMLockingCounters* address
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1373
  lea(rtm_counters_Reg, ExternalAddress((address)rtm_counters));
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1374
  bind(L_check_always_rtm2);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1375
  movptr(tmpReg, Address(rtm_counters_Reg, RTMLockingCounters::total_count_offset()));
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1376
  cmpptr(tmpReg, RTMLockingThreshold / RTMTotalCountIncrRate);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1377
  jccb(Assembler::below, L_done);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1378
  if (method_data != NULL) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1379
    // set rtm_state to "always rtm" in MDO
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1380
    mov_metadata(tmpReg, method_data);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1381
    if (os::is_MP()) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1382
      lock();
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1383
    }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1384
    orl(Address(tmpReg, MethodData::rtm_state_offset_in_bytes()), UseRTM);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1385
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1386
  bind(L_done);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1387
}
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1388
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1389
// Update counters and perform abort ratio calculation
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1390
// input:  abort_status_Reg
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1391
// rtm_counters_Reg, flags are killed
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1392
void MacroAssembler::rtm_profiling(Register abort_status_Reg,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1393
                                   Register rtm_counters_Reg,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1394
                                   RTMLockingCounters* rtm_counters,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1395
                                   Metadata* method_data,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1396
                                   bool profile_rtm) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1397
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1398
  assert(rtm_counters != NULL, "should not be NULL when profiling RTM");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1399
  // update rtm counters based on rax value at abort
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1400
  // reads abort_status_Reg, updates flags
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1401
  lea(rtm_counters_Reg, ExternalAddress((address)rtm_counters));
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1402
  rtm_counters_update(abort_status_Reg, rtm_counters_Reg);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1403
  if (profile_rtm) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1404
    // Save abort status because abort_status_Reg is used by following code.
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1405
    if (RTMRetryCount > 0) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1406
      push(abort_status_Reg);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1407
    }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1408
    assert(rtm_counters != NULL, "should not be NULL when profiling RTM");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1409
    rtm_abort_ratio_calculation(abort_status_Reg, rtm_counters_Reg, rtm_counters, method_data);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1410
    // restore abort status
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1411
    if (RTMRetryCount > 0) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1412
      pop(abort_status_Reg);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1413
    }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1414
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1415
}
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1416
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1417
// Retry on abort if abort's status is 0x6: can retry (0x2) | memory conflict (0x4)
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1418
// inputs: retry_count_Reg
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1419
//       : abort_status_Reg
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1420
// output: retry_count_Reg decremented by 1
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1421
// flags are killed
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1422
void MacroAssembler::rtm_retry_lock_on_abort(Register retry_count_Reg, Register abort_status_Reg, Label& retryLabel) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1423
  Label doneRetry;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1424
  assert(abort_status_Reg == rax, "");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1425
  // The abort reason bits are in eax (see all states in rtmLocking.hpp)
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1426
  // 0x6 = conflict on which we can retry (0x2) | memory conflict (0x4)
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1427
  // if reason is in 0x6 and retry count != 0 then retry
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1428
  andptr(abort_status_Reg, 0x6);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1429
  jccb(Assembler::zero, doneRetry);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1430
  testl(retry_count_Reg, retry_count_Reg);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1431
  jccb(Assembler::zero, doneRetry);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1432
  pause();
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1433
  decrementl(retry_count_Reg);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1434
  jmp(retryLabel);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1435
  bind(doneRetry);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1436
}
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1437
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1438
// Spin and retry if lock is busy,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1439
// inputs: box_Reg (monitor address)
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1440
//       : retry_count_Reg
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1441
// output: retry_count_Reg decremented by 1
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1442
//       : clear z flag if retry count exceeded
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1443
// tmp_Reg, scr_Reg, flags are killed
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1444
void MacroAssembler::rtm_retry_lock_on_busy(Register retry_count_Reg, Register box_Reg,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1445
                                            Register tmp_Reg, Register scr_Reg, Label& retryLabel) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1446
  Label SpinLoop, SpinExit, doneRetry;
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  1447
  int owner_offset = OM_OFFSET_NO_MONITOR_VALUE_TAG(owner);
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1448
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1449
  testl(retry_count_Reg, retry_count_Reg);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1450
  jccb(Assembler::zero, doneRetry);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1451
  decrementl(retry_count_Reg);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1452
  movptr(scr_Reg, RTMSpinLoopCount);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1453
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1454
  bind(SpinLoop);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1455
  pause();
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1456
  decrementl(scr_Reg);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1457
  jccb(Assembler::lessEqual, SpinExit);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1458
  movptr(tmp_Reg, Address(box_Reg, owner_offset));
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1459
  testptr(tmp_Reg, tmp_Reg);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1460
  jccb(Assembler::notZero, SpinLoop);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1461
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1462
  bind(SpinExit);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1463
  jmp(retryLabel);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1464
  bind(doneRetry);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1465
  incrementl(retry_count_Reg); // clear z flag
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1466
}
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1467
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1468
// Use RTM for normal stack locks
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1469
// Input: objReg (object to lock)
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1470
void MacroAssembler::rtm_stack_locking(Register objReg, Register tmpReg, Register scrReg,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1471
                                       Register retry_on_abort_count_Reg,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1472
                                       RTMLockingCounters* stack_rtm_counters,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1473
                                       Metadata* method_data, bool profile_rtm,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1474
                                       Label& DONE_LABEL, Label& IsInflated) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1475
  assert(UseRTMForStackLocks, "why call this otherwise?");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1476
  assert(!UseBiasedLocking, "Biased locking is not supported with RTM locking");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1477
  assert(tmpReg == rax, "");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1478
  assert(scrReg == rdx, "");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1479
  Label L_rtm_retry, L_decrement_retry, L_on_abort;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1480
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1481
  if (RTMRetryCount > 0) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1482
    movl(retry_on_abort_count_Reg, RTMRetryCount); // Retry on abort
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1483
    bind(L_rtm_retry);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1484
  }
23847
d792e42aeb4f 8038939: Some options related to RTM locking optimization works inconsistently
kvn
parents: 23491
diff changeset
  1485
  movptr(tmpReg, Address(objReg, 0));
d792e42aeb4f 8038939: Some options related to RTM locking optimization works inconsistently
kvn
parents: 23491
diff changeset
  1486
  testptr(tmpReg, markOopDesc::monitor_value);  // inflated vs stack-locked|neutral|biased
d792e42aeb4f 8038939: Some options related to RTM locking optimization works inconsistently
kvn
parents: 23491
diff changeset
  1487
  jcc(Assembler::notZero, IsInflated);
d792e42aeb4f 8038939: Some options related to RTM locking optimization works inconsistently
kvn
parents: 23491
diff changeset
  1488
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1489
  if (PrintPreciseRTMLockingStatistics || profile_rtm) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1490
    Label L_noincrement;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1491
    if (RTMTotalCountIncrRate > 1) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1492
      // tmpReg, scrReg and flags are killed
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1493
      branch_on_random_using_rdtsc(tmpReg, scrReg, (int)RTMTotalCountIncrRate, L_noincrement);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1494
    }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1495
    assert(stack_rtm_counters != NULL, "should not be NULL when profiling RTM");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1496
    atomic_incptr(ExternalAddress((address)stack_rtm_counters->total_count_addr()), scrReg);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1497
    bind(L_noincrement);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1498
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1499
  xbegin(L_on_abort);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1500
  movptr(tmpReg, Address(objReg, 0));       // fetch markword
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1501
  andptr(tmpReg, markOopDesc::biased_lock_mask_in_place); // look at 3 lock bits
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1502
  cmpptr(tmpReg, markOopDesc::unlocked_value);            // bits = 001 unlocked
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1503
  jcc(Assembler::equal, DONE_LABEL);        // all done if unlocked
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1504
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1505
  Register abort_status_Reg = tmpReg; // status of abort is stored in RAX
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1506
  if (UseRTMXendForLockBusy) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1507
    xend();
23847
d792e42aeb4f 8038939: Some options related to RTM locking optimization works inconsistently
kvn
parents: 23491
diff changeset
  1508
    movptr(abort_status_Reg, 0x2);   // Set the abort status to 2 (so we can retry)
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1509
    jmp(L_decrement_retry);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1510
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1511
  else {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1512
    xabort(0);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1513
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1514
  bind(L_on_abort);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1515
  if (PrintPreciseRTMLockingStatistics || profile_rtm) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1516
    rtm_profiling(abort_status_Reg, scrReg, stack_rtm_counters, method_data, profile_rtm);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1517
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1518
  bind(L_decrement_retry);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1519
  if (RTMRetryCount > 0) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1520
    // retry on lock abort if abort status is 'can retry' (0x2) or 'memory conflict' (0x4)
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1521
    rtm_retry_lock_on_abort(retry_on_abort_count_Reg, abort_status_Reg, L_rtm_retry);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1522
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1523
}
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1524
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1525
// Use RTM for inflating locks
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1526
// inputs: objReg (object to lock)
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1527
//         boxReg (on-stack box address (displaced header location) - KILLED)
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  1528
//         tmpReg (ObjectMonitor address + markOopDesc::monitor_value)
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1529
void MacroAssembler::rtm_inflated_locking(Register objReg, Register boxReg, Register tmpReg,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1530
                                          Register scrReg, Register retry_on_busy_count_Reg,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1531
                                          Register retry_on_abort_count_Reg,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1532
                                          RTMLockingCounters* rtm_counters,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1533
                                          Metadata* method_data, bool profile_rtm,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1534
                                          Label& DONE_LABEL) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1535
  assert(UseRTMLocking, "why call this otherwise?");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1536
  assert(tmpReg == rax, "");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1537
  assert(scrReg == rdx, "");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1538
  Label L_rtm_retry, L_decrement_retry, L_on_abort;
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  1539
  int owner_offset = OM_OFFSET_NO_MONITOR_VALUE_TAG(owner);
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1540
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1541
  // Without cast to int32_t a movptr will destroy r10 which is typically obj
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1542
  movptr(Address(boxReg, 0), (int32_t)intptr_t(markOopDesc::unused_mark()));
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1543
  movptr(boxReg, tmpReg); // Save ObjectMonitor address
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1544
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1545
  if (RTMRetryCount > 0) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1546
    movl(retry_on_busy_count_Reg, RTMRetryCount);  // Retry on lock busy
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1547
    movl(retry_on_abort_count_Reg, RTMRetryCount); // Retry on abort
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1548
    bind(L_rtm_retry);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1549
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1550
  if (PrintPreciseRTMLockingStatistics || profile_rtm) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1551
    Label L_noincrement;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1552
    if (RTMTotalCountIncrRate > 1) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1553
      // tmpReg, scrReg and flags are killed
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1554
      branch_on_random_using_rdtsc(tmpReg, scrReg, (int)RTMTotalCountIncrRate, L_noincrement);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1555
    }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1556
    assert(rtm_counters != NULL, "should not be NULL when profiling RTM");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1557
    atomic_incptr(ExternalAddress((address)rtm_counters->total_count_addr()), scrReg);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1558
    bind(L_noincrement);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1559
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1560
  xbegin(L_on_abort);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1561
  movptr(tmpReg, Address(objReg, 0));
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1562
  movptr(tmpReg, Address(tmpReg, owner_offset));
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1563
  testptr(tmpReg, tmpReg);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1564
  jcc(Assembler::zero, DONE_LABEL);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1565
  if (UseRTMXendForLockBusy) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1566
    xend();
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1567
    jmp(L_decrement_retry);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1568
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1569
  else {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1570
    xabort(0);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1571
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1572
  bind(L_on_abort);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1573
  Register abort_status_Reg = tmpReg; // status of abort is stored in RAX
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1574
  if (PrintPreciseRTMLockingStatistics || profile_rtm) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1575
    rtm_profiling(abort_status_Reg, scrReg, rtm_counters, method_data, profile_rtm);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1576
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1577
  if (RTMRetryCount > 0) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1578
    // retry on lock abort if abort status is 'can retry' (0x2) or 'memory conflict' (0x4)
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1579
    rtm_retry_lock_on_abort(retry_on_abort_count_Reg, abort_status_Reg, L_rtm_retry);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1580
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1581
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1582
  movptr(tmpReg, Address(boxReg, owner_offset)) ;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1583
  testptr(tmpReg, tmpReg) ;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1584
  jccb(Assembler::notZero, L_decrement_retry) ;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1585
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1586
  // Appears unlocked - try to swing _owner from null to non-null.
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1587
  // Invariant: tmpReg == 0.  tmpReg is EAX which is the implicit cmpxchg comparand.
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1588
#ifdef _LP64
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1589
  Register threadReg = r15_thread;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1590
#else
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1591
  get_thread(scrReg);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1592
  Register threadReg = scrReg;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1593
#endif
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1594
  if (os::is_MP()) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1595
    lock();
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1596
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1597
  cmpxchgptr(threadReg, Address(boxReg, owner_offset)); // Updates tmpReg
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1598
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1599
  if (RTMRetryCount > 0) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1600
    // success done else retry
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1601
    jccb(Assembler::equal, DONE_LABEL) ;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1602
    bind(L_decrement_retry);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1603
    // Spin and retry if lock is busy.
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1604
    rtm_retry_lock_on_busy(retry_on_busy_count_Reg, boxReg, tmpReg, scrReg, L_rtm_retry);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1605
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1606
  else {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1607
    bind(L_decrement_retry);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1608
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1609
}
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1610
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1611
#endif //  INCLUDE_RTM_OPT
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1612
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1613
// Fast_Lock and Fast_Unlock used by C2
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1614
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1615
// Because the transitions from emitted code to the runtime
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1616
// monitorenter/exit helper stubs are so slow it's critical that
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1617
// we inline both the stack-locking fast-path and the inflated fast path.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1618
//
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1619
// See also: cmpFastLock and cmpFastUnlock.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1620
//
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1621
// What follows is a specialized inline transliteration of the code
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1622
// in slow_enter() and slow_exit().  If we're concerned about I$ bloat
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1623
// another option would be to emit TrySlowEnter and TrySlowExit methods
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1624
// at startup-time.  These methods would accept arguments as
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1625
// (rax,=Obj, rbx=Self, rcx=box, rdx=Scratch) and return success-failure
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1626
// indications in the icc.ZFlag.  Fast_Lock and Fast_Unlock would simply
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1627
// marshal the arguments and emit calls to TrySlowEnter and TrySlowExit.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1628
// In practice, however, the # of lock sites is bounded and is usually small.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1629
// Besides the call overhead, TrySlowEnter and TrySlowExit might suffer
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1630
// if the processor uses simple bimodal branch predictors keyed by EIP
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1631
// Since the helper routines would be called from multiple synchronization
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1632
// sites.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1633
//
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1634
// An even better approach would be write "MonitorEnter()" and "MonitorExit()"
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1635
// in java - using j.u.c and unsafe - and just bind the lock and unlock sites
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1636
// to those specialized methods.  That'd give us a mostly platform-independent
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1637
// implementation that the JITs could optimize and inline at their pleasure.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1638
// Done correctly, the only time we'd need to cross to native could would be
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1639
// to park() or unpark() threads.  We'd also need a few more unsafe operators
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1640
// to (a) prevent compiler-JIT reordering of non-volatile accesses, and
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1641
// (b) explicit barriers or fence operations.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1642
//
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1643
// TODO:
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1644
//
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1645
// *  Arrange for C2 to pass "Self" into Fast_Lock and Fast_Unlock in one of the registers (scr).
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1646
//    This avoids manifesting the Self pointer in the Fast_Lock and Fast_Unlock terminals.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1647
//    Given TLAB allocation, Self is usually manifested in a register, so passing it into
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1648
//    the lock operators would typically be faster than reifying Self.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1649
//
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1650
// *  Ideally I'd define the primitives as:
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1651
//       fast_lock   (nax Obj, nax box, EAX tmp, nax scr) where box, tmp and scr are KILLED.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1652
//       fast_unlock (nax Obj, EAX box, nax tmp) where box and tmp are KILLED
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1653
//    Unfortunately ADLC bugs prevent us from expressing the ideal form.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1654
//    Instead, we're stuck with a rather awkward and brittle register assignments below.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1655
//    Furthermore the register assignments are overconstrained, possibly resulting in
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1656
//    sub-optimal code near the synchronization site.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1657
//
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1658
// *  Eliminate the sp-proximity tests and just use "== Self" tests instead.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1659
//    Alternately, use a better sp-proximity test.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1660
//
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1661
// *  Currently ObjectMonitor._Owner can hold either an sp value or a (THREAD *) value.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1662
//    Either one is sufficient to uniquely identify a thread.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1663
//    TODO: eliminate use of sp in _owner and use get_thread(tr) instead.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1664
//
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1665
// *  Intrinsify notify() and notifyAll() for the common cases where the
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1666
//    object is locked by the calling thread but the waitlist is empty.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1667
//    avoid the expensive JNI call to JVM_Notify() and JVM_NotifyAll().
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1668
//
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1669
// *  use jccb and jmpb instead of jcc and jmp to improve code density.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1670
//    But beware of excessive branch density on AMD Opterons.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1671
//
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1672
// *  Both Fast_Lock and Fast_Unlock set the ICC.ZF to indicate success
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1673
//    or failure of the fast-path.  If the fast-path fails then we pass
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1674
//    control to the slow-path, typically in C.  In Fast_Lock and
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1675
//    Fast_Unlock we often branch to DONE_LABEL, just to find that C2
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1676
//    will emit a conditional branch immediately after the node.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1677
//    So we have branches to branches and lots of ICC.ZF games.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1678
//    Instead, it might be better to have C2 pass a "FailureLabel"
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1679
//    into Fast_Lock and Fast_Unlock.  In the case of success, control
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1680
//    will drop through the node.  ICC.ZF is undefined at exit.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1681
//    In the case of failure, the node will branch directly to the
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1682
//    FailureLabel
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1683
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1684
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1685
// obj: object to lock
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1686
// box: on-stack box address (displaced header location) - KILLED
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1687
// rax,: tmp -- KILLED
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1688
// scr: tmp -- KILLED
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1689
void MacroAssembler::fast_lock(Register objReg, Register boxReg, Register tmpReg,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1690
                               Register scrReg, Register cx1Reg, Register cx2Reg,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1691
                               BiasedLockingCounters* counters,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1692
                               RTMLockingCounters* rtm_counters,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1693
                               RTMLockingCounters* stack_rtm_counters,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1694
                               Metadata* method_data,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1695
                               bool use_rtm, bool profile_rtm) {
37251
9fc139ad74b5 8152358: code and comment cleanups found during the hunt for 8077392
dcubed
parents: 36561
diff changeset
  1696
  // Ensure the register assignments are disjoint
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1697
  assert(tmpReg == rax, "");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1698
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1699
  if (use_rtm) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1700
    assert_different_registers(objReg, boxReg, tmpReg, scrReg, cx1Reg, cx2Reg);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1701
  } else {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1702
    assert(cx1Reg == noreg, "");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1703
    assert(cx2Reg == noreg, "");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1704
    assert_different_registers(objReg, boxReg, tmpReg, scrReg);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1705
  }
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1706
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1707
  if (counters != NULL) {
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1708
    atomic_incl(ExternalAddress((address)counters->total_entry_count_addr()), scrReg);
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1709
  }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1710
  if (EmitSync & 1) {
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  1711
      // set box->dhw = markOopDesc::unused_mark()
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1712
      // Force all sync thru slow-path: slow_enter() and slow_exit()
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1713
      movptr (Address(boxReg, 0), (int32_t)intptr_t(markOopDesc::unused_mark()));
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1714
      cmpptr (rsp, (int32_t)NULL_WORD);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1715
  } else {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1716
    // Possible cases that we'll encounter in fast_lock
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1717
    // ------------------------------------------------
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1718
    // * Inflated
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1719
    //    -- unlocked
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1720
    //    -- Locked
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1721
    //       = by self
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1722
    //       = by other
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1723
    // * biased
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1724
    //    -- by Self
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1725
    //    -- by other
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1726
    // * neutral
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1727
    // * stack-locked
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1728
    //    -- by self
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1729
    //       = sp-proximity test hits
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1730
    //       = sp-proximity test generates false-negative
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1731
    //    -- by other
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1732
    //
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1733
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1734
    Label IsInflated, DONE_LABEL;
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1735
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1736
    // it's stack-locked, biased or neutral
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1737
    // TODO: optimize away redundant LDs of obj->mark and improve the markword triage
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1738
    // order to reduce the number of conditional branches in the most common cases.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1739
    // Beware -- there's a subtle invariant that fetch of the markword
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1740
    // at [FETCH], below, will never observe a biased encoding (*101b).
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1741
    // If this invariant is not held we risk exclusion (safety) failure.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1742
    if (UseBiasedLocking && !UseOptoBiasInlining) {
27638
1142a24d73eb 8062950: Bug in locking code when UseOptoBiasInlining is disabled: assert(dmw->is_neutral()) failed: invariant
mdoerr
parents: 26434
diff changeset
  1743
      biased_locking_enter(boxReg, objReg, tmpReg, scrReg, false, DONE_LABEL, NULL, counters);
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1744
    }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1745
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1746
#if INCLUDE_RTM_OPT
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1747
    if (UseRTMForStackLocks && use_rtm) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1748
      rtm_stack_locking(objReg, tmpReg, scrReg, cx2Reg,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1749
                        stack_rtm_counters, method_data, profile_rtm,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1750
                        DONE_LABEL, IsInflated);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1751
    }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1752
#endif // INCLUDE_RTM_OPT
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1753
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1754
    movptr(tmpReg, Address(objReg, 0));          // [FETCH]
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1755
    testptr(tmpReg, markOopDesc::monitor_value); // inflated vs stack-locked|neutral|biased
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1756
    jccb(Assembler::notZero, IsInflated);
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1757
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1758
    // Attempt stack-locking ...
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1759
    orptr (tmpReg, markOopDesc::unlocked_value);
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1760
    movptr(Address(boxReg, 0), tmpReg);          // Anticipate successful CAS
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1761
    if (os::is_MP()) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1762
      lock();
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1763
    }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1764
    cmpxchgptr(boxReg, Address(objReg, 0));      // Updates tmpReg
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1765
    if (counters != NULL) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1766
      cond_inc32(Assembler::equal,
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1767
                 ExternalAddress((address)counters->fast_path_entry_count_addr()));
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1768
    }
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1769
    jcc(Assembler::equal, DONE_LABEL);           // Success
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1770
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1771
    // Recursive locking.
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1772
    // The object is stack-locked: markword contains stack pointer to BasicLock.
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1773
    // Locked by current thread if difference with current SP is less than one page.
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1774
    subptr(tmpReg, rsp);
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1775
    // Next instruction set ZFlag == 1 (Success) if difference is less then one page.
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1776
    andptr(tmpReg, (int32_t) (NOT_LP64(0xFFFFF003) LP64_ONLY(7 - os::vm_page_size())) );
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1777
    movptr(Address(boxReg, 0), tmpReg);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1778
    if (counters != NULL) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1779
      cond_inc32(Assembler::equal,
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1780
                 ExternalAddress((address)counters->fast_path_entry_count_addr()));
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1781
    }
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1782
    jmp(DONE_LABEL);
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1783
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1784
    bind(IsInflated);
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  1785
    // The object is inflated. tmpReg contains pointer to ObjectMonitor* + markOopDesc::monitor_value
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1786
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1787
#if INCLUDE_RTM_OPT
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1788
    // Use the same RTM locking code in 32- and 64-bit VM.
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1789
    if (use_rtm) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1790
      rtm_inflated_locking(objReg, boxReg, tmpReg, scrReg, cx1Reg, cx2Reg,
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1791
                           rtm_counters, method_data, profile_rtm, DONE_LABEL);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1792
    } else {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1793
#endif // INCLUDE_RTM_OPT
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1794
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1795
#ifndef _LP64
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1796
    // The object is inflated.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1797
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1798
    // boxReg refers to the on-stack BasicLock in the current frame.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1799
    // We'd like to write:
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  1800
    //   set box->_displaced_header = markOopDesc::unused_mark().  Any non-0 value suffices.
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1801
    // This is convenient but results a ST-before-CAS penalty.  The following CAS suffers
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1802
    // additional latency as we have another ST in the store buffer that must drain.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1803
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1804
    if (EmitSync & 8192) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1805
       movptr(Address(boxReg, 0), 3);            // results in ST-before-CAS penalty
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1806
       get_thread (scrReg);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1807
       movptr(boxReg, tmpReg);                    // consider: LEA box, [tmp-2]
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1808
       movptr(tmpReg, NULL_WORD);                 // consider: xor vs mov
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1809
       if (os::is_MP()) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1810
         lock();
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1811
       }
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  1812
       cmpxchgptr(scrReg, Address(boxReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner)));
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1813
    } else
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1814
    if ((EmitSync & 128) == 0) {                      // avoid ST-before-CAS
31782
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 31592
diff changeset
  1815
       // register juggle because we need tmpReg for cmpxchgptr below
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1816
       movptr(scrReg, boxReg);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1817
       movptr(boxReg, tmpReg);                   // consider: LEA box, [tmp-2]
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1818
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1819
       // Using a prefetchw helps avoid later RTS->RTO upgrades and cache probes
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1820
       if ((EmitSync & 2048) && VM_Version::supports_3dnow_prefetch() && os::is_MP()) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1821
          // prefetchw [eax + Offset(_owner)-2]
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  1822
          prefetchw(Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner)));
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1823
       }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1824
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1825
       if ((EmitSync & 64) == 0) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1826
         // Optimistic form: consider XORL tmpReg,tmpReg
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1827
         movptr(tmpReg, NULL_WORD);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1828
       } else {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1829
         // Can suffer RTS->RTO upgrades on shared or cold $ lines
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1830
         // Test-And-CAS instead of CAS
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  1831
         movptr(tmpReg, Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner)));   // rax, = m->_owner
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1832
         testptr(tmpReg, tmpReg);                   // Locked ?
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1833
         jccb  (Assembler::notZero, DONE_LABEL);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1834
       }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1835
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1836
       // Appears unlocked - try to swing _owner from null to non-null.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1837
       // Ideally, I'd manifest "Self" with get_thread and then attempt
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1838
       // to CAS the register containing Self into m->Owner.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1839
       // But we don't have enough registers, so instead we can either try to CAS
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1840
       // rsp or the address of the box (in scr) into &m->owner.  If the CAS succeeds
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1841
       // we later store "Self" into m->Owner.  Transiently storing a stack address
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1842
       // (rsp or the address of the box) into  m->owner is harmless.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1843
       // Invariant: tmpReg == 0.  tmpReg is EAX which is the implicit cmpxchg comparand.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1844
       if (os::is_MP()) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1845
         lock();
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1846
       }
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  1847
       cmpxchgptr(scrReg, Address(boxReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner)));
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1848
       movptr(Address(scrReg, 0), 3);          // box->_displaced_header = 3
31782
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 31592
diff changeset
  1849
       // If we weren't able to swing _owner from NULL to the BasicLock
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 31592
diff changeset
  1850
       // then take the slow path.
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1851
       jccb  (Assembler::notZero, DONE_LABEL);
31782
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 31592
diff changeset
  1852
       // update _owner from BasicLock to thread
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1853
       get_thread (scrReg);                    // beware: clobbers ICCs
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  1854
       movptr(Address(boxReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner)), scrReg);
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1855
       xorptr(boxReg, boxReg);                 // set icc.ZFlag = 1 to indicate success
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1856
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1857
       // If the CAS fails we can either retry or pass control to the slow-path.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1858
       // We use the latter tactic.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1859
       // Pass the CAS result in the icc.ZFlag into DONE_LABEL
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1860
       // If the CAS was successful ...
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1861
       //   Self has acquired the lock
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1862
       //   Invariant: m->_recursions should already be 0, so we don't need to explicitly set it.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1863
       // Intentional fall-through into DONE_LABEL ...
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1864
    } else {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1865
       movptr(Address(boxReg, 0), intptr_t(markOopDesc::unused_mark()));  // results in ST-before-CAS penalty
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1866
       movptr(boxReg, tmpReg);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1867
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1868
       // Using a prefetchw helps avoid later RTS->RTO upgrades and cache probes
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1869
       if ((EmitSync & 2048) && VM_Version::supports_3dnow_prefetch() && os::is_MP()) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1870
          // prefetchw [eax + Offset(_owner)-2]
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  1871
          prefetchw(Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner)));
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1872
       }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1873
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1874
       if ((EmitSync & 64) == 0) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1875
         // Optimistic form
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1876
         xorptr  (tmpReg, tmpReg);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1877
       } else {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1878
         // Can suffer RTS->RTO upgrades on shared or cold $ lines
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  1879
         movptr(tmpReg, Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner)));   // rax, = m->_owner
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1880
         testptr(tmpReg, tmpReg);                   // Locked ?
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1881
         jccb  (Assembler::notZero, DONE_LABEL);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1882
       }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1883
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1884
       // Appears unlocked - try to swing _owner from null to non-null.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1885
       // Use either "Self" (in scr) or rsp as thread identity in _owner.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1886
       // Invariant: tmpReg == 0.  tmpReg is EAX which is the implicit cmpxchg comparand.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1887
       get_thread (scrReg);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1888
       if (os::is_MP()) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1889
         lock();
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1890
       }
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  1891
       cmpxchgptr(scrReg, Address(boxReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner)));
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1892
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1893
       // If the CAS fails we can either retry or pass control to the slow-path.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1894
       // We use the latter tactic.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1895
       // Pass the CAS result in the icc.ZFlag into DONE_LABEL
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1896
       // If the CAS was successful ...
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1897
       //   Self has acquired the lock
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1898
       //   Invariant: m->_recursions should already be 0, so we don't need to explicitly set it.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1899
       // Intentional fall-through into DONE_LABEL ...
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1900
    }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1901
#else // _LP64
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1902
    // It's inflated
29070
b0a5fc9c59c8 8061553: Contended Locking fast enter bucket
dcubed
parents: 28719
diff changeset
  1903
    movq(scrReg, tmpReg);
b0a5fc9c59c8 8061553: Contended Locking fast enter bucket
dcubed
parents: 28719
diff changeset
  1904
    xorq(tmpReg, tmpReg);
b0a5fc9c59c8 8061553: Contended Locking fast enter bucket
dcubed
parents: 28719
diff changeset
  1905
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1906
    if (os::is_MP()) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1907
      lock();
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1908
    }
29070
b0a5fc9c59c8 8061553: Contended Locking fast enter bucket
dcubed
parents: 28719
diff changeset
  1909
    cmpxchgptr(r15_thread, Address(scrReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner)));
b0a5fc9c59c8 8061553: Contended Locking fast enter bucket
dcubed
parents: 28719
diff changeset
  1910
    // Unconditionally set box->_displaced_header = markOopDesc::unused_mark().
b0a5fc9c59c8 8061553: Contended Locking fast enter bucket
dcubed
parents: 28719
diff changeset
  1911
    // Without cast to int32_t movptr will destroy r10 which is typically obj.
b0a5fc9c59c8 8061553: Contended Locking fast enter bucket
dcubed
parents: 28719
diff changeset
  1912
    movptr(Address(boxReg, 0), (int32_t)intptr_t(markOopDesc::unused_mark()));
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1913
    // Intentional fall-through into DONE_LABEL ...
29070
b0a5fc9c59c8 8061553: Contended Locking fast enter bucket
dcubed
parents: 28719
diff changeset
  1914
    // Propagate ICC.ZF from CAS above into DONE_LABEL.
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1915
#endif // _LP64
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1916
#if INCLUDE_RTM_OPT
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1917
    } // use_rtm()
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1918
#endif
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1919
    // DONE_LABEL is a hot target - we'd really like to place it at the
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1920
    // start of cache line by padding with NOPs.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1921
    // See the AMD and Intel software optimization manuals for the
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1922
    // most efficient "long" NOP encodings.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1923
    // Unfortunately none of our alignment mechanisms suffice.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1924
    bind(DONE_LABEL);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1925
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1926
    // At DONE_LABEL the icc ZFlag is set as follows ...
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1927
    // Fast_Unlock uses the same protocol.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1928
    // ZFlag == 1 -> Success
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1929
    // ZFlag == 0 -> Failure - force control through the slow-path
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1930
  }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1931
}
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1932
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1933
// obj: object to unlock
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1934
// box: box address (displaced header location), killed.  Must be EAX.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1935
// tmp: killed, cannot be obj nor box.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1936
//
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1937
// Some commentary on balanced locking:
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1938
//
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1939
// Fast_Lock and Fast_Unlock are emitted only for provably balanced lock sites.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1940
// Methods that don't have provably balanced locking are forced to run in the
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1941
// interpreter - such methods won't be compiled to use fast_lock and fast_unlock.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1942
// The interpreter provides two properties:
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1943
// I1:  At return-time the interpreter automatically and quietly unlocks any
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1944
//      objects acquired the current activation (frame).  Recall that the
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1945
//      interpreter maintains an on-stack list of locks currently held by
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1946
//      a frame.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1947
// I2:  If a method attempts to unlock an object that is not held by the
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1948
//      the frame the interpreter throws IMSX.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1949
//
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1950
// Lets say A(), which has provably balanced locking, acquires O and then calls B().
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1951
// B() doesn't have provably balanced locking so it runs in the interpreter.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1952
// Control returns to A() and A() unlocks O.  By I1 and I2, above, we know that O
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1953
// is still locked by A().
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1954
//
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1955
// The only other source of unbalanced locking would be JNI.  The "Java Native Interface:
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1956
// Programmer's Guide and Specification" claims that an object locked by jni_monitorenter
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1957
// should not be unlocked by "normal" java-level locking and vice-versa.  The specification
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1958
// doesn't specify what will occur if a program engages in such mixed-mode locking, however.
30244
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  1959
// Arguably given that the spec legislates the JNI case as undefined our implementation
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  1960
// could reasonably *avoid* checking owner in Fast_Unlock().
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  1961
// In the interest of performance we elide m->Owner==Self check in unlock.
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  1962
// A perfectly viable alternative is to elide the owner check except when
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  1963
// Xcheck:jni is enabled.
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1964
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1965
void MacroAssembler::fast_unlock(Register objReg, Register boxReg, Register tmpReg, bool use_rtm) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1966
  assert(boxReg == rax, "");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1967
  assert_different_registers(objReg, boxReg, tmpReg);
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1968
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1969
  if (EmitSync & 4) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1970
    // Disable - inhibit all inlining.  Force control through the slow-path
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1971
    cmpptr (rsp, 0);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1972
  } else {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1973
    Label DONE_LABEL, Stacked, CheckSucc;
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1974
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1975
    // Critically, the biased locking test must have precedence over
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1976
    // and appear before the (box->dhw == 0) recursive stack-lock test.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1977
    if (UseBiasedLocking && !UseOptoBiasInlining) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1978
       biased_locking_exit(objReg, tmpReg, DONE_LABEL);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1979
    }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1980
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1981
#if INCLUDE_RTM_OPT
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1982
    if (UseRTMForStackLocks && use_rtm) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1983
      assert(!UseBiasedLocking, "Biased locking is not supported with RTM locking");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1984
      Label L_regular_unlock;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1985
      movptr(tmpReg, Address(objReg, 0));           // fetch markword
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1986
      andptr(tmpReg, markOopDesc::biased_lock_mask_in_place); // look at 3 lock bits
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1987
      cmpptr(tmpReg, markOopDesc::unlocked_value);            // bits = 001 unlocked
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1988
      jccb(Assembler::notEqual, L_regular_unlock);  // if !HLE RegularLock
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1989
      xend();                                       // otherwise end...
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1990
      jmp(DONE_LABEL);                              // ... and we're done
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1991
      bind(L_regular_unlock);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1992
    }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1993
#endif
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1994
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1995
    cmpptr(Address(boxReg, 0), (int32_t)NULL_WORD); // Examine the displaced header
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1996
    jcc   (Assembler::zero, DONE_LABEL);            // 0 indicates recursive stack-lock
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1997
    movptr(tmpReg, Address(objReg, 0));             // Examine the object's markword
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  1998
    testptr(tmpReg, markOopDesc::monitor_value);    // Inflated?
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  1999
    jccb  (Assembler::zero, Stacked);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2000
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2001
    // It's inflated.
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  2002
#if INCLUDE_RTM_OPT
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  2003
    if (use_rtm) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  2004
      Label L_regular_inflated_unlock;
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  2005
      int owner_offset = OM_OFFSET_NO_MONITOR_VALUE_TAG(owner);
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  2006
      movptr(boxReg, Address(tmpReg, owner_offset));
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  2007
      testptr(boxReg, boxReg);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  2008
      jccb(Assembler::notZero, L_regular_inflated_unlock);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  2009
      xend();
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  2010
      jmpb(DONE_LABEL);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  2011
      bind(L_regular_inflated_unlock);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  2012
    }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  2013
#endif
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  2014
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2015
    // Despite our balanced locking property we still check that m->_owner == Self
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2016
    // as java routines or native JNI code called by this thread might
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2017
    // have released the lock.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2018
    // Refer to the comments in synchronizer.cpp for how we might encode extra
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2019
    // state in _succ so we can avoid fetching EntryList|cxq.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2020
    //
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2021
    // I'd like to add more cases in fast_lock() and fast_unlock() --
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2022
    // such as recursive enter and exit -- but we have to be wary of
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2023
    // I$ bloat, T$ effects and BP$ effects.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2024
    //
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2025
    // If there's no contention try a 1-0 exit.  That is, exit without
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2026
    // a costly MEMBAR or CAS.  See synchronizer.cpp for details on how
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2027
    // we detect and recover from the race that the 1-0 exit admits.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2028
    //
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2029
    // Conceptually Fast_Unlock() must execute a STST|LDST "release" barrier
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2030
    // before it STs null into _owner, releasing the lock.  Updates
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2031
    // to data protected by the critical section must be visible before
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2032
    // we drop the lock (and thus before any other thread could acquire
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2033
    // the lock and observe the fields protected by the lock).
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2034
    // IA32's memory-model is SPO, so STs are ordered with respect to
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2035
    // each other and there's no need for an explicit barrier (fence).
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2036
    // See also http://gee.cs.oswego.edu/dl/jmm/cookbook.html.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2037
#ifndef _LP64
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2038
    get_thread (boxReg);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2039
    if ((EmitSync & 4096) && VM_Version::supports_3dnow_prefetch() && os::is_MP()) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2040
      // prefetchw [ebx + Offset(_owner)-2]
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  2041
      prefetchw(Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner)));
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2042
    }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2043
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2044
    // Note that we could employ various encoding schemes to reduce
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2045
    // the number of loads below (currently 4) to just 2 or 3.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2046
    // Refer to the comments in synchronizer.cpp.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2047
    // In practice the chain of fetches doesn't seem to impact performance, however.
30244
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2048
    xorptr(boxReg, boxReg);
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2049
    if ((EmitSync & 65536) == 0 && (EmitSync & 256)) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2050
       // Attempt to reduce branch density - AMD's branch predictor.
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  2051
       orptr(boxReg, Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(recursions)));
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  2052
       orptr(boxReg, Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(EntryList)));
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  2053
       orptr(boxReg, Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(cxq)));
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2054
       jccb  (Assembler::notZero, DONE_LABEL);
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  2055
       movptr(Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner)), NULL_WORD);
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2056
       jmpb  (DONE_LABEL);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2057
    } else {
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  2058
       orptr(boxReg, Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(recursions)));
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2059
       jccb  (Assembler::notZero, DONE_LABEL);
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  2060
       movptr(boxReg, Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(EntryList)));
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  2061
       orptr(boxReg, Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(cxq)));
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2062
       jccb  (Assembler::notZero, CheckSucc);
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  2063
       movptr(Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner)), NULL_WORD);
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2064
       jmpb  (DONE_LABEL);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2065
    }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2066
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2067
    // The Following code fragment (EmitSync & 65536) improves the performance of
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2068
    // contended applications and contended synchronization microbenchmarks.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2069
    // Unfortunately the emission of the code - even though not executed - causes regressions
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2070
    // in scimark and jetstream, evidently because of $ effects.  Replacing the code
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2071
    // with an equal number of never-executed NOPs results in the same regression.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2072
    // We leave it off by default.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2073
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2074
    if ((EmitSync & 65536) != 0) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2075
       Label LSuccess, LGoSlowPath ;
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2076
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2077
       bind  (CheckSucc);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2078
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2079
       // Optional pre-test ... it's safe to elide this
30244
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2080
       cmpptr(Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(succ)), (int32_t)NULL_WORD);
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2081
       jccb(Assembler::zero, LGoSlowPath);
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2082
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2083
       // We have a classic Dekker-style idiom:
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2084
       //    ST m->_owner = 0 ; MEMBAR; LD m->_succ
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2085
       // There are a number of ways to implement the barrier:
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2086
       // (1) lock:andl &m->_owner, 0
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2087
       //     is fast, but mask doesn't currently support the "ANDL M,IMM32" form.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2088
       //     LOCK: ANDL [ebx+Offset(_Owner)-2], 0
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2089
       //     Encodes as 81 31 OFF32 IMM32 or 83 63 OFF8 IMM8
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2090
       // (2) If supported, an explicit MFENCE is appealing.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2091
       //     In older IA32 processors MFENCE is slower than lock:add or xchg
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2092
       //     particularly if the write-buffer is full as might be the case if
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2093
       //     if stores closely precede the fence or fence-equivalent instruction.
30244
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2094
       //     See https://blogs.oracle.com/dave/entry/instruction_selection_for_volatile_fences
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2095
       //     as the situation has changed with Nehalem and Shanghai.
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2096
       // (3) In lieu of an explicit fence, use lock:addl to the top-of-stack
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2097
       //     The $lines underlying the top-of-stack should be in M-state.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2098
       //     The locked add instruction is serializing, of course.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2099
       // (4) Use xchg, which is serializing
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2100
       //     mov boxReg, 0; xchgl boxReg, [tmpReg + Offset(_owner)-2] also works
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2101
       // (5) ST m->_owner = 0 and then execute lock:orl &m->_succ, 0.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2102
       //     The integer condition codes will tell us if succ was 0.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2103
       //     Since _succ and _owner should reside in the same $line and
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2104
       //     we just stored into _owner, it's likely that the $line
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2105
       //     remains in M-state for the lock:orl.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2106
       //
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2107
       // We currently use (3), although it's likely that switching to (2)
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2108
       // is correct for the future.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2109
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  2110
       movptr(Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner)), NULL_WORD);
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2111
       if (os::is_MP()) {
30244
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2112
         lock(); addptr(Address(rsp, 0), 0);
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2113
       }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2114
       // Ratify _succ remains non-null
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  2115
       cmpptr(Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(succ)), 0);
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2116
       jccb  (Assembler::notZero, LSuccess);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2117
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2118
       xorptr(boxReg, boxReg);                  // box is really EAX
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2119
       if (os::is_MP()) { lock(); }
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  2120
       cmpxchgptr(rsp, Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner)));
31782
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 31592
diff changeset
  2121
       // There's no successor so we tried to regrab the lock with the
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 31592
diff changeset
  2122
       // placeholder value. If that didn't work, then another thread
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 31592
diff changeset
  2123
       // grabbed the lock so we're done (and exit was a success).
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2124
       jccb  (Assembler::notEqual, LSuccess);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2125
       // Since we're low on registers we installed rsp as a placeholding in _owner.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2126
       // Now install Self over rsp.  This is safe as we're transitioning from
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2127
       // non-null to non=null
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2128
       get_thread (boxReg);
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  2129
       movptr(Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner)), boxReg);
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2130
       // Intentional fall-through into LGoSlowPath ...
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2131
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2132
       bind  (LGoSlowPath);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2133
       orptr(boxReg, 1);                      // set ICC.ZF=0 to indicate failure
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2134
       jmpb  (DONE_LABEL);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2135
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2136
       bind  (LSuccess);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2137
       xorptr(boxReg, boxReg);                 // set ICC.ZF=1 to indicate success
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2138
       jmpb  (DONE_LABEL);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2139
    }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2140
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2141
    bind (Stacked);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2142
    // It's not inflated and it's not recursively stack-locked and it's not biased.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2143
    // It must be stack-locked.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2144
    // Try to reset the header to displaced header.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2145
    // The "box" value on the stack is stable, so we can reload
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2146
    // and be assured we observe the same value as above.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2147
    movptr(tmpReg, Address(boxReg, 0));
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2148
    if (os::is_MP()) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2149
      lock();
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2150
    }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2151
    cmpxchgptr(tmpReg, Address(objReg, 0)); // Uses RAX which is box
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2152
    // Intention fall-thru into DONE_LABEL
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2153
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2154
    // DONE_LABEL is a hot target - we'd really like to place it at the
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2155
    // start of cache line by padding with NOPs.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2156
    // See the AMD and Intel software optimization manuals for the
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2157
    // most efficient "long" NOP encodings.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2158
    // Unfortunately none of our alignment mechanisms suffice.
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2159
    if ((EmitSync & 65536) == 0) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2160
       bind (CheckSucc);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2161
    }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2162
#else // _LP64
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2163
    // It's inflated
30244
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2164
    if (EmitSync & 1024) {
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2165
      // Emit code to check that _owner == Self
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2166
      // We could fold the _owner test into subsequent code more efficiently
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2167
      // than using a stand-alone check, but since _owner checking is off by
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2168
      // default we don't bother. We also might consider predicating the
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2169
      // _owner==Self check on Xcheck:jni or running on a debug build.
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2170
      movptr(boxReg, Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner)));
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2171
      xorptr(boxReg, r15_thread);
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2172
    } else {
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2173
      xorptr(boxReg, boxReg);
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2174
    }
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  2175
    orptr(boxReg, Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(recursions)));
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2176
    jccb  (Assembler::notZero, DONE_LABEL);
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  2177
    movptr(boxReg, Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(cxq)));
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  2178
    orptr(boxReg, Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(EntryList)));
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2179
    jccb  (Assembler::notZero, CheckSucc);
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  2180
    movptr(Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner)), (int32_t)NULL_WORD);
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2181
    jmpb  (DONE_LABEL);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2182
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2183
    if ((EmitSync & 65536) == 0) {
30244
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2184
      // Try to avoid passing control into the slow_path ...
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2185
      Label LSuccess, LGoSlowPath ;
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2186
      bind  (CheckSucc);
30244
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2187
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2188
      // The following optional optimization can be elided if necessary
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2189
      // Effectively: if (succ == null) goto SlowPath
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2190
      // The code reduces the window for a race, however,
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2191
      // and thus benefits performance.
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  2192
      cmpptr(Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(succ)), (int32_t)NULL_WORD);
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2193
      jccb  (Assembler::zero, LGoSlowPath);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2194
37251
9fc139ad74b5 8152358: code and comment cleanups found during the hunt for 8077392
dcubed
parents: 36561
diff changeset
  2195
      xorptr(boxReg, boxReg);
30244
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2196
      if ((EmitSync & 16) && os::is_MP()) {
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2197
        xchgptr(boxReg, Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner)));
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2198
      } else {
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2199
        movptr(Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner)), (int32_t)NULL_WORD);
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2200
        if (os::is_MP()) {
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2201
          // Memory barrier/fence
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2202
          // Dekker pivot point -- fulcrum : ST Owner; MEMBAR; LD Succ
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2203
          // Instead of MFENCE we use a dummy locked add of 0 to the top-of-stack.
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2204
          // This is faster on Nehalem and AMD Shanghai/Barcelona.
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2205
          // See https://blogs.oracle.com/dave/entry/instruction_selection_for_volatile_fences
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2206
          // We might also restructure (ST Owner=0;barrier;LD _Succ) to
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2207
          // (mov box,0; xchgq box, &m->Owner; LD _succ) .
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2208
          lock(); addl(Address(rsp, 0), 0);
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2209
        }
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2210
      }
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  2211
      cmpptr(Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(succ)), (int32_t)NULL_WORD);
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2212
      jccb  (Assembler::notZero, LSuccess);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2213
30244
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2214
      // Rare inopportune interleaving - race.
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2215
      // The successor vanished in the small window above.
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2216
      // The lock is contended -- (cxq|EntryList) != null -- and there's no apparent successor.
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2217
      // We need to ensure progress and succession.
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2218
      // Try to reacquire the lock.
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2219
      // If that fails then the new owner is responsible for succession and this
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2220
      // thread needs to take no further action and can exit via the fast path (success).
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2221
      // If the re-acquire succeeds then pass control into the slow path.
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2222
      // As implemented, this latter mode is horrible because we generated more
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2223
      // coherence traffic on the lock *and* artifically extended the critical section
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2224
      // length while by virtue of passing control into the slow path.
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2225
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2226
      // box is really RAX -- the following CMPXCHG depends on that binding
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29325
diff changeset
  2227
      // cmpxchg R,[M] is equivalent to rax = CAS(M,rax,R)
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2228
      if (os::is_MP()) { lock(); }
27608
80d91e264baf 8062851: cleanup ObjectMonitor offset adjustments
dcubed
parents: 26434
diff changeset
  2229
      cmpxchgptr(r15_thread, Address(tmpReg, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner)));
31782
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 31592
diff changeset
  2230
      // There's no successor so we tried to regrab the lock.
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 31592
diff changeset
  2231
      // If that didn't work, then another thread grabbed the
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 31592
diff changeset
  2232
      // lock so we're done (and exit was a success).
22910
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2233
      jccb  (Assembler::notEqual, LSuccess);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2234
      // Intentional fall-through into slow-path
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2235
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2236
      bind  (LGoSlowPath);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2237
      orl   (boxReg, 1);                      // set ICC.ZF=0 to indicate failure
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2238
      jmpb  (DONE_LABEL);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2239
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2240
      bind  (LSuccess);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2241
      testl (boxReg, 0);                      // set ICC.ZF=1 to indicate success
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2242
      jmpb  (DONE_LABEL);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2243
    }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2244
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2245
    bind  (Stacked);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2246
    movptr(tmpReg, Address (boxReg, 0));      // re-fetch
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2247
    if (os::is_MP()) { lock(); }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2248
    cmpxchgptr(tmpReg, Address(objReg, 0)); // Uses RAX which is box
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2249
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2250
    if (EmitSync & 65536) {
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2251
       bind (CheckSucc);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2252
    }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2253
#endif
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2254
    bind(DONE_LABEL);
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2255
  }
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2256
}
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2257
#endif // COMPILER2
88c3369b5967 8033805: Move Fast_Lock/Fast_Unlock code from .ad files to macroassembler
kvn
parents: 21923
diff changeset
  2258
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2259
void MacroAssembler::c2bool(Register x) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2260
  // implements x == 0 ? 0 : 1
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2261
  // note: must only look at least-significant byte of x
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2262
  //       since C-style booleans are stored in one byte
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2263
  //       only! (was bug)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2264
  andl(x, 0xFF);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2265
  setb(Assembler::notZero, x);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2266
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2267
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2268
// Wouldn't need if AddressLiteral version had new name
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2269
void MacroAssembler::call(Label& L, relocInfo::relocType rtype) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2270
  Assembler::call(L, rtype);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2271
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2272
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2273
void MacroAssembler::call(Register entry) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2274
  Assembler::call(entry);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2275
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2276
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2277
void MacroAssembler::call(AddressLiteral entry) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2278
  if (reachable(entry)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2279
    Assembler::call_literal(entry.target(), entry.rspec());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2280
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2281
    lea(rscratch1, entry);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2282
    Assembler::call(rscratch1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2283
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2284
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2285
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34211
diff changeset
  2286
void MacroAssembler::ic_call(address entry, jint method_index) {
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34211
diff changeset
  2287
  RelocationHolder rh = virtual_call_Relocation::spec(pc(), method_index);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2288
  movptr(rax, (intptr_t)Universe::non_oop_word());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2289
  call(AddressLiteral(entry, rh));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2290
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2291
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2292
// Implementation of call_VM versions
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2293
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2294
void MacroAssembler::call_VM(Register oop_result,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2295
                             address entry_point,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2296
                             bool check_exceptions) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2297
  Label C, E;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2298
  call(C, relocInfo::none);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2299
  jmp(E);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2300
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2301
  bind(C);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2302
  call_VM_helper(oop_result, entry_point, 0, check_exceptions);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2303
  ret(0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2304
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2305
  bind(E);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2306
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2307
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2308
void MacroAssembler::call_VM(Register oop_result,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2309
                             address entry_point,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2310
                             Register arg_1,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2311
                             bool check_exceptions) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2312
  Label C, E;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2313
  call(C, relocInfo::none);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2314
  jmp(E);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2315
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2316
  bind(C);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2317
  pass_arg1(this, arg_1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2318
  call_VM_helper(oop_result, entry_point, 1, check_exceptions);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2319
  ret(0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2320
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2321
  bind(E);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2322
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2323
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2324
void MacroAssembler::call_VM(Register oop_result,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2325
                             address entry_point,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2326
                             Register arg_1,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2327
                             Register arg_2,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2328
                             bool check_exceptions) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2329
  Label C, E;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2330
  call(C, relocInfo::none);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2331
  jmp(E);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2332
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2333
  bind(C);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2334
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2335
  LP64_ONLY(assert(arg_1 != c_rarg2, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2336
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2337
  pass_arg2(this, arg_2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2338
  pass_arg1(this, arg_1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2339
  call_VM_helper(oop_result, entry_point, 2, check_exceptions);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2340
  ret(0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2341
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2342
  bind(E);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2343
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2344
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2345
void MacroAssembler::call_VM(Register oop_result,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2346
                             address entry_point,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2347
                             Register arg_1,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2348
                             Register arg_2,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2349
                             Register arg_3,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2350
                             bool check_exceptions) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2351
  Label C, E;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2352
  call(C, relocInfo::none);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2353
  jmp(E);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2354
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2355
  bind(C);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2356
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2357
  LP64_ONLY(assert(arg_1 != c_rarg3, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2358
  LP64_ONLY(assert(arg_2 != c_rarg3, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2359
  pass_arg3(this, arg_3);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2360
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2361
  LP64_ONLY(assert(arg_1 != c_rarg2, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2362
  pass_arg2(this, arg_2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2363
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2364
  pass_arg1(this, arg_1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2365
  call_VM_helper(oop_result, entry_point, 3, check_exceptions);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2366
  ret(0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2367
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2368
  bind(E);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2369
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2370
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2371
void MacroAssembler::call_VM(Register oop_result,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2372
                             Register last_java_sp,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2373
                             address entry_point,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2374
                             int number_of_arguments,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2375
                             bool check_exceptions) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2376
  Register thread = LP64_ONLY(r15_thread) NOT_LP64(noreg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2377
  call_VM_base(oop_result, thread, last_java_sp, entry_point, number_of_arguments, check_exceptions);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2378
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2379
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2380
void MacroAssembler::call_VM(Register oop_result,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2381
                             Register last_java_sp,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2382
                             address entry_point,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2383
                             Register arg_1,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2384
                             bool check_exceptions) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2385
  pass_arg1(this, arg_1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2386
  call_VM(oop_result, last_java_sp, entry_point, 1, check_exceptions);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2387
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2388
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2389
void MacroAssembler::call_VM(Register oop_result,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2390
                             Register last_java_sp,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2391
                             address entry_point,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2392
                             Register arg_1,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2393
                             Register arg_2,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2394
                             bool check_exceptions) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2395
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2396
  LP64_ONLY(assert(arg_1 != c_rarg2, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2397
  pass_arg2(this, arg_2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2398
  pass_arg1(this, arg_1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2399
  call_VM(oop_result, last_java_sp, entry_point, 2, check_exceptions);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2400
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2401
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2402
void MacroAssembler::call_VM(Register oop_result,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2403
                             Register last_java_sp,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2404
                             address entry_point,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2405
                             Register arg_1,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2406
                             Register arg_2,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2407
                             Register arg_3,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2408
                             bool check_exceptions) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2409
  LP64_ONLY(assert(arg_1 != c_rarg3, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2410
  LP64_ONLY(assert(arg_2 != c_rarg3, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2411
  pass_arg3(this, arg_3);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2412
  LP64_ONLY(assert(arg_1 != c_rarg2, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2413
  pass_arg2(this, arg_2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2414
  pass_arg1(this, arg_1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2415
  call_VM(oop_result, last_java_sp, entry_point, 3, check_exceptions);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2416
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2417
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2418
void MacroAssembler::super_call_VM(Register oop_result,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2419
                                   Register last_java_sp,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2420
                                   address entry_point,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2421
                                   int number_of_arguments,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2422
                                   bool check_exceptions) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2423
  Register thread = LP64_ONLY(r15_thread) NOT_LP64(noreg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2424
  MacroAssembler::call_VM_base(oop_result, thread, last_java_sp, entry_point, number_of_arguments, check_exceptions);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2425
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2426
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2427
void MacroAssembler::super_call_VM(Register oop_result,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2428
                                   Register last_java_sp,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2429
                                   address entry_point,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2430
                                   Register arg_1,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2431
                                   bool check_exceptions) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2432
  pass_arg1(this, arg_1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2433
  super_call_VM(oop_result, last_java_sp, entry_point, 1, check_exceptions);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2434
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2435
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2436
void MacroAssembler::super_call_VM(Register oop_result,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2437
                                   Register last_java_sp,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2438
                                   address entry_point,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2439
                                   Register arg_1,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2440
                                   Register arg_2,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2441
                                   bool check_exceptions) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2442
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2443
  LP64_ONLY(assert(arg_1 != c_rarg2, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2444
  pass_arg2(this, arg_2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2445
  pass_arg1(this, arg_1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2446
  super_call_VM(oop_result, last_java_sp, entry_point, 2, check_exceptions);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2447
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2448
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2449
void MacroAssembler::super_call_VM(Register oop_result,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2450
                                   Register last_java_sp,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2451
                                   address entry_point,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2452
                                   Register arg_1,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2453
                                   Register arg_2,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2454
                                   Register arg_3,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2455
                                   bool check_exceptions) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2456
  LP64_ONLY(assert(arg_1 != c_rarg3, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2457
  LP64_ONLY(assert(arg_2 != c_rarg3, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2458
  pass_arg3(this, arg_3);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2459
  LP64_ONLY(assert(arg_1 != c_rarg2, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2460
  pass_arg2(this, arg_2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2461
  pass_arg1(this, arg_1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2462
  super_call_VM(oop_result, last_java_sp, entry_point, 3, check_exceptions);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2463
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2464
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2465
void MacroAssembler::call_VM_base(Register oop_result,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2466
                                  Register java_thread,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2467
                                  Register last_java_sp,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2468
                                  address  entry_point,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2469
                                  int      number_of_arguments,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2470
                                  bool     check_exceptions) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2471
  // determine java_thread register
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2472
  if (!java_thread->is_valid()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2473
#ifdef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2474
    java_thread = r15_thread;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2475
#else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2476
    java_thread = rdi;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2477
    get_thread(java_thread);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2478
#endif // LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2479
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2480
  // determine last_java_sp register
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2481
  if (!last_java_sp->is_valid()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2482
    last_java_sp = rsp;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2483
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2484
  // debugging support
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2485
  assert(number_of_arguments >= 0   , "cannot have negative number of arguments");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2486
  LP64_ONLY(assert(java_thread == r15_thread, "unexpected register"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2487
#ifdef ASSERT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2488
  // TraceBytecodes does not use r12 but saves it over the call, so don't verify
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2489
  // r12 is the heapbase.
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 19319
diff changeset
  2490
  LP64_ONLY(if ((UseCompressedOops || UseCompressedClassPointers) && !TraceBytecodes) verify_heapbase("call_VM_base: heap base corrupted?");)
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2491
#endif // ASSERT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2492
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2493
  assert(java_thread != oop_result  , "cannot use the same register for java_thread & oop_result");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2494
  assert(java_thread != last_java_sp, "cannot use the same register for java_thread & last_java_sp");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2495
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2496
  // push java thread (becomes first argument of C function)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2497
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2498
  NOT_LP64(push(java_thread); number_of_arguments++);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2499
  LP64_ONLY(mov(c_rarg0, r15_thread));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2500
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2501
  // set last Java frame before call
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2502
  assert(last_java_sp != rbp, "can't use ebp/rbp");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2503
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2504
  // Only interpreter should have to set fp
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2505
  set_last_Java_frame(java_thread, last_java_sp, rbp, NULL);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2506
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2507
  // do the call, remove parameters
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2508
  MacroAssembler::call_VM_leaf_base(entry_point, number_of_arguments);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2509
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2510
  // restore the thread (cannot use the pushed argument since arguments
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2511
  // may be overwritten by C code generated by an optimizing compiler);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2512
  // however can use the register value directly if it is callee saved.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2513
  if (LP64_ONLY(true ||) java_thread == rdi || java_thread == rsi) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2514
    // rdi & rsi (also r15) are callee saved -> nothing to do
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2515
#ifdef ASSERT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2516
    guarantee(java_thread != rax, "change this code");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2517
    push(rax);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2518
    { Label L;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2519
      get_thread(rax);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2520
      cmpptr(java_thread, rax);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2521
      jcc(Assembler::equal, L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2522
      STOP("MacroAssembler::call_VM_base: rdi not callee saved?");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2523
      bind(L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2524
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2525
    pop(rax);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2526
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2527
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2528
    get_thread(java_thread);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2529
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2530
  // reset last Java frame
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2531
  // Only interpreter should have to clear fp
40644
39e631ed7145 8161598: Kitchensink fails: assert(nm->insts_contains(original_pc)) failed: original PC must be in nmethod/CompiledMethod
dlong
parents: 39256
diff changeset
  2532
  reset_last_Java_frame(java_thread, true);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2533
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2534
   // C++ interp handles this in the interpreter
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2535
  check_and_handle_popframe(java_thread);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2536
  check_and_handle_earlyret(java_thread);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2537
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2538
  if (check_exceptions) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2539
    // check for pending exceptions (java_thread is set upon return)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2540
    cmpptr(Address(java_thread, Thread::pending_exception_offset()), (int32_t) NULL_WORD);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2541
#ifndef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2542
    jump_cc(Assembler::notEqual,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2543
            RuntimeAddress(StubRoutines::forward_exception_entry()));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2544
#else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2545
    // This used to conditionally jump to forward_exception however it is
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2546
    // possible if we relocate that the branch will not reach. So we must jump
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2547
    // around so we can always reach
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2548
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2549
    Label ok;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2550
    jcc(Assembler::equal, ok);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2551
    jump(RuntimeAddress(StubRoutines::forward_exception_entry()));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2552
    bind(ok);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2553
#endif // LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2554
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2555
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2556
  // get oop result if there is one and reset the value in the thread
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2557
  if (oop_result->is_valid()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2558
    get_vm_result(oop_result, java_thread);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2559
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2560
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2561
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2562
void MacroAssembler::call_VM_helper(Register oop_result, address entry_point, int number_of_arguments, bool check_exceptions) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2563
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2564
  // Calculate the value for last_Java_sp
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2565
  // somewhat subtle. call_VM does an intermediate call
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2566
  // which places a return address on the stack just under the
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2567
  // stack pointer as the user finsihed with it. This allows
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2568
  // use to retrieve last_Java_pc from last_Java_sp[-1].
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2569
  // On 32bit we then have to push additional args on the stack to accomplish
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2570
  // the actual requested call. On 64bit call_VM only can use register args
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2571
  // so the only extra space is the return address that call_VM created.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2572
  // This hopefully explains the calculations here.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2573
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2574
#ifdef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2575
  // We've pushed one address, correct last_Java_sp
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2576
  lea(rax, Address(rsp, wordSize));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2577
#else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2578
  lea(rax, Address(rsp, (1 + number_of_arguments) * wordSize));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2579
#endif // LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2580
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2581
  call_VM_base(oop_result, noreg, rax, entry_point, number_of_arguments, check_exceptions);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2582
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2583
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2584
38699
f8bec5f6b09c 8154473: Update for CompilerDirectives to control stub generation and intrinsics
vdeshpande
parents: 38241
diff changeset
  2585
// Use this method when MacroAssembler version of call_VM_leaf_base() should be called from Interpreter.
f8bec5f6b09c 8154473: Update for CompilerDirectives to control stub generation and intrinsics
vdeshpande
parents: 38241
diff changeset
  2586
void MacroAssembler::call_VM_leaf0(address entry_point) {
f8bec5f6b09c 8154473: Update for CompilerDirectives to control stub generation and intrinsics
vdeshpande
parents: 38241
diff changeset
  2587
  MacroAssembler::call_VM_leaf_base(entry_point, 0);
f8bec5f6b09c 8154473: Update for CompilerDirectives to control stub generation and intrinsics
vdeshpande
parents: 38241
diff changeset
  2588
}
f8bec5f6b09c 8154473: Update for CompilerDirectives to control stub generation and intrinsics
vdeshpande
parents: 38241
diff changeset
  2589
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2590
void MacroAssembler::call_VM_leaf(address entry_point, int number_of_arguments) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2591
  call_VM_leaf_base(entry_point, number_of_arguments);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2592
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2593
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2594
void MacroAssembler::call_VM_leaf(address entry_point, Register arg_0) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2595
  pass_arg0(this, arg_0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2596
  call_VM_leaf(entry_point, 1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2597
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2598
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2599
void MacroAssembler::call_VM_leaf(address entry_point, Register arg_0, Register arg_1) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2600
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2601
  LP64_ONLY(assert(arg_0 != c_rarg1, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2602
  pass_arg1(this, arg_1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2603
  pass_arg0(this, arg_0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2604
  call_VM_leaf(entry_point, 2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2605
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2606
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2607
void MacroAssembler::call_VM_leaf(address entry_point, Register arg_0, Register arg_1, Register arg_2) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2608
  LP64_ONLY(assert(arg_0 != c_rarg2, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2609
  LP64_ONLY(assert(arg_1 != c_rarg2, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2610
  pass_arg2(this, arg_2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2611
  LP64_ONLY(assert(arg_0 != c_rarg1, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2612
  pass_arg1(this, arg_1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2613
  pass_arg0(this, arg_0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2614
  call_VM_leaf(entry_point, 3);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2615
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2616
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2617
void MacroAssembler::super_call_VM_leaf(address entry_point, Register arg_0) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2618
  pass_arg0(this, arg_0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2619
  MacroAssembler::call_VM_leaf_base(entry_point, 1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2620
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2621
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2622
void MacroAssembler::super_call_VM_leaf(address entry_point, Register arg_0, Register arg_1) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2623
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2624
  LP64_ONLY(assert(arg_0 != c_rarg1, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2625
  pass_arg1(this, arg_1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2626
  pass_arg0(this, arg_0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2627
  MacroAssembler::call_VM_leaf_base(entry_point, 2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2628
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2629
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2630
void MacroAssembler::super_call_VM_leaf(address entry_point, Register arg_0, Register arg_1, Register arg_2) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2631
  LP64_ONLY(assert(arg_0 != c_rarg2, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2632
  LP64_ONLY(assert(arg_1 != c_rarg2, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2633
  pass_arg2(this, arg_2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2634
  LP64_ONLY(assert(arg_0 != c_rarg1, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2635
  pass_arg1(this, arg_1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2636
  pass_arg0(this, arg_0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2637
  MacroAssembler::call_VM_leaf_base(entry_point, 3);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2638
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2639
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2640
void MacroAssembler::super_call_VM_leaf(address entry_point, Register arg_0, Register arg_1, Register arg_2, Register arg_3) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2641
  LP64_ONLY(assert(arg_0 != c_rarg3, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2642
  LP64_ONLY(assert(arg_1 != c_rarg3, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2643
  LP64_ONLY(assert(arg_2 != c_rarg3, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2644
  pass_arg3(this, arg_3);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2645
  LP64_ONLY(assert(arg_0 != c_rarg2, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2646
  LP64_ONLY(assert(arg_1 != c_rarg2, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2647
  pass_arg2(this, arg_2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2648
  LP64_ONLY(assert(arg_0 != c_rarg1, "smashed arg"));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2649
  pass_arg1(this, arg_1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2650
  pass_arg0(this, arg_0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2651
  MacroAssembler::call_VM_leaf_base(entry_point, 4);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2652
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2653
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2654
void MacroAssembler::get_vm_result(Register oop_result, Register java_thread) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2655
  movptr(oop_result, Address(java_thread, JavaThread::vm_result_offset()));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2656
  movptr(Address(java_thread, JavaThread::vm_result_offset()), NULL_WORD);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2657
  verify_oop(oop_result, "broken oop in call_VM_base");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2658
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2659
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2660
void MacroAssembler::get_vm_result_2(Register metadata_result, Register java_thread) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2661
  movptr(metadata_result, Address(java_thread, JavaThread::vm_result_2_offset()));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2662
  movptr(Address(java_thread, JavaThread::vm_result_2_offset()), NULL_WORD);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2663
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2664
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2665
void MacroAssembler::check_and_handle_earlyret(Register java_thread) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2666
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2667
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2668
void MacroAssembler::check_and_handle_popframe(Register java_thread) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2669
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2670
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2671
void MacroAssembler::cmp32(AddressLiteral src1, int32_t imm) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2672
  if (reachable(src1)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2673
    cmpl(as_Address(src1), imm);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2674
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2675
    lea(rscratch1, src1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2676
    cmpl(Address(rscratch1, 0), imm);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2677
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2678
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2679
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2680
void MacroAssembler::cmp32(Register src1, AddressLiteral src2) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2681
  assert(!src2.is_lval(), "use cmpptr");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2682
  if (reachable(src2)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2683
    cmpl(src1, as_Address(src2));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2684
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2685
    lea(rscratch1, src2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2686
    cmpl(src1, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2687
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2688
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2689
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2690
void MacroAssembler::cmp32(Register src1, int32_t imm) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2691
  Assembler::cmpl(src1, imm);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2692
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2693
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2694
void MacroAssembler::cmp32(Register src1, Address src2) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2695
  Assembler::cmpl(src1, src2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2696
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2697
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2698
void MacroAssembler::cmpsd2int(XMMRegister opr1, XMMRegister opr2, Register dst, bool unordered_is_less) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2699
  ucomisd(opr1, opr2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2700
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2701
  Label L;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2702
  if (unordered_is_less) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2703
    movl(dst, -1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2704
    jcc(Assembler::parity, L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2705
    jcc(Assembler::below , L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2706
    movl(dst, 0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2707
    jcc(Assembler::equal , L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2708
    increment(dst);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2709
  } else { // unordered is greater
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2710
    movl(dst, 1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2711
    jcc(Assembler::parity, L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2712
    jcc(Assembler::above , L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2713
    movl(dst, 0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2714
    jcc(Assembler::equal , L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2715
    decrementl(dst);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2716
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2717
  bind(L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2718
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2719
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2720
void MacroAssembler::cmpss2int(XMMRegister opr1, XMMRegister opr2, Register dst, bool unordered_is_less) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2721
  ucomiss(opr1, opr2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2722
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2723
  Label L;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2724
  if (unordered_is_less) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2725
    movl(dst, -1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2726
    jcc(Assembler::parity, L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2727
    jcc(Assembler::below , L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2728
    movl(dst, 0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2729
    jcc(Assembler::equal , L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2730
    increment(dst);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2731
  } else { // unordered is greater
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2732
    movl(dst, 1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2733
    jcc(Assembler::parity, L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2734
    jcc(Assembler::above , L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2735
    movl(dst, 0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2736
    jcc(Assembler::equal , L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2737
    decrementl(dst);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2738
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2739
  bind(L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2740
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2741
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2742
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2743
void MacroAssembler::cmp8(AddressLiteral src1, int imm) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2744
  if (reachable(src1)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2745
    cmpb(as_Address(src1), imm);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2746
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2747
    lea(rscratch1, src1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2748
    cmpb(Address(rscratch1, 0), imm);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2749
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2750
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2751
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2752
void MacroAssembler::cmpptr(Register src1, AddressLiteral src2) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2753
#ifdef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2754
  if (src2.is_lval()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2755
    movptr(rscratch1, src2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2756
    Assembler::cmpq(src1, rscratch1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2757
  } else if (reachable(src2)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2758
    cmpq(src1, as_Address(src2));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2759
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2760
    lea(rscratch1, src2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2761
    Assembler::cmpq(src1, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2762
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2763
#else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2764
  if (src2.is_lval()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2765
    cmp_literal32(src1, (int32_t) src2.target(), src2.rspec());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2766
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2767
    cmpl(src1, as_Address(src2));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2768
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2769
#endif // _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2770
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2771
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2772
void MacroAssembler::cmpptr(Address src1, AddressLiteral src2) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2773
  assert(src2.is_lval(), "not a mem-mem compare");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2774
#ifdef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2775
  // moves src2's literal address
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2776
  movptr(rscratch1, src2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2777
  Assembler::cmpq(src1, rscratch1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2778
#else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2779
  cmp_literal32(src1, (int32_t) src2.target(), src2.rspec());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2780
#endif // _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2781
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2782
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2783
void MacroAssembler::locked_cmpxchgptr(Register reg, AddressLiteral adr) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2784
  if (reachable(adr)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2785
    if (os::is_MP())
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2786
      lock();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2787
    cmpxchgptr(reg, as_Address(adr));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2788
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2789
    lea(rscratch1, adr);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2790
    if (os::is_MP())
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2791
      lock();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2792
    cmpxchgptr(reg, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2793
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2794
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2795
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2796
void MacroAssembler::cmpxchgptr(Register reg, Address adr) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2797
  LP64_ONLY(cmpxchgq(reg, adr)) NOT_LP64(cmpxchgl(reg, adr));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2798
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2799
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2800
void MacroAssembler::comisd(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2801
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2802
    Assembler::comisd(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2803
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2804
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2805
    Assembler::comisd(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2806
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2807
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2808
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2809
void MacroAssembler::comiss(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2810
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2811
    Assembler::comiss(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2812
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2813
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2814
    Assembler::comiss(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2815
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2816
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2817
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2818
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2819
void MacroAssembler::cond_inc32(Condition cond, AddressLiteral counter_addr) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2820
  Condition negated_cond = negate_condition(cond);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2821
  Label L;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2822
  jcc(negated_cond, L);
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  2823
  pushf(); // Preserve flags
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2824
  atomic_incl(counter_addr);
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22910
diff changeset
  2825
  popf();
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2826
  bind(L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2827
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2828
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2829
int MacroAssembler::corrected_idivl(Register reg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2830
  // Full implementation of Java idiv and irem; checks for
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2831
  // special case as described in JVM spec., p.243 & p.271.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2832
  // The function returns the (pc) offset of the idivl
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2833
  // instruction - may be needed for implicit exceptions.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2834
  //
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2835
  //         normal case                           special case
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2836
  //
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2837
  // input : rax,: dividend                         min_int
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2838
  //         reg: divisor   (may not be rax,/rdx)   -1
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2839
  //
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2840
  // output: rax,: quotient  (= rax, idiv reg)       min_int
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2841
  //         rdx: remainder (= rax, irem reg)       0
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2842
  assert(reg != rax && reg != rdx, "reg cannot be rax, or rdx register");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2843
  const int min_int = 0x80000000;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2844
  Label normal_case, special_case;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2845
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2846
  // check for special case
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2847
  cmpl(rax, min_int);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2848
  jcc(Assembler::notEqual, normal_case);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2849
  xorl(rdx, rdx); // prepare rdx for possible special case (where remainder = 0)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2850
  cmpl(reg, -1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2851
  jcc(Assembler::equal, special_case);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2852
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2853
  // handle normal case
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2854
  bind(normal_case);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2855
  cdql();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2856
  int idivl_offset = offset();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2857
  idivl(reg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2858
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2859
  // normal and special case exit
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2860
  bind(special_case);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2861
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2862
  return idivl_offset;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2863
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2864
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2865
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2866
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2867
void MacroAssembler::decrementl(Register reg, int value) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2868
  if (value == min_jint) {subl(reg, value) ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2869
  if (value <  0) { incrementl(reg, -value); return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2870
  if (value == 0) {                        ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2871
  if (value == 1 && UseIncDec) { decl(reg) ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2872
  /* else */      { subl(reg, value)       ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2873
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2874
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2875
void MacroAssembler::decrementl(Address dst, int value) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2876
  if (value == min_jint) {subl(dst, value) ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2877
  if (value <  0) { incrementl(dst, -value); return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2878
  if (value == 0) {                        ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2879
  if (value == 1 && UseIncDec) { decl(dst) ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2880
  /* else */      { subl(dst, value)       ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2881
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2882
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2883
void MacroAssembler::division_with_shift (Register reg, int shift_value) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2884
  assert (shift_value > 0, "illegal shift value");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2885
  Label _is_positive;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2886
  testl (reg, reg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2887
  jcc (Assembler::positive, _is_positive);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2888
  int offset = (1 << shift_value) - 1 ;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2889
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2890
  if (offset == 1) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2891
    incrementl(reg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2892
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2893
    addl(reg, offset);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2894
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2895
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2896
  bind (_is_positive);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2897
  sarl(reg, shift_value);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2898
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2899
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2900
void MacroAssembler::divsd(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2901
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2902
    Assembler::divsd(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2903
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2904
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2905
    Assembler::divsd(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2906
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2907
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2908
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2909
void MacroAssembler::divss(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2910
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2911
    Assembler::divss(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2912
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2913
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2914
    Assembler::divss(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2915
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2916
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2917
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2918
// !defined(COMPILER2) is because of stupid core builds
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33089
diff changeset
  2919
#if !defined(_LP64) || defined(COMPILER1) || !defined(COMPILER2) || INCLUDE_JVMCI
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2920
void MacroAssembler::empty_FPU_stack() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2921
  if (VM_Version::supports_mmx()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2922
    emms();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2923
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2924
    for (int i = 8; i-- > 0; ) ffree(i);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2925
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2926
}
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33089
diff changeset
  2927
#endif // !LP64 || C1 || !C2 || INCLUDE_JVMCI
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2928
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2929
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2930
// Defines obj, preserves var_size_in_bytes
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2931
void MacroAssembler::eden_allocate(Register obj,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2932
                                   Register var_size_in_bytes,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2933
                                   int con_size_in_bytes,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2934
                                   Register t1,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2935
                                   Label& slow_case) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2936
  assert(obj == rax, "obj must be in rax, for cmpxchg");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2937
  assert_different_registers(obj, var_size_in_bytes, t1);
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 26434
diff changeset
  2938
  if (!Universe::heap()->supports_inline_contig_alloc()) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2939
    jmp(slow_case);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2940
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2941
    Register end = t1;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2942
    Label retry;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2943
    bind(retry);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2944
    ExternalAddress heap_top((address) Universe::heap()->top_addr());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2945
    movptr(obj, heap_top);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2946
    if (var_size_in_bytes == noreg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2947
      lea(end, Address(obj, con_size_in_bytes));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2948
    } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2949
      lea(end, Address(obj, var_size_in_bytes, Address::times_1));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2950
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2951
    // if end < obj then we wrapped around => object too long => slow case
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2952
    cmpptr(end, obj);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2953
    jcc(Assembler::below, slow_case);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2954
    cmpptr(end, ExternalAddress((address) Universe::heap()->end_addr()));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2955
    jcc(Assembler::above, slow_case);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2956
    // Compare obj with the top addr, and if still equal, store the new top addr in
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2957
    // end at the address of the top addr pointer. Sets ZF if was equal, and clears
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2958
    // it otherwise. Use lock prefix for atomicity on MPs.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2959
    locked_cmpxchgptr(end, heap_top);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2960
    jcc(Assembler::notEqual, retry);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2961
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2962
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2963
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2964
void MacroAssembler::enter() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2965
  push(rbp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2966
  mov(rbp, rsp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2967
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2968
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2969
// A 5 byte nop that is safe for patching (see patch_verified_entry)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2970
void MacroAssembler::fat_nop() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2971
  if (UseAddressNop) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2972
    addr_nop_5();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2973
  } else {
14837
a75c3082d106 8004250: replace AbstractAssembler a_byte/a_long with emit_int8/emit_int32
twisti
parents: 14834
diff changeset
  2974
    emit_int8(0x26); // es:
a75c3082d106 8004250: replace AbstractAssembler a_byte/a_long with emit_int8/emit_int32
twisti
parents: 14834
diff changeset
  2975
    emit_int8(0x2e); // cs:
a75c3082d106 8004250: replace AbstractAssembler a_byte/a_long with emit_int8/emit_int32
twisti
parents: 14834
diff changeset
  2976
    emit_int8(0x64); // fs:
a75c3082d106 8004250: replace AbstractAssembler a_byte/a_long with emit_int8/emit_int32
twisti
parents: 14834
diff changeset
  2977
    emit_int8(0x65); // gs:
a75c3082d106 8004250: replace AbstractAssembler a_byte/a_long with emit_int8/emit_int32
twisti
parents: 14834
diff changeset
  2978
    emit_int8((unsigned char)0x90);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2979
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2980
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2981
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2982
void MacroAssembler::fcmp(Register tmp) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2983
  fcmp(tmp, 1, true, true);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2984
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2985
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2986
void MacroAssembler::fcmp(Register tmp, int index, bool pop_left, bool pop_right) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2987
  assert(!pop_right || pop_left, "usage error");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2988
  if (VM_Version::supports_cmov()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2989
    assert(tmp == noreg, "unneeded temp");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2990
    if (pop_left) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2991
      fucomip(index);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2992
    } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2993
      fucomi(index);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2994
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2995
    if (pop_right) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2996
      fpop();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2997
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2998
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  2999
    assert(tmp != noreg, "need temp");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3000
    if (pop_left) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3001
      if (pop_right) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3002
        fcompp();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3003
      } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3004
        fcomp(index);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3005
      }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3006
    } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3007
      fcom(index);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3008
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3009
    // convert FPU condition into eflags condition via rax,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3010
    save_rax(tmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3011
    fwait(); fnstsw_ax();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3012
    sahf();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3013
    restore_rax(tmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3014
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3015
  // condition codes set as follows:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3016
  //
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3017
  // CF (corresponds to C0) if x < y
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3018
  // PF (corresponds to C2) if unordered
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3019
  // ZF (corresponds to C3) if x = y
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3020
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3021
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3022
void MacroAssembler::fcmp2int(Register dst, bool unordered_is_less) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3023
  fcmp2int(dst, unordered_is_less, 1, true, true);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3024
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3025
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3026
void MacroAssembler::fcmp2int(Register dst, bool unordered_is_less, int index, bool pop_left, bool pop_right) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3027
  fcmp(VM_Version::supports_cmov() ? noreg : dst, index, pop_left, pop_right);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3028
  Label L;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3029
  if (unordered_is_less) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3030
    movl(dst, -1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3031
    jcc(Assembler::parity, L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3032
    jcc(Assembler::below , L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3033
    movl(dst, 0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3034
    jcc(Assembler::equal , L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3035
    increment(dst);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3036
  } else { // unordered is greater
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3037
    movl(dst, 1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3038
    jcc(Assembler::parity, L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3039
    jcc(Assembler::above , L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3040
    movl(dst, 0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3041
    jcc(Assembler::equal , L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3042
    decrementl(dst);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3043
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3044
  bind(L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3045
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3046
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3047
void MacroAssembler::fld_d(AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3048
  fld_d(as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3049
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3050
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3051
void MacroAssembler::fld_s(AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3052
  fld_s(as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3053
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3054
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3055
void MacroAssembler::fld_x(AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3056
  Assembler::fld_x(as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3057
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3058
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3059
void MacroAssembler::fldcw(AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3060
  Assembler::fldcw(as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3061
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3062
33089
f4e956ed8b43 8132207: update for x86 exp in the math lib
iveresov
parents: 33066
diff changeset
  3063
void MacroAssembler::mulpd(XMMRegister dst, AddressLiteral src) {
f4e956ed8b43 8132207: update for x86 exp in the math lib
iveresov
parents: 33066
diff changeset
  3064
  if (reachable(src)) {
f4e956ed8b43 8132207: update for x86 exp in the math lib
iveresov
parents: 33066
diff changeset
  3065
    Assembler::mulpd(dst, as_Address(src));
f4e956ed8b43 8132207: update for x86 exp in the math lib
iveresov
parents: 33066
diff changeset
  3066
  } else {
f4e956ed8b43 8132207: update for x86 exp in the math lib
iveresov
parents: 33066
diff changeset
  3067
    lea(rscratch1, src);
f4e956ed8b43 8132207: update for x86 exp in the math lib
iveresov
parents: 33066
diff changeset
  3068
    Assembler::mulpd(dst, Address(rscratch1, 0));
f4e956ed8b43 8132207: update for x86 exp in the math lib
iveresov
parents: 33066
diff changeset
  3069
  }
f4e956ed8b43 8132207: update for x86 exp in the math lib
iveresov
parents: 33066
diff changeset
  3070
}
f4e956ed8b43 8132207: update for x86 exp in the math lib
iveresov
parents: 33066
diff changeset
  3071
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3072
void MacroAssembler::increase_precision() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3073
  subptr(rsp, BytesPerWord);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3074
  fnstcw(Address(rsp, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3075
  movl(rax, Address(rsp, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3076
  orl(rax, 0x300);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3077
  push(rax);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3078
  fldcw(Address(rsp, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3079
  pop(rax);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3080
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3081
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3082
void MacroAssembler::restore_precision() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3083
  fldcw(Address(rsp, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3084
  addptr(rsp, BytesPerWord);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3085
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3086
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3087
void MacroAssembler::fpop() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3088
  ffree();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3089
  fincstp();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3090
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3091
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3092
void MacroAssembler::load_float(Address src) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3093
  if (UseSSE >= 1) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3094
    movflt(xmm0, src);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3095
  } else {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3096
    LP64_ONLY(ShouldNotReachHere());
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3097
    NOT_LP64(fld_s(src));
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3098
  }
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3099
}
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3100
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3101
void MacroAssembler::store_float(Address dst) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3102
  if (UseSSE >= 1) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3103
    movflt(dst, xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3104
  } else {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3105
    LP64_ONLY(ShouldNotReachHere());
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3106
    NOT_LP64(fstp_s(dst));
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3107
  }
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3108
}
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3109
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3110
void MacroAssembler::load_double(Address src) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3111
  if (UseSSE >= 2) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3112
    movdbl(xmm0, src);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3113
  } else {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3114
    LP64_ONLY(ShouldNotReachHere());
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3115
    NOT_LP64(fld_d(src));
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3116
  }
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3117
}
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3118
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3119
void MacroAssembler::store_double(Address dst) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3120
  if (UseSSE >= 2) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3121
    movdbl(dst, xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3122
  } else {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3123
    LP64_ONLY(ShouldNotReachHere());
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3124
    NOT_LP64(fstp_d(dst));
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3125
  }
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3126
}
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 32203
diff changeset
  3127
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3128
void MacroAssembler::fremr(Register tmp) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3129
  save_rax(tmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3130
  { Label L;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3131
    bind(L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3132
    fprem();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3133
    fwait(); fnstsw_ax();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3134
#ifdef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3135
    testl(rax, 0x400);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3136
    jcc(Assembler::notEqual, L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3137
#else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3138
    sahf();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3139
    jcc(Assembler::parity, L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3140
#endif // _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3141
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3142
  restore_rax(tmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3143
  // Result is in ST0.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3144
  // Note: fxch & fpop to get rid of ST1
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3145
  // (otherwise FPU stack could overflow eventually)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3146
  fxch(1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3147
  fpop();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3148
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3149
41323
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 41065
diff changeset
  3150
// dst = c = a * b + c
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 41065
diff changeset
  3151
void MacroAssembler::fmad(XMMRegister dst, XMMRegister a, XMMRegister b, XMMRegister c) {
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 41065
diff changeset
  3152
  Assembler::vfmadd231sd(c, a, b);
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 41065
diff changeset
  3153
  if (dst != c) {
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 41065
diff changeset
  3154
    movdbl(dst, c);
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 41065
diff changeset
  3155
  }
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 41065
diff changeset
  3156
}
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 41065
diff changeset
  3157
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 41065
diff changeset
  3158
// dst = c = a * b + c
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 41065
diff changeset
  3159
void MacroAssembler::fmaf(XMMRegister dst, XMMRegister a, XMMRegister b, XMMRegister c) {
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 41065
diff changeset
  3160
  Assembler::vfmadd231ss(c, a, b);
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 41065
diff changeset
  3161
  if (dst != c) {
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 41065
diff changeset
  3162
    movflt(dst, c);
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 41065
diff changeset
  3163
  }
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 41065
diff changeset
  3164
}
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 41065
diff changeset
  3165
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 41065
diff changeset
  3166
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 41065
diff changeset
  3167
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3168
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3169
void MacroAssembler::incrementl(AddressLiteral dst) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3170
  if (reachable(dst)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3171
    incrementl(as_Address(dst));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3172
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3173
    lea(rscratch1, dst);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3174
    incrementl(Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3175
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3176
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3177
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3178
void MacroAssembler::incrementl(ArrayAddress dst) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3179
  incrementl(as_Address(dst));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3180
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3181
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3182
void MacroAssembler::incrementl(Register reg, int value) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3183
  if (value == min_jint) {addl(reg, value) ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3184
  if (value <  0) { decrementl(reg, -value); return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3185
  if (value == 0) {                        ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3186
  if (value == 1 && UseIncDec) { incl(reg) ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3187
  /* else */      { addl(reg, value)       ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3188
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3189
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3190
void MacroAssembler::incrementl(Address dst, int value) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3191
  if (value == min_jint) {addl(dst, value) ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3192
  if (value <  0) { decrementl(dst, -value); return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3193
  if (value == 0) {                        ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3194
  if (value == 1 && UseIncDec) { incl(dst) ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3195
  /* else */      { addl(dst, value)       ; return; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3196
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3197
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3198
void MacroAssembler::jump(AddressLiteral dst) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3199
  if (reachable(dst)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3200
    jmp_literal(dst.target(), dst.rspec());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3201
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3202
    lea(rscratch1, dst);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3203
    jmp(rscratch1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3204
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3205
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3206
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3207
void MacroAssembler::jump_cc(Condition cc, AddressLiteral dst) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3208
  if (reachable(dst)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3209
    InstructionMark im(this);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3210
    relocate(dst.reloc());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3211
    const int short_size = 2;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3212
    const int long_size = 6;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3213
    int offs = (intptr_t)dst.target() - ((intptr_t)pc());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3214
    if (dst.reloc() == relocInfo::none && is8bit(offs - short_size)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3215
      // 0111 tttn #8-bit disp
14837
a75c3082d106 8004250: replace AbstractAssembler a_byte/a_long with emit_int8/emit_int32
twisti
parents: 14834
diff changeset
  3216
      emit_int8(0x70 | cc);
a75c3082d106 8004250: replace AbstractAssembler a_byte/a_long with emit_int8/emit_int32
twisti
parents: 14834
diff changeset
  3217
      emit_int8((offs - short_size) & 0xFF);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3218
    } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3219
      // 0000 1111 1000 tttn #32-bit disp
14837
a75c3082d106 8004250: replace AbstractAssembler a_byte/a_long with emit_int8/emit_int32
twisti
parents: 14834
diff changeset
  3220
      emit_int8(0x0F);
a75c3082d106 8004250: replace AbstractAssembler a_byte/a_long with emit_int8/emit_int32
twisti
parents: 14834
diff changeset
  3221
      emit_int8((unsigned char)(0x80 | cc));
15116
af423dcb739c 8004537: replace AbstractAssembler emit_long with emit_int32
twisti
parents: 15115
diff changeset
  3222
      emit_int32(offs - long_size);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3223
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3224
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3225
#ifdef ASSERT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3226
    warning("reversing conditional branch");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3227
#endif /* ASSERT */
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3228
    Label skip;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3229
    jccb(reverse[cc], skip);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3230
    lea(rscratch1, dst);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3231
    Assembler::jmp(rscratch1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3232
    bind(skip);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3233
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3234
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3235
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3236
void MacroAssembler::ldmxcsr(AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3237
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3238
    Assembler::ldmxcsr(as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3239
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3240
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3241
    Assembler::ldmxcsr(Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3242
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3243
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3244
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3245
int MacroAssembler::load_signed_byte(Register dst, Address src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3246
  int off;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3247
  if (LP64_ONLY(true ||) VM_Version::is_P6()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3248
    off = offset();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3249
    movsbl(dst, src); // movsxb
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3250
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3251
    off = load_unsigned_byte(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3252
    shll(dst, 24);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3253
    sarl(dst, 24);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3254
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3255
  return off;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3256
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3257
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3258
// Note: load_signed_short used to be called load_signed_word.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3259
// Although the 'w' in x86 opcodes refers to the term "word" in the assembler
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3260
// manual, which means 16 bits, that usage is found nowhere in HotSpot code.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3261
// The term "word" in HotSpot means a 32- or 64-bit machine word.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3262
int MacroAssembler::load_signed_short(Register dst, Address src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3263
  int off;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3264
  if (LP64_ONLY(true ||) VM_Version::is_P6()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3265
    // This is dubious to me since it seems safe to do a signed 16 => 64 bit
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3266
    // version but this is what 64bit has always done. This seems to imply
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3267
    // that users are only using 32bits worth.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3268
    off = offset();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3269
    movswl(dst, src); // movsxw
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3270
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3271
    off = load_unsigned_short(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3272
    shll(dst, 16);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3273
    sarl(dst, 16);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3274
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3275
  return off;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3276
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3277
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3278
int MacroAssembler::load_unsigned_byte(Register dst, Address src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3279
  // According to Intel Doc. AP-526, "Zero-Extension of Short", p.16,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3280
  // and "3.9 Partial Register Penalties", p. 22).
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3281
  int off;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3282
  if (LP64_ONLY(true || ) VM_Version::is_P6() || src.uses(dst)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3283
    off = offset();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3284
    movzbl(dst, src); // movzxb
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3285
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3286
    xorl(dst, dst);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3287
    off = offset();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3288
    movb(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3289
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3290
  return off;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3291
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3292
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3293
// Note: load_unsigned_short used to be called load_unsigned_word.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3294
int MacroAssembler::load_unsigned_short(Register dst, Address src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3295
  // According to Intel Doc. AP-526, "Zero-Extension of Short", p.16,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3296
  // and "3.9 Partial Register Penalties", p. 22).
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3297
  int off;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3298
  if (LP64_ONLY(true ||) VM_Version::is_P6() || src.uses(dst)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3299
    off = offset();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3300
    movzwl(dst, src); // movzxw
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3301
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3302
    xorl(dst, dst);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3303
    off = offset();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3304
    movw(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3305
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3306
  return off;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3307
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3308
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3309
void MacroAssembler::load_sized_value(Register dst, Address src, size_t size_in_bytes, bool is_signed, Register dst2) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3310
  switch (size_in_bytes) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3311
#ifndef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3312
  case  8:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3313
    assert(dst2 != noreg, "second dest register required");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3314
    movl(dst,  src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3315
    movl(dst2, src.plus_disp(BytesPerInt));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3316
    break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3317
#else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3318
  case  8:  movq(dst, src); break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3319
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3320
  case  4:  movl(dst, src); break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3321
  case  2:  is_signed ? load_signed_short(dst, src) : load_unsigned_short(dst, src); break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3322
  case  1:  is_signed ? load_signed_byte( dst, src) : load_unsigned_byte( dst, src); break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3323
  default:  ShouldNotReachHere();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3324
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3325
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3326
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3327
void MacroAssembler::store_sized_value(Address dst, Register src, size_t size_in_bytes, Register src2) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3328
  switch (size_in_bytes) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3329
#ifndef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3330
  case  8:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3331
    assert(src2 != noreg, "second source register required");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3332
    movl(dst,                        src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3333
    movl(dst.plus_disp(BytesPerInt), src2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3334
    break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3335
#else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3336
  case  8:  movq(dst, src); break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3337
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3338
  case  4:  movl(dst, src); break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3339
  case  2:  movw(dst, src); break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3340
  case  1:  movb(dst, src); break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3341
  default:  ShouldNotReachHere();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3342
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3343
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3344
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3345
void MacroAssembler::mov32(AddressLiteral dst, Register src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3346
  if (reachable(dst)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3347
    movl(as_Address(dst), src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3348
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3349
    lea(rscratch1, dst);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3350
    movl(Address(rscratch1, 0), src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3351
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3352
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3353
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3354
void MacroAssembler::mov32(Register dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3355
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3356
    movl(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3357
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3358
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3359
    movl(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3360
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3361
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3362
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3363
// C++ bool manipulation
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3364
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3365
void MacroAssembler::movbool(Register dst, Address src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3366
  if(sizeof(bool) == 1)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3367
    movb(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3368
  else if(sizeof(bool) == 2)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3369
    movw(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3370
  else if(sizeof(bool) == 4)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3371
    movl(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3372
  else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3373
    // unsupported
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3374
    ShouldNotReachHere();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3375
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3376
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3377
void MacroAssembler::movbool(Address dst, bool boolconst) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3378
  if(sizeof(bool) == 1)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3379
    movb(dst, (int) boolconst);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3380
  else if(sizeof(bool) == 2)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3381
    movw(dst, (int) boolconst);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3382
  else if(sizeof(bool) == 4)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3383
    movl(dst, (int) boolconst);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3384
  else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3385
    // unsupported
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3386
    ShouldNotReachHere();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3387
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3388
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3389
void MacroAssembler::movbool(Address dst, Register src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3390
  if(sizeof(bool) == 1)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3391
    movb(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3392
  else if(sizeof(bool) == 2)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3393
    movw(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3394
  else if(sizeof(bool) == 4)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3395
    movl(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3396
  else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3397
    // unsupported
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3398
    ShouldNotReachHere();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3399
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3400
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3401
void MacroAssembler::movbyte(ArrayAddress dst, int src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3402
  movb(as_Address(dst), src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3403
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3404
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3405
void MacroAssembler::movdl(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3406
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3407
    movdl(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3408
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3409
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3410
    movdl(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3411
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3412
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3413
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3414
void MacroAssembler::movq(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3415
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3416
    movq(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3417
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3418
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3419
    movq(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3420
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3421
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3422
38049
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 37251
diff changeset
  3423
void MacroAssembler::setvectmask(Register dst, Register src) {
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 37251
diff changeset
  3424
  Assembler::movl(dst, 1);
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 37251
diff changeset
  3425
  Assembler::shlxl(dst, dst, src);
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 37251
diff changeset
  3426
  Assembler::decl(dst);
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 37251
diff changeset
  3427
  Assembler::kmovdl(k1, dst);
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 37251
diff changeset
  3428
  Assembler::movl(dst, src);
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 37251
diff changeset
  3429
}
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 37251
diff changeset
  3430
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 37251
diff changeset
  3431
void MacroAssembler::restorevectmask() {
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 37251
diff changeset
  3432
  Assembler::knotwl(k1, k0);
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 37251
diff changeset
  3433
}
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 37251
diff changeset
  3434
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3435
void MacroAssembler::movdbl(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3436
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3437
    if (UseXmmLoadAndClearUpper) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3438
      movsd (dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3439
    } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3440
      movlpd(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3441
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3442
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3443
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3444
    if (UseXmmLoadAndClearUpper) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3445
      movsd (dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3446
    } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3447
      movlpd(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3448
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3449
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3450
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3451
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3452
void MacroAssembler::movflt(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3453
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3454
    movss(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3455
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3456
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3457
    movss(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3458
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3459
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3460
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3461
void MacroAssembler::movptr(Register dst, Register src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3462
  LP64_ONLY(movq(dst, src)) NOT_LP64(movl(dst, src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3463
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3464
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3465
void MacroAssembler::movptr(Register dst, Address src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3466
  LP64_ONLY(movq(dst, src)) NOT_LP64(movl(dst, src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3467
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3468
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3469
// src should NEVER be a real pointer. Use AddressLiteral for true pointers
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3470
void MacroAssembler::movptr(Register dst, intptr_t src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3471
  LP64_ONLY(mov64(dst, src)) NOT_LP64(movl(dst, src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3472
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3473
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3474
void MacroAssembler::movptr(Address dst, Register src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3475
  LP64_ONLY(movq(dst, src)) NOT_LP64(movl(dst, src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3476
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3477
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3478
void MacroAssembler::movdqu(Address dst, XMMRegister src) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3479
  if (UseAVX > 2 && !VM_Version::supports_avx512vl() && (src->encoding() > 15)) {
36561
b18243f4d955 8151002: Make Assembler methods vextract and vinsert match actual instructions
mikael
parents: 36554
diff changeset
  3480
    Assembler::vextractf32x4(dst, src, 0);
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3481
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3482
    Assembler::movdqu(dst, src);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3483
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3484
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3485
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3486
void MacroAssembler::movdqu(XMMRegister dst, Address src) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3487
  if (UseAVX > 2 && !VM_Version::supports_avx512vl() && (dst->encoding() > 15)) {
36561
b18243f4d955 8151002: Make Assembler methods vextract and vinsert match actual instructions
mikael
parents: 36554
diff changeset
  3488
    Assembler::vinsertf32x4(dst, dst, src, 0);
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3489
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3490
    Assembler::movdqu(dst, src);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3491
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3492
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3493
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3494
void MacroAssembler::movdqu(XMMRegister dst, XMMRegister src) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3495
  if (UseAVX > 2 && !VM_Version::supports_avx512vl()) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3496
    Assembler::evmovdqul(dst, src, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3497
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3498
    Assembler::movdqu(dst, src);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3499
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3500
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3501
43423
bcaab17f72a5 8171974: Fix for R10 Register clobbering with usage of ExternalAddress
vdeshpande
parents: 42587
diff changeset
  3502
void MacroAssembler::movdqu(XMMRegister dst, AddressLiteral src, Register scratchReg) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3503
  if (reachable(src)) {
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3504
    movdqu(dst, as_Address(src));
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3505
  } else {
43423
bcaab17f72a5 8171974: Fix for R10 Register clobbering with usage of ExternalAddress
vdeshpande
parents: 42587
diff changeset
  3506
    lea(scratchReg, src);
bcaab17f72a5 8171974: Fix for R10 Register clobbering with usage of ExternalAddress
vdeshpande
parents: 42587
diff changeset
  3507
    movdqu(dst, Address(scratchReg, 0));
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3508
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3509
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3510
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3511
void MacroAssembler::vmovdqu(Address dst, XMMRegister src) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3512
  if (UseAVX > 2 && !VM_Version::supports_avx512vl() && (src->encoding() > 15)) {
36561
b18243f4d955 8151002: Make Assembler methods vextract and vinsert match actual instructions
mikael
parents: 36554
diff changeset
  3513
    vextractf64x4_low(dst, src);
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3514
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3515
    Assembler::vmovdqu(dst, src);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3516
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3517
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3518
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3519
void MacroAssembler::vmovdqu(XMMRegister dst, Address src) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3520
  if (UseAVX > 2 && !VM_Version::supports_avx512vl() && (dst->encoding() > 15)) {
36561
b18243f4d955 8151002: Make Assembler methods vextract and vinsert match actual instructions
mikael
parents: 36554
diff changeset
  3521
    vinsertf64x4_low(dst, src);
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3522
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3523
    Assembler::vmovdqu(dst, src);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3524
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3525
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3526
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3527
void MacroAssembler::vmovdqu(XMMRegister dst, XMMRegister src) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3528
  if (UseAVX > 2 && !VM_Version::supports_avx512vl()) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3529
    Assembler::evmovdqul(dst, src, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3530
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3531
  else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3532
    Assembler::vmovdqu(dst, src);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3533
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3534
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3535
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3536
void MacroAssembler::vmovdqu(XMMRegister dst, AddressLiteral src) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3537
  if (reachable(src)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3538
    vmovdqu(dst, as_Address(src));
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3539
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3540
  else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3541
    lea(rscratch1, src);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3542
    vmovdqu(dst, Address(rscratch1, 0));
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3543
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3544
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3545
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
  3546
void MacroAssembler::movdqa(XMMRegister dst, AddressLiteral src) {
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
  3547
  if (reachable(src)) {
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
  3548
    Assembler::movdqa(dst, as_Address(src));
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
  3549
  } else {
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
  3550
    lea(rscratch1, src);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
  3551
    Assembler::movdqa(dst, Address(rscratch1, 0));
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
  3552
  }
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
  3553
}
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
  3554
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3555
void MacroAssembler::movsd(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3556
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3557
    Assembler::movsd(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3558
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3559
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3560
    Assembler::movsd(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3561
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3562
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3563
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3564
void MacroAssembler::movss(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3565
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3566
    Assembler::movss(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3567
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3568
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3569
    Assembler::movss(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3570
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3571
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3572
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3573
void MacroAssembler::mulsd(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3574
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3575
    Assembler::mulsd(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3576
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3577
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3578
    Assembler::mulsd(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3579
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3580
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3581
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3582
void MacroAssembler::mulss(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3583
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3584
    Assembler::mulss(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3585
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3586
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3587
    Assembler::mulss(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3588
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3589
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3590
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3591
void MacroAssembler::null_check(Register reg, int offset) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3592
  if (needs_explicit_null_check(offset)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3593
    // provoke OS NULL exception if reg = NULL by
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3594
    // accessing M[reg] w/o changing any (non-CC) registers
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3595
    // NOTE: cmpl is plenty here to provoke a segv
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3596
    cmpptr(rax, Address(reg, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3597
    // Note: should probably use testl(rax, Address(reg, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3598
    //       may be shorter code (however, this version of
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3599
    //       testl needs to be implemented first)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3600
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3601
    // nothing to do, (later) access of M[reg + offset]
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3602
    // will provoke OS NULL exception if reg = NULL
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3603
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3604
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3605
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3606
void MacroAssembler::os_breakpoint() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3607
  // instead of directly emitting a breakpoint, call os:breakpoint for better debugability
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3608
  // (e.g., MSVC can't call ps() otherwise)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3609
  call(RuntimeAddress(CAST_FROM_FN_PTR(address, os::breakpoint)));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3610
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3611
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3612
#ifdef _LP64
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3613
#define XSTATE_BV 0x200
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3614
#endif
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3615
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3616
void MacroAssembler::pop_CPU_state() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3617
  pop_FPU_state();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3618
  pop_IU_state();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3619
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3620
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3621
void MacroAssembler::pop_FPU_state() {
32727
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  3622
#ifndef _LP64
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  3623
  frstor(Address(rsp, 0));
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  3624
#else
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3625
  fxrstor(Address(rsp, 0));
32727
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  3626
#endif
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3627
  addptr(rsp, FPUStateSizeInWords * wordSize);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3628
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3629
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3630
void MacroAssembler::pop_IU_state() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3631
  popa();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3632
  LP64_ONLY(addq(rsp, 8));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3633
  popf();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3634
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3635
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3636
// Save Integer and Float state
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3637
// Warning: Stack must be 16 byte aligned (64bit)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3638
void MacroAssembler::push_CPU_state() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3639
  push_IU_state();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3640
  push_FPU_state();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3641
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3642
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3643
void MacroAssembler::push_FPU_state() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3644
  subptr(rsp, FPUStateSizeInWords * wordSize);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3645
#ifndef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3646
  fnsave(Address(rsp, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3647
  fwait();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3648
#else
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3649
  fxsave(Address(rsp, 0));
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3650
#endif // LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3651
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3652
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3653
void MacroAssembler::push_IU_state() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3654
  // Push flags first because pusha kills them
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3655
  pushf();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3656
  // Make sure rsp stays 16-byte aligned
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3657
  LP64_ONLY(subq(rsp, 8));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3658
  pusha();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3659
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3660
40644
39e631ed7145 8161598: Kitchensink fails: assert(nm->insts_contains(original_pc)) failed: original PC must be in nmethod/CompiledMethod
dlong
parents: 39256
diff changeset
  3661
void MacroAssembler::reset_last_Java_frame(Register java_thread, bool clear_fp) { // determine java_thread register
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3662
  if (!java_thread->is_valid()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3663
    java_thread = rdi;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3664
    get_thread(java_thread);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3665
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3666
  // we must set sp to zero to clear frame
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3667
  movptr(Address(java_thread, JavaThread::last_Java_sp_offset()), NULL_WORD);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3668
  if (clear_fp) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3669
    movptr(Address(java_thread, JavaThread::last_Java_fp_offset()), NULL_WORD);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3670
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3671
40644
39e631ed7145 8161598: Kitchensink fails: assert(nm->insts_contains(original_pc)) failed: original PC must be in nmethod/CompiledMethod
dlong
parents: 39256
diff changeset
  3672
  // Always clear the pc because it could have been set by make_walkable()
39e631ed7145 8161598: Kitchensink fails: assert(nm->insts_contains(original_pc)) failed: original PC must be in nmethod/CompiledMethod
dlong
parents: 39256
diff changeset
  3673
  movptr(Address(java_thread, JavaThread::last_Java_pc_offset()), NULL_WORD);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3674
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3675
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3676
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3677
void MacroAssembler::restore_rax(Register tmp) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3678
  if (tmp == noreg) pop(rax);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3679
  else if (tmp != rax) mov(rax, tmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3680
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3681
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3682
void MacroAssembler::round_to(Register reg, int modulus) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3683
  addptr(reg, modulus - 1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3684
  andptr(reg, -modulus);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3685
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3686
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3687
void MacroAssembler::save_rax(Register tmp) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3688
  if (tmp == noreg) push(rax);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3689
  else if (tmp != rax) mov(tmp, rax);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3690
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3691
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3692
// Write serialization page so VM thread can do a pseudo remote membar.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3693
// We use the current thread pointer to calculate a thread specific
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3694
// offset to write to within the page. This minimizes bus traffic
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3695
// due to cache line collision.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3696
void MacroAssembler::serialize_memory(Register thread, Register tmp) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3697
  movl(tmp, thread);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3698
  shrl(tmp, os::get_serialize_page_shift_count());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3699
  andl(tmp, (os::vm_page_size() - sizeof(int)));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3700
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3701
  Address index(noreg, tmp, Address::times_1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3702
  ExternalAddress page(os::get_memory_serialize_page());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3703
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3704
  // Size of store must match masking code above
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3705
  movl(as_Address(ArrayAddress(page, index)), tmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3706
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3707
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3708
// Calls to C land
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3709
//
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3710
// When entering C land, the rbp, & rsp of the last Java frame have to be recorded
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3711
// in the (thread-local) JavaThread object. When leaving C land, the last Java fp
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3712
// has to be reset to 0. This is required to allow proper stack traversal.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3713
void MacroAssembler::set_last_Java_frame(Register java_thread,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3714
                                         Register last_java_sp,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3715
                                         Register last_java_fp,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3716
                                         address  last_java_pc) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3717
  // determine java_thread register
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3718
  if (!java_thread->is_valid()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3719
    java_thread = rdi;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3720
    get_thread(java_thread);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3721
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3722
  // determine last_java_sp register
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3723
  if (!last_java_sp->is_valid()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3724
    last_java_sp = rsp;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3725
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3726
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3727
  // last_java_fp is optional
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3728
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3729
  if (last_java_fp->is_valid()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3730
    movptr(Address(java_thread, JavaThread::last_Java_fp_offset()), last_java_fp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3731
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3732
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3733
  // last_java_pc is optional
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3734
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3735
  if (last_java_pc != NULL) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3736
    lea(Address(java_thread,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3737
                 JavaThread::frame_anchor_offset() + JavaFrameAnchor::last_Java_pc_offset()),
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3738
        InternalAddress(last_java_pc));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3739
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3740
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3741
  movptr(Address(java_thread, JavaThread::last_Java_sp_offset()), last_java_sp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3742
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3743
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3744
void MacroAssembler::shlptr(Register dst, int imm8) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3745
  LP64_ONLY(shlq(dst, imm8)) NOT_LP64(shll(dst, imm8));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3746
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3747
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3748
void MacroAssembler::shrptr(Register dst, int imm8) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3749
  LP64_ONLY(shrq(dst, imm8)) NOT_LP64(shrl(dst, imm8));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3750
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3751
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3752
void MacroAssembler::sign_extend_byte(Register reg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3753
  if (LP64_ONLY(true ||) (VM_Version::is_P6() && reg->has_byte_register())) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3754
    movsbl(reg, reg); // movsxb
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3755
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3756
    shll(reg, 24);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3757
    sarl(reg, 24);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3758
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3759
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3760
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3761
void MacroAssembler::sign_extend_short(Register reg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3762
  if (LP64_ONLY(true ||) VM_Version::is_P6()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3763
    movswl(reg, reg); // movsxw
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3764
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3765
    shll(reg, 16);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3766
    sarl(reg, 16);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3767
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3768
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3769
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3770
void MacroAssembler::testl(Register dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3771
  assert(reachable(src), "Address should be reachable");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3772
  testl(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3773
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  3774
34203
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3775
void MacroAssembler::pcmpeqb(XMMRegister dst, XMMRegister src) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3776
  int dst_enc = dst->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3777
  int src_enc = src->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3778
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3779
    Assembler::pcmpeqb(dst, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3780
  } else if ((dst_enc < 16) && (src_enc < 16)) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3781
    Assembler::pcmpeqb(dst, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3782
  } else if (src_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3783
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3784
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3785
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3786
    Assembler::pcmpeqb(xmm0, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3787
    movdqu(dst, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3788
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3789
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3790
  } else if (dst_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3791
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3792
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3793
    evmovdqul(xmm0, src, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3794
    Assembler::pcmpeqb(dst, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3795
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3796
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3797
  } else {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3798
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3799
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3800
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3801
    evmovdqul(Address(rsp, 0), xmm1, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3802
    movdqu(xmm0, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3803
    movdqu(xmm1, dst);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3804
    Assembler::pcmpeqb(xmm1, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3805
    movdqu(dst, xmm1);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3806
    evmovdqul(xmm1, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3807
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3808
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3809
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3810
  }
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3811
}
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3812
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3813
void MacroAssembler::pcmpeqw(XMMRegister dst, XMMRegister src) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3814
  int dst_enc = dst->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3815
  int src_enc = src->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3816
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3817
    Assembler::pcmpeqw(dst, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3818
  } else if ((dst_enc < 16) && (src_enc < 16)) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3819
    Assembler::pcmpeqw(dst, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3820
  } else if (src_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3821
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3822
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3823
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3824
    Assembler::pcmpeqw(xmm0, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3825
    movdqu(dst, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3826
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3827
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3828
  } else if (dst_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3829
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3830
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3831
    evmovdqul(xmm0, src, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3832
    Assembler::pcmpeqw(dst, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3833
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3834
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3835
  } else {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3836
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3837
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3838
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3839
    evmovdqul(Address(rsp, 0), xmm1, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3840
    movdqu(xmm0, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3841
    movdqu(xmm1, dst);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3842
    Assembler::pcmpeqw(xmm1, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3843
    movdqu(dst, xmm1);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3844
    evmovdqul(xmm1, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3845
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3846
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3847
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3848
  }
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3849
}
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3850
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3851
void MacroAssembler::pcmpestri(XMMRegister dst, Address src, int imm8) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3852
  int dst_enc = dst->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3853
  if (dst_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3854
    Assembler::pcmpestri(dst, src, imm8);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3855
  } else {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3856
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3857
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3858
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3859
    Assembler::pcmpestri(xmm0, src, imm8);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3860
    movdqu(dst, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3861
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3862
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3863
  }
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3864
}
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3865
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3866
void MacroAssembler::pcmpestri(XMMRegister dst, XMMRegister src, int imm8) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3867
  int dst_enc = dst->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3868
  int src_enc = src->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3869
  if ((dst_enc < 16) && (src_enc < 16)) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3870
    Assembler::pcmpestri(dst, src, imm8);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3871
  } else if (src_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3872
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3873
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3874
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3875
    Assembler::pcmpestri(xmm0, src, imm8);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3876
    movdqu(dst, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3877
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3878
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3879
  } else if (dst_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3880
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3881
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3882
    evmovdqul(xmm0, src, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3883
    Assembler::pcmpestri(dst, xmm0, imm8);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3884
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3885
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3886
  } else {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3887
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3888
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3889
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3890
    evmovdqul(Address(rsp, 0), xmm1, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3891
    movdqu(xmm0, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3892
    movdqu(xmm1, dst);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3893
    Assembler::pcmpestri(xmm1, xmm0, imm8);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3894
    movdqu(dst, xmm1);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3895
    evmovdqul(xmm1, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3896
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3897
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3898
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3899
  }
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3900
}
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3901
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3902
void MacroAssembler::pmovzxbw(XMMRegister dst, XMMRegister src) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3903
  int dst_enc = dst->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3904
  int src_enc = src->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3905
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3906
    Assembler::pmovzxbw(dst, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3907
  } else if ((dst_enc < 16) && (src_enc < 16)) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3908
    Assembler::pmovzxbw(dst, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3909
  } else if (src_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3910
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3911
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3912
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3913
    Assembler::pmovzxbw(xmm0, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3914
    movdqu(dst, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3915
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3916
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3917
  } else if (dst_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3918
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3919
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3920
    evmovdqul(xmm0, src, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3921
    Assembler::pmovzxbw(dst, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3922
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3923
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3924
  } else {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3925
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3926
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3927
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3928
    evmovdqul(Address(rsp, 0), xmm1, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3929
    movdqu(xmm0, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3930
    movdqu(xmm1, dst);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3931
    Assembler::pmovzxbw(xmm1, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3932
    movdqu(dst, xmm1);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3933
    evmovdqul(xmm1, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3934
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3935
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3936
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3937
  }
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3938
}
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3939
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3940
void MacroAssembler::pmovzxbw(XMMRegister dst, Address src) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3941
  int dst_enc = dst->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3942
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3943
    Assembler::pmovzxbw(dst, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3944
  } else if (dst_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3945
    Assembler::pmovzxbw(dst, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3946
  } else {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3947
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3948
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3949
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3950
    Assembler::pmovzxbw(xmm0, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3951
    movdqu(dst, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3952
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3953
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3954
  }
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3955
}
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3956
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3957
void MacroAssembler::pmovmskb(Register dst, XMMRegister src) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3958
  int src_enc = src->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3959
  if (src_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3960
    Assembler::pmovmskb(dst, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3961
  } else {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3962
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3963
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3964
    evmovdqul(xmm0, src, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3965
    Assembler::pmovmskb(dst, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3966
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3967
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3968
  }
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3969
}
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3970
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3971
void MacroAssembler::ptest(XMMRegister dst, XMMRegister src) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3972
  int dst_enc = dst->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3973
  int src_enc = src->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3974
  if ((dst_enc < 16) && (src_enc < 16)) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3975
    Assembler::ptest(dst, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3976
  } else if (src_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3977
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3978
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3979
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3980
    Assembler::ptest(xmm0, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3981
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3982
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3983
  } else if (dst_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3984
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3985
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3986
    evmovdqul(xmm0, src, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3987
    Assembler::ptest(dst, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3988
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3989
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3990
  } else {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3991
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3992
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3993
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3994
    evmovdqul(Address(rsp, 0), xmm1, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3995
    movdqu(xmm0, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3996
    movdqu(xmm1, dst);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3997
    Assembler::ptest(xmm1, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3998
    evmovdqul(xmm1, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  3999
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4000
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4001
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4002
  }
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4003
}
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4004
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4005
void MacroAssembler::sqrtsd(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4006
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4007
    Assembler::sqrtsd(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4008
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4009
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4010
    Assembler::sqrtsd(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4011
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4012
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4013
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4014
void MacroAssembler::sqrtss(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4015
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4016
    Assembler::sqrtss(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4017
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4018
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4019
    Assembler::sqrtss(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4020
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4021
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4022
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4023
void MacroAssembler::subsd(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4024
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4025
    Assembler::subsd(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4026
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4027
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4028
    Assembler::subsd(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4029
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4030
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4031
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4032
void MacroAssembler::subss(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4033
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4034
    Assembler::subss(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4035
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4036
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4037
    Assembler::subss(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4038
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4039
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4040
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4041
void MacroAssembler::ucomisd(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4042
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4043
    Assembler::ucomisd(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4044
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4045
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4046
    Assembler::ucomisd(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4047
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4048
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4049
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4050
void MacroAssembler::ucomiss(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4051
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4052
    Assembler::ucomiss(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4053
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4054
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4055
    Assembler::ucomiss(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4056
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4057
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4058
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4059
void MacroAssembler::xorpd(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4060
  // Used in sign-bit flipping with aligned address.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4061
  assert((UseAVX > 0) || (((intptr_t)src.target() & 15) == 0), "SSE mode requires address alignment 16 bytes");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4062
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4063
    Assembler::xorpd(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4064
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4065
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4066
    Assembler::xorpd(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4067
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4068
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4069
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4070
void MacroAssembler::xorpd(XMMRegister dst, XMMRegister src) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4071
  if (UseAVX > 2 && !VM_Version::supports_avx512dq() && (dst->encoding() == src->encoding())) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4072
    Assembler::vpxor(dst, dst, src, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4073
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4074
  else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4075
    Assembler::xorpd(dst, src);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4076
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4077
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4078
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4079
void MacroAssembler::xorps(XMMRegister dst, XMMRegister src) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4080
  if (UseAVX > 2 && !VM_Version::supports_avx512dq() && (dst->encoding() == src->encoding())) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4081
    Assembler::vpxor(dst, dst, src, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4082
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4083
    Assembler::xorps(dst, src);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4084
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4085
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4086
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4087
void MacroAssembler::xorps(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4088
  // Used in sign-bit flipping with aligned address.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4089
  assert((UseAVX > 0) || (((intptr_t)src.target() & 15) == 0), "SSE mode requires address alignment 16 bytes");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4090
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4091
    Assembler::xorps(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4092
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4093
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4094
    Assembler::xorps(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4095
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4096
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4097
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4098
void MacroAssembler::pshufb(XMMRegister dst, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4099
  // Used in sign-bit flipping with aligned address.
14834
f29c91f2f22b 8004835: Improve AES intrinsics on x86
kvn
parents: 14631
diff changeset
  4100
  bool aligned_adr = (((intptr_t)src.target() & 15) == 0);
f29c91f2f22b 8004835: Improve AES intrinsics on x86
kvn
parents: 14631
diff changeset
  4101
  assert((UseAVX > 0) || aligned_adr, "SSE mode requires address alignment 16 bytes");
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4102
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4103
    Assembler::pshufb(dst, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4104
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4105
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4106
    Assembler::pshufb(dst, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4107
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4108
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4109
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4110
// AVX 3-operands instructions
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4111
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4112
void MacroAssembler::vaddsd(XMMRegister dst, XMMRegister nds, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4113
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4114
    vaddsd(dst, nds, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4115
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4116
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4117
    vaddsd(dst, nds, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4118
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4119
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4120
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4121
void MacroAssembler::vaddss(XMMRegister dst, XMMRegister nds, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4122
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4123
    vaddss(dst, nds, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4124
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4125
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4126
    vaddss(dst, nds, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4127
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4128
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4129
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4130
void MacroAssembler::vabsss(XMMRegister dst, XMMRegister nds, XMMRegister src, AddressLiteral negate_field, int vector_len) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4131
  int dst_enc = dst->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4132
  int nds_enc = nds->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4133
  int src_enc = src->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4134
  if ((dst_enc < 16) && (nds_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4135
    vandps(dst, nds, negate_field, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4136
  } else if ((src_enc < 16) && (dst_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4137
    movss(src, nds);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4138
    vandps(dst, src, negate_field, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4139
  } else if (src_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4140
    movss(src, nds);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4141
    vandps(src, src, negate_field, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4142
    movss(dst, src);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4143
  } else if (dst_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4144
    movdqu(src, xmm0);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4145
    movss(xmm0, nds);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4146
    vandps(dst, xmm0, negate_field, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4147
    movdqu(xmm0, src);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4148
  } else if (nds_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4149
    movdqu(src, xmm0);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4150
    vandps(xmm0, nds, negate_field, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4151
    movss(dst, xmm0);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4152
    movdqu(xmm0, src);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4153
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4154
    movdqu(src, xmm0);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4155
    movss(xmm0, nds);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4156
    vandps(xmm0, xmm0, negate_field, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4157
    movss(dst, xmm0);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4158
    movdqu(xmm0, src);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4159
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4160
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4161
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4162
void MacroAssembler::vabssd(XMMRegister dst, XMMRegister nds, XMMRegister src, AddressLiteral negate_field, int vector_len) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4163
  int dst_enc = dst->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4164
  int nds_enc = nds->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4165
  int src_enc = src->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4166
  if ((dst_enc < 16) && (nds_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4167
    vandpd(dst, nds, negate_field, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4168
  } else if ((src_enc < 16) && (dst_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4169
    movsd(src, nds);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4170
    vandpd(dst, src, negate_field, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4171
  } else if (src_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4172
    movsd(src, nds);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4173
    vandpd(src, src, negate_field, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4174
    movsd(dst, src);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4175
  } else if (dst_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4176
    movdqu(src, xmm0);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4177
    movsd(xmm0, nds);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4178
    vandpd(dst, xmm0, negate_field, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4179
    movdqu(xmm0, src);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4180
  } else if (nds_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4181
    movdqu(src, xmm0);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4182
    vandpd(xmm0, nds, negate_field, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4183
    movsd(dst, xmm0);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4184
    movdqu(xmm0, src);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4185
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4186
    movdqu(src, xmm0);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4187
    movsd(xmm0, nds);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4188
    vandpd(xmm0, xmm0, negate_field, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4189
    movsd(dst, xmm0);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4190
    movdqu(xmm0, src);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4191
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4192
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4193
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4194
void MacroAssembler::vpaddb(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4195
  int dst_enc = dst->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4196
  int nds_enc = nds->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4197
  int src_enc = src->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4198
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4199
    Assembler::vpaddb(dst, nds, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4200
  } else if ((dst_enc < 16) && (src_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4201
    Assembler::vpaddb(dst, dst, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4202
  } else if ((dst_enc < 16) && (nds_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4203
    // use nds as scratch for src
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4204
    evmovdqul(nds, src, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4205
    Assembler::vpaddb(dst, dst, nds, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4206
  } else if ((src_enc < 16) && (nds_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4207
    // use nds as scratch for dst
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4208
    evmovdqul(nds, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4209
    Assembler::vpaddb(nds, nds, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4210
    evmovdqul(dst, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4211
  } else if (dst_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4212
    // use nds as scatch for xmm0 to hold src
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4213
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4214
    evmovdqul(xmm0, src, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4215
    Assembler::vpaddb(dst, dst, xmm0, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4216
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4217
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4218
    // worse case scenario, all regs are in the upper bank
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4219
    subptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4220
    evmovdqul(Address(rsp, 0), xmm1, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4221
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4222
    evmovdqul(xmm1, src, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4223
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4224
    Assembler::vpaddb(xmm0, xmm0, xmm1, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4225
    evmovdqul(dst, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4226
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4227
    evmovdqul(xmm1, Address(rsp, 0), Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4228
    addptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4229
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4230
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4231
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4232
void MacroAssembler::vpaddb(XMMRegister dst, XMMRegister nds, Address src, int vector_len) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4233
  int dst_enc = dst->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4234
  int nds_enc = nds->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4235
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4236
    Assembler::vpaddb(dst, nds, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4237
  } else if (dst_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4238
    Assembler::vpaddb(dst, dst, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4239
  } else if (nds_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4240
    // implies dst_enc in upper bank with src as scratch
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4241
    evmovdqul(nds, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4242
    Assembler::vpaddb(nds, nds, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4243
    evmovdqul(dst, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4244
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4245
    // worse case scenario, all regs in upper bank
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4246
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4247
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4248
    Assembler::vpaddb(xmm0, xmm0, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4249
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4250
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4251
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4252
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4253
void MacroAssembler::vpaddw(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4254
  int dst_enc = dst->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4255
  int nds_enc = nds->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4256
  int src_enc = src->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4257
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4258
    Assembler::vpaddw(dst, nds, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4259
  } else if ((dst_enc < 16) && (src_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4260
    Assembler::vpaddw(dst, dst, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4261
  } else if ((dst_enc < 16) && (nds_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4262
    // use nds as scratch for src
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4263
    evmovdqul(nds, src, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4264
    Assembler::vpaddw(dst, dst, nds, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4265
  } else if ((src_enc < 16) && (nds_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4266
    // use nds as scratch for dst
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4267
    evmovdqul(nds, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4268
    Assembler::vpaddw(nds, nds, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4269
    evmovdqul(dst, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4270
  } else if (dst_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4271
    // use nds as scatch for xmm0 to hold src
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4272
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4273
    evmovdqul(xmm0, src, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4274
    Assembler::vpaddw(dst, dst, xmm0, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4275
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4276
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4277
    // worse case scenario, all regs are in the upper bank
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4278
    subptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4279
    evmovdqul(Address(rsp, 0), xmm1, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4280
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4281
    evmovdqul(xmm1, src, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4282
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4283
    Assembler::vpaddw(xmm0, xmm0, xmm1, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4284
    evmovdqul(dst, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4285
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4286
    evmovdqul(xmm1, Address(rsp, 0), Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4287
    addptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4288
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4289
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4290
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4291
void MacroAssembler::vpaddw(XMMRegister dst, XMMRegister nds, Address src, int vector_len) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4292
  int dst_enc = dst->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4293
  int nds_enc = nds->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4294
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4295
    Assembler::vpaddw(dst, nds, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4296
  } else if (dst_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4297
    Assembler::vpaddw(dst, dst, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4298
  } else if (nds_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4299
    // implies dst_enc in upper bank with src as scratch
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4300
    evmovdqul(nds, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4301
    Assembler::vpaddw(nds, nds, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4302
    evmovdqul(dst, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4303
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4304
    // worse case scenario, all regs in upper bank
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4305
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4306
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4307
    Assembler::vpaddw(xmm0, xmm0, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4308
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4309
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4310
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4311
42039
db627462f2c9 8165381: Update for x86 SHA512 using AVX2
kvn
parents: 41323
diff changeset
  4312
void MacroAssembler::vpand(XMMRegister dst, XMMRegister nds, AddressLiteral src, int vector_len) {
db627462f2c9 8165381: Update for x86 SHA512 using AVX2
kvn
parents: 41323
diff changeset
  4313
  if (reachable(src)) {
db627462f2c9 8165381: Update for x86 SHA512 using AVX2
kvn
parents: 41323
diff changeset
  4314
    Assembler::vpand(dst, nds, as_Address(src), vector_len);
db627462f2c9 8165381: Update for x86 SHA512 using AVX2
kvn
parents: 41323
diff changeset
  4315
  } else {
db627462f2c9 8165381: Update for x86 SHA512 using AVX2
kvn
parents: 41323
diff changeset
  4316
    lea(rscratch1, src);
db627462f2c9 8165381: Update for x86 SHA512 using AVX2
kvn
parents: 41323
diff changeset
  4317
    Assembler::vpand(dst, nds, Address(rscratch1, 0), vector_len);
db627462f2c9 8165381: Update for x86 SHA512 using AVX2
kvn
parents: 41323
diff changeset
  4318
  }
db627462f2c9 8165381: Update for x86 SHA512 using AVX2
kvn
parents: 41323
diff changeset
  4319
}
db627462f2c9 8165381: Update for x86 SHA512 using AVX2
kvn
parents: 41323
diff changeset
  4320
34203
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4321
void MacroAssembler::vpbroadcastw(XMMRegister dst, XMMRegister src) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4322
  int dst_enc = dst->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4323
  int src_enc = src->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4324
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4325
    Assembler::vpbroadcastw(dst, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4326
  } else if ((dst_enc < 16) && (src_enc < 16)) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4327
    Assembler::vpbroadcastw(dst, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4328
  } else if (src_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4329
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4330
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4331
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4332
    Assembler::vpbroadcastw(xmm0, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4333
    movdqu(dst, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4334
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4335
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4336
  } else if (dst_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4337
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4338
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4339
    evmovdqul(xmm0, src, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4340
    Assembler::vpbroadcastw(dst, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4341
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4342
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4343
  } else {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4344
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4345
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4346
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4347
    evmovdqul(Address(rsp, 0), xmm1, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4348
    movdqu(xmm0, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4349
    movdqu(xmm1, dst);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4350
    Assembler::vpbroadcastw(xmm1, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4351
    movdqu(dst, xmm1);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4352
    evmovdqul(xmm1, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4353
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4354
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4355
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4356
  }
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4357
}
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4358
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4359
void MacroAssembler::vpcmpeqb(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4360
  int dst_enc = dst->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4361
  int nds_enc = nds->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4362
  int src_enc = src->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4363
  assert(dst_enc == nds_enc, "");
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  4364
  if ((dst_enc < 16) && (src_enc < 16)) {
34203
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4365
    Assembler::vpcmpeqb(dst, nds, src, vector_len);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4366
  } else if (src_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4367
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4368
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4369
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4370
    Assembler::vpcmpeqb(xmm0, xmm0, src, vector_len);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4371
    movdqu(dst, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4372
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4373
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4374
  } else if (dst_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4375
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4376
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4377
    evmovdqul(xmm0, src, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4378
    Assembler::vpcmpeqb(dst, dst, xmm0, vector_len);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4379
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4380
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4381
  } else {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4382
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4383
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4384
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4385
    evmovdqul(Address(rsp, 0), xmm1, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4386
    movdqu(xmm0, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4387
    movdqu(xmm1, dst);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4388
    Assembler::vpcmpeqb(xmm1, xmm1, xmm0, vector_len);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4389
    movdqu(dst, xmm1);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4390
    evmovdqul(xmm1, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4391
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4392
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4393
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4394
  }
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4395
}
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4396
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4397
void MacroAssembler::vpcmpeqw(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4398
  int dst_enc = dst->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4399
  int nds_enc = nds->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4400
  int src_enc = src->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4401
  assert(dst_enc == nds_enc, "");
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  4402
  if ((dst_enc < 16) && (src_enc < 16)) {
34203
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4403
    Assembler::vpcmpeqw(dst, nds, src, vector_len);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4404
  } else if (src_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4405
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4406
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4407
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4408
    Assembler::vpcmpeqw(xmm0, xmm0, src, vector_len);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4409
    movdqu(dst, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4410
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4411
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4412
  } else if (dst_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4413
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4414
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4415
    evmovdqul(xmm0, src, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4416
    Assembler::vpcmpeqw(dst, dst, xmm0, vector_len);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4417
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4418
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4419
  } else {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4420
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4421
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4422
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4423
    evmovdqul(Address(rsp, 0), xmm1, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4424
    movdqu(xmm0, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4425
    movdqu(xmm1, dst);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4426
    Assembler::vpcmpeqw(xmm1, xmm1, xmm0, vector_len);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4427
    movdqu(dst, xmm1);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4428
    evmovdqul(xmm1, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4429
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4430
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4431
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4432
  }
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4433
}
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4434
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4435
void MacroAssembler::vpmovzxbw(XMMRegister dst, Address src, int vector_len) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4436
  int dst_enc = dst->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4437
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4438
    Assembler::vpmovzxbw(dst, src, vector_len);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4439
  } else if (dst_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4440
    Assembler::vpmovzxbw(dst, src, vector_len);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4441
  } else {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4442
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4443
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4444
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4445
    Assembler::vpmovzxbw(xmm0, src, vector_len);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4446
    movdqu(dst, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4447
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4448
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4449
  }
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4450
}
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4451
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4452
void MacroAssembler::vpmovmskb(Register dst, XMMRegister src) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4453
  int src_enc = src->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4454
  if (src_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4455
    Assembler::vpmovmskb(dst, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4456
  } else {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4457
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4458
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4459
    evmovdqul(xmm0, src, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4460
    Assembler::vpmovmskb(dst, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4461
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4462
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4463
  }
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4464
}
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4465
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4466
void MacroAssembler::vpmullw(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4467
  int dst_enc = dst->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4468
  int nds_enc = nds->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4469
  int src_enc = src->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4470
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4471
    Assembler::vpmullw(dst, nds, src, vector_len);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4472
  } else if ((dst_enc < 16) && (src_enc < 16)) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4473
    Assembler::vpmullw(dst, dst, src, vector_len);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4474
  } else if ((dst_enc < 16) && (nds_enc < 16)) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4475
    // use nds as scratch for src
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4476
    evmovdqul(nds, src, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4477
    Assembler::vpmullw(dst, dst, nds, vector_len);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4478
  } else if ((src_enc < 16) && (nds_enc < 16)) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4479
    // use nds as scratch for dst
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4480
    evmovdqul(nds, dst, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4481
    Assembler::vpmullw(nds, nds, src, vector_len);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4482
    evmovdqul(dst, nds, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4483
  } else if (dst_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4484
    // use nds as scatch for xmm0 to hold src
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4485
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4486
    evmovdqul(xmm0, src, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4487
    Assembler::vpmullw(dst, dst, xmm0, vector_len);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4488
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4489
  } else {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4490
    // worse case scenario, all regs are in the upper bank
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4491
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4492
    evmovdqul(Address(rsp, 0), xmm1, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4493
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4494
    evmovdqul(xmm1, src, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4495
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4496
    Assembler::vpmullw(xmm0, xmm0, xmm1, vector_len);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4497
    evmovdqul(dst, xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4498
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4499
    evmovdqul(xmm1, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4500
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4501
  }
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4502
}
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4503
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4504
void MacroAssembler::vpmullw(XMMRegister dst, XMMRegister nds, Address src, int vector_len) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4505
  int dst_enc = dst->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4506
  int nds_enc = nds->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4507
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4508
    Assembler::vpmullw(dst, nds, src, vector_len);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4509
  } else if (dst_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4510
    Assembler::vpmullw(dst, dst, src, vector_len);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4511
  } else if (nds_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4512
    // implies dst_enc in upper bank with src as scratch
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4513
    evmovdqul(nds, dst, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4514
    Assembler::vpmullw(nds, nds, src, vector_len);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4515
    evmovdqul(dst, nds, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4516
  } else {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4517
    // worse case scenario, all regs in upper bank
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4518
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4519
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4520
    Assembler::vpmullw(xmm0, xmm0, src, vector_len);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4521
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4522
  }
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4523
}
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4524
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4525
void MacroAssembler::vpsubb(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4526
  int dst_enc = dst->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4527
  int nds_enc = nds->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4528
  int src_enc = src->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4529
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4530
    Assembler::vpsubb(dst, nds, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4531
  } else if ((dst_enc < 16) && (src_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4532
    Assembler::vpsubb(dst, dst, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4533
  } else if ((dst_enc < 16) && (nds_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4534
    // use nds as scratch for src
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4535
    evmovdqul(nds, src, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4536
    Assembler::vpsubb(dst, dst, nds, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4537
  } else if ((src_enc < 16) && (nds_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4538
    // use nds as scratch for dst
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4539
    evmovdqul(nds, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4540
    Assembler::vpsubb(nds, nds, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4541
    evmovdqul(dst, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4542
  } else if (dst_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4543
    // use nds as scatch for xmm0 to hold src
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4544
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4545
    evmovdqul(xmm0, src, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4546
    Assembler::vpsubb(dst, dst, xmm0, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4547
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4548
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4549
    // worse case scenario, all regs are in the upper bank
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4550
    subptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4551
    evmovdqul(Address(rsp, 0), xmm1, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4552
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4553
    evmovdqul(xmm1, src, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4554
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4555
    Assembler::vpsubb(xmm0, xmm0, xmm1, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4556
    evmovdqul(dst, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4557
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4558
    evmovdqul(xmm1, Address(rsp, 0), Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4559
    addptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4560
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4561
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4562
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4563
void MacroAssembler::vpsubb(XMMRegister dst, XMMRegister nds, Address src, int vector_len) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4564
  int dst_enc = dst->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4565
  int nds_enc = nds->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4566
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4567
    Assembler::vpsubb(dst, nds, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4568
  } else if (dst_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4569
    Assembler::vpsubb(dst, dst, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4570
  } else if (nds_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4571
    // implies dst_enc in upper bank with src as scratch
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4572
    evmovdqul(nds, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4573
    Assembler::vpsubb(nds, nds, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4574
    evmovdqul(dst, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4575
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4576
    // worse case scenario, all regs in upper bank
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4577
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4578
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4579
    Assembler::vpsubw(xmm0, xmm0, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4580
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4581
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4582
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4583
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4584
void MacroAssembler::vpsubw(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4585
  int dst_enc = dst->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4586
  int nds_enc = nds->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4587
  int src_enc = src->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4588
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4589
    Assembler::vpsubw(dst, nds, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4590
  } else if ((dst_enc < 16) && (src_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4591
    Assembler::vpsubw(dst, dst, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4592
  } else if ((dst_enc < 16) && (nds_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4593
    // use nds as scratch for src
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4594
    evmovdqul(nds, src, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4595
    Assembler::vpsubw(dst, dst, nds, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4596
  } else if ((src_enc < 16) && (nds_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4597
    // use nds as scratch for dst
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4598
    evmovdqul(nds, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4599
    Assembler::vpsubw(nds, nds, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4600
    evmovdqul(dst, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4601
  } else if (dst_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4602
    // use nds as scatch for xmm0 to hold src
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4603
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4604
    evmovdqul(xmm0, src, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4605
    Assembler::vpsubw(dst, dst, xmm0, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4606
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4607
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4608
    // worse case scenario, all regs are in the upper bank
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4609
    subptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4610
    evmovdqul(Address(rsp, 0), xmm1, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4611
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4612
    evmovdqul(xmm1, src, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4613
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4614
    Assembler::vpsubw(xmm0, xmm0, xmm1, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4615
    evmovdqul(dst, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4616
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4617
    evmovdqul(xmm1, Address(rsp, 0), Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4618
    addptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4619
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4620
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4621
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4622
void MacroAssembler::vpsubw(XMMRegister dst, XMMRegister nds, Address src, int vector_len) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4623
  int dst_enc = dst->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4624
  int nds_enc = nds->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4625
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4626
    Assembler::vpsubw(dst, nds, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4627
  } else if (dst_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4628
    Assembler::vpsubw(dst, dst, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4629
  } else if (nds_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4630
    // implies dst_enc in upper bank with src as scratch
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4631
    evmovdqul(nds, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4632
    Assembler::vpsubw(nds, nds, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4633
    evmovdqul(dst, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4634
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4635
    // worse case scenario, all regs in upper bank
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4636
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4637
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4638
    Assembler::vpsubw(xmm0, xmm0, src, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4639
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4640
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4641
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4642
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4643
void MacroAssembler::vpsraw(XMMRegister dst, XMMRegister nds, XMMRegister shift, int vector_len) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4644
  int dst_enc = dst->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4645
  int nds_enc = nds->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4646
  int shift_enc = shift->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4647
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4648
    Assembler::vpsraw(dst, nds, shift, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4649
  } else if ((dst_enc < 16) && (shift_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4650
    Assembler::vpsraw(dst, dst, shift, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4651
  } else if ((dst_enc < 16) && (nds_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4652
    // use nds_enc as scratch with shift
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4653
    evmovdqul(nds, shift, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4654
    Assembler::vpsraw(dst, dst, nds, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4655
  } else if ((shift_enc < 16) && (nds_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4656
    // use nds as scratch with dst
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4657
    evmovdqul(nds, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4658
    Assembler::vpsraw(nds, nds, shift, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4659
    evmovdqul(dst, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4660
  } else if (dst_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4661
    // use nds to save a copy of xmm0 and hold shift
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4662
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4663
    evmovdqul(xmm0, shift, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4664
    Assembler::vpsraw(dst, dst, xmm0, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4665
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4666
  } else if (nds_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4667
    // use nds as dest as temps
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4668
    evmovdqul(nds, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4669
    evmovdqul(dst, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4670
    evmovdqul(xmm0, shift, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4671
    Assembler::vpsraw(nds, nds, xmm0, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4672
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4673
    evmovdqul(dst, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4674
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4675
    // worse case scenario, all regs are in the upper bank
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4676
    subptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4677
    evmovdqul(Address(rsp, 0), xmm1, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4678
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4679
    evmovdqul(xmm1, shift, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4680
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4681
    Assembler::vpsllw(xmm0, xmm0, xmm1, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4682
    evmovdqul(xmm1, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4683
    evmovdqul(dst, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4684
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4685
    evmovdqul(xmm1, Address(rsp, 0), Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4686
    addptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4687
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4688
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4689
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4690
void MacroAssembler::vpsraw(XMMRegister dst, XMMRegister nds, int shift, int vector_len) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4691
  int dst_enc = dst->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4692
  int nds_enc = nds->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4693
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4694
    Assembler::vpsraw(dst, nds, shift, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4695
  } else if (dst_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4696
    Assembler::vpsraw(dst, dst, shift, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4697
  } else if (nds_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4698
    // use nds as scratch
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4699
    evmovdqul(nds, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4700
    Assembler::vpsraw(nds, nds, shift, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4701
    evmovdqul(dst, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4702
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4703
    // use nds as scratch for xmm0
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4704
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4705
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4706
    Assembler::vpsraw(xmm0, xmm0, shift, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4707
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4708
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4709
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4710
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4711
void MacroAssembler::vpsrlw(XMMRegister dst, XMMRegister nds, XMMRegister shift, int vector_len) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4712
  int dst_enc = dst->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4713
  int nds_enc = nds->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4714
  int shift_enc = shift->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4715
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4716
    Assembler::vpsrlw(dst, nds, shift, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4717
  } else if ((dst_enc < 16) && (shift_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4718
    Assembler::vpsrlw(dst, dst, shift, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4719
  } else if ((dst_enc < 16) && (nds_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4720
    // use nds_enc as scratch with shift
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4721
    evmovdqul(nds, shift, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4722
    Assembler::vpsrlw(dst, dst, nds, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4723
  } else if ((shift_enc < 16) && (nds_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4724
    // use nds as scratch with dst
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4725
    evmovdqul(nds, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4726
    Assembler::vpsrlw(nds, nds, shift, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4727
    evmovdqul(dst, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4728
  } else if (dst_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4729
    // use nds to save a copy of xmm0 and hold shift
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4730
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4731
    evmovdqul(xmm0, shift, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4732
    Assembler::vpsrlw(dst, dst, xmm0, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4733
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4734
  } else if (nds_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4735
    // use nds as dest as temps
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4736
    evmovdqul(nds, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4737
    evmovdqul(dst, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4738
    evmovdqul(xmm0, shift, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4739
    Assembler::vpsrlw(nds, nds, xmm0, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4740
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4741
    evmovdqul(dst, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4742
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4743
    // worse case scenario, all regs are in the upper bank
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4744
    subptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4745
    evmovdqul(Address(rsp, 0), xmm1, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4746
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4747
    evmovdqul(xmm1, shift, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4748
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4749
    Assembler::vpsllw(xmm0, xmm0, xmm1, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4750
    evmovdqul(xmm1, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4751
    evmovdqul(dst, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4752
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4753
    evmovdqul(xmm1, Address(rsp, 0), Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4754
    addptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4755
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4756
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4757
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4758
void MacroAssembler::vpsrlw(XMMRegister dst, XMMRegister nds, int shift, int vector_len) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4759
  int dst_enc = dst->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4760
  int nds_enc = nds->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4761
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4762
    Assembler::vpsrlw(dst, nds, shift, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4763
  } else if (dst_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4764
    Assembler::vpsrlw(dst, dst, shift, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4765
  } else if (nds_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4766
    // use nds as scratch
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4767
    evmovdqul(nds, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4768
    Assembler::vpsrlw(nds, nds, shift, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4769
    evmovdqul(dst, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4770
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4771
    // use nds as scratch for xmm0
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4772
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4773
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4774
    Assembler::vpsrlw(xmm0, xmm0, shift, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4775
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4776
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4777
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4778
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4779
void MacroAssembler::vpsllw(XMMRegister dst, XMMRegister nds, XMMRegister shift, int vector_len) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4780
  int dst_enc = dst->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4781
  int nds_enc = nds->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4782
  int shift_enc = shift->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4783
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4784
    Assembler::vpsllw(dst, nds, shift, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4785
  } else if ((dst_enc < 16) && (shift_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4786
    Assembler::vpsllw(dst, dst, shift, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4787
  } else if ((dst_enc < 16) && (nds_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4788
    // use nds_enc as scratch with shift
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4789
    evmovdqul(nds, shift, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4790
    Assembler::vpsllw(dst, dst, nds, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4791
  } else if ((shift_enc < 16) && (nds_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4792
    // use nds as scratch with dst
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4793
    evmovdqul(nds, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4794
    Assembler::vpsllw(nds, nds, shift, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4795
    evmovdqul(dst, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4796
  } else if (dst_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4797
    // use nds to save a copy of xmm0 and hold shift
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4798
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4799
    evmovdqul(xmm0, shift, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4800
    Assembler::vpsllw(dst, dst, xmm0, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4801
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4802
  } else if (nds_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4803
    // use nds as dest as temps
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4804
    evmovdqul(nds, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4805
    evmovdqul(dst, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4806
    evmovdqul(xmm0, shift, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4807
    Assembler::vpsllw(nds, nds, xmm0, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4808
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4809
    evmovdqul(dst, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4810
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4811
    // worse case scenario, all regs are in the upper bank
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4812
    subptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4813
    evmovdqul(Address(rsp, 0), xmm1, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4814
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4815
    evmovdqul(xmm1, shift, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4816
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4817
    Assembler::vpsllw(xmm0, xmm0, xmm1, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4818
    evmovdqul(xmm1, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4819
    evmovdqul(dst, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4820
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4821
    evmovdqul(xmm1, Address(rsp, 0), Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4822
    addptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4823
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4824
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4825
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4826
void MacroAssembler::vpsllw(XMMRegister dst, XMMRegister nds, int shift, int vector_len) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4827
  int dst_enc = dst->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4828
  int nds_enc = nds->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4829
  if (VM_Version::supports_avxonly() || VM_Version::supports_avx512bw()) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4830
    Assembler::vpsllw(dst, nds, shift, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4831
  } else if (dst_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4832
    Assembler::vpsllw(dst, dst, shift, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4833
  } else if (nds_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4834
    // use nds as scratch
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4835
    evmovdqul(nds, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4836
    Assembler::vpsllw(nds, nds, shift, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4837
    evmovdqul(dst, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4838
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4839
    // use nds as scratch for xmm0
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4840
    evmovdqul(nds, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4841
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4842
    Assembler::vpsllw(xmm0, xmm0, shift, vector_len);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4843
    evmovdqul(xmm0, nds, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4844
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4845
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4846
34203
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4847
void MacroAssembler::vptest(XMMRegister dst, XMMRegister src) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4848
  int dst_enc = dst->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4849
  int src_enc = src->encoding();
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4850
  if ((dst_enc < 16) && (src_enc < 16)) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4851
    Assembler::vptest(dst, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4852
  } else if (src_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4853
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4854
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4855
    evmovdqul(xmm0, dst, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4856
    Assembler::vptest(xmm0, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4857
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4858
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4859
  } else if (dst_enc < 16) {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4860
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4861
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4862
    evmovdqul(xmm0, src, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4863
    Assembler::vptest(dst, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4864
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4865
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4866
  } else {
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4867
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4868
    evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4869
    subptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4870
    evmovdqul(Address(rsp, 0), xmm1, Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4871
    movdqu(xmm0, src);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4872
    movdqu(xmm1, dst);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4873
    Assembler::vptest(xmm1, xmm0);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4874
    evmovdqul(xmm1, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4875
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4876
    evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4877
    addptr(rsp, 64);
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4878
  }
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4879
}
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  4880
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4881
// This instruction exists within macros, ergo we cannot control its input
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4882
// when emitted through those patterns.
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4883
void MacroAssembler::punpcklbw(XMMRegister dst, XMMRegister src) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4884
  if (VM_Version::supports_avx512nobw()) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4885
    int dst_enc = dst->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4886
    int src_enc = src->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4887
    if (dst_enc == src_enc) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4888
      if (dst_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4889
        Assembler::punpcklbw(dst, src);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4890
      } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4891
        subptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4892
        evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4893
        evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4894
        Assembler::punpcklbw(xmm0, xmm0);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4895
        evmovdqul(dst, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4896
        evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4897
        addptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4898
      }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4899
    } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4900
      if ((src_enc < 16) && (dst_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4901
        Assembler::punpcklbw(dst, src);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4902
      } else if (src_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4903
        subptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4904
        evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4905
        evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4906
        Assembler::punpcklbw(xmm0, src);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4907
        evmovdqul(dst, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4908
        evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4909
        addptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4910
      } else if (dst_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4911
        subptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4912
        evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4913
        evmovdqul(xmm0, src, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4914
        Assembler::punpcklbw(dst, xmm0);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4915
        evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4916
        addptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4917
      } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4918
        subptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4919
        evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4920
        subptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4921
        evmovdqul(Address(rsp, 0), xmm1, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4922
        evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4923
        evmovdqul(xmm1, src, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4924
        Assembler::punpcklbw(xmm0, xmm1);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4925
        evmovdqul(dst, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4926
        evmovdqul(xmm1, Address(rsp, 0), Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4927
        addptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4928
        evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4929
        addptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4930
      }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4931
    }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4932
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4933
    Assembler::punpcklbw(dst, src);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4934
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4935
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4936
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4937
// This instruction exists within macros, ergo we cannot control its input
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4938
// when emitted through those patterns.
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4939
void MacroAssembler::pshuflw(XMMRegister dst, XMMRegister src, int mode) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4940
  if (VM_Version::supports_avx512nobw()) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4941
    int dst_enc = dst->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4942
    int src_enc = src->encoding();
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4943
    if (dst_enc == src_enc) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4944
      if (dst_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4945
        Assembler::pshuflw(dst, src, mode);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4946
      } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4947
        subptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4948
        evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4949
        evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4950
        Assembler::pshuflw(xmm0, xmm0, mode);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4951
        evmovdqul(dst, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4952
        evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4953
        addptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4954
      }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4955
    } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4956
      if ((src_enc < 16) && (dst_enc < 16)) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4957
        Assembler::pshuflw(dst, src, mode);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4958
      } else if (src_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4959
        subptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4960
        evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4961
        evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4962
        Assembler::pshuflw(xmm0, src, mode);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4963
        evmovdqul(dst, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4964
        evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4965
        addptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4966
      } else if (dst_enc < 16) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4967
        subptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4968
        evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4969
        evmovdqul(xmm0, src, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4970
        Assembler::pshuflw(dst, xmm0, mode);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4971
        evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4972
        addptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4973
      } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4974
        subptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4975
        evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4976
        subptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4977
        evmovdqul(Address(rsp, 0), xmm1, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4978
        evmovdqul(xmm0, dst, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4979
        evmovdqul(xmm1, src, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4980
        Assembler::pshuflw(xmm0, xmm1, mode);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4981
        evmovdqul(dst, xmm0, Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4982
        evmovdqul(xmm1, Address(rsp, 0), Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4983
        addptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4984
        evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4985
        addptr(rsp, 64);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4986
      }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4987
    }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4988
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4989
    Assembler::pshuflw(dst, src, mode);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4990
  }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4991
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  4992
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  4993
void MacroAssembler::vandpd(XMMRegister dst, XMMRegister nds, AddressLiteral src, int vector_len) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4994
  if (reachable(src)) {
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  4995
    vandpd(dst, nds, as_Address(src), vector_len);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4996
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  4997
    lea(rscratch1, src);
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  4998
    vandpd(dst, nds, Address(rscratch1, 0), vector_len);
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  4999
  }
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  5000
}
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  5001
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  5002
void MacroAssembler::vandps(XMMRegister dst, XMMRegister nds, AddressLiteral src, int vector_len) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5003
  if (reachable(src)) {
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  5004
    vandps(dst, nds, as_Address(src), vector_len);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5005
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5006
    lea(rscratch1, src);
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  5007
    vandps(dst, nds, Address(rscratch1, 0), vector_len);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5008
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5009
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5010
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5011
void MacroAssembler::vdivsd(XMMRegister dst, XMMRegister nds, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5012
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5013
    vdivsd(dst, nds, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5014
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5015
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5016
    vdivsd(dst, nds, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5017
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5018
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5019
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5020
void MacroAssembler::vdivss(XMMRegister dst, XMMRegister nds, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5021
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5022
    vdivss(dst, nds, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5023
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5024
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5025
    vdivss(dst, nds, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5026
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5027
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5028
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5029
void MacroAssembler::vmulsd(XMMRegister dst, XMMRegister nds, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5030
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5031
    vmulsd(dst, nds, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5032
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5033
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5034
    vmulsd(dst, nds, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5035
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5036
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5037
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5038
void MacroAssembler::vmulss(XMMRegister dst, XMMRegister nds, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5039
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5040
    vmulss(dst, nds, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5041
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5042
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5043
    vmulss(dst, nds, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5044
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5045
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5046
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5047
void MacroAssembler::vsubsd(XMMRegister dst, XMMRegister nds, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5048
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5049
    vsubsd(dst, nds, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5050
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5051
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5052
    vsubsd(dst, nds, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5053
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5054
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5055
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5056
void MacroAssembler::vsubss(XMMRegister dst, XMMRegister nds, AddressLiteral src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5057
  if (reachable(src)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5058
    vsubss(dst, nds, as_Address(src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5059
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5060
    lea(rscratch1, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5061
    vsubss(dst, nds, Address(rscratch1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5062
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5063
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5064
32727
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5065
void MacroAssembler::vnegatess(XMMRegister dst, XMMRegister nds, AddressLiteral src) {
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5066
  int nds_enc = nds->encoding();
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5067
  int dst_enc = dst->encoding();
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5068
  bool dst_upper_bank = (dst_enc > 15);
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5069
  bool nds_upper_bank = (nds_enc > 15);
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5070
  if (VM_Version::supports_avx512novl() &&
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5071
      (nds_upper_bank || dst_upper_bank)) {
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5072
    if (dst_upper_bank) {
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5073
      subptr(rsp, 64);
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5074
      evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5075
      movflt(xmm0, nds);
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  5076
      vxorps(xmm0, xmm0, src, Assembler::AVX_128bit);
32727
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5077
      movflt(dst, xmm0);
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5078
      evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5079
      addptr(rsp, 64);
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5080
    } else {
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5081
      movflt(dst, nds);
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  5082
      vxorps(dst, dst, src, Assembler::AVX_128bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  5083
    }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  5084
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  5085
    vxorps(dst, nds, src, Assembler::AVX_128bit);
32727
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5086
  }
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5087
}
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5088
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5089
void MacroAssembler::vnegatesd(XMMRegister dst, XMMRegister nds, AddressLiteral src) {
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5090
  int nds_enc = nds->encoding();
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5091
  int dst_enc = dst->encoding();
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5092
  bool dst_upper_bank = (dst_enc > 15);
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5093
  bool nds_upper_bank = (nds_enc > 15);
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5094
  if (VM_Version::supports_avx512novl() &&
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5095
      (nds_upper_bank || dst_upper_bank)) {
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5096
    if (dst_upper_bank) {
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5097
      subptr(rsp, 64);
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5098
      evmovdqul(Address(rsp, 0), xmm0, Assembler::AVX_512bit);
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5099
      movdbl(xmm0, nds);
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  5100
      vxorpd(xmm0, xmm0, src, Assembler::AVX_128bit);
32727
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5101
      movdbl(dst, xmm0);
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5102
      evmovdqul(xmm0, Address(rsp, 0), Assembler::AVX_512bit);
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5103
      addptr(rsp, 64);
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5104
    } else {
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5105
      movdbl(dst, nds);
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  5106
      vxorpd(dst, dst, src, Assembler::AVX_128bit);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  5107
    }
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  5108
  } else {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  5109
    vxorpd(dst, nds, src, Assembler::AVX_128bit);
32727
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5110
  }
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5111
}
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  5112
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  5113
void MacroAssembler::vxorpd(XMMRegister dst, XMMRegister nds, AddressLiteral src, int vector_len) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5114
  if (reachable(src)) {
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  5115
    vxorpd(dst, nds, as_Address(src), vector_len);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5116
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5117
    lea(rscratch1, src);
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  5118
    vxorpd(dst, nds, Address(rscratch1, 0), vector_len);
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  5119
  }
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  5120
}
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  5121
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  5122
void MacroAssembler::vxorps(XMMRegister dst, XMMRegister nds, AddressLiteral src, int vector_len) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5123
  if (reachable(src)) {
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  5124
    vxorps(dst, nds, as_Address(src), vector_len);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5125
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5126
    lea(rscratch1, src);
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  5127
    vxorps(dst, nds, Address(rscratch1, 0), vector_len);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5128
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5129
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5130
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5131
43964
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5132
void MacroAssembler::resolve_jobject(Register value,
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5133
                                     Register thread,
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5134
                                     Register tmp) {
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5135
  assert_different_registers(value, thread, tmp);
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5136
  Label done, not_weak;
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5137
  testptr(value, value);
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5138
  jcc(Assembler::zero, done);                // Use NULL as-is.
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5139
  testptr(value, JNIHandles::weak_tag_mask); // Test for jweak tag.
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5140
  jcc(Assembler::zero, not_weak);
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5141
  // Resolve jweak.
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5142
  movptr(value, Address(value, -JNIHandles::weak_tag_value));
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5143
  verify_oop(value);
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5144
#if INCLUDE_ALL_GCS
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5145
  if (UseG1GC) {
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5146
    g1_write_barrier_pre(noreg /* obj */,
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5147
                         value /* pre_val */,
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5148
                         thread /* thread */,
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5149
                         tmp /* tmp */,
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5150
                         true /* tosca_live */,
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5151
                         true /* expand_call */);
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5152
  }
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5153
#endif // INCLUDE_ALL_GCS
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5154
  jmp(done);
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5155
  bind(not_weak);
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5156
  // Resolve (untagged) jobject.
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5157
  movptr(value, Address(value, 0));
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5158
  verify_oop(value);
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5159
  bind(done);
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5160
}
2f5e556a6037 8166188: G1 Needs pre barrier on dereference of weak JNI handles
kbarrett
parents: 43423
diff changeset
  5161
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5162
//////////////////////////////////////////////////////////////////////////////////
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 15117
diff changeset
  5163
#if INCLUDE_ALL_GCS
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5164
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5165
void MacroAssembler::g1_write_barrier_pre(Register obj,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5166
                                          Register pre_val,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5167
                                          Register thread,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5168
                                          Register tmp,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5169
                                          bool tosca_live,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5170
                                          bool expand_call) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5171
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5172
  // If expand_call is true then we expand the call_VM_leaf macro
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5173
  // directly to skip generating the check by
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5174
  // InterpreterMacroAssembler::call_VM_leaf_base that checks _last_sp.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5175
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5176
#ifdef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5177
  assert(thread == r15_thread, "must be");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5178
#endif // _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5179
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5180
  Label done;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5181
  Label runtime;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5182
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5183
  assert(pre_val != noreg, "check this code");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5184
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5185
  if (obj != noreg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5186
    assert_different_registers(obj, pre_val, tmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5187
    assert(pre_val != rax, "check this code");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5188
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5189
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5190
  Address in_progress(thread, in_bytes(JavaThread::satb_mark_queue_offset() +
34148
6efbc7ffd767 8143014: Access PtrQueue member offsets through derived classes
kbarrett
parents: 33639
diff changeset
  5191
                                       SATBMarkQueue::byte_offset_of_active()));
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5192
  Address index(thread, in_bytes(JavaThread::satb_mark_queue_offset() +
34148
6efbc7ffd767 8143014: Access PtrQueue member offsets through derived classes
kbarrett
parents: 33639
diff changeset
  5193
                                       SATBMarkQueue::byte_offset_of_index()));
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5194
  Address buffer(thread, in_bytes(JavaThread::satb_mark_queue_offset() +
34148
6efbc7ffd767 8143014: Access PtrQueue member offsets through derived classes
kbarrett
parents: 33639
diff changeset
  5195
                                       SATBMarkQueue::byte_offset_of_buf()));
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5196
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5197
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5198
  // Is marking active?
34148
6efbc7ffd767 8143014: Access PtrQueue member offsets through derived classes
kbarrett
parents: 33639
diff changeset
  5199
  if (in_bytes(SATBMarkQueue::byte_width_of_active()) == 4) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5200
    cmpl(in_progress, 0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5201
  } else {
34148
6efbc7ffd767 8143014: Access PtrQueue member offsets through derived classes
kbarrett
parents: 33639
diff changeset
  5202
    assert(in_bytes(SATBMarkQueue::byte_width_of_active()) == 1, "Assumption");
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5203
    cmpb(in_progress, 0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5204
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5205
  jcc(Assembler::equal, done);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5206
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5207
  // Do we need to load the previous value?
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5208
  if (obj != noreg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5209
    load_heap_oop(pre_val, Address(obj, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5210
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5211
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5212
  // Is the previous value null?
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5213
  cmpptr(pre_val, (int32_t) NULL_WORD);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5214
  jcc(Assembler::equal, done);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5215
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5216
  // Can we store original value in the thread's buffer?
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5217
  // Is index == 0?
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5218
  // (The index field is typed as size_t.)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5219
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5220
  movptr(tmp, index);                   // tmp := *index_adr
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5221
  cmpptr(tmp, 0);                       // tmp == 0?
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5222
  jcc(Assembler::equal, runtime);       // If yes, goto runtime
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5223
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5224
  subptr(tmp, wordSize);                // tmp := tmp - wordSize
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5225
  movptr(index, tmp);                   // *index_adr := tmp
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5226
  addptr(tmp, buffer);                  // tmp := tmp + *buffer_adr
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5227
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5228
  // Record the previous value
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5229
  movptr(Address(tmp, 0), pre_val);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5230
  jmp(done);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5231
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5232
  bind(runtime);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5233
  // save the live input values
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5234
  if(tosca_live) push(rax);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5235
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5236
  if (obj != noreg && obj != rax)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5237
    push(obj);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5238
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5239
  if (pre_val != rax)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5240
    push(pre_val);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5241
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5242
  // Calling the runtime using the regular call_VM_leaf mechanism generates
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5243
  // code (generated by InterpreterMacroAssember::call_VM_leaf_base)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5244
  // that checks that the *(ebp+frame::interpreter_frame_last_sp) == NULL.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5245
  //
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5246
  // If we care generating the pre-barrier without a frame (e.g. in the
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5247
  // intrinsified Reference.get() routine) then ebp might be pointing to
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5248
  // the caller frame and so this check will most likely fail at runtime.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5249
  //
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5250
  // Expanding the call directly bypasses the generation of the check.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5251
  // So when we do not have have a full interpreter frame on the stack
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5252
  // expand_call should be passed true.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5253
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5254
  NOT_LP64( push(thread); )
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5255
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5256
  if (expand_call) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5257
    LP64_ONLY( assert(pre_val != c_rarg1, "smashed arg"); )
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5258
    pass_arg1(this, thread);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5259
    pass_arg0(this, pre_val);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5260
    MacroAssembler::call_VM_leaf_base(CAST_FROM_FN_PTR(address, SharedRuntime::g1_wb_pre), 2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5261
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5262
    call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::g1_wb_pre), pre_val, thread);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5263
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5264
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5265
  NOT_LP64( pop(thread); )
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5266
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5267
  // save the live input values
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5268
  if (pre_val != rax)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5269
    pop(pre_val);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5270
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5271
  if (obj != noreg && obj != rax)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5272
    pop(obj);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5273
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5274
  if(tosca_live) pop(rax);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5275
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5276
  bind(done);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5277
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5278
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5279
void MacroAssembler::g1_write_barrier_post(Register store_addr,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5280
                                           Register new_val,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5281
                                           Register thread,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5282
                                           Register tmp,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5283
                                           Register tmp2) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5284
#ifdef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5285
  assert(thread == r15_thread, "must be");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5286
#endif // _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5287
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5288
  Address queue_index(thread, in_bytes(JavaThread::dirty_card_queue_offset() +
34148
6efbc7ffd767 8143014: Access PtrQueue member offsets through derived classes
kbarrett
parents: 33639
diff changeset
  5289
                                       DirtyCardQueue::byte_offset_of_index()));
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5290
  Address buffer(thread, in_bytes(JavaThread::dirty_card_queue_offset() +
34148
6efbc7ffd767 8143014: Access PtrQueue member offsets through derived classes
kbarrett
parents: 33639
diff changeset
  5291
                                       DirtyCardQueue::byte_offset_of_buf()));
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5292
29325
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29070
diff changeset
  5293
  CardTableModRefBS* ct =
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29070
diff changeset
  5294
    barrier_set_cast<CardTableModRefBS>(Universe::heap()->barrier_set());
21923
5cd9eb764fe9 8028109: compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java crashes in RT_Baseline
anoll
parents: 21528
diff changeset
  5295
  assert(sizeof(*ct->byte_map_base) == sizeof(jbyte), "adjust this code");
5cd9eb764fe9 8028109: compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java crashes in RT_Baseline
anoll
parents: 21528
diff changeset
  5296
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5297
  Label done;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5298
  Label runtime;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5299
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5300
  // Does store cross heap regions?
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5301
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5302
  movptr(tmp, store_addr);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5303
  xorptr(tmp, new_val);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5304
  shrptr(tmp, HeapRegion::LogOfHRGrainBytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5305
  jcc(Assembler::equal, done);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5306
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5307
  // crosses regions, storing NULL?
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5308
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5309
  cmpptr(new_val, (int32_t) NULL_WORD);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5310
  jcc(Assembler::equal, done);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5311
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5312
  // storing region crossing non-NULL, is card already dirty?
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5313
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5314
  const Register card_addr = tmp;
21923
5cd9eb764fe9 8028109: compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java crashes in RT_Baseline
anoll
parents: 21528
diff changeset
  5315
  const Register cardtable = tmp2;
5cd9eb764fe9 8028109: compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java crashes in RT_Baseline
anoll
parents: 21528
diff changeset
  5316
5cd9eb764fe9 8028109: compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java crashes in RT_Baseline
anoll
parents: 21528
diff changeset
  5317
  movptr(card_addr, store_addr);
5cd9eb764fe9 8028109: compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java crashes in RT_Baseline
anoll
parents: 21528
diff changeset
  5318
  shrptr(card_addr, CardTableModRefBS::card_shift);
5cd9eb764fe9 8028109: compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java crashes in RT_Baseline
anoll
parents: 21528
diff changeset
  5319
  // Do not use ExternalAddress to load 'byte_map_base', since 'byte_map_base' is NOT
5cd9eb764fe9 8028109: compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java crashes in RT_Baseline
anoll
parents: 21528
diff changeset
  5320
  // a valid address and therefore is not properly handled by the relocation code.
5cd9eb764fe9 8028109: compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java crashes in RT_Baseline
anoll
parents: 21528
diff changeset
  5321
  movptr(cardtable, (intptr_t)ct->byte_map_base);
5cd9eb764fe9 8028109: compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java crashes in RT_Baseline
anoll
parents: 21528
diff changeset
  5322
  addptr(card_addr, cardtable);
5cd9eb764fe9 8028109: compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java crashes in RT_Baseline
anoll
parents: 21528
diff changeset
  5323
20403
45a89fbcd8f7 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 19979
diff changeset
  5324
  cmpb(Address(card_addr, 0), (int)G1SATBCardTableModRefBS::g1_young_card_val());
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5325
  jcc(Assembler::equal, done);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5326
20403
45a89fbcd8f7 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 19979
diff changeset
  5327
  membar(Assembler::Membar_mask_bits(Assembler::StoreLoad));
45a89fbcd8f7 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 19979
diff changeset
  5328
  cmpb(Address(card_addr, 0), (int)CardTableModRefBS::dirty_card_val());
45a89fbcd8f7 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 19979
diff changeset
  5329
  jcc(Assembler::equal, done);
45a89fbcd8f7 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 19979
diff changeset
  5330
45a89fbcd8f7 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 19979
diff changeset
  5331
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5332
  // storing a region crossing, non-NULL oop, card is clean.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5333
  // dirty card and log.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5334
20403
45a89fbcd8f7 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 19979
diff changeset
  5335
  movb(Address(card_addr, 0), (int)CardTableModRefBS::dirty_card_val());
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5336
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5337
  cmpl(queue_index, 0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5338
  jcc(Assembler::equal, runtime);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5339
  subl(queue_index, wordSize);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5340
  movptr(tmp2, buffer);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5341
#ifdef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5342
  movslq(rscratch1, queue_index);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5343
  addq(tmp2, rscratch1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5344
  movq(Address(tmp2, 0), card_addr);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5345
#else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5346
  addl(tmp2, queue_index);
21923
5cd9eb764fe9 8028109: compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java crashes in RT_Baseline
anoll
parents: 21528
diff changeset
  5347
  movl(Address(tmp2, 0), card_addr);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5348
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5349
  jmp(done);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5350
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5351
  bind(runtime);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5352
  // save the live input values
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5353
  push(store_addr);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5354
  push(new_val);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5355
#ifdef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5356
  call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::g1_wb_post), card_addr, r15_thread);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5357
#else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5358
  push(thread);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5359
  call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::g1_wb_post), card_addr, thread);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5360
  pop(thread);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5361
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5362
  pop(new_val);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5363
  pop(store_addr);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5364
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5365
  bind(done);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5366
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5367
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 15117
diff changeset
  5368
#endif // INCLUDE_ALL_GCS
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5369
//////////////////////////////////////////////////////////////////////////////////
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5370
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5371
31368
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5372
void MacroAssembler::store_check(Register obj, Address dst) {
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5373
  store_check(obj);
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5374
}
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5375
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5376
void MacroAssembler::store_check(Register obj) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5377
  // Does a store check for the oop in register obj. The content of
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5378
  // register obj is destroyed afterwards.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5379
  BarrierSet* bs = Universe::heap()->barrier_set();
32596
8feecdee3156 8072817: CardTableExtension kind() should be BarrierSet::CardTableExtension
kbarrett
parents: 32203
diff changeset
  5380
  assert(bs->kind() == BarrierSet::CardTableForRS ||
8feecdee3156 8072817: CardTableExtension kind() should be BarrierSet::CardTableExtension
kbarrett
parents: 32203
diff changeset
  5381
         bs->kind() == BarrierSet::CardTableExtension,
8feecdee3156 8072817: CardTableExtension kind() should be BarrierSet::CardTableExtension
kbarrett
parents: 32203
diff changeset
  5382
         "Wrong barrier set kind");
31368
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5383
29325
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29070
diff changeset
  5384
  CardTableModRefBS* ct = barrier_set_cast<CardTableModRefBS>(bs);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5385
  assert(sizeof(*ct->byte_map_base) == sizeof(jbyte), "adjust this code");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5386
31368
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5387
  shrptr(obj, CardTableModRefBS::card_shift);
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5388
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5389
  Address card_addr;
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5390
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5391
  // The calculation for byte_map_base is as follows:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5392
  // byte_map_base = _byte_map - (uintptr_t(low_bound) >> card_shift);
21923
5cd9eb764fe9 8028109: compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java crashes in RT_Baseline
anoll
parents: 21528
diff changeset
  5393
  // So this essentially converts an address to a displacement and it will
5cd9eb764fe9 8028109: compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java crashes in RT_Baseline
anoll
parents: 21528
diff changeset
  5394
  // never need to be relocated. On 64bit however the value may be too
5cd9eb764fe9 8028109: compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java crashes in RT_Baseline
anoll
parents: 21528
diff changeset
  5395
  // large for a 32bit displacement.
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5396
  intptr_t disp = (intptr_t) ct->byte_map_base;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5397
  if (is_simm32(disp)) {
31368
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5398
    card_addr = Address(noreg, obj, Address::times_1, disp);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5399
  } else {
21923
5cd9eb764fe9 8028109: compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java crashes in RT_Baseline
anoll
parents: 21528
diff changeset
  5400
    // By doing it as an ExternalAddress 'disp' could be converted to a rip-relative
5cd9eb764fe9 8028109: compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java crashes in RT_Baseline
anoll
parents: 21528
diff changeset
  5401
    // displacement and done in a single instruction given favorable mapping and a
5cd9eb764fe9 8028109: compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java crashes in RT_Baseline
anoll
parents: 21528
diff changeset
  5402
    // smarter version of as_Address. However, 'ExternalAddress' generates a relocation
5cd9eb764fe9 8028109: compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java crashes in RT_Baseline
anoll
parents: 21528
diff changeset
  5403
    // entry and that entry is not properly handled by the relocation code.
5cd9eb764fe9 8028109: compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java crashes in RT_Baseline
anoll
parents: 21528
diff changeset
  5404
    AddressLiteral cardtable((address)ct->byte_map_base, relocInfo::none);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5405
    Address index(noreg, obj, Address::times_1);
31368
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5406
    card_addr = as_Address(ArrayAddress(cardtable, index));
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5407
  }
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5408
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5409
  int dirty = CardTableModRefBS::dirty_card_val();
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5410
  if (UseCondCardMark) {
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5411
    Label L_already_dirty;
31369
0c3dcc865a1c 8079315: UseCondCardMark broken in conjunction with CMS precleaning on x86
aph
parents: 31368
diff changeset
  5412
    if (UseConcMarkSweepGC) {
0c3dcc865a1c 8079315: UseCondCardMark broken in conjunction with CMS precleaning on x86
aph
parents: 31368
diff changeset
  5413
      membar(Assembler::StoreLoad);
0c3dcc865a1c 8079315: UseCondCardMark broken in conjunction with CMS precleaning on x86
aph
parents: 31368
diff changeset
  5414
    }
31368
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5415
    cmpb(card_addr, dirty);
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5416
    jcc(Assembler::equal, L_already_dirty);
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5417
    movb(card_addr, dirty);
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5418
    bind(L_already_dirty);
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5419
  } else {
2cb1abbda511 8078438: Interpreter should support conditional card marks (UseCondCardMark) on x86 and aarch64
shade
parents: 31129
diff changeset
  5420
    movb(card_addr, dirty);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5421
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5422
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5423
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5424
void MacroAssembler::subptr(Register dst, int32_t imm32) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5425
  LP64_ONLY(subq(dst, imm32)) NOT_LP64(subl(dst, imm32));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5426
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5427
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5428
// Force generation of a 4 byte immediate value even if it fits into 8bit
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5429
void MacroAssembler::subptr_imm32(Register dst, int32_t imm32) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5430
  LP64_ONLY(subq_imm32(dst, imm32)) NOT_LP64(subl_imm32(dst, imm32));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5431
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5432
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5433
void MacroAssembler::subptr(Register dst, Register src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5434
  LP64_ONLY(subq(dst, src)) NOT_LP64(subl(dst, src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5435
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5436
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5437
// C++ bool manipulation
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5438
void MacroAssembler::testbool(Register dst) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5439
  if(sizeof(bool) == 1)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5440
    testb(dst, 0xff);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5441
  else if(sizeof(bool) == 2) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5442
    // testw implementation needed for two byte bools
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5443
    ShouldNotReachHere();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5444
  } else if(sizeof(bool) == 4)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5445
    testl(dst, dst);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5446
  else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5447
    // unsupported
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5448
    ShouldNotReachHere();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5449
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5450
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5451
void MacroAssembler::testptr(Register dst, Register src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5452
  LP64_ONLY(testq(dst, src)) NOT_LP64(testl(dst, src));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5453
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5454
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5455
// Defines obj, preserves var_size_in_bytes, okay for t2 == var_size_in_bytes.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5456
void MacroAssembler::tlab_allocate(Register obj,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5457
                                   Register var_size_in_bytes,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5458
                                   int con_size_in_bytes,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5459
                                   Register t1,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5460
                                   Register t2,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5461
                                   Label& slow_case) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5462
  assert_different_registers(obj, t1, t2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5463
  assert_different_registers(obj, var_size_in_bytes, t1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5464
  Register end = t2;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5465
  Register thread = NOT_LP64(t1) LP64_ONLY(r15_thread);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5466
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5467
  verify_tlab();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5468
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5469
  NOT_LP64(get_thread(thread));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5470
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5471
  movptr(obj, Address(thread, JavaThread::tlab_top_offset()));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5472
  if (var_size_in_bytes == noreg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5473
    lea(end, Address(obj, con_size_in_bytes));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5474
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5475
    lea(end, Address(obj, var_size_in_bytes, Address::times_1));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5476
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5477
  cmpptr(end, Address(thread, JavaThread::tlab_end_offset()));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5478
  jcc(Assembler::above, slow_case);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5479
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5480
  // update the tlab top pointer
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5481
  movptr(Address(thread, JavaThread::tlab_top_offset()), end);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5482
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5483
  // recover var_size_in_bytes if necessary
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5484
  if (var_size_in_bytes == end) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5485
    subptr(var_size_in_bytes, obj);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5486
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5487
  verify_tlab();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5488
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5489
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5490
// Preserves rbx, and rdx.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5491
Register MacroAssembler::tlab_refill(Label& retry,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5492
                                     Label& try_eden,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5493
                                     Label& slow_case) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5494
  Register top = rax;
35548
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5495
  Register t1  = rcx; // object size
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5496
  Register t2  = rsi;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5497
  Register thread_reg = NOT_LP64(rdi) LP64_ONLY(r15_thread);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5498
  assert_different_registers(top, thread_reg, t1, t2, /* preserve: */ rbx, rdx);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5499
  Label do_refill, discard_tlab;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5500
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 26434
diff changeset
  5501
  if (!Universe::heap()->supports_inline_contig_alloc()) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5502
    // No allocation in the shared eden.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5503
    jmp(slow_case);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5504
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5505
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5506
  NOT_LP64(get_thread(thread_reg));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5507
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5508
  movptr(top, Address(thread_reg, in_bytes(JavaThread::tlab_top_offset())));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5509
  movptr(t1,  Address(thread_reg, in_bytes(JavaThread::tlab_end_offset())));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5510
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5511
  // calculate amount of free space
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5512
  subptr(t1, top);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5513
  shrptr(t1, LogHeapWordSize);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5514
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5515
  // Retain tlab and allocate object in shared space if
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5516
  // the amount free in the tlab is too large to discard.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5517
  cmpptr(t1, Address(thread_reg, in_bytes(JavaThread::tlab_refill_waste_limit_offset())));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5518
  jcc(Assembler::lessEqual, discard_tlab);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5519
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5520
  // Retain
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5521
  // %%% yuck as movptr...
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5522
  movptr(t2, (int32_t) ThreadLocalAllocBuffer::refill_waste_limit_increment());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5523
  addptr(Address(thread_reg, in_bytes(JavaThread::tlab_refill_waste_limit_offset())), t2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5524
  if (TLABStats) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5525
    // increment number of slow_allocations
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5526
    addl(Address(thread_reg, in_bytes(JavaThread::tlab_slow_allocations_offset())), 1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5527
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5528
  jmp(try_eden);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5529
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5530
  bind(discard_tlab);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5531
  if (TLABStats) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5532
    // increment number of refills
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5533
    addl(Address(thread_reg, in_bytes(JavaThread::tlab_number_of_refills_offset())), 1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5534
    // accumulate wastage -- t1 is amount free in tlab
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5535
    addl(Address(thread_reg, in_bytes(JavaThread::tlab_fast_refill_waste_offset())), t1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5536
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5537
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5538
  // if tlab is currently allocated (top or end != null) then
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5539
  // fill [top, end + alignment_reserve) with array object
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5540
  testptr(top, top);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5541
  jcc(Assembler::zero, do_refill);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5542
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5543
  // set up the mark word
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5544
  movptr(Address(top, oopDesc::mark_offset_in_bytes()), (intptr_t)markOopDesc::prototype()->copy_set_hash(0x2));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5545
  // set the length to the remaining space
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5546
  subptr(t1, typeArrayOopDesc::header_size(T_INT));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5547
  addptr(t1, (int32_t)ThreadLocalAllocBuffer::alignment_reserve());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5548
  shlptr(t1, log2_intptr(HeapWordSize/sizeof(jint)));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5549
  movl(Address(top, arrayOopDesc::length_offset_in_bytes()), t1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5550
  // set klass to intArrayKlass
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5551
  // dubious reloc why not an oop reloc?
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5552
  movptr(t1, ExternalAddress((address)Universe::intArrayKlassObj_addr()));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5553
  // store klass last.  concurrent gcs assumes klass length is valid if
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5554
  // klass field is not null.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5555
  store_klass(top, t1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5556
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5557
  movptr(t1, top);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5558
  subptr(t1, Address(thread_reg, in_bytes(JavaThread::tlab_start_offset())));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5559
  incr_allocated_bytes(thread_reg, t1, 0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5560
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5561
  // refill the tlab with an eden allocation
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5562
  bind(do_refill);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5563
  movptr(t1, Address(thread_reg, in_bytes(JavaThread::tlab_size_offset())));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5564
  shlptr(t1, LogHeapWordSize);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5565
  // allocate new tlab, address returned in top
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5566
  eden_allocate(top, t1, 0, t2, slow_case);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5567
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5568
  // Check that t1 was preserved in eden_allocate.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5569
#ifdef ASSERT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5570
  if (UseTLAB) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5571
    Label ok;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5572
    Register tsize = rsi;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5573
    assert_different_registers(tsize, thread_reg, t1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5574
    push(tsize);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5575
    movptr(tsize, Address(thread_reg, in_bytes(JavaThread::tlab_size_offset())));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5576
    shlptr(tsize, LogHeapWordSize);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5577
    cmpptr(t1, tsize);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5578
    jcc(Assembler::equal, ok);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5579
    STOP("assert(t1 != tlab size)");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5580
    should_not_reach_here();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5581
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5582
    bind(ok);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5583
    pop(tsize);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5584
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5585
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5586
  movptr(Address(thread_reg, in_bytes(JavaThread::tlab_start_offset())), top);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5587
  movptr(Address(thread_reg, in_bytes(JavaThread::tlab_top_offset())), top);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5588
  addptr(top, t1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5589
  subptr(top, (int32_t)ThreadLocalAllocBuffer::alignment_reserve_in_bytes());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5590
  movptr(Address(thread_reg, in_bytes(JavaThread::tlab_end_offset())), top);
35548
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5591
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5592
  if (ZeroTLAB) {
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5593
    // This is a fast TLAB refill, therefore the GC is not notified of it.
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5594
    // So compiled code must fill the new TLAB with zeroes.
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5595
    movptr(top, Address(thread_reg, in_bytes(JavaThread::tlab_start_offset())));
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5596
    zero_memory(top, t1, 0, t2);
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5597
  }
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5598
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5599
  verify_tlab();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5600
  jmp(retry);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5601
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5602
  return thread_reg; // for use by caller
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5603
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5604
35548
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5605
// Preserves the contents of address, destroys the contents length_in_bytes and temp.
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5606
void MacroAssembler::zero_memory(Register address, Register length_in_bytes, int offset_in_bytes, Register temp) {
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5607
  assert(address != length_in_bytes && address != temp && temp != length_in_bytes, "registers must be different");
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5608
  assert((offset_in_bytes & (BytesPerWord - 1)) == 0, "offset must be a multiple of BytesPerWord");
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5609
  Label done;
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5610
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5611
  testptr(length_in_bytes, length_in_bytes);
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5612
  jcc(Assembler::zero, done);
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5613
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5614
  // initialize topmost word, divide index by 2, check if odd and test if zero
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5615
  // note: for the remaining code to work, index must be a multiple of BytesPerWord
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5616
#ifdef ASSERT
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5617
  {
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5618
    Label L;
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5619
    testptr(length_in_bytes, BytesPerWord - 1);
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5620
    jcc(Assembler::zero, L);
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5621
    stop("length must be a multiple of BytesPerWord");
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5622
    bind(L);
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5623
  }
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5624
#endif
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5625
  Register index = length_in_bytes;
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5626
  xorptr(temp, temp);    // use _zero reg to clear memory (shorter code)
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5627
  if (UseIncDec) {
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5628
    shrptr(index, 3);  // divide by 8/16 and set carry flag if bit 2 was set
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5629
  } else {
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5630
    shrptr(index, 2);  // use 2 instructions to avoid partial flag stall
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5631
    shrptr(index, 1);
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5632
  }
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5633
#ifndef _LP64
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5634
  // index could have not been a multiple of 8 (i.e., bit 2 was set)
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5635
  {
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5636
    Label even;
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5637
    // note: if index was a multiple of 8, then it cannot
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5638
    //       be 0 now otherwise it must have been 0 before
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5639
    //       => if it is even, we don't need to check for 0 again
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5640
    jcc(Assembler::carryClear, even);
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5641
    // clear topmost word (no jump would be needed if conditional assignment worked here)
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5642
    movptr(Address(address, index, Address::times_8, offset_in_bytes - 0*BytesPerWord), temp);
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5643
    // index could be 0 now, must check again
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5644
    jcc(Assembler::zero, done);
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5645
    bind(even);
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5646
  }
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5647
#endif // !_LP64
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5648
  // initialize remaining object fields: index is a multiple of 2 now
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5649
  {
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5650
    Label loop;
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5651
    bind(loop);
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5652
    movptr(Address(address, index, Address::times_8, offset_in_bytes - 1*BytesPerWord), temp);
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5653
    NOT_LP64(movptr(Address(address, index, Address::times_8, offset_in_bytes - 2*BytesPerWord), temp);)
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5654
    decrement(index);
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5655
    jcc(Assembler::notZero, loop);
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5656
  }
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5657
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5658
  bind(done);
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5659
}
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35546
diff changeset
  5660
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5661
void MacroAssembler::incr_allocated_bytes(Register thread,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5662
                                          Register var_size_in_bytes,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5663
                                          int con_size_in_bytes,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5664
                                          Register t1) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5665
  if (!thread->is_valid()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5666
#ifdef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5667
    thread = r15_thread;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5668
#else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5669
    assert(t1->is_valid(), "need temp reg");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5670
    thread = t1;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5671
    get_thread(thread);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5672
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5673
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5674
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5675
#ifdef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5676
  if (var_size_in_bytes->is_valid()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5677
    addq(Address(thread, in_bytes(JavaThread::allocated_bytes_offset())), var_size_in_bytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5678
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5679
    addq(Address(thread, in_bytes(JavaThread::allocated_bytes_offset())), con_size_in_bytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5680
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5681
#else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5682
  if (var_size_in_bytes->is_valid()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5683
    addl(Address(thread, in_bytes(JavaThread::allocated_bytes_offset())), var_size_in_bytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5684
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5685
    addl(Address(thread, in_bytes(JavaThread::allocated_bytes_offset())), con_size_in_bytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5686
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5687
  adcl(Address(thread, in_bytes(JavaThread::allocated_bytes_offset())+4), 0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5688
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5689
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5690
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5691
// Look up the method for a megamorphic invokeinterface call.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5692
// The target method is determined by <intf_klass, itable_index>.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5693
// The receiver klass is in recv_klass.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5694
// On success, the result will be in method_result, and execution falls through.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5695
// On failure, execution transfers to the given label.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5696
void MacroAssembler::lookup_interface_method(Register recv_klass,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5697
                                             Register intf_klass,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5698
                                             RegisterOrConstant itable_index,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5699
                                             Register method_result,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5700
                                             Register scan_temp,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5701
                                             Label& L_no_such_interface) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5702
  assert_different_registers(recv_klass, intf_klass, method_result, scan_temp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5703
  assert(itable_index.is_constant() || itable_index.as_register() == method_result,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5704
         "caller must use same register for non-constant itable index as for method");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5705
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5706
  // Compute start of first itableOffsetEntry (which is at the end of the vtable)
35899
0dbc821628fc 8148047: Move the vtable length field to Klass
mgerdin
parents: 35871
diff changeset
  5707
  int vtable_base = in_bytes(Klass::vtable_start_offset());
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5708
  int itentry_off = itableMethodEntry::method_offset_in_bytes();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5709
  int scan_step   = itableOffsetEntry::size() * wordSize;
35871
607bf949dfb3 8147461: Use byte offsets for vtable start and vtable length offsets
mgerdin
parents: 35847
diff changeset
  5710
  int vte_size    = vtableEntry::size_in_bytes();
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5711
  Address::ScaleFactor times_vte_scale = Address::times_ptr;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5712
  assert(vte_size == wordSize, "else adjust times_vte_scale");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5713
35899
0dbc821628fc 8148047: Move the vtable length field to Klass
mgerdin
parents: 35871
diff changeset
  5714
  movl(scan_temp, Address(recv_klass, Klass::vtable_length_offset()));
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5715
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5716
  // %%% Could store the aligned, prescaled offset in the klassoop.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5717
  lea(scan_temp, Address(recv_klass, scan_temp, times_vte_scale, vtable_base));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5718
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5719
  // Adjust recv_klass by scaled itable_index, so we can free itable_index.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5720
  assert(itableMethodEntry::size() * wordSize == wordSize, "adjust the scaling in the code below");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5721
  lea(recv_klass, Address(recv_klass, itable_index, Address::times_ptr, itentry_off));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5722
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5723
  // for (scan = klass->itable(); scan->interface() != NULL; scan += scan_step) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5724
  //   if (scan->interface() == intf) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5725
  //     result = (klass + scan->offset() + itable_index);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5726
  //   }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5727
  // }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5728
  Label search, found_method;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5729
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5730
  for (int peel = 1; peel >= 0; peel--) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5731
    movptr(method_result, Address(scan_temp, itableOffsetEntry::interface_offset_in_bytes()));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5732
    cmpptr(intf_klass, method_result);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5733
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5734
    if (peel) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5735
      jccb(Assembler::equal, found_method);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5736
    } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5737
      jccb(Assembler::notEqual, search);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5738
      // (invert the test to fall through to found_method...)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5739
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5740
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5741
    if (!peel)  break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5742
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5743
    bind(search);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5744
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5745
    // Check that the previous entry is non-null.  A null entry means that
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5746
    // the receiver class doesn't implement the interface, and wasn't the
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5747
    // same as when the caller was compiled.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5748
    testptr(method_result, method_result);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5749
    jcc(Assembler::zero, L_no_such_interface);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5750
    addptr(scan_temp, scan_step);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5751
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5752
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5753
  bind(found_method);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5754
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5755
  // Got a hit.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5756
  movl(scan_temp, Address(scan_temp, itableOffsetEntry::offset_offset_in_bytes()));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5757
  movptr(method_result, Address(recv_klass, scan_temp, Address::times_1));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5758
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5759
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5760
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5761
// virtual method calling
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5762
void MacroAssembler::lookup_virtual_method(Register recv_klass,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5763
                                           RegisterOrConstant vtable_index,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5764
                                           Register method_result) {
35899
0dbc821628fc 8148047: Move the vtable length field to Klass
mgerdin
parents: 35871
diff changeset
  5765
  const int base = in_bytes(Klass::vtable_start_offset());
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5766
  assert(vtableEntry::size() * wordSize == wordSize, "else adjust the scaling in the code below");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5767
  Address vtable_entry_addr(recv_klass,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5768
                            vtable_index, Address::times_ptr,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5769
                            base + vtableEntry::method_offset_in_bytes());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5770
  movptr(method_result, vtable_entry_addr);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5771
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5772
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5773
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5774
void MacroAssembler::check_klass_subtype(Register sub_klass,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5775
                           Register super_klass,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5776
                           Register temp_reg,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5777
                           Label& L_success) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5778
  Label L_failure;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5779
  check_klass_subtype_fast_path(sub_klass, super_klass, temp_reg,        &L_success, &L_failure, NULL);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5780
  check_klass_subtype_slow_path(sub_klass, super_klass, temp_reg, noreg, &L_success, NULL);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5781
  bind(L_failure);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5782
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5783
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5784
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5785
void MacroAssembler::check_klass_subtype_fast_path(Register sub_klass,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5786
                                                   Register super_klass,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5787
                                                   Register temp_reg,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5788
                                                   Label* L_success,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5789
                                                   Label* L_failure,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5790
                                                   Label* L_slow_path,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5791
                                        RegisterOrConstant super_check_offset) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5792
  assert_different_registers(sub_klass, super_klass, temp_reg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5793
  bool must_load_sco = (super_check_offset.constant_or_zero() == -1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5794
  if (super_check_offset.is_register()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5795
    assert_different_registers(sub_klass, super_klass,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5796
                               super_check_offset.as_register());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5797
  } else if (must_load_sco) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5798
    assert(temp_reg != noreg, "supply either a temp or a register offset");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5799
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5800
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5801
  Label L_fallthrough;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5802
  int label_nulls = 0;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5803
  if (L_success == NULL)   { L_success   = &L_fallthrough; label_nulls++; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5804
  if (L_failure == NULL)   { L_failure   = &L_fallthrough; label_nulls++; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5805
  if (L_slow_path == NULL) { L_slow_path = &L_fallthrough; label_nulls++; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5806
  assert(label_nulls <= 1, "at most one NULL in the batch");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5807
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5808
  int sc_offset = in_bytes(Klass::secondary_super_cache_offset());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5809
  int sco_offset = in_bytes(Klass::super_check_offset_offset());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5810
  Address super_check_offset_addr(super_klass, sco_offset);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5811
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5812
  // Hacked jcc, which "knows" that L_fallthrough, at least, is in
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5813
  // range of a jccb.  If this routine grows larger, reconsider at
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5814
  // least some of these.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5815
#define local_jcc(assembler_cond, label)                                \
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5816
  if (&(label) == &L_fallthrough)  jccb(assembler_cond, label);         \
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5817
  else                             jcc( assembler_cond, label) /*omit semi*/
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5818
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5819
  // Hacked jmp, which may only be used just before L_fallthrough.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5820
#define final_jmp(label)                                                \
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5821
  if (&(label) == &L_fallthrough) { /*do nothing*/ }                    \
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5822
  else                            jmp(label)                /*omit semi*/
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5823
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5824
  // If the pointers are equal, we are done (e.g., String[] elements).
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5825
  // This self-check enables sharing of secondary supertype arrays among
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5826
  // non-primary types such as array-of-interface.  Otherwise, each such
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5827
  // type would need its own customized SSA.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5828
  // We move this check to the front of the fast path because many
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5829
  // type checks are in fact trivially successful in this manner,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5830
  // so we get a nicely predicted branch right at the start of the check.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5831
  cmpptr(sub_klass, super_klass);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5832
  local_jcc(Assembler::equal, *L_success);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5833
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5834
  // Check the supertype display:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5835
  if (must_load_sco) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5836
    // Positive movl does right thing on LP64.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5837
    movl(temp_reg, super_check_offset_addr);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5838
    super_check_offset = RegisterOrConstant(temp_reg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5839
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5840
  Address super_check_addr(sub_klass, super_check_offset, Address::times_1, 0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5841
  cmpptr(super_klass, super_check_addr); // load displayed supertype
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5842
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5843
  // This check has worked decisively for primary supers.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5844
  // Secondary supers are sought in the super_cache ('super_cache_addr').
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5845
  // (Secondary supers are interfaces and very deeply nested subtypes.)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5846
  // This works in the same check above because of a tricky aliasing
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5847
  // between the super_cache and the primary super display elements.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5848
  // (The 'super_check_addr' can address either, as the case requires.)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5849
  // Note that the cache is updated below if it does not help us find
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5850
  // what we need immediately.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5851
  // So if it was a primary super, we can just fail immediately.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5852
  // Otherwise, it's the slow path for us (no success at this point).
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5853
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5854
  if (super_check_offset.is_register()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5855
    local_jcc(Assembler::equal, *L_success);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5856
    cmpl(super_check_offset.as_register(), sc_offset);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5857
    if (L_failure == &L_fallthrough) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5858
      local_jcc(Assembler::equal, *L_slow_path);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5859
    } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5860
      local_jcc(Assembler::notEqual, *L_failure);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5861
      final_jmp(*L_slow_path);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5862
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5863
  } else if (super_check_offset.as_constant() == sc_offset) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5864
    // Need a slow path; fast failure is impossible.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5865
    if (L_slow_path == &L_fallthrough) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5866
      local_jcc(Assembler::equal, *L_success);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5867
    } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5868
      local_jcc(Assembler::notEqual, *L_slow_path);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5869
      final_jmp(*L_success);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5870
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5871
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5872
    // No slow path; it's a fast decision.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5873
    if (L_failure == &L_fallthrough) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5874
      local_jcc(Assembler::equal, *L_success);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5875
    } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5876
      local_jcc(Assembler::notEqual, *L_failure);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5877
      final_jmp(*L_success);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5878
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5879
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5880
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5881
  bind(L_fallthrough);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5882
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5883
#undef local_jcc
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5884
#undef final_jmp
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5885
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5886
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5887
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5888
void MacroAssembler::check_klass_subtype_slow_path(Register sub_klass,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5889
                                                   Register super_klass,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5890
                                                   Register temp_reg,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5891
                                                   Register temp2_reg,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5892
                                                   Label* L_success,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5893
                                                   Label* L_failure,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5894
                                                   bool set_cond_codes) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5895
  assert_different_registers(sub_klass, super_klass, temp_reg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5896
  if (temp2_reg != noreg)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5897
    assert_different_registers(sub_klass, super_klass, temp_reg, temp2_reg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5898
#define IS_A_TEMP(reg) ((reg) == temp_reg || (reg) == temp2_reg)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5899
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5900
  Label L_fallthrough;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5901
  int label_nulls = 0;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5902
  if (L_success == NULL)   { L_success   = &L_fallthrough; label_nulls++; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5903
  if (L_failure == NULL)   { L_failure   = &L_fallthrough; label_nulls++; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5904
  assert(label_nulls <= 1, "at most one NULL in the batch");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5905
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5906
  // a couple of useful fields in sub_klass:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5907
  int ss_offset = in_bytes(Klass::secondary_supers_offset());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5908
  int sc_offset = in_bytes(Klass::secondary_super_cache_offset());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5909
  Address secondary_supers_addr(sub_klass, ss_offset);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5910
  Address super_cache_addr(     sub_klass, sc_offset);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5911
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5912
  // Do a linear scan of the secondary super-klass chain.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5913
  // This code is rarely used, so simplicity is a virtue here.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5914
  // The repne_scan instruction uses fixed registers, which we must spill.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5915
  // Don't worry too much about pre-existing connections with the input regs.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5916
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5917
  assert(sub_klass != rax, "killed reg"); // killed by mov(rax, super)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5918
  assert(sub_klass != rcx, "killed reg"); // killed by lea(rcx, &pst_counter)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5919
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5920
  // Get super_klass value into rax (even if it was in rdi or rcx).
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5921
  bool pushed_rax = false, pushed_rcx = false, pushed_rdi = false;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5922
  if (super_klass != rax || UseCompressedOops) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5923
    if (!IS_A_TEMP(rax)) { push(rax); pushed_rax = true; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5924
    mov(rax, super_klass);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5925
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5926
  if (!IS_A_TEMP(rcx)) { push(rcx); pushed_rcx = true; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5927
  if (!IS_A_TEMP(rdi)) { push(rdi); pushed_rdi = true; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5928
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5929
#ifndef PRODUCT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5930
  int* pst_counter = &SharedRuntime::_partial_subtype_ctr;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5931
  ExternalAddress pst_counter_addr((address) pst_counter);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5932
  NOT_LP64(  incrementl(pst_counter_addr) );
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5933
  LP64_ONLY( lea(rcx, pst_counter_addr) );
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5934
  LP64_ONLY( incrementl(Address(rcx, 0)) );
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5935
#endif //PRODUCT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5936
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5937
  // We will consult the secondary-super array.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5938
  movptr(rdi, secondary_supers_addr);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5939
  // Load the array length.  (Positive movl does right thing on LP64.)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5940
  movl(rcx, Address(rdi, Array<Klass*>::length_offset_in_bytes()));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5941
  // Skip to start of data.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5942
  addptr(rdi, Array<Klass*>::base_offset_in_bytes());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5943
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5944
  // Scan RCX words at [RDI] for an occurrence of RAX.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5945
  // Set NZ/Z based on last compare.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5946
  // Z flag value will not be set by 'repne' if RCX == 0 since 'repne' does
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5947
  // not change flags (only scas instruction which is repeated sets flags).
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5948
  // Set Z = 0 (not equal) before 'repne' to indicate that class was not found.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5949
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5950
    testptr(rax,rax); // Set Z = 0
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5951
    repne_scan();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5952
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5953
  // Unspill the temp. registers:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5954
  if (pushed_rdi)  pop(rdi);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5955
  if (pushed_rcx)  pop(rcx);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5956
  if (pushed_rax)  pop(rax);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5957
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5958
  if (set_cond_codes) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5959
    // Special hack for the AD files:  rdi is guaranteed non-zero.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5960
    assert(!pushed_rdi, "rdi must be left non-NULL");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5961
    // Also, the condition codes are properly set Z/NZ on succeed/failure.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5962
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5963
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5964
  if (L_failure == &L_fallthrough)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5965
        jccb(Assembler::notEqual, *L_failure);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5966
  else  jcc(Assembler::notEqual, *L_failure);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5967
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5968
  // Success.  Cache the super we found and proceed in triumph.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5969
  movptr(super_cache_addr, super_klass);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5970
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5971
  if (L_success != &L_fallthrough) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5972
    jmp(*L_success);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5973
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5974
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5975
#undef IS_A_TEMP
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5976
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5977
  bind(L_fallthrough);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5978
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5979
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5980
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5981
void MacroAssembler::cmov32(Condition cc, Register dst, Address src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5982
  if (VM_Version::supports_cmov()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5983
    cmovl(cc, dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5984
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5985
    Label L;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5986
    jccb(negate_condition(cc), L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5987
    movl(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5988
    bind(L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5989
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5990
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5991
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5992
void MacroAssembler::cmov32(Condition cc, Register dst, Register src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5993
  if (VM_Version::supports_cmov()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5994
    cmovl(cc, dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5995
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5996
    Label L;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5997
    jccb(negate_condition(cc), L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5998
    movl(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  5999
    bind(L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6000
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6001
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6002
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6003
void MacroAssembler::verify_oop(Register reg, const char* s) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6004
  if (!VerifyOops) return;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6005
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6006
  // Pass register number to verify_oop_subroutine
16368
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 15612
diff changeset
  6007
  const char* b = NULL;
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 15612
diff changeset
  6008
  {
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 15612
diff changeset
  6009
    ResourceMark rm;
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 15612
diff changeset
  6010
    stringStream ss;
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 15612
diff changeset
  6011
    ss.print("verify_oop: %s: %s", reg->name(), s);
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 15612
diff changeset
  6012
    b = code_string(ss.as_string());
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 15612
diff changeset
  6013
  }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6014
  BLOCK_COMMENT("verify_oop {");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6015
#ifdef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6016
  push(rscratch1);                    // save r10, trashed by movptr()
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6017
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6018
  push(rax);                          // save rax,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6019
  push(reg);                          // pass register argument
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6020
  ExternalAddress buffer((address) b);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6021
  // avoid using pushptr, as it modifies scratch registers
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6022
  // and our contract is not to modify anything
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6023
  movptr(rax, buffer.addr());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6024
  push(rax);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6025
  // call indirectly to solve generation ordering problem
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6026
  movptr(rax, ExternalAddress(StubRoutines::verify_oop_subroutine_entry_address()));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6027
  call(rax);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6028
  // Caller pops the arguments (oop, message) and restores rax, r10
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6029
  BLOCK_COMMENT("} verify_oop");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6030
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6031
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6032
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6033
RegisterOrConstant MacroAssembler::delayed_value_impl(intptr_t* delayed_value_addr,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6034
                                                      Register tmp,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6035
                                                      int offset) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6036
  intptr_t value = *delayed_value_addr;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6037
  if (value != 0)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6038
    return RegisterOrConstant(value + offset);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6039
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6040
  // load indirectly to solve generation ordering problem
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6041
  movptr(tmp, ExternalAddress((address) delayed_value_addr));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6042
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6043
#ifdef ASSERT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6044
  { Label L;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6045
    testptr(tmp, tmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6046
    if (WizardMode) {
16368
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 15612
diff changeset
  6047
      const char* buf = NULL;
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 15612
diff changeset
  6048
      {
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 15612
diff changeset
  6049
        ResourceMark rm;
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 15612
diff changeset
  6050
        stringStream ss;
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31369
diff changeset
  6051
        ss.print("DelayedValue=" INTPTR_FORMAT, delayed_value_addr[1]);
16368
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 15612
diff changeset
  6052
        buf = code_string(ss.as_string());
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 15612
diff changeset
  6053
      }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6054
      jcc(Assembler::notZero, L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6055
      STOP(buf);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6056
    } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6057
      jccb(Assembler::notZero, L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6058
      hlt();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6059
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6060
    bind(L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6061
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6062
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6063
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6064
  if (offset != 0)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6065
    addptr(tmp, offset);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6066
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6067
  return RegisterOrConstant(tmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6068
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6069
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6070
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6071
Address MacroAssembler::argument_address(RegisterOrConstant arg_slot,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6072
                                         int extra_slot_offset) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6073
  // cf. TemplateTable::prepare_invoke(), if (load_receiver).
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6074
  int stackElementSize = Interpreter::stackElementSize;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6075
  int offset = Interpreter::expr_offset_in_bytes(extra_slot_offset+0);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6076
#ifdef ASSERT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6077
  int offset1 = Interpreter::expr_offset_in_bytes(extra_slot_offset+1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6078
  assert(offset1 - offset == stackElementSize, "correct arithmetic");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6079
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6080
  Register             scale_reg    = noreg;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6081
  Address::ScaleFactor scale_factor = Address::no_scale;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6082
  if (arg_slot.is_constant()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6083
    offset += arg_slot.as_constant() * stackElementSize;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6084
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6085
    scale_reg    = arg_slot.as_register();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6086
    scale_factor = Address::times(stackElementSize);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6087
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6088
  offset += wordSize;           // return PC is on stack
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6089
  return Address(rsp, scale_reg, scale_factor, offset);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6090
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6091
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6092
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6093
void MacroAssembler::verify_oop_addr(Address addr, const char* s) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6094
  if (!VerifyOops) return;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6095
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6096
  // Address adjust(addr.base(), addr.index(), addr.scale(), addr.disp() + BytesPerWord);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6097
  // Pass register number to verify_oop_subroutine
16368
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 15612
diff changeset
  6098
  const char* b = NULL;
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 15612
diff changeset
  6099
  {
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 15612
diff changeset
  6100
    ResourceMark rm;
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 15612
diff changeset
  6101
    stringStream ss;
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 15612
diff changeset
  6102
    ss.print("verify_oop_addr: %s", s);
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 15612
diff changeset
  6103
    b = code_string(ss.as_string());
713209c45a82 8008555: Debugging code in compiled method sometimes leaks memory
roland
parents: 15612
diff changeset
  6104
  }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6105
#ifdef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6106
  push(rscratch1);                    // save r10, trashed by movptr()
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6107
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6108
  push(rax);                          // save rax,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6109
  // addr may contain rsp so we will have to adjust it based on the push
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6110
  // we just did (and on 64 bit we do two pushes)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6111
  // NOTE: 64bit seemed to have had a bug in that it did movq(addr, rax); which
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6112
  // stores rax into addr which is backwards of what was intended.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6113
  if (addr.uses(rsp)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6114
    lea(rax, addr);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6115
    pushptr(Address(rax, LP64_ONLY(2 *) BytesPerWord));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6116
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6117
    pushptr(addr);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6118
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6119
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6120
  ExternalAddress buffer((address) b);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6121
  // pass msg argument
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6122
  // avoid using pushptr, as it modifies scratch registers
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6123
  // and our contract is not to modify anything
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6124
  movptr(rax, buffer.addr());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6125
  push(rax);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6126
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6127
  // call indirectly to solve generation ordering problem
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6128
  movptr(rax, ExternalAddress(StubRoutines::verify_oop_subroutine_entry_address()));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6129
  call(rax);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6130
  // Caller pops the arguments (addr, message) and restores rax, r10.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6131
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6132
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6133
void MacroAssembler::verify_tlab() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6134
#ifdef ASSERT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6135
  if (UseTLAB && VerifyOops) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6136
    Label next, ok;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6137
    Register t1 = rsi;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6138
    Register thread_reg = NOT_LP64(rbx) LP64_ONLY(r15_thread);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6139
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6140
    push(t1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6141
    NOT_LP64(push(thread_reg));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6142
    NOT_LP64(get_thread(thread_reg));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6143
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6144
    movptr(t1, Address(thread_reg, in_bytes(JavaThread::tlab_top_offset())));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6145
    cmpptr(t1, Address(thread_reg, in_bytes(JavaThread::tlab_start_offset())));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6146
    jcc(Assembler::aboveEqual, next);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6147
    STOP("assert(top >= start)");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6148
    should_not_reach_here();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6149
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6150
    bind(next);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6151
    movptr(t1, Address(thread_reg, in_bytes(JavaThread::tlab_end_offset())));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6152
    cmpptr(t1, Address(thread_reg, in_bytes(JavaThread::tlab_top_offset())));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6153
    jcc(Assembler::aboveEqual, ok);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6154
    STOP("assert(top <= end)");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6155
    should_not_reach_here();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6156
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6157
    bind(ok);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6158
    NOT_LP64(pop(thread_reg));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6159
    pop(t1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6160
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6161
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6162
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6163
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6164
class ControlWord {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6165
 public:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6166
  int32_t _value;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6167
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6168
  int  rounding_control() const        { return  (_value >> 10) & 3      ; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6169
  int  precision_control() const       { return  (_value >>  8) & 3      ; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6170
  bool precision() const               { return ((_value >>  5) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6171
  bool underflow() const               { return ((_value >>  4) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6172
  bool overflow() const                { return ((_value >>  3) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6173
  bool zero_divide() const             { return ((_value >>  2) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6174
  bool denormalized() const            { return ((_value >>  1) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6175
  bool invalid() const                 { return ((_value >>  0) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6176
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6177
  void print() const {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6178
    // rounding control
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6179
    const char* rc;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6180
    switch (rounding_control()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6181
      case 0: rc = "round near"; break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6182
      case 1: rc = "round down"; break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6183
      case 2: rc = "round up  "; break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6184
      case 3: rc = "chop      "; break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6185
    };
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6186
    // precision control
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6187
    const char* pc;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6188
    switch (precision_control()) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6189
      case 0: pc = "24 bits "; break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6190
      case 1: pc = "reserved"; break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6191
      case 2: pc = "53 bits "; break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6192
      case 3: pc = "64 bits "; break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6193
    };
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6194
    // flags
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6195
    char f[9];
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6196
    f[0] = ' ';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6197
    f[1] = ' ';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6198
    f[2] = (precision   ()) ? 'P' : 'p';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6199
    f[3] = (underflow   ()) ? 'U' : 'u';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6200
    f[4] = (overflow    ()) ? 'O' : 'o';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6201
    f[5] = (zero_divide ()) ? 'Z' : 'z';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6202
    f[6] = (denormalized()) ? 'D' : 'd';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6203
    f[7] = (invalid     ()) ? 'I' : 'i';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6204
    f[8] = '\x0';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6205
    // output
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6206
    printf("%04x  masks = %s, %s, %s", _value & 0xFFFF, f, rc, pc);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6207
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6208
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6209
};
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6210
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6211
class StatusWord {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6212
 public:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6213
  int32_t _value;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6214
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6215
  bool busy() const                    { return ((_value >> 15) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6216
  bool C3() const                      { return ((_value >> 14) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6217
  bool C2() const                      { return ((_value >> 10) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6218
  bool C1() const                      { return ((_value >>  9) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6219
  bool C0() const                      { return ((_value >>  8) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6220
  int  top() const                     { return  (_value >> 11) & 7      ; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6221
  bool error_status() const            { return ((_value >>  7) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6222
  bool stack_fault() const             { return ((_value >>  6) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6223
  bool precision() const               { return ((_value >>  5) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6224
  bool underflow() const               { return ((_value >>  4) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6225
  bool overflow() const                { return ((_value >>  3) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6226
  bool zero_divide() const             { return ((_value >>  2) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6227
  bool denormalized() const            { return ((_value >>  1) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6228
  bool invalid() const                 { return ((_value >>  0) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6229
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6230
  void print() const {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6231
    // condition codes
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6232
    char c[5];
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6233
    c[0] = (C3()) ? '3' : '-';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6234
    c[1] = (C2()) ? '2' : '-';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6235
    c[2] = (C1()) ? '1' : '-';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6236
    c[3] = (C0()) ? '0' : '-';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6237
    c[4] = '\x0';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6238
    // flags
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6239
    char f[9];
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6240
    f[0] = (error_status()) ? 'E' : '-';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6241
    f[1] = (stack_fault ()) ? 'S' : '-';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6242
    f[2] = (precision   ()) ? 'P' : '-';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6243
    f[3] = (underflow   ()) ? 'U' : '-';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6244
    f[4] = (overflow    ()) ? 'O' : '-';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6245
    f[5] = (zero_divide ()) ? 'Z' : '-';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6246
    f[6] = (denormalized()) ? 'D' : '-';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6247
    f[7] = (invalid     ()) ? 'I' : '-';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6248
    f[8] = '\x0';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6249
    // output
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6250
    printf("%04x  flags = %s, cc =  %s, top = %d", _value & 0xFFFF, f, c, top());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6251
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6252
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6253
};
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6254
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6255
class TagWord {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6256
 public:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6257
  int32_t _value;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6258
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6259
  int tag_at(int i) const              { return (_value >> (i*2)) & 3; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6260
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6261
  void print() const {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6262
    printf("%04x", _value & 0xFFFF);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6263
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6264
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6265
};
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6266
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6267
class FPU_Register {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6268
 public:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6269
  int32_t _m0;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6270
  int32_t _m1;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6271
  int16_t _ex;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6272
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6273
  bool is_indefinite() const           {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6274
    return _ex == -1 && _m1 == (int32_t)0xC0000000 && _m0 == 0;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6275
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6276
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6277
  void print() const {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6278
    char  sign = (_ex < 0) ? '-' : '+';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6279
    const char* kind = (_ex == 0x7FFF || _ex == (int16_t)-1) ? "NaN" : "   ";
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6280
    printf("%c%04hx.%08x%08x  %s", sign, _ex, _m1, _m0, kind);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6281
  };
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6282
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6283
};
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6284
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6285
class FPU_State {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6286
 public:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6287
  enum {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6288
    register_size       = 10,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6289
    number_of_registers =  8,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6290
    register_mask       =  7
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6291
  };
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6292
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6293
  ControlWord  _control_word;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6294
  StatusWord   _status_word;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6295
  TagWord      _tag_word;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6296
  int32_t      _error_offset;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6297
  int32_t      _error_selector;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6298
  int32_t      _data_offset;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6299
  int32_t      _data_selector;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6300
  int8_t       _register[register_size * number_of_registers];
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6301
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6302
  int tag_for_st(int i) const          { return _tag_word.tag_at((_status_word.top() + i) & register_mask); }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6303
  FPU_Register* st(int i) const        { return (FPU_Register*)&_register[register_size * i]; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6304
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6305
  const char* tag_as_string(int tag) const {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6306
    switch (tag) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6307
      case 0: return "valid";
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6308
      case 1: return "zero";
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6309
      case 2: return "special";
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6310
      case 3: return "empty";
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6311
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6312
    ShouldNotReachHere();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6313
    return NULL;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6314
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6315
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6316
  void print() const {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6317
    // print computation registers
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6318
    { int t = _status_word.top();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6319
      for (int i = 0; i < number_of_registers; i++) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6320
        int j = (i - t) & register_mask;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6321
        printf("%c r%d = ST%d = ", (j == 0 ? '*' : ' '), i, j);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6322
        st(j)->print();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6323
        printf(" %s\n", tag_as_string(_tag_word.tag_at(i)));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6324
      }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6325
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6326
    printf("\n");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6327
    // print control registers
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6328
    printf("ctrl = "); _control_word.print(); printf("\n");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6329
    printf("stat = "); _status_word .print(); printf("\n");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6330
    printf("tags = "); _tag_word    .print(); printf("\n");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6331
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6332
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6333
};
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6334
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6335
class Flag_Register {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6336
 public:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6337
  int32_t _value;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6338
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6339
  bool overflow() const                { return ((_value >> 11) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6340
  bool direction() const               { return ((_value >> 10) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6341
  bool sign() const                    { return ((_value >>  7) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6342
  bool zero() const                    { return ((_value >>  6) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6343
  bool auxiliary_carry() const         { return ((_value >>  4) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6344
  bool parity() const                  { return ((_value >>  2) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6345
  bool carry() const                   { return ((_value >>  0) & 1) != 0; }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6346
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6347
  void print() const {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6348
    // flags
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6349
    char f[8];
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6350
    f[0] = (overflow       ()) ? 'O' : '-';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6351
    f[1] = (direction      ()) ? 'D' : '-';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6352
    f[2] = (sign           ()) ? 'S' : '-';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6353
    f[3] = (zero           ()) ? 'Z' : '-';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6354
    f[4] = (auxiliary_carry()) ? 'A' : '-';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6355
    f[5] = (parity         ()) ? 'P' : '-';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6356
    f[6] = (carry          ()) ? 'C' : '-';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6357
    f[7] = '\x0';
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6358
    // output
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6359
    printf("%08x  flags = %s", _value, f);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6360
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6361
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6362
};
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6363
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6364
class IU_Register {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6365
 public:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6366
  int32_t _value;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6367
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6368
  void print() const {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6369
    printf("%08x  %11d", _value, _value);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6370
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6371
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6372
};
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6373
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6374
class IU_State {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6375
 public:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6376
  Flag_Register _eflags;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6377
  IU_Register   _rdi;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6378
  IU_Register   _rsi;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6379
  IU_Register   _rbp;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6380
  IU_Register   _rsp;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6381
  IU_Register   _rbx;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6382
  IU_Register   _rdx;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6383
  IU_Register   _rcx;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6384
  IU_Register   _rax;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6385
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6386
  void print() const {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6387
    // computation registers
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6388
    printf("rax,  = "); _rax.print(); printf("\n");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6389
    printf("rbx,  = "); _rbx.print(); printf("\n");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6390
    printf("rcx  = "); _rcx.print(); printf("\n");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6391
    printf("rdx  = "); _rdx.print(); printf("\n");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6392
    printf("rdi  = "); _rdi.print(); printf("\n");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6393
    printf("rsi  = "); _rsi.print(); printf("\n");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6394
    printf("rbp,  = "); _rbp.print(); printf("\n");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6395
    printf("rsp  = "); _rsp.print(); printf("\n");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6396
    printf("\n");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6397
    // control registers
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6398
    printf("flgs = "); _eflags.print(); printf("\n");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6399
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6400
};
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6401
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6402
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6403
class CPU_State {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6404
 public:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6405
  FPU_State _fpu_state;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6406
  IU_State  _iu_state;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6407
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6408
  void print() const {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6409
    printf("--------------------------------------------------\n");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6410
    _iu_state .print();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6411
    printf("\n");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6412
    _fpu_state.print();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6413
    printf("--------------------------------------------------\n");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6414
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6415
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6416
};
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6417
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6418
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6419
static void _print_CPU_state(CPU_State* state) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6420
  state->print();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6421
};
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6422
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6423
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6424
void MacroAssembler::print_CPU_state() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6425
  push_CPU_state();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6426
  push(rsp);                // pass CPU state
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6427
  call(RuntimeAddress(CAST_FROM_FN_PTR(address, _print_CPU_state)));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6428
  addptr(rsp, wordSize);       // discard argument
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6429
  pop_CPU_state();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6430
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6431
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6432
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6433
static bool _verify_FPU(int stack_depth, char* s, CPU_State* state) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6434
  static int counter = 0;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6435
  FPU_State* fs = &state->_fpu_state;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6436
  counter++;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6437
  // For leaf calls, only verify that the top few elements remain empty.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6438
  // We only need 1 empty at the top for C2 code.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6439
  if( stack_depth < 0 ) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6440
    if( fs->tag_for_st(7) != 3 ) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6441
      printf("FPR7 not empty\n");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6442
      state->print();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6443
      assert(false, "error");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6444
      return false;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6445
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6446
    return true;                // All other stack states do not matter
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6447
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6448
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6449
  assert((fs->_control_word._value & 0xffff) == StubRoutines::_fpu_cntrl_wrd_std,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6450
         "bad FPU control word");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6451
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6452
  // compute stack depth
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6453
  int i = 0;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6454
  while (i < FPU_State::number_of_registers && fs->tag_for_st(i)  < 3) i++;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6455
  int d = i;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6456
  while (i < FPU_State::number_of_registers && fs->tag_for_st(i) == 3) i++;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6457
  // verify findings
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6458
  if (i != FPU_State::number_of_registers) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6459
    // stack not contiguous
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6460
    printf("%s: stack not contiguous at ST%d\n", s, i);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6461
    state->print();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6462
    assert(false, "error");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6463
    return false;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6464
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6465
  // check if computed stack depth corresponds to expected stack depth
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6466
  if (stack_depth < 0) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6467
    // expected stack depth is -stack_depth or less
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6468
    if (d > -stack_depth) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6469
      // too many elements on the stack
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6470
      printf("%s: <= %d stack elements expected but found %d\n", s, -stack_depth, d);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6471
      state->print();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6472
      assert(false, "error");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6473
      return false;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6474
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6475
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6476
    // expected stack depth is stack_depth
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6477
    if (d != stack_depth) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6478
      // wrong stack depth
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6479
      printf("%s: %d stack elements expected but found %d\n", s, stack_depth, d);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6480
      state->print();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6481
      assert(false, "error");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6482
      return false;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6483
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6484
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6485
  // everything is cool
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6486
  return true;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6487
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6488
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6489
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6490
void MacroAssembler::verify_FPU(int stack_depth, const char* s) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6491
  if (!VerifyFPU) return;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6492
  push_CPU_state();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6493
  push(rsp);                // pass CPU state
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6494
  ExternalAddress msg((address) s);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6495
  // pass message string s
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6496
  pushptr(msg.addr());
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6497
  push(stack_depth);        // pass stack depth
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6498
  call(RuntimeAddress(CAST_FROM_FN_PTR(address, _verify_FPU)));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6499
  addptr(rsp, 3 * wordSize);   // discard arguments
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6500
  // check for error
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6501
  { Label L;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6502
    testl(rax, rax);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6503
    jcc(Assembler::notZero, L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6504
    int3();                  // break if error condition
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6505
    bind(L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6506
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6507
  pop_CPU_state();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6508
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6509
16624
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6510
void MacroAssembler::restore_cpu_control_state_after_jni() {
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6511
  // Either restore the MXCSR register after returning from the JNI Call
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6512
  // or verify that it wasn't changed (with -Xcheck:jni flag).
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6513
  if (VM_Version::supports_sse()) {
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6514
    if (RestoreMXCSROnJNICalls) {
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6515
      ldmxcsr(ExternalAddress(StubRoutines::addr_mxcsr_std()));
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6516
    } else if (CheckJNICalls) {
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6517
      call(RuntimeAddress(StubRoutines::x86::verify_mxcsr_entry()));
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6518
    }
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6519
  }
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6520
  if (VM_Version::supports_avx()) {
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6521
    // Clear upper bits of YMM registers to avoid SSE <-> AVX transition penalty.
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6522
    vzeroupper();
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6523
  }
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6524
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6525
#ifndef _LP64
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6526
  // Either restore the x87 floating pointer control word after returning
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6527
  // from the JNI call or verify that it wasn't changed.
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6528
  if (CheckJNICalls) {
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6529
    call(RuntimeAddress(StubRoutines::x86::verify_fpu_cntrl_wrd_entry()));
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6530
  }
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6531
#endif // _LP64
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6532
}
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6533
38074
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38049
diff changeset
  6534
void MacroAssembler::load_mirror(Register mirror, Register method) {
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38049
diff changeset
  6535
  // get mirror
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38049
diff changeset
  6536
  const int mirror_offset = in_bytes(Klass::java_mirror_offset());
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38049
diff changeset
  6537
  movptr(mirror, Address(method, Method::const_offset()));
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38049
diff changeset
  6538
  movptr(mirror, Address(mirror, ConstMethod::constants_offset()));
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38049
diff changeset
  6539
  movptr(mirror, Address(mirror, ConstantPool::pool_holder_offset_in_bytes()));
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38049
diff changeset
  6540
  movptr(mirror, Address(mirror, mirror_offset));
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38049
diff changeset
  6541
}
16624
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  6542
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6543
void MacroAssembler::load_klass(Register dst, Register src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6544
#ifdef _LP64
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 19319
diff changeset
  6545
  if (UseCompressedClassPointers) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6546
    movl(dst, Address(src, oopDesc::klass_offset_in_bytes()));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6547
    decode_klass_not_null(dst);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6548
  } else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6549
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6550
    movptr(dst, Address(src, oopDesc::klass_offset_in_bytes()));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6551
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6552
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6553
void MacroAssembler::load_prototype_header(Register dst, Register src) {
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6554
  load_klass(dst, src);
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6555
  movptr(dst, Address(dst, Klass::prototype_header_offset()));
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6556
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6557
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6558
void MacroAssembler::store_klass(Register dst, Register src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6559
#ifdef _LP64
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 19319
diff changeset
  6560
  if (UseCompressedClassPointers) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6561
    encode_klass_not_null(src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6562
    movl(Address(dst, oopDesc::klass_offset_in_bytes()), src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6563
  } else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6564
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6565
    movptr(Address(dst, oopDesc::klass_offset_in_bytes()), src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6566
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6567
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6568
void MacroAssembler::load_heap_oop(Register dst, Address src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6569
#ifdef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6570
  // FIXME: Must change all places where we try to load the klass.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6571
  if (UseCompressedOops) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6572
    movl(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6573
    decode_heap_oop(dst);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6574
  } else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6575
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6576
    movptr(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6577
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6578
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6579
// Doesn't do verfication, generates fixed size code
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6580
void MacroAssembler::load_heap_oop_not_null(Register dst, Address src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6581
#ifdef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6582
  if (UseCompressedOops) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6583
    movl(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6584
    decode_heap_oop_not_null(dst);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6585
  } else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6586
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6587
    movptr(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6588
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6589
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6590
void MacroAssembler::store_heap_oop(Address dst, Register src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6591
#ifdef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6592
  if (UseCompressedOops) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6593
    assert(!dst.uses(src), "not enough registers");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6594
    encode_heap_oop(src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6595
    movl(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6596
  } else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6597
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6598
    movptr(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6599
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6600
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6601
void MacroAssembler::cmp_heap_oop(Register src1, Address src2, Register tmp) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6602
  assert_different_registers(src1, tmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6603
#ifdef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6604
  if (UseCompressedOops) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6605
    bool did_push = false;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6606
    if (tmp == noreg) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6607
      tmp = rax;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6608
      push(tmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6609
      did_push = true;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6610
      assert(!src2.uses(rsp), "can't push");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6611
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6612
    load_heap_oop(tmp, src2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6613
    cmpptr(src1, tmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6614
    if (did_push)  pop(tmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6615
  } else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6616
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6617
    cmpptr(src1, src2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6618
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6619
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6620
// Used for storing NULLs.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6621
void MacroAssembler::store_heap_oop_null(Address dst) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6622
#ifdef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6623
  if (UseCompressedOops) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6624
    movl(dst, (int32_t)NULL_WORD);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6625
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6626
    movslq(dst, (int32_t)NULL_WORD);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6627
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6628
#else
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6629
  movl(dst, (int32_t)NULL_WORD);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6630
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6631
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6632
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6633
#ifdef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6634
void MacroAssembler::store_klass_gap(Register dst, Register src) {
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 19319
diff changeset
  6635
  if (UseCompressedClassPointers) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6636
    // Store to klass gap in destination
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6637
    movl(Address(dst, oopDesc::klass_gap_offset_in_bytes()), src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6638
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6639
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6640
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6641
#ifdef ASSERT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6642
void MacroAssembler::verify_heapbase(const char* msg) {
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6643
  assert (UseCompressedOops, "should be compressed");
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6644
  assert (Universe::heap() != NULL, "java heap should be initialized");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6645
  if (CheckCompressedOops) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6646
    Label ok;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6647
    push(rscratch1); // cmpptr trashes rscratch1
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6648
    cmpptr(r12_heapbase, ExternalAddress((address)Universe::narrow_ptrs_base_addr()));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6649
    jcc(Assembler::equal, ok);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6650
    STOP(msg);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6651
    bind(ok);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6652
    pop(rscratch1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6653
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6654
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6655
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6656
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6657
// Algorithm must match oop.inline.hpp encode_heap_oop.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6658
void MacroAssembler::encode_heap_oop(Register r) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6659
#ifdef ASSERT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6660
  verify_heapbase("MacroAssembler::encode_heap_oop: heap base corrupted?");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6661
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6662
  verify_oop(r, "broken oop in encode_heap_oop");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6663
  if (Universe::narrow_oop_base() == NULL) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6664
    if (Universe::narrow_oop_shift() != 0) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6665
      assert (LogMinObjAlignmentInBytes == Universe::narrow_oop_shift(), "decode alg wrong");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6666
      shrq(r, LogMinObjAlignmentInBytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6667
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6668
    return;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6669
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6670
  testq(r, r);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6671
  cmovq(Assembler::equal, r, r12_heapbase);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6672
  subq(r, r12_heapbase);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6673
  shrq(r, LogMinObjAlignmentInBytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6674
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6675
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6676
void MacroAssembler::encode_heap_oop_not_null(Register r) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6677
#ifdef ASSERT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6678
  verify_heapbase("MacroAssembler::encode_heap_oop_not_null: heap base corrupted?");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6679
  if (CheckCompressedOops) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6680
    Label ok;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6681
    testq(r, r);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6682
    jcc(Assembler::notEqual, ok);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6683
    STOP("null oop passed to encode_heap_oop_not_null");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6684
    bind(ok);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6685
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6686
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6687
  verify_oop(r, "broken oop in encode_heap_oop_not_null");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6688
  if (Universe::narrow_oop_base() != NULL) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6689
    subq(r, r12_heapbase);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6690
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6691
  if (Universe::narrow_oop_shift() != 0) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6692
    assert (LogMinObjAlignmentInBytes == Universe::narrow_oop_shift(), "decode alg wrong");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6693
    shrq(r, LogMinObjAlignmentInBytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6694
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6695
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6696
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6697
void MacroAssembler::encode_heap_oop_not_null(Register dst, Register src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6698
#ifdef ASSERT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6699
  verify_heapbase("MacroAssembler::encode_heap_oop_not_null2: heap base corrupted?");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6700
  if (CheckCompressedOops) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6701
    Label ok;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6702
    testq(src, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6703
    jcc(Assembler::notEqual, ok);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6704
    STOP("null oop passed to encode_heap_oop_not_null2");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6705
    bind(ok);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6706
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6707
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6708
  verify_oop(src, "broken oop in encode_heap_oop_not_null2");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6709
  if (dst != src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6710
    movq(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6711
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6712
  if (Universe::narrow_oop_base() != NULL) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6713
    subq(dst, r12_heapbase);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6714
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6715
  if (Universe::narrow_oop_shift() != 0) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6716
    assert (LogMinObjAlignmentInBytes == Universe::narrow_oop_shift(), "decode alg wrong");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6717
    shrq(dst, LogMinObjAlignmentInBytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6718
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6719
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6720
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6721
void  MacroAssembler::decode_heap_oop(Register r) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6722
#ifdef ASSERT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6723
  verify_heapbase("MacroAssembler::decode_heap_oop: heap base corrupted?");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6724
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6725
  if (Universe::narrow_oop_base() == NULL) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6726
    if (Universe::narrow_oop_shift() != 0) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6727
      assert (LogMinObjAlignmentInBytes == Universe::narrow_oop_shift(), "decode alg wrong");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6728
      shlq(r, LogMinObjAlignmentInBytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6729
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6730
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6731
    Label done;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6732
    shlq(r, LogMinObjAlignmentInBytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6733
    jccb(Assembler::equal, done);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6734
    addq(r, r12_heapbase);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6735
    bind(done);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6736
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6737
  verify_oop(r, "broken oop in decode_heap_oop");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6738
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6739
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6740
void  MacroAssembler::decode_heap_oop_not_null(Register r) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6741
  // Note: it will change flags
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6742
  assert (UseCompressedOops, "should only be used for compressed headers");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6743
  assert (Universe::heap() != NULL, "java heap should be initialized");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6744
  // Cannot assert, unverified entry point counts instructions (see .ad file)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6745
  // vtableStubs also counts instructions in pd_code_size_limit.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6746
  // Also do not verify_oop as this is called by verify_oop.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6747
  if (Universe::narrow_oop_shift() != 0) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6748
    assert(LogMinObjAlignmentInBytes == Universe::narrow_oop_shift(), "decode alg wrong");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6749
    shlq(r, LogMinObjAlignmentInBytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6750
    if (Universe::narrow_oop_base() != NULL) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6751
      addq(r, r12_heapbase);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6752
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6753
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6754
    assert (Universe::narrow_oop_base() == NULL, "sanity");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6755
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6756
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6757
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6758
void  MacroAssembler::decode_heap_oop_not_null(Register dst, Register src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6759
  // Note: it will change flags
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6760
  assert (UseCompressedOops, "should only be used for compressed headers");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6761
  assert (Universe::heap() != NULL, "java heap should be initialized");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6762
  // Cannot assert, unverified entry point counts instructions (see .ad file)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6763
  // vtableStubs also counts instructions in pd_code_size_limit.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6764
  // Also do not verify_oop as this is called by verify_oop.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6765
  if (Universe::narrow_oop_shift() != 0) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6766
    assert(LogMinObjAlignmentInBytes == Universe::narrow_oop_shift(), "decode alg wrong");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6767
    if (LogMinObjAlignmentInBytes == Address::times_8) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6768
      leaq(dst, Address(r12_heapbase, src, Address::times_8, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6769
    } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6770
      if (dst != src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6771
        movq(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6772
      }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6773
      shlq(dst, LogMinObjAlignmentInBytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6774
      if (Universe::narrow_oop_base() != NULL) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6775
        addq(dst, r12_heapbase);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6776
      }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6777
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6778
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6779
    assert (Universe::narrow_oop_base() == NULL, "sanity");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6780
    if (dst != src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6781
      movq(dst, src);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6782
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6783
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6784
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6785
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6786
void MacroAssembler::encode_klass_not_null(Register r) {
21188
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6787
  if (Universe::narrow_klass_base() != NULL) {
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6788
    // Use r12 as a scratch register in which to temporarily load the narrow_klass_base.
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6789
    assert(r != r12_heapbase, "Encoding a klass in r12");
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6790
    mov64(r12_heapbase, (int64_t)Universe::narrow_klass_base());
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6791
    subq(r, r12_heapbase);
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6792
  }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6793
  if (Universe::narrow_klass_shift() != 0) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6794
    assert (LogKlassAlignmentInBytes == Universe::narrow_klass_shift(), "decode alg wrong");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6795
    shrq(r, LogKlassAlignmentInBytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6796
  }
21188
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6797
  if (Universe::narrow_klass_base() != NULL) {
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6798
    reinit_heapbase();
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6799
  }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6800
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6801
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6802
void MacroAssembler::encode_klass_not_null(Register dst, Register src) {
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6803
  if (dst == src) {
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6804
    encode_klass_not_null(src);
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6805
  } else {
21188
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6806
    if (Universe::narrow_klass_base() != NULL) {
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6807
      mov64(dst, (int64_t)Universe::narrow_klass_base());
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6808
      negq(dst);
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6809
      addq(dst, src);
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6810
    } else {
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6811
      movptr(dst, src);
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6812
    }
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6813
    if (Universe::narrow_klass_shift() != 0) {
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6814
      assert (LogKlassAlignmentInBytes == Universe::narrow_klass_shift(), "decode alg wrong");
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6815
      shrq(dst, LogKlassAlignmentInBytes);
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6816
    }
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6817
  }
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6818
}
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6819
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6820
// Function instr_size_for_decode_klass_not_null() counts the instructions
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6821
// generated by decode_klass_not_null(register r) and reinit_heapbase(),
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6822
// when (Universe::heap() != NULL).  Hence, if the instructions they
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6823
// generate change, then this method needs to be updated.
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6824
int MacroAssembler::instr_size_for_decode_klass_not_null() {
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 19319
diff changeset
  6825
  assert (UseCompressedClassPointers, "only for compressed klass ptrs");
21188
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6826
  if (Universe::narrow_klass_base() != NULL) {
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6827
    // mov64 + addq + shlq? + mov64  (for reinit_heapbase()).
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6828
    return (Universe::narrow_klass_shift() == 0 ? 20 : 24);
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6829
  } else {
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6830
    // longest load decode klass function, mov64, leaq
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6831
    return 16;
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6832
  }
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6833
}
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6834
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6835
// !!! If the instructions that get generated here change then function
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6836
// instr_size_for_decode_klass_not_null() needs to get updated.
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6837
void  MacroAssembler::decode_klass_not_null(Register r) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6838
  // Note: it will change flags
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 19319
diff changeset
  6839
  assert (UseCompressedClassPointers, "should only be used for compressed headers");
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6840
  assert(r != r12_heapbase, "Decoding a klass in r12");
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6841
  // Cannot assert, unverified entry point counts instructions (see .ad file)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6842
  // vtableStubs also counts instructions in pd_code_size_limit.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6843
  // Also do not verify_oop as this is called by verify_oop.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6844
  if (Universe::narrow_klass_shift() != 0) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6845
    assert(LogKlassAlignmentInBytes == Universe::narrow_klass_shift(), "decode alg wrong");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6846
    shlq(r, LogKlassAlignmentInBytes);
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6847
  }
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6848
  // Use r12 as a scratch register in which to temporarily load the narrow_klass_base.
21188
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6849
  if (Universe::narrow_klass_base() != NULL) {
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6850
    mov64(r12_heapbase, (int64_t)Universe::narrow_klass_base());
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6851
    addq(r, r12_heapbase);
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6852
    reinit_heapbase();
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20403
diff changeset
  6853
  }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6854
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6855
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6856
void  MacroAssembler::decode_klass_not_null(Register dst, Register src) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6857
  // Note: it will change flags
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 19319
diff changeset
  6858
  assert (UseCompressedClassPointers, "should only be used for compressed headers");
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6859
  if (dst == src) {
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6860
    decode_klass_not_null(dst);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6861
  } else {
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6862
    // Cannot assert, unverified entry point counts instructions (see .ad file)
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6863
    // vtableStubs also counts instructions in pd_code_size_limit.
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6864
    // Also do not verify_oop as this is called by verify_oop.
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6865
    mov64(dst, (int64_t)Universe::narrow_klass_base());
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6866
    if (Universe::narrow_klass_shift() != 0) {
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6867
      assert(LogKlassAlignmentInBytes == Universe::narrow_klass_shift(), "decode alg wrong");
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6868
      assert(LogKlassAlignmentInBytes == Address::times_8, "klass not aligned on 64bits?");
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6869
      leaq(dst, Address(dst, src, Address::times_8, 0));
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6870
    } else {
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6871
      addq(dst, src);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6872
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6873
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6874
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6875
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6876
void  MacroAssembler::set_narrow_oop(Register dst, jobject obj) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6877
  assert (UseCompressedOops, "should only be used for compressed headers");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6878
  assert (Universe::heap() != NULL, "java heap should be initialized");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6879
  assert (oop_recorder() != NULL, "this assembler needs an OopRecorder");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6880
  int oop_index = oop_recorder()->find_index(obj);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6881
  RelocationHolder rspec = oop_Relocation::spec(oop_index);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6882
  mov_narrow_oop(dst, oop_index, rspec);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6883
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6884
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6885
void  MacroAssembler::set_narrow_oop(Address dst, jobject obj) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6886
  assert (UseCompressedOops, "should only be used for compressed headers");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6887
  assert (Universe::heap() != NULL, "java heap should be initialized");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6888
  assert (oop_recorder() != NULL, "this assembler needs an OopRecorder");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6889
  int oop_index = oop_recorder()->find_index(obj);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6890
  RelocationHolder rspec = oop_Relocation::spec(oop_index);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6891
  mov_narrow_oop(dst, oop_index, rspec);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6892
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6893
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6894
void  MacroAssembler::set_narrow_klass(Register dst, Klass* k) {
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 19319
diff changeset
  6895
  assert (UseCompressedClassPointers, "should only be used for compressed headers");
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6896
  assert (oop_recorder() != NULL, "this assembler needs an OopRecorder");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6897
  int klass_index = oop_recorder()->find_index(k);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6898
  RelocationHolder rspec = metadata_Relocation::spec(klass_index);
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6899
  mov_narrow_oop(dst, Klass::encode_klass(k), rspec);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6900
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6901
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6902
void  MacroAssembler::set_narrow_klass(Address dst, Klass* k) {
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 19319
diff changeset
  6903
  assert (UseCompressedClassPointers, "should only be used for compressed headers");
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6904
  assert (oop_recorder() != NULL, "this assembler needs an OopRecorder");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6905
  int klass_index = oop_recorder()->find_index(k);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6906
  RelocationHolder rspec = metadata_Relocation::spec(klass_index);
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6907
  mov_narrow_oop(dst, Klass::encode_klass(k), rspec);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6908
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6909
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6910
void  MacroAssembler::cmp_narrow_oop(Register dst, jobject obj) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6911
  assert (UseCompressedOops, "should only be used for compressed headers");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6912
  assert (Universe::heap() != NULL, "java heap should be initialized");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6913
  assert (oop_recorder() != NULL, "this assembler needs an OopRecorder");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6914
  int oop_index = oop_recorder()->find_index(obj);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6915
  RelocationHolder rspec = oop_Relocation::spec(oop_index);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6916
  Assembler::cmp_narrow_oop(dst, oop_index, rspec);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6917
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6918
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6919
void  MacroAssembler::cmp_narrow_oop(Address dst, jobject obj) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6920
  assert (UseCompressedOops, "should only be used for compressed headers");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6921
  assert (Universe::heap() != NULL, "java heap should be initialized");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6922
  assert (oop_recorder() != NULL, "this assembler needs an OopRecorder");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6923
  int oop_index = oop_recorder()->find_index(obj);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6924
  RelocationHolder rspec = oop_Relocation::spec(oop_index);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6925
  Assembler::cmp_narrow_oop(dst, oop_index, rspec);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6926
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6927
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6928
void  MacroAssembler::cmp_narrow_klass(Register dst, Klass* k) {
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 19319
diff changeset
  6929
  assert (UseCompressedClassPointers, "should only be used for compressed headers");
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6930
  assert (oop_recorder() != NULL, "this assembler needs an OopRecorder");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6931
  int klass_index = oop_recorder()->find_index(k);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6932
  RelocationHolder rspec = metadata_Relocation::spec(klass_index);
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6933
  Assembler::cmp_narrow_oop(dst, Klass::encode_klass(k), rspec);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6934
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6935
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6936
void  MacroAssembler::cmp_narrow_klass(Address dst, Klass* k) {
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 19319
diff changeset
  6937
  assert (UseCompressedClassPointers, "should only be used for compressed headers");
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6938
  assert (oop_recorder() != NULL, "this assembler needs an OopRecorder");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6939
  int klass_index = oop_recorder()->find_index(k);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6940
  RelocationHolder rspec = metadata_Relocation::spec(klass_index);
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6941
  Assembler::cmp_narrow_oop(dst, Klass::encode_klass(k), rspec);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6942
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6943
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6944
void MacroAssembler::reinit_heapbase() {
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 19319
diff changeset
  6945
  if (UseCompressedOops || UseCompressedClassPointers) {
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6946
    if (Universe::heap() != NULL) {
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6947
      if (Universe::narrow_oop_base() == NULL) {
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6948
        MacroAssembler::xorptr(r12_heapbase, r12_heapbase);
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6949
      } else {
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6950
        mov64(r12_heapbase, (int64_t)Universe::narrow_ptrs_base());
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6951
      }
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6952
    } else {
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6953
      movptr(r12_heapbase, ExternalAddress((address)Universe::narrow_ptrs_base_addr()));
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6954
    }
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6955
  }
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6956
}
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18507
diff changeset
  6957
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6958
#endif // _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6959
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6960
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6961
// C2 compiled method's prolog code.
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23847
diff changeset
  6962
void MacroAssembler::verified_entry(int framesize, int stack_bang_size, bool fp_mode_24b) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6963
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6964
  // WARNING: Initial instruction MUST be 5 bytes or longer so that
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6965
  // NativeJump::patch_verified_entry will be able to patch out the entry
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6966
  // code safely. The push to verify stack depth is ok at 5 bytes,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6967
  // the frame allocation can be either 3 or 6 bytes. So if we don't do
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6968
  // stack bang then we must use the 6 byte frame allocation even if
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6969
  // we have no frame. :-(
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23847
diff changeset
  6970
  assert(stack_bang_size >= framesize || stack_bang_size <= 0, "stack bang size incorrect");
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6971
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6972
  assert((framesize & (StackAlignmentInBytes-1)) == 0, "frame size not aligned");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6973
  // Remove word for return addr
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6974
  framesize -= wordSize;
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23847
diff changeset
  6975
  stack_bang_size -= wordSize;
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6976
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6977
  // Calls to C2R adapters often do not accept exceptional returns.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6978
  // We require that their callers must bang for them.  But be careful, because
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6979
  // some VM calls (such as call site linkage) can use several kilobytes of
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6980
  // stack.  But the stack safety zone should account for that.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6981
  // See bugs 4446381, 4468289, 4497237.
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23847
diff changeset
  6982
  if (stack_bang_size > 0) {
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23847
diff changeset
  6983
    generate_stack_overflow_check(stack_bang_size);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6984
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6985
    // We always push rbp, so that on return to interpreter rbp, will be
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6986
    // restored correctly and we can correct the stack.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6987
    push(rbp);
30305
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 30299
diff changeset
  6988
    // Save caller's stack pointer into RBP if the frame pointer is preserved.
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 30299
diff changeset
  6989
    if (PreserveFramePointer) {
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 30299
diff changeset
  6990
      mov(rbp, rsp);
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 30299
diff changeset
  6991
    }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6992
    // Remove word for ebp
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6993
    framesize -= wordSize;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6994
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6995
    // Create frame
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6996
    if (framesize) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6997
      subptr(rsp, framesize);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6998
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  6999
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7000
    // Create frame (force generation of a 4 byte immediate value)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7001
    subptr_imm32(rsp, framesize);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7002
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7003
    // Save RBP register now.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7004
    framesize -= wordSize;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7005
    movptr(Address(rsp, framesize), rbp);
30305
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 30299
diff changeset
  7006
    // Save caller's stack pointer into RBP if the frame pointer is preserved.
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 30299
diff changeset
  7007
    if (PreserveFramePointer) {
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 30299
diff changeset
  7008
      movptr(rbp, rsp);
33188
6d91a3077eca 8080650: Enable stubs to use frame pointers correctly
zmajo
parents: 33160
diff changeset
  7009
      if (framesize > 0) {
6d91a3077eca 8080650: Enable stubs to use frame pointers correctly
zmajo
parents: 33160
diff changeset
  7010
        addptr(rbp, framesize);
6d91a3077eca 8080650: Enable stubs to use frame pointers correctly
zmajo
parents: 33160
diff changeset
  7011
      }
30305
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 30299
diff changeset
  7012
    }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7013
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7014
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7015
  if (VerifyStackAtCalls) { // Majik cookie to verify stack depth
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7016
    framesize -= wordSize;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7017
    movptr(Address(rsp, framesize), (int32_t)0xbadb100d);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7018
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7019
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7020
#ifndef _LP64
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7021
  // If method sets FPU control word do it now
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7022
  if (fp_mode_24b) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7023
    fldcw(ExternalAddress(StubRoutines::addr_fpu_cntrl_wrd_24()));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7024
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7025
  if (UseSSE >= 2 && VerifyFPU) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7026
    verify_FPU(0, "FPU stack must be clean on entry");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7027
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7028
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7029
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7030
#ifdef ASSERT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7031
  if (VerifyStackAtCalls) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7032
    Label L;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7033
    push(rax);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7034
    mov(rax, rsp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7035
    andptr(rax, StackAlignmentInBytes-1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7036
    cmpptr(rax, StackAlignmentInBytes-wordSize);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7037
    pop(rax);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7038
    jcc(Assembler::equal, L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7039
    STOP("Stack is not properly aligned!");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7040
    bind(L);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7041
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7042
#endif
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7043
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7044
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7045
36554
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7046
void MacroAssembler::clear_mem(Register base, Register cnt, Register tmp, bool is_large) {
15114
4074553c678b 8005522: use fast-string instructions on x86 for zeroing
kvn
parents: 14837
diff changeset
  7047
  // cnt - number of qwords (8-byte words).
4074553c678b 8005522: use fast-string instructions on x86 for zeroing
kvn
parents: 14837
diff changeset
  7048
  // base - start address, qword aligned.
36554
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7049
  // is_large - if optimizers know cnt is larger than InitArrayShortSize
15114
4074553c678b 8005522: use fast-string instructions on x86 for zeroing
kvn
parents: 14837
diff changeset
  7050
  assert(base==rdi, "base register must be edi for rep stos");
4074553c678b 8005522: use fast-string instructions on x86 for zeroing
kvn
parents: 14837
diff changeset
  7051
  assert(tmp==rax,   "tmp register must be eax for rep stos");
4074553c678b 8005522: use fast-string instructions on x86 for zeroing
kvn
parents: 14837
diff changeset
  7052
  assert(cnt==rcx,   "cnt register must be ecx for rep stos");
36554
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7053
  assert(InitArrayShortSize % BytesPerLong == 0,
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7054
    "InitArrayShortSize should be the multiple of BytesPerLong");
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7055
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7056
  Label DONE;
15114
4074553c678b 8005522: use fast-string instructions on x86 for zeroing
kvn
parents: 14837
diff changeset
  7057
4074553c678b 8005522: use fast-string instructions on x86 for zeroing
kvn
parents: 14837
diff changeset
  7058
  xorptr(tmp, tmp);
36554
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7059
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7060
  if (!is_large) {
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7061
    Label LOOP, LONG;
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7062
    cmpptr(cnt, InitArrayShortSize/BytesPerLong);
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7063
    jccb(Assembler::greater, LONG);
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7064
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7065
    NOT_LP64(shlptr(cnt, 1);) // convert to number of 32-bit words for 32-bit VM
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7066
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7067
    decrement(cnt);
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7068
    jccb(Assembler::negative, DONE); // Zero length
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7069
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7070
    // Use individual pointer-sized stores for small counts:
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7071
    BIND(LOOP);
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7072
    movptr(Address(base, cnt, Address::times_ptr), tmp);
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7073
    decrement(cnt);
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7074
    jccb(Assembler::greaterEqual, LOOP);
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7075
    jmpb(DONE);
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7076
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7077
    BIND(LONG);
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7078
  }
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7079
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7080
  // Use longer rep-prefixed ops for non-small counts:
15114
4074553c678b 8005522: use fast-string instructions on x86 for zeroing
kvn
parents: 14837
diff changeset
  7081
  if (UseFastStosb) {
36554
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7082
    shlptr(cnt, 3); // convert to number of bytes
15114
4074553c678b 8005522: use fast-string instructions on x86 for zeroing
kvn
parents: 14837
diff changeset
  7083
    rep_stosb();
4074553c678b 8005522: use fast-string instructions on x86 for zeroing
kvn
parents: 14837
diff changeset
  7084
  } else {
36554
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7085
    NOT_LP64(shlptr(cnt, 1);) // convert to number of 32-bit words for 32-bit VM
15114
4074553c678b 8005522: use fast-string instructions on x86 for zeroing
kvn
parents: 14837
diff changeset
  7086
    rep_stos();
4074553c678b 8005522: use fast-string instructions on x86 for zeroing
kvn
parents: 14837
diff changeset
  7087
  }
36554
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7088
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36068
diff changeset
  7089
  BIND(DONE);
15114
4074553c678b 8005522: use fast-string instructions on x86 for zeroing
kvn
parents: 14837
diff changeset
  7090
}
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7091
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7092
#ifdef COMPILER2
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7093
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7094
// IndexOf for constant substrings with size >= 8 chars
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7095
// which don't need to be loaded through stack.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7096
void MacroAssembler::string_indexofC8(Register str1, Register str2,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7097
                                      Register cnt1, Register cnt2,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7098
                                      int int_cnt2,  Register result,
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7099
                                      XMMRegister vec, Register tmp,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7100
                                      int ae) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7101
  ShortBranchVerifier sbv(this);
34207
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7102
  assert(UseSSE42Intrinsics, "SSE4.2 intrinsics are required");
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7103
  assert(ae != StrIntrinsicNode::LU, "Invalid encoding");
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7104
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7105
  // This method uses the pcmpestri instruction with bound registers
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7106
  //   inputs:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7107
  //     xmm - substring
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7108
  //     rax - substring length (elements count)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7109
  //     mem - scanned string
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7110
  //     rdx - string length (elements count)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7111
  //     0xd - mode: 1100 (substring search) + 01 (unsigned shorts)
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7112
  //     0xc - mode: 1100 (substring search) + 00 (unsigned bytes)
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7113
  //   outputs:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7114
  //     rcx - matched index in string
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7115
  assert(cnt1 == rdx && cnt2 == rax && tmp == rcx, "pcmpestri");
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7116
  int mode   = (ae == StrIntrinsicNode::LL) ? 0x0c : 0x0d; // bytes or shorts
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7117
  int stride = (ae == StrIntrinsicNode::LL) ? 16 : 8; //UU, UL -> 8
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7118
  Address::ScaleFactor scale1 = (ae == StrIntrinsicNode::LL) ? Address::times_1 : Address::times_2;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7119
  Address::ScaleFactor scale2 = (ae == StrIntrinsicNode::UL) ? Address::times_1 : scale1;
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7120
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7121
  Label RELOAD_SUBSTR, SCAN_TO_SUBSTR, SCAN_SUBSTR,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7122
        RET_FOUND, RET_NOT_FOUND, EXIT, FOUND_SUBSTR,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7123
        MATCH_SUBSTR_HEAD, RELOAD_STR, FOUND_CANDIDATE;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7124
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7125
  // Note, inline_string_indexOf() generates checks:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7126
  // if (substr.count > string.count) return -1;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7127
  // if (substr.count == 0) return 0;
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7128
  assert(int_cnt2 >= stride, "this code is used only for cnt2 >= 8 chars");
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7129
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7130
  // Load substring.
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7131
  if (ae == StrIntrinsicNode::UL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7132
    pmovzxbw(vec, Address(str2, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7133
  } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7134
    movdqu(vec, Address(str2, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7135
  }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7136
  movl(cnt2, int_cnt2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7137
  movptr(result, str1); // string addr
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7138
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7139
  if (int_cnt2 > stride) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7140
    jmpb(SCAN_TO_SUBSTR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7141
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7142
    // Reload substr for rescan, this code
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7143
    // is executed only for large substrings (> 8 chars)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7144
    bind(RELOAD_SUBSTR);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7145
    if (ae == StrIntrinsicNode::UL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7146
      pmovzxbw(vec, Address(str2, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7147
    } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7148
      movdqu(vec, Address(str2, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7149
    }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7150
    negptr(cnt2); // Jumped here with negative cnt2, convert to positive
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7151
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7152
    bind(RELOAD_STR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7153
    // We came here after the beginning of the substring was
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7154
    // matched but the rest of it was not so we need to search
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7155
    // again. Start from the next element after the previous match.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7156
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7157
    // cnt2 is number of substring reminding elements and
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7158
    // cnt1 is number of string reminding elements when cmp failed.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7159
    // Restored cnt1 = cnt1 - cnt2 + int_cnt2
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7160
    subl(cnt1, cnt2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7161
    addl(cnt1, int_cnt2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7162
    movl(cnt2, int_cnt2); // Now restore cnt2
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7163
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7164
    decrementl(cnt1);     // Shift to next element
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7165
    cmpl(cnt1, cnt2);
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  7166
    jcc(Assembler::negative, RET_NOT_FOUND);  // Left less then substring
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7167
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7168
    addptr(result, (1<<scale1));
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7169
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7170
  } // (int_cnt2 > 8)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7171
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7172
  // Scan string for start of substr in 16-byte vectors
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7173
  bind(SCAN_TO_SUBSTR);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7174
  pcmpestri(vec, Address(result, 0), mode);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7175
  jccb(Assembler::below, FOUND_CANDIDATE);   // CF == 1
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7176
  subl(cnt1, stride);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7177
  jccb(Assembler::lessEqual, RET_NOT_FOUND); // Scanned full string
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7178
  cmpl(cnt1, cnt2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7179
  jccb(Assembler::negative, RET_NOT_FOUND);  // Left less then substring
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7180
  addptr(result, 16);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7181
  jmpb(SCAN_TO_SUBSTR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7182
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7183
  // Found a potential substr
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7184
  bind(FOUND_CANDIDATE);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7185
  // Matched whole vector if first element matched (tmp(rcx) == 0).
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7186
  if (int_cnt2 == stride) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7187
    jccb(Assembler::overflow, RET_FOUND);    // OF == 1
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7188
  } else { // int_cnt2 > 8
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7189
    jccb(Assembler::overflow, FOUND_SUBSTR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7190
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7191
  // After pcmpestri tmp(rcx) contains matched element index
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7192
  // Compute start addr of substr
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7193
  lea(result, Address(result, tmp, scale1));
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7194
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7195
  // Make sure string is still long enough
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7196
  subl(cnt1, tmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7197
  cmpl(cnt1, cnt2);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7198
  if (int_cnt2 == stride) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7199
    jccb(Assembler::greaterEqual, SCAN_TO_SUBSTR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7200
  } else { // int_cnt2 > 8
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7201
    jccb(Assembler::greaterEqual, MATCH_SUBSTR_HEAD);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7202
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7203
  // Left less then substring.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7204
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7205
  bind(RET_NOT_FOUND);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7206
  movl(result, -1);
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  7207
  jmp(EXIT);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7208
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7209
  if (int_cnt2 > stride) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7210
    // This code is optimized for the case when whole substring
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7211
    // is matched if its head is matched.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7212
    bind(MATCH_SUBSTR_HEAD);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7213
    pcmpestri(vec, Address(result, 0), mode);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7214
    // Reload only string if does not match
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  7215
    jcc(Assembler::noOverflow, RELOAD_STR); // OF == 0
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7216
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7217
    Label CONT_SCAN_SUBSTR;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7218
    // Compare the rest of substring (> 8 chars).
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7219
    bind(FOUND_SUBSTR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7220
    // First 8 chars are already matched.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7221
    negptr(cnt2);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7222
    addptr(cnt2, stride);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7223
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7224
    bind(SCAN_SUBSTR);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7225
    subl(cnt1, stride);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7226
    cmpl(cnt2, -stride); // Do not read beyond substring
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7227
    jccb(Assembler::lessEqual, CONT_SCAN_SUBSTR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7228
    // Back-up strings to avoid reading beyond substring:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7229
    // cnt1 = cnt1 - cnt2 + 8
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7230
    addl(cnt1, cnt2); // cnt2 is negative
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7231
    addl(cnt1, stride);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7232
    movl(cnt2, stride); negptr(cnt2);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7233
    bind(CONT_SCAN_SUBSTR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7234
    if (int_cnt2 < (int)G) {
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7235
      int tail_off1 = int_cnt2<<scale1;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7236
      int tail_off2 = int_cnt2<<scale2;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7237
      if (ae == StrIntrinsicNode::UL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7238
        pmovzxbw(vec, Address(str2, cnt2, scale2, tail_off2));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7239
      } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7240
        movdqu(vec, Address(str2, cnt2, scale2, tail_off2));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7241
      }
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7242
      pcmpestri(vec, Address(result, cnt2, scale1, tail_off1), mode);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7243
    } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7244
      // calculate index in register to avoid integer overflow (int_cnt2*2)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7245
      movl(tmp, int_cnt2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7246
      addptr(tmp, cnt2);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7247
      if (ae == StrIntrinsicNode::UL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7248
        pmovzxbw(vec, Address(str2, tmp, scale2, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7249
      } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7250
        movdqu(vec, Address(str2, tmp, scale2, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7251
      }
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7252
      pcmpestri(vec, Address(result, tmp, scale1, 0), mode);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7253
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7254
    // Need to reload strings pointers if not matched whole vector
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7255
    jcc(Assembler::noOverflow, RELOAD_SUBSTR); // OF == 0
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7256
    addptr(cnt2, stride);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7257
    jcc(Assembler::negative, SCAN_SUBSTR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7258
    // Fall through if found full substring
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7259
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7260
  } // (int_cnt2 > 8)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7261
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7262
  bind(RET_FOUND);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7263
  // Found result if we matched full small substring.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7264
  // Compute substr offset
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7265
  subptr(result, str1);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7266
  if (ae == StrIntrinsicNode::UU || ae == StrIntrinsicNode::UL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7267
    shrl(result, 1); // index
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7268
  }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7269
  bind(EXIT);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7270
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7271
} // string_indexofC8
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7272
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7273
// Small strings are loaded through stack if they cross page boundary.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7274
void MacroAssembler::string_indexof(Register str1, Register str2,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7275
                                    Register cnt1, Register cnt2,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7276
                                    int int_cnt2,  Register result,
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7277
                                    XMMRegister vec, Register tmp,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7278
                                    int ae) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7279
  ShortBranchVerifier sbv(this);
34207
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7280
  assert(UseSSE42Intrinsics, "SSE4.2 intrinsics are required");
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7281
  assert(ae != StrIntrinsicNode::LU, "Invalid encoding");
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7282
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7283
  //
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7284
  // int_cnt2 is length of small (< 8 chars) constant substring
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7285
  // or (-1) for non constant substring in which case its length
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7286
  // is in cnt2 register.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7287
  //
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7288
  // Note, inline_string_indexOf() generates checks:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7289
  // if (substr.count > string.count) return -1;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7290
  // if (substr.count == 0) return 0;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7291
  //
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7292
  int stride = (ae == StrIntrinsicNode::LL) ? 16 : 8; //UU, UL -> 8
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7293
  assert(int_cnt2 == -1 || (0 < int_cnt2 && int_cnt2 < stride), "should be != 0");
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7294
  // This method uses the pcmpestri instruction with bound registers
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7295
  //   inputs:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7296
  //     xmm - substring
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7297
  //     rax - substring length (elements count)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7298
  //     mem - scanned string
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7299
  //     rdx - string length (elements count)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7300
  //     0xd - mode: 1100 (substring search) + 01 (unsigned shorts)
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7301
  //     0xc - mode: 1100 (substring search) + 00 (unsigned bytes)
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7302
  //   outputs:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7303
  //     rcx - matched index in string
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7304
  assert(cnt1 == rdx && cnt2 == rax && tmp == rcx, "pcmpestri");
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7305
  int mode = (ae == StrIntrinsicNode::LL) ? 0x0c : 0x0d; // bytes or shorts
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7306
  Address::ScaleFactor scale1 = (ae == StrIntrinsicNode::LL) ? Address::times_1 : Address::times_2;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7307
  Address::ScaleFactor scale2 = (ae == StrIntrinsicNode::UL) ? Address::times_1 : scale1;
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7308
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7309
  Label RELOAD_SUBSTR, SCAN_TO_SUBSTR, SCAN_SUBSTR, ADJUST_STR,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7310
        RET_FOUND, RET_NOT_FOUND, CLEANUP, FOUND_SUBSTR,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7311
        FOUND_CANDIDATE;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7312
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7313
  { //========================================================
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7314
    // We don't know where these strings are located
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7315
    // and we can't read beyond them. Load them through stack.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7316
    Label BIG_STRINGS, CHECK_STR, COPY_SUBSTR, COPY_STR;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7317
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7318
    movptr(tmp, rsp); // save old SP
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7319
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7320
    if (int_cnt2 > 0) {     // small (< 8 chars) constant substring
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7321
      if (int_cnt2 == (1>>scale2)) { // One byte
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7322
        assert((ae == StrIntrinsicNode::LL || ae == StrIntrinsicNode::UL), "Only possible for latin1 encoding");
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7323
        load_unsigned_byte(result, Address(str2, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7324
        movdl(vec, result); // move 32 bits
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7325
      } else if (ae == StrIntrinsicNode::LL && int_cnt2 == 3) {  // Three bytes
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7326
        // Not enough header space in 32-bit VM: 12+3 = 15.
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7327
        movl(result, Address(str2, -1));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7328
        shrl(result, 8);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7329
        movdl(vec, result); // move 32 bits
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7330
      } else if (ae != StrIntrinsicNode::UL && int_cnt2 == (2>>scale2)) {  // One char
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7331
        load_unsigned_short(result, Address(str2, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7332
        movdl(vec, result); // move 32 bits
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7333
      } else if (ae != StrIntrinsicNode::UL && int_cnt2 == (4>>scale2)) { // Two chars
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7334
        movdl(vec, Address(str2, 0)); // move 32 bits
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7335
      } else if (ae != StrIntrinsicNode::UL && int_cnt2 == (8>>scale2)) { // Four chars
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7336
        movq(vec, Address(str2, 0));  // move 64 bits
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7337
      } else { // cnt2 = { 3, 5, 6, 7 } || (ae == StrIntrinsicNode::UL && cnt2 ={2, ..., 7})
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7338
        // Array header size is 12 bytes in 32-bit VM
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7339
        // + 6 bytes for 3 chars == 18 bytes,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7340
        // enough space to load vec and shift.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7341
        assert(HeapWordSize*TypeArrayKlass::header_size() >= 12,"sanity");
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7342
        if (ae == StrIntrinsicNode::UL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7343
          int tail_off = int_cnt2-8;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7344
          pmovzxbw(vec, Address(str2, tail_off));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7345
          psrldq(vec, -2*tail_off);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7346
        }
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7347
        else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7348
          int tail_off = int_cnt2*(1<<scale2);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7349
          movdqu(vec, Address(str2, tail_off-16));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7350
          psrldq(vec, 16-tail_off);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7351
        }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7352
      }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7353
    } else { // not constant substring
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7354
      cmpl(cnt2, stride);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7355
      jccb(Assembler::aboveEqual, BIG_STRINGS); // Both strings are big enough
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7356
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7357
      // We can read beyond string if srt+16 does not cross page boundary
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7358
      // since heaps are aligned and mapped by pages.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7359
      assert(os::vm_page_size() < (int)G, "default page should be small");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7360
      movl(result, str2); // We need only low 32 bits
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7361
      andl(result, (os::vm_page_size()-1));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7362
      cmpl(result, (os::vm_page_size()-16));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7363
      jccb(Assembler::belowEqual, CHECK_STR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7364
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7365
      // Move small strings to stack to allow load 16 bytes into vec.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7366
      subptr(rsp, 16);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7367
      int stk_offset = wordSize-(1<<scale2);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7368
      push(cnt2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7369
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7370
      bind(COPY_SUBSTR);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7371
      if (ae == StrIntrinsicNode::LL || ae == StrIntrinsicNode::UL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7372
        load_unsigned_byte(result, Address(str2, cnt2, scale2, -1));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7373
        movb(Address(rsp, cnt2, scale2, stk_offset), result);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7374
      } else if (ae == StrIntrinsicNode::UU) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7375
        load_unsigned_short(result, Address(str2, cnt2, scale2, -2));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7376
        movw(Address(rsp, cnt2, scale2, stk_offset), result);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7377
      }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7378
      decrement(cnt2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7379
      jccb(Assembler::notZero, COPY_SUBSTR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7380
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7381
      pop(cnt2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7382
      movptr(str2, rsp);  // New substring address
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7383
    } // non constant
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7384
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7385
    bind(CHECK_STR);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7386
    cmpl(cnt1, stride);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7387
    jccb(Assembler::aboveEqual, BIG_STRINGS);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7388
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7389
    // Check cross page boundary.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7390
    movl(result, str1); // We need only low 32 bits
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7391
    andl(result, (os::vm_page_size()-1));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7392
    cmpl(result, (os::vm_page_size()-16));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7393
    jccb(Assembler::belowEqual, BIG_STRINGS);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7394
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7395
    subptr(rsp, 16);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7396
    int stk_offset = -(1<<scale1);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7397
    if (int_cnt2 < 0) { // not constant
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7398
      push(cnt2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7399
      stk_offset += wordSize;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7400
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7401
    movl(cnt2, cnt1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7402
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7403
    bind(COPY_STR);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7404
    if (ae == StrIntrinsicNode::LL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7405
      load_unsigned_byte(result, Address(str1, cnt2, scale1, -1));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7406
      movb(Address(rsp, cnt2, scale1, stk_offset), result);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7407
    } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7408
      load_unsigned_short(result, Address(str1, cnt2, scale1, -2));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7409
      movw(Address(rsp, cnt2, scale1, stk_offset), result);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7410
    }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7411
    decrement(cnt2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7412
    jccb(Assembler::notZero, COPY_STR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7413
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7414
    if (int_cnt2 < 0) { // not constant
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7415
      pop(cnt2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7416
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7417
    movptr(str1, rsp);  // New string address
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7418
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7419
    bind(BIG_STRINGS);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7420
    // Load substring.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7421
    if (int_cnt2 < 0) { // -1
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7422
      if (ae == StrIntrinsicNode::UL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7423
        pmovzxbw(vec, Address(str2, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7424
      } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7425
        movdqu(vec, Address(str2, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7426
      }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7427
      push(cnt2);       // substr count
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7428
      push(str2);       // substr addr
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7429
      push(str1);       // string addr
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7430
    } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7431
      // Small (< 8 chars) constant substrings are loaded already.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7432
      movl(cnt2, int_cnt2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7433
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7434
    push(tmp);  // original SP
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7435
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7436
  } // Finished loading
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7437
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7438
  //========================================================
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7439
  // Start search
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7440
  //
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7441
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7442
  movptr(result, str1); // string addr
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7443
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7444
  if (int_cnt2  < 0) {  // Only for non constant substring
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7445
    jmpb(SCAN_TO_SUBSTR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7446
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7447
    // SP saved at sp+0
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7448
    // String saved at sp+1*wordSize
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7449
    // Substr saved at sp+2*wordSize
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7450
    // Substr count saved at sp+3*wordSize
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7451
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7452
    // Reload substr for rescan, this code
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7453
    // is executed only for large substrings (> 8 chars)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7454
    bind(RELOAD_SUBSTR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7455
    movptr(str2, Address(rsp, 2*wordSize));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7456
    movl(cnt2, Address(rsp, 3*wordSize));
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7457
    if (ae == StrIntrinsicNode::UL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7458
      pmovzxbw(vec, Address(str2, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7459
    } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7460
      movdqu(vec, Address(str2, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7461
    }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7462
    // We came here after the beginning of the substring was
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7463
    // matched but the rest of it was not so we need to search
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7464
    // again. Start from the next element after the previous match.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7465
    subptr(str1, result); // Restore counter
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7466
    if (ae == StrIntrinsicNode::UU || ae == StrIntrinsicNode::UL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7467
      shrl(str1, 1);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7468
    }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7469
    addl(cnt1, str1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7470
    decrementl(cnt1);   // Shift to next element
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7471
    cmpl(cnt1, cnt2);
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  7472
    jcc(Assembler::negative, RET_NOT_FOUND);  // Left less then substring
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7473
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7474
    addptr(result, (1<<scale1));
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7475
  } // non constant
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7476
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7477
  // Scan string for start of substr in 16-byte vectors
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7478
  bind(SCAN_TO_SUBSTR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7479
  assert(cnt1 == rdx && cnt2 == rax && tmp == rcx, "pcmpestri");
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7480
  pcmpestri(vec, Address(result, 0), mode);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7481
  jccb(Assembler::below, FOUND_CANDIDATE);   // CF == 1
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7482
  subl(cnt1, stride);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7483
  jccb(Assembler::lessEqual, RET_NOT_FOUND); // Scanned full string
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7484
  cmpl(cnt1, cnt2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7485
  jccb(Assembler::negative, RET_NOT_FOUND);  // Left less then substring
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7486
  addptr(result, 16);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7487
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7488
  bind(ADJUST_STR);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7489
  cmpl(cnt1, stride); // Do not read beyond string
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7490
  jccb(Assembler::greaterEqual, SCAN_TO_SUBSTR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7491
  // Back-up string to avoid reading beyond string.
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7492
  lea(result, Address(result, cnt1, scale1, -16));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7493
  movl(cnt1, stride);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7494
  jmpb(SCAN_TO_SUBSTR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7495
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7496
  // Found a potential substr
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7497
  bind(FOUND_CANDIDATE);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7498
  // After pcmpestri tmp(rcx) contains matched element index
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7499
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7500
  // Make sure string is still long enough
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7501
  subl(cnt1, tmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7502
  cmpl(cnt1, cnt2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7503
  jccb(Assembler::greaterEqual, FOUND_SUBSTR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7504
  // Left less then substring.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7505
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7506
  bind(RET_NOT_FOUND);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7507
  movl(result, -1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7508
  jmpb(CLEANUP);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7509
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7510
  bind(FOUND_SUBSTR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7511
  // Compute start addr of substr
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7512
  lea(result, Address(result, tmp, scale1));
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7513
  if (int_cnt2 > 0) { // Constant substring
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7514
    // Repeat search for small substring (< 8 chars)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7515
    // from new point without reloading substring.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7516
    // Have to check that we don't read beyond string.
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7517
    cmpl(tmp, stride-int_cnt2);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7518
    jccb(Assembler::greater, ADJUST_STR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7519
    // Fall through if matched whole substring.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7520
  } else { // non constant
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7521
    assert(int_cnt2 == -1, "should be != 0");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7522
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7523
    addl(tmp, cnt2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7524
    // Found result if we matched whole substring.
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7525
    cmpl(tmp, stride);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7526
    jccb(Assembler::lessEqual, RET_FOUND);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7527
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7528
    // Repeat search for small substring (<= 8 chars)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7529
    // from new point 'str1' without reloading substring.
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7530
    cmpl(cnt2, stride);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7531
    // Have to check that we don't read beyond string.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7532
    jccb(Assembler::lessEqual, ADJUST_STR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7533
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7534
    Label CHECK_NEXT, CONT_SCAN_SUBSTR, RET_FOUND_LONG;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7535
    // Compare the rest of substring (> 8 chars).
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7536
    movptr(str1, result);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7537
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7538
    cmpl(tmp, cnt2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7539
    // First 8 chars are already matched.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7540
    jccb(Assembler::equal, CHECK_NEXT);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7541
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7542
    bind(SCAN_SUBSTR);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7543
    pcmpestri(vec, Address(str1, 0), mode);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7544
    // Need to reload strings pointers if not matched whole vector
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7545
    jcc(Assembler::noOverflow, RELOAD_SUBSTR); // OF == 0
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7546
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7547
    bind(CHECK_NEXT);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7548
    subl(cnt2, stride);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7549
    jccb(Assembler::lessEqual, RET_FOUND_LONG); // Found full substring
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7550
    addptr(str1, 16);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7551
    if (ae == StrIntrinsicNode::UL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7552
      addptr(str2, 8);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7553
    } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7554
      addptr(str2, 16);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7555
    }
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7556
    subl(cnt1, stride);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7557
    cmpl(cnt2, stride); // Do not read beyond substring
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7558
    jccb(Assembler::greaterEqual, CONT_SCAN_SUBSTR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7559
    // Back-up strings to avoid reading beyond substring.
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7560
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7561
    if (ae == StrIntrinsicNode::UL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7562
      lea(str2, Address(str2, cnt2, scale2, -8));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7563
      lea(str1, Address(str1, cnt2, scale1, -16));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7564
    } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7565
      lea(str2, Address(str2, cnt2, scale2, -16));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7566
      lea(str1, Address(str1, cnt2, scale1, -16));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7567
    }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7568
    subl(cnt1, cnt2);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7569
    movl(cnt2, stride);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7570
    addl(cnt1, stride);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7571
    bind(CONT_SCAN_SUBSTR);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7572
    if (ae == StrIntrinsicNode::UL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7573
      pmovzxbw(vec, Address(str2, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7574
    } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7575
      movdqu(vec, Address(str2, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7576
    }
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  7577
    jmp(SCAN_SUBSTR);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7578
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7579
    bind(RET_FOUND_LONG);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7580
    movptr(str1, Address(rsp, wordSize));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7581
  } // non constant
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7582
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7583
  bind(RET_FOUND);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7584
  // Compute substr offset
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7585
  subptr(result, str1);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7586
  if (ae == StrIntrinsicNode::UU || ae == StrIntrinsicNode::UL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7587
    shrl(result, 1); // index
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7588
  }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7589
  bind(CLEANUP);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7590
  pop(rsp); // restore SP
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7591
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7592
} // string_indexof
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7593
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7594
void MacroAssembler::string_indexof_char(Register str1, Register cnt1, Register ch, Register result,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7595
                                         XMMRegister vec1, XMMRegister vec2, XMMRegister vec3, Register tmp) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7596
  ShortBranchVerifier sbv(this);
34207
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7597
  assert(UseSSE42Intrinsics, "SSE4.2 intrinsics are required");
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7598
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7599
  int stride = 8;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7600
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7601
  Label FOUND_CHAR, SCAN_TO_CHAR, SCAN_TO_CHAR_LOOP,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7602
        SCAN_TO_8_CHAR, SCAN_TO_8_CHAR_LOOP, SCAN_TO_16_CHAR_LOOP,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7603
        RET_NOT_FOUND, SCAN_TO_8_CHAR_INIT,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7604
        FOUND_SEQ_CHAR, DONE_LABEL;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7605
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7606
  movptr(result, str1);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7607
  if (UseAVX >= 2) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7608
    cmpl(cnt1, stride);
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  7609
    jcc(Assembler::less, SCAN_TO_CHAR_LOOP);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7610
    cmpl(cnt1, 2*stride);
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  7611
    jcc(Assembler::less, SCAN_TO_8_CHAR_INIT);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7612
    movdl(vec1, ch);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7613
    vpbroadcastw(vec1, vec1);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7614
    vpxor(vec2, vec2);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7615
    movl(tmp, cnt1);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7616
    andl(tmp, 0xFFFFFFF0);  //vector count (in chars)
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7617
    andl(cnt1,0x0000000F);  //tail count (in chars)
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7618
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7619
    bind(SCAN_TO_16_CHAR_LOOP);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7620
    vmovdqu(vec3, Address(result, 0));
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  7621
    vpcmpeqw(vec3, vec3, vec1, 1);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7622
    vptest(vec2, vec3);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7623
    jcc(Assembler::carryClear, FOUND_CHAR);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7624
    addptr(result, 32);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7625
    subl(tmp, 2*stride);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7626
    jccb(Assembler::notZero, SCAN_TO_16_CHAR_LOOP);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7627
    jmp(SCAN_TO_8_CHAR);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7628
    bind(SCAN_TO_8_CHAR_INIT);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7629
    movdl(vec1, ch);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7630
    pshuflw(vec1, vec1, 0x00);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7631
    pshufd(vec1, vec1, 0);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7632
    pxor(vec2, vec2);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7633
  }
34207
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7634
  bind(SCAN_TO_8_CHAR);
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7635
  cmpl(cnt1, stride);
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7636
  if (UseAVX >= 2) {
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  7637
    jcc(Assembler::less, SCAN_TO_CHAR);
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  7638
  } else {
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  7639
    jcc(Assembler::less, SCAN_TO_CHAR_LOOP);
34207
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7640
    movdl(vec1, ch);
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7641
    pshuflw(vec1, vec1, 0x00);
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7642
    pshufd(vec1, vec1, 0);
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7643
    pxor(vec2, vec2);
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7644
  }
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7645
  movl(tmp, cnt1);
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7646
  andl(tmp, 0xFFFFFFF8);  //vector count (in chars)
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7647
  andl(cnt1,0x00000007);  //tail count (in chars)
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7648
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7649
  bind(SCAN_TO_8_CHAR_LOOP);
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7650
  movdqu(vec3, Address(result, 0));
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7651
  pcmpeqw(vec3, vec1);
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7652
  ptest(vec2, vec3);
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7653
  jcc(Assembler::carryClear, FOUND_CHAR);
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7654
  addptr(result, 16);
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7655
  subl(tmp, stride);
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7656
  jccb(Assembler::notZero, SCAN_TO_8_CHAR_LOOP);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7657
  bind(SCAN_TO_CHAR);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7658
  testl(cnt1, cnt1);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7659
  jcc(Assembler::zero, RET_NOT_FOUND);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7660
  bind(SCAN_TO_CHAR_LOOP);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7661
  load_unsigned_short(tmp, Address(result, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7662
  cmpl(ch, tmp);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7663
  jccb(Assembler::equal, FOUND_SEQ_CHAR);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7664
  addptr(result, 2);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7665
  subl(cnt1, 1);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7666
  jccb(Assembler::zero, RET_NOT_FOUND);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7667
  jmp(SCAN_TO_CHAR_LOOP);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7668
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7669
  bind(RET_NOT_FOUND);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7670
  movl(result, -1);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7671
  jmpb(DONE_LABEL);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7672
34207
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7673
  bind(FOUND_CHAR);
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7674
  if (UseAVX >= 2) {
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7675
    vpmovmskb(tmp, vec3);
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7676
  } else {
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7677
    pmovmskb(tmp, vec3);
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7678
  }
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7679
  bsfl(ch, tmp);
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  7680
  addl(result, ch);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7681
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7682
  bind(FOUND_SEQ_CHAR);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7683
  subptr(result, str1);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7684
  shrl(result, 1);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7685
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7686
  bind(DONE_LABEL);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7687
} // string_indexof_char
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7688
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7689
// helper function for string_compare
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7690
void MacroAssembler::load_next_elements(Register elem1, Register elem2, Register str1, Register str2,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7691
                                        Address::ScaleFactor scale, Address::ScaleFactor scale1,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7692
                                        Address::ScaleFactor scale2, Register index, int ae) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7693
  if (ae == StrIntrinsicNode::LL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7694
    load_unsigned_byte(elem1, Address(str1, index, scale, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7695
    load_unsigned_byte(elem2, Address(str2, index, scale, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7696
  } else if (ae == StrIntrinsicNode::UU) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7697
    load_unsigned_short(elem1, Address(str1, index, scale, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7698
    load_unsigned_short(elem2, Address(str2, index, scale, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7699
  } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7700
    load_unsigned_byte(elem1, Address(str1, index, scale1, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7701
    load_unsigned_short(elem2, Address(str2, index, scale2, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7702
  }
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7703
}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7704
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7705
// Compare strings, used for char[] and byte[].
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7706
void MacroAssembler::string_compare(Register str1, Register str2,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7707
                                    Register cnt1, Register cnt2, Register result,
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7708
                                    XMMRegister vec1, int ae) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7709
  ShortBranchVerifier sbv(this);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7710
  Label LENGTH_DIFF_LABEL, POP_LABEL, DONE_LABEL, WHILE_HEAD_LABEL;
35113
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7711
  Label COMPARE_WIDE_VECTORS_LOOP_FAILED;  // used only _LP64 && AVX3
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7712
  int stride, stride2, adr_stride, adr_stride1, adr_stride2;
35113
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7713
  int stride2x2 = 0x40;
36061
baa556050d22 8145700: Uninitialised variable in macroAssembler_x86.cpp:7038
thartmann
parents: 35548
diff changeset
  7714
  Address::ScaleFactor scale = Address::no_scale;
baa556050d22 8145700: Uninitialised variable in macroAssembler_x86.cpp:7038
thartmann
parents: 35548
diff changeset
  7715
  Address::ScaleFactor scale1 = Address::no_scale;
baa556050d22 8145700: Uninitialised variable in macroAssembler_x86.cpp:7038
thartmann
parents: 35548
diff changeset
  7716
  Address::ScaleFactor scale2 = Address::no_scale;
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7717
35113
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7718
  if (ae != StrIntrinsicNode::LL) {
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7719
    stride2x2 = 0x20;
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7720
  }
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7721
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7722
  if (ae == StrIntrinsicNode::LU || ae == StrIntrinsicNode::UL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7723
    shrl(cnt2, 1);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7724
  }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7725
  // Compute the minimum of the string lengths and the
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7726
  // difference of the string lengths (stack).
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7727
  // Do the conditional move stuff
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7728
  movl(result, cnt1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7729
  subl(cnt1, cnt2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7730
  push(cnt1);
35113
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7731
  cmov32(Assembler::lessEqual, cnt2, result);    // cnt2 = min(cnt1, cnt2)
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7732
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7733
  // Is the minimum length zero?
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7734
  testl(cnt2, cnt2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7735
  jcc(Assembler::zero, LENGTH_DIFF_LABEL);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7736
  if (ae == StrIntrinsicNode::LL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7737
    // Load first bytes
35113
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7738
    load_unsigned_byte(result, Address(str1, 0));  // result = str1[0]
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7739
    load_unsigned_byte(cnt1, Address(str2, 0));    // cnt1   = str2[0]
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7740
  } else if (ae == StrIntrinsicNode::UU) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7741
    // Load first characters
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7742
    load_unsigned_short(result, Address(str1, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7743
    load_unsigned_short(cnt1, Address(str2, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7744
  } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7745
    load_unsigned_byte(result, Address(str1, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7746
    load_unsigned_short(cnt1, Address(str2, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7747
  }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7748
  subl(result, cnt1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7749
  jcc(Assembler::notZero,  POP_LABEL);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7750
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7751
  if (ae == StrIntrinsicNode::UU) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7752
    // Divide length by 2 to get number of chars
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7753
    shrl(cnt2, 1);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7754
  }
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7755
  cmpl(cnt2, 1);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7756
  jcc(Assembler::equal, LENGTH_DIFF_LABEL);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7757
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7758
  // Check if the strings start at the same location and setup scale and stride
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7759
  if (ae == StrIntrinsicNode::LL || ae == StrIntrinsicNode::UU) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7760
    cmpptr(str1, str2);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7761
    jcc(Assembler::equal, LENGTH_DIFF_LABEL);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7762
    if (ae == StrIntrinsicNode::LL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7763
      scale = Address::times_1;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7764
      stride = 16;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7765
    } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7766
      scale = Address::times_2;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7767
      stride = 8;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7768
    }
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7769
  } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7770
    scale1 = Address::times_1;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7771
    scale2 = Address::times_2;
36061
baa556050d22 8145700: Uninitialised variable in macroAssembler_x86.cpp:7038
thartmann
parents: 35548
diff changeset
  7772
    // scale not used
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7773
    stride = 8;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7774
  }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7775
15612
d4073ad8ce3d 8007708: compiler/6855215 assert(VM_Version::supports_sse4_2())
kvn
parents: 15483
diff changeset
  7776
  if (UseAVX >= 2 && UseSSE42Intrinsics) {
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7777
    Label COMPARE_WIDE_VECTORS, VECTOR_NOT_EQUAL, COMPARE_WIDE_TAIL, COMPARE_SMALL_STR;
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7778
    Label COMPARE_WIDE_VECTORS_LOOP, COMPARE_16_CHARS, COMPARE_INDEX_CHAR;
35113
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7779
    Label COMPARE_WIDE_VECTORS_LOOP_AVX2;
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7780
    Label COMPARE_TAIL_LONG;
35113
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7781
    Label COMPARE_WIDE_VECTORS_LOOP_AVX3;  // used only _LP64 && AVX3
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7782
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7783
    int pcmpmask = 0x19;
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7784
    if (ae == StrIntrinsicNode::LL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7785
      pcmpmask &= ~0x01;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7786
    }
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7787
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7788
    // Setup to compare 16-chars (32-bytes) vectors,
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7789
    // start from first character again because it has aligned address.
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7790
    if (ae == StrIntrinsicNode::LL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7791
      stride2 = 32;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7792
    } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7793
      stride2 = 16;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7794
    }
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7795
    if (ae == StrIntrinsicNode::LL || ae == StrIntrinsicNode::UU) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7796
      adr_stride = stride << scale;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7797
    } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7798
      adr_stride1 = 8;  //stride << scale1;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7799
      adr_stride2 = 16; //stride << scale2;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7800
    }
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7801
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7802
    assert(result == rax && cnt2 == rdx && cnt1 == rcx, "pcmpestri");
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7803
    // rax and rdx are used by pcmpestri as elements counters
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7804
    movl(result, cnt2);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7805
    andl(cnt2, ~(stride2-1));   // cnt2 holds the vector count
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7806
    jcc(Assembler::zero, COMPARE_TAIL_LONG);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7807
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7808
    // fast path : compare first 2 8-char vectors.
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7809
    bind(COMPARE_16_CHARS);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7810
    if (ae == StrIntrinsicNode::LL || ae == StrIntrinsicNode::UU) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7811
      movdqu(vec1, Address(str1, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7812
    } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7813
      pmovzxbw(vec1, Address(str1, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7814
    }
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7815
    pcmpestri(vec1, Address(str2, 0), pcmpmask);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7816
    jccb(Assembler::below, COMPARE_INDEX_CHAR);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7817
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7818
    if (ae == StrIntrinsicNode::LL || ae == StrIntrinsicNode::UU) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7819
      movdqu(vec1, Address(str1, adr_stride));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7820
      pcmpestri(vec1, Address(str2, adr_stride), pcmpmask);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7821
    } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7822
      pmovzxbw(vec1, Address(str1, adr_stride1));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7823
      pcmpestri(vec1, Address(str2, adr_stride2), pcmpmask);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7824
    }
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7825
    jccb(Assembler::aboveEqual, COMPARE_WIDE_VECTORS);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7826
    addl(cnt1, stride);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7827
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7828
    // Compare the characters at index in cnt1
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7829
    bind(COMPARE_INDEX_CHAR); // cnt1 has the offset of the mismatching character
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7830
    load_next_elements(result, cnt2, str1, str2, scale, scale1, scale2, cnt1, ae);
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7831
    subl(result, cnt2);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7832
    jmp(POP_LABEL);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7833
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7834
    // Setup the registers to start vector comparison loop
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7835
    bind(COMPARE_WIDE_VECTORS);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7836
    if (ae == StrIntrinsicNode::LL || ae == StrIntrinsicNode::UU) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7837
      lea(str1, Address(str1, result, scale));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7838
      lea(str2, Address(str2, result, scale));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7839
    } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7840
      lea(str1, Address(str1, result, scale1));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7841
      lea(str2, Address(str2, result, scale2));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7842
    }
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7843
    subl(result, stride2);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7844
    subl(cnt2, stride2);
35113
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7845
    jcc(Assembler::zero, COMPARE_WIDE_TAIL);
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7846
    negptr(result);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7847
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7848
    //  In a loop, compare 16-chars (32-bytes) at once using (vpxor+vptest)
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7849
    bind(COMPARE_WIDE_VECTORS_LOOP);
35113
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7850
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7851
#ifdef _LP64
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7852
    if (VM_Version::supports_avx512vlbw()) { // trying 64 bytes fast loop
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7853
      cmpl(cnt2, stride2x2);
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7854
      jccb(Assembler::below, COMPARE_WIDE_VECTORS_LOOP_AVX2);
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7855
      testl(cnt2, stride2x2-1);   // cnt2 holds the vector count
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7856
      jccb(Assembler::notZero, COMPARE_WIDE_VECTORS_LOOP_AVX2);   // means we cannot subtract by 0x40
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7857
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7858
      bind(COMPARE_WIDE_VECTORS_LOOP_AVX3); // the hottest loop
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7859
      if (ae == StrIntrinsicNode::LL || ae == StrIntrinsicNode::UU) {
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7860
        evmovdquq(vec1, Address(str1, result, scale), Assembler::AVX_512bit);
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7861
        evpcmpeqb(k7, vec1, Address(str2, result, scale), Assembler::AVX_512bit); // k7 == 11..11, if operands equal, otherwise k7 has some 0
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7862
      } else {
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7863
        vpmovzxbw(vec1, Address(str1, result, scale1), Assembler::AVX_512bit);
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7864
        evpcmpeqb(k7, vec1, Address(str2, result, scale2), Assembler::AVX_512bit); // k7 == 11..11, if operands equal, otherwise k7 has some 0
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7865
      }
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7866
      kortestql(k7, k7);
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7867
      jcc(Assembler::aboveEqual, COMPARE_WIDE_VECTORS_LOOP_FAILED);     // miscompare
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7868
      addptr(result, stride2x2);  // update since we already compared at this addr
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7869
      subl(cnt2, stride2x2);      // and sub the size too
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7870
      jccb(Assembler::notZero, COMPARE_WIDE_VECTORS_LOOP_AVX3);
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7871
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7872
      vpxor(vec1, vec1);
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7873
      jmpb(COMPARE_WIDE_TAIL);
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7874
    }//if (VM_Version::supports_avx512vlbw())
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7875
#endif // _LP64
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7876
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7877
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7878
    bind(COMPARE_WIDE_VECTORS_LOOP_AVX2);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7879
    if (ae == StrIntrinsicNode::LL || ae == StrIntrinsicNode::UU) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7880
      vmovdqu(vec1, Address(str1, result, scale));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7881
      vpxor(vec1, Address(str2, result, scale));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7882
    } else {
34203
6817dadf6c7e 8142980: SKX SpecJvm2008 - Derby
mcberg
parents: 34185
diff changeset
  7883
      vpmovzxbw(vec1, Address(str1, result, scale1), Assembler::AVX_256bit);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7884
      vpxor(vec1, Address(str2, result, scale2));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7885
    }
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7886
    vptest(vec1, vec1);
35113
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7887
    jcc(Assembler::notZero, VECTOR_NOT_EQUAL);
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7888
    addptr(result, stride2);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7889
    subl(cnt2, stride2);
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  7890
    jcc(Assembler::notZero, COMPARE_WIDE_VECTORS_LOOP);
16624
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  7891
    // clean upper bits of YMM registers
30299
1f6f7d1e0c1e 8078113: 8011102 changes may cause incorrect results
kvn
parents: 29325
diff changeset
  7892
    vpxor(vec1, vec1);
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7893
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7894
    // compare wide vectors tail
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7895
    bind(COMPARE_WIDE_TAIL);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7896
    testptr(result, result);
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  7897
    jcc(Assembler::zero, LENGTH_DIFF_LABEL);
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7898
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7899
    movl(result, stride2);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7900
    movl(cnt2, result);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7901
    negptr(result);
35113
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  7902
    jmp(COMPARE_WIDE_VECTORS_LOOP_AVX2);
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7903
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7904
    // Identifies the mismatching (higher or lower)16-bytes in the 32-byte vectors.
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7905
    bind(VECTOR_NOT_EQUAL);
16624
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  7906
    // clean upper bits of YMM registers
30299
1f6f7d1e0c1e 8078113: 8011102 changes may cause incorrect results
kvn
parents: 29325
diff changeset
  7907
    vpxor(vec1, vec1);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7908
    if (ae == StrIntrinsicNode::LL || ae == StrIntrinsicNode::UU) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7909
      lea(str1, Address(str1, result, scale));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7910
      lea(str2, Address(str2, result, scale));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7911
    } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7912
      lea(str1, Address(str1, result, scale1));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7913
      lea(str2, Address(str2, result, scale2));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7914
    }
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7915
    jmp(COMPARE_16_CHARS);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7916
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7917
    // Compare tail chars, length between 1 to 15 chars
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7918
    bind(COMPARE_TAIL_LONG);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7919
    movl(cnt2, result);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7920
    cmpl(cnt2, stride);
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  7921
    jcc(Assembler::less, COMPARE_SMALL_STR);
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7922
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7923
    if (ae == StrIntrinsicNode::LL || ae == StrIntrinsicNode::UU) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7924
      movdqu(vec1, Address(str1, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7925
    } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7926
      pmovzxbw(vec1, Address(str1, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7927
    }
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7928
    pcmpestri(vec1, Address(str2, 0), pcmpmask);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7929
    jcc(Assembler::below, COMPARE_INDEX_CHAR);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7930
    subptr(cnt2, stride);
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  7931
    jcc(Assembler::zero, LENGTH_DIFF_LABEL);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7932
    if (ae == StrIntrinsicNode::LL || ae == StrIntrinsicNode::UU) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7933
      lea(str1, Address(str1, result, scale));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7934
      lea(str2, Address(str2, result, scale));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7935
    } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7936
      lea(str1, Address(str1, result, scale1));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7937
      lea(str2, Address(str2, result, scale2));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7938
    }
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7939
    negptr(cnt2);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7940
    jmpb(WHILE_HEAD_LABEL);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7941
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7942
    bind(COMPARE_SMALL_STR);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7943
  } else if (UseSSE42Intrinsics) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7944
    Label COMPARE_WIDE_VECTORS, VECTOR_NOT_EQUAL, COMPARE_TAIL;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7945
    int pcmpmask = 0x19;
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7946
    // Setup to compare 8-char (16-byte) vectors,
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7947
    // start from first character again because it has aligned address.
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7948
    movl(result, cnt2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7949
    andl(cnt2, ~(stride - 1));   // cnt2 holds the vector count
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7950
    if (ae == StrIntrinsicNode::LL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7951
      pcmpmask &= ~0x01;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7952
    }
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  7953
    jcc(Assembler::zero, COMPARE_TAIL);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7954
    if (ae == StrIntrinsicNode::LL || ae == StrIntrinsicNode::UU) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7955
      lea(str1, Address(str1, result, scale));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7956
      lea(str2, Address(str2, result, scale));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7957
    } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7958
      lea(str1, Address(str1, result, scale1));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7959
      lea(str2, Address(str2, result, scale2));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7960
    }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7961
    negptr(result);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7962
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7963
    // pcmpestri
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7964
    //   inputs:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7965
    //     vec1- substring
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7966
    //     rax - negative string length (elements count)
28719
5a9aedf87213 8069580: String intrinsic related cleanups
thartmann
parents: 28494
diff changeset
  7967
    //     mem - scanned string
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7968
    //     rdx - string length (elements count)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7969
    //     pcmpmask - cmp mode: 11000 (string compare with negated result)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7970
    //               + 00 (unsigned bytes) or  + 01 (unsigned shorts)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7971
    //   outputs:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7972
    //     rcx - first mismatched element index
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7973
    assert(result == rax && cnt2 == rdx && cnt1 == rcx, "pcmpestri");
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7974
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7975
    bind(COMPARE_WIDE_VECTORS);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7976
    if (ae == StrIntrinsicNode::LL || ae == StrIntrinsicNode::UU) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7977
      movdqu(vec1, Address(str1, result, scale));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7978
      pcmpestri(vec1, Address(str2, result, scale), pcmpmask);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7979
    } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7980
      pmovzxbw(vec1, Address(str1, result, scale1));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7981
      pcmpestri(vec1, Address(str2, result, scale2), pcmpmask);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7982
    }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7983
    // After pcmpestri cnt1(rcx) contains mismatched element index
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7984
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7985
    jccb(Assembler::below, VECTOR_NOT_EQUAL);  // CF==1
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7986
    addptr(result, stride);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7987
    subptr(cnt2, stride);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7988
    jccb(Assembler::notZero, COMPARE_WIDE_VECTORS);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7989
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7990
    // compare wide vectors tail
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  7991
    testptr(result, result);
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  7992
    jcc(Assembler::zero, LENGTH_DIFF_LABEL);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7993
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7994
    movl(cnt2, stride);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7995
    movl(result, stride);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  7996
    negptr(result);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7997
    if (ae == StrIntrinsicNode::LL || ae == StrIntrinsicNode::UU) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7998
      movdqu(vec1, Address(str1, result, scale));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  7999
      pcmpestri(vec1, Address(str2, result, scale), pcmpmask);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8000
    } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8001
      pmovzxbw(vec1, Address(str1, result, scale1));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8002
      pcmpestri(vec1, Address(str2, result, scale2), pcmpmask);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8003
    }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8004
    jccb(Assembler::aboveEqual, LENGTH_DIFF_LABEL);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8005
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8006
    // Mismatched characters in the vectors
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8007
    bind(VECTOR_NOT_EQUAL);
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8008
    addptr(cnt1, result);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8009
    load_next_elements(result, cnt2, str1, str2, scale, scale1, scale2, cnt1, ae);
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8010
    subl(result, cnt2);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8011
    jmpb(POP_LABEL);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8012
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8013
    bind(COMPARE_TAIL); // limit is zero
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8014
    movl(cnt2, result);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8015
    // Fallthru to tail compare
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8016
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8017
  // Shift str2 and str1 to the end of the arrays, negate min
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8018
  if (ae == StrIntrinsicNode::LL || ae == StrIntrinsicNode::UU) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8019
    lea(str1, Address(str1, cnt2, scale));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8020
    lea(str2, Address(str2, cnt2, scale));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8021
  } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8022
    lea(str1, Address(str1, cnt2, scale1));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8023
    lea(str2, Address(str2, cnt2, scale2));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8024
  }
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8025
  decrementl(cnt2);  // first character was compared already
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8026
  negptr(cnt2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8027
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8028
  // Compare the rest of the elements
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8029
  bind(WHILE_HEAD_LABEL);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8030
  load_next_elements(result, cnt1, str1, str2, scale, scale1, scale2, cnt2, ae);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8031
  subl(result, cnt1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8032
  jccb(Assembler::notZero, POP_LABEL);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8033
  increment(cnt2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8034
  jccb(Assembler::notZero, WHILE_HEAD_LABEL);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8035
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8036
  // Strings are equal up to min length.  Return the length difference.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8037
  bind(LENGTH_DIFF_LABEL);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8038
  pop(result);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8039
  if (ae == StrIntrinsicNode::UU) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8040
    // Divide diff by 2 to get number of chars
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8041
    sarl(result, 1);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8042
  }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8043
  jmpb(DONE_LABEL);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8044
35113
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8045
#ifdef _LP64
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8046
  if (VM_Version::supports_avx512vlbw()) {
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8047
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8048
    bind(COMPARE_WIDE_VECTORS_LOOP_FAILED);
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8049
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8050
    kmovql(cnt1, k7);
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8051
    notq(cnt1);
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8052
    bsfq(cnt2, cnt1);
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8053
    if (ae != StrIntrinsicNode::LL) {
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8054
      // Divide diff by 2 to get number of chars
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8055
      sarl(cnt2, 1);
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8056
    }
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8057
    addq(result, cnt2);
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8058
    if (ae == StrIntrinsicNode::LL) {
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8059
      load_unsigned_byte(cnt1, Address(str2, result));
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8060
      load_unsigned_byte(result, Address(str1, result));
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8061
    } else if (ae == StrIntrinsicNode::UU) {
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8062
      load_unsigned_short(cnt1, Address(str2, result, scale));
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8063
      load_unsigned_short(result, Address(str1, result, scale));
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8064
    } else {
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8065
      load_unsigned_short(cnt1, Address(str2, result, scale2));
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8066
      load_unsigned_byte(result, Address(str1, result, scale1));
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8067
    }
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8068
    subl(result, cnt1);
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8069
    jmpb(POP_LABEL);
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8070
  }//if (VM_Version::supports_avx512vlbw())
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8071
#endif // _LP64
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8072
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8073
  // Discard the stored length difference
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8074
  bind(POP_LABEL);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8075
  pop(cnt1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8076
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8077
  // That's it
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8078
  bind(DONE_LABEL);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8079
  if(ae == StrIntrinsicNode::UL) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8080
    negl(result);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8081
  }
35113
b11bd150ed8a 8144771: Use AVX3 instructions for string compare
kvn
parents: 35110
diff changeset
  8082
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8083
}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8084
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8085
// Search for Non-ASCII character (Negative byte value) in a byte array,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8086
// return true if it has any and false otherwise.
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8087
//   ..\jdk\src\java.base\share\classes\java\lang\StringCoding.java
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8088
//   @HotSpotIntrinsicCandidate
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8089
//   private static boolean hasNegatives(byte[] ba, int off, int len) {
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8090
//     for (int i = off; i < off + len; i++) {
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8091
//       if (ba[i] < 0) {
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8092
//         return true;
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8093
//       }
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8094
//     }
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8095
//     return false;
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8096
//   }
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8097
void MacroAssembler::has_negatives(Register ary1, Register len,
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8098
  Register result, Register tmp1,
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8099
  XMMRegister vec1, XMMRegister vec2) {
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8100
  // rsi: byte array
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8101
  // rcx: len
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8102
  // rax: result
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8103
  ShortBranchVerifier sbv(this);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8104
  assert_different_registers(ary1, len, result, tmp1);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8105
  assert_different_registers(vec1, vec2);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8106
  Label TRUE_LABEL, FALSE_LABEL, DONE, COMPARE_CHAR, COMPARE_VECTORS, COMPARE_BYTE;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8107
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8108
  // len == 0
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8109
  testl(len, len);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8110
  jcc(Assembler::zero, FALSE_LABEL);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8111
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8112
  if ((UseAVX > 2) && // AVX512
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8113
    VM_Version::supports_avx512vlbw() &&
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8114
    VM_Version::supports_bmi2()) {
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8115
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8116
    set_vector_masking();  // opening of the stub context for programming mask registers
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8117
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8118
    Label test_64_loop, test_tail;
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8119
    Register tmp3_aliased = len;
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8120
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8121
    movl(tmp1, len);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8122
    vpxor(vec2, vec2, vec2, Assembler::AVX_512bit);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8123
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8124
    andl(tmp1, 64 - 1);   // tail count (in chars) 0x3F
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8125
    andl(len, ~(64 - 1));    // vector count (in chars)
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8126
    jccb(Assembler::zero, test_tail);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8127
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8128
    lea(ary1, Address(ary1, len, Address::times_1));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8129
    negptr(len);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8130
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8131
    bind(test_64_loop);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8132
    // Check whether our 64 elements of size byte contain negatives
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8133
    evpcmpgtb(k2, vec2, Address(ary1, len, Address::times_1), Assembler::AVX_512bit);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8134
    kortestql(k2, k2);
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  8135
    jcc(Assembler::notZero, TRUE_LABEL);
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8136
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8137
    addptr(len, 64);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8138
    jccb(Assembler::notZero, test_64_loop);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8139
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8140
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8141
    bind(test_tail);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8142
    // bail out when there is nothing to be done
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8143
    testl(tmp1, -1);
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  8144
    jcc(Assembler::zero, FALSE_LABEL);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8145
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8146
    // Save k1
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8147
    kmovql(k3, k1);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8148
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8149
    // ~(~0 << len) applied up to two times (for 32-bit scenario)
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8150
#ifdef _LP64
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8151
    mov64(tmp3_aliased, 0xFFFFFFFFFFFFFFFF);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8152
    shlxq(tmp3_aliased, tmp3_aliased, tmp1);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8153
    notq(tmp3_aliased);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8154
    kmovql(k1, tmp3_aliased);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8155
#else
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8156
    Label k_init;
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8157
    jmp(k_init);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8158
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8159
    // We could not read 64-bits from a general purpose register thus we move
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8160
    // data required to compose 64 1's to the instruction stream
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8161
    // We emit 64 byte wide series of elements from 0..63 which later on would
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8162
    // be used as a compare targets with tail count contained in tmp1 register.
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8163
    // Result would be a k1 register having tmp1 consecutive number or 1
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8164
    // counting from least significant bit.
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8165
    address tmp = pc();
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8166
    emit_int64(0x0706050403020100);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8167
    emit_int64(0x0F0E0D0C0B0A0908);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8168
    emit_int64(0x1716151413121110);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8169
    emit_int64(0x1F1E1D1C1B1A1918);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8170
    emit_int64(0x2726252423222120);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8171
    emit_int64(0x2F2E2D2C2B2A2928);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8172
    emit_int64(0x3736353433323130);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8173
    emit_int64(0x3F3E3D3C3B3A3938);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8174
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8175
    bind(k_init);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8176
    lea(len, InternalAddress(tmp));
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8177
    // create mask to test for negative byte inside a vector
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8178
    evpbroadcastb(vec1, tmp1, Assembler::AVX_512bit);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8179
    evpcmpgtb(k1, vec1, Address(len, 0), Assembler::AVX_512bit);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8180
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8181
#endif
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8182
    evpcmpgtb(k2, k1, vec2, Address(ary1, 0), Assembler::AVX_512bit);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8183
    ktestq(k2, k1);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8184
    // Restore k1
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8185
    kmovql(k1, k3);
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  8186
    jcc(Assembler::notZero, TRUE_LABEL);
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8187
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  8188
    jmp(FALSE_LABEL);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8189
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8190
    clear_vector_masking();   // closing of the stub context for programming mask registers
41065
d1b98cc38f04 8164989: Inflate and compress intrinsics produce incorrect results with avx512
mcberg
parents: 40644
diff changeset
  8191
  } else {
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8192
    movl(result, len); // copy
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8193
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8194
    if (UseAVX == 2 && UseSSE >= 2) {
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8195
      // With AVX2, use 32-byte vector compare
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8196
      Label COMPARE_WIDE_VECTORS, COMPARE_TAIL;
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8197
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8198
      // Compare 32-byte vectors
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8199
      andl(result, 0x0000001f);  //   tail count (in bytes)
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8200
      andl(len, 0xffffffe0);   // vector count (in bytes)
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8201
      jccb(Assembler::zero, COMPARE_TAIL);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8202
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8203
      lea(ary1, Address(ary1, len, Address::times_1));
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8204
      negptr(len);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8205
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8206
      movl(tmp1, 0x80808080);   // create mask to test for Unicode chars in vector
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8207
      movdl(vec2, tmp1);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8208
      vpbroadcastd(vec2, vec2);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8209
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8210
      bind(COMPARE_WIDE_VECTORS);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8211
      vmovdqu(vec1, Address(ary1, len, Address::times_1));
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8212
      vptest(vec1, vec2);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8213
      jccb(Assembler::notZero, TRUE_LABEL);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8214
      addptr(len, 32);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8215
      jcc(Assembler::notZero, COMPARE_WIDE_VECTORS);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8216
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8217
      testl(result, result);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8218
      jccb(Assembler::zero, FALSE_LABEL);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8219
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8220
      vmovdqu(vec1, Address(ary1, result, Address::times_1, -32));
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8221
      vptest(vec1, vec2);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8222
      jccb(Assembler::notZero, TRUE_LABEL);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8223
      jmpb(FALSE_LABEL);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8224
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8225
      bind(COMPARE_TAIL); // len is zero
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8226
      movl(len, result);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8227
      // Fallthru to tail compare
41065
d1b98cc38f04 8164989: Inflate and compress intrinsics produce incorrect results with avx512
mcberg
parents: 40644
diff changeset
  8228
    } else if (UseSSE42Intrinsics) {
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8229
      // With SSE4.2, use double quad vector compare
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8230
      Label COMPARE_WIDE_VECTORS, COMPARE_TAIL;
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8231
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8232
      // Compare 16-byte vectors
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8233
      andl(result, 0x0000000f);  //   tail count (in bytes)
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8234
      andl(len, 0xfffffff0);   // vector count (in bytes)
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8235
      jccb(Assembler::zero, COMPARE_TAIL);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8236
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8237
      lea(ary1, Address(ary1, len, Address::times_1));
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8238
      negptr(len);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8240
      movl(tmp1, 0x80808080);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8241
      movdl(vec2, tmp1);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8242
      pshufd(vec2, vec2, 0);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8243
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8244
      bind(COMPARE_WIDE_VECTORS);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8245
      movdqu(vec1, Address(ary1, len, Address::times_1));
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8246
      ptest(vec1, vec2);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8247
      jccb(Assembler::notZero, TRUE_LABEL);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8248
      addptr(len, 16);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8249
      jcc(Assembler::notZero, COMPARE_WIDE_VECTORS);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8250
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8251
      testl(result, result);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8252
      jccb(Assembler::zero, FALSE_LABEL);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8253
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8254
      movdqu(vec1, Address(ary1, result, Address::times_1, -16));
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8255
      ptest(vec1, vec2);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8256
      jccb(Assembler::notZero, TRUE_LABEL);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8257
      jmpb(FALSE_LABEL);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8258
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8259
      bind(COMPARE_TAIL); // len is zero
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8260
      movl(len, result);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8261
      // Fallthru to tail compare
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8262
    }
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8263
  }
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8264
  // Compare 4-byte vectors
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8265
  andl(len, 0xfffffffc); // vector count (in bytes)
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8266
  jccb(Assembler::zero, COMPARE_CHAR);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8267
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8268
  lea(ary1, Address(ary1, len, Address::times_1));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8269
  negptr(len);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8270
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8271
  bind(COMPARE_VECTORS);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8272
  movl(tmp1, Address(ary1, len, Address::times_1));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8273
  andl(tmp1, 0x80808080);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8274
  jccb(Assembler::notZero, TRUE_LABEL);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8275
  addptr(len, 4);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8276
  jcc(Assembler::notZero, COMPARE_VECTORS);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8277
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8278
  // Compare trailing char (final 2 bytes), if any
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8279
  bind(COMPARE_CHAR);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8280
  testl(result, 0x2);   // tail  char
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8281
  jccb(Assembler::zero, COMPARE_BYTE);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8282
  load_unsigned_short(tmp1, Address(ary1, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8283
  andl(tmp1, 0x00008080);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8284
  jccb(Assembler::notZero, TRUE_LABEL);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8285
  subptr(result, 2);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8286
  lea(ary1, Address(ary1, 2));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8287
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8288
  bind(COMPARE_BYTE);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8289
  testl(result, 0x1);   // tail  byte
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8290
  jccb(Assembler::zero, FALSE_LABEL);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8291
  load_unsigned_byte(tmp1, Address(ary1, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8292
  andl(tmp1, 0x00000080);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8293
  jccb(Assembler::notEqual, TRUE_LABEL);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8294
  jmpb(FALSE_LABEL);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8295
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8296
  bind(TRUE_LABEL);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8297
  movl(result, 1);   // return true
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8298
  jmpb(DONE);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8299
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8300
  bind(FALSE_LABEL);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8301
  xorl(result, result); // return false
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8302
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8303
  // That's it
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8304
  bind(DONE);
34207
a5f1c458b56e 8143208: compiler/c1/6855215/Test6855215.java supports_sse2() failed
zmajo
parents: 34203
diff changeset
  8305
  if (UseAVX >= 2 && UseSSE >= 2) {
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8306
    // clean upper bits of YMM registers
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8307
    vpxor(vec1, vec1);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8308
    vpxor(vec2, vec2);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8309
  }
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8310
}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8311
// Compare char[] or byte[] arrays aligned to 4 bytes or substrings.
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8312
void MacroAssembler::arrays_equals(bool is_array_equ, Register ary1, Register ary2,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8313
                                   Register limit, Register result, Register chr,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8314
                                   XMMRegister vec1, XMMRegister vec2, bool is_char) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8315
  ShortBranchVerifier sbv(this);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8316
  Label TRUE_LABEL, FALSE_LABEL, DONE, COMPARE_VECTORS, COMPARE_CHAR, COMPARE_BYTE;
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8317
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8318
  int length_offset  = arrayOopDesc::length_offset_in_bytes();
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8319
  int base_offset    = arrayOopDesc::base_offset_in_bytes(is_char ? T_CHAR : T_BYTE);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8320
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8321
  if (is_array_equ) {
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8322
    // Check the input args
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8323
    cmpptr(ary1, ary2);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8324
    jcc(Assembler::equal, TRUE_LABEL);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8325
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8326
    // Need additional checks for arrays_equals.
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8327
    testptr(ary1, ary1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8328
    jcc(Assembler::zero, FALSE_LABEL);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8329
    testptr(ary2, ary2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8330
    jcc(Assembler::zero, FALSE_LABEL);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8331
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8332
    // Check the lengths
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8333
    movl(limit, Address(ary1, length_offset));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8334
    cmpl(limit, Address(ary2, length_offset));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8335
    jcc(Assembler::notEqual, FALSE_LABEL);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8336
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8337
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8338
  // count == 0
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8339
  testl(limit, limit);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8340
  jcc(Assembler::zero, TRUE_LABEL);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8341
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8342
  if (is_array_equ) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8343
    // Load array address
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8344
    lea(ary1, Address(ary1, base_offset));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8345
    lea(ary2, Address(ary2, base_offset));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8346
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8347
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8348
  if (is_array_equ && is_char) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8349
    // arrays_equals when used for char[].
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8350
    shll(limit, 1);      // byte count != 0
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8351
  }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8352
  movl(result, limit); // copy
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8353
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8354
  if (UseAVX >= 2) {
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8355
    // With AVX2, use 32-byte vector compare
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8356
    Label COMPARE_WIDE_VECTORS, COMPARE_TAIL;
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8357
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8358
    // Compare 32-byte vectors
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8359
    andl(result, 0x0000001f);  //   tail count (in bytes)
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8360
    andl(limit, 0xffffffe0);   // vector count (in bytes)
35136
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8361
    jcc(Assembler::zero, COMPARE_TAIL);
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8362
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8363
    lea(ary1, Address(ary1, limit, Address::times_1));
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8364
    lea(ary2, Address(ary2, limit, Address::times_1));
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8365
    negptr(limit);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8366
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8367
    bind(COMPARE_WIDE_VECTORS);
35136
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8368
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8369
#ifdef _LP64
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8370
    if (VM_Version::supports_avx512vlbw()) { // trying 64 bytes fast loop
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8371
      Label COMPARE_WIDE_VECTORS_LOOP_AVX2, COMPARE_WIDE_VECTORS_LOOP_AVX3;
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8372
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8373
      cmpl(limit, -64);
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8374
      jccb(Assembler::greater, COMPARE_WIDE_VECTORS_LOOP_AVX2);
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8375
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8376
      bind(COMPARE_WIDE_VECTORS_LOOP_AVX3); // the hottest loop
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8377
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8378
      evmovdquq(vec1, Address(ary1, limit, Address::times_1), Assembler::AVX_512bit);
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8379
      evpcmpeqb(k7, vec1, Address(ary2, limit, Address::times_1), Assembler::AVX_512bit);
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8380
      kortestql(k7, k7);
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8381
      jcc(Assembler::aboveEqual, FALSE_LABEL);     // miscompare
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8382
      addptr(limit, 64);  // update since we already compared at this addr
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8383
      cmpl(limit, -64);
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8384
      jccb(Assembler::lessEqual, COMPARE_WIDE_VECTORS_LOOP_AVX3);
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8385
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8386
      // At this point we may still need to compare -limit+result bytes.
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8387
      // We could execute the next two instruction and just continue via non-wide path:
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8388
      //  cmpl(limit, 0);
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8389
      //  jcc(Assembler::equal, COMPARE_TAIL);  // true
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8390
      // But since we stopped at the points ary{1,2}+limit which are
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8391
      // not farther than 64 bytes from the ends of arrays ary{1,2}+result
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8392
      // (|limit| <= 32 and result < 32),
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8393
      // we may just compare the last 64 bytes.
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8394
      //
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8395
      addptr(result, -64);   // it is safe, bc we just came from this area
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8396
      evmovdquq(vec1, Address(ary1, result, Address::times_1), Assembler::AVX_512bit);
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8397
      evpcmpeqb(k7, vec1, Address(ary2, result, Address::times_1), Assembler::AVX_512bit);
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8398
      kortestql(k7, k7);
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8399
      jcc(Assembler::aboveEqual, FALSE_LABEL);     // miscompare
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8400
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8401
      jmp(TRUE_LABEL);
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8402
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8403
      bind(COMPARE_WIDE_VECTORS_LOOP_AVX2);
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8404
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8405
    }//if (VM_Version::supports_avx512vlbw())
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8406
#endif //_LP64
f3788128ff3f 8145717: Use AVX3 instructions for Arrays.equals() intrinsic
kvn
parents: 35135
diff changeset
  8407
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8408
    vmovdqu(vec1, Address(ary1, limit, Address::times_1));
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8409
    vmovdqu(vec2, Address(ary2, limit, Address::times_1));
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8410
    vpxor(vec1, vec2);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8411
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8412
    vptest(vec1, vec1);
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  8413
    jcc(Assembler::notZero, FALSE_LABEL);
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8414
    addptr(limit, 32);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8415
    jcc(Assembler::notZero, COMPARE_WIDE_VECTORS);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8416
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8417
    testl(result, result);
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  8418
    jcc(Assembler::zero, TRUE_LABEL);
15117
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8419
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8420
    vmovdqu(vec1, Address(ary1, result, Address::times_1, -32));
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8421
    vmovdqu(vec2, Address(ary2, result, Address::times_1, -32));
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8422
    vpxor(vec1, vec2);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8423
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8424
    vptest(vec1, vec1);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8425
    jccb(Assembler::notZero, FALSE_LABEL);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8426
    jmpb(TRUE_LABEL);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8427
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8428
    bind(COMPARE_TAIL); // limit is zero
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8429
    movl(limit, result);
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8430
    // Fallthru to tail compare
625397df6f4f 8005419: Improve intrinsics code performance on x86 by using AVX2
kvn
parents: 15116
diff changeset
  8431
  } else if (UseSSE42Intrinsics) {
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8432
    // With SSE4.2, use double quad vector compare
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8433
    Label COMPARE_WIDE_VECTORS, COMPARE_TAIL;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8434
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8435
    // Compare 16-byte vectors
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8436
    andl(result, 0x0000000f);  //   tail count (in bytes)
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8437
    andl(limit, 0xfffffff0);   // vector count (in bytes)
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  8438
    jcc(Assembler::zero, COMPARE_TAIL);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8439
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8440
    lea(ary1, Address(ary1, limit, Address::times_1));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8441
    lea(ary2, Address(ary2, limit, Address::times_1));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8442
    negptr(limit);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8443
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8444
    bind(COMPARE_WIDE_VECTORS);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8445
    movdqu(vec1, Address(ary1, limit, Address::times_1));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8446
    movdqu(vec2, Address(ary2, limit, Address::times_1));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8447
    pxor(vec1, vec2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8448
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8449
    ptest(vec1, vec1);
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  8450
    jcc(Assembler::notZero, FALSE_LABEL);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8451
    addptr(limit, 16);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8452
    jcc(Assembler::notZero, COMPARE_WIDE_VECTORS);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8453
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8454
    testl(result, result);
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  8455
    jcc(Assembler::zero, TRUE_LABEL);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8456
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8457
    movdqu(vec1, Address(ary1, result, Address::times_1, -16));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8458
    movdqu(vec2, Address(ary2, result, Address::times_1, -16));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8459
    pxor(vec1, vec2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8460
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8461
    ptest(vec1, vec1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8462
    jccb(Assembler::notZero, FALSE_LABEL);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8463
    jmpb(TRUE_LABEL);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8464
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8465
    bind(COMPARE_TAIL); // limit is zero
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8466
    movl(limit, result);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8467
    // Fallthru to tail compare
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8468
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8469
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8470
  // Compare 4-byte vectors
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8471
  andl(limit, 0xfffffffc); // vector count (in bytes)
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8472
  jccb(Assembler::zero, COMPARE_CHAR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8473
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8474
  lea(ary1, Address(ary1, limit, Address::times_1));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8475
  lea(ary2, Address(ary2, limit, Address::times_1));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8476
  negptr(limit);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8477
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8478
  bind(COMPARE_VECTORS);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8479
  movl(chr, Address(ary1, limit, Address::times_1));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8480
  cmpl(chr, Address(ary2, limit, Address::times_1));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8481
  jccb(Assembler::notEqual, FALSE_LABEL);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8482
  addptr(limit, 4);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8483
  jcc(Assembler::notZero, COMPARE_VECTORS);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8484
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8485
  // Compare trailing char (final 2 bytes), if any
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8486
  bind(COMPARE_CHAR);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8487
  testl(result, 0x2);   // tail  char
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8488
  jccb(Assembler::zero, COMPARE_BYTE);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8489
  load_unsigned_short(chr, Address(ary1, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8490
  load_unsigned_short(limit, Address(ary2, 0));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8491
  cmpl(chr, limit);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8492
  jccb(Assembler::notEqual, FALSE_LABEL);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8493
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8494
  if (is_array_equ && is_char) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8495
    bind(COMPARE_BYTE);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8496
  } else {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8497
    lea(ary1, Address(ary1, 2));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8498
    lea(ary2, Address(ary2, 2));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8499
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8500
    bind(COMPARE_BYTE);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8501
    testl(result, 0x1);   // tail  byte
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8502
    jccb(Assembler::zero, TRUE_LABEL);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8503
    load_unsigned_byte(chr, Address(ary1, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8504
    load_unsigned_byte(limit, Address(ary2, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8505
    cmpl(chr, limit);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8506
    jccb(Assembler::notEqual, FALSE_LABEL);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8507
  }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8508
  bind(TRUE_LABEL);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8509
  movl(result, 1);   // return true
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8510
  jmpb(DONE);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8511
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8512
  bind(FALSE_LABEL);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8513
  xorl(result, result); // return false
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8514
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8515
  // That's it
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8516
  bind(DONE);
16624
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  8517
  if (UseAVX >= 2) {
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  8518
    // clean upper bits of YMM registers
30299
1f6f7d1e0c1e 8078113: 8011102 changes may cause incorrect results
kvn
parents: 29325
diff changeset
  8519
    vpxor(vec1, vec1);
1f6f7d1e0c1e 8078113: 8011102 changes may cause incorrect results
kvn
parents: 29325
diff changeset
  8520
    vpxor(vec2, vec2);
16624
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  8521
  }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8522
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8523
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8524
#endif
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
  8525
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8526
void MacroAssembler::generate_fill(BasicType t, bool aligned,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8527
                                   Register to, Register value, Register count,
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8528
                                   Register rtmp, XMMRegister xtmp) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8529
  ShortBranchVerifier sbv(this);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8530
  assert_different_registers(to, value, count, rtmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8531
  Label L_exit, L_skip_align1, L_skip_align2, L_fill_byte;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8532
  Label L_fill_2_bytes, L_fill_4_bytes;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8533
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8534
  int shift = -1;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8535
  switch (t) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8536
    case T_BYTE:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8537
      shift = 2;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8538
      break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8539
    case T_SHORT:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8540
      shift = 1;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8541
      break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8542
    case T_INT:
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8543
      shift = 0;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8544
      break;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8545
    default: ShouldNotReachHere();
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8546
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8547
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8548
  if (t == T_BYTE) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8549
    andl(value, 0xff);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8550
    movl(rtmp, value);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8551
    shll(rtmp, 8);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8552
    orl(value, rtmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8553
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8554
  if (t == T_SHORT) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8555
    andl(value, 0xffff);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8556
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8557
  if (t == T_BYTE || t == T_SHORT) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8558
    movl(rtmp, value);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8559
    shll(rtmp, 16);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8560
    orl(value, rtmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8561
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8562
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8563
  cmpl(count, 2<<shift); // Short arrays (< 8 bytes) fill by element
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8564
  jcc(Assembler::below, L_fill_4_bytes); // use unsigned cmp
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8565
  if (!UseUnalignedLoadStores && !aligned && (t == T_BYTE || t == T_SHORT)) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8566
    // align source address at 4 bytes address boundary
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8567
    if (t == T_BYTE) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8568
      // One byte misalignment happens only for byte arrays
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8569
      testptr(to, 1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8570
      jccb(Assembler::zero, L_skip_align1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8571
      movb(Address(to, 0), value);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8572
      increment(to);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8573
      decrement(count);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8574
      BIND(L_skip_align1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8575
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8576
    // Two bytes misalignment happens only for byte and short (char) arrays
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8577
    testptr(to, 2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8578
    jccb(Assembler::zero, L_skip_align2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8579
    movw(Address(to, 0), value);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8580
    addptr(to, 2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8581
    subl(count, 1<<(shift-1));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8582
    BIND(L_skip_align2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8583
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8584
  if (UseSSE < 2) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8585
    Label L_fill_32_bytes_loop, L_check_fill_8_bytes, L_fill_8_bytes_loop, L_fill_8_bytes;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8586
    // Fill 32-byte chunks
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8587
    subl(count, 8 << shift);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8588
    jcc(Assembler::less, L_check_fill_8_bytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8589
    align(16);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8590
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8591
    BIND(L_fill_32_bytes_loop);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8592
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8593
    for (int i = 0; i < 32; i += 4) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8594
      movl(Address(to, i), value);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8595
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8596
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8597
    addptr(to, 32);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8598
    subl(count, 8 << shift);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8599
    jcc(Assembler::greaterEqual, L_fill_32_bytes_loop);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8600
    BIND(L_check_fill_8_bytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8601
    addl(count, 8 << shift);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8602
    jccb(Assembler::zero, L_exit);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8603
    jmpb(L_fill_8_bytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8604
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8605
    //
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8606
    // length is too short, just fill qwords
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8607
    //
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8608
    BIND(L_fill_8_bytes_loop);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8609
    movl(Address(to, 0), value);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8610
    movl(Address(to, 4), value);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8611
    addptr(to, 8);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8612
    BIND(L_fill_8_bytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8613
    subl(count, 1 << (shift + 1));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8614
    jcc(Assembler::greaterEqual, L_fill_8_bytes_loop);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8615
    // fall through to fill 4 bytes
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8616
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8617
    Label L_fill_32_bytes;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8618
    if (!UseUnalignedLoadStores) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8619
      // align to 8 bytes, we know we are 4 byte aligned to start
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8620
      testptr(to, 4);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8621
      jccb(Assembler::zero, L_fill_32_bytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8622
      movl(Address(to, 0), value);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8623
      addptr(to, 4);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8624
      subl(count, 1<<shift);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8625
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8626
    BIND(L_fill_32_bytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8627
    {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8628
      assert( UseSSE >= 2, "supported cpu only" );
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8629
      Label L_fill_32_bytes_loop, L_check_fill_8_bytes, L_fill_8_bytes_loop, L_fill_8_bytes;
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8630
      if (UseAVX > 2) {
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8631
        movl(rtmp, 0xffff);
32727
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  8632
        kmovwl(k1, rtmp);
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8633
      }
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8634
      movdl(xtmp, value);
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8635
      if (UseAVX > 2 && UseUnalignedLoadStores) {
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8636
        // Fill 64-byte chunks
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8637
        Label L_fill_64_bytes_loop, L_check_fill_32_bytes;
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8638
        evpbroadcastd(xtmp, xtmp, Assembler::AVX_512bit);
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8639
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8640
        subl(count, 16 << shift);
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8641
        jcc(Assembler::less, L_check_fill_32_bytes);
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8642
        align(16);
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8643
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8644
        BIND(L_fill_64_bytes_loop);
32727
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
  8645
        evmovdqul(Address(to, 0), xtmp, Assembler::AVX_512bit);
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8646
        addptr(to, 64);
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8647
        subl(count, 16 << shift);
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8648
        jcc(Assembler::greaterEqual, L_fill_64_bytes_loop);
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8649
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8650
        BIND(L_check_fill_32_bytes);
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8651
        addl(count, 8 << shift);
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8652
        jccb(Assembler::less, L_check_fill_8_bytes);
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  8653
        vmovdqu(Address(to, 0), xtmp);
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8654
        addptr(to, 32);
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8655
        subl(count, 8 << shift);
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8656
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8657
        BIND(L_check_fill_8_bytes);
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8658
      } else if (UseAVX == 2 && UseUnalignedLoadStores) {
15115
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8659
        // Fill 64-byte chunks
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8660
        Label L_fill_64_bytes_loop, L_check_fill_32_bytes;
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8661
        vpbroadcastd(xtmp, xtmp);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8662
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8663
        subl(count, 16 << shift);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8664
        jcc(Assembler::less, L_check_fill_32_bytes);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8665
        align(16);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8666
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8667
        BIND(L_fill_64_bytes_loop);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8668
        vmovdqu(Address(to, 0), xtmp);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8669
        vmovdqu(Address(to, 32), xtmp);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8670
        addptr(to, 64);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8671
        subl(count, 16 << shift);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8672
        jcc(Assembler::greaterEqual, L_fill_64_bytes_loop);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8673
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8674
        BIND(L_check_fill_32_bytes);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8675
        addl(count, 8 << shift);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8676
        jccb(Assembler::less, L_check_fill_8_bytes);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8677
        vmovdqu(Address(to, 0), xtmp);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8678
        addptr(to, 32);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8679
        subl(count, 8 << shift);
16624
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  8680
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  8681
        BIND(L_check_fill_8_bytes);
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  8682
        // clean upper bits of YMM registers
30299
1f6f7d1e0c1e 8078113: 8011102 changes may cause incorrect results
kvn
parents: 29325
diff changeset
  8683
        movdl(xtmp, value);
1f6f7d1e0c1e 8078113: 8011102 changes may cause incorrect results
kvn
parents: 29325
diff changeset
  8684
        pshufd(xtmp, xtmp, 0);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8685
      } else {
15115
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8686
        // Fill 32-byte chunks
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8687
        pshufd(xtmp, xtmp, 0);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8688
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8689
        subl(count, 8 << shift);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8690
        jcc(Assembler::less, L_check_fill_8_bytes);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8691
        align(16);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8692
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8693
        BIND(L_fill_32_bytes_loop);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8694
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8695
        if (UseUnalignedLoadStores) {
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8696
          movdqu(Address(to, 0), xtmp);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8697
          movdqu(Address(to, 16), xtmp);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8698
        } else {
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8699
          movq(Address(to, 0), xtmp);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8700
          movq(Address(to, 8), xtmp);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8701
          movq(Address(to, 16), xtmp);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8702
          movq(Address(to, 24), xtmp);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8703
        }
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8704
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8705
        addptr(to, 32);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8706
        subl(count, 8 << shift);
f8ef87f6f07f 8005544: Use 256bit YMM registers in arraycopy stubs on x86
kvn
parents: 15114
diff changeset
  8707
        jcc(Assembler::greaterEqual, L_fill_32_bytes_loop);
16624
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  8708
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  8709
        BIND(L_check_fill_8_bytes);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8710
      }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8711
      addl(count, 8 << shift);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8712
      jccb(Assembler::zero, L_exit);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8713
      jmpb(L_fill_8_bytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8714
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8715
      //
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8716
      // length is too short, just fill qwords
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8717
      //
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8718
      BIND(L_fill_8_bytes_loop);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8719
      movq(Address(to, 0), xtmp);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8720
      addptr(to, 8);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8721
      BIND(L_fill_8_bytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8722
      subl(count, 1 << (shift + 1));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8723
      jcc(Assembler::greaterEqual, L_fill_8_bytes_loop);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8724
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8725
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8726
  // fill trailing 4 bytes
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8727
  BIND(L_fill_4_bytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8728
  testl(count, 1<<shift);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8729
  jccb(Assembler::zero, L_fill_2_bytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8730
  movl(Address(to, 0), value);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8731
  if (t == T_BYTE || t == T_SHORT) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8732
    addptr(to, 4);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8733
    BIND(L_fill_2_bytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8734
    // fill trailing 2 bytes
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8735
    testl(count, 1<<(shift-1));
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8736
    jccb(Assembler::zero, L_fill_byte);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8737
    movw(Address(to, 0), value);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8738
    if (t == T_BYTE) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8739
      addptr(to, 2);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8740
      BIND(L_fill_byte);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8741
      // fill trailing byte
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8742
      testl(count, 1);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8743
      jccb(Assembler::zero, L_exit);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8744
      movb(Address(to, 0), value);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8745
    } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8746
      BIND(L_fill_byte);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8747
    }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8748
  } else {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8749
    BIND(L_fill_2_bytes);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8750
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8751
  BIND(L_exit);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
  8752
}
15242
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8753
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8754
// encode char[] to byte[] in ISO_8859_1
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8755
   //@HotSpotIntrinsicCandidate
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8756
   //private static int implEncodeISOArray(byte[] sa, int sp,
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8757
   //byte[] da, int dp, int len) {
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8758
   //  int i = 0;
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8759
   //  for (; i < len; i++) {
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8760
   //    char c = StringUTF16.getChar(sa, sp++);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8761
   //    if (c > '\u00FF')
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8762
   //      break;
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8763
   //    da[dp++] = (byte)c;
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8764
   //  }
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8765
   //  return i;
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8766
   //}
15242
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8767
void MacroAssembler::encode_iso_array(Register src, Register dst, Register len,
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8768
  XMMRegister tmp1Reg, XMMRegister tmp2Reg,
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8769
  XMMRegister tmp3Reg, XMMRegister tmp4Reg,
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8770
  Register tmp5, Register result) {
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8771
15242
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8772
  // rsi: src
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8773
  // rdi: dst
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8774
  // rdx: len
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8775
  // rcx: tmp5
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8776
  // rax: result
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8777
  ShortBranchVerifier sbv(this);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8778
  assert_different_registers(src, dst, len, tmp5, result);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8779
  Label L_done, L_copy_1_char, L_copy_1_char_exit;
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8780
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8781
  // set result
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8782
  xorl(result, result);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8783
  // check for zero length
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8784
  testl(len, len);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8785
  jcc(Assembler::zero, L_done);
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8786
15242
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8787
  movl(result, len);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8788
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8789
  // Setup pointers
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8790
  lea(src, Address(src, len, Address::times_2)); // char[]
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8791
  lea(dst, Address(dst, len, Address::times_1)); // byte[]
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8792
  negptr(len);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8793
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8794
  if (UseSSE42Intrinsics || UseAVX >= 2) {
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8795
    Label L_chars_8_check, L_copy_8_chars, L_copy_8_chars_exit;
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8796
    Label L_chars_16_check, L_copy_16_chars, L_copy_16_chars_exit;
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8797
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8798
    if (UseAVX >= 2) {
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8799
      Label L_chars_32_check, L_copy_32_chars, L_copy_32_chars_exit;
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8800
      movl(tmp5, 0xff00ff00);   // create mask to test for Unicode chars in vector
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8801
      movdl(tmp1Reg, tmp5);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8802
      vpbroadcastd(tmp1Reg, tmp1Reg);
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  8803
      jmp(L_chars_32_check);
15242
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8804
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8805
      bind(L_copy_32_chars);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8806
      vmovdqu(tmp3Reg, Address(src, len, Address::times_2, -64));
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8807
      vmovdqu(tmp4Reg, Address(src, len, Address::times_2, -32));
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8808
      vpor(tmp2Reg, tmp3Reg, tmp4Reg, /* vector_len */ 1);
15242
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8809
      vptest(tmp2Reg, tmp1Reg);       // check for Unicode chars in  vector
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8810
      jccb(Assembler::notZero, L_copy_32_chars_exit);
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8811
      vpackuswb(tmp3Reg, tmp3Reg, tmp4Reg, /* vector_len */ 1);
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8812
      vpermq(tmp4Reg, tmp3Reg, 0xD8, /* vector_len */ 1);
15242
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8813
      vmovdqu(Address(dst, len, Address::times_1, -32), tmp4Reg);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8814
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8815
      bind(L_chars_32_check);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8816
      addptr(len, 32);
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  8817
      jcc(Assembler::lessEqual, L_copy_32_chars);
15242
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8818
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8819
      bind(L_copy_32_chars_exit);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8820
      subptr(len, 16);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8821
      jccb(Assembler::greater, L_copy_16_chars_exit);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8822
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8823
    } else if (UseSSE42Intrinsics) {
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8824
      movl(tmp5, 0xff00ff00);   // create mask to test for Unicode chars in vector
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8825
      movdl(tmp1Reg, tmp5);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8826
      pshufd(tmp1Reg, tmp1Reg, 0);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8827
      jmpb(L_chars_16_check);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8828
    }
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8829
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8830
    bind(L_copy_16_chars);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8831
    if (UseAVX >= 2) {
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8832
      vmovdqu(tmp2Reg, Address(src, len, Address::times_2, -32));
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8833
      vptest(tmp2Reg, tmp1Reg);
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  8834
      jcc(Assembler::notZero, L_copy_16_chars_exit);
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8835
      vpackuswb(tmp2Reg, tmp2Reg, tmp1Reg, /* vector_len */ 1);
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8836
      vpermq(tmp3Reg, tmp2Reg, 0xD8, /* vector_len */ 1);
15242
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8837
    } else {
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8838
      if (UseAVX > 0) {
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8839
        movdqu(tmp3Reg, Address(src, len, Address::times_2, -32));
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8840
        movdqu(tmp4Reg, Address(src, len, Address::times_2, -16));
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
  8841
        vpor(tmp2Reg, tmp3Reg, tmp4Reg, /* vector_len */ 0);
15242
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8842
      } else {
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8843
        movdqu(tmp3Reg, Address(src, len, Address::times_2, -32));
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8844
        por(tmp2Reg, tmp3Reg);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8845
        movdqu(tmp4Reg, Address(src, len, Address::times_2, -16));
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8846
        por(tmp2Reg, tmp4Reg);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8847
      }
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8848
      ptest(tmp2Reg, tmp1Reg);       // check for Unicode chars in  vector
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8849
      jccb(Assembler::notZero, L_copy_16_chars_exit);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8850
      packuswb(tmp3Reg, tmp4Reg);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8851
    }
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8852
    movdqu(Address(dst, len, Address::times_1, -16), tmp3Reg);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8853
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8854
    bind(L_chars_16_check);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8855
    addptr(len, 16);
38134
7435f311b441 8154896: xml.transform fails intermittently on SKX
mcberg
parents: 38049
diff changeset
  8856
    jcc(Assembler::lessEqual, L_copy_16_chars);
15242
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8857
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8858
    bind(L_copy_16_chars_exit);
16624
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  8859
    if (UseAVX >= 2) {
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  8860
      // clean upper bits of YMM registers
30299
1f6f7d1e0c1e 8078113: 8011102 changes may cause incorrect results
kvn
parents: 29325
diff changeset
  8861
      vpxor(tmp2Reg, tmp2Reg);
1f6f7d1e0c1e 8078113: 8011102 changes may cause incorrect results
kvn
parents: 29325
diff changeset
  8862
      vpxor(tmp3Reg, tmp3Reg);
1f6f7d1e0c1e 8078113: 8011102 changes may cause incorrect results
kvn
parents: 29325
diff changeset
  8863
      vpxor(tmp4Reg, tmp4Reg);
1f6f7d1e0c1e 8078113: 8011102 changes may cause incorrect results
kvn
parents: 29325
diff changeset
  8864
      movdl(tmp1Reg, tmp5);
1f6f7d1e0c1e 8078113: 8011102 changes may cause incorrect results
kvn
parents: 29325
diff changeset
  8865
      pshufd(tmp1Reg, tmp1Reg, 0);
16624
9dbd4b210bf9 8011102: Clear AVX registers after return from JNI call
kvn
parents: 16368
diff changeset
  8866
    }
15242
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8867
    subptr(len, 8);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8868
    jccb(Assembler::greater, L_copy_8_chars_exit);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8869
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8870
    bind(L_copy_8_chars);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8871
    movdqu(tmp3Reg, Address(src, len, Address::times_2, -16));
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8872
    ptest(tmp3Reg, tmp1Reg);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8873
    jccb(Assembler::notZero, L_copy_8_chars_exit);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8874
    packuswb(tmp3Reg, tmp1Reg);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8875
    movq(Address(dst, len, Address::times_1, -8), tmp3Reg);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8876
    addptr(len, 8);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8877
    jccb(Assembler::lessEqual, L_copy_8_chars);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8878
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8879
    bind(L_copy_8_chars_exit);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8880
    subptr(len, 8);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8881
    jccb(Assembler::zero, L_done);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8882
  }
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8883
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8884
  bind(L_copy_1_char);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8885
  load_unsigned_short(tmp5, Address(src, len, Address::times_2, 0));
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8886
  testl(tmp5, 0xff00);      // check if Unicode char
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8887
  jccb(Assembler::notZero, L_copy_1_char_exit);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8888
  movb(Address(dst, len, Address::times_1, 0), tmp5);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8889
  addptr(len, 1);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8890
  jccb(Assembler::less, L_copy_1_char);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8891
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8892
  bind(L_copy_1_char_exit);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8893
  addptr(result, len); // len is negative count of not processed elements
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  8894
15242
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8895
  bind(L_done);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8896
}
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 15117
diff changeset
  8897
26434
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8898
#ifdef _LP64
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8899
/**
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8900
 * Helper for multiply_to_len().
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8901
 */
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8902
void MacroAssembler::add2_with_carry(Register dest_hi, Register dest_lo, Register src1, Register src2) {
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8903
  addq(dest_lo, src1);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8904
  adcq(dest_hi, 0);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8905
  addq(dest_lo, src2);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8906
  adcq(dest_hi, 0);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8907
}
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8908
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8909
/**
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8910
 * Multiply 64 bit by 64 bit first loop.
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8911
 */
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8912
void MacroAssembler::multiply_64_x_64_loop(Register x, Register xstart, Register x_xstart,
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8913
                                           Register y, Register y_idx, Register z,
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8914
                                           Register carry, Register product,
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8915
                                           Register idx, Register kdx) {
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8916
  //
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8917
  //  jlong carry, x[], y[], z[];
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8918
  //  for (int idx=ystart, kdx=ystart+1+xstart; idx >= 0; idx-, kdx--) {
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8919
  //    huge_128 product = y[idx] * x[xstart] + carry;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8920
  //    z[kdx] = (jlong)product;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8921
  //    carry  = (jlong)(product >>> 64);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8922
  //  }
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8923
  //  z[xstart] = carry;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8924
  //
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8925
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8926
  Label L_first_loop, L_first_loop_exit;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8927
  Label L_one_x, L_one_y, L_multiply;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8928
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8929
  decrementl(xstart);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8930
  jcc(Assembler::negative, L_one_x);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8931
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8932
  movq(x_xstart, Address(x, xstart, Address::times_4,  0));
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8933
  rorq(x_xstart, 32); // convert big-endian to little-endian
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8934
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8935
  bind(L_first_loop);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8936
  decrementl(idx);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8937
  jcc(Assembler::negative, L_first_loop_exit);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8938
  decrementl(idx);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8939
  jcc(Assembler::negative, L_one_y);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8940
  movq(y_idx, Address(y, idx, Address::times_4,  0));
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8941
  rorq(y_idx, 32); // convert big-endian to little-endian
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8942
  bind(L_multiply);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8943
  movq(product, x_xstart);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8944
  mulq(y_idx); // product(rax) * y_idx -> rdx:rax
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8945
  addq(product, carry);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8946
  adcq(rdx, 0);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8947
  subl(kdx, 2);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8948
  movl(Address(z, kdx, Address::times_4,  4), product);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8949
  shrq(product, 32);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8950
  movl(Address(z, kdx, Address::times_4,  0), product);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8951
  movq(carry, rdx);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8952
  jmp(L_first_loop);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8953
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8954
  bind(L_one_y);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8955
  movl(y_idx, Address(y,  0));
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8956
  jmp(L_multiply);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8957
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8958
  bind(L_one_x);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8959
  movl(x_xstart, Address(x,  0));
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8960
  jmp(L_first_loop);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8961
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8962
  bind(L_first_loop_exit);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8963
}
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8964
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8965
/**
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8966
 * Multiply 64 bit by 64 bit and add 128 bit.
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8967
 */
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8968
void MacroAssembler::multiply_add_128_x_128(Register x_xstart, Register y, Register z,
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8969
                                            Register yz_idx, Register idx,
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8970
                                            Register carry, Register product, int offset) {
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8971
  //     huge_128 product = (y[idx] * x_xstart) + z[kdx] + carry;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8972
  //     z[kdx] = (jlong)product;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8973
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8974
  movq(yz_idx, Address(y, idx, Address::times_4,  offset));
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8975
  rorq(yz_idx, 32); // convert big-endian to little-endian
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8976
  movq(product, x_xstart);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8977
  mulq(yz_idx);     // product(rax) * yz_idx -> rdx:product(rax)
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8978
  movq(yz_idx, Address(z, idx, Address::times_4,  offset));
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8979
  rorq(yz_idx, 32); // convert big-endian to little-endian
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8980
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8981
  add2_with_carry(rdx, product, carry, yz_idx);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8982
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8983
  movl(Address(z, idx, Address::times_4,  offset+4), product);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8984
  shrq(product, 32);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8985
  movl(Address(z, idx, Address::times_4,  offset), product);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8986
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8987
}
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8988
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8989
/**
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8990
 * Multiply 128 bit by 128 bit. Unrolled inner loop.
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8991
 */
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8992
void MacroAssembler::multiply_128_x_128_loop(Register x_xstart, Register y, Register z,
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8993
                                             Register yz_idx, Register idx, Register jdx,
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8994
                                             Register carry, Register product,
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8995
                                             Register carry2) {
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8996
  //   jlong carry, x[], y[], z[];
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8997
  //   int kdx = ystart+1;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8998
  //   for (int idx=ystart-2; idx >= 0; idx -= 2) { // Third loop
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  8999
  //     huge_128 product = (y[idx+1] * x_xstart) + z[kdx+idx+1] + carry;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9000
  //     z[kdx+idx+1] = (jlong)product;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9001
  //     jlong carry2  = (jlong)(product >>> 64);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9002
  //     product = (y[idx] * x_xstart) + z[kdx+idx] + carry2;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9003
  //     z[kdx+idx] = (jlong)product;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9004
  //     carry  = (jlong)(product >>> 64);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9005
  //   }
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9006
  //   idx += 2;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9007
  //   if (idx > 0) {
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9008
  //     product = (y[idx] * x_xstart) + z[kdx+idx] + carry;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9009
  //     z[kdx+idx] = (jlong)product;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9010
  //     carry  = (jlong)(product >>> 64);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9011
  //   }
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9012
  //
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9013
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9014
  Label L_third_loop, L_third_loop_exit, L_post_third_loop_done;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9015
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9016
  movl(jdx, idx);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9017
  andl(jdx, 0xFFFFFFFC);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9018
  shrl(jdx, 2);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9019
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9020
  bind(L_third_loop);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9021
  subl(jdx, 1);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9022
  jcc(Assembler::negative, L_third_loop_exit);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9023
  subl(idx, 4);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9024
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9025
  multiply_add_128_x_128(x_xstart, y, z, yz_idx, idx, carry, product, 8);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9026
  movq(carry2, rdx);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9027
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9028
  multiply_add_128_x_128(x_xstart, y, z, yz_idx, idx, carry2, product, 0);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9029
  movq(carry, rdx);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9030
  jmp(L_third_loop);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9031
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9032
  bind (L_third_loop_exit);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9033
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9034
  andl (idx, 0x3);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9035
  jcc(Assembler::zero, L_post_third_loop_done);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9036
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9037
  Label L_check_1;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9038
  subl(idx, 2);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9039
  jcc(Assembler::negative, L_check_1);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9040
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9041
  multiply_add_128_x_128(x_xstart, y, z, yz_idx, idx, carry, product, 0);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9042
  movq(carry, rdx);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9043
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9044
  bind (L_check_1);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9045
  addl (idx, 0x2);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9046
  andl (idx, 0x1);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9047
  subl(idx, 1);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9048
  jcc(Assembler::negative, L_post_third_loop_done);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9049
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9050
  movl(yz_idx, Address(y, idx, Address::times_4,  0));
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9051
  movq(product, x_xstart);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9052
  mulq(yz_idx); // product(rax) * yz_idx -> rdx:product(rax)
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9053
  movl(yz_idx, Address(z, idx, Address::times_4,  0));
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9054
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9055
  add2_with_carry(rdx, product, yz_idx, carry);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9056
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9057
  movl(Address(z, idx, Address::times_4,  0), product);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9058
  shrq(product, 32);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9059
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9060
  shlq(rdx, 32);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9061
  orq(product, rdx);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9062
  movq(carry, product);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9063
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9064
  bind(L_post_third_loop_done);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9065
}
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9066
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9067
/**
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9068
 * Multiply 128 bit by 128 bit using BMI2. Unrolled inner loop.
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9069
 *
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9070
 */
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9071
void MacroAssembler::multiply_128_x_128_bmi2_loop(Register y, Register z,
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9072
                                                  Register carry, Register carry2,
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9073
                                                  Register idx, Register jdx,
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9074
                                                  Register yz_idx1, Register yz_idx2,
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9075
                                                  Register tmp, Register tmp3, Register tmp4) {
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9076
  assert(UseBMI2Instructions, "should be used only when BMI2 is available");
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9077
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9078
  //   jlong carry, x[], y[], z[];
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9079
  //   int kdx = ystart+1;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9080
  //   for (int idx=ystart-2; idx >= 0; idx -= 2) { // Third loop
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9081
  //     huge_128 tmp3 = (y[idx+1] * rdx) + z[kdx+idx+1] + carry;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9082
  //     jlong carry2  = (jlong)(tmp3 >>> 64);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9083
  //     huge_128 tmp4 = (y[idx]   * rdx) + z[kdx+idx] + carry2;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9084
  //     carry  = (jlong)(tmp4 >>> 64);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9085
  //     z[kdx+idx+1] = (jlong)tmp3;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9086
  //     z[kdx+idx] = (jlong)tmp4;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9087
  //   }
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9088
  //   idx += 2;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9089
  //   if (idx > 0) {
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9090
  //     yz_idx1 = (y[idx] * rdx) + z[kdx+idx] + carry;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9091
  //     z[kdx+idx] = (jlong)yz_idx1;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9092
  //     carry  = (jlong)(yz_idx1 >>> 64);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9093
  //   }
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9094
  //
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9095
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9096
  Label L_third_loop, L_third_loop_exit, L_post_third_loop_done;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9097
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9098
  movl(jdx, idx);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9099
  andl(jdx, 0xFFFFFFFC);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9100
  shrl(jdx, 2);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9101
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9102
  bind(L_third_loop);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9103
  subl(jdx, 1);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9104
  jcc(Assembler::negative, L_third_loop_exit);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9105
  subl(idx, 4);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9106
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9107
  movq(yz_idx1,  Address(y, idx, Address::times_4,  8));
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9108
  rorxq(yz_idx1, yz_idx1, 32); // convert big-endian to little-endian
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9109
  movq(yz_idx2, Address(y, idx, Address::times_4,  0));
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9110
  rorxq(yz_idx2, yz_idx2, 32);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9111
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9112
  mulxq(tmp4, tmp3, yz_idx1);  //  yz_idx1 * rdx -> tmp4:tmp3
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9113
  mulxq(carry2, tmp, yz_idx2); //  yz_idx2 * rdx -> carry2:tmp
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9114
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9115
  movq(yz_idx1,  Address(z, idx, Address::times_4,  8));
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9116
  rorxq(yz_idx1, yz_idx1, 32);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9117
  movq(yz_idx2, Address(z, idx, Address::times_4,  0));
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9118
  rorxq(yz_idx2, yz_idx2, 32);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9119
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9120
  if (VM_Version::supports_adx()) {
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9121
    adcxq(tmp3, carry);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9122
    adoxq(tmp3, yz_idx1);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9123
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9124
    adcxq(tmp4, tmp);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9125
    adoxq(tmp4, yz_idx2);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9126
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9127
    movl(carry, 0); // does not affect flags
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9128
    adcxq(carry2, carry);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9129
    adoxq(carry2, carry);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9130
  } else {
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9131
    add2_with_carry(tmp4, tmp3, carry, yz_idx1);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9132
    add2_with_carry(carry2, tmp4, tmp, yz_idx2);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9133
  }
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9134
  movq(carry, carry2);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9135
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9136
  movl(Address(z, idx, Address::times_4, 12), tmp3);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9137
  shrq(tmp3, 32);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9138
  movl(Address(z, idx, Address::times_4,  8), tmp3);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9139
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9140
  movl(Address(z, idx, Address::times_4,  4), tmp4);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9141
  shrq(tmp4, 32);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9142
  movl(Address(z, idx, Address::times_4,  0), tmp4);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9143
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9144
  jmp(L_third_loop);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9145
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9146
  bind (L_third_loop_exit);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9147
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9148
  andl (idx, 0x3);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9149
  jcc(Assembler::zero, L_post_third_loop_done);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9150
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9151
  Label L_check_1;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9152
  subl(idx, 2);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9153
  jcc(Assembler::negative, L_check_1);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9154
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9155
  movq(yz_idx1, Address(y, idx, Address::times_4,  0));
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9156
  rorxq(yz_idx1, yz_idx1, 32);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9157
  mulxq(tmp4, tmp3, yz_idx1); //  yz_idx1 * rdx -> tmp4:tmp3
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9158
  movq(yz_idx2, Address(z, idx, Address::times_4,  0));
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9159
  rorxq(yz_idx2, yz_idx2, 32);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9160
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9161
  add2_with_carry(tmp4, tmp3, carry, yz_idx2);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9162
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9163
  movl(Address(z, idx, Address::times_4,  4), tmp3);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9164
  shrq(tmp3, 32);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9165
  movl(Address(z, idx, Address::times_4,  0), tmp3);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9166
  movq(carry, tmp4);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9167
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9168
  bind (L_check_1);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9169
  addl (idx, 0x2);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9170
  andl (idx, 0x1);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9171
  subl(idx, 1);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9172
  jcc(Assembler::negative, L_post_third_loop_done);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9173
  movl(tmp4, Address(y, idx, Address::times_4,  0));
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9174
  mulxq(carry2, tmp3, tmp4);  //  tmp4 * rdx -> carry2:tmp3
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9175
  movl(tmp4, Address(z, idx, Address::times_4,  0));
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9176
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9177
  add2_with_carry(carry2, tmp3, tmp4, carry);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9178
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9179
  movl(Address(z, idx, Address::times_4,  0), tmp3);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9180
  shrq(tmp3, 32);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9181
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9182
  shlq(carry2, 32);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9183
  orq(tmp3, carry2);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9184
  movq(carry, tmp3);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9185
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9186
  bind(L_post_third_loop_done);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9187
}
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9188
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9189
/**
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9190
 * Code for BigInteger::multiplyToLen() instrinsic.
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9191
 *
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9192
 * rdi: x
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9193
 * rax: xlen
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9194
 * rsi: y
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9195
 * rcx: ylen
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9196
 * r8:  z
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9197
 * r11: zlen
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9198
 * r12: tmp1
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9199
 * r13: tmp2
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9200
 * r14: tmp3
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9201
 * r15: tmp4
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9202
 * rbx: tmp5
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9203
 *
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9204
 */
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9205
void MacroAssembler::multiply_to_len(Register x, Register xlen, Register y, Register ylen, Register z, Register zlen,
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9206
                                     Register tmp1, Register tmp2, Register tmp3, Register tmp4, Register tmp5) {
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9207
  ShortBranchVerifier sbv(this);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9208
  assert_different_registers(x, xlen, y, ylen, z, zlen, tmp1, tmp2, tmp3, tmp4, tmp5, rdx);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9209
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9210
  push(tmp1);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9211
  push(tmp2);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9212
  push(tmp3);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9213
  push(tmp4);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9214
  push(tmp5);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9215
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9216
  push(xlen);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9217
  push(zlen);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9218
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9219
  const Register idx = tmp1;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9220
  const Register kdx = tmp2;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9221
  const Register xstart = tmp3;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9222
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9223
  const Register y_idx = tmp4;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9224
  const Register carry = tmp5;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9225
  const Register product  = xlen;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9226
  const Register x_xstart = zlen;  // reuse register
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9227
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9228
  // First Loop.
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9229
  //
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9230
  //  final static long LONG_MASK = 0xffffffffL;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9231
  //  int xstart = xlen - 1;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9232
  //  int ystart = ylen - 1;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9233
  //  long carry = 0;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9234
  //  for (int idx=ystart, kdx=ystart+1+xstart; idx >= 0; idx-, kdx--) {
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9235
  //    long product = (y[idx] & LONG_MASK) * (x[xstart] & LONG_MASK) + carry;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9236
  //    z[kdx] = (int)product;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9237
  //    carry = product >>> 32;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9238
  //  }
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9239
  //  z[xstart] = (int)carry;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9240
  //
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9241
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9242
  movl(idx, ylen);      // idx = ylen;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9243
  movl(kdx, zlen);      // kdx = xlen+ylen;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9244
  xorq(carry, carry);   // carry = 0;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9245
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9246
  Label L_done;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9247
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9248
  movl(xstart, xlen);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9249
  decrementl(xstart);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9250
  jcc(Assembler::negative, L_done);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9251
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9252
  multiply_64_x_64_loop(x, xstart, x_xstart, y, y_idx, z, carry, product, idx, kdx);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9253
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9254
  Label L_second_loop;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9255
  testl(kdx, kdx);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9256
  jcc(Assembler::zero, L_second_loop);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9257
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9258
  Label L_carry;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9259
  subl(kdx, 1);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9260
  jcc(Assembler::zero, L_carry);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9261
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9262
  movl(Address(z, kdx, Address::times_4,  0), carry);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9263
  shrq(carry, 32);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9264
  subl(kdx, 1);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9265
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9266
  bind(L_carry);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9267
  movl(Address(z, kdx, Address::times_4,  0), carry);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9268
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9269
  // Second and third (nested) loops.
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9270
  //
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9271
  // for (int i = xstart-1; i >= 0; i--) { // Second loop
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9272
  //   carry = 0;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9273
  //   for (int jdx=ystart, k=ystart+1+i; jdx >= 0; jdx--, k--) { // Third loop
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9274
  //     long product = (y[jdx] & LONG_MASK) * (x[i] & LONG_MASK) +
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9275
  //                    (z[k] & LONG_MASK) + carry;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9276
  //     z[k] = (int)product;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9277
  //     carry = product >>> 32;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9278
  //   }
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9279
  //   z[i] = (int)carry;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9280
  // }
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9281
  //
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9282
  // i = xlen, j = tmp1, k = tmp2, carry = tmp5, x[i] = rdx
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9283
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9284
  const Register jdx = tmp1;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9285
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9286
  bind(L_second_loop);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9287
  xorl(carry, carry);    // carry = 0;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9288
  movl(jdx, ylen);       // j = ystart+1
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9289
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9290
  subl(xstart, 1);       // i = xstart-1;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9291
  jcc(Assembler::negative, L_done);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9292
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9293
  push (z);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9294
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9295
  Label L_last_x;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9296
  lea(z, Address(z, xstart, Address::times_4, 4)); // z = z + k - j
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9297
  subl(xstart, 1);       // i = xstart-1;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9298
  jcc(Assembler::negative, L_last_x);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9299
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9300
  if (UseBMI2Instructions) {
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9301
    movq(rdx,  Address(x, xstart, Address::times_4,  0));
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9302
    rorxq(rdx, rdx, 32); // convert big-endian to little-endian
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9303
  } else {
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9304
    movq(x_xstart, Address(x, xstart, Address::times_4,  0));
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9305
    rorq(x_xstart, 32);  // convert big-endian to little-endian
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9306
  }
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9307
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9308
  Label L_third_loop_prologue;
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9309
  bind(L_third_loop_prologue);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9310
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9311
  push (x);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9312
  push (xstart);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9313
  push (ylen);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9314
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9315
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9316
  if (UseBMI2Instructions) {
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9317
    multiply_128_x_128_bmi2_loop(y, z, carry, x, jdx, ylen, product, tmp2, x_xstart, tmp3, tmp4);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9318
  } else { // !UseBMI2Instructions
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9319
    multiply_128_x_128_loop(x_xstart, y, z, y_idx, jdx, ylen, carry, product, x);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9320
  }
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9321
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9322
  pop(ylen);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9323
  pop(xlen);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9324
  pop(x);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9325
  pop(z);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9326
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9327
  movl(tmp3, xlen);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9328
  addl(tmp3, 1);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9329
  movl(Address(z, tmp3, Address::times_4,  0), carry);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9330
  subl(tmp3, 1);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9331
  jccb(Assembler::negative, L_done);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9332
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9333
  shrq(carry, 32);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9334
  movl(Address(z, tmp3, Address::times_4,  0), carry);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9335
  jmp(L_second_loop);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9336
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9337
  // Next infrequent code is moved outside loops.
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9338
  bind(L_last_x);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9339
  if (UseBMI2Instructions) {
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9340
    movl(rdx, Address(x,  0));
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9341
  } else {
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9342
    movl(x_xstart, Address(x,  0));
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9343
  }
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9344
  jmp(L_third_loop_prologue);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9345
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9346
  bind(L_done);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9347
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9348
  pop(zlen);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9349
  pop(xlen);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9350
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9351
  pop(tmp5);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9352
  pop(tmp4);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9353
  pop(tmp3);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9354
  pop(tmp2);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9355
  pop(tmp1);
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
  9356
}
31129
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9357
35110
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9358
void MacroAssembler::vectorized_mismatch(Register obja, Register objb, Register length, Register log2_array_indxscale,
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9359
  Register result, Register tmp1, Register tmp2, XMMRegister rymm0, XMMRegister rymm1, XMMRegister rymm2){
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9360
  assert(UseSSE42Intrinsics, "SSE4.2 must be enabled.");
38138
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9361
  Label VECTOR64_LOOP, VECTOR64_TAIL, VECTOR64_NOT_EQUAL, VECTOR32_TAIL;
35110
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9362
  Label VECTOR32_LOOP, VECTOR16_LOOP, VECTOR8_LOOP, VECTOR4_LOOP;
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9363
  Label VECTOR16_TAIL, VECTOR8_TAIL, VECTOR4_TAIL;
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9364
  Label VECTOR32_NOT_EQUAL, VECTOR16_NOT_EQUAL, VECTOR8_NOT_EQUAL, VECTOR4_NOT_EQUAL;
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9365
  Label SAME_TILL_END, DONE;
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9366
  Label BYTES_LOOP, BYTES_TAIL, BYTES_NOT_EQUAL;
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9367
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9368
  //scale is in rcx in both Win64 and Unix
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9369
  ShortBranchVerifier sbv(this);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9370
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9371
  shlq(length);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9372
  xorq(result, result);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9373
38138
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9374
  if ((UseAVX > 2) &&
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9375
      VM_Version::supports_avx512vlbw()) {
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9376
    set_vector_masking();  // opening of the stub context for programming mask registers
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9377
    cmpq(length, 64);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9378
    jcc(Assembler::less, VECTOR32_TAIL);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9379
    movq(tmp1, length);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9380
    andq(tmp1, 0x3F);      // tail count
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9381
    andq(length, ~(0x3F)); //vector count
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9382
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9383
    bind(VECTOR64_LOOP);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9384
    // AVX512 code to compare 64 byte vectors.
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9385
    evmovdqub(rymm0, Address(obja, result), Assembler::AVX_512bit);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9386
    evpcmpeqb(k7, rymm0, Address(objb, result), Assembler::AVX_512bit);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9387
    kortestql(k7, k7);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9388
    jcc(Assembler::aboveEqual, VECTOR64_NOT_EQUAL);     // mismatch
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9389
    addq(result, 64);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9390
    subq(length, 64);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9391
    jccb(Assembler::notZero, VECTOR64_LOOP);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9392
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9393
    //bind(VECTOR64_TAIL);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9394
    testq(tmp1, tmp1);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9395
    jcc(Assembler::zero, SAME_TILL_END);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9396
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9397
    bind(VECTOR64_TAIL);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9398
    // AVX512 code to compare upto 63 byte vectors.
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9399
    // Save k1
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9400
    kmovql(k3, k1);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9401
    mov64(tmp2, 0xFFFFFFFFFFFFFFFF);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9402
    shlxq(tmp2, tmp2, tmp1);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9403
    notq(tmp2);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9404
    kmovql(k1, tmp2);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9405
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  9406
    evmovdqub(rymm0, k1, Address(obja, result), Assembler::AVX_512bit);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
  9407
    evpcmpeqb(k7, k1, rymm0, Address(objb, result), Assembler::AVX_512bit);
38138
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9408
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9409
    ktestql(k7, k1);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9410
    // Restore k1
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9411
    kmovql(k1, k3);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9412
    jcc(Assembler::below, SAME_TILL_END);     // not mismatch
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9413
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9414
    bind(VECTOR64_NOT_EQUAL);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9415
    kmovql(tmp1, k7);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9416
    notq(tmp1);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9417
    tzcntq(tmp1, tmp1);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9418
    addq(result, tmp1);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9419
    shrq(result);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9420
    jmp(DONE);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9421
    bind(VECTOR32_TAIL);
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9422
    clear_vector_masking();   // closing of the stub context for programming mask registers
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9423
  }
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9424
35110
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9425
  cmpq(length, 8);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9426
  jcc(Assembler::equal, VECTOR8_LOOP);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9427
  jcc(Assembler::less, VECTOR4_TAIL);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9428
38138
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9429
  if (UseAVX >= 2) {
35110
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9430
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9431
    cmpq(length, 16);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9432
    jcc(Assembler::equal, VECTOR16_LOOP);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9433
    jcc(Assembler::less, VECTOR8_LOOP);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9434
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9435
    cmpq(length, 32);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9436
    jccb(Assembler::less, VECTOR16_TAIL);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9437
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9438
    subq(length, 32);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9439
    bind(VECTOR32_LOOP);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9440
    vmovdqu(rymm0, Address(obja, result));
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9441
    vmovdqu(rymm1, Address(objb, result));
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9442
    vpxor(rymm2, rymm0, rymm1, Assembler::AVX_256bit);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9443
    vptest(rymm2, rymm2);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9444
    jcc(Assembler::notZero, VECTOR32_NOT_EQUAL);//mismatch found
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9445
    addq(result, 32);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9446
    subq(length, 32);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9447
    jccb(Assembler::greaterEqual, VECTOR32_LOOP);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9448
    addq(length, 32);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9449
    jcc(Assembler::equal, SAME_TILL_END);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9450
    //falling through if less than 32 bytes left //close the branch here.
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9451
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9452
    bind(VECTOR16_TAIL);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9453
    cmpq(length, 16);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9454
    jccb(Assembler::less, VECTOR8_TAIL);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9455
    bind(VECTOR16_LOOP);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9456
    movdqu(rymm0, Address(obja, result));
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9457
    movdqu(rymm1, Address(objb, result));
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9458
    vpxor(rymm2, rymm0, rymm1, Assembler::AVX_128bit);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9459
    ptest(rymm2, rymm2);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9460
    jcc(Assembler::notZero, VECTOR16_NOT_EQUAL);//mismatch found
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9461
    addq(result, 16);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9462
    subq(length, 16);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9463
    jcc(Assembler::equal, SAME_TILL_END);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9464
    //falling through if less than 16 bytes left
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9465
  } else {//regular intrinsics
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9466
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9467
    cmpq(length, 16);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9468
    jccb(Assembler::less, VECTOR8_TAIL);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9469
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9470
    subq(length, 16);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9471
    bind(VECTOR16_LOOP);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9472
    movdqu(rymm0, Address(obja, result));
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9473
    movdqu(rymm1, Address(objb, result));
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9474
    pxor(rymm0, rymm1);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9475
    ptest(rymm0, rymm0);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9476
    jcc(Assembler::notZero, VECTOR16_NOT_EQUAL);//mismatch found
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9477
    addq(result, 16);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9478
    subq(length, 16);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9479
    jccb(Assembler::greaterEqual, VECTOR16_LOOP);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9480
    addq(length, 16);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9481
    jcc(Assembler::equal, SAME_TILL_END);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9482
    //falling through if less than 16 bytes left
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9483
  }
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9484
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9485
  bind(VECTOR8_TAIL);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9486
  cmpq(length, 8);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9487
  jccb(Assembler::less, VECTOR4_TAIL);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9488
  bind(VECTOR8_LOOP);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9489
  movq(tmp1, Address(obja, result));
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9490
  movq(tmp2, Address(objb, result));
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9491
  xorq(tmp1, tmp2);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9492
  testq(tmp1, tmp1);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9493
  jcc(Assembler::notZero, VECTOR8_NOT_EQUAL);//mismatch found
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9494
  addq(result, 8);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9495
  subq(length, 8);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9496
  jcc(Assembler::equal, SAME_TILL_END);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9497
  //falling through if less than 8 bytes left
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9498
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9499
  bind(VECTOR4_TAIL);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9500
  cmpq(length, 4);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9501
  jccb(Assembler::less, BYTES_TAIL);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9502
  bind(VECTOR4_LOOP);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9503
  movl(tmp1, Address(obja, result));
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9504
  xorl(tmp1, Address(objb, result));
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9505
  testl(tmp1, tmp1);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9506
  jcc(Assembler::notZero, VECTOR4_NOT_EQUAL);//mismatch found
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9507
  addq(result, 4);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9508
  subq(length, 4);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9509
  jcc(Assembler::equal, SAME_TILL_END);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9510
  //falling through if less than 4 bytes left
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9511
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9512
  bind(BYTES_TAIL);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9513
  bind(BYTES_LOOP);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9514
  load_unsigned_byte(tmp1, Address(obja, result));
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9515
  load_unsigned_byte(tmp2, Address(objb, result));
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9516
  xorl(tmp1, tmp2);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9517
  testl(tmp1, tmp1);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9518
  jccb(Assembler::notZero, BYTES_NOT_EQUAL);//mismatch found
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9519
  decq(length);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9520
  jccb(Assembler::zero, SAME_TILL_END);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9521
  incq(result);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9522
  load_unsigned_byte(tmp1, Address(obja, result));
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9523
  load_unsigned_byte(tmp2, Address(objb, result));
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9524
  xorl(tmp1, tmp2);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9525
  testl(tmp1, tmp1);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9526
  jccb(Assembler::notZero, BYTES_NOT_EQUAL);//mismatch found
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9527
  decq(length);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9528
  jccb(Assembler::zero, SAME_TILL_END);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9529
  incq(result);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9530
  load_unsigned_byte(tmp1, Address(obja, result));
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9531
  load_unsigned_byte(tmp2, Address(objb, result));
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9532
  xorl(tmp1, tmp2);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9533
  testl(tmp1, tmp1);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9534
  jccb(Assembler::notZero, BYTES_NOT_EQUAL);//mismatch found
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9535
  jmpb(SAME_TILL_END);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9536
38138
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9537
  if (UseAVX >= 2) {
35110
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9538
    bind(VECTOR32_NOT_EQUAL);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9539
    vpcmpeqb(rymm2, rymm2, rymm2, Assembler::AVX_256bit);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9540
    vpcmpeqb(rymm0, rymm0, rymm1, Assembler::AVX_256bit);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9541
    vpxor(rymm0, rymm0, rymm2, Assembler::AVX_256bit);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9542
    vpmovmskb(tmp1, rymm0);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9543
    bsfq(tmp1, tmp1);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9544
    addq(result, tmp1);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9545
    shrq(result);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9546
    jmpb(DONE);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9547
  }
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9548
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9549
  bind(VECTOR16_NOT_EQUAL);
38138
8514e24123c8 8154975: Update for vectorizedMismatch with AVX512
vdeshpande
parents: 38134
diff changeset
  9550
  if (UseAVX >= 2) {
35110
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9551
    vpcmpeqb(rymm2, rymm2, rymm2, Assembler::AVX_128bit);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9552
    vpcmpeqb(rymm0, rymm0, rymm1, Assembler::AVX_128bit);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9553
    pxor(rymm0, rymm2);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9554
  } else {
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9555
    pcmpeqb(rymm2, rymm2);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9556
    pxor(rymm0, rymm1);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9557
    pcmpeqb(rymm0, rymm1);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9558
    pxor(rymm0, rymm2);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9559
  }
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9560
  pmovmskb(tmp1, rymm0);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9561
  bsfq(tmp1, tmp1);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9562
  addq(result, tmp1);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9563
  shrq(result);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9564
  jmpb(DONE);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9565
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9566
  bind(VECTOR8_NOT_EQUAL);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9567
  bind(VECTOR4_NOT_EQUAL);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9568
  bsfq(tmp1, tmp1);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9569
  shrq(tmp1, 3);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9570
  addq(result, tmp1);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9571
  bind(BYTES_NOT_EQUAL);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9572
  shrq(result);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9573
  jmpb(DONE);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9574
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9575
  bind(SAME_TILL_END);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9576
  mov64(result, -1);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9577
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9578
  bind(DONE);
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9579
}
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 35086
diff changeset
  9580
31129
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9581
//Helper functions for square_to_len()
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9582
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9583
/**
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9584
 * Store the squares of x[], right shifted one bit (divided by 2) into z[]
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9585
 * Preserves x and z and modifies rest of the registers.
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9586
 */
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9587
void MacroAssembler::square_rshift(Register x, Register xlen, Register z, Register tmp1, Register tmp3, Register tmp4, Register tmp5, Register rdxReg, Register raxReg) {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9588
  // Perform square and right shift by 1
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9589
  // Handle odd xlen case first, then for even xlen do the following
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9590
  // jlong carry = 0;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9591
  // for (int j=0, i=0; j < xlen; j+=2, i+=4) {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9592
  //     huge_128 product = x[j:j+1] * x[j:j+1];
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9593
  //     z[i:i+1] = (carry << 63) | (jlong)(product >>> 65);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9594
  //     z[i+2:i+3] = (jlong)(product >>> 1);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9595
  //     carry = (jlong)product;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9596
  // }
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9597
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9598
  xorq(tmp5, tmp5);     // carry
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9599
  xorq(rdxReg, rdxReg);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9600
  xorl(tmp1, tmp1);     // index for x
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9601
  xorl(tmp4, tmp4);     // index for z
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9602
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9603
  Label L_first_loop, L_first_loop_exit;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9604
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9605
  testl(xlen, 1);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9606
  jccb(Assembler::zero, L_first_loop); //jump if xlen is even
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9607
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9608
  // Square and right shift by 1 the odd element using 32 bit multiply
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9609
  movl(raxReg, Address(x, tmp1, Address::times_4, 0));
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9610
  imulq(raxReg, raxReg);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9611
  shrq(raxReg, 1);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9612
  adcq(tmp5, 0);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9613
  movq(Address(z, tmp4, Address::times_4, 0), raxReg);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9614
  incrementl(tmp1);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9615
  addl(tmp4, 2);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9616
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9617
  // Square and  right shift by 1 the rest using 64 bit multiply
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9618
  bind(L_first_loop);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9619
  cmpptr(tmp1, xlen);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9620
  jccb(Assembler::equal, L_first_loop_exit);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9621
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9622
  // Square
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9623
  movq(raxReg, Address(x, tmp1, Address::times_4,  0));
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9624
  rorq(raxReg, 32);    // convert big-endian to little-endian
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9625
  mulq(raxReg);        // 64-bit multiply rax * rax -> rdx:rax
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9626
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9627
  // Right shift by 1 and save carry
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9628
  shrq(tmp5, 1);       // rdx:rax:tmp5 = (tmp5:rdx:rax) >>> 1
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9629
  rcrq(rdxReg, 1);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9630
  rcrq(raxReg, 1);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9631
  adcq(tmp5, 0);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9632
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9633
  // Store result in z
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9634
  movq(Address(z, tmp4, Address::times_4, 0), rdxReg);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9635
  movq(Address(z, tmp4, Address::times_4, 8), raxReg);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9636
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9637
  // Update indices for x and z
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9638
  addl(tmp1, 2);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9639
  addl(tmp4, 4);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9640
  jmp(L_first_loop);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9641
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9642
  bind(L_first_loop_exit);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9643
}
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9644
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9645
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9646
/**
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9647
 * Perform the following multiply add operation using BMI2 instructions
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9648
 * carry:sum = sum + op1*op2 + carry
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9649
 * op2 should be in rdx
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9650
 * op2 is preserved, all other registers are modified
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9651
 */
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9652
void MacroAssembler::multiply_add_64_bmi2(Register sum, Register op1, Register op2, Register carry, Register tmp2) {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9653
  // assert op2 is rdx
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9654
  mulxq(tmp2, op1, op1);  //  op1 * op2 -> tmp2:op1
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9655
  addq(sum, carry);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9656
  adcq(tmp2, 0);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9657
  addq(sum, op1);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9658
  adcq(tmp2, 0);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9659
  movq(carry, tmp2);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9660
}
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9661
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9662
/**
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9663
 * Perform the following multiply add operation:
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9664
 * carry:sum = sum + op1*op2 + carry
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9665
 * Preserves op1, op2 and modifies rest of registers
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9666
 */
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9667
void MacroAssembler::multiply_add_64(Register sum, Register op1, Register op2, Register carry, Register rdxReg, Register raxReg) {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9668
  // rdx:rax = op1 * op2
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9669
  movq(raxReg, op2);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9670
  mulq(op1);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9671
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9672
  //  rdx:rax = sum + carry + rdx:rax
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9673
  addq(sum, carry);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9674
  adcq(rdxReg, 0);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9675
  addq(sum, raxReg);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9676
  adcq(rdxReg, 0);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9677
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9678
  // carry:sum = rdx:sum
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9679
  movq(carry, rdxReg);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9680
}
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9681
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9682
/**
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9683
 * Add 64 bit long carry into z[] with carry propogation.
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9684
 * Preserves z and carry register values and modifies rest of registers.
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9685
 *
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9686
 */
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9687
void MacroAssembler::add_one_64(Register z, Register zlen, Register carry, Register tmp1) {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9688
  Label L_fourth_loop, L_fourth_loop_exit;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9689
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9690
  movl(tmp1, 1);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9691
  subl(zlen, 2);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9692
  addq(Address(z, zlen, Address::times_4, 0), carry);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9693
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9694
  bind(L_fourth_loop);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9695
  jccb(Assembler::carryClear, L_fourth_loop_exit);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9696
  subl(zlen, 2);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9697
  jccb(Assembler::negative, L_fourth_loop_exit);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9698
  addq(Address(z, zlen, Address::times_4, 0), tmp1);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9699
  jmp(L_fourth_loop);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9700
  bind(L_fourth_loop_exit);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9701
}
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9702
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9703
/**
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9704
 * Shift z[] left by 1 bit.
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9705
 * Preserves x, len, z and zlen registers and modifies rest of the registers.
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9706
 *
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9707
 */
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9708
void MacroAssembler::lshift_by_1(Register x, Register len, Register z, Register zlen, Register tmp1, Register tmp2, Register tmp3, Register tmp4) {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9709
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9710
  Label L_fifth_loop, L_fifth_loop_exit;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9711
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9712
  // Fifth loop
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9713
  // Perform primitiveLeftShift(z, zlen, 1)
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9714
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9715
  const Register prev_carry = tmp1;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9716
  const Register new_carry = tmp4;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9717
  const Register value = tmp2;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9718
  const Register zidx = tmp3;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9719
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9720
  // int zidx, carry;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9721
  // long value;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9722
  // carry = 0;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9723
  // for (zidx = zlen-2; zidx >=0; zidx -= 2) {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9724
  //    (carry:value)  = (z[i] << 1) | carry ;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9725
  //    z[i] = value;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9726
  // }
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9727
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9728
  movl(zidx, zlen);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9729
  xorl(prev_carry, prev_carry); // clear carry flag and prev_carry register
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9730
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9731
  bind(L_fifth_loop);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9732
  decl(zidx);  // Use decl to preserve carry flag
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9733
  decl(zidx);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9734
  jccb(Assembler::negative, L_fifth_loop_exit);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9735
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9736
  if (UseBMI2Instructions) {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9737
     movq(value, Address(z, zidx, Address::times_4, 0));
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9738
     rclq(value, 1);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9739
     rorxq(value, value, 32);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9740
     movq(Address(z, zidx, Address::times_4,  0), value);  // Store back in big endian form
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9741
  }
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9742
  else {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9743
    // clear new_carry
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9744
    xorl(new_carry, new_carry);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9745
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9746
    // Shift z[i] by 1, or in previous carry and save new carry
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9747
    movq(value, Address(z, zidx, Address::times_4, 0));
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9748
    shlq(value, 1);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9749
    adcl(new_carry, 0);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9750
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9751
    orq(value, prev_carry);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9752
    rorq(value, 0x20);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9753
    movq(Address(z, zidx, Address::times_4,  0), value);  // Store back in big endian form
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9754
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9755
    // Set previous carry = new carry
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9756
    movl(prev_carry, new_carry);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9757
  }
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9758
  jmp(L_fifth_loop);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9759
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9760
  bind(L_fifth_loop_exit);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9761
}
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9762
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9763
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9764
/**
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9765
 * Code for BigInteger::squareToLen() intrinsic
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9766
 *
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9767
 * rdi: x
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9768
 * rsi: len
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9769
 * r8:  z
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9770
 * rcx: zlen
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9771
 * r12: tmp1
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9772
 * r13: tmp2
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9773
 * r14: tmp3
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9774
 * r15: tmp4
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9775
 * rbx: tmp5
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9776
 *
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9777
 */
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9778
void MacroAssembler::square_to_len(Register x, Register len, Register z, Register zlen, Register tmp1, Register tmp2, Register tmp3, Register tmp4, Register tmp5, Register rdxReg, Register raxReg) {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9779
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9780
  Label L_second_loop, L_second_loop_exit, L_third_loop, L_third_loop_exit, fifth_loop, fifth_loop_exit, L_last_x, L_multiply;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9781
  push(tmp1);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9782
  push(tmp2);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9783
  push(tmp3);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9784
  push(tmp4);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9785
  push(tmp5);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9786
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9787
  // First loop
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9788
  // Store the squares, right shifted one bit (i.e., divided by 2).
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9789
  square_rshift(x, len, z, tmp1, tmp3, tmp4, tmp5, rdxReg, raxReg);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9790
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9791
  // Add in off-diagonal sums.
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9792
  //
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9793
  // Second, third (nested) and fourth loops.
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9794
  // zlen +=2;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9795
  // for (int xidx=len-2,zidx=zlen-4; xidx > 0; xidx-=2,zidx-=4) {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9796
  //    carry = 0;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9797
  //    long op2 = x[xidx:xidx+1];
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9798
  //    for (int j=xidx-2,k=zidx; j >= 0; j-=2) {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9799
  //       k -= 2;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9800
  //       long op1 = x[j:j+1];
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9801
  //       long sum = z[k:k+1];
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9802
  //       carry:sum = multiply_add_64(sum, op1, op2, carry, tmp_regs);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9803
  //       z[k:k+1] = sum;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9804
  //    }
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9805
  //    add_one_64(z, k, carry, tmp_regs);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9806
  // }
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9807
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9808
  const Register carry = tmp5;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9809
  const Register sum = tmp3;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9810
  const Register op1 = tmp4;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9811
  Register op2 = tmp2;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9812
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9813
  push(zlen);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9814
  push(len);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9815
  addl(zlen,2);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9816
  bind(L_second_loop);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9817
  xorq(carry, carry);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9818
  subl(zlen, 4);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9819
  subl(len, 2);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9820
  push(zlen);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9821
  push(len);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9822
  cmpl(len, 0);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9823
  jccb(Assembler::lessEqual, L_second_loop_exit);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9824
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9825
  // Multiply an array by one 64 bit long.
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9826
  if (UseBMI2Instructions) {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9827
    op2 = rdxReg;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9828
    movq(op2, Address(x, len, Address::times_4,  0));
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9829
    rorxq(op2, op2, 32);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9830
  }
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9831
  else {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9832
    movq(op2, Address(x, len, Address::times_4,  0));
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9833
    rorq(op2, 32);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9834
  }
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9835
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9836
  bind(L_third_loop);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9837
  decrementl(len);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9838
  jccb(Assembler::negative, L_third_loop_exit);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9839
  decrementl(len);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9840
  jccb(Assembler::negative, L_last_x);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9841
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9842
  movq(op1, Address(x, len, Address::times_4,  0));
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9843
  rorq(op1, 32);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9844
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9845
  bind(L_multiply);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9846
  subl(zlen, 2);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9847
  movq(sum, Address(z, zlen, Address::times_4,  0));
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9848
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9849
  // Multiply 64 bit by 64 bit and add 64 bits lower half and upper 64 bits as carry.
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9850
  if (UseBMI2Instructions) {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9851
    multiply_add_64_bmi2(sum, op1, op2, carry, tmp2);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9852
  }
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9853
  else {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9854
    multiply_add_64(sum, op1, op2, carry, rdxReg, raxReg);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9855
  }
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9856
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9857
  movq(Address(z, zlen, Address::times_4, 0), sum);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9858
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9859
  jmp(L_third_loop);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9860
  bind(L_third_loop_exit);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9861
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9862
  // Fourth loop
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9863
  // Add 64 bit long carry into z with carry propogation.
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9864
  // Uses offsetted zlen.
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9865
  add_one_64(z, zlen, carry, tmp1);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9866
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9867
  pop(len);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9868
  pop(zlen);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9869
  jmp(L_second_loop);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9870
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9871
  // Next infrequent code is moved outside loops.
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9872
  bind(L_last_x);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9873
  movl(op1, Address(x, 0));
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9874
  jmp(L_multiply);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9875
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9876
  bind(L_second_loop_exit);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9877
  pop(len);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9878
  pop(zlen);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9879
  pop(len);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9880
  pop(zlen);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9881
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9882
  // Fifth loop
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9883
  // Shift z left 1 bit.
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9884
  lshift_by_1(x, len, z, zlen, tmp1, tmp2, tmp3, tmp4);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9885
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9886
  // z[zlen-1] |= x[len-1] & 1;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9887
  movl(tmp3, Address(x, len, Address::times_4, -4));
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9888
  andl(tmp3, 1);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9889
  orl(Address(z, zlen, Address::times_4,  -4), tmp3);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9890
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9891
  pop(tmp5);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9892
  pop(tmp4);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9893
  pop(tmp3);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9894
  pop(tmp2);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9895
  pop(tmp1);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9896
}
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9897
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9898
/**
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9899
 * Helper function for mul_add()
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9900
 * Multiply the in[] by int k and add to out[] starting at offset offs using
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9901
 * 128 bit by 32 bit multiply and return the carry in tmp5.
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9902
 * Only quad int aligned length of in[] is operated on in this function.
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9903
 * k is in rdxReg for BMI2Instructions, for others it is in tmp2.
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9904
 * This function preserves out, in and k registers.
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9905
 * len and offset point to the appropriate index in "in" & "out" correspondingly
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9906
 * tmp5 has the carry.
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9907
 * other registers are temporary and are modified.
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9908
 *
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9909
 */
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9910
void MacroAssembler::mul_add_128_x_32_loop(Register out, Register in,
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9911
  Register offset, Register len, Register tmp1, Register tmp2, Register tmp3,
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9912
  Register tmp4, Register tmp5, Register rdxReg, Register raxReg) {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9913
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9914
  Label L_first_loop, L_first_loop_exit;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9915
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9916
  movl(tmp1, len);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9917
  shrl(tmp1, 2);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9918
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9919
  bind(L_first_loop);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9920
  subl(tmp1, 1);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9921
  jccb(Assembler::negative, L_first_loop_exit);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9922
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9923
  subl(len, 4);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9924
  subl(offset, 4);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9925
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9926
  Register op2 = tmp2;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9927
  const Register sum = tmp3;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9928
  const Register op1 = tmp4;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9929
  const Register carry = tmp5;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9930
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9931
  if (UseBMI2Instructions) {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9932
    op2 = rdxReg;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9933
  }
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9934
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9935
  movq(op1, Address(in, len, Address::times_4,  8));
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9936
  rorq(op1, 32);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9937
  movq(sum, Address(out, offset, Address::times_4,  8));
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9938
  rorq(sum, 32);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9939
  if (UseBMI2Instructions) {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9940
    multiply_add_64_bmi2(sum, op1, op2, carry, raxReg);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9941
  }
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9942
  else {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9943
    multiply_add_64(sum, op1, op2, carry, rdxReg, raxReg);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9944
  }
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9945
  // Store back in big endian from little endian
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9946
  rorq(sum, 0x20);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9947
  movq(Address(out, offset, Address::times_4,  8), sum);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9948
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9949
  movq(op1, Address(in, len, Address::times_4,  0));
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9950
  rorq(op1, 32);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9951
  movq(sum, Address(out, offset, Address::times_4,  0));
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9952
  rorq(sum, 32);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9953
  if (UseBMI2Instructions) {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9954
    multiply_add_64_bmi2(sum, op1, op2, carry, raxReg);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9955
  }
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9956
  else {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9957
    multiply_add_64(sum, op1, op2, carry, rdxReg, raxReg);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9958
  }
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9959
  // Store back in big endian from little endian
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9960
  rorq(sum, 0x20);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9961
  movq(Address(out, offset, Address::times_4,  0), sum);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9962
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9963
  jmp(L_first_loop);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9964
  bind(L_first_loop_exit);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9965
}
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9966
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9967
/**
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9968
 * Code for BigInteger::mulAdd() intrinsic
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9969
 *
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9970
 * rdi: out
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9971
 * rsi: in
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9972
 * r11: offs (out.length - offset)
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9973
 * rcx: len
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9974
 * r8:  k
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9975
 * r12: tmp1
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9976
 * r13: tmp2
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9977
 * r14: tmp3
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9978
 * r15: tmp4
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9979
 * rbx: tmp5
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9980
 * Multiply the in[] by word k and add to out[], return the carry in rax
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9981
 */
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9982
void MacroAssembler::mul_add(Register out, Register in, Register offs,
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9983
   Register len, Register k, Register tmp1, Register tmp2, Register tmp3,
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9984
   Register tmp4, Register tmp5, Register rdxReg, Register raxReg) {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9985
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9986
  Label L_carry, L_last_in, L_done;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9987
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9988
// carry = 0;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9989
// for (int j=len-1; j >= 0; j--) {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9990
//    long product = (in[j] & LONG_MASK) * kLong +
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9991
//                   (out[offs] & LONG_MASK) + carry;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9992
//    out[offs--] = (int)product;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9993
//    carry = product >>> 32;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9994
// }
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9995
//
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9996
  push(tmp1);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9997
  push(tmp2);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9998
  push(tmp3);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
  9999
  push(tmp4);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10000
  push(tmp5);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10001
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10002
  Register op2 = tmp2;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10003
  const Register sum = tmp3;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10004
  const Register op1 = tmp4;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10005
  const Register carry =  tmp5;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10006
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10007
  if (UseBMI2Instructions) {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10008
    op2 = rdxReg;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10009
    movl(op2, k);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10010
  }
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10011
  else {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10012
    movl(op2, k);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10013
  }
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10014
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10015
  xorq(carry, carry);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10016
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10017
  //First loop
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10018
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10019
  //Multiply in[] by k in a 4 way unrolled loop using 128 bit by 32 bit multiply
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10020
  //The carry is in tmp5
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10021
  mul_add_128_x_32_loop(out, in, offs, len, tmp1, tmp2, tmp3, tmp4, tmp5, rdxReg, raxReg);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10022
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10023
  //Multiply the trailing in[] entry using 64 bit by 32 bit, if any
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10024
  decrementl(len);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10025
  jccb(Assembler::negative, L_carry);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10026
  decrementl(len);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10027
  jccb(Assembler::negative, L_last_in);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10028
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10029
  movq(op1, Address(in, len, Address::times_4,  0));
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10030
  rorq(op1, 32);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10031
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10032
  subl(offs, 2);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10033
  movq(sum, Address(out, offs, Address::times_4,  0));
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10034
  rorq(sum, 32);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10035
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10036
  if (UseBMI2Instructions) {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10037
    multiply_add_64_bmi2(sum, op1, op2, carry, raxReg);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10038
  }
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10039
  else {
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10040
    multiply_add_64(sum, op1, op2, carry, rdxReg, raxReg);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10041
  }
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10042
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10043
  // Store back in big endian from little endian
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10044
  rorq(sum, 0x20);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10045
  movq(Address(out, offs, Address::times_4,  0), sum);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10046
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10047
  testl(len, len);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10048
  jccb(Assembler::zero, L_carry);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10049
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10050
  //Multiply the last in[] entry, if any
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10051
  bind(L_last_in);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10052
  movl(op1, Address(in, 0));
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10053
  movl(sum, Address(out, offs, Address::times_4,  -4));
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10054
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10055
  movl(raxReg, k);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10056
  mull(op1); //tmp4 * eax -> edx:eax
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10057
  addl(sum, carry);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10058
  adcl(rdxReg, 0);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10059
  addl(sum, raxReg);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10060
  adcl(rdxReg, 0);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10061
  movl(carry, rdxReg);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10062
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10063
  movl(Address(out, offs, Address::times_4,  -4), sum);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10064
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10065
  bind(L_carry);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10066
  //return tmp5/carry as carry in rax
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10067
  movl(rax, carry);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10068
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10069
  bind(L_done);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10070
  pop(tmp5);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10071
  pop(tmp4);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10072
  pop(tmp3);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10073
  pop(tmp2);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10074
  pop(tmp1);
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30773
diff changeset
 10075
}
26434
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
 10076
#endif
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25932
diff changeset
 10077
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10078
/**
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10079
 * Emits code to update CRC-32 with a byte value according to constants in table
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10080
 *
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10081
 * @param [in,out]crc   Register containing the crc.
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10082
 * @param [in]val       Register containing the byte to fold into the CRC.
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10083
 * @param [in]table     Register containing the table of crc constants.
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10084
 *
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10085
 * uint32_t crc;
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10086
 * val = crc_table[(val ^ crc) & 0xFF];
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10087
 * crc = val ^ (crc >> 8);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10088
 *
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10089
 */
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10090
void MacroAssembler::update_byte_crc32(Register crc, Register val, Register table) {
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10091
  xorl(val, crc);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10092
  andl(val, 0xFF);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10093
  shrl(crc, 8); // unsigned shift
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10094
  xorl(crc, Address(table, val, Address::times_4, 0));
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10095
}
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10096
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10097
/**
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10098
 * Fold 128-bit data chunk
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10099
 */
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10100
void MacroAssembler::fold_128bit_crc32(XMMRegister xcrc, XMMRegister xK, XMMRegister xtmp, Register buf, int offset) {
25932
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10101
  if (UseAVX > 0) {
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10102
    vpclmulhdq(xtmp, xK, xcrc); // [123:64]
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10103
    vpclmulldq(xcrc, xK, xcrc); // [63:0]
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
 10104
    vpxor(xcrc, xcrc, Address(buf, offset), 0 /* vector_len */);
25932
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10105
    pxor(xcrc, xtmp);
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10106
  } else {
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10107
    movdqa(xtmp, xcrc);
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10108
    pclmulhdq(xtmp, xK);   // [123:64]
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10109
    pclmulldq(xcrc, xK);   // [63:0]
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10110
    pxor(xcrc, xtmp);
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10111
    movdqu(xtmp, Address(buf, offset));
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10112
    pxor(xcrc, xtmp);
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10113
  }
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10114
}
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10115
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10116
void MacroAssembler::fold_128bit_crc32(XMMRegister xcrc, XMMRegister xK, XMMRegister xtmp, XMMRegister xbuf) {
25932
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10117
  if (UseAVX > 0) {
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10118
    vpclmulhdq(xtmp, xK, xcrc);
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10119
    vpclmulldq(xcrc, xK, xcrc);
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10120
    pxor(xcrc, xbuf);
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10121
    pxor(xcrc, xtmp);
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10122
  } else {
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10123
    movdqa(xtmp, xcrc);
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10124
    pclmulhdq(xtmp, xK);
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10125
    pclmulldq(xcrc, xK);
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10126
    pxor(xcrc, xbuf);
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10127
    pxor(xcrc, xtmp);
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10128
  }
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10129
}
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10130
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10131
/**
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10132
 * 8-bit folds to compute 32-bit CRC
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10133
 *
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10134
 * uint64_t xcrc;
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10135
 * timesXtoThe32[xcrc & 0xFF] ^ (xcrc >> 8);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10136
 */
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10137
void MacroAssembler::fold_8bit_crc32(XMMRegister xcrc, Register table, XMMRegister xtmp, Register tmp) {
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10138
  movdl(tmp, xcrc);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10139
  andl(tmp, 0xFF);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10140
  movdl(xtmp, Address(table, tmp, Address::times_4, 0));
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10141
  psrldq(xcrc, 1); // unsigned shift one byte
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10142
  pxor(xcrc, xtmp);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10143
}
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10144
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10145
/**
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10146
 * uint32_t crc;
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10147
 * timesXtoThe32[crc & 0xFF] ^ (crc >> 8);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10148
 */
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10149
void MacroAssembler::fold_8bit_crc32(Register crc, Register table, Register tmp) {
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10150
  movl(tmp, crc);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10151
  andl(tmp, 0xFF);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10152
  shrl(crc, 8);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10153
  xorl(crc, Address(table, tmp, Address::times_4, 0));
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10154
}
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10155
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10156
/**
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10157
 * @param crc   register containing existing CRC (32-bit)
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10158
 * @param buf   register pointing to input byte buffer (byte*)
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10159
 * @param len   register containing number of bytes
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10160
 * @param table register that will contain address of CRC table
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10161
 * @param tmp   scratch register
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10162
 */
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10163
void MacroAssembler::kernel_crc32(Register crc, Register buf, Register len, Register table, Register tmp) {
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10164
  assert_different_registers(crc, buf, len, table, tmp, rax);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10165
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10166
  Label L_tail, L_tail_restore, L_tail_loop, L_exit, L_align_loop, L_aligned;
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10167
  Label L_fold_tail, L_fold_128b, L_fold_512b, L_fold_512b_loop, L_fold_tail_loop;
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10168
32727
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
 10169
  // For EVEX with VL and BW, provide a standard mask, VL = 128 will guide the merge
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
 10170
  // context for the registers used, where all instructions below are using 128-bit mode
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
 10171
  // On EVEX without VL and BW, these instructions will all be AVX.
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
 10172
  if (VM_Version::supports_avx512vlbw()) {
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
 10173
    movl(tmp, 0xffff);
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
 10174
    kmovwl(k1, tmp);
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
 10175
  }
320855c2baef 8132160: support for AVX 512 call frames and stack management
mcberg
parents: 32599
diff changeset
 10176
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10177
  lea(table, ExternalAddress(StubRoutines::crc_table_addr()));
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10178
  notl(crc); // ~crc
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10179
  cmpl(len, 16);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10180
  jcc(Assembler::less, L_tail);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10181
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10182
  // Align buffer to 16 bytes
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10183
  movl(tmp, buf);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10184
  andl(tmp, 0xF);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10185
  jccb(Assembler::zero, L_aligned);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10186
  subl(tmp,  16);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10187
  addl(len, tmp);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10188
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10189
  align(4);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10190
  BIND(L_align_loop);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10191
  movsbl(rax, Address(buf, 0)); // load byte with sign extension
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10192
  update_byte_crc32(crc, rax, table);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10193
  increment(buf);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10194
  incrementl(tmp);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10195
  jccb(Assembler::less, L_align_loop);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10196
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10197
  BIND(L_aligned);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10198
  movl(tmp, len); // save
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10199
  shrl(len, 4);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10200
  jcc(Assembler::zero, L_tail_restore);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10201
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10202
  // Fold crc into first bytes of vector
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10203
  movdqa(xmm1, Address(buf, 0));
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10204
  movdl(rax, xmm1);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10205
  xorl(crc, rax);
39256
ac12f57c6d9c 8158214: Crash with "assert(VM_Version::supports_sse4_1()) failed" if UseSSE < 4 is set
thartmann
parents: 39253
diff changeset
 10206
  if (VM_Version::supports_sse4_1()) {
ac12f57c6d9c 8158214: Crash with "assert(VM_Version::supports_sse4_1()) failed" if UseSSE < 4 is set
thartmann
parents: 39253
diff changeset
 10207
    pinsrd(xmm1, crc, 0);
ac12f57c6d9c 8158214: Crash with "assert(VM_Version::supports_sse4_1()) failed" if UseSSE < 4 is set
thartmann
parents: 39253
diff changeset
 10208
  } else {
ac12f57c6d9c 8158214: Crash with "assert(VM_Version::supports_sse4_1()) failed" if UseSSE < 4 is set
thartmann
parents: 39253
diff changeset
 10209
    pinsrw(xmm1, crc, 0);
ac12f57c6d9c 8158214: Crash with "assert(VM_Version::supports_sse4_1()) failed" if UseSSE < 4 is set
thartmann
parents: 39253
diff changeset
 10210
    shrl(crc, 16);
ac12f57c6d9c 8158214: Crash with "assert(VM_Version::supports_sse4_1()) failed" if UseSSE < 4 is set
thartmann
parents: 39253
diff changeset
 10211
    pinsrw(xmm1, crc, 1);
ac12f57c6d9c 8158214: Crash with "assert(VM_Version::supports_sse4_1()) failed" if UseSSE < 4 is set
thartmann
parents: 39253
diff changeset
 10212
  }
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10213
  addptr(buf, 16);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10214
  subl(len, 4); // len > 0
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10215
  jcc(Assembler::less, L_fold_tail);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10216
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10217
  movdqa(xmm2, Address(buf,  0));
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10218
  movdqa(xmm3, Address(buf, 16));
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10219
  movdqa(xmm4, Address(buf, 32));
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10220
  addptr(buf, 48);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10221
  subl(len, 3);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10222
  jcc(Assembler::lessEqual, L_fold_512b);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10223
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10224
  // Fold total 512 bits of polynomial on each iteration,
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10225
  // 128 bits per each of 4 parallel streams.
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10226
  movdqu(xmm0, ExternalAddress(StubRoutines::x86::crc_by128_masks_addr() + 32));
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10227
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10228
  align(32);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10229
  BIND(L_fold_512b_loop);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10230
  fold_128bit_crc32(xmm1, xmm0, xmm5, buf,  0);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10231
  fold_128bit_crc32(xmm2, xmm0, xmm5, buf, 16);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10232
  fold_128bit_crc32(xmm3, xmm0, xmm5, buf, 32);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10233
  fold_128bit_crc32(xmm4, xmm0, xmm5, buf, 48);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10234
  addptr(buf, 64);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10235
  subl(len, 4);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10236
  jcc(Assembler::greater, L_fold_512b_loop);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10237
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10238
  // Fold 512 bits to 128 bits.
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10239
  BIND(L_fold_512b);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10240
  movdqu(xmm0, ExternalAddress(StubRoutines::x86::crc_by128_masks_addr() + 16));
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10241
  fold_128bit_crc32(xmm1, xmm0, xmm5, xmm2);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10242
  fold_128bit_crc32(xmm1, xmm0, xmm5, xmm3);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10243
  fold_128bit_crc32(xmm1, xmm0, xmm5, xmm4);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10244
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10245
  // Fold the rest of 128 bits data chunks
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10246
  BIND(L_fold_tail);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10247
  addl(len, 3);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10248
  jccb(Assembler::lessEqual, L_fold_128b);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10249
  movdqu(xmm0, ExternalAddress(StubRoutines::x86::crc_by128_masks_addr() + 16));
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10250
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10251
  BIND(L_fold_tail_loop);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10252
  fold_128bit_crc32(xmm1, xmm0, xmm5, buf,  0);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10253
  addptr(buf, 16);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10254
  decrementl(len);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10255
  jccb(Assembler::greater, L_fold_tail_loop);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10256
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10257
  // Fold 128 bits in xmm1 down into 32 bits in crc register.
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10258
  BIND(L_fold_128b);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10259
  movdqu(xmm0, ExternalAddress(StubRoutines::x86::crc_by128_masks_addr()));
25932
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10260
  if (UseAVX > 0) {
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10261
    vpclmulqdq(xmm2, xmm0, xmm1, 0x1);
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30310
diff changeset
 10262
    vpand(xmm3, xmm0, xmm2, 0 /* vector_len */);
25932
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10263
    vpclmulqdq(xmm0, xmm0, xmm3, 0x1);
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10264
  } else {
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10265
    movdqa(xmm2, xmm0);
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10266
    pclmulqdq(xmm2, xmm1, 0x1);
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10267
    movdqa(xmm3, xmm0);
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10268
    pand(xmm3, xmm2);
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10269
    pclmulqdq(xmm0, xmm3, 0x1);
15d133edd8f6 8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents: 24424
diff changeset
 10270
  }
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10271
  psrldq(xmm1, 8);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10272
  psrldq(xmm2, 4);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10273
  pxor(xmm0, xmm1);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10274
  pxor(xmm0, xmm2);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10275
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10276
  // 8 8-bit folds to compute 32-bit CRC.
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10277
  for (int j = 0; j < 4; j++) {
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10278
    fold_8bit_crc32(xmm0, table, xmm1, rax);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10279
  }
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10280
  movdl(crc, xmm0); // mov 32 bits to general register
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10281
  for (int j = 0; j < 4; j++) {
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10282
    fold_8bit_crc32(crc, table, rax);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10283
  }
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10284
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10285
  BIND(L_tail_restore);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10286
  movl(len, tmp); // restore
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10287
  BIND(L_tail);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10288
  andl(len, 0xf);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10289
  jccb(Assembler::zero, L_exit);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10290
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10291
  // Fold the rest of bytes
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10292
  align(4);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10293
  BIND(L_tail_loop);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10294
  movsbl(rax, Address(buf, 0)); // load byte with sign extension
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10295
  update_byte_crc32(crc, rax, table);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10296
  increment(buf);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10297
  decrementl(len);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10298
  jccb(Assembler::greater, L_tail_loop);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10299
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10300
  BIND(L_exit);
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10301
  notl(crc); // ~c
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10302
}
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 16624
diff changeset
 10303
33066
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10304
#ifdef _LP64
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10305
// S. Gueron / Information Processing Letters 112 (2012) 184
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10306
// Algorithm 4: Computing carry-less multiplication using a precomputed lookup table.
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10307
// Input: A 32 bit value B = [byte3, byte2, byte1, byte0].
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10308
// Output: the 64-bit carry-less product of B * CONST
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10309
void MacroAssembler::crc32c_ipl_alg4(Register in, uint32_t n,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10310
                                     Register tmp1, Register tmp2, Register tmp3) {
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10311
  lea(tmp3, ExternalAddress(StubRoutines::crc32c_table_addr()));
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10312
  if (n > 0) {
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10313
    addq(tmp3, n * 256 * 8);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10314
  }
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10315
  //    Q1 = TABLEExt[n][B & 0xFF];
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10316
  movl(tmp1, in);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10317
  andl(tmp1, 0x000000FF);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10318
  shll(tmp1, 3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10319
  addq(tmp1, tmp3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10320
  movq(tmp1, Address(tmp1, 0));
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10321
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10322
  //    Q2 = TABLEExt[n][B >> 8 & 0xFF];
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10323
  movl(tmp2, in);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10324
  shrl(tmp2, 8);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10325
  andl(tmp2, 0x000000FF);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10326
  shll(tmp2, 3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10327
  addq(tmp2, tmp3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10328
  movq(tmp2, Address(tmp2, 0));
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10329
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10330
  shlq(tmp2, 8);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10331
  xorq(tmp1, tmp2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10332
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10333
  //    Q3 = TABLEExt[n][B >> 16 & 0xFF];
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10334
  movl(tmp2, in);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10335
  shrl(tmp2, 16);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10336
  andl(tmp2, 0x000000FF);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10337
  shll(tmp2, 3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10338
  addq(tmp2, tmp3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10339
  movq(tmp2, Address(tmp2, 0));
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10340
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10341
  shlq(tmp2, 16);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10342
  xorq(tmp1, tmp2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10343
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10344
  //    Q4 = TABLEExt[n][B >> 24 & 0xFF];
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10345
  shrl(in, 24);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10346
  andl(in, 0x000000FF);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10347
  shll(in, 3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10348
  addq(in, tmp3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10349
  movq(in, Address(in, 0));
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10350
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10351
  shlq(in, 24);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10352
  xorq(in, tmp1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10353
  //    return Q1 ^ Q2 << 8 ^ Q3 << 16 ^ Q4 << 24;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10354
}
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10355
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10356
void MacroAssembler::crc32c_pclmulqdq(XMMRegister w_xtmp1,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10357
                                      Register in_out,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10358
                                      uint32_t const_or_pre_comp_const_index, bool is_pclmulqdq_supported,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10359
                                      XMMRegister w_xtmp2,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10360
                                      Register tmp1,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10361
                                      Register n_tmp2, Register n_tmp3) {
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10362
  if (is_pclmulqdq_supported) {
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10363
    movdl(w_xtmp1, in_out); // modified blindly
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10364
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10365
    movl(tmp1, const_or_pre_comp_const_index);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10366
    movdl(w_xtmp2, tmp1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10367
    pclmulqdq(w_xtmp1, w_xtmp2, 0);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10368
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10369
    movdq(in_out, w_xtmp1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10370
  } else {
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10371
    crc32c_ipl_alg4(in_out, const_or_pre_comp_const_index, tmp1, n_tmp2, n_tmp3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10372
  }
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10373
}
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10374
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10375
// Recombination Alternative 2: No bit-reflections
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10376
// T1 = (CRC_A * U1) << 1
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10377
// T2 = (CRC_B * U2) << 1
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10378
// C1 = T1 >> 32
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10379
// C2 = T2 >> 32
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10380
// T1 = T1 & 0xFFFFFFFF
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10381
// T2 = T2 & 0xFFFFFFFF
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10382
// T1 = CRC32(0, T1)
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10383
// T2 = CRC32(0, T2)
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10384
// C1 = C1 ^ T1
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10385
// C2 = C2 ^ T2
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10386
// CRC = C1 ^ C2 ^ CRC_C
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10387
void MacroAssembler::crc32c_rec_alt2(uint32_t const_or_pre_comp_const_index_u1, uint32_t const_or_pre_comp_const_index_u2, bool is_pclmulqdq_supported, Register in_out, Register in1, Register in2,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10388
                                     XMMRegister w_xtmp1, XMMRegister w_xtmp2, XMMRegister w_xtmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10389
                                     Register tmp1, Register tmp2,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10390
                                     Register n_tmp3) {
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10391
  crc32c_pclmulqdq(w_xtmp1, in_out, const_or_pre_comp_const_index_u1, is_pclmulqdq_supported, w_xtmp3, tmp1, tmp2, n_tmp3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10392
  crc32c_pclmulqdq(w_xtmp2, in1, const_or_pre_comp_const_index_u2, is_pclmulqdq_supported, w_xtmp3, tmp1, tmp2, n_tmp3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10393
  shlq(in_out, 1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10394
  movl(tmp1, in_out);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10395
  shrq(in_out, 32);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10396
  xorl(tmp2, tmp2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10397
  crc32(tmp2, tmp1, 4);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10398
  xorl(in_out, tmp2); // we don't care about upper 32 bit contents here
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10399
  shlq(in1, 1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10400
  movl(tmp1, in1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10401
  shrq(in1, 32);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10402
  xorl(tmp2, tmp2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10403
  crc32(tmp2, tmp1, 4);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10404
  xorl(in1, tmp2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10405
  xorl(in_out, in1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10406
  xorl(in_out, in2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10407
}
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10408
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10409
// Set N to predefined value
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10410
// Subtract from a lenght of a buffer
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10411
// execute in a loop:
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10412
// CRC_A = 0xFFFFFFFF, CRC_B = 0, CRC_C = 0
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10413
// for i = 1 to N do
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10414
//  CRC_A = CRC32(CRC_A, A[i])
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10415
//  CRC_B = CRC32(CRC_B, B[i])
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10416
//  CRC_C = CRC32(CRC_C, C[i])
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10417
// end for
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10418
// Recombine
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10419
void MacroAssembler::crc32c_proc_chunk(uint32_t size, uint32_t const_or_pre_comp_const_index_u1, uint32_t const_or_pre_comp_const_index_u2, bool is_pclmulqdq_supported,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10420
                                       Register in_out1, Register in_out2, Register in_out3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10421
                                       Register tmp1, Register tmp2, Register tmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10422
                                       XMMRegister w_xtmp1, XMMRegister w_xtmp2, XMMRegister w_xtmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10423
                                       Register tmp4, Register tmp5,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10424
                                       Register n_tmp6) {
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10425
  Label L_processPartitions;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10426
  Label L_processPartition;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10427
  Label L_exit;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10428
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10429
  bind(L_processPartitions);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10430
  cmpl(in_out1, 3 * size);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10431
  jcc(Assembler::less, L_exit);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10432
    xorl(tmp1, tmp1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10433
    xorl(tmp2, tmp2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10434
    movq(tmp3, in_out2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10435
    addq(tmp3, size);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10436
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10437
    bind(L_processPartition);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10438
      crc32(in_out3, Address(in_out2, 0), 8);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10439
      crc32(tmp1, Address(in_out2, size), 8);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10440
      crc32(tmp2, Address(in_out2, size * 2), 8);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10441
      addq(in_out2, 8);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10442
      cmpq(in_out2, tmp3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10443
      jcc(Assembler::less, L_processPartition);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10444
    crc32c_rec_alt2(const_or_pre_comp_const_index_u1, const_or_pre_comp_const_index_u2, is_pclmulqdq_supported, in_out3, tmp1, tmp2,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10445
            w_xtmp1, w_xtmp2, w_xtmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10446
            tmp4, tmp5,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10447
            n_tmp6);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10448
    addq(in_out2, 2 * size);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10449
    subl(in_out1, 3 * size);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10450
    jmp(L_processPartitions);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10451
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10452
  bind(L_exit);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10453
}
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10454
#else
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10455
void MacroAssembler::crc32c_ipl_alg4(Register in_out, uint32_t n,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10456
                                     Register tmp1, Register tmp2, Register tmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10457
                                     XMMRegister xtmp1, XMMRegister xtmp2) {
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10458
  lea(tmp3, ExternalAddress(StubRoutines::crc32c_table_addr()));
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10459
  if (n > 0) {
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10460
    addl(tmp3, n * 256 * 8);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10461
  }
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10462
  //    Q1 = TABLEExt[n][B & 0xFF];
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10463
  movl(tmp1, in_out);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10464
  andl(tmp1, 0x000000FF);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10465
  shll(tmp1, 3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10466
  addl(tmp1, tmp3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10467
  movq(xtmp1, Address(tmp1, 0));
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10468
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10469
  //    Q2 = TABLEExt[n][B >> 8 & 0xFF];
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10470
  movl(tmp2, in_out);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10471
  shrl(tmp2, 8);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10472
  andl(tmp2, 0x000000FF);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10473
  shll(tmp2, 3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10474
  addl(tmp2, tmp3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10475
  movq(xtmp2, Address(tmp2, 0));
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10476
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10477
  psllq(xtmp2, 8);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10478
  pxor(xtmp1, xtmp2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10479
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10480
  //    Q3 = TABLEExt[n][B >> 16 & 0xFF];
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10481
  movl(tmp2, in_out);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10482
  shrl(tmp2, 16);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10483
  andl(tmp2, 0x000000FF);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10484
  shll(tmp2, 3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10485
  addl(tmp2, tmp3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10486
  movq(xtmp2, Address(tmp2, 0));
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10487
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10488
  psllq(xtmp2, 16);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10489
  pxor(xtmp1, xtmp2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10490
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10491
  //    Q4 = TABLEExt[n][B >> 24 & 0xFF];
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10492
  shrl(in_out, 24);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10493
  andl(in_out, 0x000000FF);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10494
  shll(in_out, 3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10495
  addl(in_out, tmp3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10496
  movq(xtmp2, Address(in_out, 0));
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10497
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10498
  psllq(xtmp2, 24);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10499
  pxor(xtmp1, xtmp2); // Result in CXMM
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10500
  //    return Q1 ^ Q2 << 8 ^ Q3 << 16 ^ Q4 << 24;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10501
}
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10502
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10503
void MacroAssembler::crc32c_pclmulqdq(XMMRegister w_xtmp1,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10504
                                      Register in_out,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10505
                                      uint32_t const_or_pre_comp_const_index, bool is_pclmulqdq_supported,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10506
                                      XMMRegister w_xtmp2,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10507
                                      Register tmp1,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10508
                                      Register n_tmp2, Register n_tmp3) {
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10509
  if (is_pclmulqdq_supported) {
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10510
    movdl(w_xtmp1, in_out);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10511
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10512
    movl(tmp1, const_or_pre_comp_const_index);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10513
    movdl(w_xtmp2, tmp1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10514
    pclmulqdq(w_xtmp1, w_xtmp2, 0);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10515
    // Keep result in XMM since GPR is 32 bit in length
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10516
  } else {
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10517
    crc32c_ipl_alg4(in_out, const_or_pre_comp_const_index, tmp1, n_tmp2, n_tmp3, w_xtmp1, w_xtmp2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10518
  }
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10519
}
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10520
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10521
void MacroAssembler::crc32c_rec_alt2(uint32_t const_or_pre_comp_const_index_u1, uint32_t const_or_pre_comp_const_index_u2, bool is_pclmulqdq_supported, Register in_out, Register in1, Register in2,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10522
                                     XMMRegister w_xtmp1, XMMRegister w_xtmp2, XMMRegister w_xtmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10523
                                     Register tmp1, Register tmp2,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10524
                                     Register n_tmp3) {
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10525
  crc32c_pclmulqdq(w_xtmp1, in_out, const_or_pre_comp_const_index_u1, is_pclmulqdq_supported, w_xtmp3, tmp1, tmp2, n_tmp3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10526
  crc32c_pclmulqdq(w_xtmp2, in1, const_or_pre_comp_const_index_u2, is_pclmulqdq_supported, w_xtmp3, tmp1, tmp2, n_tmp3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10527
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10528
  psllq(w_xtmp1, 1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10529
  movdl(tmp1, w_xtmp1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10530
  psrlq(w_xtmp1, 32);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10531
  movdl(in_out, w_xtmp1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10532
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10533
  xorl(tmp2, tmp2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10534
  crc32(tmp2, tmp1, 4);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10535
  xorl(in_out, tmp2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10536
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10537
  psllq(w_xtmp2, 1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10538
  movdl(tmp1, w_xtmp2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10539
  psrlq(w_xtmp2, 32);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10540
  movdl(in1, w_xtmp2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10541
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10542
  xorl(tmp2, tmp2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10543
  crc32(tmp2, tmp1, 4);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10544
  xorl(in1, tmp2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10545
  xorl(in_out, in1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10546
  xorl(in_out, in2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10547
}
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10548
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10549
void MacroAssembler::crc32c_proc_chunk(uint32_t size, uint32_t const_or_pre_comp_const_index_u1, uint32_t const_or_pre_comp_const_index_u2, bool is_pclmulqdq_supported,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10550
                                       Register in_out1, Register in_out2, Register in_out3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10551
                                       Register tmp1, Register tmp2, Register tmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10552
                                       XMMRegister w_xtmp1, XMMRegister w_xtmp2, XMMRegister w_xtmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10553
                                       Register tmp4, Register tmp5,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10554
                                       Register n_tmp6) {
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10555
  Label L_processPartitions;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10556
  Label L_processPartition;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10557
  Label L_exit;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10558
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10559
  bind(L_processPartitions);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10560
  cmpl(in_out1, 3 * size);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10561
  jcc(Assembler::less, L_exit);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10562
    xorl(tmp1, tmp1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10563
    xorl(tmp2, tmp2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10564
    movl(tmp3, in_out2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10565
    addl(tmp3, size);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10566
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10567
    bind(L_processPartition);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10568
      crc32(in_out3, Address(in_out2, 0), 4);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10569
      crc32(tmp1, Address(in_out2, size), 4);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10570
      crc32(tmp2, Address(in_out2, size*2), 4);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10571
      crc32(in_out3, Address(in_out2, 0+4), 4);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10572
      crc32(tmp1, Address(in_out2, size+4), 4);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10573
      crc32(tmp2, Address(in_out2, size*2+4), 4);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10574
      addl(in_out2, 8);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10575
      cmpl(in_out2, tmp3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10576
      jcc(Assembler::less, L_processPartition);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10577
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10578
        push(tmp3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10579
        push(in_out1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10580
        push(in_out2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10581
        tmp4 = tmp3;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10582
        tmp5 = in_out1;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10583
        n_tmp6 = in_out2;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10584
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10585
      crc32c_rec_alt2(const_or_pre_comp_const_index_u1, const_or_pre_comp_const_index_u2, is_pclmulqdq_supported, in_out3, tmp1, tmp2,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10586
            w_xtmp1, w_xtmp2, w_xtmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10587
            tmp4, tmp5,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10588
            n_tmp6);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10589
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10590
        pop(in_out2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10591
        pop(in_out1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10592
        pop(tmp3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10593
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10594
    addl(in_out2, 2 * size);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10595
    subl(in_out1, 3 * size);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10596
    jmp(L_processPartitions);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10597
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10598
  bind(L_exit);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10599
}
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10600
#endif //LP64
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10601
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10602
#ifdef _LP64
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10603
// Algorithm 2: Pipelined usage of the CRC32 instruction.
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10604
// Input: A buffer I of L bytes.
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10605
// Output: the CRC32C value of the buffer.
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10606
// Notations:
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10607
// Write L = 24N + r, with N = floor (L/24).
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10608
// r = L mod 24 (0 <= r < 24).
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10609
// Consider I as the concatenation of A|B|C|R, where A, B, C, each,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10610
// N quadwords, and R consists of r bytes.
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10611
// A[j] = I [8j+7:8j], j= 0, 1, ..., N-1
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10612
// B[j] = I [N + 8j+7:N + 8j], j= 0, 1, ..., N-1
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10613
// C[j] = I [2N + 8j+7:2N + 8j], j= 0, 1, ..., N-1
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10614
// if r > 0 R[j] = I [3N +j], j= 0, 1, ...,r-1
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10615
void MacroAssembler::crc32c_ipl_alg2_alt2(Register in_out, Register in1, Register in2,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10616
                                          Register tmp1, Register tmp2, Register tmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10617
                                          Register tmp4, Register tmp5, Register tmp6,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10618
                                          XMMRegister w_xtmp1, XMMRegister w_xtmp2, XMMRegister w_xtmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10619
                                          bool is_pclmulqdq_supported) {
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10620
  uint32_t const_or_pre_comp_const_index[CRC32C_NUM_PRECOMPUTED_CONSTANTS];
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10621
  Label L_wordByWord;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10622
  Label L_byteByByteProlog;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10623
  Label L_byteByByte;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10624
  Label L_exit;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10625
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10626
  if (is_pclmulqdq_supported ) {
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10627
    const_or_pre_comp_const_index[1] = *(uint32_t *)StubRoutines::_crc32c_table_addr;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10628
    const_or_pre_comp_const_index[0] = *((uint32_t *)StubRoutines::_crc32c_table_addr+1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10629
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10630
    const_or_pre_comp_const_index[3] = *((uint32_t *)StubRoutines::_crc32c_table_addr + 2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10631
    const_or_pre_comp_const_index[2] = *((uint32_t *)StubRoutines::_crc32c_table_addr + 3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10632
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10633
    const_or_pre_comp_const_index[5] = *((uint32_t *)StubRoutines::_crc32c_table_addr + 4);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10634
    const_or_pre_comp_const_index[4] = *((uint32_t *)StubRoutines::_crc32c_table_addr + 5);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10635
    assert((CRC32C_NUM_PRECOMPUTED_CONSTANTS - 1 ) == 5, "Checking whether you declared all of the constants based on the number of \"chunks\"");
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10636
  } else {
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10637
    const_or_pre_comp_const_index[0] = 1;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10638
    const_or_pre_comp_const_index[1] = 0;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10639
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10640
    const_or_pre_comp_const_index[2] = 3;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10641
    const_or_pre_comp_const_index[3] = 2;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10642
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10643
    const_or_pre_comp_const_index[4] = 5;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10644
    const_or_pre_comp_const_index[5] = 4;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10645
   }
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10646
  crc32c_proc_chunk(CRC32C_HIGH, const_or_pre_comp_const_index[0], const_or_pre_comp_const_index[1], is_pclmulqdq_supported,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10647
                    in2, in1, in_out,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10648
                    tmp1, tmp2, tmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10649
                    w_xtmp1, w_xtmp2, w_xtmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10650
                    tmp4, tmp5,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10651
                    tmp6);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10652
  crc32c_proc_chunk(CRC32C_MIDDLE, const_or_pre_comp_const_index[2], const_or_pre_comp_const_index[3], is_pclmulqdq_supported,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10653
                    in2, in1, in_out,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10654
                    tmp1, tmp2, tmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10655
                    w_xtmp1, w_xtmp2, w_xtmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10656
                    tmp4, tmp5,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10657
                    tmp6);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10658
  crc32c_proc_chunk(CRC32C_LOW, const_or_pre_comp_const_index[4], const_or_pre_comp_const_index[5], is_pclmulqdq_supported,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10659
                    in2, in1, in_out,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10660
                    tmp1, tmp2, tmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10661
                    w_xtmp1, w_xtmp2, w_xtmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10662
                    tmp4, tmp5,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10663
                    tmp6);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10664
  movl(tmp1, in2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10665
  andl(tmp1, 0x00000007);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10666
  negl(tmp1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10667
  addl(tmp1, in2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10668
  addq(tmp1, in1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10669
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10670
  BIND(L_wordByWord);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10671
  cmpq(in1, tmp1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10672
  jcc(Assembler::greaterEqual, L_byteByByteProlog);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10673
    crc32(in_out, Address(in1, 0), 4);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10674
    addq(in1, 4);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10675
    jmp(L_wordByWord);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10676
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10677
  BIND(L_byteByByteProlog);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10678
  andl(in2, 0x00000007);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10679
  movl(tmp2, 1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10680
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10681
  BIND(L_byteByByte);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10682
  cmpl(tmp2, in2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10683
  jccb(Assembler::greater, L_exit);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10684
    crc32(in_out, Address(in1, 0), 1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10685
    incq(in1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10686
    incl(tmp2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10687
    jmp(L_byteByByte);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10688
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10689
  BIND(L_exit);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10690
}
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10691
#else
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10692
void MacroAssembler::crc32c_ipl_alg2_alt2(Register in_out, Register in1, Register in2,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10693
                                          Register tmp1, Register  tmp2, Register tmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10694
                                          Register tmp4, Register  tmp5, Register tmp6,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10695
                                          XMMRegister w_xtmp1, XMMRegister w_xtmp2, XMMRegister w_xtmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10696
                                          bool is_pclmulqdq_supported) {
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10697
  uint32_t const_or_pre_comp_const_index[CRC32C_NUM_PRECOMPUTED_CONSTANTS];
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10698
  Label L_wordByWord;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10699
  Label L_byteByByteProlog;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10700
  Label L_byteByByte;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10701
  Label L_exit;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10702
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10703
  if (is_pclmulqdq_supported) {
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10704
    const_or_pre_comp_const_index[1] = *(uint32_t *)StubRoutines::_crc32c_table_addr;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10705
    const_or_pre_comp_const_index[0] = *((uint32_t *)StubRoutines::_crc32c_table_addr + 1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10706
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10707
    const_or_pre_comp_const_index[3] = *((uint32_t *)StubRoutines::_crc32c_table_addr + 2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10708
    const_or_pre_comp_const_index[2] = *((uint32_t *)StubRoutines::_crc32c_table_addr + 3);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10709
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10710
    const_or_pre_comp_const_index[5] = *((uint32_t *)StubRoutines::_crc32c_table_addr + 4);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10711
    const_or_pre_comp_const_index[4] = *((uint32_t *)StubRoutines::_crc32c_table_addr + 5);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10712
  } else {
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10713
    const_or_pre_comp_const_index[0] = 1;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10714
    const_or_pre_comp_const_index[1] = 0;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10715
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10716
    const_or_pre_comp_const_index[2] = 3;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10717
    const_or_pre_comp_const_index[3] = 2;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10718
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10719
    const_or_pre_comp_const_index[4] = 5;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10720
    const_or_pre_comp_const_index[5] = 4;
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10721
  }
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10722
  crc32c_proc_chunk(CRC32C_HIGH, const_or_pre_comp_const_index[0], const_or_pre_comp_const_index[1], is_pclmulqdq_supported,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10723
                    in2, in1, in_out,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10724
                    tmp1, tmp2, tmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10725
                    w_xtmp1, w_xtmp2, w_xtmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10726
                    tmp4, tmp5,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10727
                    tmp6);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10728
  crc32c_proc_chunk(CRC32C_MIDDLE, const_or_pre_comp_const_index[2], const_or_pre_comp_const_index[3], is_pclmulqdq_supported,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10729
                    in2, in1, in_out,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10730
                    tmp1, tmp2, tmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10731
                    w_xtmp1, w_xtmp2, w_xtmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10732
                    tmp4, tmp5,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10733
                    tmp6);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10734
  crc32c_proc_chunk(CRC32C_LOW, const_or_pre_comp_const_index[4], const_or_pre_comp_const_index[5], is_pclmulqdq_supported,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10735
                    in2, in1, in_out,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10736
                    tmp1, tmp2, tmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10737
                    w_xtmp1, w_xtmp2, w_xtmp3,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10738
                    tmp4, tmp5,
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10739
                    tmp6);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10740
  movl(tmp1, in2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10741
  andl(tmp1, 0x00000007);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10742
  negl(tmp1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10743
  addl(tmp1, in2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10744
  addl(tmp1, in1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10745
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10746
  BIND(L_wordByWord);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10747
  cmpl(in1, tmp1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10748
  jcc(Assembler::greaterEqual, L_byteByByteProlog);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10749
    crc32(in_out, Address(in1,0), 4);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10750
    addl(in1, 4);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10751
    jmp(L_wordByWord);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10752
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10753
  BIND(L_byteByByteProlog);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10754
  andl(in2, 0x00000007);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10755
  movl(tmp2, 1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10756
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10757
  BIND(L_byteByByte);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10758
  cmpl(tmp2, in2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10759
  jccb(Assembler::greater, L_exit);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10760
    movb(tmp1, Address(in1, 0));
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10761
    crc32(in_out, tmp1, 1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10762
    incl(in1);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10763
    incl(tmp2);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10764
    jmp(L_byteByByte);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10765
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10766
  BIND(L_exit);
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10767
}
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32727
diff changeset
 10768
#endif // LP64
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 10769
#undef BIND
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 10770
#undef BLOCK_COMMENT
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 10771
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10772
// Compress char[] array to byte[].
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10773
//   ..\jdk\src\java.base\share\classes\java\lang\StringUTF16.java
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10774
//   @HotSpotIntrinsicCandidate
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10775
//   private static int compress(char[] src, int srcOff, byte[] dst, int dstOff, int len) {
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10776
//     for (int i = 0; i < len; i++) {
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10777
//       int c = src[srcOff++];
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10778
//       if (c >>> 8 != 0) {
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10779
//         return 0;
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10780
//       }
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10781
//       dst[dstOff++] = (byte)c;
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10782
//     }
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10783
//     return len;
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10784
//   }
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10785
void MacroAssembler::char_array_compress(Register src, Register dst, Register len,
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10786
  XMMRegister tmp1Reg, XMMRegister tmp2Reg,
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10787
  XMMRegister tmp3Reg, XMMRegister tmp4Reg,
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10788
  Register tmp5, Register result) {
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10789
  Label copy_chars_loop, return_length, return_zero, done, below_threshold;
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10790
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10791
  // rsi: src
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10792
  // rdi: dst
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10793
  // rdx: len
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10794
  // rcx: tmp5
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10795
  // rax: result
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10796
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10797
  // rsi holds start addr of source char[] to be compressed
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10798
  // rdi holds start addr of destination byte[]
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10799
  // rdx holds length
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10800
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10801
  assert(len != result, "");
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10802
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10803
  // save length for return
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10804
  push(len);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10805
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10806
  if ((UseAVX > 2) && // AVX512
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10807
    VM_Version::supports_avx512vlbw() &&
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10808
    VM_Version::supports_bmi2()) {
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10809
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10810
    set_vector_masking();  // opening of the stub context for programming mask registers
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10811
42587
80c66fce4b3b 8165287: fix compress intrinsics to produce correct results with avx512
vdeshpande
parents: 42039
diff changeset
 10812
    Label copy_32_loop, copy_loop_tail, restore_k1_return_zero;
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10813
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10814
    // alignement
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10815
    Label post_alignement;
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10816
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10817
    // if length of the string is less than 16, handle it in an old fashioned
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10818
    // way
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10819
    testl(len, -32);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10820
    jcc(Assembler::zero, below_threshold);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10821
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10822
    // First check whether a character is compressable ( <= 0xFF).
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10823
    // Create mask to test for Unicode chars inside zmm vector
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10824
    movl(result, 0x00FF);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10825
    evpbroadcastw(tmp2Reg, result, Assembler::AVX_512bit);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10826
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10827
    // Save k1
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10828
    kmovql(k3, k1);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10829
42587
80c66fce4b3b 8165287: fix compress intrinsics to produce correct results with avx512
vdeshpande
parents: 42039
diff changeset
 10830
    testl(len, -64);
80c66fce4b3b 8165287: fix compress intrinsics to produce correct results with avx512
vdeshpande
parents: 42039
diff changeset
 10831
    jcc(Assembler::zero, post_alignement);
80c66fce4b3b 8165287: fix compress intrinsics to produce correct results with avx512
vdeshpande
parents: 42039
diff changeset
 10832
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10833
    movl(tmp5, dst);
42587
80c66fce4b3b 8165287: fix compress intrinsics to produce correct results with avx512
vdeshpande
parents: 42039
diff changeset
 10834
    andl(tmp5, (32 - 1));
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10835
    negl(tmp5);
42587
80c66fce4b3b 8165287: fix compress intrinsics to produce correct results with avx512
vdeshpande
parents: 42039
diff changeset
 10836
    andl(tmp5, (32 - 1));
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10837
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10838
    // bail out when there is nothing to be done
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10839
    testl(tmp5, 0xFFFFFFFF);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10840
    jcc(Assembler::zero, post_alignement);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10841
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10842
    // ~(~0 << len), where len is the # of remaining elements to process
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10843
    movl(result, 0xFFFFFFFF);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10844
    shlxl(result, result, tmp5);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10845
    notl(result);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10846
    kmovdl(k1, result);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10847
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10848
    evmovdquw(tmp1Reg, k1, Address(src, 0), Assembler::AVX_512bit);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10849
    evpcmpuw(k2, k1, tmp1Reg, tmp2Reg, Assembler::le, Assembler::AVX_512bit);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10850
    ktestd(k2, k1);
42587
80c66fce4b3b 8165287: fix compress intrinsics to produce correct results with avx512
vdeshpande
parents: 42039
diff changeset
 10851
    jcc(Assembler::carryClear, restore_k1_return_zero);
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10852
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10853
    evpmovwb(Address(dst, 0), k1, tmp1Reg, Assembler::AVX_512bit);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10854
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10855
    addptr(src, tmp5);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10856
    addptr(src, tmp5);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10857
    addptr(dst, tmp5);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10858
    subl(len, tmp5);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10859
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10860
    bind(post_alignement);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10861
    // end of alignement
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10862
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10863
    movl(tmp5, len);
42587
80c66fce4b3b 8165287: fix compress intrinsics to produce correct results with avx512
vdeshpande
parents: 42039
diff changeset
 10864
    andl(tmp5, (32 - 1));    // tail count (in chars)
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10865
    andl(len, ~(32 - 1));    // vector count (in chars)
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10866
    jcc(Assembler::zero, copy_loop_tail);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10867
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10868
    lea(src, Address(src, len, Address::times_2));
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10869
    lea(dst, Address(dst, len, Address::times_1));
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10870
    negptr(len);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10871
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10872
    bind(copy_32_loop);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10873
    evmovdquw(tmp1Reg, Address(src, len, Address::times_2), Assembler::AVX_512bit);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10874
    evpcmpuw(k2, tmp1Reg, tmp2Reg, Assembler::le, Assembler::AVX_512bit);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10875
    kortestdl(k2, k2);
42587
80c66fce4b3b 8165287: fix compress intrinsics to produce correct results with avx512
vdeshpande
parents: 42039
diff changeset
 10876
    jcc(Assembler::carryClear, restore_k1_return_zero);
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10877
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10878
    // All elements in current processed chunk are valid candidates for
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10879
    // compression. Write a truncated byte elements to the memory.
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10880
    evpmovwb(Address(dst, len, Address::times_1), tmp1Reg, Assembler::AVX_512bit);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10881
    addptr(len, 32);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10882
    jcc(Assembler::notZero, copy_32_loop);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10883
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10884
    bind(copy_loop_tail);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10885
    // bail out when there is nothing to be done
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10886
    testl(tmp5, 0xFFFFFFFF);
42587
80c66fce4b3b 8165287: fix compress intrinsics to produce correct results with avx512
vdeshpande
parents: 42039
diff changeset
 10887
    // Restore k1
80c66fce4b3b 8165287: fix compress intrinsics to produce correct results with avx512
vdeshpande
parents: 42039
diff changeset
 10888
    kmovql(k1, k3);
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10889
    jcc(Assembler::zero, return_length);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10890
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10891
    movl(len, tmp5);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10892
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10893
    // ~(~0 << len), where len is the # of remaining elements to process
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10894
    movl(result, 0xFFFFFFFF);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10895
    shlxl(result, result, len);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10896
    notl(result);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10897
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10898
    kmovdl(k1, result);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10899
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10900
    evmovdquw(tmp1Reg, k1, Address(src, 0), Assembler::AVX_512bit);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10901
    evpcmpuw(k2, k1, tmp1Reg, tmp2Reg, Assembler::le, Assembler::AVX_512bit);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10902
    ktestd(k2, k1);
42587
80c66fce4b3b 8165287: fix compress intrinsics to produce correct results with avx512
vdeshpande
parents: 42039
diff changeset
 10903
    jcc(Assembler::carryClear, restore_k1_return_zero);
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10904
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10905
    evpmovwb(Address(dst, 0), k1, tmp1Reg, Assembler::AVX_512bit);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10906
    // Restore k1
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10907
    kmovql(k1, k3);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10908
    jmp(return_length);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10909
42587
80c66fce4b3b 8165287: fix compress intrinsics to produce correct results with avx512
vdeshpande
parents: 42039
diff changeset
 10910
    bind(restore_k1_return_zero);
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10911
    // Restore k1
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10912
    kmovql(k1, k3);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10913
    jmp(return_zero);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10914
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10915
    clear_vector_masking();   // closing of the stub context for programming mask registers
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10916
  }
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10917
  if (UseSSE42Intrinsics) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10918
    Label copy_32_loop, copy_16, copy_tail;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10919
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10920
    bind(below_threshold);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10921
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10922
    movl(result, len);
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 10923
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10924
    movl(tmp5, 0xff00ff00);   // create mask to test for Unicode chars in vectors
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10925
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10926
    // vectored compression
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10927
    andl(len, 0xfffffff0);    // vector count (in chars)
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10928
    andl(result, 0x0000000f);    // tail count (in chars)
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10929
    testl(len, len);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10930
    jccb(Assembler::zero, copy_16);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10931
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10932
    // compress 16 chars per iter
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10933
    movdl(tmp1Reg, tmp5);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10934
    pshufd(tmp1Reg, tmp1Reg, 0);   // store Unicode mask in tmp1Reg
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10935
    pxor(tmp4Reg, tmp4Reg);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10936
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10937
    lea(src, Address(src, len, Address::times_2));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10938
    lea(dst, Address(dst, len, Address::times_1));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10939
    negptr(len);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10940
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10941
    bind(copy_32_loop);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10942
    movdqu(tmp2Reg, Address(src, len, Address::times_2));     // load 1st 8 characters
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10943
    por(tmp4Reg, tmp2Reg);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10944
    movdqu(tmp3Reg, Address(src, len, Address::times_2, 16)); // load next 8 characters
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10945
    por(tmp4Reg, tmp3Reg);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10946
    ptest(tmp4Reg, tmp1Reg);       // check for Unicode chars in next vector
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10947
    jcc(Assembler::notZero, return_zero);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10948
    packuswb(tmp2Reg, tmp3Reg);    // only ASCII chars; compress each to 1 byte
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10949
    movdqu(Address(dst, len, Address::times_1), tmp2Reg);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10950
    addptr(len, 16);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10951
    jcc(Assembler::notZero, copy_32_loop);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10952
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10953
    // compress next vector of 8 chars (if any)
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10954
    bind(copy_16);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10955
    movl(len, result);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10956
    andl(len, 0xfffffff8);    // vector count (in chars)
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10957
    andl(result, 0x00000007);    // tail count (in chars)
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10958
    testl(len, len);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10959
    jccb(Assembler::zero, copy_tail);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10960
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10961
    movdl(tmp1Reg, tmp5);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10962
    pshufd(tmp1Reg, tmp1Reg, 0);   // store Unicode mask in tmp1Reg
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10963
    pxor(tmp3Reg, tmp3Reg);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10964
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10965
    movdqu(tmp2Reg, Address(src, 0));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10966
    ptest(tmp2Reg, tmp1Reg);       // check for Unicode chars in vector
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10967
    jccb(Assembler::notZero, return_zero);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10968
    packuswb(tmp2Reg, tmp3Reg);    // only LATIN1 chars; compress each to 1 byte
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10969
    movq(Address(dst, 0), tmp2Reg);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10970
    addptr(src, 16);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10971
    addptr(dst, 8);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10972
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10973
    bind(copy_tail);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10974
    movl(len, result);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10975
  }
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10976
  // compress 1 char per iter
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10977
  testl(len, len);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10978
  jccb(Assembler::zero, return_length);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10979
  lea(src, Address(src, len, Address::times_2));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10980
  lea(dst, Address(dst, len, Address::times_1));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10981
  negptr(len);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10982
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10983
  bind(copy_chars_loop);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10984
  load_unsigned_short(result, Address(src, len, Address::times_2));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10985
  testl(result, 0xff00);      // check if Unicode char
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10986
  jccb(Assembler::notZero, return_zero);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10987
  movb(Address(dst, len, Address::times_1), result);  // ASCII char; compress to 1 byte
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10988
  increment(len);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10989
  jcc(Assembler::notZero, copy_chars_loop);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10990
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10991
  // if compression succeeded, return length
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10992
  bind(return_length);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10993
  pop(result);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10994
  jmpb(done);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10995
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10996
  // if compression failed, return 0
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10997
  bind(return_zero);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10998
  xorl(result, result);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 10999
  addptr(rsp, wordSize);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11000
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11001
  bind(done);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11002
}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11003
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11004
// Inflate byte[] array to char[].
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11005
//   ..\jdk\src\java.base\share\classes\java\lang\StringLatin1.java
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11006
//   @HotSpotIntrinsicCandidate
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11007
//   private static void inflate(byte[] src, int srcOff, char[] dst, int dstOff, int len) {
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11008
//     for (int i = 0; i < len; i++) {
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11009
//       dst[dstOff++] = (char)(src[srcOff++] & 0xff);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11010
//     }
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11011
//   }
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11012
void MacroAssembler::byte_array_inflate(Register src, Register dst, Register len,
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11013
  XMMRegister tmp1, Register tmp2) {
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11014
  Label copy_chars_loop, done, below_threshold;
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11015
  // rsi: src
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11016
  // rdi: dst
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11017
  // rdx: len
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11018
  // rcx: tmp2
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11019
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11020
  // rsi holds start addr of source byte[] to be inflated
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11021
  // rdi holds start addr of destination char[]
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11022
  // rdx holds length
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11023
  assert_different_registers(src, dst, len, tmp2);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11024
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11025
  if ((UseAVX > 2) && // AVX512
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11026
    VM_Version::supports_avx512vlbw() &&
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11027
    VM_Version::supports_bmi2()) {
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11028
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11029
    set_vector_masking();  // opening of the stub context for programming mask registers
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11030
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11031
    Label copy_32_loop, copy_tail;
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11032
    Register tmp3_aliased = len;
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11033
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11034
    // if length of the string is less than 16, handle it in an old fashioned
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11035
    // way
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11036
    testl(len, -16);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11037
    jcc(Assembler::zero, below_threshold);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11038
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11039
    // In order to use only one arithmetic operation for the main loop we use
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11040
    // this pre-calculation
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11041
    movl(tmp2, len);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11042
    andl(tmp2, (32 - 1)); // tail count (in chars), 32 element wide loop
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11043
    andl(len, -32);     // vector count
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11044
    jccb(Assembler::zero, copy_tail);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11045
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11046
    lea(src, Address(src, len, Address::times_1));
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11047
    lea(dst, Address(dst, len, Address::times_2));
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11048
    negptr(len);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11049
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11050
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11051
    // inflate 32 chars per iter
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11052
    bind(copy_32_loop);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11053
    vpmovzxbw(tmp1, Address(src, len, Address::times_1), Assembler::AVX_512bit);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11054
    evmovdquw(Address(dst, len, Address::times_2), tmp1, Assembler::AVX_512bit);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11055
    addptr(len, 32);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11056
    jcc(Assembler::notZero, copy_32_loop);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11057
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11058
    bind(copy_tail);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11059
    // bail out when there is nothing to be done
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11060
    testl(tmp2, -1); // we don't destroy the contents of tmp2 here
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11061
    jcc(Assembler::zero, done);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11062
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11063
    // Save k1
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11064
    kmovql(k2, k1);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11065
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11066
    // ~(~0 << length), where length is the # of remaining elements to process
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11067
    movl(tmp3_aliased, -1);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11068
    shlxl(tmp3_aliased, tmp3_aliased, tmp2);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11069
    notl(tmp3_aliased);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11070
    kmovdl(k1, tmp3_aliased);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11071
    evpmovzxbw(tmp1, k1, Address(src, 0), Assembler::AVX_512bit);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11072
    evmovdquw(Address(dst, 0), k1, tmp1, Assembler::AVX_512bit);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11073
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11074
    // Restore k1
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11075
    kmovql(k1, k2);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11076
    jmp(done);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11077
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11078
    clear_vector_masking();   // closing of the stub context for programming mask registers
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11079
  }
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11080
  if (UseSSE42Intrinsics) {
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11081
    Label copy_16_loop, copy_8_loop, copy_bytes, copy_new_tail, copy_tail;
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11082
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11083
    movl(tmp2, len);
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11084
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11085
    if (UseAVX > 1) {
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11086
      andl(tmp2, (16 - 1));
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11087
      andl(len, -16);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11088
      jccb(Assembler::zero, copy_new_tail);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11089
    } else {
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11090
      andl(tmp2, 0x00000007);   // tail count (in chars)
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11091
      andl(len, 0xfffffff8);    // vector count (in chars)
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11092
      jccb(Assembler::zero, copy_tail);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11093
    }
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11094
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11095
    // vectored inflation
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11096
    lea(src, Address(src, len, Address::times_1));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11097
    lea(dst, Address(dst, len, Address::times_2));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11098
    negptr(len);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11099
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11100
    if (UseAVX > 1) {
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11101
      bind(copy_16_loop);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11102
      vpmovzxbw(tmp1, Address(src, len, Address::times_1), Assembler::AVX_256bit);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11103
      vmovdqu(Address(dst, len, Address::times_2), tmp1);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11104
      addptr(len, 16);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11105
      jcc(Assembler::notZero, copy_16_loop);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11106
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11107
      bind(below_threshold);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11108
      bind(copy_new_tail);
41065
d1b98cc38f04 8164989: Inflate and compress intrinsics produce incorrect results with avx512
mcberg
parents: 40644
diff changeset
 11109
      if ((UseAVX > 2) &&
d1b98cc38f04 8164989: Inflate and compress intrinsics produce incorrect results with avx512
mcberg
parents: 40644
diff changeset
 11110
        VM_Version::supports_avx512vlbw() &&
d1b98cc38f04 8164989: Inflate and compress intrinsics produce incorrect results with avx512
mcberg
parents: 40644
diff changeset
 11111
        VM_Version::supports_bmi2()) {
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11112
        movl(tmp2, len);
41065
d1b98cc38f04 8164989: Inflate and compress intrinsics produce incorrect results with avx512
mcberg
parents: 40644
diff changeset
 11113
      } else {
38239
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11114
        movl(len, tmp2);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11115
      }
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11116
      andl(tmp2, 0x00000007);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11117
      andl(len, 0xFFFFFFF8);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11118
      jccb(Assembler::zero, copy_tail);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11119
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11120
      pmovzxbw(tmp1, Address(src, 0));
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11121
      movdqu(Address(dst, 0), tmp1);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11122
      addptr(src, 8);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11123
      addptr(dst, 2 * 8);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11124
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11125
      jmp(copy_tail, true);
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11126
    }
4d8b8ba74fea 8154974: AVX-512 equipped inflate, has_negatives & compress intrinsics
kvn
parents: 38138
diff changeset
 11127
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11128
    // inflate 8 chars per iter
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11129
    bind(copy_8_loop);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11130
    pmovzxbw(tmp1, Address(src, len, Address::times_1));  // unpack to 8 words
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11131
    movdqu(Address(dst, len, Address::times_2), tmp1);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11132
    addptr(len, 8);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11133
    jcc(Assembler::notZero, copy_8_loop);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11134
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11135
    bind(copy_tail);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11136
    movl(len, tmp2);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11137
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11138
    cmpl(len, 4);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11139
    jccb(Assembler::less, copy_bytes);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11140
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11141
    movdl(tmp1, Address(src, 0));  // load 4 byte chars
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11142
    pmovzxbw(tmp1, tmp1);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11143
    movq(Address(dst, 0), tmp1);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11144
    subptr(len, 4);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11145
    addptr(src, 4);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11146
    addptr(dst, 8);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11147
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11148
    bind(copy_bytes);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11149
  }
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11150
  testl(len, len);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11151
  jccb(Assembler::zero, done);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11152
  lea(src, Address(src, len, Address::times_1));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11153
  lea(dst, Address(dst, len, Address::times_2));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11154
  negptr(len);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11155
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11156
  // inflate 1 char per iter
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11157
  bind(copy_chars_loop);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11158
  load_unsigned_byte(tmp2, Address(src, len, Address::times_1));  // load byte char
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11159
  movw(Address(dst, len, Address::times_2), tmp2);  // inflate byte char to word
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11160
  increment(len);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11161
  jcc(Assembler::notZero, copy_chars_loop);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11162
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11163
  bind(done);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11164
}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33198
diff changeset
 11165
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11166
Assembler::Condition MacroAssembler::negate_condition(Assembler::Condition cond) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11167
  switch (cond) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11168
    // Note some conditions are synonyms for others
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11169
    case Assembler::zero:         return Assembler::notZero;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11170
    case Assembler::notZero:      return Assembler::zero;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11171
    case Assembler::less:         return Assembler::greaterEqual;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11172
    case Assembler::lessEqual:    return Assembler::greater;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11173
    case Assembler::greater:      return Assembler::lessEqual;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11174
    case Assembler::greaterEqual: return Assembler::less;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11175
    case Assembler::below:        return Assembler::aboveEqual;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11176
    case Assembler::belowEqual:   return Assembler::above;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11177
    case Assembler::above:        return Assembler::belowEqual;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11178
    case Assembler::aboveEqual:   return Assembler::below;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11179
    case Assembler::overflow:     return Assembler::noOverflow;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11180
    case Assembler::noOverflow:   return Assembler::overflow;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11181
    case Assembler::negative:     return Assembler::positive;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11182
    case Assembler::positive:     return Assembler::negative;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11183
    case Assembler::parity:       return Assembler::noParity;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11184
    case Assembler::noParity:     return Assembler::parity;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11185
  }
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11186
  ShouldNotReachHere(); return Assembler::overflow;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11187
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11188
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11189
SkipIfEqual::SkipIfEqual(
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11190
    MacroAssembler* masm, const bool* flag_addr, bool value) {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11191
  _masm = masm;
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11192
  _masm->cmp8(ExternalAddress((address)flag_addr), value);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11193
  _masm->jcc(Assembler::equal, _label);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11194
}
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11195
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11196
SkipIfEqual::~SkipIfEqual() {
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11197
  _masm->bind(_label);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents:
diff changeset
 11198
}
34633
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11199
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11200
// 32-bit Windows has its own fast-path implementation
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11201
// of get_thread
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11202
#if !defined(WIN32) || defined(_LP64)
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11203
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11204
// This is simply a call to Thread::current()
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11205
void MacroAssembler::get_thread(Register thread) {
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11206
  if (thread != rax) {
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11207
    push(rax);
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11208
  }
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11209
  LP64_ONLY(push(rdi);)
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11210
  LP64_ONLY(push(rsi);)
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11211
  push(rdx);
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11212
  push(rcx);
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11213
#ifdef _LP64
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11214
  push(r8);
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11215
  push(r9);
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11216
  push(r10);
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11217
  push(r11);
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11218
#endif
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11219
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11220
  MacroAssembler::call_VM_leaf_base(CAST_FROM_FN_PTR(address, Thread::current), 0);
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11221
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11222
#ifdef _LP64
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11223
  pop(r11);
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11224
  pop(r10);
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11225
  pop(r9);
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11226
  pop(r8);
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11227
#endif
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11228
  pop(rcx);
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11229
  pop(rdx);
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11230
  LP64_ONLY(pop(rsi);)
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11231
  LP64_ONLY(pop(rdi);)
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11232
  if (thread != rax) {
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11233
    mov(thread, rax);
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11234
    pop(rax);
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11235
  }
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11236
}
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11237
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34211
diff changeset
 11238
#endif