src/cpu/x86/vm/macroAssembler_x86.cpp

Wed, 04 Dec 2013 09:31:17 +0100

author
anoll
date
Wed, 04 Dec 2013 09:31:17 +0100
changeset 6155
61746b5f0ed3
parent 6072
be525e91f65b
child 6356
4d4ea046d32a
permissions
-rw-r--r--

8028109: compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java crashes in RT_Baseline
Summary: Use non-relocatable code to load byte_map_base
Reviewed-by: kvn, roland

twisti@4318 1 /*
drchase@5353 2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
twisti@4318 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
twisti@4318 4 *
twisti@4318 5 * This code is free software; you can redistribute it and/or modify it
twisti@4318 6 * under the terms of the GNU General Public License version 2 only, as
twisti@4318 7 * published by the Free Software Foundation.
twisti@4318 8 *
twisti@4318 9 * This code is distributed in the hope that it will be useful, but WITHOUT
twisti@4318 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
twisti@4318 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
twisti@4318 12 * version 2 for more details (a copy is included in the LICENSE file that
twisti@4318 13 * accompanied this code).
twisti@4318 14 *
twisti@4318 15 * You should have received a copy of the GNU General Public License version
twisti@4318 16 * 2 along with this work; if not, write to the Free Software Foundation,
twisti@4318 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
twisti@4318 18 *
twisti@4318 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
twisti@4318 20 * or visit www.oracle.com if you need additional information or have any
twisti@4318 21 * questions.
twisti@4318 22 *
twisti@4318 23 */
twisti@4318 24
twisti@4318 25 #include "precompiled.hpp"
twisti@4318 26 #include "asm/assembler.hpp"
twisti@4318 27 #include "asm/assembler.inline.hpp"
twisti@4318 28 #include "compiler/disassembler.hpp"
twisti@4318 29 #include "gc_interface/collectedHeap.inline.hpp"
twisti@4318 30 #include "interpreter/interpreter.hpp"
twisti@4318 31 #include "memory/cardTableModRefBS.hpp"
twisti@4318 32 #include "memory/resourceArea.hpp"
hseigel@5528 33 #include "memory/universe.hpp"
twisti@4318 34 #include "prims/methodHandles.hpp"
twisti@4318 35 #include "runtime/biasedLocking.hpp"
twisti@4318 36 #include "runtime/interfaceSupport.hpp"
twisti@4318 37 #include "runtime/objectMonitor.hpp"
twisti@4318 38 #include "runtime/os.hpp"
twisti@4318 39 #include "runtime/sharedRuntime.hpp"
twisti@4318 40 #include "runtime/stubRoutines.hpp"
jprovino@4542 41 #include "utilities/macros.hpp"
jprovino@4542 42 #if INCLUDE_ALL_GCS
twisti@4318 43 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
twisti@4318 44 #include "gc_implementation/g1/g1SATBCardTableModRefBS.hpp"
twisti@4318 45 #include "gc_implementation/g1/heapRegion.hpp"
jprovino@4542 46 #endif // INCLUDE_ALL_GCS
twisti@4318 47
twisti@4318 48 #ifdef PRODUCT
twisti@4318 49 #define BLOCK_COMMENT(str) /* nothing */
twisti@4318 50 #define STOP(error) stop(error)
twisti@4318 51 #else
twisti@4318 52 #define BLOCK_COMMENT(str) block_comment(str)
twisti@4318 53 #define STOP(error) block_comment(error); stop(error)
twisti@4318 54 #endif
twisti@4318 55
twisti@4318 56 #define BIND(label) bind(label); BLOCK_COMMENT(#label ":")
twisti@4318 57
twisti@4318 58
twisti@4323 59 #ifdef ASSERT
twisti@4323 60 bool AbstractAssembler::pd_check_instruction_mark() { return true; }
twisti@4323 61 #endif
twisti@4323 62
twisti@4318 63 static Assembler::Condition reverse[] = {
twisti@4318 64 Assembler::noOverflow /* overflow = 0x0 */ ,
twisti@4318 65 Assembler::overflow /* noOverflow = 0x1 */ ,
twisti@4318 66 Assembler::aboveEqual /* carrySet = 0x2, below = 0x2 */ ,
twisti@4318 67 Assembler::below /* aboveEqual = 0x3, carryClear = 0x3 */ ,
twisti@4318 68 Assembler::notZero /* zero = 0x4, equal = 0x4 */ ,
twisti@4318 69 Assembler::zero /* notZero = 0x5, notEqual = 0x5 */ ,
twisti@4318 70 Assembler::above /* belowEqual = 0x6 */ ,
twisti@4318 71 Assembler::belowEqual /* above = 0x7 */ ,
twisti@4318 72 Assembler::positive /* negative = 0x8 */ ,
twisti@4318 73 Assembler::negative /* positive = 0x9 */ ,
twisti@4318 74 Assembler::noParity /* parity = 0xa */ ,
twisti@4318 75 Assembler::parity /* noParity = 0xb */ ,
twisti@4318 76 Assembler::greaterEqual /* less = 0xc */ ,
twisti@4318 77 Assembler::less /* greaterEqual = 0xd */ ,
twisti@4318 78 Assembler::greater /* lessEqual = 0xe */ ,
twisti@4318 79 Assembler::lessEqual /* greater = 0xf, */
twisti@4318 80
twisti@4318 81 };
twisti@4318 82
twisti@4318 83
twisti@4318 84 // Implementation of MacroAssembler
twisti@4318 85
twisti@4318 86 // First all the versions that have distinct versions depending on 32/64 bit
twisti@4318 87 // Unless the difference is trivial (1 line or so).
twisti@4318 88
twisti@4318 89 #ifndef _LP64
twisti@4318 90
twisti@4318 91 // 32bit versions
twisti@4318 92
twisti@4318 93 Address MacroAssembler::as_Address(AddressLiteral adr) {
twisti@4318 94 return Address(adr.target(), adr.rspec());
twisti@4318 95 }
twisti@4318 96
twisti@4318 97 Address MacroAssembler::as_Address(ArrayAddress adr) {
twisti@4318 98 return Address::make_array(adr);
twisti@4318 99 }
twisti@4318 100
twisti@4318 101 int MacroAssembler::biased_locking_enter(Register lock_reg,
twisti@4318 102 Register obj_reg,
twisti@4318 103 Register swap_reg,
twisti@4318 104 Register tmp_reg,
twisti@4318 105 bool swap_reg_contains_mark,
twisti@4318 106 Label& done,
twisti@4318 107 Label* slow_case,
twisti@4318 108 BiasedLockingCounters* counters) {
twisti@4318 109 assert(UseBiasedLocking, "why call this otherwise?");
twisti@4318 110 assert(swap_reg == rax, "swap_reg must be rax, for cmpxchg");
twisti@4318 111 assert_different_registers(lock_reg, obj_reg, swap_reg);
twisti@4318 112
twisti@4318 113 if (PrintBiasedLockingStatistics && counters == NULL)
twisti@4318 114 counters = BiasedLocking::counters();
twisti@4318 115
twisti@4318 116 bool need_tmp_reg = false;
twisti@4318 117 if (tmp_reg == noreg) {
twisti@4318 118 need_tmp_reg = true;
twisti@4318 119 tmp_reg = lock_reg;
twisti@4318 120 } else {
twisti@4318 121 assert_different_registers(lock_reg, obj_reg, swap_reg, tmp_reg);
twisti@4318 122 }
twisti@4318 123 assert(markOopDesc::age_shift == markOopDesc::lock_bits + markOopDesc::biased_lock_bits, "biased locking makes assumptions about bit layout");
twisti@4318 124 Address mark_addr (obj_reg, oopDesc::mark_offset_in_bytes());
twisti@4318 125 Address klass_addr (obj_reg, oopDesc::klass_offset_in_bytes());
twisti@4318 126 Address saved_mark_addr(lock_reg, 0);
twisti@4318 127
twisti@4318 128 // Biased locking
twisti@4318 129 // See whether the lock is currently biased toward our thread and
twisti@4318 130 // whether the epoch is still valid
twisti@4318 131 // Note that the runtime guarantees sufficient alignment of JavaThread
twisti@4318 132 // pointers to allow age to be placed into low bits
twisti@4318 133 // First check to see whether biasing is even enabled for this object
twisti@4318 134 Label cas_label;
twisti@4318 135 int null_check_offset = -1;
twisti@4318 136 if (!swap_reg_contains_mark) {
twisti@4318 137 null_check_offset = offset();
twisti@4318 138 movl(swap_reg, mark_addr);
twisti@4318 139 }
twisti@4318 140 if (need_tmp_reg) {
twisti@4318 141 push(tmp_reg);
twisti@4318 142 }
twisti@4318 143 movl(tmp_reg, swap_reg);
twisti@4318 144 andl(tmp_reg, markOopDesc::biased_lock_mask_in_place);
twisti@4318 145 cmpl(tmp_reg, markOopDesc::biased_lock_pattern);
twisti@4318 146 if (need_tmp_reg) {
twisti@4318 147 pop(tmp_reg);
twisti@4318 148 }
twisti@4318 149 jcc(Assembler::notEqual, cas_label);
twisti@4318 150 // The bias pattern is present in the object's header. Need to check
twisti@4318 151 // whether the bias owner and the epoch are both still current.
twisti@4318 152 // Note that because there is no current thread register on x86 we
twisti@4318 153 // need to store off the mark word we read out of the object to
twisti@4318 154 // avoid reloading it and needing to recheck invariants below. This
twisti@4318 155 // store is unfortunate but it makes the overall code shorter and
twisti@4318 156 // simpler.
twisti@4318 157 movl(saved_mark_addr, swap_reg);
twisti@4318 158 if (need_tmp_reg) {
twisti@4318 159 push(tmp_reg);
twisti@4318 160 }
twisti@4318 161 get_thread(tmp_reg);
twisti@4318 162 xorl(swap_reg, tmp_reg);
twisti@4318 163 if (swap_reg_contains_mark) {
twisti@4318 164 null_check_offset = offset();
twisti@4318 165 }
twisti@4318 166 movl(tmp_reg, klass_addr);
twisti@4318 167 xorl(swap_reg, Address(tmp_reg, Klass::prototype_header_offset()));
twisti@4318 168 andl(swap_reg, ~((int) markOopDesc::age_mask_in_place));
twisti@4318 169 if (need_tmp_reg) {
twisti@4318 170 pop(tmp_reg);
twisti@4318 171 }
twisti@4318 172 if (counters != NULL) {
twisti@4318 173 cond_inc32(Assembler::zero,
twisti@4318 174 ExternalAddress((address)counters->biased_lock_entry_count_addr()));
twisti@4318 175 }
twisti@4318 176 jcc(Assembler::equal, done);
twisti@4318 177
twisti@4318 178 Label try_revoke_bias;
twisti@4318 179 Label try_rebias;
twisti@4318 180
twisti@4318 181 // At this point we know that the header has the bias pattern and
twisti@4318 182 // that we are not the bias owner in the current epoch. We need to
twisti@4318 183 // figure out more details about the state of the header in order to
twisti@4318 184 // know what operations can be legally performed on the object's
twisti@4318 185 // header.
twisti@4318 186
twisti@4318 187 // If the low three bits in the xor result aren't clear, that means
twisti@4318 188 // the prototype header is no longer biased and we have to revoke
twisti@4318 189 // the bias on this object.
twisti@4318 190 testl(swap_reg, markOopDesc::biased_lock_mask_in_place);
twisti@4318 191 jcc(Assembler::notZero, try_revoke_bias);
twisti@4318 192
twisti@4318 193 // Biasing is still enabled for this data type. See whether the
twisti@4318 194 // epoch of the current bias is still valid, meaning that the epoch
twisti@4318 195 // bits of the mark word are equal to the epoch bits of the
twisti@4318 196 // prototype header. (Note that the prototype header's epoch bits
twisti@4318 197 // only change at a safepoint.) If not, attempt to rebias the object
twisti@4318 198 // toward the current thread. Note that we must be absolutely sure
twisti@4318 199 // that the current epoch is invalid in order to do this because
twisti@4318 200 // otherwise the manipulations it performs on the mark word are
twisti@4318 201 // illegal.
twisti@4318 202 testl(swap_reg, markOopDesc::epoch_mask_in_place);
twisti@4318 203 jcc(Assembler::notZero, try_rebias);
twisti@4318 204
twisti@4318 205 // The epoch of the current bias is still valid but we know nothing
twisti@4318 206 // about the owner; it might be set or it might be clear. Try to
twisti@4318 207 // acquire the bias of the object using an atomic operation. If this
twisti@4318 208 // fails we will go in to the runtime to revoke the object's bias.
twisti@4318 209 // Note that we first construct the presumed unbiased header so we
twisti@4318 210 // don't accidentally blow away another thread's valid bias.
twisti@4318 211 movl(swap_reg, saved_mark_addr);
twisti@4318 212 andl(swap_reg,
twisti@4318 213 markOopDesc::biased_lock_mask_in_place | markOopDesc::age_mask_in_place | markOopDesc::epoch_mask_in_place);
twisti@4318 214 if (need_tmp_reg) {
twisti@4318 215 push(tmp_reg);
twisti@4318 216 }
twisti@4318 217 get_thread(tmp_reg);
twisti@4318 218 orl(tmp_reg, swap_reg);
twisti@4318 219 if (os::is_MP()) {
twisti@4318 220 lock();
twisti@4318 221 }
twisti@4318 222 cmpxchgptr(tmp_reg, Address(obj_reg, 0));
twisti@4318 223 if (need_tmp_reg) {
twisti@4318 224 pop(tmp_reg);
twisti@4318 225 }
twisti@4318 226 // If the biasing toward our thread failed, this means that
twisti@4318 227 // another thread succeeded in biasing it toward itself and we
twisti@4318 228 // need to revoke that bias. The revocation will occur in the
twisti@4318 229 // interpreter runtime in the slow case.
twisti@4318 230 if (counters != NULL) {
twisti@4318 231 cond_inc32(Assembler::zero,
twisti@4318 232 ExternalAddress((address)counters->anonymously_biased_lock_entry_count_addr()));
twisti@4318 233 }
twisti@4318 234 if (slow_case != NULL) {
twisti@4318 235 jcc(Assembler::notZero, *slow_case);
twisti@4318 236 }
twisti@4318 237 jmp(done);
twisti@4318 238
twisti@4318 239 bind(try_rebias);
twisti@4318 240 // At this point we know the epoch has expired, meaning that the
twisti@4318 241 // current "bias owner", if any, is actually invalid. Under these
twisti@4318 242 // circumstances _only_, we are allowed to use the current header's
twisti@4318 243 // value as the comparison value when doing the cas to acquire the
twisti@4318 244 // bias in the current epoch. In other words, we allow transfer of
twisti@4318 245 // the bias from one thread to another directly in this situation.
twisti@4318 246 //
twisti@4318 247 // FIXME: due to a lack of registers we currently blow away the age
twisti@4318 248 // bits in this situation. Should attempt to preserve them.
twisti@4318 249 if (need_tmp_reg) {
twisti@4318 250 push(tmp_reg);
twisti@4318 251 }
twisti@4318 252 get_thread(tmp_reg);
twisti@4318 253 movl(swap_reg, klass_addr);
twisti@4318 254 orl(tmp_reg, Address(swap_reg, Klass::prototype_header_offset()));
twisti@4318 255 movl(swap_reg, saved_mark_addr);
twisti@4318 256 if (os::is_MP()) {
twisti@4318 257 lock();
twisti@4318 258 }
twisti@4318 259 cmpxchgptr(tmp_reg, Address(obj_reg, 0));
twisti@4318 260 if (need_tmp_reg) {
twisti@4318 261 pop(tmp_reg);
twisti@4318 262 }
twisti@4318 263 // If the biasing toward our thread failed, then another thread
twisti@4318 264 // succeeded in biasing it toward itself and we need to revoke that
twisti@4318 265 // bias. The revocation will occur in the runtime in the slow case.
twisti@4318 266 if (counters != NULL) {
twisti@4318 267 cond_inc32(Assembler::zero,
twisti@4318 268 ExternalAddress((address)counters->rebiased_lock_entry_count_addr()));
twisti@4318 269 }
twisti@4318 270 if (slow_case != NULL) {
twisti@4318 271 jcc(Assembler::notZero, *slow_case);
twisti@4318 272 }
twisti@4318 273 jmp(done);
twisti@4318 274
twisti@4318 275 bind(try_revoke_bias);
twisti@4318 276 // The prototype mark in the klass doesn't have the bias bit set any
twisti@4318 277 // more, indicating that objects of this data type are not supposed
twisti@4318 278 // to be biased any more. We are going to try to reset the mark of
twisti@4318 279 // this object to the prototype value and fall through to the
twisti@4318 280 // CAS-based locking scheme. Note that if our CAS fails, it means
twisti@4318 281 // that another thread raced us for the privilege of revoking the
twisti@4318 282 // bias of this particular object, so it's okay to continue in the
twisti@4318 283 // normal locking code.
twisti@4318 284 //
twisti@4318 285 // FIXME: due to a lack of registers we currently blow away the age
twisti@4318 286 // bits in this situation. Should attempt to preserve them.
twisti@4318 287 movl(swap_reg, saved_mark_addr);
twisti@4318 288 if (need_tmp_reg) {
twisti@4318 289 push(tmp_reg);
twisti@4318 290 }
twisti@4318 291 movl(tmp_reg, klass_addr);
twisti@4318 292 movl(tmp_reg, Address(tmp_reg, Klass::prototype_header_offset()));
twisti@4318 293 if (os::is_MP()) {
twisti@4318 294 lock();
twisti@4318 295 }
twisti@4318 296 cmpxchgptr(tmp_reg, Address(obj_reg, 0));
twisti@4318 297 if (need_tmp_reg) {
twisti@4318 298 pop(tmp_reg);
twisti@4318 299 }
twisti@4318 300 // Fall through to the normal CAS-based lock, because no matter what
twisti@4318 301 // the result of the above CAS, some thread must have succeeded in
twisti@4318 302 // removing the bias bit from the object's header.
twisti@4318 303 if (counters != NULL) {
twisti@4318 304 cond_inc32(Assembler::zero,
twisti@4318 305 ExternalAddress((address)counters->revoked_lock_entry_count_addr()));
twisti@4318 306 }
twisti@4318 307
twisti@4318 308 bind(cas_label);
twisti@4318 309
twisti@4318 310 return null_check_offset;
twisti@4318 311 }
twisti@4318 312 void MacroAssembler::call_VM_leaf_base(address entry_point,
twisti@4318 313 int number_of_arguments) {
twisti@4318 314 call(RuntimeAddress(entry_point));
twisti@4318 315 increment(rsp, number_of_arguments * wordSize);
twisti@4318 316 }
twisti@4318 317
twisti@4318 318 void MacroAssembler::cmpklass(Address src1, Metadata* obj) {
twisti@4318 319 cmp_literal32(src1, (int32_t)obj, metadata_Relocation::spec_for_immediate());
twisti@4318 320 }
twisti@4318 321
twisti@4318 322 void MacroAssembler::cmpklass(Register src1, Metadata* obj) {
twisti@4318 323 cmp_literal32(src1, (int32_t)obj, metadata_Relocation::spec_for_immediate());
twisti@4318 324 }
twisti@4318 325
twisti@4318 326 void MacroAssembler::cmpoop(Address src1, jobject obj) {
twisti@4318 327 cmp_literal32(src1, (int32_t)obj, oop_Relocation::spec_for_immediate());
twisti@4318 328 }
twisti@4318 329
twisti@4318 330 void MacroAssembler::cmpoop(Register src1, jobject obj) {
twisti@4318 331 cmp_literal32(src1, (int32_t)obj, oop_Relocation::spec_for_immediate());
twisti@4318 332 }
twisti@4318 333
twisti@4318 334 void MacroAssembler::extend_sign(Register hi, Register lo) {
twisti@4318 335 // According to Intel Doc. AP-526, "Integer Divide", p.18.
twisti@4318 336 if (VM_Version::is_P6() && hi == rdx && lo == rax) {
twisti@4318 337 cdql();
twisti@4318 338 } else {
twisti@4318 339 movl(hi, lo);
twisti@4318 340 sarl(hi, 31);
twisti@4318 341 }
twisti@4318 342 }
twisti@4318 343
twisti@4318 344 void MacroAssembler::jC2(Register tmp, Label& L) {
twisti@4318 345 // set parity bit if FPU flag C2 is set (via rax)
twisti@4318 346 save_rax(tmp);
twisti@4318 347 fwait(); fnstsw_ax();
twisti@4318 348 sahf();
twisti@4318 349 restore_rax(tmp);
twisti@4318 350 // branch
twisti@4318 351 jcc(Assembler::parity, L);
twisti@4318 352 }
twisti@4318 353
twisti@4318 354 void MacroAssembler::jnC2(Register tmp, Label& L) {
twisti@4318 355 // set parity bit if FPU flag C2 is set (via rax)
twisti@4318 356 save_rax(tmp);
twisti@4318 357 fwait(); fnstsw_ax();
twisti@4318 358 sahf();
twisti@4318 359 restore_rax(tmp);
twisti@4318 360 // branch
twisti@4318 361 jcc(Assembler::noParity, L);
twisti@4318 362 }
twisti@4318 363
twisti@4318 364 // 32bit can do a case table jump in one instruction but we no longer allow the base
twisti@4318 365 // to be installed in the Address class
twisti@4318 366 void MacroAssembler::jump(ArrayAddress entry) {
twisti@4318 367 jmp(as_Address(entry));
twisti@4318 368 }
twisti@4318 369
twisti@4318 370 // Note: y_lo will be destroyed
twisti@4318 371 void MacroAssembler::lcmp2int(Register x_hi, Register x_lo, Register y_hi, Register y_lo) {
twisti@4318 372 // Long compare for Java (semantics as described in JVM spec.)
twisti@4318 373 Label high, low, done;
twisti@4318 374
twisti@4318 375 cmpl(x_hi, y_hi);
twisti@4318 376 jcc(Assembler::less, low);
twisti@4318 377 jcc(Assembler::greater, high);
twisti@4318 378 // x_hi is the return register
twisti@4318 379 xorl(x_hi, x_hi);
twisti@4318 380 cmpl(x_lo, y_lo);
twisti@4318 381 jcc(Assembler::below, low);
twisti@4318 382 jcc(Assembler::equal, done);
twisti@4318 383
twisti@4318 384 bind(high);
twisti@4318 385 xorl(x_hi, x_hi);
twisti@4318 386 increment(x_hi);
twisti@4318 387 jmp(done);
twisti@4318 388
twisti@4318 389 bind(low);
twisti@4318 390 xorl(x_hi, x_hi);
twisti@4318 391 decrementl(x_hi);
twisti@4318 392
twisti@4318 393 bind(done);
twisti@4318 394 }
twisti@4318 395
twisti@4318 396 void MacroAssembler::lea(Register dst, AddressLiteral src) {
twisti@4318 397 mov_literal32(dst, (int32_t)src.target(), src.rspec());
twisti@4318 398 }
twisti@4318 399
twisti@4318 400 void MacroAssembler::lea(Address dst, AddressLiteral adr) {
twisti@4318 401 // leal(dst, as_Address(adr));
twisti@4318 402 // see note in movl as to why we must use a move
twisti@4318 403 mov_literal32(dst, (int32_t) adr.target(), adr.rspec());
twisti@4318 404 }
twisti@4318 405
twisti@4318 406 void MacroAssembler::leave() {
twisti@4318 407 mov(rsp, rbp);
twisti@4318 408 pop(rbp);
twisti@4318 409 }
twisti@4318 410
twisti@4318 411 void MacroAssembler::lmul(int x_rsp_offset, int y_rsp_offset) {
twisti@4318 412 // Multiplication of two Java long values stored on the stack
twisti@4318 413 // as illustrated below. Result is in rdx:rax.
twisti@4318 414 //
twisti@4318 415 // rsp ---> [ ?? ] \ \
twisti@4318 416 // .... | y_rsp_offset |
twisti@4318 417 // [ y_lo ] / (in bytes) | x_rsp_offset
twisti@4318 418 // [ y_hi ] | (in bytes)
twisti@4318 419 // .... |
twisti@4318 420 // [ x_lo ] /
twisti@4318 421 // [ x_hi ]
twisti@4318 422 // ....
twisti@4318 423 //
twisti@4318 424 // Basic idea: lo(result) = lo(x_lo * y_lo)
twisti@4318 425 // hi(result) = hi(x_lo * y_lo) + lo(x_hi * y_lo) + lo(x_lo * y_hi)
twisti@4318 426 Address x_hi(rsp, x_rsp_offset + wordSize); Address x_lo(rsp, x_rsp_offset);
twisti@4318 427 Address y_hi(rsp, y_rsp_offset + wordSize); Address y_lo(rsp, y_rsp_offset);
twisti@4318 428 Label quick;
twisti@4318 429 // load x_hi, y_hi and check if quick
twisti@4318 430 // multiplication is possible
twisti@4318 431 movl(rbx, x_hi);
twisti@4318 432 movl(rcx, y_hi);
twisti@4318 433 movl(rax, rbx);
twisti@4318 434 orl(rbx, rcx); // rbx, = 0 <=> x_hi = 0 and y_hi = 0
twisti@4318 435 jcc(Assembler::zero, quick); // if rbx, = 0 do quick multiply
twisti@4318 436 // do full multiplication
twisti@4318 437 // 1st step
twisti@4318 438 mull(y_lo); // x_hi * y_lo
twisti@4318 439 movl(rbx, rax); // save lo(x_hi * y_lo) in rbx,
twisti@4318 440 // 2nd step
twisti@4318 441 movl(rax, x_lo);
twisti@4318 442 mull(rcx); // x_lo * y_hi
twisti@4318 443 addl(rbx, rax); // add lo(x_lo * y_hi) to rbx,
twisti@4318 444 // 3rd step
twisti@4318 445 bind(quick); // note: rbx, = 0 if quick multiply!
twisti@4318 446 movl(rax, x_lo);
twisti@4318 447 mull(y_lo); // x_lo * y_lo
twisti@4318 448 addl(rdx, rbx); // correct hi(x_lo * y_lo)
twisti@4318 449 }
twisti@4318 450
twisti@4318 451 void MacroAssembler::lneg(Register hi, Register lo) {
twisti@4318 452 negl(lo);
twisti@4318 453 adcl(hi, 0);
twisti@4318 454 negl(hi);
twisti@4318 455 }
twisti@4318 456
twisti@4318 457 void MacroAssembler::lshl(Register hi, Register lo) {
twisti@4318 458 // Java shift left long support (semantics as described in JVM spec., p.305)
twisti@4318 459 // (basic idea for shift counts s >= n: x << s == (x << n) << (s - n))
twisti@4318 460 // shift value is in rcx !
twisti@4318 461 assert(hi != rcx, "must not use rcx");
twisti@4318 462 assert(lo != rcx, "must not use rcx");
twisti@4318 463 const Register s = rcx; // shift count
twisti@4318 464 const int n = BitsPerWord;
twisti@4318 465 Label L;
twisti@4318 466 andl(s, 0x3f); // s := s & 0x3f (s < 0x40)
twisti@4318 467 cmpl(s, n); // if (s < n)
twisti@4318 468 jcc(Assembler::less, L); // else (s >= n)
twisti@4318 469 movl(hi, lo); // x := x << n
twisti@4318 470 xorl(lo, lo);
twisti@4318 471 // Note: subl(s, n) is not needed since the Intel shift instructions work rcx mod n!
twisti@4318 472 bind(L); // s (mod n) < n
twisti@4318 473 shldl(hi, lo); // x := x << s
twisti@4318 474 shll(lo);
twisti@4318 475 }
twisti@4318 476
twisti@4318 477
twisti@4318 478 void MacroAssembler::lshr(Register hi, Register lo, bool sign_extension) {
twisti@4318 479 // Java shift right long support (semantics as described in JVM spec., p.306 & p.310)
twisti@4318 480 // (basic idea for shift counts s >= n: x >> s == (x >> n) >> (s - n))
twisti@4318 481 assert(hi != rcx, "must not use rcx");
twisti@4318 482 assert(lo != rcx, "must not use rcx");
twisti@4318 483 const Register s = rcx; // shift count
twisti@4318 484 const int n = BitsPerWord;
twisti@4318 485 Label L;
twisti@4318 486 andl(s, 0x3f); // s := s & 0x3f (s < 0x40)
twisti@4318 487 cmpl(s, n); // if (s < n)
twisti@4318 488 jcc(Assembler::less, L); // else (s >= n)
twisti@4318 489 movl(lo, hi); // x := x >> n
twisti@4318 490 if (sign_extension) sarl(hi, 31);
twisti@4318 491 else xorl(hi, hi);
twisti@4318 492 // Note: subl(s, n) is not needed since the Intel shift instructions work rcx mod n!
twisti@4318 493 bind(L); // s (mod n) < n
twisti@4318 494 shrdl(lo, hi); // x := x >> s
twisti@4318 495 if (sign_extension) sarl(hi);
twisti@4318 496 else shrl(hi);
twisti@4318 497 }
twisti@4318 498
twisti@4318 499 void MacroAssembler::movoop(Register dst, jobject obj) {
twisti@4318 500 mov_literal32(dst, (int32_t)obj, oop_Relocation::spec_for_immediate());
twisti@4318 501 }
twisti@4318 502
twisti@4318 503 void MacroAssembler::movoop(Address dst, jobject obj) {
twisti@4318 504 mov_literal32(dst, (int32_t)obj, oop_Relocation::spec_for_immediate());
twisti@4318 505 }
twisti@4318 506
twisti@4318 507 void MacroAssembler::mov_metadata(Register dst, Metadata* obj) {
twisti@4318 508 mov_literal32(dst, (int32_t)obj, metadata_Relocation::spec_for_immediate());
twisti@4318 509 }
twisti@4318 510
twisti@4318 511 void MacroAssembler::mov_metadata(Address dst, Metadata* obj) {
twisti@4318 512 mov_literal32(dst, (int32_t)obj, metadata_Relocation::spec_for_immediate());
twisti@4318 513 }
twisti@4318 514
twisti@4318 515 void MacroAssembler::movptr(Register dst, AddressLiteral src) {
twisti@4318 516 if (src.is_lval()) {
twisti@4318 517 mov_literal32(dst, (intptr_t)src.target(), src.rspec());
twisti@4318 518 } else {
twisti@4318 519 movl(dst, as_Address(src));
twisti@4318 520 }
twisti@4318 521 }
twisti@4318 522
twisti@4318 523 void MacroAssembler::movptr(ArrayAddress dst, Register src) {
twisti@4318 524 movl(as_Address(dst), src);
twisti@4318 525 }
twisti@4318 526
twisti@4318 527 void MacroAssembler::movptr(Register dst, ArrayAddress src) {
twisti@4318 528 movl(dst, as_Address(src));
twisti@4318 529 }
twisti@4318 530
twisti@4318 531 // src should NEVER be a real pointer. Use AddressLiteral for true pointers
twisti@4318 532 void MacroAssembler::movptr(Address dst, intptr_t src) {
twisti@4318 533 movl(dst, src);
twisti@4318 534 }
twisti@4318 535
twisti@4318 536
twisti@4318 537 void MacroAssembler::pop_callee_saved_registers() {
twisti@4318 538 pop(rcx);
twisti@4318 539 pop(rdx);
twisti@4318 540 pop(rdi);
twisti@4318 541 pop(rsi);
twisti@4318 542 }
twisti@4318 543
twisti@4318 544 void MacroAssembler::pop_fTOS() {
twisti@4318 545 fld_d(Address(rsp, 0));
twisti@4318 546 addl(rsp, 2 * wordSize);
twisti@4318 547 }
twisti@4318 548
twisti@4318 549 void MacroAssembler::push_callee_saved_registers() {
twisti@4318 550 push(rsi);
twisti@4318 551 push(rdi);
twisti@4318 552 push(rdx);
twisti@4318 553 push(rcx);
twisti@4318 554 }
twisti@4318 555
twisti@4318 556 void MacroAssembler::push_fTOS() {
twisti@4318 557 subl(rsp, 2 * wordSize);
twisti@4318 558 fstp_d(Address(rsp, 0));
twisti@4318 559 }
twisti@4318 560
twisti@4318 561
twisti@4318 562 void MacroAssembler::pushoop(jobject obj) {
twisti@4318 563 push_literal32((int32_t)obj, oop_Relocation::spec_for_immediate());
twisti@4318 564 }
twisti@4318 565
twisti@4318 566 void MacroAssembler::pushklass(Metadata* obj) {
twisti@4318 567 push_literal32((int32_t)obj, metadata_Relocation::spec_for_immediate());
twisti@4318 568 }
twisti@4318 569
twisti@4318 570 void MacroAssembler::pushptr(AddressLiteral src) {
twisti@4318 571 if (src.is_lval()) {
twisti@4318 572 push_literal32((int32_t)src.target(), src.rspec());
twisti@4318 573 } else {
twisti@4318 574 pushl(as_Address(src));
twisti@4318 575 }
twisti@4318 576 }
twisti@4318 577
twisti@4318 578 void MacroAssembler::set_word_if_not_zero(Register dst) {
twisti@4318 579 xorl(dst, dst);
twisti@4318 580 set_byte_if_not_zero(dst);
twisti@4318 581 }
twisti@4318 582
twisti@4318 583 static void pass_arg0(MacroAssembler* masm, Register arg) {
twisti@4318 584 masm->push(arg);
twisti@4318 585 }
twisti@4318 586
twisti@4318 587 static void pass_arg1(MacroAssembler* masm, Register arg) {
twisti@4318 588 masm->push(arg);
twisti@4318 589 }
twisti@4318 590
twisti@4318 591 static void pass_arg2(MacroAssembler* masm, Register arg) {
twisti@4318 592 masm->push(arg);
twisti@4318 593 }
twisti@4318 594
twisti@4318 595 static void pass_arg3(MacroAssembler* masm, Register arg) {
twisti@4318 596 masm->push(arg);
twisti@4318 597 }
twisti@4318 598
twisti@4318 599 #ifndef PRODUCT
twisti@4318 600 extern "C" void findpc(intptr_t x);
twisti@4318 601 #endif
twisti@4318 602
twisti@4318 603 void MacroAssembler::debug32(int rdi, int rsi, int rbp, int rsp, int rbx, int rdx, int rcx, int rax, int eip, char* msg) {
twisti@4318 604 // In order to get locks to work, we need to fake a in_VM state
twisti@4318 605 JavaThread* thread = JavaThread::current();
twisti@4318 606 JavaThreadState saved_state = thread->thread_state();
twisti@4318 607 thread->set_thread_state(_thread_in_vm);
twisti@4318 608 if (ShowMessageBoxOnError) {
twisti@4318 609 JavaThread* thread = JavaThread::current();
twisti@4318 610 JavaThreadState saved_state = thread->thread_state();
twisti@4318 611 thread->set_thread_state(_thread_in_vm);
twisti@4318 612 if (CountBytecodes || TraceBytecodes || StopInterpreterAt) {
twisti@4318 613 ttyLocker ttyl;
twisti@4318 614 BytecodeCounter::print();
twisti@4318 615 }
twisti@4318 616 // To see where a verify_oop failed, get $ebx+40/X for this frame.
twisti@4318 617 // This is the value of eip which points to where verify_oop will return.
twisti@4318 618 if (os::message_box(msg, "Execution stopped, print registers?")) {
twisti@4318 619 print_state32(rdi, rsi, rbp, rsp, rbx, rdx, rcx, rax, eip);
twisti@4318 620 BREAKPOINT;
twisti@4318 621 }
twisti@4318 622 } else {
twisti@4318 623 ttyLocker ttyl;
twisti@4318 624 ::tty->print_cr("=============== DEBUG MESSAGE: %s ================\n", msg);
twisti@4318 625 }
twisti@4318 626 // Don't assert holding the ttyLock
twisti@4318 627 assert(false, err_msg("DEBUG MESSAGE: %s", msg));
twisti@4318 628 ThreadStateTransition::transition(thread, _thread_in_vm, saved_state);
twisti@4318 629 }
twisti@4318 630
twisti@4318 631 void MacroAssembler::print_state32(int rdi, int rsi, int rbp, int rsp, int rbx, int rdx, int rcx, int rax, int eip) {
twisti@4318 632 ttyLocker ttyl;
twisti@4318 633 FlagSetting fs(Debugging, true);
twisti@4318 634 tty->print_cr("eip = 0x%08x", eip);
twisti@4318 635 #ifndef PRODUCT
twisti@4318 636 if ((WizardMode || Verbose) && PrintMiscellaneous) {
twisti@4318 637 tty->cr();
twisti@4318 638 findpc(eip);
twisti@4318 639 tty->cr();
twisti@4318 640 }
twisti@4318 641 #endif
twisti@4318 642 #define PRINT_REG(rax) \
twisti@4318 643 { tty->print("%s = ", #rax); os::print_location(tty, rax); }
twisti@4318 644 PRINT_REG(rax);
twisti@4318 645 PRINT_REG(rbx);
twisti@4318 646 PRINT_REG(rcx);
twisti@4318 647 PRINT_REG(rdx);
twisti@4318 648 PRINT_REG(rdi);
twisti@4318 649 PRINT_REG(rsi);
twisti@4318 650 PRINT_REG(rbp);
twisti@4318 651 PRINT_REG(rsp);
twisti@4318 652 #undef PRINT_REG
twisti@4318 653 // Print some words near top of staack.
twisti@4318 654 int* dump_sp = (int*) rsp;
twisti@4318 655 for (int col1 = 0; col1 < 8; col1++) {
twisti@4318 656 tty->print("(rsp+0x%03x) 0x%08x: ", (int)((intptr_t)dump_sp - (intptr_t)rsp), (intptr_t)dump_sp);
twisti@4318 657 os::print_location(tty, *dump_sp++);
twisti@4318 658 }
twisti@4318 659 for (int row = 0; row < 16; row++) {
twisti@4318 660 tty->print("(rsp+0x%03x) 0x%08x: ", (int)((intptr_t)dump_sp - (intptr_t)rsp), (intptr_t)dump_sp);
twisti@4318 661 for (int col = 0; col < 8; col++) {
twisti@4318 662 tty->print(" 0x%08x", *dump_sp++);
twisti@4318 663 }
twisti@4318 664 tty->cr();
twisti@4318 665 }
twisti@4318 666 // Print some instructions around pc:
twisti@4318 667 Disassembler::decode((address)eip-64, (address)eip);
twisti@4318 668 tty->print_cr("--------");
twisti@4318 669 Disassembler::decode((address)eip, (address)eip+32);
twisti@4318 670 }
twisti@4318 671
twisti@4318 672 void MacroAssembler::stop(const char* msg) {
twisti@4318 673 ExternalAddress message((address)msg);
twisti@4318 674 // push address of message
twisti@4318 675 pushptr(message.addr());
twisti@4318 676 { Label L; call(L, relocInfo::none); bind(L); } // push eip
twisti@4318 677 pusha(); // push registers
twisti@4318 678 call(RuntimeAddress(CAST_FROM_FN_PTR(address, MacroAssembler::debug32)));
twisti@4318 679 hlt();
twisti@4318 680 }
twisti@4318 681
twisti@4318 682 void MacroAssembler::warn(const char* msg) {
twisti@4318 683 push_CPU_state();
twisti@4318 684
twisti@4318 685 ExternalAddress message((address) msg);
twisti@4318 686 // push address of message
twisti@4318 687 pushptr(message.addr());
twisti@4318 688
twisti@4318 689 call(RuntimeAddress(CAST_FROM_FN_PTR(address, warning)));
twisti@4318 690 addl(rsp, wordSize); // discard argument
twisti@4318 691 pop_CPU_state();
twisti@4318 692 }
twisti@4318 693
twisti@4318 694 void MacroAssembler::print_state() {
twisti@4318 695 { Label L; call(L, relocInfo::none); bind(L); } // push eip
twisti@4318 696 pusha(); // push registers
twisti@4318 697
twisti@4318 698 push_CPU_state();
twisti@4318 699 call(RuntimeAddress(CAST_FROM_FN_PTR(address, MacroAssembler::print_state32)));
twisti@4318 700 pop_CPU_state();
twisti@4318 701
twisti@4318 702 popa();
twisti@4318 703 addl(rsp, wordSize);
twisti@4318 704 }
twisti@4318 705
twisti@4318 706 #else // _LP64
twisti@4318 707
twisti@4318 708 // 64 bit versions
twisti@4318 709
twisti@4318 710 Address MacroAssembler::as_Address(AddressLiteral adr) {
twisti@4318 711 // amd64 always does this as a pc-rel
twisti@4318 712 // we can be absolute or disp based on the instruction type
twisti@4318 713 // jmp/call are displacements others are absolute
twisti@4318 714 assert(!adr.is_lval(), "must be rval");
twisti@4318 715 assert(reachable(adr), "must be");
twisti@4318 716 return Address((int32_t)(intptr_t)(adr.target() - pc()), adr.target(), adr.reloc());
twisti@4318 717
twisti@4318 718 }
twisti@4318 719
twisti@4318 720 Address MacroAssembler::as_Address(ArrayAddress adr) {
twisti@4318 721 AddressLiteral base = adr.base();
twisti@4318 722 lea(rscratch1, base);
twisti@4318 723 Address index = adr.index();
twisti@4318 724 assert(index._disp == 0, "must not have disp"); // maybe it can?
twisti@4318 725 Address array(rscratch1, index._index, index._scale, index._disp);
twisti@4318 726 return array;
twisti@4318 727 }
twisti@4318 728
twisti@4318 729 int MacroAssembler::biased_locking_enter(Register lock_reg,
twisti@4318 730 Register obj_reg,
twisti@4318 731 Register swap_reg,
twisti@4318 732 Register tmp_reg,
twisti@4318 733 bool swap_reg_contains_mark,
twisti@4318 734 Label& done,
twisti@4318 735 Label* slow_case,
twisti@4318 736 BiasedLockingCounters* counters) {
twisti@4318 737 assert(UseBiasedLocking, "why call this otherwise?");
twisti@4318 738 assert(swap_reg == rax, "swap_reg must be rax for cmpxchgq");
twisti@4318 739 assert(tmp_reg != noreg, "tmp_reg must be supplied");
twisti@4318 740 assert_different_registers(lock_reg, obj_reg, swap_reg, tmp_reg);
twisti@4318 741 assert(markOopDesc::age_shift == markOopDesc::lock_bits + markOopDesc::biased_lock_bits, "biased locking makes assumptions about bit layout");
twisti@4318 742 Address mark_addr (obj_reg, oopDesc::mark_offset_in_bytes());
twisti@4318 743 Address saved_mark_addr(lock_reg, 0);
twisti@4318 744
twisti@4318 745 if (PrintBiasedLockingStatistics && counters == NULL)
twisti@4318 746 counters = BiasedLocking::counters();
twisti@4318 747
twisti@4318 748 // Biased locking
twisti@4318 749 // See whether the lock is currently biased toward our thread and
twisti@4318 750 // whether the epoch is still valid
twisti@4318 751 // Note that the runtime guarantees sufficient alignment of JavaThread
twisti@4318 752 // pointers to allow age to be placed into low bits
twisti@4318 753 // First check to see whether biasing is even enabled for this object
twisti@4318 754 Label cas_label;
twisti@4318 755 int null_check_offset = -1;
twisti@4318 756 if (!swap_reg_contains_mark) {
twisti@4318 757 null_check_offset = offset();
twisti@4318 758 movq(swap_reg, mark_addr);
twisti@4318 759 }
twisti@4318 760 movq(tmp_reg, swap_reg);
twisti@4318 761 andq(tmp_reg, markOopDesc::biased_lock_mask_in_place);
twisti@4318 762 cmpq(tmp_reg, markOopDesc::biased_lock_pattern);
twisti@4318 763 jcc(Assembler::notEqual, cas_label);
twisti@4318 764 // The bias pattern is present in the object's header. Need to check
twisti@4318 765 // whether the bias owner and the epoch are both still current.
twisti@4318 766 load_prototype_header(tmp_reg, obj_reg);
twisti@4318 767 orq(tmp_reg, r15_thread);
twisti@4318 768 xorq(tmp_reg, swap_reg);
twisti@4318 769 andq(tmp_reg, ~((int) markOopDesc::age_mask_in_place));
twisti@4318 770 if (counters != NULL) {
twisti@4318 771 cond_inc32(Assembler::zero,
twisti@4318 772 ExternalAddress((address) counters->anonymously_biased_lock_entry_count_addr()));
twisti@4318 773 }
twisti@4318 774 jcc(Assembler::equal, done);
twisti@4318 775
twisti@4318 776 Label try_revoke_bias;
twisti@4318 777 Label try_rebias;
twisti@4318 778
twisti@4318 779 // At this point we know that the header has the bias pattern and
twisti@4318 780 // that we are not the bias owner in the current epoch. We need to
twisti@4318 781 // figure out more details about the state of the header in order to
twisti@4318 782 // know what operations can be legally performed on the object's
twisti@4318 783 // header.
twisti@4318 784
twisti@4318 785 // If the low three bits in the xor result aren't clear, that means
twisti@4318 786 // the prototype header is no longer biased and we have to revoke
twisti@4318 787 // the bias on this object.
twisti@4318 788 testq(tmp_reg, markOopDesc::biased_lock_mask_in_place);
twisti@4318 789 jcc(Assembler::notZero, try_revoke_bias);
twisti@4318 790
twisti@4318 791 // Biasing is still enabled for this data type. See whether the
twisti@4318 792 // epoch of the current bias is still valid, meaning that the epoch
twisti@4318 793 // bits of the mark word are equal to the epoch bits of the
twisti@4318 794 // prototype header. (Note that the prototype header's epoch bits
twisti@4318 795 // only change at a safepoint.) If not, attempt to rebias the object
twisti@4318 796 // toward the current thread. Note that we must be absolutely sure
twisti@4318 797 // that the current epoch is invalid in order to do this because
twisti@4318 798 // otherwise the manipulations it performs on the mark word are
twisti@4318 799 // illegal.
twisti@4318 800 testq(tmp_reg, markOopDesc::epoch_mask_in_place);
twisti@4318 801 jcc(Assembler::notZero, try_rebias);
twisti@4318 802
twisti@4318 803 // The epoch of the current bias is still valid but we know nothing
twisti@4318 804 // about the owner; it might be set or it might be clear. Try to
twisti@4318 805 // acquire the bias of the object using an atomic operation. If this
twisti@4318 806 // fails we will go in to the runtime to revoke the object's bias.
twisti@4318 807 // Note that we first construct the presumed unbiased header so we
twisti@4318 808 // don't accidentally blow away another thread's valid bias.
twisti@4318 809 andq(swap_reg,
twisti@4318 810 markOopDesc::biased_lock_mask_in_place | markOopDesc::age_mask_in_place | markOopDesc::epoch_mask_in_place);
twisti@4318 811 movq(tmp_reg, swap_reg);
twisti@4318 812 orq(tmp_reg, r15_thread);
twisti@4318 813 if (os::is_MP()) {
twisti@4318 814 lock();
twisti@4318 815 }
twisti@4318 816 cmpxchgq(tmp_reg, Address(obj_reg, 0));
twisti@4318 817 // If the biasing toward our thread failed, this means that
twisti@4318 818 // another thread succeeded in biasing it toward itself and we
twisti@4318 819 // need to revoke that bias. The revocation will occur in the
twisti@4318 820 // interpreter runtime in the slow case.
twisti@4318 821 if (counters != NULL) {
twisti@4318 822 cond_inc32(Assembler::zero,
twisti@4318 823 ExternalAddress((address) counters->anonymously_biased_lock_entry_count_addr()));
twisti@4318 824 }
twisti@4318 825 if (slow_case != NULL) {
twisti@4318 826 jcc(Assembler::notZero, *slow_case);
twisti@4318 827 }
twisti@4318 828 jmp(done);
twisti@4318 829
twisti@4318 830 bind(try_rebias);
twisti@4318 831 // At this point we know the epoch has expired, meaning that the
twisti@4318 832 // current "bias owner", if any, is actually invalid. Under these
twisti@4318 833 // circumstances _only_, we are allowed to use the current header's
twisti@4318 834 // value as the comparison value when doing the cas to acquire the
twisti@4318 835 // bias in the current epoch. In other words, we allow transfer of
twisti@4318 836 // the bias from one thread to another directly in this situation.
twisti@4318 837 //
twisti@4318 838 // FIXME: due to a lack of registers we currently blow away the age
twisti@4318 839 // bits in this situation. Should attempt to preserve them.
twisti@4318 840 load_prototype_header(tmp_reg, obj_reg);
twisti@4318 841 orq(tmp_reg, r15_thread);
twisti@4318 842 if (os::is_MP()) {
twisti@4318 843 lock();
twisti@4318 844 }
twisti@4318 845 cmpxchgq(tmp_reg, Address(obj_reg, 0));
twisti@4318 846 // If the biasing toward our thread failed, then another thread
twisti@4318 847 // succeeded in biasing it toward itself and we need to revoke that
twisti@4318 848 // bias. The revocation will occur in the runtime in the slow case.
twisti@4318 849 if (counters != NULL) {
twisti@4318 850 cond_inc32(Assembler::zero,
twisti@4318 851 ExternalAddress((address) counters->rebiased_lock_entry_count_addr()));
twisti@4318 852 }
twisti@4318 853 if (slow_case != NULL) {
twisti@4318 854 jcc(Assembler::notZero, *slow_case);
twisti@4318 855 }
twisti@4318 856 jmp(done);
twisti@4318 857
twisti@4318 858 bind(try_revoke_bias);
twisti@4318 859 // The prototype mark in the klass doesn't have the bias bit set any
twisti@4318 860 // more, indicating that objects of this data type are not supposed
twisti@4318 861 // to be biased any more. We are going to try to reset the mark of
twisti@4318 862 // this object to the prototype value and fall through to the
twisti@4318 863 // CAS-based locking scheme. Note that if our CAS fails, it means
twisti@4318 864 // that another thread raced us for the privilege of revoking the
twisti@4318 865 // bias of this particular object, so it's okay to continue in the
twisti@4318 866 // normal locking code.
twisti@4318 867 //
twisti@4318 868 // FIXME: due to a lack of registers we currently blow away the age
twisti@4318 869 // bits in this situation. Should attempt to preserve them.
twisti@4318 870 load_prototype_header(tmp_reg, obj_reg);
twisti@4318 871 if (os::is_MP()) {
twisti@4318 872 lock();
twisti@4318 873 }
twisti@4318 874 cmpxchgq(tmp_reg, Address(obj_reg, 0));
twisti@4318 875 // Fall through to the normal CAS-based lock, because no matter what
twisti@4318 876 // the result of the above CAS, some thread must have succeeded in
twisti@4318 877 // removing the bias bit from the object's header.
twisti@4318 878 if (counters != NULL) {
twisti@4318 879 cond_inc32(Assembler::zero,
twisti@4318 880 ExternalAddress((address) counters->revoked_lock_entry_count_addr()));
twisti@4318 881 }
twisti@4318 882
twisti@4318 883 bind(cas_label);
twisti@4318 884
twisti@4318 885 return null_check_offset;
twisti@4318 886 }
twisti@4318 887
twisti@4318 888 void MacroAssembler::call_VM_leaf_base(address entry_point, int num_args) {
twisti@4318 889 Label L, E;
twisti@4318 890
twisti@4318 891 #ifdef _WIN64
twisti@4318 892 // Windows always allocates space for it's register args
twisti@4318 893 assert(num_args <= 4, "only register arguments supported");
twisti@4318 894 subq(rsp, frame::arg_reg_save_area_bytes);
twisti@4318 895 #endif
twisti@4318 896
twisti@4318 897 // Align stack if necessary
twisti@4318 898 testl(rsp, 15);
twisti@4318 899 jcc(Assembler::zero, L);
twisti@4318 900
twisti@4318 901 subq(rsp, 8);
twisti@4318 902 {
twisti@4318 903 call(RuntimeAddress(entry_point));
twisti@4318 904 }
twisti@4318 905 addq(rsp, 8);
twisti@4318 906 jmp(E);
twisti@4318 907
twisti@4318 908 bind(L);
twisti@4318 909 {
twisti@4318 910 call(RuntimeAddress(entry_point));
twisti@4318 911 }
twisti@4318 912
twisti@4318 913 bind(E);
twisti@4318 914
twisti@4318 915 #ifdef _WIN64
twisti@4318 916 // restore stack pointer
twisti@4318 917 addq(rsp, frame::arg_reg_save_area_bytes);
twisti@4318 918 #endif
twisti@4318 919
twisti@4318 920 }
twisti@4318 921
twisti@4318 922 void MacroAssembler::cmp64(Register src1, AddressLiteral src2) {
twisti@4318 923 assert(!src2.is_lval(), "should use cmpptr");
twisti@4318 924
twisti@4318 925 if (reachable(src2)) {
twisti@4318 926 cmpq(src1, as_Address(src2));
twisti@4318 927 } else {
twisti@4318 928 lea(rscratch1, src2);
twisti@4318 929 Assembler::cmpq(src1, Address(rscratch1, 0));
twisti@4318 930 }
twisti@4318 931 }
twisti@4318 932
twisti@4318 933 int MacroAssembler::corrected_idivq(Register reg) {
twisti@4318 934 // Full implementation of Java ldiv and lrem; checks for special
twisti@4318 935 // case as described in JVM spec., p.243 & p.271. The function
twisti@4318 936 // returns the (pc) offset of the idivl instruction - may be needed
twisti@4318 937 // for implicit exceptions.
twisti@4318 938 //
twisti@4318 939 // normal case special case
twisti@4318 940 //
twisti@4318 941 // input : rax: dividend min_long
twisti@4318 942 // reg: divisor (may not be eax/edx) -1
twisti@4318 943 //
twisti@4318 944 // output: rax: quotient (= rax idiv reg) min_long
twisti@4318 945 // rdx: remainder (= rax irem reg) 0
twisti@4318 946 assert(reg != rax && reg != rdx, "reg cannot be rax or rdx register");
twisti@4318 947 static const int64_t min_long = 0x8000000000000000;
twisti@4318 948 Label normal_case, special_case;
twisti@4318 949
twisti@4318 950 // check for special case
twisti@4318 951 cmp64(rax, ExternalAddress((address) &min_long));
twisti@4318 952 jcc(Assembler::notEqual, normal_case);
twisti@4318 953 xorl(rdx, rdx); // prepare rdx for possible special case (where
twisti@4318 954 // remainder = 0)
twisti@4318 955 cmpq(reg, -1);
twisti@4318 956 jcc(Assembler::equal, special_case);
twisti@4318 957
twisti@4318 958 // handle normal case
twisti@4318 959 bind(normal_case);
twisti@4318 960 cdqq();
twisti@4318 961 int idivq_offset = offset();
twisti@4318 962 idivq(reg);
twisti@4318 963
twisti@4318 964 // normal and special case exit
twisti@4318 965 bind(special_case);
twisti@4318 966
twisti@4318 967 return idivq_offset;
twisti@4318 968 }
twisti@4318 969
twisti@4318 970 void MacroAssembler::decrementq(Register reg, int value) {
twisti@4318 971 if (value == min_jint) { subq(reg, value); return; }
twisti@4318 972 if (value < 0) { incrementq(reg, -value); return; }
twisti@4318 973 if (value == 0) { ; return; }
twisti@4318 974 if (value == 1 && UseIncDec) { decq(reg) ; return; }
twisti@4318 975 /* else */ { subq(reg, value) ; return; }
twisti@4318 976 }
twisti@4318 977
twisti@4318 978 void MacroAssembler::decrementq(Address dst, int value) {
twisti@4318 979 if (value == min_jint) { subq(dst, value); return; }
twisti@4318 980 if (value < 0) { incrementq(dst, -value); return; }
twisti@4318 981 if (value == 0) { ; return; }
twisti@4318 982 if (value == 1 && UseIncDec) { decq(dst) ; return; }
twisti@4318 983 /* else */ { subq(dst, value) ; return; }
twisti@4318 984 }
twisti@4318 985
twisti@4318 986 void MacroAssembler::incrementq(Register reg, int value) {
twisti@4318 987 if (value == min_jint) { addq(reg, value); return; }
twisti@4318 988 if (value < 0) { decrementq(reg, -value); return; }
twisti@4318 989 if (value == 0) { ; return; }
twisti@4318 990 if (value == 1 && UseIncDec) { incq(reg) ; return; }
twisti@4318 991 /* else */ { addq(reg, value) ; return; }
twisti@4318 992 }
twisti@4318 993
twisti@4318 994 void MacroAssembler::incrementq(Address dst, int value) {
twisti@4318 995 if (value == min_jint) { addq(dst, value); return; }
twisti@4318 996 if (value < 0) { decrementq(dst, -value); return; }
twisti@4318 997 if (value == 0) { ; return; }
twisti@4318 998 if (value == 1 && UseIncDec) { incq(dst) ; return; }
twisti@4318 999 /* else */ { addq(dst, value) ; return; }
twisti@4318 1000 }
twisti@4318 1001
twisti@4318 1002 // 32bit can do a case table jump in one instruction but we no longer allow the base
twisti@4318 1003 // to be installed in the Address class
twisti@4318 1004 void MacroAssembler::jump(ArrayAddress entry) {
twisti@4318 1005 lea(rscratch1, entry.base());
twisti@4318 1006 Address dispatch = entry.index();
twisti@4318 1007 assert(dispatch._base == noreg, "must be");
twisti@4318 1008 dispatch._base = rscratch1;
twisti@4318 1009 jmp(dispatch);
twisti@4318 1010 }
twisti@4318 1011
twisti@4318 1012 void MacroAssembler::lcmp2int(Register x_hi, Register x_lo, Register y_hi, Register y_lo) {
twisti@4318 1013 ShouldNotReachHere(); // 64bit doesn't use two regs
twisti@4318 1014 cmpq(x_lo, y_lo);
twisti@4318 1015 }
twisti@4318 1016
twisti@4318 1017 void MacroAssembler::lea(Register dst, AddressLiteral src) {
twisti@4318 1018 mov_literal64(dst, (intptr_t)src.target(), src.rspec());
twisti@4318 1019 }
twisti@4318 1020
twisti@4318 1021 void MacroAssembler::lea(Address dst, AddressLiteral adr) {
twisti@4318 1022 mov_literal64(rscratch1, (intptr_t)adr.target(), adr.rspec());
twisti@4318 1023 movptr(dst, rscratch1);
twisti@4318 1024 }
twisti@4318 1025
twisti@4318 1026 void MacroAssembler::leave() {
twisti@4318 1027 // %%% is this really better? Why not on 32bit too?
twisti@4366 1028 emit_int8((unsigned char)0xC9); // LEAVE
twisti@4318 1029 }
twisti@4318 1030
twisti@4318 1031 void MacroAssembler::lneg(Register hi, Register lo) {
twisti@4318 1032 ShouldNotReachHere(); // 64bit doesn't use two regs
twisti@4318 1033 negq(lo);
twisti@4318 1034 }
twisti@4318 1035
twisti@4318 1036 void MacroAssembler::movoop(Register dst, jobject obj) {
twisti@4318 1037 mov_literal64(dst, (intptr_t)obj, oop_Relocation::spec_for_immediate());
twisti@4318 1038 }
twisti@4318 1039
twisti@4318 1040 void MacroAssembler::movoop(Address dst, jobject obj) {
twisti@4318 1041 mov_literal64(rscratch1, (intptr_t)obj, oop_Relocation::spec_for_immediate());
twisti@4318 1042 movq(dst, rscratch1);
twisti@4318 1043 }
twisti@4318 1044
twisti@4318 1045 void MacroAssembler::mov_metadata(Register dst, Metadata* obj) {
twisti@4318 1046 mov_literal64(dst, (intptr_t)obj, metadata_Relocation::spec_for_immediate());
twisti@4318 1047 }
twisti@4318 1048
twisti@4318 1049 void MacroAssembler::mov_metadata(Address dst, Metadata* obj) {
twisti@4318 1050 mov_literal64(rscratch1, (intptr_t)obj, metadata_Relocation::spec_for_immediate());
twisti@4318 1051 movq(dst, rscratch1);
twisti@4318 1052 }
twisti@4318 1053
twisti@4318 1054 void MacroAssembler::movptr(Register dst, AddressLiteral src) {
twisti@4318 1055 if (src.is_lval()) {
twisti@4318 1056 mov_literal64(dst, (intptr_t)src.target(), src.rspec());
twisti@4318 1057 } else {
twisti@4318 1058 if (reachable(src)) {
twisti@4318 1059 movq(dst, as_Address(src));
twisti@4318 1060 } else {
twisti@4318 1061 lea(rscratch1, src);
twisti@4318 1062 movq(dst, Address(rscratch1,0));
twisti@4318 1063 }
twisti@4318 1064 }
twisti@4318 1065 }
twisti@4318 1066
twisti@4318 1067 void MacroAssembler::movptr(ArrayAddress dst, Register src) {
twisti@4318 1068 movq(as_Address(dst), src);
twisti@4318 1069 }
twisti@4318 1070
twisti@4318 1071 void MacroAssembler::movptr(Register dst, ArrayAddress src) {
twisti@4318 1072 movq(dst, as_Address(src));
twisti@4318 1073 }
twisti@4318 1074
twisti@4318 1075 // src should NEVER be a real pointer. Use AddressLiteral for true pointers
twisti@4318 1076 void MacroAssembler::movptr(Address dst, intptr_t src) {
twisti@4318 1077 mov64(rscratch1, src);
twisti@4318 1078 movq(dst, rscratch1);
twisti@4318 1079 }
twisti@4318 1080
twisti@4318 1081 // These are mostly for initializing NULL
twisti@4318 1082 void MacroAssembler::movptr(Address dst, int32_t src) {
twisti@4318 1083 movslq(dst, src);
twisti@4318 1084 }
twisti@4318 1085
twisti@4318 1086 void MacroAssembler::movptr(Register dst, int32_t src) {
twisti@4318 1087 mov64(dst, (intptr_t)src);
twisti@4318 1088 }
twisti@4318 1089
twisti@4318 1090 void MacroAssembler::pushoop(jobject obj) {
twisti@4318 1091 movoop(rscratch1, obj);
twisti@4318 1092 push(rscratch1);
twisti@4318 1093 }
twisti@4318 1094
twisti@4318 1095 void MacroAssembler::pushklass(Metadata* obj) {
twisti@4318 1096 mov_metadata(rscratch1, obj);
twisti@4318 1097 push(rscratch1);
twisti@4318 1098 }
twisti@4318 1099
twisti@4318 1100 void MacroAssembler::pushptr(AddressLiteral src) {
twisti@4318 1101 lea(rscratch1, src);
twisti@4318 1102 if (src.is_lval()) {
twisti@4318 1103 push(rscratch1);
twisti@4318 1104 } else {
twisti@4318 1105 pushq(Address(rscratch1, 0));
twisti@4318 1106 }
twisti@4318 1107 }
twisti@4318 1108
twisti@4318 1109 void MacroAssembler::reset_last_Java_frame(bool clear_fp,
twisti@4318 1110 bool clear_pc) {
twisti@4318 1111 // we must set sp to zero to clear frame
twisti@4318 1112 movptr(Address(r15_thread, JavaThread::last_Java_sp_offset()), NULL_WORD);
twisti@4318 1113 // must clear fp, so that compiled frames are not confused; it is
twisti@4318 1114 // possible that we need it only for debugging
twisti@4318 1115 if (clear_fp) {
twisti@4318 1116 movptr(Address(r15_thread, JavaThread::last_Java_fp_offset()), NULL_WORD);
twisti@4318 1117 }
twisti@4318 1118
twisti@4318 1119 if (clear_pc) {
twisti@4318 1120 movptr(Address(r15_thread, JavaThread::last_Java_pc_offset()), NULL_WORD);
twisti@4318 1121 }
twisti@4318 1122 }
twisti@4318 1123
twisti@4318 1124 void MacroAssembler::set_last_Java_frame(Register last_java_sp,
twisti@4318 1125 Register last_java_fp,
twisti@4318 1126 address last_java_pc) {
twisti@4318 1127 // determine last_java_sp register
twisti@4318 1128 if (!last_java_sp->is_valid()) {
twisti@4318 1129 last_java_sp = rsp;
twisti@4318 1130 }
twisti@4318 1131
twisti@4318 1132 // last_java_fp is optional
twisti@4318 1133 if (last_java_fp->is_valid()) {
twisti@4318 1134 movptr(Address(r15_thread, JavaThread::last_Java_fp_offset()),
twisti@4318 1135 last_java_fp);
twisti@4318 1136 }
twisti@4318 1137
twisti@4318 1138 // last_java_pc is optional
twisti@4318 1139 if (last_java_pc != NULL) {
twisti@4318 1140 Address java_pc(r15_thread,
twisti@4318 1141 JavaThread::frame_anchor_offset() + JavaFrameAnchor::last_Java_pc_offset());
twisti@4318 1142 lea(rscratch1, InternalAddress(last_java_pc));
twisti@4318 1143 movptr(java_pc, rscratch1);
twisti@4318 1144 }
twisti@4318 1145
twisti@4318 1146 movptr(Address(r15_thread, JavaThread::last_Java_sp_offset()), last_java_sp);
twisti@4318 1147 }
twisti@4318 1148
twisti@4318 1149 static void pass_arg0(MacroAssembler* masm, Register arg) {
twisti@4318 1150 if (c_rarg0 != arg ) {
twisti@4318 1151 masm->mov(c_rarg0, arg);
twisti@4318 1152 }
twisti@4318 1153 }
twisti@4318 1154
twisti@4318 1155 static void pass_arg1(MacroAssembler* masm, Register arg) {
twisti@4318 1156 if (c_rarg1 != arg ) {
twisti@4318 1157 masm->mov(c_rarg1, arg);
twisti@4318 1158 }
twisti@4318 1159 }
twisti@4318 1160
twisti@4318 1161 static void pass_arg2(MacroAssembler* masm, Register arg) {
twisti@4318 1162 if (c_rarg2 != arg ) {
twisti@4318 1163 masm->mov(c_rarg2, arg);
twisti@4318 1164 }
twisti@4318 1165 }
twisti@4318 1166
twisti@4318 1167 static void pass_arg3(MacroAssembler* masm, Register arg) {
twisti@4318 1168 if (c_rarg3 != arg ) {
twisti@4318 1169 masm->mov(c_rarg3, arg);
twisti@4318 1170 }
twisti@4318 1171 }
twisti@4318 1172
twisti@4318 1173 void MacroAssembler::stop(const char* msg) {
twisti@4318 1174 address rip = pc();
twisti@4318 1175 pusha(); // get regs on stack
twisti@4318 1176 lea(c_rarg0, ExternalAddress((address) msg));
twisti@4318 1177 lea(c_rarg1, InternalAddress(rip));
twisti@4318 1178 movq(c_rarg2, rsp); // pass pointer to regs array
twisti@4318 1179 andq(rsp, -16); // align stack as required by ABI
twisti@4318 1180 call(RuntimeAddress(CAST_FROM_FN_PTR(address, MacroAssembler::debug64)));
twisti@4318 1181 hlt();
twisti@4318 1182 }
twisti@4318 1183
twisti@4318 1184 void MacroAssembler::warn(const char* msg) {
twisti@4318 1185 push(rbp);
twisti@4318 1186 movq(rbp, rsp);
twisti@4318 1187 andq(rsp, -16); // align stack as required by push_CPU_state and call
twisti@4318 1188 push_CPU_state(); // keeps alignment at 16 bytes
twisti@4318 1189 lea(c_rarg0, ExternalAddress((address) msg));
twisti@4318 1190 call_VM_leaf(CAST_FROM_FN_PTR(address, warning), c_rarg0);
twisti@4318 1191 pop_CPU_state();
twisti@4318 1192 mov(rsp, rbp);
twisti@4318 1193 pop(rbp);
twisti@4318 1194 }
twisti@4318 1195
twisti@4318 1196 void MacroAssembler::print_state() {
twisti@4318 1197 address rip = pc();
twisti@4318 1198 pusha(); // get regs on stack
twisti@4318 1199 push(rbp);
twisti@4318 1200 movq(rbp, rsp);
twisti@4318 1201 andq(rsp, -16); // align stack as required by push_CPU_state and call
twisti@4318 1202 push_CPU_state(); // keeps alignment at 16 bytes
twisti@4318 1203
twisti@4318 1204 lea(c_rarg0, InternalAddress(rip));
twisti@4318 1205 lea(c_rarg1, Address(rbp, wordSize)); // pass pointer to regs array
twisti@4318 1206 call_VM_leaf(CAST_FROM_FN_PTR(address, MacroAssembler::print_state64), c_rarg0, c_rarg1);
twisti@4318 1207
twisti@4318 1208 pop_CPU_state();
twisti@4318 1209 mov(rsp, rbp);
twisti@4318 1210 pop(rbp);
twisti@4318 1211 popa();
twisti@4318 1212 }
twisti@4318 1213
twisti@4318 1214 #ifndef PRODUCT
twisti@4318 1215 extern "C" void findpc(intptr_t x);
twisti@4318 1216 #endif
twisti@4318 1217
twisti@4318 1218 void MacroAssembler::debug64(char* msg, int64_t pc, int64_t regs[]) {
twisti@4318 1219 // In order to get locks to work, we need to fake a in_VM state
twisti@4318 1220 if (ShowMessageBoxOnError) {
twisti@4318 1221 JavaThread* thread = JavaThread::current();
twisti@4318 1222 JavaThreadState saved_state = thread->thread_state();
twisti@4318 1223 thread->set_thread_state(_thread_in_vm);
twisti@4318 1224 #ifndef PRODUCT
twisti@4318 1225 if (CountBytecodes || TraceBytecodes || StopInterpreterAt) {
twisti@4318 1226 ttyLocker ttyl;
twisti@4318 1227 BytecodeCounter::print();
twisti@4318 1228 }
twisti@4318 1229 #endif
twisti@4318 1230 // To see where a verify_oop failed, get $ebx+40/X for this frame.
twisti@4318 1231 // XXX correct this offset for amd64
twisti@4318 1232 // This is the value of eip which points to where verify_oop will return.
twisti@4318 1233 if (os::message_box(msg, "Execution stopped, print registers?")) {
twisti@4318 1234 print_state64(pc, regs);
twisti@4318 1235 BREAKPOINT;
twisti@4318 1236 assert(false, "start up GDB");
twisti@4318 1237 }
twisti@4318 1238 ThreadStateTransition::transition(thread, _thread_in_vm, saved_state);
twisti@4318 1239 } else {
twisti@4318 1240 ttyLocker ttyl;
twisti@4318 1241 ::tty->print_cr("=============== DEBUG MESSAGE: %s ================\n",
twisti@4318 1242 msg);
twisti@4318 1243 assert(false, err_msg("DEBUG MESSAGE: %s", msg));
twisti@4318 1244 }
twisti@4318 1245 }
twisti@4318 1246
twisti@4318 1247 void MacroAssembler::print_state64(int64_t pc, int64_t regs[]) {
twisti@4318 1248 ttyLocker ttyl;
twisti@4318 1249 FlagSetting fs(Debugging, true);
twisti@4318 1250 tty->print_cr("rip = 0x%016lx", pc);
twisti@4318 1251 #ifndef PRODUCT
twisti@4318 1252 tty->cr();
twisti@4318 1253 findpc(pc);
twisti@4318 1254 tty->cr();
twisti@4318 1255 #endif
twisti@4318 1256 #define PRINT_REG(rax, value) \
twisti@4318 1257 { tty->print("%s = ", #rax); os::print_location(tty, value); }
twisti@4318 1258 PRINT_REG(rax, regs[15]);
twisti@4318 1259 PRINT_REG(rbx, regs[12]);
twisti@4318 1260 PRINT_REG(rcx, regs[14]);
twisti@4318 1261 PRINT_REG(rdx, regs[13]);
twisti@4318 1262 PRINT_REG(rdi, regs[8]);
twisti@4318 1263 PRINT_REG(rsi, regs[9]);
twisti@4318 1264 PRINT_REG(rbp, regs[10]);
twisti@4318 1265 PRINT_REG(rsp, regs[11]);
twisti@4318 1266 PRINT_REG(r8 , regs[7]);
twisti@4318 1267 PRINT_REG(r9 , regs[6]);
twisti@4318 1268 PRINT_REG(r10, regs[5]);
twisti@4318 1269 PRINT_REG(r11, regs[4]);
twisti@4318 1270 PRINT_REG(r12, regs[3]);
twisti@4318 1271 PRINT_REG(r13, regs[2]);
twisti@4318 1272 PRINT_REG(r14, regs[1]);
twisti@4318 1273 PRINT_REG(r15, regs[0]);
twisti@4318 1274 #undef PRINT_REG
twisti@4318 1275 // Print some words near top of staack.
twisti@4318 1276 int64_t* rsp = (int64_t*) regs[11];
twisti@4318 1277 int64_t* dump_sp = rsp;
twisti@4318 1278 for (int col1 = 0; col1 < 8; col1++) {
twisti@4318 1279 tty->print("(rsp+0x%03x) 0x%016lx: ", (int)((intptr_t)dump_sp - (intptr_t)rsp), (int64_t)dump_sp);
twisti@4318 1280 os::print_location(tty, *dump_sp++);
twisti@4318 1281 }
twisti@4318 1282 for (int row = 0; row < 25; row++) {
twisti@4318 1283 tty->print("(rsp+0x%03x) 0x%016lx: ", (int)((intptr_t)dump_sp - (intptr_t)rsp), (int64_t)dump_sp);
twisti@4318 1284 for (int col = 0; col < 4; col++) {
twisti@4318 1285 tty->print(" 0x%016lx", *dump_sp++);
twisti@4318 1286 }
twisti@4318 1287 tty->cr();
twisti@4318 1288 }
twisti@4318 1289 // Print some instructions around pc:
twisti@4318 1290 Disassembler::decode((address)pc-64, (address)pc);
twisti@4318 1291 tty->print_cr("--------");
twisti@4318 1292 Disassembler::decode((address)pc, (address)pc+32);
twisti@4318 1293 }
twisti@4318 1294
twisti@4318 1295 #endif // _LP64
twisti@4318 1296
twisti@4318 1297 // Now versions that are common to 32/64 bit
twisti@4318 1298
twisti@4318 1299 void MacroAssembler::addptr(Register dst, int32_t imm32) {
twisti@4318 1300 LP64_ONLY(addq(dst, imm32)) NOT_LP64(addl(dst, imm32));
twisti@4318 1301 }
twisti@4318 1302
twisti@4318 1303 void MacroAssembler::addptr(Register dst, Register src) {
twisti@4318 1304 LP64_ONLY(addq(dst, src)) NOT_LP64(addl(dst, src));
twisti@4318 1305 }
twisti@4318 1306
twisti@4318 1307 void MacroAssembler::addptr(Address dst, Register src) {
twisti@4318 1308 LP64_ONLY(addq(dst, src)) NOT_LP64(addl(dst, src));
twisti@4318 1309 }
twisti@4318 1310
twisti@4318 1311 void MacroAssembler::addsd(XMMRegister dst, AddressLiteral src) {
twisti@4318 1312 if (reachable(src)) {
twisti@4318 1313 Assembler::addsd(dst, as_Address(src));
twisti@4318 1314 } else {
twisti@4318 1315 lea(rscratch1, src);
twisti@4318 1316 Assembler::addsd(dst, Address(rscratch1, 0));
twisti@4318 1317 }
twisti@4318 1318 }
twisti@4318 1319
twisti@4318 1320 void MacroAssembler::addss(XMMRegister dst, AddressLiteral src) {
twisti@4318 1321 if (reachable(src)) {
twisti@4318 1322 addss(dst, as_Address(src));
twisti@4318 1323 } else {
twisti@4318 1324 lea(rscratch1, src);
twisti@4318 1325 addss(dst, Address(rscratch1, 0));
twisti@4318 1326 }
twisti@4318 1327 }
twisti@4318 1328
twisti@4318 1329 void MacroAssembler::align(int modulus) {
twisti@4318 1330 if (offset() % modulus != 0) {
twisti@4318 1331 nop(modulus - (offset() % modulus));
twisti@4318 1332 }
twisti@4318 1333 }
twisti@4318 1334
twisti@4318 1335 void MacroAssembler::andpd(XMMRegister dst, AddressLiteral src) {
twisti@4318 1336 // Used in sign-masking with aligned address.
twisti@4318 1337 assert((UseAVX > 0) || (((intptr_t)src.target() & 15) == 0), "SSE mode requires address alignment 16 bytes");
twisti@4318 1338 if (reachable(src)) {
twisti@4318 1339 Assembler::andpd(dst, as_Address(src));
twisti@4318 1340 } else {
twisti@4318 1341 lea(rscratch1, src);
twisti@4318 1342 Assembler::andpd(dst, Address(rscratch1, 0));
twisti@4318 1343 }
twisti@4318 1344 }
twisti@4318 1345
twisti@4318 1346 void MacroAssembler::andps(XMMRegister dst, AddressLiteral src) {
twisti@4318 1347 // Used in sign-masking with aligned address.
twisti@4318 1348 assert((UseAVX > 0) || (((intptr_t)src.target() & 15) == 0), "SSE mode requires address alignment 16 bytes");
twisti@4318 1349 if (reachable(src)) {
twisti@4318 1350 Assembler::andps(dst, as_Address(src));
twisti@4318 1351 } else {
twisti@4318 1352 lea(rscratch1, src);
twisti@4318 1353 Assembler::andps(dst, Address(rscratch1, 0));
twisti@4318 1354 }
twisti@4318 1355 }
twisti@4318 1356
twisti@4318 1357 void MacroAssembler::andptr(Register dst, int32_t imm32) {
twisti@4318 1358 LP64_ONLY(andq(dst, imm32)) NOT_LP64(andl(dst, imm32));
twisti@4318 1359 }
twisti@4318 1360
twisti@4318 1361 void MacroAssembler::atomic_incl(AddressLiteral counter_addr) {
twisti@4318 1362 pushf();
twisti@4318 1363 if (os::is_MP())
twisti@4318 1364 lock();
twisti@4318 1365 incrementl(counter_addr);
twisti@4318 1366 popf();
twisti@4318 1367 }
twisti@4318 1368
twisti@4318 1369 // Writes to stack successive pages until offset reached to check for
twisti@4318 1370 // stack overflow + shadow pages. This clobbers tmp.
twisti@4318 1371 void MacroAssembler::bang_stack_size(Register size, Register tmp) {
twisti@4318 1372 movptr(tmp, rsp);
twisti@4318 1373 // Bang stack for total size given plus shadow page size.
twisti@4318 1374 // Bang one page at a time because large size can bang beyond yellow and
twisti@4318 1375 // red zones.
twisti@4318 1376 Label loop;
twisti@4318 1377 bind(loop);
twisti@4318 1378 movl(Address(tmp, (-os::vm_page_size())), size );
twisti@4318 1379 subptr(tmp, os::vm_page_size());
twisti@4318 1380 subl(size, os::vm_page_size());
twisti@4318 1381 jcc(Assembler::greater, loop);
twisti@4318 1382
twisti@4318 1383 // Bang down shadow pages too.
mikael@6072 1384 // At this point, (tmp-0) is the last address touched, so don't
mikael@6072 1385 // touch it again. (It was touched as (tmp-pagesize) but then tmp
mikael@6072 1386 // was post-decremented.) Skip this address by starting at i=1, and
mikael@6072 1387 // touch a few more pages below. N.B. It is important to touch all
mikael@6072 1388 // the way down to and including i=StackShadowPages.
mikael@6072 1389 for (int i = 1; i <= StackShadowPages; i++) {
twisti@4318 1390 // this could be any sized move but this is can be a debugging crumb
twisti@4318 1391 // so the bigger the better.
twisti@4318 1392 movptr(Address(tmp, (-i*os::vm_page_size())), size );
twisti@4318 1393 }
twisti@4318 1394 }
twisti@4318 1395
twisti@4318 1396 void MacroAssembler::biased_locking_exit(Register obj_reg, Register temp_reg, Label& done) {
twisti@4318 1397 assert(UseBiasedLocking, "why call this otherwise?");
twisti@4318 1398
twisti@4318 1399 // Check for biased locking unlock case, which is a no-op
twisti@4318 1400 // Note: we do not have to check the thread ID for two reasons.
twisti@4318 1401 // First, the interpreter checks for IllegalMonitorStateException at
twisti@4318 1402 // a higher level. Second, if the bias was revoked while we held the
twisti@4318 1403 // lock, the object could not be rebiased toward another thread, so
twisti@4318 1404 // the bias bit would be clear.
twisti@4318 1405 movptr(temp_reg, Address(obj_reg, oopDesc::mark_offset_in_bytes()));
twisti@4318 1406 andptr(temp_reg, markOopDesc::biased_lock_mask_in_place);
twisti@4318 1407 cmpptr(temp_reg, markOopDesc::biased_lock_pattern);
twisti@4318 1408 jcc(Assembler::equal, done);
twisti@4318 1409 }
twisti@4318 1410
twisti@4318 1411 void MacroAssembler::c2bool(Register x) {
twisti@4318 1412 // implements x == 0 ? 0 : 1
twisti@4318 1413 // note: must only look at least-significant byte of x
twisti@4318 1414 // since C-style booleans are stored in one byte
twisti@4318 1415 // only! (was bug)
twisti@4318 1416 andl(x, 0xFF);
twisti@4318 1417 setb(Assembler::notZero, x);
twisti@4318 1418 }
twisti@4318 1419
twisti@4318 1420 // Wouldn't need if AddressLiteral version had new name
twisti@4318 1421 void MacroAssembler::call(Label& L, relocInfo::relocType rtype) {
twisti@4318 1422 Assembler::call(L, rtype);
twisti@4318 1423 }
twisti@4318 1424
twisti@4318 1425 void MacroAssembler::call(Register entry) {
twisti@4318 1426 Assembler::call(entry);
twisti@4318 1427 }
twisti@4318 1428
twisti@4318 1429 void MacroAssembler::call(AddressLiteral entry) {
twisti@4318 1430 if (reachable(entry)) {
twisti@4318 1431 Assembler::call_literal(entry.target(), entry.rspec());
twisti@4318 1432 } else {
twisti@4318 1433 lea(rscratch1, entry);
twisti@4318 1434 Assembler::call(rscratch1);
twisti@4318 1435 }
twisti@4318 1436 }
twisti@4318 1437
twisti@4318 1438 void MacroAssembler::ic_call(address entry) {
twisti@4318 1439 RelocationHolder rh = virtual_call_Relocation::spec(pc());
twisti@4318 1440 movptr(rax, (intptr_t)Universe::non_oop_word());
twisti@4318 1441 call(AddressLiteral(entry, rh));
twisti@4318 1442 }
twisti@4318 1443
twisti@4318 1444 // Implementation of call_VM versions
twisti@4318 1445
twisti@4318 1446 void MacroAssembler::call_VM(Register oop_result,
twisti@4318 1447 address entry_point,
twisti@4318 1448 bool check_exceptions) {
twisti@4318 1449 Label C, E;
twisti@4318 1450 call(C, relocInfo::none);
twisti@4318 1451 jmp(E);
twisti@4318 1452
twisti@4318 1453 bind(C);
twisti@4318 1454 call_VM_helper(oop_result, entry_point, 0, check_exceptions);
twisti@4318 1455 ret(0);
twisti@4318 1456
twisti@4318 1457 bind(E);
twisti@4318 1458 }
twisti@4318 1459
twisti@4318 1460 void MacroAssembler::call_VM(Register oop_result,
twisti@4318 1461 address entry_point,
twisti@4318 1462 Register arg_1,
twisti@4318 1463 bool check_exceptions) {
twisti@4318 1464 Label C, E;
twisti@4318 1465 call(C, relocInfo::none);
twisti@4318 1466 jmp(E);
twisti@4318 1467
twisti@4318 1468 bind(C);
twisti@4318 1469 pass_arg1(this, arg_1);
twisti@4318 1470 call_VM_helper(oop_result, entry_point, 1, check_exceptions);
twisti@4318 1471 ret(0);
twisti@4318 1472
twisti@4318 1473 bind(E);
twisti@4318 1474 }
twisti@4318 1475
twisti@4318 1476 void MacroAssembler::call_VM(Register oop_result,
twisti@4318 1477 address entry_point,
twisti@4318 1478 Register arg_1,
twisti@4318 1479 Register arg_2,
twisti@4318 1480 bool check_exceptions) {
twisti@4318 1481 Label C, E;
twisti@4318 1482 call(C, relocInfo::none);
twisti@4318 1483 jmp(E);
twisti@4318 1484
twisti@4318 1485 bind(C);
twisti@4318 1486
twisti@4318 1487 LP64_ONLY(assert(arg_1 != c_rarg2, "smashed arg"));
twisti@4318 1488
twisti@4318 1489 pass_arg2(this, arg_2);
twisti@4318 1490 pass_arg1(this, arg_1);
twisti@4318 1491 call_VM_helper(oop_result, entry_point, 2, check_exceptions);
twisti@4318 1492 ret(0);
twisti@4318 1493
twisti@4318 1494 bind(E);
twisti@4318 1495 }
twisti@4318 1496
twisti@4318 1497 void MacroAssembler::call_VM(Register oop_result,
twisti@4318 1498 address entry_point,
twisti@4318 1499 Register arg_1,
twisti@4318 1500 Register arg_2,
twisti@4318 1501 Register arg_3,
twisti@4318 1502 bool check_exceptions) {
twisti@4318 1503 Label C, E;
twisti@4318 1504 call(C, relocInfo::none);
twisti@4318 1505 jmp(E);
twisti@4318 1506
twisti@4318 1507 bind(C);
twisti@4318 1508
twisti@4318 1509 LP64_ONLY(assert(arg_1 != c_rarg3, "smashed arg"));
twisti@4318 1510 LP64_ONLY(assert(arg_2 != c_rarg3, "smashed arg"));
twisti@4318 1511 pass_arg3(this, arg_3);
twisti@4318 1512
twisti@4318 1513 LP64_ONLY(assert(arg_1 != c_rarg2, "smashed arg"));
twisti@4318 1514 pass_arg2(this, arg_2);
twisti@4318 1515
twisti@4318 1516 pass_arg1(this, arg_1);
twisti@4318 1517 call_VM_helper(oop_result, entry_point, 3, check_exceptions);
twisti@4318 1518 ret(0);
twisti@4318 1519
twisti@4318 1520 bind(E);
twisti@4318 1521 }
twisti@4318 1522
twisti@4318 1523 void MacroAssembler::call_VM(Register oop_result,
twisti@4318 1524 Register last_java_sp,
twisti@4318 1525 address entry_point,
twisti@4318 1526 int number_of_arguments,
twisti@4318 1527 bool check_exceptions) {
twisti@4318 1528 Register thread = LP64_ONLY(r15_thread) NOT_LP64(noreg);
twisti@4318 1529 call_VM_base(oop_result, thread, last_java_sp, entry_point, number_of_arguments, check_exceptions);
twisti@4318 1530 }
twisti@4318 1531
twisti@4318 1532 void MacroAssembler::call_VM(Register oop_result,
twisti@4318 1533 Register last_java_sp,
twisti@4318 1534 address entry_point,
twisti@4318 1535 Register arg_1,
twisti@4318 1536 bool check_exceptions) {
twisti@4318 1537 pass_arg1(this, arg_1);
twisti@4318 1538 call_VM(oop_result, last_java_sp, entry_point, 1, check_exceptions);
twisti@4318 1539 }
twisti@4318 1540
twisti@4318 1541 void MacroAssembler::call_VM(Register oop_result,
twisti@4318 1542 Register last_java_sp,
twisti@4318 1543 address entry_point,
twisti@4318 1544 Register arg_1,
twisti@4318 1545 Register arg_2,
twisti@4318 1546 bool check_exceptions) {
twisti@4318 1547
twisti@4318 1548 LP64_ONLY(assert(arg_1 != c_rarg2, "smashed arg"));
twisti@4318 1549 pass_arg2(this, arg_2);
twisti@4318 1550 pass_arg1(this, arg_1);
twisti@4318 1551 call_VM(oop_result, last_java_sp, entry_point, 2, check_exceptions);
twisti@4318 1552 }
twisti@4318 1553
twisti@4318 1554 void MacroAssembler::call_VM(Register oop_result,
twisti@4318 1555 Register last_java_sp,
twisti@4318 1556 address entry_point,
twisti@4318 1557 Register arg_1,
twisti@4318 1558 Register arg_2,
twisti@4318 1559 Register arg_3,
twisti@4318 1560 bool check_exceptions) {
twisti@4318 1561 LP64_ONLY(assert(arg_1 != c_rarg3, "smashed arg"));
twisti@4318 1562 LP64_ONLY(assert(arg_2 != c_rarg3, "smashed arg"));
twisti@4318 1563 pass_arg3(this, arg_3);
twisti@4318 1564 LP64_ONLY(assert(arg_1 != c_rarg2, "smashed arg"));
twisti@4318 1565 pass_arg2(this, arg_2);
twisti@4318 1566 pass_arg1(this, arg_1);
twisti@4318 1567 call_VM(oop_result, last_java_sp, entry_point, 3, check_exceptions);
twisti@4318 1568 }
twisti@4318 1569
twisti@4318 1570 void MacroAssembler::super_call_VM(Register oop_result,
twisti@4318 1571 Register last_java_sp,
twisti@4318 1572 address entry_point,
twisti@4318 1573 int number_of_arguments,
twisti@4318 1574 bool check_exceptions) {
twisti@4318 1575 Register thread = LP64_ONLY(r15_thread) NOT_LP64(noreg);
twisti@4318 1576 MacroAssembler::call_VM_base(oop_result, thread, last_java_sp, entry_point, number_of_arguments, check_exceptions);
twisti@4318 1577 }
twisti@4318 1578
twisti@4318 1579 void MacroAssembler::super_call_VM(Register oop_result,
twisti@4318 1580 Register last_java_sp,
twisti@4318 1581 address entry_point,
twisti@4318 1582 Register arg_1,
twisti@4318 1583 bool check_exceptions) {
twisti@4318 1584 pass_arg1(this, arg_1);
twisti@4318 1585 super_call_VM(oop_result, last_java_sp, entry_point, 1, check_exceptions);
twisti@4318 1586 }
twisti@4318 1587
twisti@4318 1588 void MacroAssembler::super_call_VM(Register oop_result,
twisti@4318 1589 Register last_java_sp,
twisti@4318 1590 address entry_point,
twisti@4318 1591 Register arg_1,
twisti@4318 1592 Register arg_2,
twisti@4318 1593 bool check_exceptions) {
twisti@4318 1594
twisti@4318 1595 LP64_ONLY(assert(arg_1 != c_rarg2, "smashed arg"));
twisti@4318 1596 pass_arg2(this, arg_2);
twisti@4318 1597 pass_arg1(this, arg_1);
twisti@4318 1598 super_call_VM(oop_result, last_java_sp, entry_point, 2, check_exceptions);
twisti@4318 1599 }
twisti@4318 1600
twisti@4318 1601 void MacroAssembler::super_call_VM(Register oop_result,
twisti@4318 1602 Register last_java_sp,
twisti@4318 1603 address entry_point,
twisti@4318 1604 Register arg_1,
twisti@4318 1605 Register arg_2,
twisti@4318 1606 Register arg_3,
twisti@4318 1607 bool check_exceptions) {
twisti@4318 1608 LP64_ONLY(assert(arg_1 != c_rarg3, "smashed arg"));
twisti@4318 1609 LP64_ONLY(assert(arg_2 != c_rarg3, "smashed arg"));
twisti@4318 1610 pass_arg3(this, arg_3);
twisti@4318 1611 LP64_ONLY(assert(arg_1 != c_rarg2, "smashed arg"));
twisti@4318 1612 pass_arg2(this, arg_2);
twisti@4318 1613 pass_arg1(this, arg_1);
twisti@4318 1614 super_call_VM(oop_result, last_java_sp, entry_point, 3, check_exceptions);
twisti@4318 1615 }
twisti@4318 1616
twisti@4318 1617 void MacroAssembler::call_VM_base(Register oop_result,
twisti@4318 1618 Register java_thread,
twisti@4318 1619 Register last_java_sp,
twisti@4318 1620 address entry_point,
twisti@4318 1621 int number_of_arguments,
twisti@4318 1622 bool check_exceptions) {
twisti@4318 1623 // determine java_thread register
twisti@4318 1624 if (!java_thread->is_valid()) {
twisti@4318 1625 #ifdef _LP64
twisti@4318 1626 java_thread = r15_thread;
twisti@4318 1627 #else
twisti@4318 1628 java_thread = rdi;
twisti@4318 1629 get_thread(java_thread);
twisti@4318 1630 #endif // LP64
twisti@4318 1631 }
twisti@4318 1632 // determine last_java_sp register
twisti@4318 1633 if (!last_java_sp->is_valid()) {
twisti@4318 1634 last_java_sp = rsp;
twisti@4318 1635 }
twisti@4318 1636 // debugging support
twisti@4318 1637 assert(number_of_arguments >= 0 , "cannot have negative number of arguments");
twisti@4318 1638 LP64_ONLY(assert(java_thread == r15_thread, "unexpected register"));
twisti@4318 1639 #ifdef ASSERT
twisti@4318 1640 // TraceBytecodes does not use r12 but saves it over the call, so don't verify
twisti@4318 1641 // r12 is the heapbase.
ehelin@5694 1642 LP64_ONLY(if ((UseCompressedOops || UseCompressedClassPointers) && !TraceBytecodes) verify_heapbase("call_VM_base: heap base corrupted?");)
twisti@4318 1643 #endif // ASSERT
twisti@4318 1644
twisti@4318 1645 assert(java_thread != oop_result , "cannot use the same register for java_thread & oop_result");
twisti@4318 1646 assert(java_thread != last_java_sp, "cannot use the same register for java_thread & last_java_sp");
twisti@4318 1647
twisti@4318 1648 // push java thread (becomes first argument of C function)
twisti@4318 1649
twisti@4318 1650 NOT_LP64(push(java_thread); number_of_arguments++);
twisti@4318 1651 LP64_ONLY(mov(c_rarg0, r15_thread));
twisti@4318 1652
twisti@4318 1653 // set last Java frame before call
twisti@4318 1654 assert(last_java_sp != rbp, "can't use ebp/rbp");
twisti@4318 1655
twisti@4318 1656 // Only interpreter should have to set fp
twisti@4318 1657 set_last_Java_frame(java_thread, last_java_sp, rbp, NULL);
twisti@4318 1658
twisti@4318 1659 // do the call, remove parameters
twisti@4318 1660 MacroAssembler::call_VM_leaf_base(entry_point, number_of_arguments);
twisti@4318 1661
twisti@4318 1662 // restore the thread (cannot use the pushed argument since arguments
twisti@4318 1663 // may be overwritten by C code generated by an optimizing compiler);
twisti@4318 1664 // however can use the register value directly if it is callee saved.
twisti@4318 1665 if (LP64_ONLY(true ||) java_thread == rdi || java_thread == rsi) {
twisti@4318 1666 // rdi & rsi (also r15) are callee saved -> nothing to do
twisti@4318 1667 #ifdef ASSERT
twisti@4318 1668 guarantee(java_thread != rax, "change this code");
twisti@4318 1669 push(rax);
twisti@4318 1670 { Label L;
twisti@4318 1671 get_thread(rax);
twisti@4318 1672 cmpptr(java_thread, rax);
twisti@4318 1673 jcc(Assembler::equal, L);
twisti@4318 1674 STOP("MacroAssembler::call_VM_base: rdi not callee saved?");
twisti@4318 1675 bind(L);
twisti@4318 1676 }
twisti@4318 1677 pop(rax);
twisti@4318 1678 #endif
twisti@4318 1679 } else {
twisti@4318 1680 get_thread(java_thread);
twisti@4318 1681 }
twisti@4318 1682 // reset last Java frame
twisti@4318 1683 // Only interpreter should have to clear fp
twisti@4318 1684 reset_last_Java_frame(java_thread, true, false);
twisti@4318 1685
twisti@4318 1686 #ifndef CC_INTERP
twisti@4318 1687 // C++ interp handles this in the interpreter
twisti@4318 1688 check_and_handle_popframe(java_thread);
twisti@4318 1689 check_and_handle_earlyret(java_thread);
twisti@4318 1690 #endif /* CC_INTERP */
twisti@4318 1691
twisti@4318 1692 if (check_exceptions) {
twisti@4318 1693 // check for pending exceptions (java_thread is set upon return)
twisti@4318 1694 cmpptr(Address(java_thread, Thread::pending_exception_offset()), (int32_t) NULL_WORD);
twisti@4318 1695 #ifndef _LP64
twisti@4318 1696 jump_cc(Assembler::notEqual,
twisti@4318 1697 RuntimeAddress(StubRoutines::forward_exception_entry()));
twisti@4318 1698 #else
twisti@4318 1699 // This used to conditionally jump to forward_exception however it is
twisti@4318 1700 // possible if we relocate that the branch will not reach. So we must jump
twisti@4318 1701 // around so we can always reach
twisti@4318 1702
twisti@4318 1703 Label ok;
twisti@4318 1704 jcc(Assembler::equal, ok);
twisti@4318 1705 jump(RuntimeAddress(StubRoutines::forward_exception_entry()));
twisti@4318 1706 bind(ok);
twisti@4318 1707 #endif // LP64
twisti@4318 1708 }
twisti@4318 1709
twisti@4318 1710 // get oop result if there is one and reset the value in the thread
twisti@4318 1711 if (oop_result->is_valid()) {
twisti@4318 1712 get_vm_result(oop_result, java_thread);
twisti@4318 1713 }
twisti@4318 1714 }
twisti@4318 1715
twisti@4318 1716 void MacroAssembler::call_VM_helper(Register oop_result, address entry_point, int number_of_arguments, bool check_exceptions) {
twisti@4318 1717
twisti@4318 1718 // Calculate the value for last_Java_sp
twisti@4318 1719 // somewhat subtle. call_VM does an intermediate call
twisti@4318 1720 // which places a return address on the stack just under the
twisti@4318 1721 // stack pointer as the user finsihed with it. This allows
twisti@4318 1722 // use to retrieve last_Java_pc from last_Java_sp[-1].
twisti@4318 1723 // On 32bit we then have to push additional args on the stack to accomplish
twisti@4318 1724 // the actual requested call. On 64bit call_VM only can use register args
twisti@4318 1725 // so the only extra space is the return address that call_VM created.
twisti@4318 1726 // This hopefully explains the calculations here.
twisti@4318 1727
twisti@4318 1728 #ifdef _LP64
twisti@4318 1729 // We've pushed one address, correct last_Java_sp
twisti@4318 1730 lea(rax, Address(rsp, wordSize));
twisti@4318 1731 #else
twisti@4318 1732 lea(rax, Address(rsp, (1 + number_of_arguments) * wordSize));
twisti@4318 1733 #endif // LP64
twisti@4318 1734
twisti@4318 1735 call_VM_base(oop_result, noreg, rax, entry_point, number_of_arguments, check_exceptions);
twisti@4318 1736
twisti@4318 1737 }
twisti@4318 1738
twisti@4318 1739 void MacroAssembler::call_VM_leaf(address entry_point, int number_of_arguments) {
twisti@4318 1740 call_VM_leaf_base(entry_point, number_of_arguments);
twisti@4318 1741 }
twisti@4318 1742
twisti@4318 1743 void MacroAssembler::call_VM_leaf(address entry_point, Register arg_0) {
twisti@4318 1744 pass_arg0(this, arg_0);
twisti@4318 1745 call_VM_leaf(entry_point, 1);
twisti@4318 1746 }
twisti@4318 1747
twisti@4318 1748 void MacroAssembler::call_VM_leaf(address entry_point, Register arg_0, Register arg_1) {
twisti@4318 1749
twisti@4318 1750 LP64_ONLY(assert(arg_0 != c_rarg1, "smashed arg"));
twisti@4318 1751 pass_arg1(this, arg_1);
twisti@4318 1752 pass_arg0(this, arg_0);
twisti@4318 1753 call_VM_leaf(entry_point, 2);
twisti@4318 1754 }
twisti@4318 1755
twisti@4318 1756 void MacroAssembler::call_VM_leaf(address entry_point, Register arg_0, Register arg_1, Register arg_2) {
twisti@4318 1757 LP64_ONLY(assert(arg_0 != c_rarg2, "smashed arg"));
twisti@4318 1758 LP64_ONLY(assert(arg_1 != c_rarg2, "smashed arg"));
twisti@4318 1759 pass_arg2(this, arg_2);
twisti@4318 1760 LP64_ONLY(assert(arg_0 != c_rarg1, "smashed arg"));
twisti@4318 1761 pass_arg1(this, arg_1);
twisti@4318 1762 pass_arg0(this, arg_0);
twisti@4318 1763 call_VM_leaf(entry_point, 3);
twisti@4318 1764 }
twisti@4318 1765
twisti@4318 1766 void MacroAssembler::super_call_VM_leaf(address entry_point, Register arg_0) {
twisti@4318 1767 pass_arg0(this, arg_0);
twisti@4318 1768 MacroAssembler::call_VM_leaf_base(entry_point, 1);
twisti@4318 1769 }
twisti@4318 1770
twisti@4318 1771 void MacroAssembler::super_call_VM_leaf(address entry_point, Register arg_0, Register arg_1) {
twisti@4318 1772
twisti@4318 1773 LP64_ONLY(assert(arg_0 != c_rarg1, "smashed arg"));
twisti@4318 1774 pass_arg1(this, arg_1);
twisti@4318 1775 pass_arg0(this, arg_0);
twisti@4318 1776 MacroAssembler::call_VM_leaf_base(entry_point, 2);
twisti@4318 1777 }
twisti@4318 1778
twisti@4318 1779 void MacroAssembler::super_call_VM_leaf(address entry_point, Register arg_0, Register arg_1, Register arg_2) {
twisti@4318 1780 LP64_ONLY(assert(arg_0 != c_rarg2, "smashed arg"));
twisti@4318 1781 LP64_ONLY(assert(arg_1 != c_rarg2, "smashed arg"));
twisti@4318 1782 pass_arg2(this, arg_2);
twisti@4318 1783 LP64_ONLY(assert(arg_0 != c_rarg1, "smashed arg"));
twisti@4318 1784 pass_arg1(this, arg_1);
twisti@4318 1785 pass_arg0(this, arg_0);
twisti@4318 1786 MacroAssembler::call_VM_leaf_base(entry_point, 3);
twisti@4318 1787 }
twisti@4318 1788
twisti@4318 1789 void MacroAssembler::super_call_VM_leaf(address entry_point, Register arg_0, Register arg_1, Register arg_2, Register arg_3) {
twisti@4318 1790 LP64_ONLY(assert(arg_0 != c_rarg3, "smashed arg"));
twisti@4318 1791 LP64_ONLY(assert(arg_1 != c_rarg3, "smashed arg"));
twisti@4318 1792 LP64_ONLY(assert(arg_2 != c_rarg3, "smashed arg"));
twisti@4318 1793 pass_arg3(this, arg_3);
twisti@4318 1794 LP64_ONLY(assert(arg_0 != c_rarg2, "smashed arg"));
twisti@4318 1795 LP64_ONLY(assert(arg_1 != c_rarg2, "smashed arg"));
twisti@4318 1796 pass_arg2(this, arg_2);
twisti@4318 1797 LP64_ONLY(assert(arg_0 != c_rarg1, "smashed arg"));
twisti@4318 1798 pass_arg1(this, arg_1);
twisti@4318 1799 pass_arg0(this, arg_0);
twisti@4318 1800 MacroAssembler::call_VM_leaf_base(entry_point, 4);
twisti@4318 1801 }
twisti@4318 1802
twisti@4318 1803 void MacroAssembler::get_vm_result(Register oop_result, Register java_thread) {
twisti@4318 1804 movptr(oop_result, Address(java_thread, JavaThread::vm_result_offset()));
twisti@4318 1805 movptr(Address(java_thread, JavaThread::vm_result_offset()), NULL_WORD);
twisti@4318 1806 verify_oop(oop_result, "broken oop in call_VM_base");
twisti@4318 1807 }
twisti@4318 1808
twisti@4318 1809 void MacroAssembler::get_vm_result_2(Register metadata_result, Register java_thread) {
twisti@4318 1810 movptr(metadata_result, Address(java_thread, JavaThread::vm_result_2_offset()));
twisti@4318 1811 movptr(Address(java_thread, JavaThread::vm_result_2_offset()), NULL_WORD);
twisti@4318 1812 }
twisti@4318 1813
twisti@4318 1814 void MacroAssembler::check_and_handle_earlyret(Register java_thread) {
twisti@4318 1815 }
twisti@4318 1816
twisti@4318 1817 void MacroAssembler::check_and_handle_popframe(Register java_thread) {
twisti@4318 1818 }
twisti@4318 1819
twisti@4318 1820 void MacroAssembler::cmp32(AddressLiteral src1, int32_t imm) {
twisti@4318 1821 if (reachable(src1)) {
twisti@4318 1822 cmpl(as_Address(src1), imm);
twisti@4318 1823 } else {
twisti@4318 1824 lea(rscratch1, src1);
twisti@4318 1825 cmpl(Address(rscratch1, 0), imm);
twisti@4318 1826 }
twisti@4318 1827 }
twisti@4318 1828
twisti@4318 1829 void MacroAssembler::cmp32(Register src1, AddressLiteral src2) {
twisti@4318 1830 assert(!src2.is_lval(), "use cmpptr");
twisti@4318 1831 if (reachable(src2)) {
twisti@4318 1832 cmpl(src1, as_Address(src2));
twisti@4318 1833 } else {
twisti@4318 1834 lea(rscratch1, src2);
twisti@4318 1835 cmpl(src1, Address(rscratch1, 0));
twisti@4318 1836 }
twisti@4318 1837 }
twisti@4318 1838
twisti@4318 1839 void MacroAssembler::cmp32(Register src1, int32_t imm) {
twisti@4318 1840 Assembler::cmpl(src1, imm);
twisti@4318 1841 }
twisti@4318 1842
twisti@4318 1843 void MacroAssembler::cmp32(Register src1, Address src2) {
twisti@4318 1844 Assembler::cmpl(src1, src2);
twisti@4318 1845 }
twisti@4318 1846
twisti@4318 1847 void MacroAssembler::cmpsd2int(XMMRegister opr1, XMMRegister opr2, Register dst, bool unordered_is_less) {
twisti@4318 1848 ucomisd(opr1, opr2);
twisti@4318 1849
twisti@4318 1850 Label L;
twisti@4318 1851 if (unordered_is_less) {
twisti@4318 1852 movl(dst, -1);
twisti@4318 1853 jcc(Assembler::parity, L);
twisti@4318 1854 jcc(Assembler::below , L);
twisti@4318 1855 movl(dst, 0);
twisti@4318 1856 jcc(Assembler::equal , L);
twisti@4318 1857 increment(dst);
twisti@4318 1858 } else { // unordered is greater
twisti@4318 1859 movl(dst, 1);
twisti@4318 1860 jcc(Assembler::parity, L);
twisti@4318 1861 jcc(Assembler::above , L);
twisti@4318 1862 movl(dst, 0);
twisti@4318 1863 jcc(Assembler::equal , L);
twisti@4318 1864 decrementl(dst);
twisti@4318 1865 }
twisti@4318 1866 bind(L);
twisti@4318 1867 }
twisti@4318 1868
twisti@4318 1869 void MacroAssembler::cmpss2int(XMMRegister opr1, XMMRegister opr2, Register dst, bool unordered_is_less) {
twisti@4318 1870 ucomiss(opr1, opr2);
twisti@4318 1871
twisti@4318 1872 Label L;
twisti@4318 1873 if (unordered_is_less) {
twisti@4318 1874 movl(dst, -1);
twisti@4318 1875 jcc(Assembler::parity, L);
twisti@4318 1876 jcc(Assembler::below , L);
twisti@4318 1877 movl(dst, 0);
twisti@4318 1878 jcc(Assembler::equal , L);
twisti@4318 1879 increment(dst);
twisti@4318 1880 } else { // unordered is greater
twisti@4318 1881 movl(dst, 1);
twisti@4318 1882 jcc(Assembler::parity, L);
twisti@4318 1883 jcc(Assembler::above , L);
twisti@4318 1884 movl(dst, 0);
twisti@4318 1885 jcc(Assembler::equal , L);
twisti@4318 1886 decrementl(dst);
twisti@4318 1887 }
twisti@4318 1888 bind(L);
twisti@4318 1889 }
twisti@4318 1890
twisti@4318 1891
twisti@4318 1892 void MacroAssembler::cmp8(AddressLiteral src1, int imm) {
twisti@4318 1893 if (reachable(src1)) {
twisti@4318 1894 cmpb(as_Address(src1), imm);
twisti@4318 1895 } else {
twisti@4318 1896 lea(rscratch1, src1);
twisti@4318 1897 cmpb(Address(rscratch1, 0), imm);
twisti@4318 1898 }
twisti@4318 1899 }
twisti@4318 1900
twisti@4318 1901 void MacroAssembler::cmpptr(Register src1, AddressLiteral src2) {
twisti@4318 1902 #ifdef _LP64
twisti@4318 1903 if (src2.is_lval()) {
twisti@4318 1904 movptr(rscratch1, src2);
twisti@4318 1905 Assembler::cmpq(src1, rscratch1);
twisti@4318 1906 } else if (reachable(src2)) {
twisti@4318 1907 cmpq(src1, as_Address(src2));
twisti@4318 1908 } else {
twisti@4318 1909 lea(rscratch1, src2);
twisti@4318 1910 Assembler::cmpq(src1, Address(rscratch1, 0));
twisti@4318 1911 }
twisti@4318 1912 #else
twisti@4318 1913 if (src2.is_lval()) {
twisti@4318 1914 cmp_literal32(src1, (int32_t) src2.target(), src2.rspec());
twisti@4318 1915 } else {
twisti@4318 1916 cmpl(src1, as_Address(src2));
twisti@4318 1917 }
twisti@4318 1918 #endif // _LP64
twisti@4318 1919 }
twisti@4318 1920
twisti@4318 1921 void MacroAssembler::cmpptr(Address src1, AddressLiteral src2) {
twisti@4318 1922 assert(src2.is_lval(), "not a mem-mem compare");
twisti@4318 1923 #ifdef _LP64
twisti@4318 1924 // moves src2's literal address
twisti@4318 1925 movptr(rscratch1, src2);
twisti@4318 1926 Assembler::cmpq(src1, rscratch1);
twisti@4318 1927 #else
twisti@4318 1928 cmp_literal32(src1, (int32_t) src2.target(), src2.rspec());
twisti@4318 1929 #endif // _LP64
twisti@4318 1930 }
twisti@4318 1931
twisti@4318 1932 void MacroAssembler::locked_cmpxchgptr(Register reg, AddressLiteral adr) {
twisti@4318 1933 if (reachable(adr)) {
twisti@4318 1934 if (os::is_MP())
twisti@4318 1935 lock();
twisti@4318 1936 cmpxchgptr(reg, as_Address(adr));
twisti@4318 1937 } else {
twisti@4318 1938 lea(rscratch1, adr);
twisti@4318 1939 if (os::is_MP())
twisti@4318 1940 lock();
twisti@4318 1941 cmpxchgptr(reg, Address(rscratch1, 0));
twisti@4318 1942 }
twisti@4318 1943 }
twisti@4318 1944
twisti@4318 1945 void MacroAssembler::cmpxchgptr(Register reg, Address adr) {
twisti@4318 1946 LP64_ONLY(cmpxchgq(reg, adr)) NOT_LP64(cmpxchgl(reg, adr));
twisti@4318 1947 }
twisti@4318 1948
twisti@4318 1949 void MacroAssembler::comisd(XMMRegister dst, AddressLiteral src) {
twisti@4318 1950 if (reachable(src)) {
twisti@4318 1951 Assembler::comisd(dst, as_Address(src));
twisti@4318 1952 } else {
twisti@4318 1953 lea(rscratch1, src);
twisti@4318 1954 Assembler::comisd(dst, Address(rscratch1, 0));
twisti@4318 1955 }
twisti@4318 1956 }
twisti@4318 1957
twisti@4318 1958 void MacroAssembler::comiss(XMMRegister dst, AddressLiteral src) {
twisti@4318 1959 if (reachable(src)) {
twisti@4318 1960 Assembler::comiss(dst, as_Address(src));
twisti@4318 1961 } else {
twisti@4318 1962 lea(rscratch1, src);
twisti@4318 1963 Assembler::comiss(dst, Address(rscratch1, 0));
twisti@4318 1964 }
twisti@4318 1965 }
twisti@4318 1966
twisti@4318 1967
twisti@4318 1968 void MacroAssembler::cond_inc32(Condition cond, AddressLiteral counter_addr) {
twisti@4318 1969 Condition negated_cond = negate_condition(cond);
twisti@4318 1970 Label L;
twisti@4318 1971 jcc(negated_cond, L);
twisti@4318 1972 atomic_incl(counter_addr);
twisti@4318 1973 bind(L);
twisti@4318 1974 }
twisti@4318 1975
twisti@4318 1976 int MacroAssembler::corrected_idivl(Register reg) {
twisti@4318 1977 // Full implementation of Java idiv and irem; checks for
twisti@4318 1978 // special case as described in JVM spec., p.243 & p.271.
twisti@4318 1979 // The function returns the (pc) offset of the idivl
twisti@4318 1980 // instruction - may be needed for implicit exceptions.
twisti@4318 1981 //
twisti@4318 1982 // normal case special case
twisti@4318 1983 //
twisti@4318 1984 // input : rax,: dividend min_int
twisti@4318 1985 // reg: divisor (may not be rax,/rdx) -1
twisti@4318 1986 //
twisti@4318 1987 // output: rax,: quotient (= rax, idiv reg) min_int
twisti@4318 1988 // rdx: remainder (= rax, irem reg) 0
twisti@4318 1989 assert(reg != rax && reg != rdx, "reg cannot be rax, or rdx register");
twisti@4318 1990 const int min_int = 0x80000000;
twisti@4318 1991 Label normal_case, special_case;
twisti@4318 1992
twisti@4318 1993 // check for special case
twisti@4318 1994 cmpl(rax, min_int);
twisti@4318 1995 jcc(Assembler::notEqual, normal_case);
twisti@4318 1996 xorl(rdx, rdx); // prepare rdx for possible special case (where remainder = 0)
twisti@4318 1997 cmpl(reg, -1);
twisti@4318 1998 jcc(Assembler::equal, special_case);
twisti@4318 1999
twisti@4318 2000 // handle normal case
twisti@4318 2001 bind(normal_case);
twisti@4318 2002 cdql();
twisti@4318 2003 int idivl_offset = offset();
twisti@4318 2004 idivl(reg);
twisti@4318 2005
twisti@4318 2006 // normal and special case exit
twisti@4318 2007 bind(special_case);
twisti@4318 2008
twisti@4318 2009 return idivl_offset;
twisti@4318 2010 }
twisti@4318 2011
twisti@4318 2012
twisti@4318 2013
twisti@4318 2014 void MacroAssembler::decrementl(Register reg, int value) {
twisti@4318 2015 if (value == min_jint) {subl(reg, value) ; return; }
twisti@4318 2016 if (value < 0) { incrementl(reg, -value); return; }
twisti@4318 2017 if (value == 0) { ; return; }
twisti@4318 2018 if (value == 1 && UseIncDec) { decl(reg) ; return; }
twisti@4318 2019 /* else */ { subl(reg, value) ; return; }
twisti@4318 2020 }
twisti@4318 2021
twisti@4318 2022 void MacroAssembler::decrementl(Address dst, int value) {
twisti@4318 2023 if (value == min_jint) {subl(dst, value) ; return; }
twisti@4318 2024 if (value < 0) { incrementl(dst, -value); return; }
twisti@4318 2025 if (value == 0) { ; return; }
twisti@4318 2026 if (value == 1 && UseIncDec) { decl(dst) ; return; }
twisti@4318 2027 /* else */ { subl(dst, value) ; return; }
twisti@4318 2028 }
twisti@4318 2029
twisti@4318 2030 void MacroAssembler::division_with_shift (Register reg, int shift_value) {
twisti@4318 2031 assert (shift_value > 0, "illegal shift value");
twisti@4318 2032 Label _is_positive;
twisti@4318 2033 testl (reg, reg);
twisti@4318 2034 jcc (Assembler::positive, _is_positive);
twisti@4318 2035 int offset = (1 << shift_value) - 1 ;
twisti@4318 2036
twisti@4318 2037 if (offset == 1) {
twisti@4318 2038 incrementl(reg);
twisti@4318 2039 } else {
twisti@4318 2040 addl(reg, offset);
twisti@4318 2041 }
twisti@4318 2042
twisti@4318 2043 bind (_is_positive);
twisti@4318 2044 sarl(reg, shift_value);
twisti@4318 2045 }
twisti@4318 2046
twisti@4318 2047 void MacroAssembler::divsd(XMMRegister dst, AddressLiteral src) {
twisti@4318 2048 if (reachable(src)) {
twisti@4318 2049 Assembler::divsd(dst, as_Address(src));
twisti@4318 2050 } else {
twisti@4318 2051 lea(rscratch1, src);
twisti@4318 2052 Assembler::divsd(dst, Address(rscratch1, 0));
twisti@4318 2053 }
twisti@4318 2054 }
twisti@4318 2055
twisti@4318 2056 void MacroAssembler::divss(XMMRegister dst, AddressLiteral src) {
twisti@4318 2057 if (reachable(src)) {
twisti@4318 2058 Assembler::divss(dst, as_Address(src));
twisti@4318 2059 } else {
twisti@4318 2060 lea(rscratch1, src);
twisti@4318 2061 Assembler::divss(dst, Address(rscratch1, 0));
twisti@4318 2062 }
twisti@4318 2063 }
twisti@4318 2064
twisti@4318 2065 // !defined(COMPILER2) is because of stupid core builds
twisti@4318 2066 #if !defined(_LP64) || defined(COMPILER1) || !defined(COMPILER2)
twisti@4318 2067 void MacroAssembler::empty_FPU_stack() {
twisti@4318 2068 if (VM_Version::supports_mmx()) {
twisti@4318 2069 emms();
twisti@4318 2070 } else {
twisti@4318 2071 for (int i = 8; i-- > 0; ) ffree(i);
twisti@4318 2072 }
twisti@4318 2073 }
twisti@4318 2074 #endif // !LP64 || C1 || !C2
twisti@4318 2075
twisti@4318 2076
twisti@4318 2077 // Defines obj, preserves var_size_in_bytes
twisti@4318 2078 void MacroAssembler::eden_allocate(Register obj,
twisti@4318 2079 Register var_size_in_bytes,
twisti@4318 2080 int con_size_in_bytes,
twisti@4318 2081 Register t1,
twisti@4318 2082 Label& slow_case) {
twisti@4318 2083 assert(obj == rax, "obj must be in rax, for cmpxchg");
twisti@4318 2084 assert_different_registers(obj, var_size_in_bytes, t1);
twisti@4318 2085 if (CMSIncrementalMode || !Universe::heap()->supports_inline_contig_alloc()) {
twisti@4318 2086 jmp(slow_case);
twisti@4318 2087 } else {
twisti@4318 2088 Register end = t1;
twisti@4318 2089 Label retry;
twisti@4318 2090 bind(retry);
twisti@4318 2091 ExternalAddress heap_top((address) Universe::heap()->top_addr());
twisti@4318 2092 movptr(obj, heap_top);
twisti@4318 2093 if (var_size_in_bytes == noreg) {
twisti@4318 2094 lea(end, Address(obj, con_size_in_bytes));
twisti@4318 2095 } else {
twisti@4318 2096 lea(end, Address(obj, var_size_in_bytes, Address::times_1));
twisti@4318 2097 }
twisti@4318 2098 // if end < obj then we wrapped around => object too long => slow case
twisti@4318 2099 cmpptr(end, obj);
twisti@4318 2100 jcc(Assembler::below, slow_case);
twisti@4318 2101 cmpptr(end, ExternalAddress((address) Universe::heap()->end_addr()));
twisti@4318 2102 jcc(Assembler::above, slow_case);
twisti@4318 2103 // Compare obj with the top addr, and if still equal, store the new top addr in
twisti@4318 2104 // end at the address of the top addr pointer. Sets ZF if was equal, and clears
twisti@4318 2105 // it otherwise. Use lock prefix for atomicity on MPs.
twisti@4318 2106 locked_cmpxchgptr(end, heap_top);
twisti@4318 2107 jcc(Assembler::notEqual, retry);
twisti@4318 2108 }
twisti@4318 2109 }
twisti@4318 2110
twisti@4318 2111 void MacroAssembler::enter() {
twisti@4318 2112 push(rbp);
twisti@4318 2113 mov(rbp, rsp);
twisti@4318 2114 }
twisti@4318 2115
twisti@4318 2116 // A 5 byte nop that is safe for patching (see patch_verified_entry)
twisti@4318 2117 void MacroAssembler::fat_nop() {
twisti@4318 2118 if (UseAddressNop) {
twisti@4318 2119 addr_nop_5();
twisti@4318 2120 } else {
twisti@4366 2121 emit_int8(0x26); // es:
twisti@4366 2122 emit_int8(0x2e); // cs:
twisti@4366 2123 emit_int8(0x64); // fs:
twisti@4366 2124 emit_int8(0x65); // gs:
twisti@4366 2125 emit_int8((unsigned char)0x90);
twisti@4318 2126 }
twisti@4318 2127 }
twisti@4318 2128
twisti@4318 2129 void MacroAssembler::fcmp(Register tmp) {
twisti@4318 2130 fcmp(tmp, 1, true, true);
twisti@4318 2131 }
twisti@4318 2132
twisti@4318 2133 void MacroAssembler::fcmp(Register tmp, int index, bool pop_left, bool pop_right) {
twisti@4318 2134 assert(!pop_right || pop_left, "usage error");
twisti@4318 2135 if (VM_Version::supports_cmov()) {
twisti@4318 2136 assert(tmp == noreg, "unneeded temp");
twisti@4318 2137 if (pop_left) {
twisti@4318 2138 fucomip(index);
twisti@4318 2139 } else {
twisti@4318 2140 fucomi(index);
twisti@4318 2141 }
twisti@4318 2142 if (pop_right) {
twisti@4318 2143 fpop();
twisti@4318 2144 }
twisti@4318 2145 } else {
twisti@4318 2146 assert(tmp != noreg, "need temp");
twisti@4318 2147 if (pop_left) {
twisti@4318 2148 if (pop_right) {
twisti@4318 2149 fcompp();
twisti@4318 2150 } else {
twisti@4318 2151 fcomp(index);
twisti@4318 2152 }
twisti@4318 2153 } else {
twisti@4318 2154 fcom(index);
twisti@4318 2155 }
twisti@4318 2156 // convert FPU condition into eflags condition via rax,
twisti@4318 2157 save_rax(tmp);
twisti@4318 2158 fwait(); fnstsw_ax();
twisti@4318 2159 sahf();
twisti@4318 2160 restore_rax(tmp);
twisti@4318 2161 }
twisti@4318 2162 // condition codes set as follows:
twisti@4318 2163 //
twisti@4318 2164 // CF (corresponds to C0) if x < y
twisti@4318 2165 // PF (corresponds to C2) if unordered
twisti@4318 2166 // ZF (corresponds to C3) if x = y
twisti@4318 2167 }
twisti@4318 2168
twisti@4318 2169 void MacroAssembler::fcmp2int(Register dst, bool unordered_is_less) {
twisti@4318 2170 fcmp2int(dst, unordered_is_less, 1, true, true);
twisti@4318 2171 }
twisti@4318 2172
twisti@4318 2173 void MacroAssembler::fcmp2int(Register dst, bool unordered_is_less, int index, bool pop_left, bool pop_right) {
twisti@4318 2174 fcmp(VM_Version::supports_cmov() ? noreg : dst, index, pop_left, pop_right);
twisti@4318 2175 Label L;
twisti@4318 2176 if (unordered_is_less) {
twisti@4318 2177 movl(dst, -1);
twisti@4318 2178 jcc(Assembler::parity, L);
twisti@4318 2179 jcc(Assembler::below , L);
twisti@4318 2180 movl(dst, 0);
twisti@4318 2181 jcc(Assembler::equal , L);
twisti@4318 2182 increment(dst);
twisti@4318 2183 } else { // unordered is greater
twisti@4318 2184 movl(dst, 1);
twisti@4318 2185 jcc(Assembler::parity, L);
twisti@4318 2186 jcc(Assembler::above , L);
twisti@4318 2187 movl(dst, 0);
twisti@4318 2188 jcc(Assembler::equal , L);
twisti@4318 2189 decrementl(dst);
twisti@4318 2190 }
twisti@4318 2191 bind(L);
twisti@4318 2192 }
twisti@4318 2193
twisti@4318 2194 void MacroAssembler::fld_d(AddressLiteral src) {
twisti@4318 2195 fld_d(as_Address(src));
twisti@4318 2196 }
twisti@4318 2197
twisti@4318 2198 void MacroAssembler::fld_s(AddressLiteral src) {
twisti@4318 2199 fld_s(as_Address(src));
twisti@4318 2200 }
twisti@4318 2201
twisti@4318 2202 void MacroAssembler::fld_x(AddressLiteral src) {
twisti@4318 2203 Assembler::fld_x(as_Address(src));
twisti@4318 2204 }
twisti@4318 2205
twisti@4318 2206 void MacroAssembler::fldcw(AddressLiteral src) {
twisti@4318 2207 Assembler::fldcw(as_Address(src));
twisti@4318 2208 }
twisti@4318 2209
twisti@4318 2210 void MacroAssembler::pow_exp_core_encoding() {
twisti@4318 2211 // kills rax, rcx, rdx
twisti@4318 2212 subptr(rsp,sizeof(jdouble));
twisti@4318 2213 // computes 2^X. Stack: X ...
twisti@4318 2214 // f2xm1 computes 2^X-1 but only operates on -1<=X<=1. Get int(X) and
twisti@4318 2215 // keep it on the thread's stack to compute 2^int(X) later
twisti@4318 2216 // then compute 2^(X-int(X)) as (2^(X-int(X)-1+1)
twisti@4318 2217 // final result is obtained with: 2^X = 2^int(X) * 2^(X-int(X))
twisti@4318 2218 fld_s(0); // Stack: X X ...
twisti@4318 2219 frndint(); // Stack: int(X) X ...
twisti@4318 2220 fsuba(1); // Stack: int(X) X-int(X) ...
twisti@4318 2221 fistp_s(Address(rsp,0)); // move int(X) as integer to thread's stack. Stack: X-int(X) ...
twisti@4318 2222 f2xm1(); // Stack: 2^(X-int(X))-1 ...
twisti@4318 2223 fld1(); // Stack: 1 2^(X-int(X))-1 ...
twisti@4318 2224 faddp(1); // Stack: 2^(X-int(X))
twisti@4318 2225 // computes 2^(int(X)): add exponent bias (1023) to int(X), then
twisti@4318 2226 // shift int(X)+1023 to exponent position.
twisti@4318 2227 // Exponent is limited to 11 bits if int(X)+1023 does not fit in 11
twisti@4318 2228 // bits, set result to NaN. 0x000 and 0x7FF are reserved exponent
twisti@4318 2229 // values so detect them and set result to NaN.
twisti@4318 2230 movl(rax,Address(rsp,0));
twisti@4318 2231 movl(rcx, -2048); // 11 bit mask and valid NaN binary encoding
twisti@4318 2232 addl(rax, 1023);
twisti@4318 2233 movl(rdx,rax);
twisti@4318 2234 shll(rax,20);
twisti@4318 2235 // Check that 0 < int(X)+1023 < 2047. Otherwise set rax to NaN.
twisti@4318 2236 addl(rdx,1);
twisti@4318 2237 // Check that 1 < int(X)+1023+1 < 2048
twisti@4318 2238 // in 3 steps:
twisti@4318 2239 // 1- (int(X)+1023+1)&-2048 == 0 => 0 <= int(X)+1023+1 < 2048
twisti@4318 2240 // 2- (int(X)+1023+1)&-2048 != 0
twisti@4318 2241 // 3- (int(X)+1023+1)&-2048 != 1
twisti@4318 2242 // Do 2- first because addl just updated the flags.
twisti@4318 2243 cmov32(Assembler::equal,rax,rcx);
twisti@4318 2244 cmpl(rdx,1);
twisti@4318 2245 cmov32(Assembler::equal,rax,rcx);
twisti@4318 2246 testl(rdx,rcx);
twisti@4318 2247 cmov32(Assembler::notEqual,rax,rcx);
twisti@4318 2248 movl(Address(rsp,4),rax);
twisti@4318 2249 movl(Address(rsp,0),0);
twisti@4318 2250 fmul_d(Address(rsp,0)); // Stack: 2^X ...
twisti@4318 2251 addptr(rsp,sizeof(jdouble));
twisti@4318 2252 }
twisti@4318 2253
twisti@4318 2254 void MacroAssembler::increase_precision() {
twisti@4318 2255 subptr(rsp, BytesPerWord);
twisti@4318 2256 fnstcw(Address(rsp, 0));
twisti@4318 2257 movl(rax, Address(rsp, 0));
twisti@4318 2258 orl(rax, 0x300);
twisti@4318 2259 push(rax);
twisti@4318 2260 fldcw(Address(rsp, 0));
twisti@4318 2261 pop(rax);
twisti@4318 2262 }
twisti@4318 2263
twisti@4318 2264 void MacroAssembler::restore_precision() {
twisti@4318 2265 fldcw(Address(rsp, 0));
twisti@4318 2266 addptr(rsp, BytesPerWord);
twisti@4318 2267 }
twisti@4318 2268
twisti@4318 2269 void MacroAssembler::fast_pow() {
twisti@4318 2270 // computes X^Y = 2^(Y * log2(X))
twisti@4318 2271 // if fast computation is not possible, result is NaN. Requires
twisti@4318 2272 // fallback from user of this macro.
twisti@4318 2273 // increase precision for intermediate steps of the computation
twisti@4318 2274 increase_precision();
twisti@4318 2275 fyl2x(); // Stack: (Y*log2(X)) ...
twisti@4318 2276 pow_exp_core_encoding(); // Stack: exp(X) ...
twisti@4318 2277 restore_precision();
twisti@4318 2278 }
twisti@4318 2279
twisti@4318 2280 void MacroAssembler::fast_exp() {
twisti@4318 2281 // computes exp(X) = 2^(X * log2(e))
twisti@4318 2282 // if fast computation is not possible, result is NaN. Requires
twisti@4318 2283 // fallback from user of this macro.
twisti@4318 2284 // increase precision for intermediate steps of the computation
twisti@4318 2285 increase_precision();
twisti@4318 2286 fldl2e(); // Stack: log2(e) X ...
twisti@4318 2287 fmulp(1); // Stack: (X*log2(e)) ...
twisti@4318 2288 pow_exp_core_encoding(); // Stack: exp(X) ...
twisti@4318 2289 restore_precision();
twisti@4318 2290 }
twisti@4318 2291
twisti@4318 2292 void MacroAssembler::pow_or_exp(bool is_exp, int num_fpu_regs_in_use) {
twisti@4318 2293 // kills rax, rcx, rdx
twisti@4318 2294 // pow and exp needs 2 extra registers on the fpu stack.
twisti@4318 2295 Label slow_case, done;
twisti@4318 2296 Register tmp = noreg;
twisti@4318 2297 if (!VM_Version::supports_cmov()) {
twisti@4318 2298 // fcmp needs a temporary so preserve rdx,
twisti@4318 2299 tmp = rdx;
twisti@4318 2300 }
twisti@4318 2301 Register tmp2 = rax;
twisti@4318 2302 Register tmp3 = rcx;
twisti@4318 2303
twisti@4318 2304 if (is_exp) {
twisti@4318 2305 // Stack: X
twisti@4318 2306 fld_s(0); // duplicate argument for runtime call. Stack: X X
twisti@4318 2307 fast_exp(); // Stack: exp(X) X
twisti@4318 2308 fcmp(tmp, 0, false, false); // Stack: exp(X) X
twisti@4318 2309 // exp(X) not equal to itself: exp(X) is NaN go to slow case.
twisti@4318 2310 jcc(Assembler::parity, slow_case);
twisti@4318 2311 // get rid of duplicate argument. Stack: exp(X)
twisti@4318 2312 if (num_fpu_regs_in_use > 0) {
twisti@4318 2313 fxch();
twisti@4318 2314 fpop();
twisti@4318 2315 } else {
twisti@4318 2316 ffree(1);
twisti@4318 2317 }
twisti@4318 2318 jmp(done);
twisti@4318 2319 } else {
twisti@4318 2320 // Stack: X Y
twisti@4318 2321 Label x_negative, y_odd;
twisti@4318 2322
twisti@4318 2323 fldz(); // Stack: 0 X Y
twisti@4318 2324 fcmp(tmp, 1, true, false); // Stack: X Y
twisti@4318 2325 jcc(Assembler::above, x_negative);
twisti@4318 2326
twisti@4318 2327 // X >= 0
twisti@4318 2328
twisti@4318 2329 fld_s(1); // duplicate arguments for runtime call. Stack: Y X Y
twisti@4318 2330 fld_s(1); // Stack: X Y X Y
twisti@4318 2331 fast_pow(); // Stack: X^Y X Y
twisti@4318 2332 fcmp(tmp, 0, false, false); // Stack: X^Y X Y
twisti@4318 2333 // X^Y not equal to itself: X^Y is NaN go to slow case.
twisti@4318 2334 jcc(Assembler::parity, slow_case);
twisti@4318 2335 // get rid of duplicate arguments. Stack: X^Y
twisti@4318 2336 if (num_fpu_regs_in_use > 0) {
twisti@4318 2337 fxch(); fpop();
twisti@4318 2338 fxch(); fpop();
twisti@4318 2339 } else {
twisti@4318 2340 ffree(2);
twisti@4318 2341 ffree(1);
twisti@4318 2342 }
twisti@4318 2343 jmp(done);
twisti@4318 2344
twisti@4318 2345 // X <= 0
twisti@4318 2346 bind(x_negative);
twisti@4318 2347
twisti@4318 2348 fld_s(1); // Stack: Y X Y
twisti@4318 2349 frndint(); // Stack: int(Y) X Y
twisti@4318 2350 fcmp(tmp, 2, false, false); // Stack: int(Y) X Y
twisti@4318 2351 jcc(Assembler::notEqual, slow_case);
twisti@4318 2352
twisti@4318 2353 subptr(rsp, 8);
twisti@4318 2354
twisti@4318 2355 // For X^Y, when X < 0, Y has to be an integer and the final
twisti@4318 2356 // result depends on whether it's odd or even. We just checked
twisti@4318 2357 // that int(Y) == Y. We move int(Y) to gp registers as a 64 bit
twisti@4318 2358 // integer to test its parity. If int(Y) is huge and doesn't fit
twisti@4318 2359 // in the 64 bit integer range, the integer indefinite value will
twisti@4318 2360 // end up in the gp registers. Huge numbers are all even, the
twisti@4318 2361 // integer indefinite number is even so it's fine.
twisti@4318 2362
twisti@4318 2363 #ifdef ASSERT
twisti@4318 2364 // Let's check we don't end up with an integer indefinite number
twisti@4318 2365 // when not expected. First test for huge numbers: check whether
twisti@4318 2366 // int(Y)+1 == int(Y) which is true for very large numbers and
twisti@4318 2367 // those are all even. A 64 bit integer is guaranteed to not
twisti@4318 2368 // overflow for numbers where y+1 != y (when precision is set to
twisti@4318 2369 // double precision).
twisti@4318 2370 Label y_not_huge;
twisti@4318 2371
twisti@4318 2372 fld1(); // Stack: 1 int(Y) X Y
twisti@4318 2373 fadd(1); // Stack: 1+int(Y) int(Y) X Y
twisti@4318 2374
twisti@4318 2375 #ifdef _LP64
twisti@4318 2376 // trip to memory to force the precision down from double extended
twisti@4318 2377 // precision
twisti@4318 2378 fstp_d(Address(rsp, 0));
twisti@4318 2379 fld_d(Address(rsp, 0));
twisti@4318 2380 #endif
twisti@4318 2381
twisti@4318 2382 fcmp(tmp, 1, true, false); // Stack: int(Y) X Y
twisti@4318 2383 #endif
twisti@4318 2384
twisti@4318 2385 // move int(Y) as 64 bit integer to thread's stack
twisti@4318 2386 fistp_d(Address(rsp,0)); // Stack: X Y
twisti@4318 2387
twisti@4318 2388 #ifdef ASSERT
twisti@4318 2389 jcc(Assembler::notEqual, y_not_huge);
twisti@4318 2390
twisti@4318 2391 // Y is huge so we know it's even. It may not fit in a 64 bit
twisti@4318 2392 // integer and we don't want the debug code below to see the
twisti@4318 2393 // integer indefinite value so overwrite int(Y) on the thread's
twisti@4318 2394 // stack with 0.
twisti@4318 2395 movl(Address(rsp, 0), 0);
twisti@4318 2396 movl(Address(rsp, 4), 0);
twisti@4318 2397
twisti@4318 2398 bind(y_not_huge);
twisti@4318 2399 #endif
twisti@4318 2400
twisti@4318 2401 fld_s(1); // duplicate arguments for runtime call. Stack: Y X Y
twisti@4318 2402 fld_s(1); // Stack: X Y X Y
twisti@4318 2403 fabs(); // Stack: abs(X) Y X Y
twisti@4318 2404 fast_pow(); // Stack: abs(X)^Y X Y
twisti@4318 2405 fcmp(tmp, 0, false, false); // Stack: abs(X)^Y X Y
twisti@4318 2406 // abs(X)^Y not equal to itself: abs(X)^Y is NaN go to slow case.
twisti@4318 2407
twisti@4318 2408 pop(tmp2);
twisti@4318 2409 NOT_LP64(pop(tmp3));
twisti@4318 2410 jcc(Assembler::parity, slow_case);
twisti@4318 2411
twisti@4318 2412 #ifdef ASSERT
twisti@4318 2413 // Check that int(Y) is not integer indefinite value (int
twisti@4318 2414 // overflow). Shouldn't happen because for values that would
twisti@4318 2415 // overflow, 1+int(Y)==Y which was tested earlier.
twisti@4318 2416 #ifndef _LP64
twisti@4318 2417 {
twisti@4318 2418 Label integer;
twisti@4318 2419 testl(tmp2, tmp2);
twisti@4318 2420 jcc(Assembler::notZero, integer);
twisti@4318 2421 cmpl(tmp3, 0x80000000);
twisti@4318 2422 jcc(Assembler::notZero, integer);
twisti@4318 2423 STOP("integer indefinite value shouldn't be seen here");
twisti@4318 2424 bind(integer);
twisti@4318 2425 }
twisti@4318 2426 #else
twisti@4318 2427 {
twisti@4318 2428 Label integer;
twisti@4318 2429 mov(tmp3, tmp2); // preserve tmp2 for parity check below
twisti@4318 2430 shlq(tmp3, 1);
twisti@4318 2431 jcc(Assembler::carryClear, integer);
twisti@4318 2432 jcc(Assembler::notZero, integer);
twisti@4318 2433 STOP("integer indefinite value shouldn't be seen here");
twisti@4318 2434 bind(integer);
twisti@4318 2435 }
twisti@4318 2436 #endif
twisti@4318 2437 #endif
twisti@4318 2438
twisti@4318 2439 // get rid of duplicate arguments. Stack: X^Y
twisti@4318 2440 if (num_fpu_regs_in_use > 0) {
twisti@4318 2441 fxch(); fpop();
twisti@4318 2442 fxch(); fpop();
twisti@4318 2443 } else {
twisti@4318 2444 ffree(2);
twisti@4318 2445 ffree(1);
twisti@4318 2446 }
twisti@4318 2447
twisti@4318 2448 testl(tmp2, 1);
twisti@4318 2449 jcc(Assembler::zero, done); // X <= 0, Y even: X^Y = abs(X)^Y
twisti@4318 2450 // X <= 0, Y even: X^Y = -abs(X)^Y
twisti@4318 2451
twisti@4318 2452 fchs(); // Stack: -abs(X)^Y Y
twisti@4318 2453 jmp(done);
twisti@4318 2454 }
twisti@4318 2455
twisti@4318 2456 // slow case: runtime call
twisti@4318 2457 bind(slow_case);
twisti@4318 2458
twisti@4318 2459 fpop(); // pop incorrect result or int(Y)
twisti@4318 2460
twisti@4318 2461 fp_runtime_fallback(is_exp ? CAST_FROM_FN_PTR(address, SharedRuntime::dexp) : CAST_FROM_FN_PTR(address, SharedRuntime::dpow),
twisti@4318 2462 is_exp ? 1 : 2, num_fpu_regs_in_use);
twisti@4318 2463
twisti@4318 2464 // Come here with result in F-TOS
twisti@4318 2465 bind(done);
twisti@4318 2466 }
twisti@4318 2467
twisti@4318 2468 void MacroAssembler::fpop() {
twisti@4318 2469 ffree();
twisti@4318 2470 fincstp();
twisti@4318 2471 }
twisti@4318 2472
twisti@4318 2473 void MacroAssembler::fremr(Register tmp) {
twisti@4318 2474 save_rax(tmp);
twisti@4318 2475 { Label L;
twisti@4318 2476 bind(L);
twisti@4318 2477 fprem();
twisti@4318 2478 fwait(); fnstsw_ax();
twisti@4318 2479 #ifdef _LP64
twisti@4318 2480 testl(rax, 0x400);
twisti@4318 2481 jcc(Assembler::notEqual, L);
twisti@4318 2482 #else
twisti@4318 2483 sahf();
twisti@4318 2484 jcc(Assembler::parity, L);
twisti@4318 2485 #endif // _LP64
twisti@4318 2486 }
twisti@4318 2487 restore_rax(tmp);
twisti@4318 2488 // Result is in ST0.
twisti@4318 2489 // Note: fxch & fpop to get rid of ST1
twisti@4318 2490 // (otherwise FPU stack could overflow eventually)
twisti@4318 2491 fxch(1);
twisti@4318 2492 fpop();
twisti@4318 2493 }
twisti@4318 2494
twisti@4318 2495
twisti@4318 2496 void MacroAssembler::incrementl(AddressLiteral dst) {
twisti@4318 2497 if (reachable(dst)) {
twisti@4318 2498 incrementl(as_Address(dst));
twisti@4318 2499 } else {
twisti@4318 2500 lea(rscratch1, dst);
twisti@4318 2501 incrementl(Address(rscratch1, 0));
twisti@4318 2502 }
twisti@4318 2503 }
twisti@4318 2504
twisti@4318 2505 void MacroAssembler::incrementl(ArrayAddress dst) {
twisti@4318 2506 incrementl(as_Address(dst));
twisti@4318 2507 }
twisti@4318 2508
twisti@4318 2509 void MacroAssembler::incrementl(Register reg, int value) {
twisti@4318 2510 if (value == min_jint) {addl(reg, value) ; return; }
twisti@4318 2511 if (value < 0) { decrementl(reg, -value); return; }
twisti@4318 2512 if (value == 0) { ; return; }
twisti@4318 2513 if (value == 1 && UseIncDec) { incl(reg) ; return; }
twisti@4318 2514 /* else */ { addl(reg, value) ; return; }
twisti@4318 2515 }
twisti@4318 2516
twisti@4318 2517 void MacroAssembler::incrementl(Address dst, int value) {
twisti@4318 2518 if (value == min_jint) {addl(dst, value) ; return; }
twisti@4318 2519 if (value < 0) { decrementl(dst, -value); return; }
twisti@4318 2520 if (value == 0) { ; return; }
twisti@4318 2521 if (value == 1 && UseIncDec) { incl(dst) ; return; }
twisti@4318 2522 /* else */ { addl(dst, value) ; return; }
twisti@4318 2523 }
twisti@4318 2524
twisti@4318 2525 void MacroAssembler::jump(AddressLiteral dst) {
twisti@4318 2526 if (reachable(dst)) {
twisti@4318 2527 jmp_literal(dst.target(), dst.rspec());
twisti@4318 2528 } else {
twisti@4318 2529 lea(rscratch1, dst);
twisti@4318 2530 jmp(rscratch1);
twisti@4318 2531 }
twisti@4318 2532 }
twisti@4318 2533
twisti@4318 2534 void MacroAssembler::jump_cc(Condition cc, AddressLiteral dst) {
twisti@4318 2535 if (reachable(dst)) {
twisti@4318 2536 InstructionMark im(this);
twisti@4318 2537 relocate(dst.reloc());
twisti@4318 2538 const int short_size = 2;
twisti@4318 2539 const int long_size = 6;
twisti@4318 2540 int offs = (intptr_t)dst.target() - ((intptr_t)pc());
twisti@4318 2541 if (dst.reloc() == relocInfo::none && is8bit(offs - short_size)) {
twisti@4318 2542 // 0111 tttn #8-bit disp
twisti@4366 2543 emit_int8(0x70 | cc);
twisti@4366 2544 emit_int8((offs - short_size) & 0xFF);
twisti@4318 2545 } else {
twisti@4318 2546 // 0000 1111 1000 tttn #32-bit disp
twisti@4366 2547 emit_int8(0x0F);
twisti@4366 2548 emit_int8((unsigned char)(0x80 | cc));
twisti@4412 2549 emit_int32(offs - long_size);
twisti@4318 2550 }
twisti@4318 2551 } else {
twisti@4318 2552 #ifdef ASSERT
twisti@4318 2553 warning("reversing conditional branch");
twisti@4318 2554 #endif /* ASSERT */
twisti@4318 2555 Label skip;
twisti@4318 2556 jccb(reverse[cc], skip);
twisti@4318 2557 lea(rscratch1, dst);
twisti@4318 2558 Assembler::jmp(rscratch1);
twisti@4318 2559 bind(skip);
twisti@4318 2560 }
twisti@4318 2561 }
twisti@4318 2562
twisti@4318 2563 void MacroAssembler::ldmxcsr(AddressLiteral src) {
twisti@4318 2564 if (reachable(src)) {
twisti@4318 2565 Assembler::ldmxcsr(as_Address(src));
twisti@4318 2566 } else {
twisti@4318 2567 lea(rscratch1, src);
twisti@4318 2568 Assembler::ldmxcsr(Address(rscratch1, 0));
twisti@4318 2569 }
twisti@4318 2570 }
twisti@4318 2571
twisti@4318 2572 int MacroAssembler::load_signed_byte(Register dst, Address src) {
twisti@4318 2573 int off;
twisti@4318 2574 if (LP64_ONLY(true ||) VM_Version::is_P6()) {
twisti@4318 2575 off = offset();
twisti@4318 2576 movsbl(dst, src); // movsxb
twisti@4318 2577 } else {
twisti@4318 2578 off = load_unsigned_byte(dst, src);
twisti@4318 2579 shll(dst, 24);
twisti@4318 2580 sarl(dst, 24);
twisti@4318 2581 }
twisti@4318 2582 return off;
twisti@4318 2583 }
twisti@4318 2584
twisti@4318 2585 // Note: load_signed_short used to be called load_signed_word.
twisti@4318 2586 // Although the 'w' in x86 opcodes refers to the term "word" in the assembler
twisti@4318 2587 // manual, which means 16 bits, that usage is found nowhere in HotSpot code.
twisti@4318 2588 // The term "word" in HotSpot means a 32- or 64-bit machine word.
twisti@4318 2589 int MacroAssembler::load_signed_short(Register dst, Address src) {
twisti@4318 2590 int off;
twisti@4318 2591 if (LP64_ONLY(true ||) VM_Version::is_P6()) {
twisti@4318 2592 // This is dubious to me since it seems safe to do a signed 16 => 64 bit
twisti@4318 2593 // version but this is what 64bit has always done. This seems to imply
twisti@4318 2594 // that users are only using 32bits worth.
twisti@4318 2595 off = offset();
twisti@4318 2596 movswl(dst, src); // movsxw
twisti@4318 2597 } else {
twisti@4318 2598 off = load_unsigned_short(dst, src);
twisti@4318 2599 shll(dst, 16);
twisti@4318 2600 sarl(dst, 16);
twisti@4318 2601 }
twisti@4318 2602 return off;
twisti@4318 2603 }
twisti@4318 2604
twisti@4318 2605 int MacroAssembler::load_unsigned_byte(Register dst, Address src) {
twisti@4318 2606 // According to Intel Doc. AP-526, "Zero-Extension of Short", p.16,
twisti@4318 2607 // and "3.9 Partial Register Penalties", p. 22).
twisti@4318 2608 int off;
twisti@4318 2609 if (LP64_ONLY(true || ) VM_Version::is_P6() || src.uses(dst)) {
twisti@4318 2610 off = offset();
twisti@4318 2611 movzbl(dst, src); // movzxb
twisti@4318 2612 } else {
twisti@4318 2613 xorl(dst, dst);
twisti@4318 2614 off = offset();
twisti@4318 2615 movb(dst, src);
twisti@4318 2616 }
twisti@4318 2617 return off;
twisti@4318 2618 }
twisti@4318 2619
twisti@4318 2620 // Note: load_unsigned_short used to be called load_unsigned_word.
twisti@4318 2621 int MacroAssembler::load_unsigned_short(Register dst, Address src) {
twisti@4318 2622 // According to Intel Doc. AP-526, "Zero-Extension of Short", p.16,
twisti@4318 2623 // and "3.9 Partial Register Penalties", p. 22).
twisti@4318 2624 int off;
twisti@4318 2625 if (LP64_ONLY(true ||) VM_Version::is_P6() || src.uses(dst)) {
twisti@4318 2626 off = offset();
twisti@4318 2627 movzwl(dst, src); // movzxw
twisti@4318 2628 } else {
twisti@4318 2629 xorl(dst, dst);
twisti@4318 2630 off = offset();
twisti@4318 2631 movw(dst, src);
twisti@4318 2632 }
twisti@4318 2633 return off;
twisti@4318 2634 }
twisti@4318 2635
twisti@4318 2636 void MacroAssembler::load_sized_value(Register dst, Address src, size_t size_in_bytes, bool is_signed, Register dst2) {
twisti@4318 2637 switch (size_in_bytes) {
twisti@4318 2638 #ifndef _LP64
twisti@4318 2639 case 8:
twisti@4318 2640 assert(dst2 != noreg, "second dest register required");
twisti@4318 2641 movl(dst, src);
twisti@4318 2642 movl(dst2, src.plus_disp(BytesPerInt));
twisti@4318 2643 break;
twisti@4318 2644 #else
twisti@4318 2645 case 8: movq(dst, src); break;
twisti@4318 2646 #endif
twisti@4318 2647 case 4: movl(dst, src); break;
twisti@4318 2648 case 2: is_signed ? load_signed_short(dst, src) : load_unsigned_short(dst, src); break;
twisti@4318 2649 case 1: is_signed ? load_signed_byte( dst, src) : load_unsigned_byte( dst, src); break;
twisti@4318 2650 default: ShouldNotReachHere();
twisti@4318 2651 }
twisti@4318 2652 }
twisti@4318 2653
twisti@4318 2654 void MacroAssembler::store_sized_value(Address dst, Register src, size_t size_in_bytes, Register src2) {
twisti@4318 2655 switch (size_in_bytes) {
twisti@4318 2656 #ifndef _LP64
twisti@4318 2657 case 8:
twisti@4318 2658 assert(src2 != noreg, "second source register required");
twisti@4318 2659 movl(dst, src);
twisti@4318 2660 movl(dst.plus_disp(BytesPerInt), src2);
twisti@4318 2661 break;
twisti@4318 2662 #else
twisti@4318 2663 case 8: movq(dst, src); break;
twisti@4318 2664 #endif
twisti@4318 2665 case 4: movl(dst, src); break;
twisti@4318 2666 case 2: movw(dst, src); break;
twisti@4318 2667 case 1: movb(dst, src); break;
twisti@4318 2668 default: ShouldNotReachHere();
twisti@4318 2669 }
twisti@4318 2670 }
twisti@4318 2671
twisti@4318 2672 void MacroAssembler::mov32(AddressLiteral dst, Register src) {
twisti@4318 2673 if (reachable(dst)) {
twisti@4318 2674 movl(as_Address(dst), src);
twisti@4318 2675 } else {
twisti@4318 2676 lea(rscratch1, dst);
twisti@4318 2677 movl(Address(rscratch1, 0), src);
twisti@4318 2678 }
twisti@4318 2679 }
twisti@4318 2680
twisti@4318 2681 void MacroAssembler::mov32(Register dst, AddressLiteral src) {
twisti@4318 2682 if (reachable(src)) {
twisti@4318 2683 movl(dst, as_Address(src));
twisti@4318 2684 } else {
twisti@4318 2685 lea(rscratch1, src);
twisti@4318 2686 movl(dst, Address(rscratch1, 0));
twisti@4318 2687 }
twisti@4318 2688 }
twisti@4318 2689
twisti@4318 2690 // C++ bool manipulation
twisti@4318 2691
twisti@4318 2692 void MacroAssembler::movbool(Register dst, Address src) {
twisti@4318 2693 if(sizeof(bool) == 1)
twisti@4318 2694 movb(dst, src);
twisti@4318 2695 else if(sizeof(bool) == 2)
twisti@4318 2696 movw(dst, src);
twisti@4318 2697 else if(sizeof(bool) == 4)
twisti@4318 2698 movl(dst, src);
twisti@4318 2699 else
twisti@4318 2700 // unsupported
twisti@4318 2701 ShouldNotReachHere();
twisti@4318 2702 }
twisti@4318 2703
twisti@4318 2704 void MacroAssembler::movbool(Address dst, bool boolconst) {
twisti@4318 2705 if(sizeof(bool) == 1)
twisti@4318 2706 movb(dst, (int) boolconst);
twisti@4318 2707 else if(sizeof(bool) == 2)
twisti@4318 2708 movw(dst, (int) boolconst);
twisti@4318 2709 else if(sizeof(bool) == 4)
twisti@4318 2710 movl(dst, (int) boolconst);
twisti@4318 2711 else
twisti@4318 2712 // unsupported
twisti@4318 2713 ShouldNotReachHere();
twisti@4318 2714 }
twisti@4318 2715
twisti@4318 2716 void MacroAssembler::movbool(Address dst, Register src) {
twisti@4318 2717 if(sizeof(bool) == 1)
twisti@4318 2718 movb(dst, src);
twisti@4318 2719 else if(sizeof(bool) == 2)
twisti@4318 2720 movw(dst, src);
twisti@4318 2721 else if(sizeof(bool) == 4)
twisti@4318 2722 movl(dst, src);
twisti@4318 2723 else
twisti@4318 2724 // unsupported
twisti@4318 2725 ShouldNotReachHere();
twisti@4318 2726 }
twisti@4318 2727
twisti@4318 2728 void MacroAssembler::movbyte(ArrayAddress dst, int src) {
twisti@4318 2729 movb(as_Address(dst), src);
twisti@4318 2730 }
twisti@4318 2731
twisti@4318 2732 void MacroAssembler::movdl(XMMRegister dst, AddressLiteral src) {
twisti@4318 2733 if (reachable(src)) {
twisti@4318 2734 movdl(dst, as_Address(src));
twisti@4318 2735 } else {
twisti@4318 2736 lea(rscratch1, src);
twisti@4318 2737 movdl(dst, Address(rscratch1, 0));
twisti@4318 2738 }
twisti@4318 2739 }
twisti@4318 2740
twisti@4318 2741 void MacroAssembler::movq(XMMRegister dst, AddressLiteral src) {
twisti@4318 2742 if (reachable(src)) {
twisti@4318 2743 movq(dst, as_Address(src));
twisti@4318 2744 } else {
twisti@4318 2745 lea(rscratch1, src);
twisti@4318 2746 movq(dst, Address(rscratch1, 0));
twisti@4318 2747 }
twisti@4318 2748 }
twisti@4318 2749
twisti@4318 2750 void MacroAssembler::movdbl(XMMRegister dst, AddressLiteral src) {
twisti@4318 2751 if (reachable(src)) {
twisti@4318 2752 if (UseXmmLoadAndClearUpper) {
twisti@4318 2753 movsd (dst, as_Address(src));
twisti@4318 2754 } else {
twisti@4318 2755 movlpd(dst, as_Address(src));
twisti@4318 2756 }
twisti@4318 2757 } else {
twisti@4318 2758 lea(rscratch1, src);
twisti@4318 2759 if (UseXmmLoadAndClearUpper) {
twisti@4318 2760 movsd (dst, Address(rscratch1, 0));
twisti@4318 2761 } else {
twisti@4318 2762 movlpd(dst, Address(rscratch1, 0));
twisti@4318 2763 }
twisti@4318 2764 }
twisti@4318 2765 }
twisti@4318 2766
twisti@4318 2767 void MacroAssembler::movflt(XMMRegister dst, AddressLiteral src) {
twisti@4318 2768 if (reachable(src)) {
twisti@4318 2769 movss(dst, as_Address(src));
twisti@4318 2770 } else {
twisti@4318 2771 lea(rscratch1, src);
twisti@4318 2772 movss(dst, Address(rscratch1, 0));
twisti@4318 2773 }
twisti@4318 2774 }
twisti@4318 2775
twisti@4318 2776 void MacroAssembler::movptr(Register dst, Register src) {
twisti@4318 2777 LP64_ONLY(movq(dst, src)) NOT_LP64(movl(dst, src));
twisti@4318 2778 }
twisti@4318 2779
twisti@4318 2780 void MacroAssembler::movptr(Register dst, Address src) {
twisti@4318 2781 LP64_ONLY(movq(dst, src)) NOT_LP64(movl(dst, src));
twisti@4318 2782 }
twisti@4318 2783
twisti@4318 2784 // src should NEVER be a real pointer. Use AddressLiteral for true pointers
twisti@4318 2785 void MacroAssembler::movptr(Register dst, intptr_t src) {
twisti@4318 2786 LP64_ONLY(mov64(dst, src)) NOT_LP64(movl(dst, src));
twisti@4318 2787 }
twisti@4318 2788
twisti@4318 2789 void MacroAssembler::movptr(Address dst, Register src) {
twisti@4318 2790 LP64_ONLY(movq(dst, src)) NOT_LP64(movl(dst, src));
twisti@4318 2791 }
twisti@4318 2792
twisti@4318 2793 void MacroAssembler::movdqu(XMMRegister dst, AddressLiteral src) {
twisti@4318 2794 if (reachable(src)) {
twisti@4318 2795 Assembler::movdqu(dst, as_Address(src));
twisti@4318 2796 } else {
twisti@4318 2797 lea(rscratch1, src);
twisti@4318 2798 Assembler::movdqu(dst, Address(rscratch1, 0));
twisti@4318 2799 }
twisti@4318 2800 }
twisti@4318 2801
drchase@5353 2802 void MacroAssembler::movdqa(XMMRegister dst, AddressLiteral src) {
drchase@5353 2803 if (reachable(src)) {
drchase@5353 2804 Assembler::movdqa(dst, as_Address(src));
drchase@5353 2805 } else {
drchase@5353 2806 lea(rscratch1, src);
drchase@5353 2807 Assembler::movdqa(dst, Address(rscratch1, 0));
drchase@5353 2808 }
drchase@5353 2809 }
drchase@5353 2810
twisti@4318 2811 void MacroAssembler::movsd(XMMRegister dst, AddressLiteral src) {
twisti@4318 2812 if (reachable(src)) {
twisti@4318 2813 Assembler::movsd(dst, as_Address(src));
twisti@4318 2814 } else {
twisti@4318 2815 lea(rscratch1, src);
twisti@4318 2816 Assembler::movsd(dst, Address(rscratch1, 0));
twisti@4318 2817 }
twisti@4318 2818 }
twisti@4318 2819
twisti@4318 2820 void MacroAssembler::movss(XMMRegister dst, AddressLiteral src) {
twisti@4318 2821 if (reachable(src)) {
twisti@4318 2822 Assembler::movss(dst, as_Address(src));
twisti@4318 2823 } else {
twisti@4318 2824 lea(rscratch1, src);
twisti@4318 2825 Assembler::movss(dst, Address(rscratch1, 0));
twisti@4318 2826 }
twisti@4318 2827 }
twisti@4318 2828
twisti@4318 2829 void MacroAssembler::mulsd(XMMRegister dst, AddressLiteral src) {
twisti@4318 2830 if (reachable(src)) {
twisti@4318 2831 Assembler::mulsd(dst, as_Address(src));
twisti@4318 2832 } else {
twisti@4318 2833 lea(rscratch1, src);
twisti@4318 2834 Assembler::mulsd(dst, Address(rscratch1, 0));
twisti@4318 2835 }
twisti@4318 2836 }
twisti@4318 2837
twisti@4318 2838 void MacroAssembler::mulss(XMMRegister dst, AddressLiteral src) {
twisti@4318 2839 if (reachable(src)) {
twisti@4318 2840 Assembler::mulss(dst, as_Address(src));
twisti@4318 2841 } else {
twisti@4318 2842 lea(rscratch1, src);
twisti@4318 2843 Assembler::mulss(dst, Address(rscratch1, 0));
twisti@4318 2844 }
twisti@4318 2845 }
twisti@4318 2846
twisti@4318 2847 void MacroAssembler::null_check(Register reg, int offset) {
twisti@4318 2848 if (needs_explicit_null_check(offset)) {
twisti@4318 2849 // provoke OS NULL exception if reg = NULL by
twisti@4318 2850 // accessing M[reg] w/o changing any (non-CC) registers
twisti@4318 2851 // NOTE: cmpl is plenty here to provoke a segv
twisti@4318 2852 cmpptr(rax, Address(reg, 0));
twisti@4318 2853 // Note: should probably use testl(rax, Address(reg, 0));
twisti@4318 2854 // may be shorter code (however, this version of
twisti@4318 2855 // testl needs to be implemented first)
twisti@4318 2856 } else {
twisti@4318 2857 // nothing to do, (later) access of M[reg + offset]
twisti@4318 2858 // will provoke OS NULL exception if reg = NULL
twisti@4318 2859 }
twisti@4318 2860 }
twisti@4318 2861
twisti@4318 2862 void MacroAssembler::os_breakpoint() {
twisti@4318 2863 // instead of directly emitting a breakpoint, call os:breakpoint for better debugability
twisti@4318 2864 // (e.g., MSVC can't call ps() otherwise)
twisti@4318 2865 call(RuntimeAddress(CAST_FROM_FN_PTR(address, os::breakpoint)));
twisti@4318 2866 }
twisti@4318 2867
twisti@4318 2868 void MacroAssembler::pop_CPU_state() {
twisti@4318 2869 pop_FPU_state();
twisti@4318 2870 pop_IU_state();
twisti@4318 2871 }
twisti@4318 2872
twisti@4318 2873 void MacroAssembler::pop_FPU_state() {
twisti@4318 2874 NOT_LP64(frstor(Address(rsp, 0));)
twisti@4318 2875 LP64_ONLY(fxrstor(Address(rsp, 0));)
twisti@4318 2876 addptr(rsp, FPUStateSizeInWords * wordSize);
twisti@4318 2877 }
twisti@4318 2878
twisti@4318 2879 void MacroAssembler::pop_IU_state() {
twisti@4318 2880 popa();
twisti@4318 2881 LP64_ONLY(addq(rsp, 8));
twisti@4318 2882 popf();
twisti@4318 2883 }
twisti@4318 2884
twisti@4318 2885 // Save Integer and Float state
twisti@4318 2886 // Warning: Stack must be 16 byte aligned (64bit)
twisti@4318 2887 void MacroAssembler::push_CPU_state() {
twisti@4318 2888 push_IU_state();
twisti@4318 2889 push_FPU_state();
twisti@4318 2890 }
twisti@4318 2891
twisti@4318 2892 void MacroAssembler::push_FPU_state() {
twisti@4318 2893 subptr(rsp, FPUStateSizeInWords * wordSize);
twisti@4318 2894 #ifndef _LP64
twisti@4318 2895 fnsave(Address(rsp, 0));
twisti@4318 2896 fwait();
twisti@4318 2897 #else
twisti@4318 2898 fxsave(Address(rsp, 0));
twisti@4318 2899 #endif // LP64
twisti@4318 2900 }
twisti@4318 2901
twisti@4318 2902 void MacroAssembler::push_IU_state() {
twisti@4318 2903 // Push flags first because pusha kills them
twisti@4318 2904 pushf();
twisti@4318 2905 // Make sure rsp stays 16-byte aligned
twisti@4318 2906 LP64_ONLY(subq(rsp, 8));
twisti@4318 2907 pusha();
twisti@4318 2908 }
twisti@4318 2909
twisti@4318 2910 void MacroAssembler::reset_last_Java_frame(Register java_thread, bool clear_fp, bool clear_pc) {
twisti@4318 2911 // determine java_thread register
twisti@4318 2912 if (!java_thread->is_valid()) {
twisti@4318 2913 java_thread = rdi;
twisti@4318 2914 get_thread(java_thread);
twisti@4318 2915 }
twisti@4318 2916 // we must set sp to zero to clear frame
twisti@4318 2917 movptr(Address(java_thread, JavaThread::last_Java_sp_offset()), NULL_WORD);
twisti@4318 2918 if (clear_fp) {
twisti@4318 2919 movptr(Address(java_thread, JavaThread::last_Java_fp_offset()), NULL_WORD);
twisti@4318 2920 }
twisti@4318 2921
twisti@4318 2922 if (clear_pc)
twisti@4318 2923 movptr(Address(java_thread, JavaThread::last_Java_pc_offset()), NULL_WORD);
twisti@4318 2924
twisti@4318 2925 }
twisti@4318 2926
twisti@4318 2927 void MacroAssembler::restore_rax(Register tmp) {
twisti@4318 2928 if (tmp == noreg) pop(rax);
twisti@4318 2929 else if (tmp != rax) mov(rax, tmp);
twisti@4318 2930 }
twisti@4318 2931
twisti@4318 2932 void MacroAssembler::round_to(Register reg, int modulus) {
twisti@4318 2933 addptr(reg, modulus - 1);
twisti@4318 2934 andptr(reg, -modulus);
twisti@4318 2935 }
twisti@4318 2936
twisti@4318 2937 void MacroAssembler::save_rax(Register tmp) {
twisti@4318 2938 if (tmp == noreg) push(rax);
twisti@4318 2939 else if (tmp != rax) mov(tmp, rax);
twisti@4318 2940 }
twisti@4318 2941
twisti@4318 2942 // Write serialization page so VM thread can do a pseudo remote membar.
twisti@4318 2943 // We use the current thread pointer to calculate a thread specific
twisti@4318 2944 // offset to write to within the page. This minimizes bus traffic
twisti@4318 2945 // due to cache line collision.
twisti@4318 2946 void MacroAssembler::serialize_memory(Register thread, Register tmp) {
twisti@4318 2947 movl(tmp, thread);
twisti@4318 2948 shrl(tmp, os::get_serialize_page_shift_count());
twisti@4318 2949 andl(tmp, (os::vm_page_size() - sizeof(int)));
twisti@4318 2950
twisti@4318 2951 Address index(noreg, tmp, Address::times_1);
twisti@4318 2952 ExternalAddress page(os::get_memory_serialize_page());
twisti@4318 2953
twisti@4318 2954 // Size of store must match masking code above
twisti@4318 2955 movl(as_Address(ArrayAddress(page, index)), tmp);
twisti@4318 2956 }
twisti@4318 2957
twisti@4318 2958 // Calls to C land
twisti@4318 2959 //
twisti@4318 2960 // When entering C land, the rbp, & rsp of the last Java frame have to be recorded
twisti@4318 2961 // in the (thread-local) JavaThread object. When leaving C land, the last Java fp
twisti@4318 2962 // has to be reset to 0. This is required to allow proper stack traversal.
twisti@4318 2963 void MacroAssembler::set_last_Java_frame(Register java_thread,
twisti@4318 2964 Register last_java_sp,
twisti@4318 2965 Register last_java_fp,
twisti@4318 2966 address last_java_pc) {
twisti@4318 2967 // determine java_thread register
twisti@4318 2968 if (!java_thread->is_valid()) {
twisti@4318 2969 java_thread = rdi;
twisti@4318 2970 get_thread(java_thread);
twisti@4318 2971 }
twisti@4318 2972 // determine last_java_sp register
twisti@4318 2973 if (!last_java_sp->is_valid()) {
twisti@4318 2974 last_java_sp = rsp;
twisti@4318 2975 }
twisti@4318 2976
twisti@4318 2977 // last_java_fp is optional
twisti@4318 2978
twisti@4318 2979 if (last_java_fp->is_valid()) {
twisti@4318 2980 movptr(Address(java_thread, JavaThread::last_Java_fp_offset()), last_java_fp);
twisti@4318 2981 }
twisti@4318 2982
twisti@4318 2983 // last_java_pc is optional
twisti@4318 2984
twisti@4318 2985 if (last_java_pc != NULL) {
twisti@4318 2986 lea(Address(java_thread,
twisti@4318 2987 JavaThread::frame_anchor_offset() + JavaFrameAnchor::last_Java_pc_offset()),
twisti@4318 2988 InternalAddress(last_java_pc));
twisti@4318 2989
twisti@4318 2990 }
twisti@4318 2991 movptr(Address(java_thread, JavaThread::last_Java_sp_offset()), last_java_sp);
twisti@4318 2992 }
twisti@4318 2993
twisti@4318 2994 void MacroAssembler::shlptr(Register dst, int imm8) {
twisti@4318 2995 LP64_ONLY(shlq(dst, imm8)) NOT_LP64(shll(dst, imm8));
twisti@4318 2996 }
twisti@4318 2997
twisti@4318 2998 void MacroAssembler::shrptr(Register dst, int imm8) {
twisti@4318 2999 LP64_ONLY(shrq(dst, imm8)) NOT_LP64(shrl(dst, imm8));
twisti@4318 3000 }
twisti@4318 3001
twisti@4318 3002 void MacroAssembler::sign_extend_byte(Register reg) {
twisti@4318 3003 if (LP64_ONLY(true ||) (VM_Version::is_P6() && reg->has_byte_register())) {
twisti@4318 3004 movsbl(reg, reg); // movsxb
twisti@4318 3005 } else {
twisti@4318 3006 shll(reg, 24);
twisti@4318 3007 sarl(reg, 24);
twisti@4318 3008 }
twisti@4318 3009 }
twisti@4318 3010
twisti@4318 3011 void MacroAssembler::sign_extend_short(Register reg) {
twisti@4318 3012 if (LP64_ONLY(true ||) VM_Version::is_P6()) {
twisti@4318 3013 movswl(reg, reg); // movsxw
twisti@4318 3014 } else {
twisti@4318 3015 shll(reg, 16);
twisti@4318 3016 sarl(reg, 16);
twisti@4318 3017 }
twisti@4318 3018 }
twisti@4318 3019
twisti@4318 3020 void MacroAssembler::testl(Register dst, AddressLiteral src) {
twisti@4318 3021 assert(reachable(src), "Address should be reachable");
twisti@4318 3022 testl(dst, as_Address(src));
twisti@4318 3023 }
twisti@4318 3024
twisti@4318 3025 void MacroAssembler::sqrtsd(XMMRegister dst, AddressLiteral src) {
twisti@4318 3026 if (reachable(src)) {
twisti@4318 3027 Assembler::sqrtsd(dst, as_Address(src));
twisti@4318 3028 } else {
twisti@4318 3029 lea(rscratch1, src);
twisti@4318 3030 Assembler::sqrtsd(dst, Address(rscratch1, 0));
twisti@4318 3031 }
twisti@4318 3032 }
twisti@4318 3033
twisti@4318 3034 void MacroAssembler::sqrtss(XMMRegister dst, AddressLiteral src) {
twisti@4318 3035 if (reachable(src)) {
twisti@4318 3036 Assembler::sqrtss(dst, as_Address(src));
twisti@4318 3037 } else {
twisti@4318 3038 lea(rscratch1, src);
twisti@4318 3039 Assembler::sqrtss(dst, Address(rscratch1, 0));
twisti@4318 3040 }
twisti@4318 3041 }
twisti@4318 3042
twisti@4318 3043 void MacroAssembler::subsd(XMMRegister dst, AddressLiteral src) {
twisti@4318 3044 if (reachable(src)) {
twisti@4318 3045 Assembler::subsd(dst, as_Address(src));
twisti@4318 3046 } else {
twisti@4318 3047 lea(rscratch1, src);
twisti@4318 3048 Assembler::subsd(dst, Address(rscratch1, 0));
twisti@4318 3049 }
twisti@4318 3050 }
twisti@4318 3051
twisti@4318 3052 void MacroAssembler::subss(XMMRegister dst, AddressLiteral src) {
twisti@4318 3053 if (reachable(src)) {
twisti@4318 3054 Assembler::subss(dst, as_Address(src));
twisti@4318 3055 } else {
twisti@4318 3056 lea(rscratch1, src);
twisti@4318 3057 Assembler::subss(dst, Address(rscratch1, 0));
twisti@4318 3058 }
twisti@4318 3059 }
twisti@4318 3060
twisti@4318 3061 void MacroAssembler::ucomisd(XMMRegister dst, AddressLiteral src) {
twisti@4318 3062 if (reachable(src)) {
twisti@4318 3063 Assembler::ucomisd(dst, as_Address(src));
twisti@4318 3064 } else {
twisti@4318 3065 lea(rscratch1, src);
twisti@4318 3066 Assembler::ucomisd(dst, Address(rscratch1, 0));
twisti@4318 3067 }
twisti@4318 3068 }
twisti@4318 3069
twisti@4318 3070 void MacroAssembler::ucomiss(XMMRegister dst, AddressLiteral src) {
twisti@4318 3071 if (reachable(src)) {
twisti@4318 3072 Assembler::ucomiss(dst, as_Address(src));
twisti@4318 3073 } else {
twisti@4318 3074 lea(rscratch1, src);
twisti@4318 3075 Assembler::ucomiss(dst, Address(rscratch1, 0));
twisti@4318 3076 }
twisti@4318 3077 }
twisti@4318 3078
twisti@4318 3079 void MacroAssembler::xorpd(XMMRegister dst, AddressLiteral src) {
twisti@4318 3080 // Used in sign-bit flipping with aligned address.
twisti@4318 3081 assert((UseAVX > 0) || (((intptr_t)src.target() & 15) == 0), "SSE mode requires address alignment 16 bytes");
twisti@4318 3082 if (reachable(src)) {
twisti@4318 3083 Assembler::xorpd(dst, as_Address(src));
twisti@4318 3084 } else {
twisti@4318 3085 lea(rscratch1, src);
twisti@4318 3086 Assembler::xorpd(dst, Address(rscratch1, 0));
twisti@4318 3087 }
twisti@4318 3088 }
twisti@4318 3089
twisti@4318 3090 void MacroAssembler::xorps(XMMRegister dst, AddressLiteral src) {
twisti@4318 3091 // Used in sign-bit flipping with aligned address.
twisti@4318 3092 assert((UseAVX > 0) || (((intptr_t)src.target() & 15) == 0), "SSE mode requires address alignment 16 bytes");
twisti@4318 3093 if (reachable(src)) {
twisti@4318 3094 Assembler::xorps(dst, as_Address(src));
twisti@4318 3095 } else {
twisti@4318 3096 lea(rscratch1, src);
twisti@4318 3097 Assembler::xorps(dst, Address(rscratch1, 0));
twisti@4318 3098 }
twisti@4318 3099 }
twisti@4318 3100
twisti@4318 3101 void MacroAssembler::pshufb(XMMRegister dst, AddressLiteral src) {
twisti@4318 3102 // Used in sign-bit flipping with aligned address.
kvn@4363 3103 bool aligned_adr = (((intptr_t)src.target() & 15) == 0);
kvn@4363 3104 assert((UseAVX > 0) || aligned_adr, "SSE mode requires address alignment 16 bytes");
twisti@4318 3105 if (reachable(src)) {
twisti@4318 3106 Assembler::pshufb(dst, as_Address(src));
twisti@4318 3107 } else {
twisti@4318 3108 lea(rscratch1, src);
twisti@4318 3109 Assembler::pshufb(dst, Address(rscratch1, 0));
twisti@4318 3110 }
twisti@4318 3111 }
twisti@4318 3112
twisti@4318 3113 // AVX 3-operands instructions
twisti@4318 3114
twisti@4318 3115 void MacroAssembler::vaddsd(XMMRegister dst, XMMRegister nds, AddressLiteral src) {
twisti@4318 3116 if (reachable(src)) {
twisti@4318 3117 vaddsd(dst, nds, as_Address(src));
twisti@4318 3118 } else {
twisti@4318 3119 lea(rscratch1, src);
twisti@4318 3120 vaddsd(dst, nds, Address(rscratch1, 0));
twisti@4318 3121 }
twisti@4318 3122 }
twisti@4318 3123
twisti@4318 3124 void MacroAssembler::vaddss(XMMRegister dst, XMMRegister nds, AddressLiteral src) {
twisti@4318 3125 if (reachable(src)) {
twisti@4318 3126 vaddss(dst, nds, as_Address(src));
twisti@4318 3127 } else {
twisti@4318 3128 lea(rscratch1, src);
twisti@4318 3129 vaddss(dst, nds, Address(rscratch1, 0));
twisti@4318 3130 }
twisti@4318 3131 }
twisti@4318 3132
twisti@4318 3133 void MacroAssembler::vandpd(XMMRegister dst, XMMRegister nds, AddressLiteral src, bool vector256) {
twisti@4318 3134 if (reachable(src)) {
twisti@4318 3135 vandpd(dst, nds, as_Address(src), vector256);
twisti@4318 3136 } else {
twisti@4318 3137 lea(rscratch1, src);
twisti@4318 3138 vandpd(dst, nds, Address(rscratch1, 0), vector256);
twisti@4318 3139 }
twisti@4318 3140 }
twisti@4318 3141
twisti@4318 3142 void MacroAssembler::vandps(XMMRegister dst, XMMRegister nds, AddressLiteral src, bool vector256) {
twisti@4318 3143 if (reachable(src)) {
twisti@4318 3144 vandps(dst, nds, as_Address(src), vector256);
twisti@4318 3145 } else {
twisti@4318 3146 lea(rscratch1, src);
twisti@4318 3147 vandps(dst, nds, Address(rscratch1, 0), vector256);
twisti@4318 3148 }
twisti@4318 3149 }
twisti@4318 3150
twisti@4318 3151 void MacroAssembler::vdivsd(XMMRegister dst, XMMRegister nds, AddressLiteral src) {
twisti@4318 3152 if (reachable(src)) {
twisti@4318 3153 vdivsd(dst, nds, as_Address(src));
twisti@4318 3154 } else {
twisti@4318 3155 lea(rscratch1, src);
twisti@4318 3156 vdivsd(dst, nds, Address(rscratch1, 0));
twisti@4318 3157 }
twisti@4318 3158 }
twisti@4318 3159
twisti@4318 3160 void MacroAssembler::vdivss(XMMRegister dst, XMMRegister nds, AddressLiteral src) {
twisti@4318 3161 if (reachable(src)) {
twisti@4318 3162 vdivss(dst, nds, as_Address(src));
twisti@4318 3163 } else {
twisti@4318 3164 lea(rscratch1, src);
twisti@4318 3165 vdivss(dst, nds, Address(rscratch1, 0));
twisti@4318 3166 }
twisti@4318 3167 }
twisti@4318 3168
twisti@4318 3169 void MacroAssembler::vmulsd(XMMRegister dst, XMMRegister nds, AddressLiteral src) {
twisti@4318 3170 if (reachable(src)) {
twisti@4318 3171 vmulsd(dst, nds, as_Address(src));
twisti@4318 3172 } else {
twisti@4318 3173 lea(rscratch1, src);
twisti@4318 3174 vmulsd(dst, nds, Address(rscratch1, 0));
twisti@4318 3175 }
twisti@4318 3176 }
twisti@4318 3177
twisti@4318 3178 void MacroAssembler::vmulss(XMMRegister dst, XMMRegister nds, AddressLiteral src) {
twisti@4318 3179 if (reachable(src)) {
twisti@4318 3180 vmulss(dst, nds, as_Address(src));
twisti@4318 3181 } else {
twisti@4318 3182 lea(rscratch1, src);
twisti@4318 3183 vmulss(dst, nds, Address(rscratch1, 0));
twisti@4318 3184 }
twisti@4318 3185 }
twisti@4318 3186
twisti@4318 3187 void MacroAssembler::vsubsd(XMMRegister dst, XMMRegister nds, AddressLiteral src) {
twisti@4318 3188 if (reachable(src)) {
twisti@4318 3189 vsubsd(dst, nds, as_Address(src));
twisti@4318 3190 } else {
twisti@4318 3191 lea(rscratch1, src);
twisti@4318 3192 vsubsd(dst, nds, Address(rscratch1, 0));
twisti@4318 3193 }
twisti@4318 3194 }
twisti@4318 3195
twisti@4318 3196 void MacroAssembler::vsubss(XMMRegister dst, XMMRegister nds, AddressLiteral src) {
twisti@4318 3197 if (reachable(src)) {
twisti@4318 3198 vsubss(dst, nds, as_Address(src));
twisti@4318 3199 } else {
twisti@4318 3200 lea(rscratch1, src);
twisti@4318 3201 vsubss(dst, nds, Address(rscratch1, 0));
twisti@4318 3202 }
twisti@4318 3203 }
twisti@4318 3204
twisti@4318 3205 void MacroAssembler::vxorpd(XMMRegister dst, XMMRegister nds, AddressLiteral src, bool vector256) {
twisti@4318 3206 if (reachable(src)) {
twisti@4318 3207 vxorpd(dst, nds, as_Address(src), vector256);
twisti@4318 3208 } else {
twisti@4318 3209 lea(rscratch1, src);
twisti@4318 3210 vxorpd(dst, nds, Address(rscratch1, 0), vector256);
twisti@4318 3211 }
twisti@4318 3212 }
twisti@4318 3213
twisti@4318 3214 void MacroAssembler::vxorps(XMMRegister dst, XMMRegister nds, AddressLiteral src, bool vector256) {
twisti@4318 3215 if (reachable(src)) {
twisti@4318 3216 vxorps(dst, nds, as_Address(src), vector256);
twisti@4318 3217 } else {
twisti@4318 3218 lea(rscratch1, src);
twisti@4318 3219 vxorps(dst, nds, Address(rscratch1, 0), vector256);
twisti@4318 3220 }
twisti@4318 3221 }
twisti@4318 3222
twisti@4318 3223
twisti@4318 3224 //////////////////////////////////////////////////////////////////////////////////
jprovino@4542 3225 #if INCLUDE_ALL_GCS
twisti@4318 3226
twisti@4318 3227 void MacroAssembler::g1_write_barrier_pre(Register obj,
twisti@4318 3228 Register pre_val,
twisti@4318 3229 Register thread,
twisti@4318 3230 Register tmp,
twisti@4318 3231 bool tosca_live,
twisti@4318 3232 bool expand_call) {
twisti@4318 3233
twisti@4318 3234 // If expand_call is true then we expand the call_VM_leaf macro
twisti@4318 3235 // directly to skip generating the check by
twisti@4318 3236 // InterpreterMacroAssembler::call_VM_leaf_base that checks _last_sp.
twisti@4318 3237
twisti@4318 3238 #ifdef _LP64
twisti@4318 3239 assert(thread == r15_thread, "must be");
twisti@4318 3240 #endif // _LP64
twisti@4318 3241
twisti@4318 3242 Label done;
twisti@4318 3243 Label runtime;
twisti@4318 3244
twisti@4318 3245 assert(pre_val != noreg, "check this code");
twisti@4318 3246
twisti@4318 3247 if (obj != noreg) {
twisti@4318 3248 assert_different_registers(obj, pre_val, tmp);
twisti@4318 3249 assert(pre_val != rax, "check this code");
twisti@4318 3250 }
twisti@4318 3251
twisti@4318 3252 Address in_progress(thread, in_bytes(JavaThread::satb_mark_queue_offset() +
twisti@4318 3253 PtrQueue::byte_offset_of_active()));
twisti@4318 3254 Address index(thread, in_bytes(JavaThread::satb_mark_queue_offset() +
twisti@4318 3255 PtrQueue::byte_offset_of_index()));
twisti@4318 3256 Address buffer(thread, in_bytes(JavaThread::satb_mark_queue_offset() +
twisti@4318 3257 PtrQueue::byte_offset_of_buf()));
twisti@4318 3258
twisti@4318 3259
twisti@4318 3260 // Is marking active?
twisti@4318 3261 if (in_bytes(PtrQueue::byte_width_of_active()) == 4) {
twisti@4318 3262 cmpl(in_progress, 0);
twisti@4318 3263 } else {
twisti@4318 3264 assert(in_bytes(PtrQueue::byte_width_of_active()) == 1, "Assumption");
twisti@4318 3265 cmpb(in_progress, 0);
twisti@4318 3266 }
twisti@4318 3267 jcc(Assembler::equal, done);
twisti@4318 3268
twisti@4318 3269 // Do we need to load the previous value?
twisti@4318 3270 if (obj != noreg) {
twisti@4318 3271 load_heap_oop(pre_val, Address(obj, 0));
twisti@4318 3272 }
twisti@4318 3273
twisti@4318 3274 // Is the previous value null?
twisti@4318 3275 cmpptr(pre_val, (int32_t) NULL_WORD);
twisti@4318 3276 jcc(Assembler::equal, done);
twisti@4318 3277
twisti@4318 3278 // Can we store original value in the thread's buffer?
twisti@4318 3279 // Is index == 0?
twisti@4318 3280 // (The index field is typed as size_t.)
twisti@4318 3281
twisti@4318 3282 movptr(tmp, index); // tmp := *index_adr
twisti@4318 3283 cmpptr(tmp, 0); // tmp == 0?
twisti@4318 3284 jcc(Assembler::equal, runtime); // If yes, goto runtime
twisti@4318 3285
twisti@4318 3286 subptr(tmp, wordSize); // tmp := tmp - wordSize
twisti@4318 3287 movptr(index, tmp); // *index_adr := tmp
twisti@4318 3288 addptr(tmp, buffer); // tmp := tmp + *buffer_adr
twisti@4318 3289
twisti@4318 3290 // Record the previous value
twisti@4318 3291 movptr(Address(tmp, 0), pre_val);
twisti@4318 3292 jmp(done);
twisti@4318 3293
twisti@4318 3294 bind(runtime);
twisti@4318 3295 // save the live input values
twisti@4318 3296 if(tosca_live) push(rax);
twisti@4318 3297
twisti@4318 3298 if (obj != noreg && obj != rax)
twisti@4318 3299 push(obj);
twisti@4318 3300
twisti@4318 3301 if (pre_val != rax)
twisti@4318 3302 push(pre_val);
twisti@4318 3303
twisti@4318 3304 // Calling the runtime using the regular call_VM_leaf mechanism generates
twisti@4318 3305 // code (generated by InterpreterMacroAssember::call_VM_leaf_base)
twisti@4318 3306 // that checks that the *(ebp+frame::interpreter_frame_last_sp) == NULL.
twisti@4318 3307 //
twisti@4318 3308 // If we care generating the pre-barrier without a frame (e.g. in the
twisti@4318 3309 // intrinsified Reference.get() routine) then ebp might be pointing to
twisti@4318 3310 // the caller frame and so this check will most likely fail at runtime.
twisti@4318 3311 //
twisti@4318 3312 // Expanding the call directly bypasses the generation of the check.
twisti@4318 3313 // So when we do not have have a full interpreter frame on the stack
twisti@4318 3314 // expand_call should be passed true.
twisti@4318 3315
twisti@4318 3316 NOT_LP64( push(thread); )
twisti@4318 3317
twisti@4318 3318 if (expand_call) {
twisti@4318 3319 LP64_ONLY( assert(pre_val != c_rarg1, "smashed arg"); )
twisti@4318 3320 pass_arg1(this, thread);
twisti@4318 3321 pass_arg0(this, pre_val);
twisti@4318 3322 MacroAssembler::call_VM_leaf_base(CAST_FROM_FN_PTR(address, SharedRuntime::g1_wb_pre), 2);
twisti@4318 3323 } else {
twisti@4318 3324 call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::g1_wb_pre), pre_val, thread);
twisti@4318 3325 }
twisti@4318 3326
twisti@4318 3327 NOT_LP64( pop(thread); )
twisti@4318 3328
twisti@4318 3329 // save the live input values
twisti@4318 3330 if (pre_val != rax)
twisti@4318 3331 pop(pre_val);
twisti@4318 3332
twisti@4318 3333 if (obj != noreg && obj != rax)
twisti@4318 3334 pop(obj);
twisti@4318 3335
twisti@4318 3336 if(tosca_live) pop(rax);
twisti@4318 3337
twisti@4318 3338 bind(done);
twisti@4318 3339 }
twisti@4318 3340
twisti@4318 3341 void MacroAssembler::g1_write_barrier_post(Register store_addr,
twisti@4318 3342 Register new_val,
twisti@4318 3343 Register thread,
twisti@4318 3344 Register tmp,
twisti@4318 3345 Register tmp2) {
twisti@4318 3346 #ifdef _LP64
twisti@4318 3347 assert(thread == r15_thread, "must be");
twisti@4318 3348 #endif // _LP64
twisti@4318 3349
twisti@4318 3350 Address queue_index(thread, in_bytes(JavaThread::dirty_card_queue_offset() +
twisti@4318 3351 PtrQueue::byte_offset_of_index()));
twisti@4318 3352 Address buffer(thread, in_bytes(JavaThread::dirty_card_queue_offset() +
twisti@4318 3353 PtrQueue::byte_offset_of_buf()));
twisti@4318 3354
twisti@4318 3355 BarrierSet* bs = Universe::heap()->barrier_set();
twisti@4318 3356 CardTableModRefBS* ct = (CardTableModRefBS*)bs;
anoll@6155 3357 assert(sizeof(*ct->byte_map_base) == sizeof(jbyte), "adjust this code");
anoll@6155 3358
twisti@4318 3359 Label done;
twisti@4318 3360 Label runtime;
twisti@4318 3361
twisti@4318 3362 // Does store cross heap regions?
twisti@4318 3363
twisti@4318 3364 movptr(tmp, store_addr);
twisti@4318 3365 xorptr(tmp, new_val);
twisti@4318 3366 shrptr(tmp, HeapRegion::LogOfHRGrainBytes);
twisti@4318 3367 jcc(Assembler::equal, done);
twisti@4318 3368
twisti@4318 3369 // crosses regions, storing NULL?
twisti@4318 3370
twisti@4318 3371 cmpptr(new_val, (int32_t) NULL_WORD);
twisti@4318 3372 jcc(Assembler::equal, done);
twisti@4318 3373
twisti@4318 3374 // storing region crossing non-NULL, is card already dirty?
twisti@4318 3375
twisti@4318 3376 const Register card_addr = tmp;
anoll@6155 3377 const Register cardtable = tmp2;
anoll@6155 3378
anoll@6155 3379 movptr(card_addr, store_addr);
anoll@6155 3380 shrptr(card_addr, CardTableModRefBS::card_shift);
anoll@6155 3381 // Do not use ExternalAddress to load 'byte_map_base', since 'byte_map_base' is NOT
anoll@6155 3382 // a valid address and therefore is not properly handled by the relocation code.
anoll@6155 3383 movptr(cardtable, (intptr_t)ct->byte_map_base);
anoll@6155 3384 addptr(card_addr, cardtable);
anoll@6155 3385
mgerdin@5860 3386 cmpb(Address(card_addr, 0), (int)G1SATBCardTableModRefBS::g1_young_card_val());
twisti@4318 3387 jcc(Assembler::equal, done);
twisti@4318 3388
mgerdin@5860 3389 membar(Assembler::Membar_mask_bits(Assembler::StoreLoad));
mgerdin@5860 3390 cmpb(Address(card_addr, 0), (int)CardTableModRefBS::dirty_card_val());
mgerdin@5860 3391 jcc(Assembler::equal, done);
mgerdin@5860 3392
mgerdin@5860 3393
twisti@4318 3394 // storing a region crossing, non-NULL oop, card is clean.
twisti@4318 3395 // dirty card and log.
twisti@4318 3396
mgerdin@5860 3397 movb(Address(card_addr, 0), (int)CardTableModRefBS::dirty_card_val());
twisti@4318 3398
twisti@4318 3399 cmpl(queue_index, 0);
twisti@4318 3400 jcc(Assembler::equal, runtime);
twisti@4318 3401 subl(queue_index, wordSize);
twisti@4318 3402 movptr(tmp2, buffer);
twisti@4318 3403 #ifdef _LP64
twisti@4318 3404 movslq(rscratch1, queue_index);
twisti@4318 3405 addq(tmp2, rscratch1);
twisti@4318 3406 movq(Address(tmp2, 0), card_addr);
twisti@4318 3407 #else
twisti@4318 3408 addl(tmp2, queue_index);
anoll@6155 3409 movl(Address(tmp2, 0), card_addr);
twisti@4318 3410 #endif
twisti@4318 3411 jmp(done);
twisti@4318 3412
twisti@4318 3413 bind(runtime);
twisti@4318 3414 // save the live input values
twisti@4318 3415 push(store_addr);
twisti@4318 3416 push(new_val);
twisti@4318 3417 #ifdef _LP64
twisti@4318 3418 call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::g1_wb_post), card_addr, r15_thread);
twisti@4318 3419 #else
twisti@4318 3420 push(thread);
twisti@4318 3421 call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::g1_wb_post), card_addr, thread);
twisti@4318 3422 pop(thread);
twisti@4318 3423 #endif
twisti@4318 3424 pop(new_val);
twisti@4318 3425 pop(store_addr);
twisti@4318 3426
twisti@4318 3427 bind(done);
twisti@4318 3428 }
twisti@4318 3429
jprovino@4542 3430 #endif // INCLUDE_ALL_GCS
twisti@4318 3431 //////////////////////////////////////////////////////////////////////////////////
twisti@4318 3432
twisti@4318 3433
twisti@4318 3434 void MacroAssembler::store_check(Register obj) {
twisti@4318 3435 // Does a store check for the oop in register obj. The content of
twisti@4318 3436 // register obj is destroyed afterwards.
twisti@4318 3437 store_check_part_1(obj);
twisti@4318 3438 store_check_part_2(obj);
twisti@4318 3439 }
twisti@4318 3440
twisti@4318 3441 void MacroAssembler::store_check(Register obj, Address dst) {
twisti@4318 3442 store_check(obj);
twisti@4318 3443 }
twisti@4318 3444
twisti@4318 3445
twisti@4318 3446 // split the store check operation so that other instructions can be scheduled inbetween
twisti@4318 3447 void MacroAssembler::store_check_part_1(Register obj) {
twisti@4318 3448 BarrierSet* bs = Universe::heap()->barrier_set();
twisti@4318 3449 assert(bs->kind() == BarrierSet::CardTableModRef, "Wrong barrier set kind");
twisti@4318 3450 shrptr(obj, CardTableModRefBS::card_shift);
twisti@4318 3451 }
twisti@4318 3452
twisti@4318 3453 void MacroAssembler::store_check_part_2(Register obj) {
twisti@4318 3454 BarrierSet* bs = Universe::heap()->barrier_set();
twisti@4318 3455 assert(bs->kind() == BarrierSet::CardTableModRef, "Wrong barrier set kind");
twisti@4318 3456 CardTableModRefBS* ct = (CardTableModRefBS*)bs;
twisti@4318 3457 assert(sizeof(*ct->byte_map_base) == sizeof(jbyte), "adjust this code");
twisti@4318 3458
twisti@4318 3459 // The calculation for byte_map_base is as follows:
twisti@4318 3460 // byte_map_base = _byte_map - (uintptr_t(low_bound) >> card_shift);
anoll@6155 3461 // So this essentially converts an address to a displacement and it will
anoll@6155 3462 // never need to be relocated. On 64bit however the value may be too
anoll@6155 3463 // large for a 32bit displacement.
twisti@4318 3464 intptr_t disp = (intptr_t) ct->byte_map_base;
twisti@4318 3465 if (is_simm32(disp)) {
twisti@4318 3466 Address cardtable(noreg, obj, Address::times_1, disp);
twisti@4318 3467 movb(cardtable, 0);
twisti@4318 3468 } else {
anoll@6155 3469 // By doing it as an ExternalAddress 'disp' could be converted to a rip-relative
anoll@6155 3470 // displacement and done in a single instruction given favorable mapping and a
anoll@6155 3471 // smarter version of as_Address. However, 'ExternalAddress' generates a relocation
anoll@6155 3472 // entry and that entry is not properly handled by the relocation code.
anoll@6155 3473 AddressLiteral cardtable((address)ct->byte_map_base, relocInfo::none);
twisti@4318 3474 Address index(noreg, obj, Address::times_1);
twisti@4318 3475 movb(as_Address(ArrayAddress(cardtable, index)), 0);
twisti@4318 3476 }
twisti@4318 3477 }
twisti@4318 3478
twisti@4318 3479 void MacroAssembler::subptr(Register dst, int32_t imm32) {
twisti@4318 3480 LP64_ONLY(subq(dst, imm32)) NOT_LP64(subl(dst, imm32));
twisti@4318 3481 }
twisti@4318 3482
twisti@4318 3483 // Force generation of a 4 byte immediate value even if it fits into 8bit
twisti@4318 3484 void MacroAssembler::subptr_imm32(Register dst, int32_t imm32) {
twisti@4318 3485 LP64_ONLY(subq_imm32(dst, imm32)) NOT_LP64(subl_imm32(dst, imm32));
twisti@4318 3486 }
twisti@4318 3487
twisti@4318 3488 void MacroAssembler::subptr(Register dst, Register src) {
twisti@4318 3489 LP64_ONLY(subq(dst, src)) NOT_LP64(subl(dst, src));
twisti@4318 3490 }
twisti@4318 3491
twisti@4318 3492 // C++ bool manipulation
twisti@4318 3493 void MacroAssembler::testbool(Register dst) {
twisti@4318 3494 if(sizeof(bool) == 1)
twisti@4318 3495 testb(dst, 0xff);
twisti@4318 3496 else if(sizeof(bool) == 2) {
twisti@4318 3497 // testw implementation needed for two byte bools
twisti@4318 3498 ShouldNotReachHere();
twisti@4318 3499 } else if(sizeof(bool) == 4)
twisti@4318 3500 testl(dst, dst);
twisti@4318 3501 else
twisti@4318 3502 // unsupported
twisti@4318 3503 ShouldNotReachHere();
twisti@4318 3504 }
twisti@4318 3505
twisti@4318 3506 void MacroAssembler::testptr(Register dst, Register src) {
twisti@4318 3507 LP64_ONLY(testq(dst, src)) NOT_LP64(testl(dst, src));
twisti@4318 3508 }
twisti@4318 3509
twisti@4318 3510 // Defines obj, preserves var_size_in_bytes, okay for t2 == var_size_in_bytes.
twisti@4318 3511 void MacroAssembler::tlab_allocate(Register obj,
twisti@4318 3512 Register var_size_in_bytes,
twisti@4318 3513 int con_size_in_bytes,
twisti@4318 3514 Register t1,
twisti@4318 3515 Register t2,
twisti@4318 3516 Label& slow_case) {
twisti@4318 3517 assert_different_registers(obj, t1, t2);
twisti@4318 3518 assert_different_registers(obj, var_size_in_bytes, t1);
twisti@4318 3519 Register end = t2;
twisti@4318 3520 Register thread = NOT_LP64(t1) LP64_ONLY(r15_thread);
twisti@4318 3521
twisti@4318 3522 verify_tlab();
twisti@4318 3523
twisti@4318 3524 NOT_LP64(get_thread(thread));
twisti@4318 3525
twisti@4318 3526 movptr(obj, Address(thread, JavaThread::tlab_top_offset()));
twisti@4318 3527 if (var_size_in_bytes == noreg) {
twisti@4318 3528 lea(end, Address(obj, con_size_in_bytes));
twisti@4318 3529 } else {
twisti@4318 3530 lea(end, Address(obj, var_size_in_bytes, Address::times_1));
twisti@4318 3531 }
twisti@4318 3532 cmpptr(end, Address(thread, JavaThread::tlab_end_offset()));
twisti@4318 3533 jcc(Assembler::above, slow_case);
twisti@4318 3534
twisti@4318 3535 // update the tlab top pointer
twisti@4318 3536 movptr(Address(thread, JavaThread::tlab_top_offset()), end);
twisti@4318 3537
twisti@4318 3538 // recover var_size_in_bytes if necessary
twisti@4318 3539 if (var_size_in_bytes == end) {
twisti@4318 3540 subptr(var_size_in_bytes, obj);
twisti@4318 3541 }
twisti@4318 3542 verify_tlab();
twisti@4318 3543 }
twisti@4318 3544
twisti@4318 3545 // Preserves rbx, and rdx.
twisti@4318 3546 Register MacroAssembler::tlab_refill(Label& retry,
twisti@4318 3547 Label& try_eden,
twisti@4318 3548 Label& slow_case) {
twisti@4318 3549 Register top = rax;
twisti@4318 3550 Register t1 = rcx;
twisti@4318 3551 Register t2 = rsi;
twisti@4318 3552 Register thread_reg = NOT_LP64(rdi) LP64_ONLY(r15_thread);
twisti@4318 3553 assert_different_registers(top, thread_reg, t1, t2, /* preserve: */ rbx, rdx);
twisti@4318 3554 Label do_refill, discard_tlab;
twisti@4318 3555
twisti@4318 3556 if (CMSIncrementalMode || !Universe::heap()->supports_inline_contig_alloc()) {
twisti@4318 3557 // No allocation in the shared eden.
twisti@4318 3558 jmp(slow_case);
twisti@4318 3559 }
twisti@4318 3560
twisti@4318 3561 NOT_LP64(get_thread(thread_reg));
twisti@4318 3562
twisti@4318 3563 movptr(top, Address(thread_reg, in_bytes(JavaThread::tlab_top_offset())));
twisti@4318 3564 movptr(t1, Address(thread_reg, in_bytes(JavaThread::tlab_end_offset())));
twisti@4318 3565
twisti@4318 3566 // calculate amount of free space
twisti@4318 3567 subptr(t1, top);
twisti@4318 3568 shrptr(t1, LogHeapWordSize);
twisti@4318 3569
twisti@4318 3570 // Retain tlab and allocate object in shared space if
twisti@4318 3571 // the amount free in the tlab is too large to discard.
twisti@4318 3572 cmpptr(t1, Address(thread_reg, in_bytes(JavaThread::tlab_refill_waste_limit_offset())));
twisti@4318 3573 jcc(Assembler::lessEqual, discard_tlab);
twisti@4318 3574
twisti@4318 3575 // Retain
twisti@4318 3576 // %%% yuck as movptr...
twisti@4318 3577 movptr(t2, (int32_t) ThreadLocalAllocBuffer::refill_waste_limit_increment());
twisti@4318 3578 addptr(Address(thread_reg, in_bytes(JavaThread::tlab_refill_waste_limit_offset())), t2);
twisti@4318 3579 if (TLABStats) {
twisti@4318 3580 // increment number of slow_allocations
twisti@4318 3581 addl(Address(thread_reg, in_bytes(JavaThread::tlab_slow_allocations_offset())), 1);
twisti@4318 3582 }
twisti@4318 3583 jmp(try_eden);
twisti@4318 3584
twisti@4318 3585 bind(discard_tlab);
twisti@4318 3586 if (TLABStats) {
twisti@4318 3587 // increment number of refills
twisti@4318 3588 addl(Address(thread_reg, in_bytes(JavaThread::tlab_number_of_refills_offset())), 1);
twisti@4318 3589 // accumulate wastage -- t1 is amount free in tlab
twisti@4318 3590 addl(Address(thread_reg, in_bytes(JavaThread::tlab_fast_refill_waste_offset())), t1);
twisti@4318 3591 }
twisti@4318 3592
twisti@4318 3593 // if tlab is currently allocated (top or end != null) then
twisti@4318 3594 // fill [top, end + alignment_reserve) with array object
twisti@4318 3595 testptr(top, top);
twisti@4318 3596 jcc(Assembler::zero, do_refill);
twisti@4318 3597
twisti@4318 3598 // set up the mark word
twisti@4318 3599 movptr(Address(top, oopDesc::mark_offset_in_bytes()), (intptr_t)markOopDesc::prototype()->copy_set_hash(0x2));
twisti@4318 3600 // set the length to the remaining space
twisti@4318 3601 subptr(t1, typeArrayOopDesc::header_size(T_INT));
twisti@4318 3602 addptr(t1, (int32_t)ThreadLocalAllocBuffer::alignment_reserve());
twisti@4318 3603 shlptr(t1, log2_intptr(HeapWordSize/sizeof(jint)));
twisti@4318 3604 movl(Address(top, arrayOopDesc::length_offset_in_bytes()), t1);
twisti@4318 3605 // set klass to intArrayKlass
twisti@4318 3606 // dubious reloc why not an oop reloc?
twisti@4318 3607 movptr(t1, ExternalAddress((address)Universe::intArrayKlassObj_addr()));
twisti@4318 3608 // store klass last. concurrent gcs assumes klass length is valid if
twisti@4318 3609 // klass field is not null.
twisti@4318 3610 store_klass(top, t1);
twisti@4318 3611
twisti@4318 3612 movptr(t1, top);
twisti@4318 3613 subptr(t1, Address(thread_reg, in_bytes(JavaThread::tlab_start_offset())));
twisti@4318 3614 incr_allocated_bytes(thread_reg, t1, 0);
twisti@4318 3615
twisti@4318 3616 // refill the tlab with an eden allocation
twisti@4318 3617 bind(do_refill);
twisti@4318 3618 movptr(t1, Address(thread_reg, in_bytes(JavaThread::tlab_size_offset())));
twisti@4318 3619 shlptr(t1, LogHeapWordSize);
twisti@4318 3620 // allocate new tlab, address returned in top
twisti@4318 3621 eden_allocate(top, t1, 0, t2, slow_case);
twisti@4318 3622
twisti@4318 3623 // Check that t1 was preserved in eden_allocate.
twisti@4318 3624 #ifdef ASSERT
twisti@4318 3625 if (UseTLAB) {
twisti@4318 3626 Label ok;
twisti@4318 3627 Register tsize = rsi;
twisti@4318 3628 assert_different_registers(tsize, thread_reg, t1);
twisti@4318 3629 push(tsize);
twisti@4318 3630 movptr(tsize, Address(thread_reg, in_bytes(JavaThread::tlab_size_offset())));
twisti@4318 3631 shlptr(tsize, LogHeapWordSize);
twisti@4318 3632 cmpptr(t1, tsize);
twisti@4318 3633 jcc(Assembler::equal, ok);
twisti@4318 3634 STOP("assert(t1 != tlab size)");
twisti@4318 3635 should_not_reach_here();
twisti@4318 3636
twisti@4318 3637 bind(ok);
twisti@4318 3638 pop(tsize);
twisti@4318 3639 }
twisti@4318 3640 #endif
twisti@4318 3641 movptr(Address(thread_reg, in_bytes(JavaThread::tlab_start_offset())), top);
twisti@4318 3642 movptr(Address(thread_reg, in_bytes(JavaThread::tlab_top_offset())), top);
twisti@4318 3643 addptr(top, t1);
twisti@4318 3644 subptr(top, (int32_t)ThreadLocalAllocBuffer::alignment_reserve_in_bytes());
twisti@4318 3645 movptr(Address(thread_reg, in_bytes(JavaThread::tlab_end_offset())), top);
twisti@4318 3646 verify_tlab();
twisti@4318 3647 jmp(retry);
twisti@4318 3648
twisti@4318 3649 return thread_reg; // for use by caller
twisti@4318 3650 }
twisti@4318 3651
twisti@4318 3652 void MacroAssembler::incr_allocated_bytes(Register thread,
twisti@4318 3653 Register var_size_in_bytes,
twisti@4318 3654 int con_size_in_bytes,
twisti@4318 3655 Register t1) {
twisti@4318 3656 if (!thread->is_valid()) {
twisti@4318 3657 #ifdef _LP64
twisti@4318 3658 thread = r15_thread;
twisti@4318 3659 #else
twisti@4318 3660 assert(t1->is_valid(), "need temp reg");
twisti@4318 3661 thread = t1;
twisti@4318 3662 get_thread(thread);
twisti@4318 3663 #endif
twisti@4318 3664 }
twisti@4318 3665
twisti@4318 3666 #ifdef _LP64
twisti@4318 3667 if (var_size_in_bytes->is_valid()) {
twisti@4318 3668 addq(Address(thread, in_bytes(JavaThread::allocated_bytes_offset())), var_size_in_bytes);
twisti@4318 3669 } else {
twisti@4318 3670 addq(Address(thread, in_bytes(JavaThread::allocated_bytes_offset())), con_size_in_bytes);
twisti@4318 3671 }
twisti@4318 3672 #else
twisti@4318 3673 if (var_size_in_bytes->is_valid()) {
twisti@4318 3674 addl(Address(thread, in_bytes(JavaThread::allocated_bytes_offset())), var_size_in_bytes);
twisti@4318 3675 } else {
twisti@4318 3676 addl(Address(thread, in_bytes(JavaThread::allocated_bytes_offset())), con_size_in_bytes);
twisti@4318 3677 }
twisti@4318 3678 adcl(Address(thread, in_bytes(JavaThread::allocated_bytes_offset())+4), 0);
twisti@4318 3679 #endif
twisti@4318 3680 }
twisti@4318 3681
twisti@4318 3682 void MacroAssembler::fp_runtime_fallback(address runtime_entry, int nb_args, int num_fpu_regs_in_use) {
twisti@4318 3683 pusha();
twisti@4318 3684
twisti@4318 3685 // if we are coming from c1, xmm registers may be live
twisti@4318 3686 int off = 0;
twisti@4318 3687 if (UseSSE == 1) {
twisti@4318 3688 subptr(rsp, sizeof(jdouble)*8);
twisti@4318 3689 movflt(Address(rsp,off++*sizeof(jdouble)),xmm0);
twisti@4318 3690 movflt(Address(rsp,off++*sizeof(jdouble)),xmm1);
twisti@4318 3691 movflt(Address(rsp,off++*sizeof(jdouble)),xmm2);
twisti@4318 3692 movflt(Address(rsp,off++*sizeof(jdouble)),xmm3);
twisti@4318 3693 movflt(Address(rsp,off++*sizeof(jdouble)),xmm4);
twisti@4318 3694 movflt(Address(rsp,off++*sizeof(jdouble)),xmm5);
twisti@4318 3695 movflt(Address(rsp,off++*sizeof(jdouble)),xmm6);
twisti@4318 3696 movflt(Address(rsp,off++*sizeof(jdouble)),xmm7);
twisti@4318 3697 } else if (UseSSE >= 2) {
twisti@4318 3698 #ifdef COMPILER2
twisti@4318 3699 if (MaxVectorSize > 16) {
twisti@4318 3700 assert(UseAVX > 0, "256bit vectors are supported only with AVX");
twisti@4318 3701 // Save upper half of YMM registes
twisti@4318 3702 subptr(rsp, 16 * LP64_ONLY(16) NOT_LP64(8));
twisti@4318 3703 vextractf128h(Address(rsp, 0),xmm0);
twisti@4318 3704 vextractf128h(Address(rsp, 16),xmm1);
twisti@4318 3705 vextractf128h(Address(rsp, 32),xmm2);
twisti@4318 3706 vextractf128h(Address(rsp, 48),xmm3);
twisti@4318 3707 vextractf128h(Address(rsp, 64),xmm4);
twisti@4318 3708 vextractf128h(Address(rsp, 80),xmm5);
twisti@4318 3709 vextractf128h(Address(rsp, 96),xmm6);
twisti@4318 3710 vextractf128h(Address(rsp,112),xmm7);
twisti@4318 3711 #ifdef _LP64
twisti@4318 3712 vextractf128h(Address(rsp,128),xmm8);
twisti@4318 3713 vextractf128h(Address(rsp,144),xmm9);
twisti@4318 3714 vextractf128h(Address(rsp,160),xmm10);
twisti@4318 3715 vextractf128h(Address(rsp,176),xmm11);
twisti@4318 3716 vextractf128h(Address(rsp,192),xmm12);
twisti@4318 3717 vextractf128h(Address(rsp,208),xmm13);
twisti@4318 3718 vextractf128h(Address(rsp,224),xmm14);
twisti@4318 3719 vextractf128h(Address(rsp,240),xmm15);
twisti@4318 3720 #endif
twisti@4318 3721 }
twisti@4318 3722 #endif
twisti@4318 3723 // Save whole 128bit (16 bytes) XMM regiters
twisti@4318 3724 subptr(rsp, 16 * LP64_ONLY(16) NOT_LP64(8));
twisti@4318 3725 movdqu(Address(rsp,off++*16),xmm0);
twisti@4318 3726 movdqu(Address(rsp,off++*16),xmm1);
twisti@4318 3727 movdqu(Address(rsp,off++*16),xmm2);
twisti@4318 3728 movdqu(Address(rsp,off++*16),xmm3);
twisti@4318 3729 movdqu(Address(rsp,off++*16),xmm4);
twisti@4318 3730 movdqu(Address(rsp,off++*16),xmm5);
twisti@4318 3731 movdqu(Address(rsp,off++*16),xmm6);
twisti@4318 3732 movdqu(Address(rsp,off++*16),xmm7);
twisti@4318 3733 #ifdef _LP64
twisti@4318 3734 movdqu(Address(rsp,off++*16),xmm8);
twisti@4318 3735 movdqu(Address(rsp,off++*16),xmm9);
twisti@4318 3736 movdqu(Address(rsp,off++*16),xmm10);
twisti@4318 3737 movdqu(Address(rsp,off++*16),xmm11);
twisti@4318 3738 movdqu(Address(rsp,off++*16),xmm12);
twisti@4318 3739 movdqu(Address(rsp,off++*16),xmm13);
twisti@4318 3740 movdqu(Address(rsp,off++*16),xmm14);
twisti@4318 3741 movdqu(Address(rsp,off++*16),xmm15);
twisti@4318 3742 #endif
twisti@4318 3743 }
twisti@4318 3744
twisti@4318 3745 // Preserve registers across runtime call
twisti@4318 3746 int incoming_argument_and_return_value_offset = -1;
twisti@4318 3747 if (num_fpu_regs_in_use > 1) {
twisti@4318 3748 // Must preserve all other FPU regs (could alternatively convert
twisti@4318 3749 // SharedRuntime::dsin, dcos etc. into assembly routines known not to trash
twisti@4318 3750 // FPU state, but can not trust C compiler)
twisti@4318 3751 NEEDS_CLEANUP;
twisti@4318 3752 // NOTE that in this case we also push the incoming argument(s) to
twisti@4318 3753 // the stack and restore it later; we also use this stack slot to
twisti@4318 3754 // hold the return value from dsin, dcos etc.
twisti@4318 3755 for (int i = 0; i < num_fpu_regs_in_use; i++) {
twisti@4318 3756 subptr(rsp, sizeof(jdouble));
twisti@4318 3757 fstp_d(Address(rsp, 0));
twisti@4318 3758 }
twisti@4318 3759 incoming_argument_and_return_value_offset = sizeof(jdouble)*(num_fpu_regs_in_use-1);
twisti@4318 3760 for (int i = nb_args-1; i >= 0; i--) {
twisti@4318 3761 fld_d(Address(rsp, incoming_argument_and_return_value_offset-i*sizeof(jdouble)));
twisti@4318 3762 }
twisti@4318 3763 }
twisti@4318 3764
twisti@4318 3765 subptr(rsp, nb_args*sizeof(jdouble));
twisti@4318 3766 for (int i = 0; i < nb_args; i++) {
twisti@4318 3767 fstp_d(Address(rsp, i*sizeof(jdouble)));
twisti@4318 3768 }
twisti@4318 3769
twisti@4318 3770 #ifdef _LP64
twisti@4318 3771 if (nb_args > 0) {
twisti@4318 3772 movdbl(xmm0, Address(rsp, 0));
twisti@4318 3773 }
twisti@4318 3774 if (nb_args > 1) {
twisti@4318 3775 movdbl(xmm1, Address(rsp, sizeof(jdouble)));
twisti@4318 3776 }
twisti@4318 3777 assert(nb_args <= 2, "unsupported number of args");
twisti@4318 3778 #endif // _LP64
twisti@4318 3779
twisti@4318 3780 // NOTE: we must not use call_VM_leaf here because that requires a
twisti@4318 3781 // complete interpreter frame in debug mode -- same bug as 4387334
twisti@4318 3782 // MacroAssembler::call_VM_leaf_base is perfectly safe and will
twisti@4318 3783 // do proper 64bit abi
twisti@4318 3784
twisti@4318 3785 NEEDS_CLEANUP;
twisti@4318 3786 // Need to add stack banging before this runtime call if it needs to
twisti@4318 3787 // be taken; however, there is no generic stack banging routine at
twisti@4318 3788 // the MacroAssembler level
twisti@4318 3789
twisti@4318 3790 MacroAssembler::call_VM_leaf_base(runtime_entry, 0);
twisti@4318 3791
twisti@4318 3792 #ifdef _LP64
twisti@4318 3793 movsd(Address(rsp, 0), xmm0);
twisti@4318 3794 fld_d(Address(rsp, 0));
twisti@4318 3795 #endif // _LP64
twisti@4318 3796 addptr(rsp, sizeof(jdouble) * nb_args);
twisti@4318 3797 if (num_fpu_regs_in_use > 1) {
twisti@4318 3798 // Must save return value to stack and then restore entire FPU
twisti@4318 3799 // stack except incoming arguments
twisti@4318 3800 fstp_d(Address(rsp, incoming_argument_and_return_value_offset));
twisti@4318 3801 for (int i = 0; i < num_fpu_regs_in_use - nb_args; i++) {
twisti@4318 3802 fld_d(Address(rsp, 0));
twisti@4318 3803 addptr(rsp, sizeof(jdouble));
twisti@4318 3804 }
twisti@4318 3805 fld_d(Address(rsp, (nb_args-1)*sizeof(jdouble)));
twisti@4318 3806 addptr(rsp, sizeof(jdouble) * nb_args);
twisti@4318 3807 }
twisti@4318 3808
twisti@4318 3809 off = 0;
twisti@4318 3810 if (UseSSE == 1) {
twisti@4318 3811 movflt(xmm0, Address(rsp,off++*sizeof(jdouble)));
twisti@4318 3812 movflt(xmm1, Address(rsp,off++*sizeof(jdouble)));
twisti@4318 3813 movflt(xmm2, Address(rsp,off++*sizeof(jdouble)));
twisti@4318 3814 movflt(xmm3, Address(rsp,off++*sizeof(jdouble)));
twisti@4318 3815 movflt(xmm4, Address(rsp,off++*sizeof(jdouble)));
twisti@4318 3816 movflt(xmm5, Address(rsp,off++*sizeof(jdouble)));
twisti@4318 3817 movflt(xmm6, Address(rsp,off++*sizeof(jdouble)));
twisti@4318 3818 movflt(xmm7, Address(rsp,off++*sizeof(jdouble)));
twisti@4318 3819 addptr(rsp, sizeof(jdouble)*8);
twisti@4318 3820 } else if (UseSSE >= 2) {
twisti@4318 3821 // Restore whole 128bit (16 bytes) XMM regiters
twisti@4318 3822 movdqu(xmm0, Address(rsp,off++*16));
twisti@4318 3823 movdqu(xmm1, Address(rsp,off++*16));
twisti@4318 3824 movdqu(xmm2, Address(rsp,off++*16));
twisti@4318 3825 movdqu(xmm3, Address(rsp,off++*16));
twisti@4318 3826 movdqu(xmm4, Address(rsp,off++*16));
twisti@4318 3827 movdqu(xmm5, Address(rsp,off++*16));
twisti@4318 3828 movdqu(xmm6, Address(rsp,off++*16));
twisti@4318 3829 movdqu(xmm7, Address(rsp,off++*16));
twisti@4318 3830 #ifdef _LP64
twisti@4318 3831 movdqu(xmm8, Address(rsp,off++*16));
twisti@4318 3832 movdqu(xmm9, Address(rsp,off++*16));
twisti@4318 3833 movdqu(xmm10, Address(rsp,off++*16));
twisti@4318 3834 movdqu(xmm11, Address(rsp,off++*16));
twisti@4318 3835 movdqu(xmm12, Address(rsp,off++*16));
twisti@4318 3836 movdqu(xmm13, Address(rsp,off++*16));
twisti@4318 3837 movdqu(xmm14, Address(rsp,off++*16));
twisti@4318 3838 movdqu(xmm15, Address(rsp,off++*16));
twisti@4318 3839 #endif
twisti@4318 3840 addptr(rsp, 16 * LP64_ONLY(16) NOT_LP64(8));
twisti@4318 3841 #ifdef COMPILER2
twisti@4318 3842 if (MaxVectorSize > 16) {
twisti@4318 3843 // Restore upper half of YMM registes.
twisti@4318 3844 vinsertf128h(xmm0, Address(rsp, 0));
twisti@4318 3845 vinsertf128h(xmm1, Address(rsp, 16));
twisti@4318 3846 vinsertf128h(xmm2, Address(rsp, 32));
twisti@4318 3847 vinsertf128h(xmm3, Address(rsp, 48));
twisti@4318 3848 vinsertf128h(xmm4, Address(rsp, 64));
twisti@4318 3849 vinsertf128h(xmm5, Address(rsp, 80));
twisti@4318 3850 vinsertf128h(xmm6, Address(rsp, 96));
twisti@4318 3851 vinsertf128h(xmm7, Address(rsp,112));
twisti@4318 3852 #ifdef _LP64
twisti@4318 3853 vinsertf128h(xmm8, Address(rsp,128));
twisti@4318 3854 vinsertf128h(xmm9, Address(rsp,144));
twisti@4318 3855 vinsertf128h(xmm10, Address(rsp,160));
twisti@4318 3856 vinsertf128h(xmm11, Address(rsp,176));
twisti@4318 3857 vinsertf128h(xmm12, Address(rsp,192));
twisti@4318 3858 vinsertf128h(xmm13, Address(rsp,208));
twisti@4318 3859 vinsertf128h(xmm14, Address(rsp,224));
twisti@4318 3860 vinsertf128h(xmm15, Address(rsp,240));
twisti@4318 3861 #endif
twisti@4318 3862 addptr(rsp, 16 * LP64_ONLY(16) NOT_LP64(8));
twisti@4318 3863 }
twisti@4318 3864 #endif
twisti@4318 3865 }
twisti@4318 3866 popa();
twisti@4318 3867 }
twisti@4318 3868
twisti@4318 3869 static const double pi_4 = 0.7853981633974483;
twisti@4318 3870
twisti@4318 3871 void MacroAssembler::trigfunc(char trig, int num_fpu_regs_in_use) {
twisti@4318 3872 // A hand-coded argument reduction for values in fabs(pi/4, pi/2)
twisti@4318 3873 // was attempted in this code; unfortunately it appears that the
twisti@4318 3874 // switch to 80-bit precision and back causes this to be
twisti@4318 3875 // unprofitable compared with simply performing a runtime call if
twisti@4318 3876 // the argument is out of the (-pi/4, pi/4) range.
twisti@4318 3877
twisti@4318 3878 Register tmp = noreg;
twisti@4318 3879 if (!VM_Version::supports_cmov()) {
twisti@4318 3880 // fcmp needs a temporary so preserve rbx,
twisti@4318 3881 tmp = rbx;
twisti@4318 3882 push(tmp);
twisti@4318 3883 }
twisti@4318 3884
twisti@4318 3885 Label slow_case, done;
twisti@4318 3886
twisti@4318 3887 ExternalAddress pi4_adr = (address)&pi_4;
twisti@4318 3888 if (reachable(pi4_adr)) {
twisti@4318 3889 // x ?<= pi/4
twisti@4318 3890 fld_d(pi4_adr);
twisti@4318 3891 fld_s(1); // Stack: X PI/4 X
twisti@4318 3892 fabs(); // Stack: |X| PI/4 X
twisti@4318 3893 fcmp(tmp);
twisti@4318 3894 jcc(Assembler::above, slow_case);
twisti@4318 3895
twisti@4318 3896 // fastest case: -pi/4 <= x <= pi/4
twisti@4318 3897 switch(trig) {
twisti@4318 3898 case 's':
twisti@4318 3899 fsin();
twisti@4318 3900 break;
twisti@4318 3901 case 'c':
twisti@4318 3902 fcos();
twisti@4318 3903 break;
twisti@4318 3904 case 't':
twisti@4318 3905 ftan();
twisti@4318 3906 break;
twisti@4318 3907 default:
twisti@4318 3908 assert(false, "bad intrinsic");
twisti@4318 3909 break;
twisti@4318 3910 }
twisti@4318 3911 jmp(done);
twisti@4318 3912 }
twisti@4318 3913
twisti@4318 3914 // slow case: runtime call
twisti@4318 3915 bind(slow_case);
twisti@4318 3916
twisti@4318 3917 switch(trig) {
twisti@4318 3918 case 's':
twisti@4318 3919 {
twisti@4318 3920 fp_runtime_fallback(CAST_FROM_FN_PTR(address, SharedRuntime::dsin), 1, num_fpu_regs_in_use);
twisti@4318 3921 }
twisti@4318 3922 break;
twisti@4318 3923 case 'c':
twisti@4318 3924 {
twisti@4318 3925 fp_runtime_fallback(CAST_FROM_FN_PTR(address, SharedRuntime::dcos), 1, num_fpu_regs_in_use);
twisti@4318 3926 }
twisti@4318 3927 break;
twisti@4318 3928 case 't':
twisti@4318 3929 {
twisti@4318 3930 fp_runtime_fallback(CAST_FROM_FN_PTR(address, SharedRuntime::dtan), 1, num_fpu_regs_in_use);
twisti@4318 3931 }
twisti@4318 3932 break;
twisti@4318 3933 default:
twisti@4318 3934 assert(false, "bad intrinsic");
twisti@4318 3935 break;
twisti@4318 3936 }
twisti@4318 3937
twisti@4318 3938 // Come here with result in F-TOS
twisti@4318 3939 bind(done);
twisti@4318 3940
twisti@4318 3941 if (tmp != noreg) {
twisti@4318 3942 pop(tmp);
twisti@4318 3943 }
twisti@4318 3944 }
twisti@4318 3945
twisti@4318 3946
twisti@4318 3947 // Look up the method for a megamorphic invokeinterface call.
twisti@4318 3948 // The target method is determined by <intf_klass, itable_index>.
twisti@4318 3949 // The receiver klass is in recv_klass.
twisti@4318 3950 // On success, the result will be in method_result, and execution falls through.
twisti@4318 3951 // On failure, execution transfers to the given label.
twisti@4318 3952 void MacroAssembler::lookup_interface_method(Register recv_klass,
twisti@4318 3953 Register intf_klass,
twisti@4318 3954 RegisterOrConstant itable_index,
twisti@4318 3955 Register method_result,
twisti@4318 3956 Register scan_temp,
twisti@4318 3957 Label& L_no_such_interface) {
twisti@4318 3958 assert_different_registers(recv_klass, intf_klass, method_result, scan_temp);
twisti@4318 3959 assert(itable_index.is_constant() || itable_index.as_register() == method_result,
twisti@4318 3960 "caller must use same register for non-constant itable index as for method");
twisti@4318 3961
twisti@4318 3962 // Compute start of first itableOffsetEntry (which is at the end of the vtable)
twisti@4318 3963 int vtable_base = InstanceKlass::vtable_start_offset() * wordSize;
twisti@4318 3964 int itentry_off = itableMethodEntry::method_offset_in_bytes();
twisti@4318 3965 int scan_step = itableOffsetEntry::size() * wordSize;
twisti@4318 3966 int vte_size = vtableEntry::size() * wordSize;
twisti@4318 3967 Address::ScaleFactor times_vte_scale = Address::times_ptr;
twisti@4318 3968 assert(vte_size == wordSize, "else adjust times_vte_scale");
twisti@4318 3969
twisti@4318 3970 movl(scan_temp, Address(recv_klass, InstanceKlass::vtable_length_offset() * wordSize));
twisti@4318 3971
twisti@4318 3972 // %%% Could store the aligned, prescaled offset in the klassoop.
twisti@4318 3973 lea(scan_temp, Address(recv_klass, scan_temp, times_vte_scale, vtable_base));
twisti@4318 3974 if (HeapWordsPerLong > 1) {
twisti@4318 3975 // Round up to align_object_offset boundary
twisti@4318 3976 // see code for InstanceKlass::start_of_itable!
twisti@4318 3977 round_to(scan_temp, BytesPerLong);
twisti@4318 3978 }
twisti@4318 3979
twisti@4318 3980 // Adjust recv_klass by scaled itable_index, so we can free itable_index.
twisti@4318 3981 assert(itableMethodEntry::size() * wordSize == wordSize, "adjust the scaling in the code below");
twisti@4318 3982 lea(recv_klass, Address(recv_klass, itable_index, Address::times_ptr, itentry_off));
twisti@4318 3983
twisti@4318 3984 // for (scan = klass->itable(); scan->interface() != NULL; scan += scan_step) {
twisti@4318 3985 // if (scan->interface() == intf) {
twisti@4318 3986 // result = (klass + scan->offset() + itable_index);
twisti@4318 3987 // }
twisti@4318 3988 // }
twisti@4318 3989 Label search, found_method;
twisti@4318 3990
twisti@4318 3991 for (int peel = 1; peel >= 0; peel--) {
twisti@4318 3992 movptr(method_result, Address(scan_temp, itableOffsetEntry::interface_offset_in_bytes()));
twisti@4318 3993 cmpptr(intf_klass, method_result);
twisti@4318 3994
twisti@4318 3995 if (peel) {
twisti@4318 3996 jccb(Assembler::equal, found_method);
twisti@4318 3997 } else {
twisti@4318 3998 jccb(Assembler::notEqual, search);
twisti@4318 3999 // (invert the test to fall through to found_method...)
twisti@4318 4000 }
twisti@4318 4001
twisti@4318 4002 if (!peel) break;
twisti@4318 4003
twisti@4318 4004 bind(search);
twisti@4318 4005
twisti@4318 4006 // Check that the previous entry is non-null. A null entry means that
twisti@4318 4007 // the receiver class doesn't implement the interface, and wasn't the
twisti@4318 4008 // same as when the caller was compiled.
twisti@4318 4009 testptr(method_result, method_result);
twisti@4318 4010 jcc(Assembler::zero, L_no_such_interface);
twisti@4318 4011 addptr(scan_temp, scan_step);
twisti@4318 4012 }
twisti@4318 4013
twisti@4318 4014 bind(found_method);
twisti@4318 4015
twisti@4318 4016 // Got a hit.
twisti@4318 4017 movl(scan_temp, Address(scan_temp, itableOffsetEntry::offset_offset_in_bytes()));
twisti@4318 4018 movptr(method_result, Address(recv_klass, scan_temp, Address::times_1));
twisti@4318 4019 }
twisti@4318 4020
twisti@4318 4021
twisti@4318 4022 // virtual method calling
twisti@4318 4023 void MacroAssembler::lookup_virtual_method(Register recv_klass,
twisti@4318 4024 RegisterOrConstant vtable_index,
twisti@4318 4025 Register method_result) {
twisti@4318 4026 const int base = InstanceKlass::vtable_start_offset() * wordSize;
twisti@4318 4027 assert(vtableEntry::size() * wordSize == wordSize, "else adjust the scaling in the code below");
twisti@4318 4028 Address vtable_entry_addr(recv_klass,
twisti@4318 4029 vtable_index, Address::times_ptr,
twisti@4318 4030 base + vtableEntry::method_offset_in_bytes());
twisti@4318 4031 movptr(method_result, vtable_entry_addr);
twisti@4318 4032 }
twisti@4318 4033
twisti@4318 4034
twisti@4318 4035 void MacroAssembler::check_klass_subtype(Register sub_klass,
twisti@4318 4036 Register super_klass,
twisti@4318 4037 Register temp_reg,
twisti@4318 4038 Label& L_success) {
twisti@4318 4039 Label L_failure;
twisti@4318 4040 check_klass_subtype_fast_path(sub_klass, super_klass, temp_reg, &L_success, &L_failure, NULL);
twisti@4318 4041 check_klass_subtype_slow_path(sub_klass, super_klass, temp_reg, noreg, &L_success, NULL);
twisti@4318 4042 bind(L_failure);
twisti@4318 4043 }
twisti@4318 4044
twisti@4318 4045
twisti@4318 4046 void MacroAssembler::check_klass_subtype_fast_path(Register sub_klass,
twisti@4318 4047 Register super_klass,
twisti@4318 4048 Register temp_reg,
twisti@4318 4049 Label* L_success,
twisti@4318 4050 Label* L_failure,
twisti@4318 4051 Label* L_slow_path,
twisti@4318 4052 RegisterOrConstant super_check_offset) {
twisti@4318 4053 assert_different_registers(sub_klass, super_klass, temp_reg);
twisti@4318 4054 bool must_load_sco = (super_check_offset.constant_or_zero() == -1);
twisti@4318 4055 if (super_check_offset.is_register()) {
twisti@4318 4056 assert_different_registers(sub_klass, super_klass,
twisti@4318 4057 super_check_offset.as_register());
twisti@4318 4058 } else if (must_load_sco) {
twisti@4318 4059 assert(temp_reg != noreg, "supply either a temp or a register offset");
twisti@4318 4060 }
twisti@4318 4061
twisti@4318 4062 Label L_fallthrough;
twisti@4318 4063 int label_nulls = 0;
twisti@4318 4064 if (L_success == NULL) { L_success = &L_fallthrough; label_nulls++; }
twisti@4318 4065 if (L_failure == NULL) { L_failure = &L_fallthrough; label_nulls++; }
twisti@4318 4066 if (L_slow_path == NULL) { L_slow_path = &L_fallthrough; label_nulls++; }
twisti@4318 4067 assert(label_nulls <= 1, "at most one NULL in the batch");
twisti@4318 4068
twisti@4318 4069 int sc_offset = in_bytes(Klass::secondary_super_cache_offset());
twisti@4318 4070 int sco_offset = in_bytes(Klass::super_check_offset_offset());
twisti@4318 4071 Address super_check_offset_addr(super_klass, sco_offset);
twisti@4318 4072
twisti@4318 4073 // Hacked jcc, which "knows" that L_fallthrough, at least, is in
twisti@4318 4074 // range of a jccb. If this routine grows larger, reconsider at
twisti@4318 4075 // least some of these.
twisti@4318 4076 #define local_jcc(assembler_cond, label) \
twisti@4318 4077 if (&(label) == &L_fallthrough) jccb(assembler_cond, label); \
twisti@4318 4078 else jcc( assembler_cond, label) /*omit semi*/
twisti@4318 4079
twisti@4318 4080 // Hacked jmp, which may only be used just before L_fallthrough.
twisti@4318 4081 #define final_jmp(label) \
twisti@4318 4082 if (&(label) == &L_fallthrough) { /*do nothing*/ } \
twisti@4318 4083 else jmp(label) /*omit semi*/
twisti@4318 4084
twisti@4318 4085 // If the pointers are equal, we are done (e.g., String[] elements).
twisti@4318 4086 // This self-check enables sharing of secondary supertype arrays among
twisti@4318 4087 // non-primary types such as array-of-interface. Otherwise, each such
twisti@4318 4088 // type would need its own customized SSA.
twisti@4318 4089 // We move this check to the front of the fast path because many
twisti@4318 4090 // type checks are in fact trivially successful in this manner,
twisti@4318 4091 // so we get a nicely predicted branch right at the start of the check.
twisti@4318 4092 cmpptr(sub_klass, super_klass);
twisti@4318 4093 local_jcc(Assembler::equal, *L_success);
twisti@4318 4094
twisti@4318 4095 // Check the supertype display:
twisti@4318 4096 if (must_load_sco) {
twisti@4318 4097 // Positive movl does right thing on LP64.
twisti@4318 4098 movl(temp_reg, super_check_offset_addr);
twisti@4318 4099 super_check_offset = RegisterOrConstant(temp_reg);
twisti@4318 4100 }
twisti@4318 4101 Address super_check_addr(sub_klass, super_check_offset, Address::times_1, 0);
twisti@4318 4102 cmpptr(super_klass, super_check_addr); // load displayed supertype
twisti@4318 4103
twisti@4318 4104 // This check has worked decisively for primary supers.
twisti@4318 4105 // Secondary supers are sought in the super_cache ('super_cache_addr').
twisti@4318 4106 // (Secondary supers are interfaces and very deeply nested subtypes.)
twisti@4318 4107 // This works in the same check above because of a tricky aliasing
twisti@4318 4108 // between the super_cache and the primary super display elements.
twisti@4318 4109 // (The 'super_check_addr' can address either, as the case requires.)
twisti@4318 4110 // Note that the cache is updated below if it does not help us find
twisti@4318 4111 // what we need immediately.
twisti@4318 4112 // So if it was a primary super, we can just fail immediately.
twisti@4318 4113 // Otherwise, it's the slow path for us (no success at this point).
twisti@4318 4114
twisti@4318 4115 if (super_check_offset.is_register()) {
twisti@4318 4116 local_jcc(Assembler::equal, *L_success);
twisti@4318 4117 cmpl(super_check_offset.as_register(), sc_offset);
twisti@4318 4118 if (L_failure == &L_fallthrough) {
twisti@4318 4119 local_jcc(Assembler::equal, *L_slow_path);
twisti@4318 4120 } else {
twisti@4318 4121 local_jcc(Assembler::notEqual, *L_failure);
twisti@4318 4122 final_jmp(*L_slow_path);
twisti@4318 4123 }
twisti@4318 4124 } else if (super_check_offset.as_constant() == sc_offset) {
twisti@4318 4125 // Need a slow path; fast failure is impossible.
twisti@4318 4126 if (L_slow_path == &L_fallthrough) {
twisti@4318 4127 local_jcc(Assembler::equal, *L_success);
twisti@4318 4128 } else {
twisti@4318 4129 local_jcc(Assembler::notEqual, *L_slow_path);
twisti@4318 4130 final_jmp(*L_success);
twisti@4318 4131 }
twisti@4318 4132 } else {
twisti@4318 4133 // No slow path; it's a fast decision.
twisti@4318 4134 if (L_failure == &L_fallthrough) {
twisti@4318 4135 local_jcc(Assembler::equal, *L_success);
twisti@4318 4136 } else {
twisti@4318 4137 local_jcc(Assembler::notEqual, *L_failure);
twisti@4318 4138 final_jmp(*L_success);
twisti@4318 4139 }
twisti@4318 4140 }
twisti@4318 4141
twisti@4318 4142 bind(L_fallthrough);
twisti@4318 4143
twisti@4318 4144 #undef local_jcc
twisti@4318 4145 #undef final_jmp
twisti@4318 4146 }
twisti@4318 4147
twisti@4318 4148
twisti@4318 4149 void MacroAssembler::check_klass_subtype_slow_path(Register sub_klass,
twisti@4318 4150 Register super_klass,
twisti@4318 4151 Register temp_reg,
twisti@4318 4152 Register temp2_reg,
twisti@4318 4153 Label* L_success,
twisti@4318 4154 Label* L_failure,
twisti@4318 4155 bool set_cond_codes) {
twisti@4318 4156 assert_different_registers(sub_klass, super_klass, temp_reg);
twisti@4318 4157 if (temp2_reg != noreg)
twisti@4318 4158 assert_different_registers(sub_klass, super_klass, temp_reg, temp2_reg);
twisti@4318 4159 #define IS_A_TEMP(reg) ((reg) == temp_reg || (reg) == temp2_reg)
twisti@4318 4160
twisti@4318 4161 Label L_fallthrough;
twisti@4318 4162 int label_nulls = 0;
twisti@4318 4163 if (L_success == NULL) { L_success = &L_fallthrough; label_nulls++; }
twisti@4318 4164 if (L_failure == NULL) { L_failure = &L_fallthrough; label_nulls++; }
twisti@4318 4165 assert(label_nulls <= 1, "at most one NULL in the batch");
twisti@4318 4166
twisti@4318 4167 // a couple of useful fields in sub_klass:
twisti@4318 4168 int ss_offset = in_bytes(Klass::secondary_supers_offset());
twisti@4318 4169 int sc_offset = in_bytes(Klass::secondary_super_cache_offset());
twisti@4318 4170 Address secondary_supers_addr(sub_klass, ss_offset);
twisti@4318 4171 Address super_cache_addr( sub_klass, sc_offset);
twisti@4318 4172
twisti@4318 4173 // Do a linear scan of the secondary super-klass chain.
twisti@4318 4174 // This code is rarely used, so simplicity is a virtue here.
twisti@4318 4175 // The repne_scan instruction uses fixed registers, which we must spill.
twisti@4318 4176 // Don't worry too much about pre-existing connections with the input regs.
twisti@4318 4177
twisti@4318 4178 assert(sub_klass != rax, "killed reg"); // killed by mov(rax, super)
twisti@4318 4179 assert(sub_klass != rcx, "killed reg"); // killed by lea(rcx, &pst_counter)
twisti@4318 4180
twisti@4318 4181 // Get super_klass value into rax (even if it was in rdi or rcx).
twisti@4318 4182 bool pushed_rax = false, pushed_rcx = false, pushed_rdi = false;
twisti@4318 4183 if (super_klass != rax || UseCompressedOops) {
twisti@4318 4184 if (!IS_A_TEMP(rax)) { push(rax); pushed_rax = true; }
twisti@4318 4185 mov(rax, super_klass);
twisti@4318 4186 }
twisti@4318 4187 if (!IS_A_TEMP(rcx)) { push(rcx); pushed_rcx = true; }
twisti@4318 4188 if (!IS_A_TEMP(rdi)) { push(rdi); pushed_rdi = true; }
twisti@4318 4189
twisti@4318 4190 #ifndef PRODUCT
twisti@4318 4191 int* pst_counter = &SharedRuntime::_partial_subtype_ctr;
twisti@4318 4192 ExternalAddress pst_counter_addr((address) pst_counter);
twisti@4318 4193 NOT_LP64( incrementl(pst_counter_addr) );
twisti@4318 4194 LP64_ONLY( lea(rcx, pst_counter_addr) );
twisti@4318 4195 LP64_ONLY( incrementl(Address(rcx, 0)) );
twisti@4318 4196 #endif //PRODUCT
twisti@4318 4197
twisti@4318 4198 // We will consult the secondary-super array.
twisti@4318 4199 movptr(rdi, secondary_supers_addr);
twisti@4318 4200 // Load the array length. (Positive movl does right thing on LP64.)
twisti@4318 4201 movl(rcx, Address(rdi, Array<Klass*>::length_offset_in_bytes()));
twisti@4318 4202 // Skip to start of data.
twisti@4318 4203 addptr(rdi, Array<Klass*>::base_offset_in_bytes());
twisti@4318 4204
twisti@4318 4205 // Scan RCX words at [RDI] for an occurrence of RAX.
twisti@4318 4206 // Set NZ/Z based on last compare.
twisti@4318 4207 // Z flag value will not be set by 'repne' if RCX == 0 since 'repne' does
twisti@4318 4208 // not change flags (only scas instruction which is repeated sets flags).
twisti@4318 4209 // Set Z = 0 (not equal) before 'repne' to indicate that class was not found.
twisti@4318 4210
twisti@4318 4211 testptr(rax,rax); // Set Z = 0
twisti@4318 4212 repne_scan();
twisti@4318 4213
twisti@4318 4214 // Unspill the temp. registers:
twisti@4318 4215 if (pushed_rdi) pop(rdi);
twisti@4318 4216 if (pushed_rcx) pop(rcx);
twisti@4318 4217 if (pushed_rax) pop(rax);
twisti@4318 4218
twisti@4318 4219 if (set_cond_codes) {
twisti@4318 4220 // Special hack for the AD files: rdi is guaranteed non-zero.
twisti@4318 4221 assert(!pushed_rdi, "rdi must be left non-NULL");
twisti@4318 4222 // Also, the condition codes are properly set Z/NZ on succeed/failure.
twisti@4318 4223 }
twisti@4318 4224
twisti@4318 4225 if (L_failure == &L_fallthrough)
twisti@4318 4226 jccb(Assembler::notEqual, *L_failure);
twisti@4318 4227 else jcc(Assembler::notEqual, *L_failure);
twisti@4318 4228
twisti@4318 4229 // Success. Cache the super we found and proceed in triumph.
twisti@4318 4230 movptr(super_cache_addr, super_klass);
twisti@4318 4231
twisti@4318 4232 if (L_success != &L_fallthrough) {
twisti@4318 4233 jmp(*L_success);
twisti@4318 4234 }
twisti@4318 4235
twisti@4318 4236 #undef IS_A_TEMP
twisti@4318 4237
twisti@4318 4238 bind(L_fallthrough);
twisti@4318 4239 }
twisti@4318 4240
twisti@4318 4241
twisti@4318 4242 void MacroAssembler::cmov32(Condition cc, Register dst, Address src) {
twisti@4318 4243 if (VM_Version::supports_cmov()) {
twisti@4318 4244 cmovl(cc, dst, src);
twisti@4318 4245 } else {
twisti@4318 4246 Label L;
twisti@4318 4247 jccb(negate_condition(cc), L);
twisti@4318 4248 movl(dst, src);
twisti@4318 4249 bind(L);
twisti@4318 4250 }
twisti@4318 4251 }
twisti@4318 4252
twisti@4318 4253 void MacroAssembler::cmov32(Condition cc, Register dst, Register src) {
twisti@4318 4254 if (VM_Version::supports_cmov()) {
twisti@4318 4255 cmovl(cc, dst, src);
twisti@4318 4256 } else {
twisti@4318 4257 Label L;
twisti@4318 4258 jccb(negate_condition(cc), L);
twisti@4318 4259 movl(dst, src);
twisti@4318 4260 bind(L);
twisti@4318 4261 }
twisti@4318 4262 }
twisti@4318 4263
twisti@4318 4264 void MacroAssembler::verify_oop(Register reg, const char* s) {
twisti@4318 4265 if (!VerifyOops) return;
twisti@4318 4266
twisti@4318 4267 // Pass register number to verify_oop_subroutine
roland@4767 4268 const char* b = NULL;
roland@4767 4269 {
roland@4767 4270 ResourceMark rm;
roland@4767 4271 stringStream ss;
roland@4767 4272 ss.print("verify_oop: %s: %s", reg->name(), s);
roland@4767 4273 b = code_string(ss.as_string());
roland@4767 4274 }
twisti@4318 4275 BLOCK_COMMENT("verify_oop {");
twisti@4318 4276 #ifdef _LP64
twisti@4318 4277 push(rscratch1); // save r10, trashed by movptr()
twisti@4318 4278 #endif
twisti@4318 4279 push(rax); // save rax,
twisti@4318 4280 push(reg); // pass register argument
twisti@4318 4281 ExternalAddress buffer((address) b);
twisti@4318 4282 // avoid using pushptr, as it modifies scratch registers
twisti@4318 4283 // and our contract is not to modify anything
twisti@4318 4284 movptr(rax, buffer.addr());
twisti@4318 4285 push(rax);
twisti@4318 4286 // call indirectly to solve generation ordering problem
twisti@4318 4287 movptr(rax, ExternalAddress(StubRoutines::verify_oop_subroutine_entry_address()));
twisti@4318 4288 call(rax);
twisti@4318 4289 // Caller pops the arguments (oop, message) and restores rax, r10
twisti@4318 4290 BLOCK_COMMENT("} verify_oop");
twisti@4318 4291 }
twisti@4318 4292
twisti@4318 4293
twisti@4318 4294 RegisterOrConstant MacroAssembler::delayed_value_impl(intptr_t* delayed_value_addr,
twisti@4318 4295 Register tmp,
twisti@4318 4296 int offset) {
twisti@4318 4297 intptr_t value = *delayed_value_addr;
twisti@4318 4298 if (value != 0)
twisti@4318 4299 return RegisterOrConstant(value + offset);
twisti@4318 4300
twisti@4318 4301 // load indirectly to solve generation ordering problem
twisti@4318 4302 movptr(tmp, ExternalAddress((address) delayed_value_addr));
twisti@4318 4303
twisti@4318 4304 #ifdef ASSERT
twisti@4318 4305 { Label L;
twisti@4318 4306 testptr(tmp, tmp);
twisti@4318 4307 if (WizardMode) {
roland@4767 4308 const char* buf = NULL;
roland@4767 4309 {
roland@4767 4310 ResourceMark rm;
roland@4767 4311 stringStream ss;
roland@4767 4312 ss.print("DelayedValue="INTPTR_FORMAT, delayed_value_addr[1]);
roland@4767 4313 buf = code_string(ss.as_string());
roland@4767 4314 }
twisti@4318 4315 jcc(Assembler::notZero, L);
twisti@4318 4316 STOP(buf);
twisti@4318 4317 } else {
twisti@4318 4318 jccb(Assembler::notZero, L);
twisti@4318 4319 hlt();
twisti@4318 4320 }
twisti@4318 4321 bind(L);
twisti@4318 4322 }
twisti@4318 4323 #endif
twisti@4318 4324
twisti@4318 4325 if (offset != 0)
twisti@4318 4326 addptr(tmp, offset);
twisti@4318 4327
twisti@4318 4328 return RegisterOrConstant(tmp);
twisti@4318 4329 }
twisti@4318 4330
twisti@4318 4331
twisti@4318 4332 Address MacroAssembler::argument_address(RegisterOrConstant arg_slot,
twisti@4318 4333 int extra_slot_offset) {
twisti@4318 4334 // cf. TemplateTable::prepare_invoke(), if (load_receiver).
twisti@4318 4335 int stackElementSize = Interpreter::stackElementSize;
twisti@4318 4336 int offset = Interpreter::expr_offset_in_bytes(extra_slot_offset+0);
twisti@4318 4337 #ifdef ASSERT
twisti@4318 4338 int offset1 = Interpreter::expr_offset_in_bytes(extra_slot_offset+1);
twisti@4318 4339 assert(offset1 - offset == stackElementSize, "correct arithmetic");
twisti@4318 4340 #endif
twisti@4318 4341 Register scale_reg = noreg;
twisti@4318 4342 Address::ScaleFactor scale_factor = Address::no_scale;
twisti@4318 4343 if (arg_slot.is_constant()) {
twisti@4318 4344 offset += arg_slot.as_constant() * stackElementSize;
twisti@4318 4345 } else {
twisti@4318 4346 scale_reg = arg_slot.as_register();
twisti@4318 4347 scale_factor = Address::times(stackElementSize);
twisti@4318 4348 }
twisti@4318 4349 offset += wordSize; // return PC is on stack
twisti@4318 4350 return Address(rsp, scale_reg, scale_factor, offset);
twisti@4318 4351 }
twisti@4318 4352
twisti@4318 4353
twisti@4318 4354 void MacroAssembler::verify_oop_addr(Address addr, const char* s) {
twisti@4318 4355 if (!VerifyOops) return;
twisti@4318 4356
twisti@4318 4357 // Address adjust(addr.base(), addr.index(), addr.scale(), addr.disp() + BytesPerWord);
twisti@4318 4358 // Pass register number to verify_oop_subroutine
roland@4767 4359 const char* b = NULL;
roland@4767 4360 {
roland@4767 4361 ResourceMark rm;
roland@4767 4362 stringStream ss;
roland@4767 4363 ss.print("verify_oop_addr: %s", s);
roland@4767 4364 b = code_string(ss.as_string());
roland@4767 4365 }
twisti@4318 4366 #ifdef _LP64
twisti@4318 4367 push(rscratch1); // save r10, trashed by movptr()
twisti@4318 4368 #endif
twisti@4318 4369 push(rax); // save rax,
twisti@4318 4370 // addr may contain rsp so we will have to adjust it based on the push
twisti@4318 4371 // we just did (and on 64 bit we do two pushes)
twisti@4318 4372 // NOTE: 64bit seemed to have had a bug in that it did movq(addr, rax); which
twisti@4318 4373 // stores rax into addr which is backwards of what was intended.
twisti@4318 4374 if (addr.uses(rsp)) {
twisti@4318 4375 lea(rax, addr);
twisti@4318 4376 pushptr(Address(rax, LP64_ONLY(2 *) BytesPerWord));
twisti@4318 4377 } else {
twisti@4318 4378 pushptr(addr);
twisti@4318 4379 }
twisti@4318 4380
twisti@4318 4381 ExternalAddress buffer((address) b);
twisti@4318 4382 // pass msg argument
twisti@4318 4383 // avoid using pushptr, as it modifies scratch registers
twisti@4318 4384 // and our contract is not to modify anything
twisti@4318 4385 movptr(rax, buffer.addr());
twisti@4318 4386 push(rax);
twisti@4318 4387
twisti@4318 4388 // call indirectly to solve generation ordering problem
twisti@4318 4389 movptr(rax, ExternalAddress(StubRoutines::verify_oop_subroutine_entry_address()));
twisti@4318 4390 call(rax);
twisti@4318 4391 // Caller pops the arguments (addr, message) and restores rax, r10.
twisti@4318 4392 }
twisti@4318 4393
twisti@4318 4394 void MacroAssembler::verify_tlab() {
twisti@4318 4395 #ifdef ASSERT
twisti@4318 4396 if (UseTLAB && VerifyOops) {
twisti@4318 4397 Label next, ok;
twisti@4318 4398 Register t1 = rsi;
twisti@4318 4399 Register thread_reg = NOT_LP64(rbx) LP64_ONLY(r15_thread);
twisti@4318 4400
twisti@4318 4401 push(t1);
twisti@4318 4402 NOT_LP64(push(thread_reg));
twisti@4318 4403 NOT_LP64(get_thread(thread_reg));
twisti@4318 4404
twisti@4318 4405 movptr(t1, Address(thread_reg, in_bytes(JavaThread::tlab_top_offset())));
twisti@4318 4406 cmpptr(t1, Address(thread_reg, in_bytes(JavaThread::tlab_start_offset())));
twisti@4318 4407 jcc(Assembler::aboveEqual, next);
twisti@4318 4408 STOP("assert(top >= start)");
twisti@4318 4409 should_not_reach_here();
twisti@4318 4410
twisti@4318 4411 bind(next);
twisti@4318 4412 movptr(t1, Address(thread_reg, in_bytes(JavaThread::tlab_end_offset())));
twisti@4318 4413 cmpptr(t1, Address(thread_reg, in_bytes(JavaThread::tlab_top_offset())));
twisti@4318 4414 jcc(Assembler::aboveEqual, ok);
twisti@4318 4415 STOP("assert(top <= end)");
twisti@4318 4416 should_not_reach_here();
twisti@4318 4417
twisti@4318 4418 bind(ok);
twisti@4318 4419 NOT_LP64(pop(thread_reg));
twisti@4318 4420 pop(t1);
twisti@4318 4421 }
twisti@4318 4422 #endif
twisti@4318 4423 }
twisti@4318 4424
twisti@4318 4425 class ControlWord {
twisti@4318 4426 public:
twisti@4318 4427 int32_t _value;
twisti@4318 4428
twisti@4318 4429 int rounding_control() const { return (_value >> 10) & 3 ; }
twisti@4318 4430 int precision_control() const { return (_value >> 8) & 3 ; }
twisti@4318 4431 bool precision() const { return ((_value >> 5) & 1) != 0; }
twisti@4318 4432 bool underflow() const { return ((_value >> 4) & 1) != 0; }
twisti@4318 4433 bool overflow() const { return ((_value >> 3) & 1) != 0; }
twisti@4318 4434 bool zero_divide() const { return ((_value >> 2) & 1) != 0; }
twisti@4318 4435 bool denormalized() const { return ((_value >> 1) & 1) != 0; }
twisti@4318 4436 bool invalid() const { return ((_value >> 0) & 1) != 0; }
twisti@4318 4437
twisti@4318 4438 void print() const {
twisti@4318 4439 // rounding control
twisti@4318 4440 const char* rc;
twisti@4318 4441 switch (rounding_control()) {
twisti@4318 4442 case 0: rc = "round near"; break;
twisti@4318 4443 case 1: rc = "round down"; break;
twisti@4318 4444 case 2: rc = "round up "; break;
twisti@4318 4445 case 3: rc = "chop "; break;
twisti@4318 4446 };
twisti@4318 4447 // precision control
twisti@4318 4448 const char* pc;
twisti@4318 4449 switch (precision_control()) {
twisti@4318 4450 case 0: pc = "24 bits "; break;
twisti@4318 4451 case 1: pc = "reserved"; break;
twisti@4318 4452 case 2: pc = "53 bits "; break;
twisti@4318 4453 case 3: pc = "64 bits "; break;
twisti@4318 4454 };
twisti@4318 4455 // flags
twisti@4318 4456 char f[9];
twisti@4318 4457 f[0] = ' ';
twisti@4318 4458 f[1] = ' ';
twisti@4318 4459 f[2] = (precision ()) ? 'P' : 'p';
twisti@4318 4460 f[3] = (underflow ()) ? 'U' : 'u';
twisti@4318 4461 f[4] = (overflow ()) ? 'O' : 'o';
twisti@4318 4462 f[5] = (zero_divide ()) ? 'Z' : 'z';
twisti@4318 4463 f[6] = (denormalized()) ? 'D' : 'd';
twisti@4318 4464 f[7] = (invalid ()) ? 'I' : 'i';
twisti@4318 4465 f[8] = '\x0';
twisti@4318 4466 // output
twisti@4318 4467 printf("%04x masks = %s, %s, %s", _value & 0xFFFF, f, rc, pc);
twisti@4318 4468 }
twisti@4318 4469
twisti@4318 4470 };
twisti@4318 4471
twisti@4318 4472 class StatusWord {
twisti@4318 4473 public:
twisti@4318 4474 int32_t _value;
twisti@4318 4475
twisti@4318 4476 bool busy() const { return ((_value >> 15) & 1) != 0; }
twisti@4318 4477 bool C3() const { return ((_value >> 14) & 1) != 0; }
twisti@4318 4478 bool C2() const { return ((_value >> 10) & 1) != 0; }
twisti@4318 4479 bool C1() const { return ((_value >> 9) & 1) != 0; }
twisti@4318 4480 bool C0() const { return ((_value >> 8) & 1) != 0; }
twisti@4318 4481 int top() const { return (_value >> 11) & 7 ; }
twisti@4318 4482 bool error_status() const { return ((_value >> 7) & 1) != 0; }
twisti@4318 4483 bool stack_fault() const { return ((_value >> 6) & 1) != 0; }
twisti@4318 4484 bool precision() const { return ((_value >> 5) & 1) != 0; }
twisti@4318 4485 bool underflow() const { return ((_value >> 4) & 1) != 0; }
twisti@4318 4486 bool overflow() const { return ((_value >> 3) & 1) != 0; }
twisti@4318 4487 bool zero_divide() const { return ((_value >> 2) & 1) != 0; }
twisti@4318 4488 bool denormalized() const { return ((_value >> 1) & 1) != 0; }
twisti@4318 4489 bool invalid() const { return ((_value >> 0) & 1) != 0; }
twisti@4318 4490
twisti@4318 4491 void print() const {
twisti@4318 4492 // condition codes
twisti@4318 4493 char c[5];
twisti@4318 4494 c[0] = (C3()) ? '3' : '-';
twisti@4318 4495 c[1] = (C2()) ? '2' : '-';
twisti@4318 4496 c[2] = (C1()) ? '1' : '-';
twisti@4318 4497 c[3] = (C0()) ? '0' : '-';
twisti@4318 4498 c[4] = '\x0';
twisti@4318 4499 // flags
twisti@4318 4500 char f[9];
twisti@4318 4501 f[0] = (error_status()) ? 'E' : '-';
twisti@4318 4502 f[1] = (stack_fault ()) ? 'S' : '-';
twisti@4318 4503 f[2] = (precision ()) ? 'P' : '-';
twisti@4318 4504 f[3] = (underflow ()) ? 'U' : '-';
twisti@4318 4505 f[4] = (overflow ()) ? 'O' : '-';
twisti@4318 4506 f[5] = (zero_divide ()) ? 'Z' : '-';
twisti@4318 4507 f[6] = (denormalized()) ? 'D' : '-';
twisti@4318 4508 f[7] = (invalid ()) ? 'I' : '-';
twisti@4318 4509 f[8] = '\x0';
twisti@4318 4510 // output
twisti@4318 4511 printf("%04x flags = %s, cc = %s, top = %d", _value & 0xFFFF, f, c, top());
twisti@4318 4512 }
twisti@4318 4513
twisti@4318 4514 };
twisti@4318 4515
twisti@4318 4516 class TagWord {
twisti@4318 4517 public:
twisti@4318 4518 int32_t _value;
twisti@4318 4519
twisti@4318 4520 int tag_at(int i) const { return (_value >> (i*2)) & 3; }
twisti@4318 4521
twisti@4318 4522 void print() const {
twisti@4318 4523 printf("%04x", _value & 0xFFFF);
twisti@4318 4524 }
twisti@4318 4525
twisti@4318 4526 };
twisti@4318 4527
twisti@4318 4528 class FPU_Register {
twisti@4318 4529 public:
twisti@4318 4530 int32_t _m0;
twisti@4318 4531 int32_t _m1;
twisti@4318 4532 int16_t _ex;
twisti@4318 4533
twisti@4318 4534 bool is_indefinite() const {
twisti@4318 4535 return _ex == -1 && _m1 == (int32_t)0xC0000000 && _m0 == 0;
twisti@4318 4536 }
twisti@4318 4537
twisti@4318 4538 void print() const {
twisti@4318 4539 char sign = (_ex < 0) ? '-' : '+';
twisti@4318 4540 const char* kind = (_ex == 0x7FFF || _ex == (int16_t)-1) ? "NaN" : " ";
twisti@4318 4541 printf("%c%04hx.%08x%08x %s", sign, _ex, _m1, _m0, kind);
twisti@4318 4542 };
twisti@4318 4543
twisti@4318 4544 };
twisti@4318 4545
twisti@4318 4546 class FPU_State {
twisti@4318 4547 public:
twisti@4318 4548 enum {
twisti@4318 4549 register_size = 10,
twisti@4318 4550 number_of_registers = 8,
twisti@4318 4551 register_mask = 7
twisti@4318 4552 };
twisti@4318 4553
twisti@4318 4554 ControlWord _control_word;
twisti@4318 4555 StatusWord _status_word;
twisti@4318 4556 TagWord _tag_word;
twisti@4318 4557 int32_t _error_offset;
twisti@4318 4558 int32_t _error_selector;
twisti@4318 4559 int32_t _data_offset;
twisti@4318 4560 int32_t _data_selector;
twisti@4318 4561 int8_t _register[register_size * number_of_registers];
twisti@4318 4562
twisti@4318 4563 int tag_for_st(int i) const { return _tag_word.tag_at((_status_word.top() + i) & register_mask); }
twisti@4318 4564 FPU_Register* st(int i) const { return (FPU_Register*)&_register[register_size * i]; }
twisti@4318 4565
twisti@4318 4566 const char* tag_as_string(int tag) const {
twisti@4318 4567 switch (tag) {
twisti@4318 4568 case 0: return "valid";
twisti@4318 4569 case 1: return "zero";
twisti@4318 4570 case 2: return "special";
twisti@4318 4571 case 3: return "empty";
twisti@4318 4572 }
twisti@4318 4573 ShouldNotReachHere();
twisti@4318 4574 return NULL;
twisti@4318 4575 }
twisti@4318 4576
twisti@4318 4577 void print() const {
twisti@4318 4578 // print computation registers
twisti@4318 4579 { int t = _status_word.top();
twisti@4318 4580 for (int i = 0; i < number_of_registers; i++) {
twisti@4318 4581 int j = (i - t) & register_mask;
twisti@4318 4582 printf("%c r%d = ST%d = ", (j == 0 ? '*' : ' '), i, j);
twisti@4318 4583 st(j)->print();
twisti@4318 4584 printf(" %s\n", tag_as_string(_tag_word.tag_at(i)));
twisti@4318 4585 }
twisti@4318 4586 }
twisti@4318 4587 printf("\n");
twisti@4318 4588 // print control registers
twisti@4318 4589 printf("ctrl = "); _control_word.print(); printf("\n");
twisti@4318 4590 printf("stat = "); _status_word .print(); printf("\n");
twisti@4318 4591 printf("tags = "); _tag_word .print(); printf("\n");
twisti@4318 4592 }
twisti@4318 4593
twisti@4318 4594 };
twisti@4318 4595
twisti@4318 4596 class Flag_Register {
twisti@4318 4597 public:
twisti@4318 4598 int32_t _value;
twisti@4318 4599
twisti@4318 4600 bool overflow() const { return ((_value >> 11) & 1) != 0; }
twisti@4318 4601 bool direction() const { return ((_value >> 10) & 1) != 0; }
twisti@4318 4602 bool sign() const { return ((_value >> 7) & 1) != 0; }
twisti@4318 4603 bool zero() const { return ((_value >> 6) & 1) != 0; }
twisti@4318 4604 bool auxiliary_carry() const { return ((_value >> 4) & 1) != 0; }
twisti@4318 4605 bool parity() const { return ((_value >> 2) & 1) != 0; }
twisti@4318 4606 bool carry() const { return ((_value >> 0) & 1) != 0; }
twisti@4318 4607
twisti@4318 4608 void print() const {
twisti@4318 4609 // flags
twisti@4318 4610 char f[8];
twisti@4318 4611 f[0] = (overflow ()) ? 'O' : '-';
twisti@4318 4612 f[1] = (direction ()) ? 'D' : '-';
twisti@4318 4613 f[2] = (sign ()) ? 'S' : '-';
twisti@4318 4614 f[3] = (zero ()) ? 'Z' : '-';
twisti@4318 4615 f[4] = (auxiliary_carry()) ? 'A' : '-';
twisti@4318 4616 f[5] = (parity ()) ? 'P' : '-';
twisti@4318 4617 f[6] = (carry ()) ? 'C' : '-';
twisti@4318 4618 f[7] = '\x0';
twisti@4318 4619 // output
twisti@4318 4620 printf("%08x flags = %s", _value, f);
twisti@4318 4621 }
twisti@4318 4622
twisti@4318 4623 };
twisti@4318 4624
twisti@4318 4625 class IU_Register {
twisti@4318 4626 public:
twisti@4318 4627 int32_t _value;
twisti@4318 4628
twisti@4318 4629 void print() const {
twisti@4318 4630 printf("%08x %11d", _value, _value);
twisti@4318 4631 }
twisti@4318 4632
twisti@4318 4633 };
twisti@4318 4634
twisti@4318 4635 class IU_State {
twisti@4318 4636 public:
twisti@4318 4637 Flag_Register _eflags;
twisti@4318 4638 IU_Register _rdi;
twisti@4318 4639 IU_Register _rsi;
twisti@4318 4640 IU_Register _rbp;
twisti@4318 4641 IU_Register _rsp;
twisti@4318 4642 IU_Register _rbx;
twisti@4318 4643 IU_Register _rdx;
twisti@4318 4644 IU_Register _rcx;
twisti@4318 4645 IU_Register _rax;
twisti@4318 4646
twisti@4318 4647 void print() const {
twisti@4318 4648 // computation registers
twisti@4318 4649 printf("rax, = "); _rax.print(); printf("\n");
twisti@4318 4650 printf("rbx, = "); _rbx.print(); printf("\n");
twisti@4318 4651 printf("rcx = "); _rcx.print(); printf("\n");
twisti@4318 4652 printf("rdx = "); _rdx.print(); printf("\n");
twisti@4318 4653 printf("rdi = "); _rdi.print(); printf("\n");
twisti@4318 4654 printf("rsi = "); _rsi.print(); printf("\n");
twisti@4318 4655 printf("rbp, = "); _rbp.print(); printf("\n");
twisti@4318 4656 printf("rsp = "); _rsp.print(); printf("\n");
twisti@4318 4657 printf("\n");
twisti@4318 4658 // control registers
twisti@4318 4659 printf("flgs = "); _eflags.print(); printf("\n");
twisti@4318 4660 }
twisti@4318 4661 };
twisti@4318 4662
twisti@4318 4663
twisti@4318 4664 class CPU_State {
twisti@4318 4665 public:
twisti@4318 4666 FPU_State _fpu_state;
twisti@4318 4667 IU_State _iu_state;
twisti@4318 4668
twisti@4318 4669 void print() const {
twisti@4318 4670 printf("--------------------------------------------------\n");
twisti@4318 4671 _iu_state .print();
twisti@4318 4672 printf("\n");
twisti@4318 4673 _fpu_state.print();
twisti@4318 4674 printf("--------------------------------------------------\n");
twisti@4318 4675 }
twisti@4318 4676
twisti@4318 4677 };
twisti@4318 4678
twisti@4318 4679
twisti@4318 4680 static void _print_CPU_state(CPU_State* state) {
twisti@4318 4681 state->print();
twisti@4318 4682 };
twisti@4318 4683
twisti@4318 4684
twisti@4318 4685 void MacroAssembler::print_CPU_state() {
twisti@4318 4686 push_CPU_state();
twisti@4318 4687 push(rsp); // pass CPU state
twisti@4318 4688 call(RuntimeAddress(CAST_FROM_FN_PTR(address, _print_CPU_state)));
twisti@4318 4689 addptr(rsp, wordSize); // discard argument
twisti@4318 4690 pop_CPU_state();
twisti@4318 4691 }
twisti@4318 4692
twisti@4318 4693
twisti@4318 4694 static bool _verify_FPU(int stack_depth, char* s, CPU_State* state) {
twisti@4318 4695 static int counter = 0;
twisti@4318 4696 FPU_State* fs = &state->_fpu_state;
twisti@4318 4697 counter++;
twisti@4318 4698 // For leaf calls, only verify that the top few elements remain empty.
twisti@4318 4699 // We only need 1 empty at the top for C2 code.
twisti@4318 4700 if( stack_depth < 0 ) {
twisti@4318 4701 if( fs->tag_for_st(7) != 3 ) {
twisti@4318 4702 printf("FPR7 not empty\n");
twisti@4318 4703 state->print();
twisti@4318 4704 assert(false, "error");
twisti@4318 4705 return false;
twisti@4318 4706 }
twisti@4318 4707 return true; // All other stack states do not matter
twisti@4318 4708 }
twisti@4318 4709
twisti@4318 4710 assert((fs->_control_word._value & 0xffff) == StubRoutines::_fpu_cntrl_wrd_std,
twisti@4318 4711 "bad FPU control word");
twisti@4318 4712
twisti@4318 4713 // compute stack depth
twisti@4318 4714 int i = 0;
twisti@4318 4715 while (i < FPU_State::number_of_registers && fs->tag_for_st(i) < 3) i++;
twisti@4318 4716 int d = i;
twisti@4318 4717 while (i < FPU_State::number_of_registers && fs->tag_for_st(i) == 3) i++;
twisti@4318 4718 // verify findings
twisti@4318 4719 if (i != FPU_State::number_of_registers) {
twisti@4318 4720 // stack not contiguous
twisti@4318 4721 printf("%s: stack not contiguous at ST%d\n", s, i);
twisti@4318 4722 state->print();
twisti@4318 4723 assert(false, "error");
twisti@4318 4724 return false;
twisti@4318 4725 }
twisti@4318 4726 // check if computed stack depth corresponds to expected stack depth
twisti@4318 4727 if (stack_depth < 0) {
twisti@4318 4728 // expected stack depth is -stack_depth or less
twisti@4318 4729 if (d > -stack_depth) {
twisti@4318 4730 // too many elements on the stack
twisti@4318 4731 printf("%s: <= %d stack elements expected but found %d\n", s, -stack_depth, d);
twisti@4318 4732 state->print();
twisti@4318 4733 assert(false, "error");
twisti@4318 4734 return false;
twisti@4318 4735 }
twisti@4318 4736 } else {
twisti@4318 4737 // expected stack depth is stack_depth
twisti@4318 4738 if (d != stack_depth) {
twisti@4318 4739 // wrong stack depth
twisti@4318 4740 printf("%s: %d stack elements expected but found %d\n", s, stack_depth, d);
twisti@4318 4741 state->print();
twisti@4318 4742 assert(false, "error");
twisti@4318 4743 return false;
twisti@4318 4744 }
twisti@4318 4745 }
twisti@4318 4746 // everything is cool
twisti@4318 4747 return true;
twisti@4318 4748 }
twisti@4318 4749
twisti@4318 4750
twisti@4318 4751 void MacroAssembler::verify_FPU(int stack_depth, const char* s) {
twisti@4318 4752 if (!VerifyFPU) return;
twisti@4318 4753 push_CPU_state();
twisti@4318 4754 push(rsp); // pass CPU state
twisti@4318 4755 ExternalAddress msg((address) s);
twisti@4318 4756 // pass message string s
twisti@4318 4757 pushptr(msg.addr());
twisti@4318 4758 push(stack_depth); // pass stack depth
twisti@4318 4759 call(RuntimeAddress(CAST_FROM_FN_PTR(address, _verify_FPU)));
twisti@4318 4760 addptr(rsp, 3 * wordSize); // discard arguments
twisti@4318 4761 // check for error
twisti@4318 4762 { Label L;
twisti@4318 4763 testl(rax, rax);
twisti@4318 4764 jcc(Assembler::notZero, L);
twisti@4318 4765 int3(); // break if error condition
twisti@4318 4766 bind(L);
twisti@4318 4767 }
twisti@4318 4768 pop_CPU_state();
twisti@4318 4769 }
twisti@4318 4770
kvn@4873 4771 void MacroAssembler::restore_cpu_control_state_after_jni() {
kvn@4873 4772 // Either restore the MXCSR register after returning from the JNI Call
kvn@4873 4773 // or verify that it wasn't changed (with -Xcheck:jni flag).
kvn@4873 4774 if (VM_Version::supports_sse()) {
kvn@4873 4775 if (RestoreMXCSROnJNICalls) {
kvn@4873 4776 ldmxcsr(ExternalAddress(StubRoutines::addr_mxcsr_std()));
kvn@4873 4777 } else if (CheckJNICalls) {
kvn@4873 4778 call(RuntimeAddress(StubRoutines::x86::verify_mxcsr_entry()));
kvn@4873 4779 }
kvn@4873 4780 }
kvn@4873 4781 if (VM_Version::supports_avx()) {
kvn@4873 4782 // Clear upper bits of YMM registers to avoid SSE <-> AVX transition penalty.
kvn@4873 4783 vzeroupper();
kvn@4873 4784 }
kvn@4873 4785
kvn@4873 4786 #ifndef _LP64
kvn@4873 4787 // Either restore the x87 floating pointer control word after returning
kvn@4873 4788 // from the JNI call or verify that it wasn't changed.
kvn@4873 4789 if (CheckJNICalls) {
kvn@4873 4790 call(RuntimeAddress(StubRoutines::x86::verify_fpu_cntrl_wrd_entry()));
kvn@4873 4791 }
kvn@4873 4792 #endif // _LP64
kvn@4873 4793 }
kvn@4873 4794
kvn@4873 4795
twisti@4318 4796 void MacroAssembler::load_klass(Register dst, Register src) {
twisti@4318 4797 #ifdef _LP64
ehelin@5694 4798 if (UseCompressedClassPointers) {
twisti@4318 4799 movl(dst, Address(src, oopDesc::klass_offset_in_bytes()));
twisti@4318 4800 decode_klass_not_null(dst);
twisti@4318 4801 } else
twisti@4318 4802 #endif
twisti@4318 4803 movptr(dst, Address(src, oopDesc::klass_offset_in_bytes()));
twisti@4318 4804 }
twisti@4318 4805
twisti@4318 4806 void MacroAssembler::load_prototype_header(Register dst, Register src) {
hseigel@5528 4807 load_klass(dst, src);
hseigel@5528 4808 movptr(dst, Address(dst, Klass::prototype_header_offset()));
twisti@4318 4809 }
twisti@4318 4810
twisti@4318 4811 void MacroAssembler::store_klass(Register dst, Register src) {
twisti@4318 4812 #ifdef _LP64
ehelin@5694 4813 if (UseCompressedClassPointers) {
twisti@4318 4814 encode_klass_not_null(src);
twisti@4318 4815 movl(Address(dst, oopDesc::klass_offset_in_bytes()), src);
twisti@4318 4816 } else
twisti@4318 4817 #endif
twisti@4318 4818 movptr(Address(dst, oopDesc::klass_offset_in_bytes()), src);
twisti@4318 4819 }
twisti@4318 4820
twisti@4318 4821 void MacroAssembler::load_heap_oop(Register dst, Address src) {
twisti@4318 4822 #ifdef _LP64
twisti@4318 4823 // FIXME: Must change all places where we try to load the klass.
twisti@4318 4824 if (UseCompressedOops) {
twisti@4318 4825 movl(dst, src);
twisti@4318 4826 decode_heap_oop(dst);
twisti@4318 4827 } else
twisti@4318 4828 #endif
twisti@4318 4829 movptr(dst, src);
twisti@4318 4830 }
twisti@4318 4831
twisti@4318 4832 // Doesn't do verfication, generates fixed size code
twisti@4318 4833 void MacroAssembler::load_heap_oop_not_null(Register dst, Address src) {
twisti@4318 4834 #ifdef _LP64
twisti@4318 4835 if (UseCompressedOops) {
twisti@4318 4836 movl(dst, src);
twisti@4318 4837 decode_heap_oop_not_null(dst);
twisti@4318 4838 } else
twisti@4318 4839 #endif
twisti@4318 4840 movptr(dst, src);
twisti@4318 4841 }
twisti@4318 4842
twisti@4318 4843 void MacroAssembler::store_heap_oop(Address dst, Register src) {
twisti@4318 4844 #ifdef _LP64
twisti@4318 4845 if (UseCompressedOops) {
twisti@4318 4846 assert(!dst.uses(src), "not enough registers");
twisti@4318 4847 encode_heap_oop(src);
twisti@4318 4848 movl(dst, src);
twisti@4318 4849 } else
twisti@4318 4850 #endif
twisti@4318 4851 movptr(dst, src);
twisti@4318 4852 }
twisti@4318 4853
twisti@4318 4854 void MacroAssembler::cmp_heap_oop(Register src1, Address src2, Register tmp) {
twisti@4318 4855 assert_different_registers(src1, tmp);
twisti@4318 4856 #ifdef _LP64
twisti@4318 4857 if (UseCompressedOops) {
twisti@4318 4858 bool did_push = false;
twisti@4318 4859 if (tmp == noreg) {
twisti@4318 4860 tmp = rax;
twisti@4318 4861 push(tmp);
twisti@4318 4862 did_push = true;
twisti@4318 4863 assert(!src2.uses(rsp), "can't push");
twisti@4318 4864 }
twisti@4318 4865 load_heap_oop(tmp, src2);
twisti@4318 4866 cmpptr(src1, tmp);
twisti@4318 4867 if (did_push) pop(tmp);
twisti@4318 4868 } else
twisti@4318 4869 #endif
twisti@4318 4870 cmpptr(src1, src2);
twisti@4318 4871 }
twisti@4318 4872
twisti@4318 4873 // Used for storing NULLs.
twisti@4318 4874 void MacroAssembler::store_heap_oop_null(Address dst) {
twisti@4318 4875 #ifdef _LP64
twisti@4318 4876 if (UseCompressedOops) {
twisti@4318 4877 movl(dst, (int32_t)NULL_WORD);
twisti@4318 4878 } else {
twisti@4318 4879 movslq(dst, (int32_t)NULL_WORD);
twisti@4318 4880 }
twisti@4318 4881 #else
twisti@4318 4882 movl(dst, (int32_t)NULL_WORD);
twisti@4318 4883 #endif
twisti@4318 4884 }
twisti@4318 4885
twisti@4318 4886 #ifdef _LP64
twisti@4318 4887 void MacroAssembler::store_klass_gap(Register dst, Register src) {
ehelin@5694 4888 if (UseCompressedClassPointers) {
twisti@4318 4889 // Store to klass gap in destination
twisti@4318 4890 movl(Address(dst, oopDesc::klass_gap_offset_in_bytes()), src);
twisti@4318 4891 }
twisti@4318 4892 }
twisti@4318 4893
twisti@4318 4894 #ifdef ASSERT
twisti@4318 4895 void MacroAssembler::verify_heapbase(const char* msg) {
hseigel@5528 4896 assert (UseCompressedOops, "should be compressed");
twisti@4318 4897 assert (Universe::heap() != NULL, "java heap should be initialized");
twisti@4318 4898 if (CheckCompressedOops) {
twisti@4318 4899 Label ok;
twisti@4318 4900 push(rscratch1); // cmpptr trashes rscratch1
twisti@4318 4901 cmpptr(r12_heapbase, ExternalAddress((address)Universe::narrow_ptrs_base_addr()));
twisti@4318 4902 jcc(Assembler::equal, ok);
twisti@4318 4903 STOP(msg);
twisti@4318 4904 bind(ok);
twisti@4318 4905 pop(rscratch1);
twisti@4318 4906 }
twisti@4318 4907 }
twisti@4318 4908 #endif
twisti@4318 4909
twisti@4318 4910 // Algorithm must match oop.inline.hpp encode_heap_oop.
twisti@4318 4911 void MacroAssembler::encode_heap_oop(Register r) {
twisti@4318 4912 #ifdef ASSERT
twisti@4318 4913 verify_heapbase("MacroAssembler::encode_heap_oop: heap base corrupted?");
twisti@4318 4914 #endif
twisti@4318 4915 verify_oop(r, "broken oop in encode_heap_oop");
twisti@4318 4916 if (Universe::narrow_oop_base() == NULL) {
twisti@4318 4917 if (Universe::narrow_oop_shift() != 0) {
twisti@4318 4918 assert (LogMinObjAlignmentInBytes == Universe::narrow_oop_shift(), "decode alg wrong");
twisti@4318 4919 shrq(r, LogMinObjAlignmentInBytes);
twisti@4318 4920 }
twisti@4318 4921 return;
twisti@4318 4922 }
twisti@4318 4923 testq(r, r);
twisti@4318 4924 cmovq(Assembler::equal, r, r12_heapbase);
twisti@4318 4925 subq(r, r12_heapbase);
twisti@4318 4926 shrq(r, LogMinObjAlignmentInBytes);
twisti@4318 4927 }
twisti@4318 4928
twisti@4318 4929 void MacroAssembler::encode_heap_oop_not_null(Register r) {
twisti@4318 4930 #ifdef ASSERT
twisti@4318 4931 verify_heapbase("MacroAssembler::encode_heap_oop_not_null: heap base corrupted?");
twisti@4318 4932 if (CheckCompressedOops) {
twisti@4318 4933 Label ok;
twisti@4318 4934 testq(r, r);
twisti@4318 4935 jcc(Assembler::notEqual, ok);
twisti@4318 4936 STOP("null oop passed to encode_heap_oop_not_null");
twisti@4318 4937 bind(ok);
twisti@4318 4938 }
twisti@4318 4939 #endif
twisti@4318 4940 verify_oop(r, "broken oop in encode_heap_oop_not_null");
twisti@4318 4941 if (Universe::narrow_oop_base() != NULL) {
twisti@4318 4942 subq(r, r12_heapbase);
twisti@4318 4943 }
twisti@4318 4944 if (Universe::narrow_oop_shift() != 0) {
twisti@4318 4945 assert (LogMinObjAlignmentInBytes == Universe::narrow_oop_shift(), "decode alg wrong");
twisti@4318 4946 shrq(r, LogMinObjAlignmentInBytes);
twisti@4318 4947 }
twisti@4318 4948 }
twisti@4318 4949
twisti@4318 4950 void MacroAssembler::encode_heap_oop_not_null(Register dst, Register src) {
twisti@4318 4951 #ifdef ASSERT
twisti@4318 4952 verify_heapbase("MacroAssembler::encode_heap_oop_not_null2: heap base corrupted?");
twisti@4318 4953 if (CheckCompressedOops) {
twisti@4318 4954 Label ok;
twisti@4318 4955 testq(src, src);
twisti@4318 4956 jcc(Assembler::notEqual, ok);
twisti@4318 4957 STOP("null oop passed to encode_heap_oop_not_null2");
twisti@4318 4958 bind(ok);
twisti@4318 4959 }
twisti@4318 4960 #endif
twisti@4318 4961 verify_oop(src, "broken oop in encode_heap_oop_not_null2");
twisti@4318 4962 if (dst != src) {
twisti@4318 4963 movq(dst, src);
twisti@4318 4964 }
twisti@4318 4965 if (Universe::narrow_oop_base() != NULL) {
twisti@4318 4966 subq(dst, r12_heapbase);
twisti@4318 4967 }
twisti@4318 4968 if (Universe::narrow_oop_shift() != 0) {
twisti@4318 4969 assert (LogMinObjAlignmentInBytes == Universe::narrow_oop_shift(), "decode alg wrong");
twisti@4318 4970 shrq(dst, LogMinObjAlignmentInBytes);
twisti@4318 4971 }
twisti@4318 4972 }
twisti@4318 4973
twisti@4318 4974 void MacroAssembler::decode_heap_oop(Register r) {
twisti@4318 4975 #ifdef ASSERT
twisti@4318 4976 verify_heapbase("MacroAssembler::decode_heap_oop: heap base corrupted?");
twisti@4318 4977 #endif
twisti@4318 4978 if (Universe::narrow_oop_base() == NULL) {
twisti@4318 4979 if (Universe::narrow_oop_shift() != 0) {
twisti@4318 4980 assert (LogMinObjAlignmentInBytes == Universe::narrow_oop_shift(), "decode alg wrong");
twisti@4318 4981 shlq(r, LogMinObjAlignmentInBytes);
twisti@4318 4982 }
twisti@4318 4983 } else {
twisti@4318 4984 Label done;
twisti@4318 4985 shlq(r, LogMinObjAlignmentInBytes);
twisti@4318 4986 jccb(Assembler::equal, done);
twisti@4318 4987 addq(r, r12_heapbase);
twisti@4318 4988 bind(done);
twisti@4318 4989 }
twisti@4318 4990 verify_oop(r, "broken oop in decode_heap_oop");
twisti@4318 4991 }
twisti@4318 4992
twisti@4318 4993 void MacroAssembler::decode_heap_oop_not_null(Register r) {
twisti@4318 4994 // Note: it will change flags
twisti@4318 4995 assert (UseCompressedOops, "should only be used for compressed headers");
twisti@4318 4996 assert (Universe::heap() != NULL, "java heap should be initialized");
twisti@4318 4997 // Cannot assert, unverified entry point counts instructions (see .ad file)
twisti@4318 4998 // vtableStubs also counts instructions in pd_code_size_limit.
twisti@4318 4999 // Also do not verify_oop as this is called by verify_oop.
twisti@4318 5000 if (Universe::narrow_oop_shift() != 0) {
twisti@4318 5001 assert(LogMinObjAlignmentInBytes == Universe::narrow_oop_shift(), "decode alg wrong");
twisti@4318 5002 shlq(r, LogMinObjAlignmentInBytes);
twisti@4318 5003 if (Universe::narrow_oop_base() != NULL) {
twisti@4318 5004 addq(r, r12_heapbase);
twisti@4318 5005 }
twisti@4318 5006 } else {
twisti@4318 5007 assert (Universe::narrow_oop_base() == NULL, "sanity");
twisti@4318 5008 }
twisti@4318 5009 }
twisti@4318 5010
twisti@4318 5011 void MacroAssembler::decode_heap_oop_not_null(Register dst, Register src) {
twisti@4318 5012 // Note: it will change flags
twisti@4318 5013 assert (UseCompressedOops, "should only be used for compressed headers");
twisti@4318 5014 assert (Universe::heap() != NULL, "java heap should be initialized");
twisti@4318 5015 // Cannot assert, unverified entry point counts instructions (see .ad file)
twisti@4318 5016 // vtableStubs also counts instructions in pd_code_size_limit.
twisti@4318 5017 // Also do not verify_oop as this is called by verify_oop.
twisti@4318 5018 if (Universe::narrow_oop_shift() != 0) {
twisti@4318 5019 assert(LogMinObjAlignmentInBytes == Universe::narrow_oop_shift(), "decode alg wrong");
twisti@4318 5020 if (LogMinObjAlignmentInBytes == Address::times_8) {
twisti@4318 5021 leaq(dst, Address(r12_heapbase, src, Address::times_8, 0));
twisti@4318 5022 } else {
twisti@4318 5023 if (dst != src) {
twisti@4318 5024 movq(dst, src);
twisti@4318 5025 }
twisti@4318 5026 shlq(dst, LogMinObjAlignmentInBytes);
twisti@4318 5027 if (Universe::narrow_oop_base() != NULL) {
twisti@4318 5028 addq(dst, r12_heapbase);
twisti@4318 5029 }
twisti@4318 5030 }
twisti@4318 5031 } else {
twisti@4318 5032 assert (Universe::narrow_oop_base() == NULL, "sanity");
twisti@4318 5033 if (dst != src) {
twisti@4318 5034 movq(dst, src);
twisti@4318 5035 }
twisti@4318 5036 }
twisti@4318 5037 }
twisti@4318 5038
twisti@4318 5039 void MacroAssembler::encode_klass_not_null(Register r) {
coleenp@6029 5040 if (Universe::narrow_klass_base() != NULL) {
coleenp@6029 5041 // Use r12 as a scratch register in which to temporarily load the narrow_klass_base.
coleenp@6029 5042 assert(r != r12_heapbase, "Encoding a klass in r12");
coleenp@6029 5043 mov64(r12_heapbase, (int64_t)Universe::narrow_klass_base());
coleenp@6029 5044 subq(r, r12_heapbase);
coleenp@6029 5045 }
twisti@4318 5046 if (Universe::narrow_klass_shift() != 0) {
twisti@4318 5047 assert (LogKlassAlignmentInBytes == Universe::narrow_klass_shift(), "decode alg wrong");
twisti@4318 5048 shrq(r, LogKlassAlignmentInBytes);
twisti@4318 5049 }
coleenp@6029 5050 if (Universe::narrow_klass_base() != NULL) {
coleenp@6029 5051 reinit_heapbase();
coleenp@6029 5052 }
twisti@4318 5053 }
twisti@4318 5054
twisti@4318 5055 void MacroAssembler::encode_klass_not_null(Register dst, Register src) {
hseigel@5528 5056 if (dst == src) {
hseigel@5528 5057 encode_klass_not_null(src);
hseigel@5528 5058 } else {
coleenp@6029 5059 if (Universe::narrow_klass_base() != NULL) {
coleenp@6029 5060 mov64(dst, (int64_t)Universe::narrow_klass_base());
coleenp@6029 5061 negq(dst);
coleenp@6029 5062 addq(dst, src);
coleenp@6029 5063 } else {
coleenp@6029 5064 movptr(dst, src);
coleenp@6029 5065 }
hseigel@5528 5066 if (Universe::narrow_klass_shift() != 0) {
hseigel@5528 5067 assert (LogKlassAlignmentInBytes == Universe::narrow_klass_shift(), "decode alg wrong");
hseigel@5528 5068 shrq(dst, LogKlassAlignmentInBytes);
hseigel@5528 5069 }
hseigel@5528 5070 }
hseigel@5528 5071 }
hseigel@5528 5072
hseigel@5528 5073 // Function instr_size_for_decode_klass_not_null() counts the instructions
hseigel@5528 5074 // generated by decode_klass_not_null(register r) and reinit_heapbase(),
hseigel@5528 5075 // when (Universe::heap() != NULL). Hence, if the instructions they
hseigel@5528 5076 // generate change, then this method needs to be updated.
hseigel@5528 5077 int MacroAssembler::instr_size_for_decode_klass_not_null() {
ehelin@5694 5078 assert (UseCompressedClassPointers, "only for compressed klass ptrs");
coleenp@6029 5079 if (Universe::narrow_klass_base() != NULL) {
coleenp@6029 5080 // mov64 + addq + shlq? + mov64 (for reinit_heapbase()).
coleenp@6029 5081 return (Universe::narrow_klass_shift() == 0 ? 20 : 24);
coleenp@6029 5082 } else {
coleenp@6029 5083 // longest load decode klass function, mov64, leaq
coleenp@6029 5084 return 16;
coleenp@6029 5085 }
hseigel@5528 5086 }
hseigel@5528 5087
hseigel@5528 5088 // !!! If the instructions that get generated here change then function
hseigel@5528 5089 // instr_size_for_decode_klass_not_null() needs to get updated.
twisti@4318 5090 void MacroAssembler::decode_klass_not_null(Register r) {
twisti@4318 5091 // Note: it will change flags
ehelin@5694 5092 assert (UseCompressedClassPointers, "should only be used for compressed headers");
hseigel@5528 5093 assert(r != r12_heapbase, "Decoding a klass in r12");
twisti@4318 5094 // Cannot assert, unverified entry point counts instructions (see .ad file)
twisti@4318 5095 // vtableStubs also counts instructions in pd_code_size_limit.
twisti@4318 5096 // Also do not verify_oop as this is called by verify_oop.
twisti@4318 5097 if (Universe::narrow_klass_shift() != 0) {
twisti@4318 5098 assert(LogKlassAlignmentInBytes == Universe::narrow_klass_shift(), "decode alg wrong");
twisti@4318 5099 shlq(r, LogKlassAlignmentInBytes);
hseigel@5528 5100 }
hseigel@5528 5101 // Use r12 as a scratch register in which to temporarily load the narrow_klass_base.
coleenp@6029 5102 if (Universe::narrow_klass_base() != NULL) {
coleenp@6029 5103 mov64(r12_heapbase, (int64_t)Universe::narrow_klass_base());
coleenp@6029 5104 addq(r, r12_heapbase);
coleenp@6029 5105 reinit_heapbase();
coleenp@6029 5106 }
hseigel@5528 5107 }
hseigel@5528 5108
hseigel@5528 5109 void MacroAssembler::decode_klass_not_null(Register dst, Register src) {
hseigel@5528 5110 // Note: it will change flags
ehelin@5694 5111 assert (UseCompressedClassPointers, "should only be used for compressed headers");
hseigel@5528 5112 if (dst == src) {
hseigel@5528 5113 decode_klass_not_null(dst);
twisti@4318 5114 } else {
hseigel@5528 5115 // Cannot assert, unverified entry point counts instructions (see .ad file)
hseigel@5528 5116 // vtableStubs also counts instructions in pd_code_size_limit.
hseigel@5528 5117 // Also do not verify_oop as this is called by verify_oop.
hseigel@5528 5118 mov64(dst, (int64_t)Universe::narrow_klass_base());
hseigel@5528 5119 if (Universe::narrow_klass_shift() != 0) {
hseigel@5528 5120 assert(LogKlassAlignmentInBytes == Universe::narrow_klass_shift(), "decode alg wrong");
hseigel@5528 5121 assert(LogKlassAlignmentInBytes == Address::times_8, "klass not aligned on 64bits?");
hseigel@5528 5122 leaq(dst, Address(dst, src, Address::times_8, 0));
hseigel@5528 5123 } else {
hseigel@5528 5124 addq(dst, src);
twisti@4318 5125 }
twisti@4318 5126 }
twisti@4318 5127 }
twisti@4318 5128
twisti@4318 5129 void MacroAssembler::set_narrow_oop(Register dst, jobject obj) {
twisti@4318 5130 assert (UseCompressedOops, "should only be used for compressed headers");
twisti@4318 5131 assert (Universe::heap() != NULL, "java heap should be initialized");
twisti@4318 5132 assert (oop_recorder() != NULL, "this assembler needs an OopRecorder");
twisti@4318 5133 int oop_index = oop_recorder()->find_index(obj);
twisti@4318 5134 RelocationHolder rspec = oop_Relocation::spec(oop_index);
twisti@4318 5135 mov_narrow_oop(dst, oop_index, rspec);
twisti@4318 5136 }
twisti@4318 5137
twisti@4318 5138 void MacroAssembler::set_narrow_oop(Address dst, jobject obj) {
twisti@4318 5139 assert (UseCompressedOops, "should only be used for compressed headers");
twisti@4318 5140 assert (Universe::heap() != NULL, "java heap should be initialized");
twisti@4318 5141 assert (oop_recorder() != NULL, "this assembler needs an OopRecorder");
twisti@4318 5142 int oop_index = oop_recorder()->find_index(obj);
twisti@4318 5143 RelocationHolder rspec = oop_Relocation::spec(oop_index);
twisti@4318 5144 mov_narrow_oop(dst, oop_index, rspec);
twisti@4318 5145 }
twisti@4318 5146
twisti@4318 5147 void MacroAssembler::set_narrow_klass(Register dst, Klass* k) {
ehelin@5694 5148 assert (UseCompressedClassPointers, "should only be used for compressed headers");
twisti@4318 5149 assert (oop_recorder() != NULL, "this assembler needs an OopRecorder");
twisti@4318 5150 int klass_index = oop_recorder()->find_index(k);
twisti@4318 5151 RelocationHolder rspec = metadata_Relocation::spec(klass_index);
hseigel@5528 5152 mov_narrow_oop(dst, Klass::encode_klass(k), rspec);
twisti@4318 5153 }
twisti@4318 5154
twisti@4318 5155 void MacroAssembler::set_narrow_klass(Address dst, Klass* k) {
ehelin@5694 5156 assert (UseCompressedClassPointers, "should only be used for compressed headers");
twisti@4318 5157 assert (oop_recorder() != NULL, "this assembler needs an OopRecorder");
twisti@4318 5158 int klass_index = oop_recorder()->find_index(k);
twisti@4318 5159 RelocationHolder rspec = metadata_Relocation::spec(klass_index);
hseigel@5528 5160 mov_narrow_oop(dst, Klass::encode_klass(k), rspec);
twisti@4318 5161 }
twisti@4318 5162
twisti@4318 5163 void MacroAssembler::cmp_narrow_oop(Register dst, jobject obj) {
twisti@4318 5164 assert (UseCompressedOops, "should only be used for compressed headers");
twisti@4318 5165 assert (Universe::heap() != NULL, "java heap should be initialized");
twisti@4318 5166 assert (oop_recorder() != NULL, "this assembler needs an OopRecorder");
twisti@4318 5167 int oop_index = oop_recorder()->find_index(obj);
twisti@4318 5168 RelocationHolder rspec = oop_Relocation::spec(oop_index);
twisti@4318 5169 Assembler::cmp_narrow_oop(dst, oop_index, rspec);
twisti@4318 5170 }
twisti@4318 5171
twisti@4318 5172 void MacroAssembler::cmp_narrow_oop(Address dst, jobject obj) {
twisti@4318 5173 assert (UseCompressedOops, "should only be used for compressed headers");
twisti@4318 5174 assert (Universe::heap() != NULL, "java heap should be initialized");
twisti@4318 5175 assert (oop_recorder() != NULL, "this assembler needs an OopRecorder");
twisti@4318 5176 int oop_index = oop_recorder()->find_index(obj);
twisti@4318 5177 RelocationHolder rspec = oop_Relocation::spec(oop_index);
twisti@4318 5178 Assembler::cmp_narrow_oop(dst, oop_index, rspec);
twisti@4318 5179 }
twisti@4318 5180
twisti@4318 5181 void MacroAssembler::cmp_narrow_klass(Register dst, Klass* k) {
ehelin@5694 5182 assert (UseCompressedClassPointers, "should only be used for compressed headers");
twisti@4318 5183 assert (oop_recorder() != NULL, "this assembler needs an OopRecorder");
twisti@4318 5184 int klass_index = oop_recorder()->find_index(k);
twisti@4318 5185 RelocationHolder rspec = metadata_Relocation::spec(klass_index);
hseigel@5528 5186 Assembler::cmp_narrow_oop(dst, Klass::encode_klass(k), rspec);
twisti@4318 5187 }
twisti@4318 5188
twisti@4318 5189 void MacroAssembler::cmp_narrow_klass(Address dst, Klass* k) {
ehelin@5694 5190 assert (UseCompressedClassPointers, "should only be used for compressed headers");
twisti@4318 5191 assert (oop_recorder() != NULL, "this assembler needs an OopRecorder");
twisti@4318 5192 int klass_index = oop_recorder()->find_index(k);
twisti@4318 5193 RelocationHolder rspec = metadata_Relocation::spec(klass_index);
hseigel@5528 5194 Assembler::cmp_narrow_oop(dst, Klass::encode_klass(k), rspec);
twisti@4318 5195 }
twisti@4318 5196
twisti@4318 5197 void MacroAssembler::reinit_heapbase() {
ehelin@5694 5198 if (UseCompressedOops || UseCompressedClassPointers) {
hseigel@5528 5199 if (Universe::heap() != NULL) {
hseigel@5528 5200 if (Universe::narrow_oop_base() == NULL) {
hseigel@5528 5201 MacroAssembler::xorptr(r12_heapbase, r12_heapbase);
hseigel@5528 5202 } else {
hseigel@5528 5203 mov64(r12_heapbase, (int64_t)Universe::narrow_ptrs_base());
hseigel@5528 5204 }
hseigel@5528 5205 } else {
hseigel@5528 5206 movptr(r12_heapbase, ExternalAddress((address)Universe::narrow_ptrs_base_addr()));
hseigel@5528 5207 }
hseigel@5528 5208 }
hseigel@5528 5209 }
hseigel@5528 5210
twisti@4318 5211 #endif // _LP64
twisti@4318 5212
twisti@4318 5213
twisti@4318 5214 // C2 compiled method's prolog code.
twisti@4318 5215 void MacroAssembler::verified_entry(int framesize, bool stack_bang, bool fp_mode_24b) {
twisti@4318 5216
twisti@4318 5217 // WARNING: Initial instruction MUST be 5 bytes or longer so that
twisti@4318 5218 // NativeJump::patch_verified_entry will be able to patch out the entry
twisti@4318 5219 // code safely. The push to verify stack depth is ok at 5 bytes,
twisti@4318 5220 // the frame allocation can be either 3 or 6 bytes. So if we don't do
twisti@4318 5221 // stack bang then we must use the 6 byte frame allocation even if
twisti@4318 5222 // we have no frame. :-(
twisti@4318 5223
twisti@4318 5224 assert((framesize & (StackAlignmentInBytes-1)) == 0, "frame size not aligned");
twisti@4318 5225 // Remove word for return addr
twisti@4318 5226 framesize -= wordSize;
twisti@4318 5227
twisti@4318 5228 // Calls to C2R adapters often do not accept exceptional returns.
twisti@4318 5229 // We require that their callers must bang for them. But be careful, because
twisti@4318 5230 // some VM calls (such as call site linkage) can use several kilobytes of
twisti@4318 5231 // stack. But the stack safety zone should account for that.
twisti@4318 5232 // See bugs 4446381, 4468289, 4497237.
twisti@4318 5233 if (stack_bang) {
twisti@4318 5234 generate_stack_overflow_check(framesize);
twisti@4318 5235
twisti@4318 5236 // We always push rbp, so that on return to interpreter rbp, will be
twisti@4318 5237 // restored correctly and we can correct the stack.
twisti@4318 5238 push(rbp);
twisti@4318 5239 // Remove word for ebp
twisti@4318 5240 framesize -= wordSize;
twisti@4318 5241
twisti@4318 5242 // Create frame
twisti@4318 5243 if (framesize) {
twisti@4318 5244 subptr(rsp, framesize);
twisti@4318 5245 }
twisti@4318 5246 } else {
twisti@4318 5247 // Create frame (force generation of a 4 byte immediate value)
twisti@4318 5248 subptr_imm32(rsp, framesize);
twisti@4318 5249
twisti@4318 5250 // Save RBP register now.
twisti@4318 5251 framesize -= wordSize;
twisti@4318 5252 movptr(Address(rsp, framesize), rbp);
twisti@4318 5253 }
twisti@4318 5254
twisti@4318 5255 if (VerifyStackAtCalls) { // Majik cookie to verify stack depth
twisti@4318 5256 framesize -= wordSize;
twisti@4318 5257 movptr(Address(rsp, framesize), (int32_t)0xbadb100d);
twisti@4318 5258 }
twisti@4318 5259
twisti@4318 5260 #ifndef _LP64
twisti@4318 5261 // If method sets FPU control word do it now
twisti@4318 5262 if (fp_mode_24b) {
twisti@4318 5263 fldcw(ExternalAddress(StubRoutines::addr_fpu_cntrl_wrd_24()));
twisti@4318 5264 }
twisti@4318 5265 if (UseSSE >= 2 && VerifyFPU) {
twisti@4318 5266 verify_FPU(0, "FPU stack must be clean on entry");
twisti@4318 5267 }
twisti@4318 5268 #endif
twisti@4318 5269
twisti@4318 5270 #ifdef ASSERT
twisti@4318 5271 if (VerifyStackAtCalls) {
twisti@4318 5272 Label L;
twisti@4318 5273 push(rax);
twisti@4318 5274 mov(rax, rsp);
twisti@4318 5275 andptr(rax, StackAlignmentInBytes-1);
twisti@4318 5276 cmpptr(rax, StackAlignmentInBytes-wordSize);
twisti@4318 5277 pop(rax);
twisti@4318 5278 jcc(Assembler::equal, L);
twisti@4318 5279 STOP("Stack is not properly aligned!");
twisti@4318 5280 bind(L);
twisti@4318 5281 }
twisti@4318 5282 #endif
twisti@4318 5283
twisti@4318 5284 }
twisti@4318 5285
kvn@4410 5286 void MacroAssembler::clear_mem(Register base, Register cnt, Register tmp) {
kvn@4410 5287 // cnt - number of qwords (8-byte words).
kvn@4410 5288 // base - start address, qword aligned.
kvn@4410 5289 assert(base==rdi, "base register must be edi for rep stos");
kvn@4410 5290 assert(tmp==rax, "tmp register must be eax for rep stos");
kvn@4410 5291 assert(cnt==rcx, "cnt register must be ecx for rep stos");
kvn@4410 5292
kvn@4410 5293 xorptr(tmp, tmp);
kvn@4410 5294 if (UseFastStosb) {
kvn@4410 5295 shlptr(cnt,3); // convert to number of bytes
kvn@4410 5296 rep_stosb();
kvn@4410 5297 } else {
kvn@4410 5298 NOT_LP64(shlptr(cnt,1);) // convert to number of dwords for 32-bit VM
kvn@4410 5299 rep_stos();
kvn@4410 5300 }
kvn@4410 5301 }
twisti@4318 5302
twisti@4318 5303 // IndexOf for constant substrings with size >= 8 chars
twisti@4318 5304 // which don't need to be loaded through stack.
twisti@4318 5305 void MacroAssembler::string_indexofC8(Register str1, Register str2,
twisti@4318 5306 Register cnt1, Register cnt2,
twisti@4318 5307 int int_cnt2, Register result,
twisti@4318 5308 XMMRegister vec, Register tmp) {
twisti@4318 5309 ShortBranchVerifier sbv(this);
twisti@4318 5310 assert(UseSSE42Intrinsics, "SSE4.2 is required");
twisti@4318 5311
twisti@4318 5312 // This method uses pcmpestri inxtruction with bound registers
twisti@4318 5313 // inputs:
twisti@4318 5314 // xmm - substring
twisti@4318 5315 // rax - substring length (elements count)
twisti@4318 5316 // mem - scanned string
twisti@4318 5317 // rdx - string length (elements count)
twisti@4318 5318 // 0xd - mode: 1100 (substring search) + 01 (unsigned shorts)
twisti@4318 5319 // outputs:
twisti@4318 5320 // rcx - matched index in string
twisti@4318 5321 assert(cnt1 == rdx && cnt2 == rax && tmp == rcx, "pcmpestri");
twisti@4318 5322
twisti@4318 5323 Label RELOAD_SUBSTR, SCAN_TO_SUBSTR, SCAN_SUBSTR,
twisti@4318 5324 RET_FOUND, RET_NOT_FOUND, EXIT, FOUND_SUBSTR,
twisti@4318 5325 MATCH_SUBSTR_HEAD, RELOAD_STR, FOUND_CANDIDATE;
twisti@4318 5326
twisti@4318 5327 // Note, inline_string_indexOf() generates checks:
twisti@4318 5328 // if (substr.count > string.count) return -1;
twisti@4318 5329 // if (substr.count == 0) return 0;
twisti@4318 5330 assert(int_cnt2 >= 8, "this code isused only for cnt2 >= 8 chars");
twisti@4318 5331
twisti@4318 5332 // Load substring.
twisti@4318 5333 movdqu(vec, Address(str2, 0));
twisti@4318 5334 movl(cnt2, int_cnt2);
twisti@4318 5335 movptr(result, str1); // string addr
twisti@4318 5336
twisti@4318 5337 if (int_cnt2 > 8) {
twisti@4318 5338 jmpb(SCAN_TO_SUBSTR);
twisti@4318 5339
twisti@4318 5340 // Reload substr for rescan, this code
twisti@4318 5341 // is executed only for large substrings (> 8 chars)
twisti@4318 5342 bind(RELOAD_SUBSTR);
twisti@4318 5343 movdqu(vec, Address(str2, 0));
twisti@4318 5344 negptr(cnt2); // Jumped here with negative cnt2, convert to positive
twisti@4318 5345
twisti@4318 5346 bind(RELOAD_STR);
twisti@4318 5347 // We came here after the beginning of the substring was
twisti@4318 5348 // matched but the rest of it was not so we need to search
twisti@4318 5349 // again. Start from the next element after the previous match.
twisti@4318 5350
twisti@4318 5351 // cnt2 is number of substring reminding elements and
twisti@4318 5352 // cnt1 is number of string reminding elements when cmp failed.
twisti@4318 5353 // Restored cnt1 = cnt1 - cnt2 + int_cnt2
twisti@4318 5354 subl(cnt1, cnt2);
twisti@4318 5355 addl(cnt1, int_cnt2);
twisti@4318 5356 movl(cnt2, int_cnt2); // Now restore cnt2
twisti@4318 5357
twisti@4318 5358 decrementl(cnt1); // Shift to next element
twisti@4318 5359 cmpl(cnt1, cnt2);
twisti@4318 5360 jccb(Assembler::negative, RET_NOT_FOUND); // Left less then substring
twisti@4318 5361
twisti@4318 5362 addptr(result, 2);
twisti@4318 5363
twisti@4318 5364 } // (int_cnt2 > 8)
twisti@4318 5365
twisti@4318 5366 // Scan string for start of substr in 16-byte vectors
twisti@4318 5367 bind(SCAN_TO_SUBSTR);
twisti@4318 5368 pcmpestri(vec, Address(result, 0), 0x0d);
twisti@4318 5369 jccb(Assembler::below, FOUND_CANDIDATE); // CF == 1
twisti@4318 5370 subl(cnt1, 8);
twisti@4318 5371 jccb(Assembler::lessEqual, RET_NOT_FOUND); // Scanned full string
twisti@4318 5372 cmpl(cnt1, cnt2);
twisti@4318 5373 jccb(Assembler::negative, RET_NOT_FOUND); // Left less then substring
twisti@4318 5374 addptr(result, 16);
twisti@4318 5375 jmpb(SCAN_TO_SUBSTR);
twisti@4318 5376
twisti@4318 5377 // Found a potential substr
twisti@4318 5378 bind(FOUND_CANDIDATE);
twisti@4318 5379 // Matched whole vector if first element matched (tmp(rcx) == 0).
twisti@4318 5380 if (int_cnt2 == 8) {
twisti@4318 5381 jccb(Assembler::overflow, RET_FOUND); // OF == 1
twisti@4318 5382 } else { // int_cnt2 > 8
twisti@4318 5383 jccb(Assembler::overflow, FOUND_SUBSTR);
twisti@4318 5384 }
twisti@4318 5385 // After pcmpestri tmp(rcx) contains matched element index
twisti@4318 5386 // Compute start addr of substr
twisti@4318 5387 lea(result, Address(result, tmp, Address::times_2));
twisti@4318 5388
twisti@4318 5389 // Make sure string is still long enough
twisti@4318 5390 subl(cnt1, tmp);
twisti@4318 5391 cmpl(cnt1, cnt2);
twisti@4318 5392 if (int_cnt2 == 8) {
twisti@4318 5393 jccb(Assembler::greaterEqual, SCAN_TO_SUBSTR);
twisti@4318 5394 } else { // int_cnt2 > 8
twisti@4318 5395 jccb(Assembler::greaterEqual, MATCH_SUBSTR_HEAD);
twisti@4318 5396 }
twisti@4318 5397 // Left less then substring.
twisti@4318 5398
twisti@4318 5399 bind(RET_NOT_FOUND);
twisti@4318 5400 movl(result, -1);
twisti@4318 5401 jmpb(EXIT);
twisti@4318 5402
twisti@4318 5403 if (int_cnt2 > 8) {
twisti@4318 5404 // This code is optimized for the case when whole substring
twisti@4318 5405 // is matched if its head is matched.
twisti@4318 5406 bind(MATCH_SUBSTR_HEAD);
twisti@4318 5407 pcmpestri(vec, Address(result, 0), 0x0d);
twisti@4318 5408 // Reload only string if does not match
twisti@4318 5409 jccb(Assembler::noOverflow, RELOAD_STR); // OF == 0
twisti@4318 5410
twisti@4318 5411 Label CONT_SCAN_SUBSTR;
twisti@4318 5412 // Compare the rest of substring (> 8 chars).
twisti@4318 5413 bind(FOUND_SUBSTR);
twisti@4318 5414 // First 8 chars are already matched.
twisti@4318 5415 negptr(cnt2);
twisti@4318 5416 addptr(cnt2, 8);
twisti@4318 5417
twisti@4318 5418 bind(SCAN_SUBSTR);
twisti@4318 5419 subl(cnt1, 8);
twisti@4318 5420 cmpl(cnt2, -8); // Do not read beyond substring
twisti@4318 5421 jccb(Assembler::lessEqual, CONT_SCAN_SUBSTR);
twisti@4318 5422 // Back-up strings to avoid reading beyond substring:
twisti@4318 5423 // cnt1 = cnt1 - cnt2 + 8
twisti@4318 5424 addl(cnt1, cnt2); // cnt2 is negative
twisti@4318 5425 addl(cnt1, 8);
twisti@4318 5426 movl(cnt2, 8); negptr(cnt2);
twisti@4318 5427 bind(CONT_SCAN_SUBSTR);
twisti@4318 5428 if (int_cnt2 < (int)G) {
twisti@4318 5429 movdqu(vec, Address(str2, cnt2, Address::times_2, int_cnt2*2));
twisti@4318 5430 pcmpestri(vec, Address(result, cnt2, Address::times_2, int_cnt2*2), 0x0d);
twisti@4318 5431 } else {
twisti@4318 5432 // calculate index in register to avoid integer overflow (int_cnt2*2)
twisti@4318 5433 movl(tmp, int_cnt2);
twisti@4318 5434 addptr(tmp, cnt2);
twisti@4318 5435 movdqu(vec, Address(str2, tmp, Address::times_2, 0));
twisti@4318 5436 pcmpestri(vec, Address(result, tmp, Address::times_2, 0), 0x0d);
twisti@4318 5437 }
twisti@4318 5438 // Need to reload strings pointers if not matched whole vector
twisti@4318 5439 jcc(Assembler::noOverflow, RELOAD_SUBSTR); // OF == 0
twisti@4318 5440 addptr(cnt2, 8);
twisti@4318 5441 jcc(Assembler::negative, SCAN_SUBSTR);
twisti@4318 5442 // Fall through if found full substring
twisti@4318 5443
twisti@4318 5444 } // (int_cnt2 > 8)
twisti@4318 5445
twisti@4318 5446 bind(RET_FOUND);
twisti@4318 5447 // Found result if we matched full small substring.
twisti@4318 5448 // Compute substr offset
twisti@4318 5449 subptr(result, str1);
twisti@4318 5450 shrl(result, 1); // index
twisti@4318 5451 bind(EXIT);
twisti@4318 5452
twisti@4318 5453 } // string_indexofC8
twisti@4318 5454
twisti@4318 5455 // Small strings are loaded through stack if they cross page boundary.
twisti@4318 5456 void MacroAssembler::string_indexof(Register str1, Register str2,
twisti@4318 5457 Register cnt1, Register cnt2,
twisti@4318 5458 int int_cnt2, Register result,
twisti@4318 5459 XMMRegister vec, Register tmp) {
twisti@4318 5460 ShortBranchVerifier sbv(this);
twisti@4318 5461 assert(UseSSE42Intrinsics, "SSE4.2 is required");
twisti@4318 5462 //
twisti@4318 5463 // int_cnt2 is length of small (< 8 chars) constant substring
twisti@4318 5464 // or (-1) for non constant substring in which case its length
twisti@4318 5465 // is in cnt2 register.
twisti@4318 5466 //
twisti@4318 5467 // Note, inline_string_indexOf() generates checks:
twisti@4318 5468 // if (substr.count > string.count) return -1;
twisti@4318 5469 // if (substr.count == 0) return 0;
twisti@4318 5470 //
twisti@4318 5471 assert(int_cnt2 == -1 || (0 < int_cnt2 && int_cnt2 < 8), "should be != 0");
twisti@4318 5472
twisti@4318 5473 // This method uses pcmpestri inxtruction with bound registers
twisti@4318 5474 // inputs:
twisti@4318 5475 // xmm - substring
twisti@4318 5476 // rax - substring length (elements count)
twisti@4318 5477 // mem - scanned string
twisti@4318 5478 // rdx - string length (elements count)
twisti@4318 5479 // 0xd - mode: 1100 (substring search) + 01 (unsigned shorts)
twisti@4318 5480 // outputs:
twisti@4318 5481 // rcx - matched index in string
twisti@4318 5482 assert(cnt1 == rdx && cnt2 == rax && tmp == rcx, "pcmpestri");
twisti@4318 5483
twisti@4318 5484 Label RELOAD_SUBSTR, SCAN_TO_SUBSTR, SCAN_SUBSTR, ADJUST_STR,
twisti@4318 5485 RET_FOUND, RET_NOT_FOUND, CLEANUP, FOUND_SUBSTR,
twisti@4318 5486 FOUND_CANDIDATE;
twisti@4318 5487
twisti@4318 5488 { //========================================================
twisti@4318 5489 // We don't know where these strings are located
twisti@4318 5490 // and we can't read beyond them. Load them through stack.
twisti@4318 5491 Label BIG_STRINGS, CHECK_STR, COPY_SUBSTR, COPY_STR;
twisti@4318 5492
twisti@4318 5493 movptr(tmp, rsp); // save old SP
twisti@4318 5494
twisti@4318 5495 if (int_cnt2 > 0) { // small (< 8 chars) constant substring
twisti@4318 5496 if (int_cnt2 == 1) { // One char
twisti@4318 5497 load_unsigned_short(result, Address(str2, 0));
twisti@4318 5498 movdl(vec, result); // move 32 bits
twisti@4318 5499 } else if (int_cnt2 == 2) { // Two chars
twisti@4318 5500 movdl(vec, Address(str2, 0)); // move 32 bits
twisti@4318 5501 } else if (int_cnt2 == 4) { // Four chars
twisti@4318 5502 movq(vec, Address(str2, 0)); // move 64 bits
twisti@4318 5503 } else { // cnt2 = { 3, 5, 6, 7 }
twisti@4318 5504 // Array header size is 12 bytes in 32-bit VM
twisti@4318 5505 // + 6 bytes for 3 chars == 18 bytes,
twisti@4318 5506 // enough space to load vec and shift.
twisti@4318 5507 assert(HeapWordSize*TypeArrayKlass::header_size() >= 12,"sanity");
twisti@4318 5508 movdqu(vec, Address(str2, (int_cnt2*2)-16));
twisti@4318 5509 psrldq(vec, 16-(int_cnt2*2));
twisti@4318 5510 }
twisti@4318 5511 } else { // not constant substring
twisti@4318 5512 cmpl(cnt2, 8);
twisti@4318 5513 jccb(Assembler::aboveEqual, BIG_STRINGS); // Both strings are big enough
twisti@4318 5514
twisti@4318 5515 // We can read beyond string if srt+16 does not cross page boundary
twisti@4318 5516 // since heaps are aligned and mapped by pages.
twisti@4318 5517 assert(os::vm_page_size() < (int)G, "default page should be small");
twisti@4318 5518 movl(result, str2); // We need only low 32 bits
twisti@4318 5519 andl(result, (os::vm_page_size()-1));
twisti@4318 5520 cmpl(result, (os::vm_page_size()-16));
twisti@4318 5521 jccb(Assembler::belowEqual, CHECK_STR);
twisti@4318 5522
twisti@4318 5523 // Move small strings to stack to allow load 16 bytes into vec.
twisti@4318 5524 subptr(rsp, 16);
twisti@4318 5525 int stk_offset = wordSize-2;
twisti@4318 5526 push(cnt2);
twisti@4318 5527
twisti@4318 5528 bind(COPY_SUBSTR);
twisti@4318 5529 load_unsigned_short(result, Address(str2, cnt2, Address::times_2, -2));
twisti@4318 5530 movw(Address(rsp, cnt2, Address::times_2, stk_offset), result);
twisti@4318 5531 decrement(cnt2);
twisti@4318 5532 jccb(Assembler::notZero, COPY_SUBSTR);
twisti@4318 5533
twisti@4318 5534 pop(cnt2);
twisti@4318 5535 movptr(str2, rsp); // New substring address
twisti@4318 5536 } // non constant
twisti@4318 5537
twisti@4318 5538 bind(CHECK_STR);
twisti@4318 5539 cmpl(cnt1, 8);
twisti@4318 5540 jccb(Assembler::aboveEqual, BIG_STRINGS);
twisti@4318 5541
twisti@4318 5542 // Check cross page boundary.
twisti@4318 5543 movl(result, str1); // We need only low 32 bits
twisti@4318 5544 andl(result, (os::vm_page_size()-1));
twisti@4318 5545 cmpl(result, (os::vm_page_size()-16));
twisti@4318 5546 jccb(Assembler::belowEqual, BIG_STRINGS);
twisti@4318 5547
twisti@4318 5548 subptr(rsp, 16);
twisti@4318 5549 int stk_offset = -2;
twisti@4318 5550 if (int_cnt2 < 0) { // not constant
twisti@4318 5551 push(cnt2);
twisti@4318 5552 stk_offset += wordSize;
twisti@4318 5553 }
twisti@4318 5554 movl(cnt2, cnt1);
twisti@4318 5555
twisti@4318 5556 bind(COPY_STR);
twisti@4318 5557 load_unsigned_short(result, Address(str1, cnt2, Address::times_2, -2));
twisti@4318 5558 movw(Address(rsp, cnt2, Address::times_2, stk_offset), result);
twisti@4318 5559 decrement(cnt2);
twisti@4318 5560 jccb(Assembler::notZero, COPY_STR);
twisti@4318 5561
twisti@4318 5562 if (int_cnt2 < 0) { // not constant
twisti@4318 5563 pop(cnt2);
twisti@4318 5564 }
twisti@4318 5565 movptr(str1, rsp); // New string address
twisti@4318 5566
twisti@4318 5567 bind(BIG_STRINGS);
twisti@4318 5568 // Load substring.
twisti@4318 5569 if (int_cnt2 < 0) { // -1
twisti@4318 5570 movdqu(vec, Address(str2, 0));
twisti@4318 5571 push(cnt2); // substr count
twisti@4318 5572 push(str2); // substr addr
twisti@4318 5573 push(str1); // string addr
twisti@4318 5574 } else {
twisti@4318 5575 // Small (< 8 chars) constant substrings are loaded already.
twisti@4318 5576 movl(cnt2, int_cnt2);
twisti@4318 5577 }
twisti@4318 5578 push(tmp); // original SP
twisti@4318 5579
twisti@4318 5580 } // Finished loading
twisti@4318 5581
twisti@4318 5582 //========================================================
twisti@4318 5583 // Start search
twisti@4318 5584 //
twisti@4318 5585
twisti@4318 5586 movptr(result, str1); // string addr
twisti@4318 5587
twisti@4318 5588 if (int_cnt2 < 0) { // Only for non constant substring
twisti@4318 5589 jmpb(SCAN_TO_SUBSTR);
twisti@4318 5590
twisti@4318 5591 // SP saved at sp+0
twisti@4318 5592 // String saved at sp+1*wordSize
twisti@4318 5593 // Substr saved at sp+2*wordSize
twisti@4318 5594 // Substr count saved at sp+3*wordSize
twisti@4318 5595
twisti@4318 5596 // Reload substr for rescan, this code
twisti@4318 5597 // is executed only for large substrings (> 8 chars)
twisti@4318 5598 bind(RELOAD_SUBSTR);
twisti@4318 5599 movptr(str2, Address(rsp, 2*wordSize));
twisti@4318 5600 movl(cnt2, Address(rsp, 3*wordSize));
twisti@4318 5601 movdqu(vec, Address(str2, 0));
twisti@4318 5602 // We came here after the beginning of the substring was
twisti@4318 5603 // matched but the rest of it was not so we need to search
twisti@4318 5604 // again. Start from the next element after the previous match.
twisti@4318 5605 subptr(str1, result); // Restore counter
twisti@4318 5606 shrl(str1, 1);
twisti@4318 5607 addl(cnt1, str1);
twisti@4318 5608 decrementl(cnt1); // Shift to next element
twisti@4318 5609 cmpl(cnt1, cnt2);
twisti@4318 5610 jccb(Assembler::negative, RET_NOT_FOUND); // Left less then substring
twisti@4318 5611
twisti@4318 5612 addptr(result, 2);
twisti@4318 5613 } // non constant
twisti@4318 5614
twisti@4318 5615 // Scan string for start of substr in 16-byte vectors
twisti@4318 5616 bind(SCAN_TO_SUBSTR);
twisti@4318 5617 assert(cnt1 == rdx && cnt2 == rax && tmp == rcx, "pcmpestri");
twisti@4318 5618 pcmpestri(vec, Address(result, 0), 0x0d);
twisti@4318 5619 jccb(Assembler::below, FOUND_CANDIDATE); // CF == 1
twisti@4318 5620 subl(cnt1, 8);
twisti@4318 5621 jccb(Assembler::lessEqual, RET_NOT_FOUND); // Scanned full string
twisti@4318 5622 cmpl(cnt1, cnt2);
twisti@4318 5623 jccb(Assembler::negative, RET_NOT_FOUND); // Left less then substring
twisti@4318 5624 addptr(result, 16);
twisti@4318 5625
twisti@4318 5626 bind(ADJUST_STR);
twisti@4318 5627 cmpl(cnt1, 8); // Do not read beyond string
twisti@4318 5628 jccb(Assembler::greaterEqual, SCAN_TO_SUBSTR);
twisti@4318 5629 // Back-up string to avoid reading beyond string.
twisti@4318 5630 lea(result, Address(result, cnt1, Address::times_2, -16));
twisti@4318 5631 movl(cnt1, 8);
twisti@4318 5632 jmpb(SCAN_TO_SUBSTR);
twisti@4318 5633
twisti@4318 5634 // Found a potential substr
twisti@4318 5635 bind(FOUND_CANDIDATE);
twisti@4318 5636 // After pcmpestri tmp(rcx) contains matched element index
twisti@4318 5637
twisti@4318 5638 // Make sure string is still long enough
twisti@4318 5639 subl(cnt1, tmp);
twisti@4318 5640 cmpl(cnt1, cnt2);
twisti@4318 5641 jccb(Assembler::greaterEqual, FOUND_SUBSTR);
twisti@4318 5642 // Left less then substring.
twisti@4318 5643
twisti@4318 5644 bind(RET_NOT_FOUND);
twisti@4318 5645 movl(result, -1);
twisti@4318 5646 jmpb(CLEANUP);
twisti@4318 5647
twisti@4318 5648 bind(FOUND_SUBSTR);
twisti@4318 5649 // Compute start addr of substr
twisti@4318 5650 lea(result, Address(result, tmp, Address::times_2));
twisti@4318 5651
twisti@4318 5652 if (int_cnt2 > 0) { // Constant substring
twisti@4318 5653 // Repeat search for small substring (< 8 chars)
twisti@4318 5654 // from new point without reloading substring.
twisti@4318 5655 // Have to check that we don't read beyond string.
twisti@4318 5656 cmpl(tmp, 8-int_cnt2);
twisti@4318 5657 jccb(Assembler::greater, ADJUST_STR);
twisti@4318 5658 // Fall through if matched whole substring.
twisti@4318 5659 } else { // non constant
twisti@4318 5660 assert(int_cnt2 == -1, "should be != 0");
twisti@4318 5661
twisti@4318 5662 addl(tmp, cnt2);
twisti@4318 5663 // Found result if we matched whole substring.
twisti@4318 5664 cmpl(tmp, 8);
twisti@4318 5665 jccb(Assembler::lessEqual, RET_FOUND);
twisti@4318 5666
twisti@4318 5667 // Repeat search for small substring (<= 8 chars)
twisti@4318 5668 // from new point 'str1' without reloading substring.
twisti@4318 5669 cmpl(cnt2, 8);
twisti@4318 5670 // Have to check that we don't read beyond string.
twisti@4318 5671 jccb(Assembler::lessEqual, ADJUST_STR);
twisti@4318 5672
twisti@4318 5673 Label CHECK_NEXT, CONT_SCAN_SUBSTR, RET_FOUND_LONG;
twisti@4318 5674 // Compare the rest of substring (> 8 chars).
twisti@4318 5675 movptr(str1, result);
twisti@4318 5676
twisti@4318 5677 cmpl(tmp, cnt2);
twisti@4318 5678 // First 8 chars are already matched.
twisti@4318 5679 jccb(Assembler::equal, CHECK_NEXT);
twisti@4318 5680
twisti@4318 5681 bind(SCAN_SUBSTR);
twisti@4318 5682 pcmpestri(vec, Address(str1, 0), 0x0d);
twisti@4318 5683 // Need to reload strings pointers if not matched whole vector
twisti@4318 5684 jcc(Assembler::noOverflow, RELOAD_SUBSTR); // OF == 0
twisti@4318 5685
twisti@4318 5686 bind(CHECK_NEXT);
twisti@4318 5687 subl(cnt2, 8);
twisti@4318 5688 jccb(Assembler::lessEqual, RET_FOUND_LONG); // Found full substring
twisti@4318 5689 addptr(str1, 16);
twisti@4318 5690 addptr(str2, 16);
twisti@4318 5691 subl(cnt1, 8);
twisti@4318 5692 cmpl(cnt2, 8); // Do not read beyond substring
twisti@4318 5693 jccb(Assembler::greaterEqual, CONT_SCAN_SUBSTR);
twisti@4318 5694 // Back-up strings to avoid reading beyond substring.
twisti@4318 5695 lea(str2, Address(str2, cnt2, Address::times_2, -16));
twisti@4318 5696 lea(str1, Address(str1, cnt2, Address::times_2, -16));
twisti@4318 5697 subl(cnt1, cnt2);
twisti@4318 5698 movl(cnt2, 8);
twisti@4318 5699 addl(cnt1, 8);
twisti@4318 5700 bind(CONT_SCAN_SUBSTR);
twisti@4318 5701 movdqu(vec, Address(str2, 0));
twisti@4318 5702 jmpb(SCAN_SUBSTR);
twisti@4318 5703
twisti@4318 5704 bind(RET_FOUND_LONG);
twisti@4318 5705 movptr(str1, Address(rsp, wordSize));
twisti@4318 5706 } // non constant
twisti@4318 5707
twisti@4318 5708 bind(RET_FOUND);
twisti@4318 5709 // Compute substr offset
twisti@4318 5710 subptr(result, str1);
twisti@4318 5711 shrl(result, 1); // index
twisti@4318 5712
twisti@4318 5713 bind(CLEANUP);
twisti@4318 5714 pop(rsp); // restore SP
twisti@4318 5715
twisti@4318 5716 } // string_indexof
twisti@4318 5717
twisti@4318 5718 // Compare strings.
twisti@4318 5719 void MacroAssembler::string_compare(Register str1, Register str2,
twisti@4318 5720 Register cnt1, Register cnt2, Register result,
twisti@4318 5721 XMMRegister vec1) {
twisti@4318 5722 ShortBranchVerifier sbv(this);
twisti@4318 5723 Label LENGTH_DIFF_LABEL, POP_LABEL, DONE_LABEL, WHILE_HEAD_LABEL;
twisti@4318 5724
twisti@4318 5725 // Compute the minimum of the string lengths and the
twisti@4318 5726 // difference of the string lengths (stack).
twisti@4318 5727 // Do the conditional move stuff
twisti@4318 5728 movl(result, cnt1);
twisti@4318 5729 subl(cnt1, cnt2);
twisti@4318 5730 push(cnt1);
twisti@4318 5731 cmov32(Assembler::lessEqual, cnt2, result);
twisti@4318 5732
twisti@4318 5733 // Is the minimum length zero?
twisti@4318 5734 testl(cnt2, cnt2);
twisti@4318 5735 jcc(Assembler::zero, LENGTH_DIFF_LABEL);
twisti@4318 5736
kvn@4413 5737 // Compare first characters
twisti@4318 5738 load_unsigned_short(result, Address(str1, 0));
twisti@4318 5739 load_unsigned_short(cnt1, Address(str2, 0));
twisti@4318 5740 subl(result, cnt1);
twisti@4318 5741 jcc(Assembler::notZero, POP_LABEL);
kvn@4413 5742 cmpl(cnt2, 1);
kvn@4413 5743 jcc(Assembler::equal, LENGTH_DIFF_LABEL);
kvn@4413 5744
kvn@4413 5745 // Check if the strings start at the same location.
kvn@4413 5746 cmpptr(str1, str2);
kvn@4413 5747 jcc(Assembler::equal, LENGTH_DIFF_LABEL);
twisti@4318 5748
twisti@4318 5749 Address::ScaleFactor scale = Address::times_2;
twisti@4318 5750 int stride = 8;
twisti@4318 5751
kvn@4583 5752 if (UseAVX >= 2 && UseSSE42Intrinsics) {
kvn@4413 5753 Label COMPARE_WIDE_VECTORS, VECTOR_NOT_EQUAL, COMPARE_WIDE_TAIL, COMPARE_SMALL_STR;
kvn@4413 5754 Label COMPARE_WIDE_VECTORS_LOOP, COMPARE_16_CHARS, COMPARE_INDEX_CHAR;
kvn@4413 5755 Label COMPARE_TAIL_LONG;
kvn@4413 5756 int pcmpmask = 0x19;
kvn@4413 5757
kvn@4413 5758 // Setup to compare 16-chars (32-bytes) vectors,
kvn@4413 5759 // start from first character again because it has aligned address.
kvn@4413 5760 int stride2 = 16;
kvn@4413 5761 int adr_stride = stride << scale;
kvn@4413 5762 int adr_stride2 = stride2 << scale;
kvn@4413 5763
kvn@4413 5764 assert(result == rax && cnt2 == rdx && cnt1 == rcx, "pcmpestri");
kvn@4413 5765 // rax and rdx are used by pcmpestri as elements counters
kvn@4413 5766 movl(result, cnt2);
kvn@4413 5767 andl(cnt2, ~(stride2-1)); // cnt2 holds the vector count
kvn@4413 5768 jcc(Assembler::zero, COMPARE_TAIL_LONG);
kvn@4413 5769
kvn@4413 5770 // fast path : compare first 2 8-char vectors.
kvn@4413 5771 bind(COMPARE_16_CHARS);
kvn@4413 5772 movdqu(vec1, Address(str1, 0));
kvn@4413 5773 pcmpestri(vec1, Address(str2, 0), pcmpmask);
kvn@4413 5774 jccb(Assembler::below, COMPARE_INDEX_CHAR);
kvn@4413 5775
kvn@4413 5776 movdqu(vec1, Address(str1, adr_stride));
kvn@4413 5777 pcmpestri(vec1, Address(str2, adr_stride), pcmpmask);
kvn@4413 5778 jccb(Assembler::aboveEqual, COMPARE_WIDE_VECTORS);
kvn@4413 5779 addl(cnt1, stride);
kvn@4413 5780
kvn@4413 5781 // Compare the characters at index in cnt1
kvn@4413 5782 bind(COMPARE_INDEX_CHAR); //cnt1 has the offset of the mismatching character
kvn@4413 5783 load_unsigned_short(result, Address(str1, cnt1, scale));
kvn@4413 5784 load_unsigned_short(cnt2, Address(str2, cnt1, scale));
kvn@4413 5785 subl(result, cnt2);
kvn@4413 5786 jmp(POP_LABEL);
kvn@4413 5787
kvn@4413 5788 // Setup the registers to start vector comparison loop
kvn@4413 5789 bind(COMPARE_WIDE_VECTORS);
kvn@4413 5790 lea(str1, Address(str1, result, scale));
kvn@4413 5791 lea(str2, Address(str2, result, scale));
kvn@4413 5792 subl(result, stride2);
kvn@4413 5793 subl(cnt2, stride2);
kvn@4413 5794 jccb(Assembler::zero, COMPARE_WIDE_TAIL);
kvn@4413 5795 negptr(result);
kvn@4413 5796
kvn@4413 5797 // In a loop, compare 16-chars (32-bytes) at once using (vpxor+vptest)
kvn@4413 5798 bind(COMPARE_WIDE_VECTORS_LOOP);
kvn@4413 5799 vmovdqu(vec1, Address(str1, result, scale));
kvn@4413 5800 vpxor(vec1, Address(str2, result, scale));
kvn@4413 5801 vptest(vec1, vec1);
kvn@4413 5802 jccb(Assembler::notZero, VECTOR_NOT_EQUAL);
kvn@4413 5803 addptr(result, stride2);
kvn@4413 5804 subl(cnt2, stride2);
kvn@4413 5805 jccb(Assembler::notZero, COMPARE_WIDE_VECTORS_LOOP);
kvn@4873 5806 // clean upper bits of YMM registers
kvn@4873 5807 vzeroupper();
kvn@4413 5808
kvn@4413 5809 // compare wide vectors tail
kvn@4413 5810 bind(COMPARE_WIDE_TAIL);
kvn@4413 5811 testptr(result, result);
kvn@4413 5812 jccb(Assembler::zero, LENGTH_DIFF_LABEL);
kvn@4413 5813
kvn@4413 5814 movl(result, stride2);
kvn@4413 5815 movl(cnt2, result);
kvn@4413 5816 negptr(result);
kvn@4413 5817 jmpb(COMPARE_WIDE_VECTORS_LOOP);
kvn@4413 5818
kvn@4413 5819 // Identifies the mismatching (higher or lower)16-bytes in the 32-byte vectors.
kvn@4413 5820 bind(VECTOR_NOT_EQUAL);
kvn@4873 5821 // clean upper bits of YMM registers
kvn@4873 5822 vzeroupper();
kvn@4413 5823 lea(str1, Address(str1, result, scale));
kvn@4413 5824 lea(str2, Address(str2, result, scale));
kvn@4413 5825 jmp(COMPARE_16_CHARS);
kvn@4413 5826
kvn@4413 5827 // Compare tail chars, length between 1 to 15 chars
kvn@4413 5828 bind(COMPARE_TAIL_LONG);
kvn@4413 5829 movl(cnt2, result);
kvn@4413 5830 cmpl(cnt2, stride);
kvn@4413 5831 jccb(Assembler::less, COMPARE_SMALL_STR);
kvn@4413 5832
kvn@4413 5833 movdqu(vec1, Address(str1, 0));
kvn@4413 5834 pcmpestri(vec1, Address(str2, 0), pcmpmask);
kvn@4413 5835 jcc(Assembler::below, COMPARE_INDEX_CHAR);
kvn@4413 5836 subptr(cnt2, stride);
kvn@4413 5837 jccb(Assembler::zero, LENGTH_DIFF_LABEL);
kvn@4413 5838 lea(str1, Address(str1, result, scale));
kvn@4413 5839 lea(str2, Address(str2, result, scale));
kvn@4413 5840 negptr(cnt2);
kvn@4413 5841 jmpb(WHILE_HEAD_LABEL);
kvn@4413 5842
kvn@4413 5843 bind(COMPARE_SMALL_STR);
kvn@4413 5844 } else if (UseSSE42Intrinsics) {
twisti@4318 5845 Label COMPARE_WIDE_VECTORS, VECTOR_NOT_EQUAL, COMPARE_TAIL;
twisti@4318 5846 int pcmpmask = 0x19;
kvn@4413 5847 // Setup to compare 8-char (16-byte) vectors,
kvn@4413 5848 // start from first character again because it has aligned address.
twisti@4318 5849 movl(result, cnt2);
twisti@4318 5850 andl(cnt2, ~(stride - 1)); // cnt2 holds the vector count
twisti@4318 5851 jccb(Assembler::zero, COMPARE_TAIL);
twisti@4318 5852
twisti@4318 5853 lea(str1, Address(str1, result, scale));
twisti@4318 5854 lea(str2, Address(str2, result, scale));
twisti@4318 5855 negptr(result);
twisti@4318 5856
twisti@4318 5857 // pcmpestri
twisti@4318 5858 // inputs:
twisti@4318 5859 // vec1- substring
twisti@4318 5860 // rax - negative string length (elements count)
twisti@4318 5861 // mem - scaned string
twisti@4318 5862 // rdx - string length (elements count)
twisti@4318 5863 // pcmpmask - cmp mode: 11000 (string compare with negated result)
twisti@4318 5864 // + 00 (unsigned bytes) or + 01 (unsigned shorts)
twisti@4318 5865 // outputs:
twisti@4318 5866 // rcx - first mismatched element index
twisti@4318 5867 assert(result == rax && cnt2 == rdx && cnt1 == rcx, "pcmpestri");
twisti@4318 5868
twisti@4318 5869 bind(COMPARE_WIDE_VECTORS);
twisti@4318 5870 movdqu(vec1, Address(str1, result, scale));
twisti@4318 5871 pcmpestri(vec1, Address(str2, result, scale), pcmpmask);
twisti@4318 5872 // After pcmpestri cnt1(rcx) contains mismatched element index
twisti@4318 5873
twisti@4318 5874 jccb(Assembler::below, VECTOR_NOT_EQUAL); // CF==1
twisti@4318 5875 addptr(result, stride);
twisti@4318 5876 subptr(cnt2, stride);
twisti@4318 5877 jccb(Assembler::notZero, COMPARE_WIDE_VECTORS);
twisti@4318 5878
twisti@4318 5879 // compare wide vectors tail
kvn@4413 5880 testptr(result, result);
twisti@4318 5881 jccb(Assembler::zero, LENGTH_DIFF_LABEL);
twisti@4318 5882
twisti@4318 5883 movl(cnt2, stride);
twisti@4318 5884 movl(result, stride);
twisti@4318 5885 negptr(result);
twisti@4318 5886 movdqu(vec1, Address(str1, result, scale));
twisti@4318 5887 pcmpestri(vec1, Address(str2, result, scale), pcmpmask);
twisti@4318 5888 jccb(Assembler::aboveEqual, LENGTH_DIFF_LABEL);
twisti@4318 5889
twisti@4318 5890 // Mismatched characters in the vectors
twisti@4318 5891 bind(VECTOR_NOT_EQUAL);
kvn@4413 5892 addptr(cnt1, result);
kvn@4413 5893 load_unsigned_short(result, Address(str1, cnt1, scale));
kvn@4413 5894 load_unsigned_short(cnt2, Address(str2, cnt1, scale));
kvn@4413 5895 subl(result, cnt2);
twisti@4318 5896 jmpb(POP_LABEL);
twisti@4318 5897
twisti@4318 5898 bind(COMPARE_TAIL); // limit is zero
twisti@4318 5899 movl(cnt2, result);
twisti@4318 5900 // Fallthru to tail compare
twisti@4318 5901 }
twisti@4318 5902 // Shift str2 and str1 to the end of the arrays, negate min
kvn@4413 5903 lea(str1, Address(str1, cnt2, scale));
kvn@4413 5904 lea(str2, Address(str2, cnt2, scale));
kvn@4413 5905 decrementl(cnt2); // first character was compared already
twisti@4318 5906 negptr(cnt2);
twisti@4318 5907
twisti@4318 5908 // Compare the rest of the elements
twisti@4318 5909 bind(WHILE_HEAD_LABEL);
twisti@4318 5910 load_unsigned_short(result, Address(str1, cnt2, scale, 0));
twisti@4318 5911 load_unsigned_short(cnt1, Address(str2, cnt2, scale, 0));
twisti@4318 5912 subl(result, cnt1);
twisti@4318 5913 jccb(Assembler::notZero, POP_LABEL);
twisti@4318 5914 increment(cnt2);
twisti@4318 5915 jccb(Assembler::notZero, WHILE_HEAD_LABEL);
twisti@4318 5916
twisti@4318 5917 // Strings are equal up to min length. Return the length difference.
twisti@4318 5918 bind(LENGTH_DIFF_LABEL);
twisti@4318 5919 pop(result);
twisti@4318 5920 jmpb(DONE_LABEL);
twisti@4318 5921
twisti@4318 5922 // Discard the stored length difference
twisti@4318 5923 bind(POP_LABEL);
twisti@4318 5924 pop(cnt1);
twisti@4318 5925
twisti@4318 5926 // That's it
twisti@4318 5927 bind(DONE_LABEL);
twisti@4318 5928 }
twisti@4318 5929
twisti@4318 5930 // Compare char[] arrays aligned to 4 bytes or substrings.
twisti@4318 5931 void MacroAssembler::char_arrays_equals(bool is_array_equ, Register ary1, Register ary2,
twisti@4318 5932 Register limit, Register result, Register chr,
twisti@4318 5933 XMMRegister vec1, XMMRegister vec2) {
twisti@4318 5934 ShortBranchVerifier sbv(this);
twisti@4318 5935 Label TRUE_LABEL, FALSE_LABEL, DONE, COMPARE_VECTORS, COMPARE_CHAR;
twisti@4318 5936
twisti@4318 5937 int length_offset = arrayOopDesc::length_offset_in_bytes();
twisti@4318 5938 int base_offset = arrayOopDesc::base_offset_in_bytes(T_CHAR);
twisti@4318 5939
twisti@4318 5940 // Check the input args
twisti@4318 5941 cmpptr(ary1, ary2);
twisti@4318 5942 jcc(Assembler::equal, TRUE_LABEL);
twisti@4318 5943
twisti@4318 5944 if (is_array_equ) {
twisti@4318 5945 // Need additional checks for arrays_equals.
twisti@4318 5946 testptr(ary1, ary1);
twisti@4318 5947 jcc(Assembler::zero, FALSE_LABEL);
twisti@4318 5948 testptr(ary2, ary2);
twisti@4318 5949 jcc(Assembler::zero, FALSE_LABEL);
twisti@4318 5950
twisti@4318 5951 // Check the lengths
twisti@4318 5952 movl(limit, Address(ary1, length_offset));
twisti@4318 5953 cmpl(limit, Address(ary2, length_offset));
twisti@4318 5954 jcc(Assembler::notEqual, FALSE_LABEL);
twisti@4318 5955 }
twisti@4318 5956
twisti@4318 5957 // count == 0
twisti@4318 5958 testl(limit, limit);
twisti@4318 5959 jcc(Assembler::zero, TRUE_LABEL);
twisti@4318 5960
twisti@4318 5961 if (is_array_equ) {
twisti@4318 5962 // Load array address
twisti@4318 5963 lea(ary1, Address(ary1, base_offset));
twisti@4318 5964 lea(ary2, Address(ary2, base_offset));
twisti@4318 5965 }
twisti@4318 5966
twisti@4318 5967 shll(limit, 1); // byte count != 0
twisti@4318 5968 movl(result, limit); // copy
twisti@4318 5969
kvn@4413 5970 if (UseAVX >= 2) {
kvn@4413 5971 // With AVX2, use 32-byte vector compare
kvn@4413 5972 Label COMPARE_WIDE_VECTORS, COMPARE_TAIL;
kvn@4413 5973
kvn@4413 5974 // Compare 32-byte vectors
kvn@4413 5975 andl(result, 0x0000001e); // tail count (in bytes)
kvn@4413 5976 andl(limit, 0xffffffe0); // vector count (in bytes)
kvn@4413 5977 jccb(Assembler::zero, COMPARE_TAIL);
kvn@4413 5978
kvn@4413 5979 lea(ary1, Address(ary1, limit, Address::times_1));
kvn@4413 5980 lea(ary2, Address(ary2, limit, Address::times_1));
kvn@4413 5981 negptr(limit);
kvn@4413 5982
kvn@4413 5983 bind(COMPARE_WIDE_VECTORS);
kvn@4413 5984 vmovdqu(vec1, Address(ary1, limit, Address::times_1));
kvn@4413 5985 vmovdqu(vec2, Address(ary2, limit, Address::times_1));
kvn@4413 5986 vpxor(vec1, vec2);
kvn@4413 5987
kvn@4413 5988 vptest(vec1, vec1);
kvn@4413 5989 jccb(Assembler::notZero, FALSE_LABEL);
kvn@4413 5990 addptr(limit, 32);
kvn@4413 5991 jcc(Assembler::notZero, COMPARE_WIDE_VECTORS);
kvn@4413 5992
kvn@4413 5993 testl(result, result);
kvn@4413 5994 jccb(Assembler::zero, TRUE_LABEL);
kvn@4413 5995
kvn@4413 5996 vmovdqu(vec1, Address(ary1, result, Address::times_1, -32));
kvn@4413 5997 vmovdqu(vec2, Address(ary2, result, Address::times_1, -32));
kvn@4413 5998 vpxor(vec1, vec2);
kvn@4413 5999
kvn@4413 6000 vptest(vec1, vec1);
kvn@4413 6001 jccb(Assembler::notZero, FALSE_LABEL);
kvn@4413 6002 jmpb(TRUE_LABEL);
kvn@4413 6003
kvn@4413 6004 bind(COMPARE_TAIL); // limit is zero
kvn@4413 6005 movl(limit, result);
kvn@4413 6006 // Fallthru to tail compare
kvn@4413 6007 } else if (UseSSE42Intrinsics) {
twisti@4318 6008 // With SSE4.2, use double quad vector compare
twisti@4318 6009 Label COMPARE_WIDE_VECTORS, COMPARE_TAIL;
twisti@4318 6010
twisti@4318 6011 // Compare 16-byte vectors
twisti@4318 6012 andl(result, 0x0000000e); // tail count (in bytes)
twisti@4318 6013 andl(limit, 0xfffffff0); // vector count (in bytes)
twisti@4318 6014 jccb(Assembler::zero, COMPARE_TAIL);
twisti@4318 6015
twisti@4318 6016 lea(ary1, Address(ary1, limit, Address::times_1));
twisti@4318 6017 lea(ary2, Address(ary2, limit, Address::times_1));
twisti@4318 6018 negptr(limit);
twisti@4318 6019
twisti@4318 6020 bind(COMPARE_WIDE_VECTORS);
twisti@4318 6021 movdqu(vec1, Address(ary1, limit, Address::times_1));
twisti@4318 6022 movdqu(vec2, Address(ary2, limit, Address::times_1));
twisti@4318 6023 pxor(vec1, vec2);
twisti@4318 6024
twisti@4318 6025 ptest(vec1, vec1);
twisti@4318 6026 jccb(Assembler::notZero, FALSE_LABEL);
twisti@4318 6027 addptr(limit, 16);
twisti@4318 6028 jcc(Assembler::notZero, COMPARE_WIDE_VECTORS);
twisti@4318 6029
twisti@4318 6030 testl(result, result);
twisti@4318 6031 jccb(Assembler::zero, TRUE_LABEL);
twisti@4318 6032
twisti@4318 6033 movdqu(vec1, Address(ary1, result, Address::times_1, -16));
twisti@4318 6034 movdqu(vec2, Address(ary2, result, Address::times_1, -16));
twisti@4318 6035 pxor(vec1, vec2);
twisti@4318 6036
twisti@4318 6037 ptest(vec1, vec1);
twisti@4318 6038 jccb(Assembler::notZero, FALSE_LABEL);
twisti@4318 6039 jmpb(TRUE_LABEL);
twisti@4318 6040
twisti@4318 6041 bind(COMPARE_TAIL); // limit is zero
twisti@4318 6042 movl(limit, result);
twisti@4318 6043 // Fallthru to tail compare
twisti@4318 6044 }
twisti@4318 6045
twisti@4318 6046 // Compare 4-byte vectors
twisti@4318 6047 andl(limit, 0xfffffffc); // vector count (in bytes)
twisti@4318 6048 jccb(Assembler::zero, COMPARE_CHAR);
twisti@4318 6049
twisti@4318 6050 lea(ary1, Address(ary1, limit, Address::times_1));
twisti@4318 6051 lea(ary2, Address(ary2, limit, Address::times_1));
twisti@4318 6052 negptr(limit);
twisti@4318 6053
twisti@4318 6054 bind(COMPARE_VECTORS);
twisti@4318 6055 movl(chr, Address(ary1, limit, Address::times_1));
twisti@4318 6056 cmpl(chr, Address(ary2, limit, Address::times_1));
twisti@4318 6057 jccb(Assembler::notEqual, FALSE_LABEL);
twisti@4318 6058 addptr(limit, 4);
twisti@4318 6059 jcc(Assembler::notZero, COMPARE_VECTORS);
twisti@4318 6060
twisti@4318 6061 // Compare trailing char (final 2 bytes), if any
twisti@4318 6062 bind(COMPARE_CHAR);
twisti@4318 6063 testl(result, 0x2); // tail char
twisti@4318 6064 jccb(Assembler::zero, TRUE_LABEL);
twisti@4318 6065 load_unsigned_short(chr, Address(ary1, 0));
twisti@4318 6066 load_unsigned_short(limit, Address(ary2, 0));
twisti@4318 6067 cmpl(chr, limit);
twisti@4318 6068 jccb(Assembler::notEqual, FALSE_LABEL);
twisti@4318 6069
twisti@4318 6070 bind(TRUE_LABEL);
twisti@4318 6071 movl(result, 1); // return true
twisti@4318 6072 jmpb(DONE);
twisti@4318 6073
twisti@4318 6074 bind(FALSE_LABEL);
twisti@4318 6075 xorl(result, result); // return false
twisti@4318 6076
twisti@4318 6077 // That's it
twisti@4318 6078 bind(DONE);
kvn@4873 6079 if (UseAVX >= 2) {
kvn@4873 6080 // clean upper bits of YMM registers
kvn@4873 6081 vzeroupper();
kvn@4873 6082 }
twisti@4318 6083 }
twisti@4318 6084
twisti@4318 6085 void MacroAssembler::generate_fill(BasicType t, bool aligned,
twisti@4318 6086 Register to, Register value, Register count,
twisti@4318 6087 Register rtmp, XMMRegister xtmp) {
twisti@4318 6088 ShortBranchVerifier sbv(this);
twisti@4318 6089 assert_different_registers(to, value, count, rtmp);
twisti@4318 6090 Label L_exit, L_skip_align1, L_skip_align2, L_fill_byte;
twisti@4318 6091 Label L_fill_2_bytes, L_fill_4_bytes;
twisti@4318 6092
twisti@4318 6093 int shift = -1;
twisti@4318 6094 switch (t) {
twisti@4318 6095 case T_BYTE:
twisti@4318 6096 shift = 2;
twisti@4318 6097 break;
twisti@4318 6098 case T_SHORT:
twisti@4318 6099 shift = 1;
twisti@4318 6100 break;
twisti@4318 6101 case T_INT:
twisti@4318 6102 shift = 0;
twisti@4318 6103 break;
twisti@4318 6104 default: ShouldNotReachHere();
twisti@4318 6105 }
twisti@4318 6106
twisti@4318 6107 if (t == T_BYTE) {
twisti@4318 6108 andl(value, 0xff);
twisti@4318 6109 movl(rtmp, value);
twisti@4318 6110 shll(rtmp, 8);
twisti@4318 6111 orl(value, rtmp);
twisti@4318 6112 }
twisti@4318 6113 if (t == T_SHORT) {
twisti@4318 6114 andl(value, 0xffff);
twisti@4318 6115 }
twisti@4318 6116 if (t == T_BYTE || t == T_SHORT) {
twisti@4318 6117 movl(rtmp, value);
twisti@4318 6118 shll(rtmp, 16);
twisti@4318 6119 orl(value, rtmp);
twisti@4318 6120 }
twisti@4318 6121
twisti@4318 6122 cmpl(count, 2<<shift); // Short arrays (< 8 bytes) fill by element
twisti@4318 6123 jcc(Assembler::below, L_fill_4_bytes); // use unsigned cmp
twisti@4318 6124 if (!UseUnalignedLoadStores && !aligned && (t == T_BYTE || t == T_SHORT)) {
twisti@4318 6125 // align source address at 4 bytes address boundary
twisti@4318 6126 if (t == T_BYTE) {
twisti@4318 6127 // One byte misalignment happens only for byte arrays
twisti@4318 6128 testptr(to, 1);
twisti@4318 6129 jccb(Assembler::zero, L_skip_align1);
twisti@4318 6130 movb(Address(to, 0), value);
twisti@4318 6131 increment(to);
twisti@4318 6132 decrement(count);
twisti@4318 6133 BIND(L_skip_align1);
twisti@4318 6134 }
twisti@4318 6135 // Two bytes misalignment happens only for byte and short (char) arrays
twisti@4318 6136 testptr(to, 2);
twisti@4318 6137 jccb(Assembler::zero, L_skip_align2);
twisti@4318 6138 movw(Address(to, 0), value);
twisti@4318 6139 addptr(to, 2);
twisti@4318 6140 subl(count, 1<<(shift-1));
twisti@4318 6141 BIND(L_skip_align2);
twisti@4318 6142 }
twisti@4318 6143 if (UseSSE < 2) {
twisti@4318 6144 Label L_fill_32_bytes_loop, L_check_fill_8_bytes, L_fill_8_bytes_loop, L_fill_8_bytes;
twisti@4318 6145 // Fill 32-byte chunks
twisti@4318 6146 subl(count, 8 << shift);
twisti@4318 6147 jcc(Assembler::less, L_check_fill_8_bytes);
twisti@4318 6148 align(16);
twisti@4318 6149
twisti@4318 6150 BIND(L_fill_32_bytes_loop);
twisti@4318 6151
twisti@4318 6152 for (int i = 0; i < 32; i += 4) {
twisti@4318 6153 movl(Address(to, i), value);
twisti@4318 6154 }
twisti@4318 6155
twisti@4318 6156 addptr(to, 32);
twisti@4318 6157 subl(count, 8 << shift);
twisti@4318 6158 jcc(Assembler::greaterEqual, L_fill_32_bytes_loop);
twisti@4318 6159 BIND(L_check_fill_8_bytes);
twisti@4318 6160 addl(count, 8 << shift);
twisti@4318 6161 jccb(Assembler::zero, L_exit);
twisti@4318 6162 jmpb(L_fill_8_bytes);
twisti@4318 6163
twisti@4318 6164 //
twisti@4318 6165 // length is too short, just fill qwords
twisti@4318 6166 //
twisti@4318 6167 BIND(L_fill_8_bytes_loop);
twisti@4318 6168 movl(Address(to, 0), value);
twisti@4318 6169 movl(Address(to, 4), value);
twisti@4318 6170 addptr(to, 8);
twisti@4318 6171 BIND(L_fill_8_bytes);
twisti@4318 6172 subl(count, 1 << (shift + 1));
twisti@4318 6173 jcc(Assembler::greaterEqual, L_fill_8_bytes_loop);
twisti@4318 6174 // fall through to fill 4 bytes
twisti@4318 6175 } else {
twisti@4318 6176 Label L_fill_32_bytes;
twisti@4318 6177 if (!UseUnalignedLoadStores) {
twisti@4318 6178 // align to 8 bytes, we know we are 4 byte aligned to start
twisti@4318 6179 testptr(to, 4);
twisti@4318 6180 jccb(Assembler::zero, L_fill_32_bytes);
twisti@4318 6181 movl(Address(to, 0), value);
twisti@4318 6182 addptr(to, 4);
twisti@4318 6183 subl(count, 1<<shift);
twisti@4318 6184 }
twisti@4318 6185 BIND(L_fill_32_bytes);
twisti@4318 6186 {
twisti@4318 6187 assert( UseSSE >= 2, "supported cpu only" );
twisti@4318 6188 Label L_fill_32_bytes_loop, L_check_fill_8_bytes, L_fill_8_bytes_loop, L_fill_8_bytes;
twisti@4318 6189 movdl(xtmp, value);
kvn@4411 6190 if (UseAVX >= 2 && UseUnalignedLoadStores) {
kvn@4411 6191 // Fill 64-byte chunks
kvn@4411 6192 Label L_fill_64_bytes_loop, L_check_fill_32_bytes;
kvn@4411 6193 vpbroadcastd(xtmp, xtmp);
kvn@4411 6194
kvn@4411 6195 subl(count, 16 << shift);
kvn@4411 6196 jcc(Assembler::less, L_check_fill_32_bytes);
kvn@4411 6197 align(16);
kvn@4411 6198
kvn@4411 6199 BIND(L_fill_64_bytes_loop);
kvn@4411 6200 vmovdqu(Address(to, 0), xtmp);
kvn@4411 6201 vmovdqu(Address(to, 32), xtmp);
kvn@4411 6202 addptr(to, 64);
kvn@4411 6203 subl(count, 16 << shift);
kvn@4411 6204 jcc(Assembler::greaterEqual, L_fill_64_bytes_loop);
kvn@4411 6205
kvn@4411 6206 BIND(L_check_fill_32_bytes);
kvn@4411 6207 addl(count, 8 << shift);
kvn@4411 6208 jccb(Assembler::less, L_check_fill_8_bytes);
kvn@4411 6209 vmovdqu(Address(to, 0), xtmp);
kvn@4411 6210 addptr(to, 32);
kvn@4411 6211 subl(count, 8 << shift);
kvn@4873 6212
kvn@4873 6213 BIND(L_check_fill_8_bytes);
kvn@4873 6214 // clean upper bits of YMM registers
kvn@4873 6215 vzeroupper();
twisti@4318 6216 } else {
kvn@4411 6217 // Fill 32-byte chunks
kvn@4411 6218 pshufd(xtmp, xtmp, 0);
kvn@4411 6219
kvn@4411 6220 subl(count, 8 << shift);
kvn@4411 6221 jcc(Assembler::less, L_check_fill_8_bytes);
kvn@4411 6222 align(16);
kvn@4411 6223
kvn@4411 6224 BIND(L_fill_32_bytes_loop);
kvn@4411 6225
kvn@4411 6226 if (UseUnalignedLoadStores) {
kvn@4411 6227 movdqu(Address(to, 0), xtmp);
kvn@4411 6228 movdqu(Address(to, 16), xtmp);
kvn@4411 6229 } else {
kvn@4411 6230 movq(Address(to, 0), xtmp);
kvn@4411 6231 movq(Address(to, 8), xtmp);
kvn@4411 6232 movq(Address(to, 16), xtmp);
kvn@4411 6233 movq(Address(to, 24), xtmp);
kvn@4411 6234 }
kvn@4411 6235
kvn@4411 6236 addptr(to, 32);
kvn@4411 6237 subl(count, 8 << shift);
kvn@4411 6238 jcc(Assembler::greaterEqual, L_fill_32_bytes_loop);
kvn@4873 6239
kvn@4873 6240 BIND(L_check_fill_8_bytes);
twisti@4318 6241 }
twisti@4318 6242 addl(count, 8 << shift);
twisti@4318 6243 jccb(Assembler::zero, L_exit);
twisti@4318 6244 jmpb(L_fill_8_bytes);
twisti@4318 6245
twisti@4318 6246 //
twisti@4318 6247 // length is too short, just fill qwords
twisti@4318 6248 //
twisti@4318 6249 BIND(L_fill_8_bytes_loop);
twisti@4318 6250 movq(Address(to, 0), xtmp);
twisti@4318 6251 addptr(to, 8);
twisti@4318 6252 BIND(L_fill_8_bytes);
twisti@4318 6253 subl(count, 1 << (shift + 1));
twisti@4318 6254 jcc(Assembler::greaterEqual, L_fill_8_bytes_loop);
twisti@4318 6255 }
twisti@4318 6256 }
twisti@4318 6257 // fill trailing 4 bytes
twisti@4318 6258 BIND(L_fill_4_bytes);
twisti@4318 6259 testl(count, 1<<shift);
twisti@4318 6260 jccb(Assembler::zero, L_fill_2_bytes);
twisti@4318 6261 movl(Address(to, 0), value);
twisti@4318 6262 if (t == T_BYTE || t == T_SHORT) {
twisti@4318 6263 addptr(to, 4);
twisti@4318 6264 BIND(L_fill_2_bytes);
twisti@4318 6265 // fill trailing 2 bytes
twisti@4318 6266 testl(count, 1<<(shift-1));
twisti@4318 6267 jccb(Assembler::zero, L_fill_byte);
twisti@4318 6268 movw(Address(to, 0), value);
twisti@4318 6269 if (t == T_BYTE) {
twisti@4318 6270 addptr(to, 2);
twisti@4318 6271 BIND(L_fill_byte);
twisti@4318 6272 // fill trailing byte
twisti@4318 6273 testl(count, 1);
twisti@4318 6274 jccb(Assembler::zero, L_exit);
twisti@4318 6275 movb(Address(to, 0), value);
twisti@4318 6276 } else {
twisti@4318 6277 BIND(L_fill_byte);
twisti@4318 6278 }
twisti@4318 6279 } else {
twisti@4318 6280 BIND(L_fill_2_bytes);
twisti@4318 6281 }
twisti@4318 6282 BIND(L_exit);
twisti@4318 6283 }
kvn@4479 6284
kvn@4479 6285 // encode char[] to byte[] in ISO_8859_1
kvn@4479 6286 void MacroAssembler::encode_iso_array(Register src, Register dst, Register len,
kvn@4479 6287 XMMRegister tmp1Reg, XMMRegister tmp2Reg,
kvn@4479 6288 XMMRegister tmp3Reg, XMMRegister tmp4Reg,
kvn@4479 6289 Register tmp5, Register result) {
kvn@4479 6290 // rsi: src
kvn@4479 6291 // rdi: dst
kvn@4479 6292 // rdx: len
kvn@4479 6293 // rcx: tmp5
kvn@4479 6294 // rax: result
kvn@4479 6295 ShortBranchVerifier sbv(this);
kvn@4479 6296 assert_different_registers(src, dst, len, tmp5, result);
kvn@4479 6297 Label L_done, L_copy_1_char, L_copy_1_char_exit;
kvn@4479 6298
kvn@4479 6299 // set result
kvn@4479 6300 xorl(result, result);
kvn@4479 6301 // check for zero length
kvn@4479 6302 testl(len, len);
kvn@4479 6303 jcc(Assembler::zero, L_done);
kvn@4479 6304 movl(result, len);
kvn@4479 6305
kvn@4479 6306 // Setup pointers
kvn@4479 6307 lea(src, Address(src, len, Address::times_2)); // char[]
kvn@4479 6308 lea(dst, Address(dst, len, Address::times_1)); // byte[]
kvn@4479 6309 negptr(len);
kvn@4479 6310
kvn@4479 6311 if (UseSSE42Intrinsics || UseAVX >= 2) {
kvn@4479 6312 Label L_chars_8_check, L_copy_8_chars, L_copy_8_chars_exit;
kvn@4479 6313 Label L_chars_16_check, L_copy_16_chars, L_copy_16_chars_exit;
kvn@4479 6314
kvn@4479 6315 if (UseAVX >= 2) {
kvn@4479 6316 Label L_chars_32_check, L_copy_32_chars, L_copy_32_chars_exit;
kvn@4479 6317 movl(tmp5, 0xff00ff00); // create mask to test for Unicode chars in vector
kvn@4479 6318 movdl(tmp1Reg, tmp5);
kvn@4479 6319 vpbroadcastd(tmp1Reg, tmp1Reg);
kvn@4479 6320 jmpb(L_chars_32_check);
kvn@4479 6321
kvn@4479 6322 bind(L_copy_32_chars);
kvn@4479 6323 vmovdqu(tmp3Reg, Address(src, len, Address::times_2, -64));
kvn@4479 6324 vmovdqu(tmp4Reg, Address(src, len, Address::times_2, -32));
kvn@4479 6325 vpor(tmp2Reg, tmp3Reg, tmp4Reg, /* vector256 */ true);
kvn@4479 6326 vptest(tmp2Reg, tmp1Reg); // check for Unicode chars in vector
kvn@4479 6327 jccb(Assembler::notZero, L_copy_32_chars_exit);
kvn@4479 6328 vpackuswb(tmp3Reg, tmp3Reg, tmp4Reg, /* vector256 */ true);
kvn@4479 6329 vpermq(tmp4Reg, tmp3Reg, 0xD8, /* vector256 */ true);
kvn@4479 6330 vmovdqu(Address(dst, len, Address::times_1, -32), tmp4Reg);
kvn@4479 6331
kvn@4479 6332 bind(L_chars_32_check);
kvn@4479 6333 addptr(len, 32);
kvn@4479 6334 jccb(Assembler::lessEqual, L_copy_32_chars);
kvn@4479 6335
kvn@4479 6336 bind(L_copy_32_chars_exit);
kvn@4479 6337 subptr(len, 16);
kvn@4479 6338 jccb(Assembler::greater, L_copy_16_chars_exit);
kvn@4479 6339
kvn@4479 6340 } else if (UseSSE42Intrinsics) {
kvn@4479 6341 movl(tmp5, 0xff00ff00); // create mask to test for Unicode chars in vector
kvn@4479 6342 movdl(tmp1Reg, tmp5);
kvn@4479 6343 pshufd(tmp1Reg, tmp1Reg, 0);
kvn@4479 6344 jmpb(L_chars_16_check);
kvn@4479 6345 }
kvn@4479 6346
kvn@4479 6347 bind(L_copy_16_chars);
kvn@4479 6348 if (UseAVX >= 2) {
kvn@4479 6349 vmovdqu(tmp2Reg, Address(src, len, Address::times_2, -32));
kvn@4479 6350 vptest(tmp2Reg, tmp1Reg);
kvn@4479 6351 jccb(Assembler::notZero, L_copy_16_chars_exit);
kvn@4479 6352 vpackuswb(tmp2Reg, tmp2Reg, tmp1Reg, /* vector256 */ true);
kvn@4479 6353 vpermq(tmp3Reg, tmp2Reg, 0xD8, /* vector256 */ true);
kvn@4479 6354 } else {
kvn@4479 6355 if (UseAVX > 0) {
kvn@4479 6356 movdqu(tmp3Reg, Address(src, len, Address::times_2, -32));
kvn@4479 6357 movdqu(tmp4Reg, Address(src, len, Address::times_2, -16));
kvn@4479 6358 vpor(tmp2Reg, tmp3Reg, tmp4Reg, /* vector256 */ false);
kvn@4479 6359 } else {
kvn@4479 6360 movdqu(tmp3Reg, Address(src, len, Address::times_2, -32));
kvn@4479 6361 por(tmp2Reg, tmp3Reg);
kvn@4479 6362 movdqu(tmp4Reg, Address(src, len, Address::times_2, -16));
kvn@4479 6363 por(tmp2Reg, tmp4Reg);
kvn@4479 6364 }
kvn@4479 6365 ptest(tmp2Reg, tmp1Reg); // check for Unicode chars in vector
kvn@4479 6366 jccb(Assembler::notZero, L_copy_16_chars_exit);
kvn@4479 6367 packuswb(tmp3Reg, tmp4Reg);
kvn@4479 6368 }
kvn@4479 6369 movdqu(Address(dst, len, Address::times_1, -16), tmp3Reg);
kvn@4479 6370
kvn@4479 6371 bind(L_chars_16_check);
kvn@4479 6372 addptr(len, 16);
kvn@4479 6373 jccb(Assembler::lessEqual, L_copy_16_chars);
kvn@4479 6374
kvn@4479 6375 bind(L_copy_16_chars_exit);
kvn@4873 6376 if (UseAVX >= 2) {
kvn@4873 6377 // clean upper bits of YMM registers
kvn@4873 6378 vzeroupper();
kvn@4873 6379 }
kvn@4479 6380 subptr(len, 8);
kvn@4479 6381 jccb(Assembler::greater, L_copy_8_chars_exit);
kvn@4479 6382
kvn@4479 6383 bind(L_copy_8_chars);
kvn@4479 6384 movdqu(tmp3Reg, Address(src, len, Address::times_2, -16));
kvn@4479 6385 ptest(tmp3Reg, tmp1Reg);
kvn@4479 6386 jccb(Assembler::notZero, L_copy_8_chars_exit);
kvn@4479 6387 packuswb(tmp3Reg, tmp1Reg);
kvn@4479 6388 movq(Address(dst, len, Address::times_1, -8), tmp3Reg);
kvn@4479 6389 addptr(len, 8);
kvn@4479 6390 jccb(Assembler::lessEqual, L_copy_8_chars);
kvn@4479 6391
kvn@4479 6392 bind(L_copy_8_chars_exit);
kvn@4479 6393 subptr(len, 8);
kvn@4479 6394 jccb(Assembler::zero, L_done);
kvn@4479 6395 }
kvn@4479 6396
kvn@4479 6397 bind(L_copy_1_char);
kvn@4479 6398 load_unsigned_short(tmp5, Address(src, len, Address::times_2, 0));
kvn@4479 6399 testl(tmp5, 0xff00); // check if Unicode char
kvn@4479 6400 jccb(Assembler::notZero, L_copy_1_char_exit);
kvn@4479 6401 movb(Address(dst, len, Address::times_1, 0), tmp5);
kvn@4479 6402 addptr(len, 1);
kvn@4479 6403 jccb(Assembler::less, L_copy_1_char);
kvn@4479 6404
kvn@4479 6405 bind(L_copy_1_char_exit);
kvn@4479 6406 addptr(result, len); // len is negative count of not processed elements
kvn@4479 6407 bind(L_done);
kvn@4479 6408 }
kvn@4479 6409
drchase@5353 6410 /**
drchase@5353 6411 * Emits code to update CRC-32 with a byte value according to constants in table
drchase@5353 6412 *
drchase@5353 6413 * @param [in,out]crc Register containing the crc.
drchase@5353 6414 * @param [in]val Register containing the byte to fold into the CRC.
drchase@5353 6415 * @param [in]table Register containing the table of crc constants.
drchase@5353 6416 *
drchase@5353 6417 * uint32_t crc;
drchase@5353 6418 * val = crc_table[(val ^ crc) & 0xFF];
drchase@5353 6419 * crc = val ^ (crc >> 8);
drchase@5353 6420 *
drchase@5353 6421 */
drchase@5353 6422 void MacroAssembler::update_byte_crc32(Register crc, Register val, Register table) {
drchase@5353 6423 xorl(val, crc);
drchase@5353 6424 andl(val, 0xFF);
drchase@5353 6425 shrl(crc, 8); // unsigned shift
drchase@5353 6426 xorl(crc, Address(table, val, Address::times_4, 0));
drchase@5353 6427 }
drchase@5353 6428
drchase@5353 6429 /**
drchase@5353 6430 * Fold 128-bit data chunk
drchase@5353 6431 */
drchase@5353 6432 void MacroAssembler::fold_128bit_crc32(XMMRegister xcrc, XMMRegister xK, XMMRegister xtmp, Register buf, int offset) {
drchase@5353 6433 vpclmulhdq(xtmp, xK, xcrc); // [123:64]
drchase@5353 6434 vpclmulldq(xcrc, xK, xcrc); // [63:0]
drchase@5353 6435 vpxor(xcrc, xcrc, Address(buf, offset), false /* vector256 */);
drchase@5353 6436 pxor(xcrc, xtmp);
drchase@5353 6437 }
drchase@5353 6438
drchase@5353 6439 void MacroAssembler::fold_128bit_crc32(XMMRegister xcrc, XMMRegister xK, XMMRegister xtmp, XMMRegister xbuf) {
drchase@5353 6440 vpclmulhdq(xtmp, xK, xcrc);
drchase@5353 6441 vpclmulldq(xcrc, xK, xcrc);
drchase@5353 6442 pxor(xcrc, xbuf);
drchase@5353 6443 pxor(xcrc, xtmp);
drchase@5353 6444 }
drchase@5353 6445
drchase@5353 6446 /**
drchase@5353 6447 * 8-bit folds to compute 32-bit CRC
drchase@5353 6448 *
drchase@5353 6449 * uint64_t xcrc;
drchase@5353 6450 * timesXtoThe32[xcrc & 0xFF] ^ (xcrc >> 8);
drchase@5353 6451 */
drchase@5353 6452 void MacroAssembler::fold_8bit_crc32(XMMRegister xcrc, Register table, XMMRegister xtmp, Register tmp) {
drchase@5353 6453 movdl(tmp, xcrc);
drchase@5353 6454 andl(tmp, 0xFF);
drchase@5353 6455 movdl(xtmp, Address(table, tmp, Address::times_4, 0));
drchase@5353 6456 psrldq(xcrc, 1); // unsigned shift one byte
drchase@5353 6457 pxor(xcrc, xtmp);
drchase@5353 6458 }
drchase@5353 6459
drchase@5353 6460 /**
drchase@5353 6461 * uint32_t crc;
drchase@5353 6462 * timesXtoThe32[crc & 0xFF] ^ (crc >> 8);
drchase@5353 6463 */
drchase@5353 6464 void MacroAssembler::fold_8bit_crc32(Register crc, Register table, Register tmp) {
drchase@5353 6465 movl(tmp, crc);
drchase@5353 6466 andl(tmp, 0xFF);
drchase@5353 6467 shrl(crc, 8);
drchase@5353 6468 xorl(crc, Address(table, tmp, Address::times_4, 0));
drchase@5353 6469 }
drchase@5353 6470
drchase@5353 6471 /**
drchase@5353 6472 * @param crc register containing existing CRC (32-bit)
drchase@5353 6473 * @param buf register pointing to input byte buffer (byte*)
drchase@5353 6474 * @param len register containing number of bytes
drchase@5353 6475 * @param table register that will contain address of CRC table
drchase@5353 6476 * @param tmp scratch register
drchase@5353 6477 */
drchase@5353 6478 void MacroAssembler::kernel_crc32(Register crc, Register buf, Register len, Register table, Register tmp) {
drchase@5353 6479 assert_different_registers(crc, buf, len, table, tmp, rax);
drchase@5353 6480
drchase@5353 6481 Label L_tail, L_tail_restore, L_tail_loop, L_exit, L_align_loop, L_aligned;
drchase@5353 6482 Label L_fold_tail, L_fold_128b, L_fold_512b, L_fold_512b_loop, L_fold_tail_loop;
drchase@5353 6483
drchase@5353 6484 lea(table, ExternalAddress(StubRoutines::crc_table_addr()));
drchase@5353 6485 notl(crc); // ~crc
drchase@5353 6486 cmpl(len, 16);
drchase@5353 6487 jcc(Assembler::less, L_tail);
drchase@5353 6488
drchase@5353 6489 // Align buffer to 16 bytes
drchase@5353 6490 movl(tmp, buf);
drchase@5353 6491 andl(tmp, 0xF);
drchase@5353 6492 jccb(Assembler::zero, L_aligned);
drchase@5353 6493 subl(tmp, 16);
drchase@5353 6494 addl(len, tmp);
drchase@5353 6495
drchase@5353 6496 align(4);
drchase@5353 6497 BIND(L_align_loop);
drchase@5353 6498 movsbl(rax, Address(buf, 0)); // load byte with sign extension
drchase@5353 6499 update_byte_crc32(crc, rax, table);
drchase@5353 6500 increment(buf);
drchase@5353 6501 incrementl(tmp);
drchase@5353 6502 jccb(Assembler::less, L_align_loop);
drchase@5353 6503
drchase@5353 6504 BIND(L_aligned);
drchase@5353 6505 movl(tmp, len); // save
drchase@5353 6506 shrl(len, 4);
drchase@5353 6507 jcc(Assembler::zero, L_tail_restore);
drchase@5353 6508
drchase@5353 6509 // Fold crc into first bytes of vector
drchase@5353 6510 movdqa(xmm1, Address(buf, 0));
drchase@5353 6511 movdl(rax, xmm1);
drchase@5353 6512 xorl(crc, rax);
drchase@5353 6513 pinsrd(xmm1, crc, 0);
drchase@5353 6514 addptr(buf, 16);
drchase@5353 6515 subl(len, 4); // len > 0
drchase@5353 6516 jcc(Assembler::less, L_fold_tail);
drchase@5353 6517
drchase@5353 6518 movdqa(xmm2, Address(buf, 0));
drchase@5353 6519 movdqa(xmm3, Address(buf, 16));
drchase@5353 6520 movdqa(xmm4, Address(buf, 32));
drchase@5353 6521 addptr(buf, 48);
drchase@5353 6522 subl(len, 3);
drchase@5353 6523 jcc(Assembler::lessEqual, L_fold_512b);
drchase@5353 6524
drchase@5353 6525 // Fold total 512 bits of polynomial on each iteration,
drchase@5353 6526 // 128 bits per each of 4 parallel streams.
drchase@5353 6527 movdqu(xmm0, ExternalAddress(StubRoutines::x86::crc_by128_masks_addr() + 32));
drchase@5353 6528
drchase@5353 6529 align(32);
drchase@5353 6530 BIND(L_fold_512b_loop);
drchase@5353 6531 fold_128bit_crc32(xmm1, xmm0, xmm5, buf, 0);
drchase@5353 6532 fold_128bit_crc32(xmm2, xmm0, xmm5, buf, 16);
drchase@5353 6533 fold_128bit_crc32(xmm3, xmm0, xmm5, buf, 32);
drchase@5353 6534 fold_128bit_crc32(xmm4, xmm0, xmm5, buf, 48);
drchase@5353 6535 addptr(buf, 64);
drchase@5353 6536 subl(len, 4);
drchase@5353 6537 jcc(Assembler::greater, L_fold_512b_loop);
drchase@5353 6538
drchase@5353 6539 // Fold 512 bits to 128 bits.
drchase@5353 6540 BIND(L_fold_512b);
drchase@5353 6541 movdqu(xmm0, ExternalAddress(StubRoutines::x86::crc_by128_masks_addr() + 16));
drchase@5353 6542 fold_128bit_crc32(xmm1, xmm0, xmm5, xmm2);
drchase@5353 6543 fold_128bit_crc32(xmm1, xmm0, xmm5, xmm3);
drchase@5353 6544 fold_128bit_crc32(xmm1, xmm0, xmm5, xmm4);
drchase@5353 6545
drchase@5353 6546 // Fold the rest of 128 bits data chunks
drchase@5353 6547 BIND(L_fold_tail);
drchase@5353 6548 addl(len, 3);
drchase@5353 6549 jccb(Assembler::lessEqual, L_fold_128b);
drchase@5353 6550 movdqu(xmm0, ExternalAddress(StubRoutines::x86::crc_by128_masks_addr() + 16));
drchase@5353 6551
drchase@5353 6552 BIND(L_fold_tail_loop);
drchase@5353 6553 fold_128bit_crc32(xmm1, xmm0, xmm5, buf, 0);
drchase@5353 6554 addptr(buf, 16);
drchase@5353 6555 decrementl(len);
drchase@5353 6556 jccb(Assembler::greater, L_fold_tail_loop);
drchase@5353 6557
drchase@5353 6558 // Fold 128 bits in xmm1 down into 32 bits in crc register.
drchase@5353 6559 BIND(L_fold_128b);
drchase@5353 6560 movdqu(xmm0, ExternalAddress(StubRoutines::x86::crc_by128_masks_addr()));
drchase@5353 6561 vpclmulqdq(xmm2, xmm0, xmm1, 0x1);
drchase@5353 6562 vpand(xmm3, xmm0, xmm2, false /* vector256 */);
drchase@5353 6563 vpclmulqdq(xmm0, xmm0, xmm3, 0x1);
drchase@5353 6564 psrldq(xmm1, 8);
drchase@5353 6565 psrldq(xmm2, 4);
drchase@5353 6566 pxor(xmm0, xmm1);
drchase@5353 6567 pxor(xmm0, xmm2);
drchase@5353 6568
drchase@5353 6569 // 8 8-bit folds to compute 32-bit CRC.
drchase@5353 6570 for (int j = 0; j < 4; j++) {
drchase@5353 6571 fold_8bit_crc32(xmm0, table, xmm1, rax);
drchase@5353 6572 }
drchase@5353 6573 movdl(crc, xmm0); // mov 32 bits to general register
drchase@5353 6574 for (int j = 0; j < 4; j++) {
drchase@5353 6575 fold_8bit_crc32(crc, table, rax);
drchase@5353 6576 }
drchase@5353 6577
drchase@5353 6578 BIND(L_tail_restore);
drchase@5353 6579 movl(len, tmp); // restore
drchase@5353 6580 BIND(L_tail);
drchase@5353 6581 andl(len, 0xf);
drchase@5353 6582 jccb(Assembler::zero, L_exit);
drchase@5353 6583
drchase@5353 6584 // Fold the rest of bytes
drchase@5353 6585 align(4);
drchase@5353 6586 BIND(L_tail_loop);
drchase@5353 6587 movsbl(rax, Address(buf, 0)); // load byte with sign extension
drchase@5353 6588 update_byte_crc32(crc, rax, table);
drchase@5353 6589 increment(buf);
drchase@5353 6590 decrementl(len);
drchase@5353 6591 jccb(Assembler::greater, L_tail_loop);
drchase@5353 6592
drchase@5353 6593 BIND(L_exit);
drchase@5353 6594 notl(crc); // ~c
drchase@5353 6595 }
drchase@5353 6596
twisti@4318 6597 #undef BIND
twisti@4318 6598 #undef BLOCK_COMMENT
twisti@4318 6599
twisti@4318 6600
twisti@4318 6601 Assembler::Condition MacroAssembler::negate_condition(Assembler::Condition cond) {
twisti@4318 6602 switch (cond) {
twisti@4318 6603 // Note some conditions are synonyms for others
twisti@4318 6604 case Assembler::zero: return Assembler::notZero;
twisti@4318 6605 case Assembler::notZero: return Assembler::zero;
twisti@4318 6606 case Assembler::less: return Assembler::greaterEqual;
twisti@4318 6607 case Assembler::lessEqual: return Assembler::greater;
twisti@4318 6608 case Assembler::greater: return Assembler::lessEqual;
twisti@4318 6609 case Assembler::greaterEqual: return Assembler::less;
twisti@4318 6610 case Assembler::below: return Assembler::aboveEqual;
twisti@4318 6611 case Assembler::belowEqual: return Assembler::above;
twisti@4318 6612 case Assembler::above: return Assembler::belowEqual;
twisti@4318 6613 case Assembler::aboveEqual: return Assembler::below;
twisti@4318 6614 case Assembler::overflow: return Assembler::noOverflow;
twisti@4318 6615 case Assembler::noOverflow: return Assembler::overflow;
twisti@4318 6616 case Assembler::negative: return Assembler::positive;
twisti@4318 6617 case Assembler::positive: return Assembler::negative;
twisti@4318 6618 case Assembler::parity: return Assembler::noParity;
twisti@4318 6619 case Assembler::noParity: return Assembler::parity;
twisti@4318 6620 }
twisti@4318 6621 ShouldNotReachHere(); return Assembler::overflow;
twisti@4318 6622 }
twisti@4318 6623
twisti@4318 6624 SkipIfEqual::SkipIfEqual(
twisti@4318 6625 MacroAssembler* masm, const bool* flag_addr, bool value) {
twisti@4318 6626 _masm = masm;
twisti@4318 6627 _masm->cmp8(ExternalAddress((address)flag_addr), value);
twisti@4318 6628 _masm->jcc(Assembler::equal, _label);
twisti@4318 6629 }
twisti@4318 6630
twisti@4318 6631 SkipIfEqual::~SkipIfEqual() {
twisti@4318 6632 _masm->bind(_label);
twisti@4318 6633 }

mercurial