src/cpu/x86/vm/macroAssembler_x86.hpp

Wed, 17 Jun 2015 17:48:25 -0700

author
ascarpino
date
Wed, 17 Jun 2015 17:48:25 -0700
changeset 9788
44ef77ad417c
parent 9669
32bc598624bd
child 9703
2fdf635bcf28
permissions
-rw-r--r--

8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
Reviewed-by: kvn, jrose, phh

twisti@4318 1 /*
dbuck@8997 2 * Copyright (c) 1997, 2017, 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 #ifndef CPU_X86_VM_MACROASSEMBLER_X86_HPP
twisti@4318 26 #define CPU_X86_VM_MACROASSEMBLER_X86_HPP
twisti@4318 27
twisti@4318 28 #include "asm/assembler.hpp"
jprovino@4542 29 #include "utilities/macros.hpp"
kvn@6429 30 #include "runtime/rtmLocking.hpp"
twisti@4318 31
twisti@4318 32
twisti@4318 33 // MacroAssembler extends Assembler by frequently used macros.
twisti@4318 34 //
twisti@4318 35 // Instructions for which a 'better' code sequence exists depending
twisti@4318 36 // on arguments should also go in here.
twisti@4318 37
twisti@4318 38 class MacroAssembler: public Assembler {
twisti@4318 39 friend class LIR_Assembler;
twisti@4318 40 friend class Runtime1; // as_Address()
twisti@4318 41
twisti@4318 42 protected:
twisti@4318 43
twisti@4318 44 Address as_Address(AddressLiteral adr);
twisti@4318 45 Address as_Address(ArrayAddress adr);
twisti@4318 46
twisti@4318 47 // Support for VM calls
twisti@4318 48 //
twisti@4318 49 // This is the base routine called by the different versions of call_VM_leaf. The interpreter
twisti@4318 50 // may customize this version by overriding it for its purposes (e.g., to save/restore
twisti@4318 51 // additional registers when doing a VM call).
twisti@4318 52 #ifdef CC_INTERP
twisti@4318 53 // c++ interpreter never wants to use interp_masm version of call_VM
twisti@4318 54 #define VIRTUAL
twisti@4318 55 #else
twisti@4318 56 #define VIRTUAL virtual
twisti@4318 57 #endif
twisti@4318 58
twisti@4318 59 VIRTUAL void call_VM_leaf_base(
twisti@4318 60 address entry_point, // the entry point
twisti@4318 61 int number_of_arguments // the number of arguments to pop after the call
twisti@4318 62 );
twisti@4318 63
twisti@4318 64 // This is the base routine called by the different versions of call_VM. The interpreter
twisti@4318 65 // may customize this version by overriding it for its purposes (e.g., to save/restore
twisti@4318 66 // additional registers when doing a VM call).
twisti@4318 67 //
twisti@4318 68 // If no java_thread register is specified (noreg) than rdi will be used instead. call_VM_base
twisti@4318 69 // returns the register which contains the thread upon return. If a thread register has been
twisti@4318 70 // specified, the return value will correspond to that register. If no last_java_sp is specified
twisti@4318 71 // (noreg) than rsp will be used instead.
twisti@4318 72 VIRTUAL void call_VM_base( // returns the register containing the thread upon return
twisti@4318 73 Register oop_result, // where an oop-result ends up if any; use noreg otherwise
twisti@4318 74 Register java_thread, // the thread if computed before ; use noreg otherwise
twisti@4318 75 Register last_java_sp, // to set up last_Java_frame in stubs; use noreg otherwise
twisti@4318 76 address entry_point, // the entry point
twisti@4318 77 int number_of_arguments, // the number of arguments (w/o thread) to pop after the call
twisti@4318 78 bool check_exceptions // whether to check for pending exceptions after return
twisti@4318 79 );
twisti@4318 80
twisti@4318 81 // These routines should emit JVMTI PopFrame and ForceEarlyReturn handling code.
twisti@4318 82 // The implementation is only non-empty for the InterpreterMacroAssembler,
twisti@4318 83 // as only the interpreter handles PopFrame and ForceEarlyReturn requests.
twisti@4318 84 virtual void check_and_handle_popframe(Register java_thread);
twisti@4318 85 virtual void check_and_handle_earlyret(Register java_thread);
twisti@4318 86
twisti@4318 87 void call_VM_helper(Register oop_result, address entry_point, int number_of_arguments, bool check_exceptions = true);
twisti@4318 88
twisti@4318 89 // helpers for FPU flag access
twisti@4318 90 // tmp is a temporary register, if none is available use noreg
twisti@4318 91 void save_rax (Register tmp);
twisti@4318 92 void restore_rax(Register tmp);
twisti@4318 93
twisti@4318 94 public:
twisti@4318 95 MacroAssembler(CodeBuffer* code) : Assembler(code) {}
twisti@4318 96
twisti@4318 97 // Support for NULL-checks
twisti@4318 98 //
twisti@4318 99 // Generates code that causes a NULL OS exception if the content of reg is NULL.
twisti@4318 100 // If the accessed location is M[reg + offset] and the offset is known, provide the
twisti@4318 101 // offset. No explicit code generation is needed if the offset is within a certain
twisti@4318 102 // range (0 <= offset <= page_size).
twisti@4318 103
twisti@4318 104 void null_check(Register reg, int offset = -1);
twisti@4318 105 static bool needs_explicit_null_check(intptr_t offset);
twisti@4318 106
twisti@4318 107 // Required platform-specific helpers for Label::patch_instructions.
twisti@4318 108 // They _shadow_ the declarations in AbstractAssembler, which are undefined.
twisti@4318 109 void pd_patch_instruction(address branch, address target) {
twisti@4318 110 unsigned char op = branch[0];
twisti@4318 111 assert(op == 0xE8 /* call */ ||
twisti@4318 112 op == 0xE9 /* jmp */ ||
twisti@4318 113 op == 0xEB /* short jmp */ ||
twisti@4318 114 (op & 0xF0) == 0x70 /* short jcc */ ||
kvn@6429 115 op == 0x0F && (branch[1] & 0xF0) == 0x80 /* jcc */ ||
kvn@6429 116 op == 0xC7 && branch[1] == 0xF8 /* xbegin */,
twisti@4318 117 "Invalid opcode at patch point");
twisti@4318 118
twisti@4318 119 if (op == 0xEB || (op & 0xF0) == 0x70) {
twisti@4318 120 // short offset operators (jmp and jcc)
twisti@4318 121 char* disp = (char*) &branch[1];
twisti@4318 122 int imm8 = target - (address) &disp[1];
twisti@4318 123 guarantee(this->is8bit(imm8), "Short forward jump exceeds 8-bit offset");
twisti@4318 124 *disp = imm8;
twisti@4318 125 } else {
kvn@6429 126 int* disp = (int*) &branch[(op == 0x0F || op == 0xC7)? 2: 1];
twisti@4318 127 int imm32 = target - (address) &disp[1];
twisti@4318 128 *disp = imm32;
twisti@4318 129 }
twisti@4318 130 }
twisti@4318 131
twisti@4318 132 // The following 4 methods return the offset of the appropriate move instruction
twisti@4318 133
twisti@4318 134 // Support for fast byte/short loading with zero extension (depending on particular CPU)
twisti@4318 135 int load_unsigned_byte(Register dst, Address src);
twisti@4318 136 int load_unsigned_short(Register dst, Address src);
twisti@4318 137
twisti@4318 138 // Support for fast byte/short loading with sign extension (depending on particular CPU)
twisti@4318 139 int load_signed_byte(Register dst, Address src);
twisti@4318 140 int load_signed_short(Register dst, Address src);
twisti@4318 141
twisti@4318 142 // Support for sign-extension (hi:lo = extend_sign(lo))
twisti@4318 143 void extend_sign(Register hi, Register lo);
twisti@4318 144
twisti@4318 145 // Load and store values by size and signed-ness
twisti@4318 146 void load_sized_value(Register dst, Address src, size_t size_in_bytes, bool is_signed, Register dst2 = noreg);
twisti@4318 147 void store_sized_value(Address dst, Register src, size_t size_in_bytes, Register src2 = noreg);
twisti@4318 148
twisti@4318 149 // Support for inc/dec with optimal instruction selection depending on value
twisti@4318 150
twisti@4318 151 void increment(Register reg, int value = 1) { LP64_ONLY(incrementq(reg, value)) NOT_LP64(incrementl(reg, value)) ; }
twisti@4318 152 void decrement(Register reg, int value = 1) { LP64_ONLY(decrementq(reg, value)) NOT_LP64(decrementl(reg, value)) ; }
twisti@4318 153
twisti@4318 154 void decrementl(Address dst, int value = 1);
twisti@4318 155 void decrementl(Register reg, int value = 1);
twisti@4318 156
twisti@4318 157 void decrementq(Register reg, int value = 1);
twisti@4318 158 void decrementq(Address dst, int value = 1);
twisti@4318 159
twisti@4318 160 void incrementl(Address dst, int value = 1);
twisti@4318 161 void incrementl(Register reg, int value = 1);
twisti@4318 162
twisti@4318 163 void incrementq(Register reg, int value = 1);
twisti@4318 164 void incrementq(Address dst, int value = 1);
twisti@4318 165
twisti@4318 166 // Support optimal SSE move instructions.
twisti@4318 167 void movflt(XMMRegister dst, XMMRegister src) {
twisti@4318 168 if (UseXmmRegToRegMoveAll) { movaps(dst, src); return; }
twisti@4318 169 else { movss (dst, src); return; }
twisti@4318 170 }
twisti@4318 171 void movflt(XMMRegister dst, Address src) { movss(dst, src); }
twisti@4318 172 void movflt(XMMRegister dst, AddressLiteral src);
twisti@4318 173 void movflt(Address dst, XMMRegister src) { movss(dst, src); }
twisti@4318 174
twisti@4318 175 void movdbl(XMMRegister dst, XMMRegister src) {
twisti@4318 176 if (UseXmmRegToRegMoveAll) { movapd(dst, src); return; }
twisti@4318 177 else { movsd (dst, src); return; }
twisti@4318 178 }
twisti@4318 179
twisti@4318 180 void movdbl(XMMRegister dst, AddressLiteral src);
twisti@4318 181
twisti@4318 182 void movdbl(XMMRegister dst, Address src) {
twisti@4318 183 if (UseXmmLoadAndClearUpper) { movsd (dst, src); return; }
twisti@4318 184 else { movlpd(dst, src); return; }
twisti@4318 185 }
twisti@4318 186 void movdbl(Address dst, XMMRegister src) { movsd(dst, src); }
twisti@4318 187
twisti@4318 188 void incrementl(AddressLiteral dst);
twisti@4318 189 void incrementl(ArrayAddress dst);
twisti@4318 190
kvn@6429 191 void incrementq(AddressLiteral dst);
kvn@6429 192
twisti@4318 193 // Alignment
twisti@4318 194 void align(int modulus);
twisti@4318 195
twisti@4318 196 // A 5 byte nop that is safe for patching (see patch_verified_entry)
twisti@4318 197 void fat_nop();
twisti@4318 198
twisti@4318 199 // Stack frame creation/removal
twisti@4318 200 void enter();
twisti@4318 201 void leave();
twisti@4318 202
twisti@4318 203 // Support for getting the JavaThread pointer (i.e.; a reference to thread-local information)
twisti@4318 204 // The pointer will be loaded into the thread register.
twisti@4318 205 void get_thread(Register thread);
twisti@4318 206
twisti@4318 207
twisti@4318 208 // Support for VM calls
twisti@4318 209 //
twisti@4318 210 // It is imperative that all calls into the VM are handled via the call_VM macros.
twisti@4318 211 // They make sure that the stack linkage is setup correctly. call_VM's correspond
twisti@4318 212 // to ENTRY/ENTRY_X entry points while call_VM_leaf's correspond to LEAF entry points.
twisti@4318 213
twisti@4318 214
twisti@4318 215 void call_VM(Register oop_result,
twisti@4318 216 address entry_point,
twisti@4318 217 bool check_exceptions = true);
twisti@4318 218 void call_VM(Register oop_result,
twisti@4318 219 address entry_point,
twisti@4318 220 Register arg_1,
twisti@4318 221 bool check_exceptions = true);
twisti@4318 222 void call_VM(Register oop_result,
twisti@4318 223 address entry_point,
twisti@4318 224 Register arg_1, Register arg_2,
twisti@4318 225 bool check_exceptions = true);
twisti@4318 226 void call_VM(Register oop_result,
twisti@4318 227 address entry_point,
twisti@4318 228 Register arg_1, Register arg_2, Register arg_3,
twisti@4318 229 bool check_exceptions = true);
twisti@4318 230
twisti@4318 231 // Overloadings with last_Java_sp
twisti@4318 232 void call_VM(Register oop_result,
twisti@4318 233 Register last_java_sp,
twisti@4318 234 address entry_point,
twisti@4318 235 int number_of_arguments = 0,
twisti@4318 236 bool check_exceptions = true);
twisti@4318 237 void call_VM(Register oop_result,
twisti@4318 238 Register last_java_sp,
twisti@4318 239 address entry_point,
twisti@4318 240 Register arg_1, bool
twisti@4318 241 check_exceptions = true);
twisti@4318 242 void call_VM(Register oop_result,
twisti@4318 243 Register last_java_sp,
twisti@4318 244 address entry_point,
twisti@4318 245 Register arg_1, Register arg_2,
twisti@4318 246 bool check_exceptions = true);
twisti@4318 247 void call_VM(Register oop_result,
twisti@4318 248 Register last_java_sp,
twisti@4318 249 address entry_point,
twisti@4318 250 Register arg_1, Register arg_2, Register arg_3,
twisti@4318 251 bool check_exceptions = true);
twisti@4318 252
twisti@4318 253 void get_vm_result (Register oop_result, Register thread);
twisti@4318 254 void get_vm_result_2(Register metadata_result, Register thread);
twisti@4318 255
twisti@4318 256 // These always tightly bind to MacroAssembler::call_VM_base
twisti@4318 257 // bypassing the virtual implementation
twisti@4318 258 void super_call_VM(Register oop_result, Register last_java_sp, address entry_point, int number_of_arguments = 0, bool check_exceptions = true);
twisti@4318 259 void super_call_VM(Register oop_result, Register last_java_sp, address entry_point, Register arg_1, bool check_exceptions = true);
twisti@4318 260 void super_call_VM(Register oop_result, Register last_java_sp, address entry_point, Register arg_1, Register arg_2, bool check_exceptions = true);
twisti@4318 261 void super_call_VM(Register oop_result, Register last_java_sp, address entry_point, Register arg_1, Register arg_2, Register arg_3, bool check_exceptions = true);
twisti@4318 262 void super_call_VM(Register oop_result, Register last_java_sp, address entry_point, Register arg_1, Register arg_2, Register arg_3, Register arg_4, bool check_exceptions = true);
twisti@4318 263
twisti@4318 264 void call_VM_leaf(address entry_point,
twisti@4318 265 int number_of_arguments = 0);
twisti@4318 266 void call_VM_leaf(address entry_point,
twisti@4318 267 Register arg_1);
twisti@4318 268 void call_VM_leaf(address entry_point,
twisti@4318 269 Register arg_1, Register arg_2);
twisti@4318 270 void call_VM_leaf(address entry_point,
twisti@4318 271 Register arg_1, Register arg_2, Register arg_3);
twisti@4318 272
twisti@4318 273 // These always tightly bind to MacroAssembler::call_VM_leaf_base
twisti@4318 274 // bypassing the virtual implementation
twisti@4318 275 void super_call_VM_leaf(address entry_point);
twisti@4318 276 void super_call_VM_leaf(address entry_point, Register arg_1);
twisti@4318 277 void super_call_VM_leaf(address entry_point, Register arg_1, Register arg_2);
twisti@4318 278 void super_call_VM_leaf(address entry_point, Register arg_1, Register arg_2, Register arg_3);
twisti@4318 279 void super_call_VM_leaf(address entry_point, Register arg_1, Register arg_2, Register arg_3, Register arg_4);
twisti@4318 280
twisti@4318 281 // last Java Frame (fills frame anchor)
twisti@4318 282 void set_last_Java_frame(Register thread,
twisti@4318 283 Register last_java_sp,
twisti@4318 284 Register last_java_fp,
twisti@4318 285 address last_java_pc);
twisti@4318 286
twisti@4318 287 // thread in the default location (r15_thread on 64bit)
twisti@4318 288 void set_last_Java_frame(Register last_java_sp,
twisti@4318 289 Register last_java_fp,
twisti@4318 290 address last_java_pc);
twisti@4318 291
kevinw@8877 292 void reset_last_Java_frame(Register thread, bool clear_fp);
twisti@4318 293
twisti@4318 294 // thread in the default location (r15_thread on 64bit)
kevinw@8877 295 void reset_last_Java_frame(bool clear_fp);
twisti@4318 296
twisti@4318 297 // Stores
twisti@4318 298 void store_check(Register obj); // store check for obj - register is destroyed afterwards
twisti@4318 299 void store_check(Register obj, Address dst); // same as above, dst is exact store location (reg. is destroyed)
twisti@4318 300
phh@9669 301 void resolve_jobject(Register value, Register thread, Register tmp);
phh@9669 302 void clear_jweak_tag(Register possibly_jweak);
phh@9669 303
jprovino@4542 304 #if INCLUDE_ALL_GCS
twisti@4318 305
twisti@4318 306 void g1_write_barrier_pre(Register obj,
twisti@4318 307 Register pre_val,
twisti@4318 308 Register thread,
twisti@4318 309 Register tmp,
twisti@4318 310 bool tosca_live,
twisti@4318 311 bool expand_call);
twisti@4318 312
twisti@4318 313 void g1_write_barrier_post(Register store_addr,
twisti@4318 314 Register new_val,
twisti@4318 315 Register thread,
twisti@4318 316 Register tmp,
twisti@4318 317 Register tmp2);
twisti@4318 318
jprovino@4542 319 #endif // INCLUDE_ALL_GCS
twisti@4318 320
twisti@4318 321 // split store_check(Register obj) to enhance instruction interleaving
twisti@4318 322 void store_check_part_1(Register obj);
twisti@4318 323 void store_check_part_2(Register obj);
twisti@4318 324
twisti@4318 325 // C 'boolean' to Java boolean: x == 0 ? 0 : 1
twisti@4318 326 void c2bool(Register x);
twisti@4318 327
twisti@4318 328 // C++ bool manipulation
twisti@4318 329
twisti@4318 330 void movbool(Register dst, Address src);
twisti@4318 331 void movbool(Address dst, bool boolconst);
twisti@4318 332 void movbool(Address dst, Register src);
twisti@4318 333 void testbool(Register dst);
twisti@4318 334
twisti@4318 335 // oop manipulations
twisti@4318 336 void load_klass(Register dst, Register src);
twisti@4318 337 void store_klass(Register dst, Register src);
twisti@4318 338
twisti@4318 339 void load_heap_oop(Register dst, Address src);
twisti@4318 340 void load_heap_oop_not_null(Register dst, Address src);
twisti@4318 341 void store_heap_oop(Address dst, Register src);
twisti@4318 342 void cmp_heap_oop(Register src1, Address src2, Register tmp = noreg);
twisti@4318 343
twisti@4318 344 // Used for storing NULL. All other oop constants should be
twisti@4318 345 // stored using routines that take a jobject.
twisti@4318 346 void store_heap_oop_null(Address dst);
twisti@4318 347
twisti@4318 348 void load_prototype_header(Register dst, Register src);
twisti@4318 349
twisti@4318 350 #ifdef _LP64
twisti@4318 351 void store_klass_gap(Register dst, Register src);
twisti@4318 352
twisti@4318 353 // This dummy is to prevent a call to store_heap_oop from
twisti@4318 354 // converting a zero (like NULL) into a Register by giving
twisti@4318 355 // the compiler two choices it can't resolve
twisti@4318 356
twisti@4318 357 void store_heap_oop(Address dst, void* dummy);
twisti@4318 358
twisti@4318 359 void encode_heap_oop(Register r);
twisti@4318 360 void decode_heap_oop(Register r);
twisti@4318 361 void encode_heap_oop_not_null(Register r);
twisti@4318 362 void decode_heap_oop_not_null(Register r);
twisti@4318 363 void encode_heap_oop_not_null(Register dst, Register src);
twisti@4318 364 void decode_heap_oop_not_null(Register dst, Register src);
twisti@4318 365
twisti@4318 366 void set_narrow_oop(Register dst, jobject obj);
twisti@4318 367 void set_narrow_oop(Address dst, jobject obj);
twisti@4318 368 void cmp_narrow_oop(Register dst, jobject obj);
twisti@4318 369 void cmp_narrow_oop(Address dst, jobject obj);
twisti@4318 370
twisti@4318 371 void encode_klass_not_null(Register r);
twisti@4318 372 void decode_klass_not_null(Register r);
twisti@4318 373 void encode_klass_not_null(Register dst, Register src);
twisti@4318 374 void decode_klass_not_null(Register dst, Register src);
twisti@4318 375 void set_narrow_klass(Register dst, Klass* k);
twisti@4318 376 void set_narrow_klass(Address dst, Klass* k);
twisti@4318 377 void cmp_narrow_klass(Register dst, Klass* k);
twisti@4318 378 void cmp_narrow_klass(Address dst, Klass* k);
twisti@4318 379
hseigel@5528 380 // Returns the byte size of the instructions generated by decode_klass_not_null()
hseigel@5528 381 // when compressed klass pointers are being used.
hseigel@5528 382 static int instr_size_for_decode_klass_not_null();
hseigel@5528 383
twisti@4318 384 // if heap base register is used - reinit it with the correct value
twisti@4318 385 void reinit_heapbase();
twisti@4318 386
twisti@4318 387 DEBUG_ONLY(void verify_heapbase(const char* msg);)
twisti@4318 388
twisti@4318 389 #endif // _LP64
twisti@4318 390
twisti@4318 391 // Int division/remainder for Java
twisti@4318 392 // (as idivl, but checks for special case as described in JVM spec.)
twisti@4318 393 // returns idivl instruction offset for implicit exception handling
twisti@4318 394 int corrected_idivl(Register reg);
twisti@4318 395
twisti@4318 396 // Long division/remainder for Java
twisti@4318 397 // (as idivq, but checks for special case as described in JVM spec.)
twisti@4318 398 // returns idivq instruction offset for implicit exception handling
twisti@4318 399 int corrected_idivq(Register reg);
twisti@4318 400
twisti@4318 401 void int3();
twisti@4318 402
twisti@4318 403 // Long operation macros for a 32bit cpu
twisti@4318 404 // Long negation for Java
twisti@4318 405 void lneg(Register hi, Register lo);
twisti@4318 406
twisti@4318 407 // Long multiplication for Java
twisti@4318 408 // (destroys contents of eax, ebx, ecx and edx)
twisti@4318 409 void lmul(int x_rsp_offset, int y_rsp_offset); // rdx:rax = x * y
twisti@4318 410
twisti@4318 411 // Long shifts for Java
twisti@4318 412 // (semantics as described in JVM spec.)
twisti@4318 413 void lshl(Register hi, Register lo); // hi:lo << (rcx & 0x3f)
twisti@4318 414 void lshr(Register hi, Register lo, bool sign_extension = false); // hi:lo >> (rcx & 0x3f)
twisti@4318 415
twisti@4318 416 // Long compare for Java
twisti@4318 417 // (semantics as described in JVM spec.)
twisti@4318 418 void lcmp2int(Register x_hi, Register x_lo, Register y_hi, Register y_lo); // x_hi = lcmp(x, y)
twisti@4318 419
twisti@4318 420
twisti@4318 421 // misc
twisti@4318 422
twisti@4318 423 // Sign extension
twisti@4318 424 void sign_extend_short(Register reg);
twisti@4318 425 void sign_extend_byte(Register reg);
twisti@4318 426
twisti@4318 427 // Division by power of 2, rounding towards 0
twisti@4318 428 void division_with_shift(Register reg, int shift_value);
twisti@4318 429
twisti@4318 430 // Compares the top-most stack entries on the FPU stack and sets the eflags as follows:
twisti@4318 431 //
twisti@4318 432 // CF (corresponds to C0) if x < y
twisti@4318 433 // PF (corresponds to C2) if unordered
twisti@4318 434 // ZF (corresponds to C3) if x = y
twisti@4318 435 //
twisti@4318 436 // The arguments are in reversed order on the stack (i.e., top of stack is first argument).
twisti@4318 437 // tmp is a temporary register, if none is available use noreg (only matters for non-P6 code)
twisti@4318 438 void fcmp(Register tmp);
twisti@4318 439 // Variant of the above which allows y to be further down the stack
twisti@4318 440 // and which only pops x and y if specified. If pop_right is
twisti@4318 441 // specified then pop_left must also be specified.
twisti@4318 442 void fcmp(Register tmp, int index, bool pop_left, bool pop_right);
twisti@4318 443
twisti@4318 444 // Floating-point comparison for Java
twisti@4318 445 // Compares the top-most stack entries on the FPU stack and stores the result in dst.
twisti@4318 446 // The arguments are in reversed order on the stack (i.e., top of stack is first argument).
twisti@4318 447 // (semantics as described in JVM spec.)
twisti@4318 448 void fcmp2int(Register dst, bool unordered_is_less);
twisti@4318 449 // Variant of the above which allows y to be further down the stack
twisti@4318 450 // and which only pops x and y if specified. If pop_right is
twisti@4318 451 // specified then pop_left must also be specified.
twisti@4318 452 void fcmp2int(Register dst, bool unordered_is_less, int index, bool pop_left, bool pop_right);
twisti@4318 453
twisti@4318 454 // Floating-point remainder for Java (ST0 = ST0 fremr ST1, ST1 is empty afterwards)
twisti@4318 455 // tmp is a temporary register, if none is available use noreg
twisti@4318 456 void fremr(Register tmp);
twisti@4318 457
twisti@4318 458
twisti@4318 459 // same as fcmp2int, but using SSE2
twisti@4318 460 void cmpss2int(XMMRegister opr1, XMMRegister opr2, Register dst, bool unordered_is_less);
twisti@4318 461 void cmpsd2int(XMMRegister opr1, XMMRegister opr2, Register dst, bool unordered_is_less);
twisti@4318 462
twisti@4318 463 // Inlined sin/cos generator for Java; must not use CPU instruction
twisti@4318 464 // directly on Intel as it does not have high enough precision
twisti@4318 465 // outside of the range [-pi/4, pi/4]. Extra argument indicate the
twisti@4318 466 // number of FPU stack slots in use; all but the topmost will
twisti@4318 467 // require saving if a slow case is necessary. Assumes argument is
twisti@4318 468 // on FP TOS; result is on FP TOS. No cpu registers are changed by
twisti@4318 469 // this code.
twisti@4318 470 void trigfunc(char trig, int num_fpu_regs_in_use = 1);
twisti@4318 471
twisti@4318 472 // branch to L if FPU flag C2 is set/not set
twisti@4318 473 // tmp is a temporary register, if none is available use noreg
twisti@4318 474 void jC2 (Register tmp, Label& L);
twisti@4318 475 void jnC2(Register tmp, Label& L);
twisti@4318 476
twisti@4318 477 // Pop ST (ffree & fincstp combined)
twisti@4318 478 void fpop();
twisti@4318 479
twisti@4318 480 // pushes double TOS element of FPU stack on CPU stack; pops from FPU stack
twisti@4318 481 void push_fTOS();
twisti@4318 482
twisti@4318 483 // pops double TOS element from CPU stack and pushes on FPU stack
twisti@4318 484 void pop_fTOS();
twisti@4318 485
twisti@4318 486 void empty_FPU_stack();
twisti@4318 487
twisti@4318 488 void push_IU_state();
twisti@4318 489 void pop_IU_state();
twisti@4318 490
twisti@4318 491 void push_FPU_state();
twisti@4318 492 void pop_FPU_state();
twisti@4318 493
twisti@4318 494 void push_CPU_state();
twisti@4318 495 void pop_CPU_state();
twisti@4318 496
twisti@4318 497 // Round up to a power of two
twisti@4318 498 void round_to(Register reg, int modulus);
twisti@4318 499
twisti@4318 500 // Callee saved registers handling
twisti@4318 501 void push_callee_saved_registers();
twisti@4318 502 void pop_callee_saved_registers();
twisti@4318 503
twisti@4318 504 // allocation
twisti@4318 505 void eden_allocate(
twisti@4318 506 Register obj, // result: pointer to object after successful allocation
twisti@4318 507 Register var_size_in_bytes, // object size in bytes if unknown at compile time; invalid otherwise
twisti@4318 508 int con_size_in_bytes, // object size in bytes if known at compile time
twisti@4318 509 Register t1, // temp register
twisti@4318 510 Label& slow_case // continuation point if fast allocation fails
twisti@4318 511 );
twisti@4318 512 void tlab_allocate(
twisti@4318 513 Register obj, // result: pointer to object after successful allocation
twisti@4318 514 Register var_size_in_bytes, // object size in bytes if unknown at compile time; invalid otherwise
twisti@4318 515 int con_size_in_bytes, // object size in bytes if known at compile time
twisti@4318 516 Register t1, // temp register
twisti@4318 517 Register t2, // temp register
twisti@4318 518 Label& slow_case // continuation point if fast allocation fails
twisti@4318 519 );
twisti@4318 520 Register tlab_refill(Label& retry_tlab, Label& try_eden, Label& slow_case); // returns TLS address
twisti@4318 521 void incr_allocated_bytes(Register thread,
twisti@4318 522 Register var_size_in_bytes, int con_size_in_bytes,
twisti@4318 523 Register t1 = noreg);
twisti@4318 524
twisti@4318 525 // interface method calling
twisti@4318 526 void lookup_interface_method(Register recv_klass,
twisti@4318 527 Register intf_klass,
twisti@4318 528 RegisterOrConstant itable_index,
twisti@4318 529 Register method_result,
twisti@4318 530 Register scan_temp,
dbuck@8997 531 Label& no_such_interface,
dbuck@8997 532 bool return_method = true);
twisti@4318 533
twisti@4318 534 // virtual method calling
twisti@4318 535 void lookup_virtual_method(Register recv_klass,
twisti@4318 536 RegisterOrConstant vtable_index,
twisti@4318 537 Register method_result);
twisti@4318 538
twisti@4318 539 // Test sub_klass against super_klass, with fast and slow paths.
twisti@4318 540
twisti@4318 541 // The fast path produces a tri-state answer: yes / no / maybe-slow.
twisti@4318 542 // One of the three labels can be NULL, meaning take the fall-through.
twisti@4318 543 // If super_check_offset is -1, the value is loaded up from super_klass.
twisti@4318 544 // No registers are killed, except temp_reg.
twisti@4318 545 void check_klass_subtype_fast_path(Register sub_klass,
twisti@4318 546 Register super_klass,
twisti@4318 547 Register temp_reg,
twisti@4318 548 Label* L_success,
twisti@4318 549 Label* L_failure,
twisti@4318 550 Label* L_slow_path,
twisti@4318 551 RegisterOrConstant super_check_offset = RegisterOrConstant(-1));
twisti@4318 552
twisti@4318 553 // The rest of the type check; must be wired to a corresponding fast path.
twisti@4318 554 // It does not repeat the fast path logic, so don't use it standalone.
twisti@4318 555 // The temp_reg and temp2_reg can be noreg, if no temps are available.
twisti@4318 556 // Updates the sub's secondary super cache as necessary.
twisti@4318 557 // If set_cond_codes, condition codes will be Z on success, NZ on failure.
twisti@4318 558 void check_klass_subtype_slow_path(Register sub_klass,
twisti@4318 559 Register super_klass,
twisti@4318 560 Register temp_reg,
twisti@4318 561 Register temp2_reg,
twisti@4318 562 Label* L_success,
twisti@4318 563 Label* L_failure,
twisti@4318 564 bool set_cond_codes = false);
twisti@4318 565
twisti@4318 566 // Simplified, combined version, good for typical uses.
twisti@4318 567 // Falls through on failure.
twisti@4318 568 void check_klass_subtype(Register sub_klass,
twisti@4318 569 Register super_klass,
twisti@4318 570 Register temp_reg,
twisti@4318 571 Label& L_success);
twisti@4318 572
twisti@4318 573 // method handles (JSR 292)
twisti@4318 574 Address argument_address(RegisterOrConstant arg_slot, int extra_slot_offset = 0);
twisti@4318 575
twisti@4318 576 //----
twisti@4318 577 void set_word_if_not_zero(Register reg); // sets reg to 1 if not zero, otherwise 0
twisti@4318 578
twisti@4318 579 // Debugging
twisti@4318 580
twisti@4318 581 // only if +VerifyOops
twisti@4318 582 // TODO: Make these macros with file and line like sparc version!
twisti@4318 583 void verify_oop(Register reg, const char* s = "broken oop");
twisti@4318 584 void verify_oop_addr(Address addr, const char * s = "broken oop addr");
twisti@4318 585
twisti@4318 586 // TODO: verify method and klass metadata (compare against vptr?)
twisti@4318 587 void _verify_method_ptr(Register reg, const char * msg, const char * file, int line) {}
twisti@4318 588 void _verify_klass_ptr(Register reg, const char * msg, const char * file, int line){}
twisti@4318 589
twisti@4318 590 #define verify_method_ptr(reg) _verify_method_ptr(reg, "broken method " #reg, __FILE__, __LINE__)
twisti@4318 591 #define verify_klass_ptr(reg) _verify_klass_ptr(reg, "broken klass " #reg, __FILE__, __LINE__)
twisti@4318 592
twisti@4318 593 // only if +VerifyFPU
twisti@4318 594 void verify_FPU(int stack_depth, const char* s = "illegal FPU state");
twisti@4318 595
kvn@4873 596 // Verify or restore cpu control state after JNI call
kvn@4873 597 void restore_cpu_control_state_after_jni();
kvn@4873 598
twisti@4318 599 // prints msg, dumps registers and stops execution
twisti@4318 600 void stop(const char* msg);
twisti@4318 601
twisti@4318 602 // prints msg and continues
twisti@4318 603 void warn(const char* msg);
twisti@4318 604
twisti@4318 605 // dumps registers and other state
twisti@4318 606 void print_state();
twisti@4318 607
twisti@4318 608 static void debug32(int rdi, int rsi, int rbp, int rsp, int rbx, int rdx, int rcx, int rax, int eip, char* msg);
twisti@4318 609 static void debug64(char* msg, int64_t pc, int64_t regs[]);
twisti@4318 610 static void print_state32(int rdi, int rsi, int rbp, int rsp, int rbx, int rdx, int rcx, int rax, int eip);
twisti@4318 611 static void print_state64(int64_t pc, int64_t regs[]);
twisti@4318 612
twisti@4318 613 void os_breakpoint();
twisti@4318 614
twisti@4318 615 void untested() { stop("untested"); }
twisti@4318 616
twisti@4318 617 void unimplemented(const char* what = "") { char* b = new char[1024]; jio_snprintf(b, 1024, "unimplemented: %s", what); stop(b); }
twisti@4318 618
twisti@4318 619 void should_not_reach_here() { stop("should not reach here"); }
twisti@4318 620
twisti@4318 621 void print_CPU_state();
twisti@4318 622
twisti@4318 623 // Stack overflow checking
twisti@4318 624 void bang_stack_with_offset(int offset) {
twisti@4318 625 // stack grows down, caller passes positive offset
twisti@4318 626 assert(offset > 0, "must bang with negative offset");
twisti@4318 627 movl(Address(rsp, (-offset)), rax);
twisti@4318 628 }
twisti@4318 629
twisti@4318 630 // Writes to stack successive pages until offset reached to check for
twisti@4318 631 // stack overflow + shadow pages. Also, clobbers tmp
twisti@4318 632 void bang_stack_size(Register size, Register tmp);
twisti@4318 633
twisti@4318 634 virtual RegisterOrConstant delayed_value_impl(intptr_t* delayed_value_addr,
twisti@4318 635 Register tmp,
twisti@4318 636 int offset);
twisti@4318 637
twisti@4318 638 // Support for serializing memory accesses between threads
twisti@4318 639 void serialize_memory(Register thread, Register tmp);
twisti@4318 640
twisti@4318 641 void verify_tlab();
twisti@4318 642
twisti@4318 643 // Biased locking support
twisti@4318 644 // lock_reg and obj_reg must be loaded up with the appropriate values.
twisti@4318 645 // swap_reg must be rax, and is killed.
twisti@4318 646 // tmp_reg is optional. If it is supplied (i.e., != noreg) it will
twisti@4318 647 // be killed; if not supplied, push/pop will be used internally to
twisti@4318 648 // allocate a temporary (inefficient, avoid if possible).
twisti@4318 649 // Optional slow case is for implementations (interpreter and C1) which branch to
twisti@4318 650 // slow case directly. Leaves condition codes set for C2's Fast_Lock node.
twisti@4318 651 // Returns offset of first potentially-faulting instruction for null
twisti@4318 652 // check info (currently consumed only by C1). If
twisti@4318 653 // swap_reg_contains_mark is true then returns -1 as it is assumed
twisti@4318 654 // the calling code has already passed any potential faults.
twisti@4318 655 int biased_locking_enter(Register lock_reg, Register obj_reg,
twisti@4318 656 Register swap_reg, Register tmp_reg,
twisti@4318 657 bool swap_reg_contains_mark,
twisti@4318 658 Label& done, Label* slow_case = NULL,
twisti@4318 659 BiasedLockingCounters* counters = NULL);
twisti@4318 660 void biased_locking_exit (Register obj_reg, Register temp_reg, Label& done);
kvn@6356 661 #ifdef COMPILER2
kvn@6356 662 // Code used by cmpFastLock and cmpFastUnlock mach instructions in .ad file.
kvn@6356 663 // See full desription in macroAssembler_x86.cpp.
kvn@6429 664 void fast_lock(Register obj, Register box, Register tmp,
kvn@6429 665 Register scr, Register cx1, Register cx2,
kvn@6429 666 BiasedLockingCounters* counters,
kvn@6429 667 RTMLockingCounters* rtm_counters,
kvn@6429 668 RTMLockingCounters* stack_rtm_counters,
kvn@6429 669 Metadata* method_data,
kvn@6429 670 bool use_rtm, bool profile_rtm);
kvn@6429 671 void fast_unlock(Register obj, Register box, Register tmp, bool use_rtm);
kvn@6429 672 #if INCLUDE_RTM_OPT
kvn@6429 673 void rtm_counters_update(Register abort_status, Register rtm_counters);
kvn@6429 674 void branch_on_random_using_rdtsc(Register tmp, Register scr, int count, Label& brLabel);
kvn@6429 675 void rtm_abort_ratio_calculation(Register tmp, Register rtm_counters_reg,
kvn@6429 676 RTMLockingCounters* rtm_counters,
kvn@6429 677 Metadata* method_data);
kvn@6429 678 void rtm_profiling(Register abort_status_Reg, Register rtm_counters_Reg,
kvn@6429 679 RTMLockingCounters* rtm_counters, Metadata* method_data, bool profile_rtm);
kvn@6429 680 void rtm_retry_lock_on_abort(Register retry_count, Register abort_status, Label& retryLabel);
kvn@6429 681 void rtm_retry_lock_on_busy(Register retry_count, Register box, Register tmp, Register scr, Label& retryLabel);
kvn@6429 682 void rtm_stack_locking(Register obj, Register tmp, Register scr,
kvn@6429 683 Register retry_on_abort_count,
kvn@6429 684 RTMLockingCounters* stack_rtm_counters,
kvn@6429 685 Metadata* method_data, bool profile_rtm,
kvn@6429 686 Label& DONE_LABEL, Label& IsInflated);
kvn@6429 687 void rtm_inflated_locking(Register obj, Register box, Register tmp,
kvn@6429 688 Register scr, Register retry_on_busy_count,
kvn@6429 689 Register retry_on_abort_count,
kvn@6429 690 RTMLockingCounters* rtm_counters,
kvn@6429 691 Metadata* method_data, bool profile_rtm,
kvn@6429 692 Label& DONE_LABEL);
kvn@6429 693 #endif
kvn@6356 694 #endif
twisti@4318 695
twisti@4318 696 Condition negate_condition(Condition cond);
twisti@4318 697
twisti@4318 698 // Instructions that use AddressLiteral operands. These instruction can handle 32bit/64bit
twisti@4318 699 // operands. In general the names are modified to avoid hiding the instruction in Assembler
twisti@4318 700 // so that we don't need to implement all the varieties in the Assembler with trivial wrappers
twisti@4318 701 // here in MacroAssembler. The major exception to this rule is call
twisti@4318 702
twisti@4318 703 // Arithmetics
twisti@4318 704
twisti@4318 705
twisti@4318 706 void addptr(Address dst, int32_t src) { LP64_ONLY(addq(dst, src)) NOT_LP64(addl(dst, src)) ; }
twisti@4318 707 void addptr(Address dst, Register src);
twisti@4318 708
twisti@4318 709 void addptr(Register dst, Address src) { LP64_ONLY(addq(dst, src)) NOT_LP64(addl(dst, src)); }
twisti@4318 710 void addptr(Register dst, int32_t src);
twisti@4318 711 void addptr(Register dst, Register src);
twisti@4318 712 void addptr(Register dst, RegisterOrConstant src) {
twisti@4318 713 if (src.is_constant()) addptr(dst, (int) src.as_constant());
twisti@4318 714 else addptr(dst, src.as_register());
twisti@4318 715 }
twisti@4318 716
twisti@4318 717 void andptr(Register dst, int32_t src);
twisti@4318 718 void andptr(Register src1, Register src2) { LP64_ONLY(andq(src1, src2)) NOT_LP64(andl(src1, src2)) ; }
twisti@4318 719
twisti@4318 720 void cmp8(AddressLiteral src1, int imm);
twisti@4318 721
twisti@4318 722 // renamed to drag out the casting of address to int32_t/intptr_t
twisti@4318 723 void cmp32(Register src1, int32_t imm);
twisti@4318 724
twisti@4318 725 void cmp32(AddressLiteral src1, int32_t imm);
twisti@4318 726 // compare reg - mem, or reg - &mem
twisti@4318 727 void cmp32(Register src1, AddressLiteral src2);
twisti@4318 728
twisti@4318 729 void cmp32(Register src1, Address src2);
twisti@4318 730
twisti@4318 731 #ifndef _LP64
twisti@4318 732 void cmpklass(Address dst, Metadata* obj);
twisti@4318 733 void cmpklass(Register dst, Metadata* obj);
twisti@4318 734 void cmpoop(Address dst, jobject obj);
twisti@4318 735 void cmpoop(Register dst, jobject obj);
twisti@4318 736 #endif // _LP64
twisti@4318 737
twisti@4318 738 // NOTE src2 must be the lval. This is NOT an mem-mem compare
twisti@4318 739 void cmpptr(Address src1, AddressLiteral src2);
twisti@4318 740
twisti@4318 741 void cmpptr(Register src1, AddressLiteral src2);
twisti@4318 742
twisti@4318 743 void cmpptr(Register src1, Register src2) { LP64_ONLY(cmpq(src1, src2)) NOT_LP64(cmpl(src1, src2)) ; }
twisti@4318 744 void cmpptr(Register src1, Address src2) { LP64_ONLY(cmpq(src1, src2)) NOT_LP64(cmpl(src1, src2)) ; }
twisti@4318 745 // void cmpptr(Address src1, Register src2) { LP64_ONLY(cmpq(src1, src2)) NOT_LP64(cmpl(src1, src2)) ; }
twisti@4318 746
twisti@4318 747 void cmpptr(Register src1, int32_t src2) { LP64_ONLY(cmpq(src1, src2)) NOT_LP64(cmpl(src1, src2)) ; }
twisti@4318 748 void cmpptr(Address src1, int32_t src2) { LP64_ONLY(cmpq(src1, src2)) NOT_LP64(cmpl(src1, src2)) ; }
twisti@4318 749
twisti@4318 750 // cmp64 to avoild hiding cmpq
twisti@4318 751 void cmp64(Register src1, AddressLiteral src);
twisti@4318 752
twisti@4318 753 void cmpxchgptr(Register reg, Address adr);
twisti@4318 754
twisti@4318 755 void locked_cmpxchgptr(Register reg, AddressLiteral adr);
twisti@4318 756
twisti@4318 757
twisti@4318 758 void imulptr(Register dst, Register src) { LP64_ONLY(imulq(dst, src)) NOT_LP64(imull(dst, src)); }
kvn@6429 759 void imulptr(Register dst, Register src, int imm32) { LP64_ONLY(imulq(dst, src, imm32)) NOT_LP64(imull(dst, src, imm32)); }
twisti@4318 760
twisti@4318 761
twisti@4318 762 void negptr(Register dst) { LP64_ONLY(negq(dst)) NOT_LP64(negl(dst)); }
twisti@4318 763
twisti@4318 764 void notptr(Register dst) { LP64_ONLY(notq(dst)) NOT_LP64(notl(dst)); }
twisti@4318 765
twisti@4318 766 void shlptr(Register dst, int32_t shift);
twisti@4318 767 void shlptr(Register dst) { LP64_ONLY(shlq(dst)) NOT_LP64(shll(dst)); }
twisti@4318 768
twisti@4318 769 void shrptr(Register dst, int32_t shift);
twisti@4318 770 void shrptr(Register dst) { LP64_ONLY(shrq(dst)) NOT_LP64(shrl(dst)); }
twisti@4318 771
twisti@4318 772 void sarptr(Register dst) { LP64_ONLY(sarq(dst)) NOT_LP64(sarl(dst)); }
twisti@4318 773 void sarptr(Register dst, int32_t src) { LP64_ONLY(sarq(dst, src)) NOT_LP64(sarl(dst, src)); }
twisti@4318 774
twisti@4318 775 void subptr(Address dst, int32_t src) { LP64_ONLY(subq(dst, src)) NOT_LP64(subl(dst, src)); }
twisti@4318 776
twisti@4318 777 void subptr(Register dst, Address src) { LP64_ONLY(subq(dst, src)) NOT_LP64(subl(dst, src)); }
twisti@4318 778 void subptr(Register dst, int32_t src);
twisti@4318 779 // Force generation of a 4 byte immediate value even if it fits into 8bit
twisti@4318 780 void subptr_imm32(Register dst, int32_t src);
twisti@4318 781 void subptr(Register dst, Register src);
twisti@4318 782 void subptr(Register dst, RegisterOrConstant src) {
twisti@4318 783 if (src.is_constant()) subptr(dst, (int) src.as_constant());
twisti@4318 784 else subptr(dst, src.as_register());
twisti@4318 785 }
twisti@4318 786
twisti@4318 787 void sbbptr(Address dst, int32_t src) { LP64_ONLY(sbbq(dst, src)) NOT_LP64(sbbl(dst, src)); }
twisti@4318 788 void sbbptr(Register dst, int32_t src) { LP64_ONLY(sbbq(dst, src)) NOT_LP64(sbbl(dst, src)); }
twisti@4318 789
twisti@4318 790 void xchgptr(Register src1, Register src2) { LP64_ONLY(xchgq(src1, src2)) NOT_LP64(xchgl(src1, src2)) ; }
twisti@4318 791 void xchgptr(Register src1, Address src2) { LP64_ONLY(xchgq(src1, src2)) NOT_LP64(xchgl(src1, src2)) ; }
twisti@4318 792
twisti@4318 793 void xaddptr(Address src1, Register src2) { LP64_ONLY(xaddq(src1, src2)) NOT_LP64(xaddl(src1, src2)) ; }
twisti@4318 794
twisti@4318 795
twisti@4318 796
twisti@4318 797 // Helper functions for statistics gathering.
twisti@4318 798 // Conditionally (atomically, on MPs) increments passed counter address, preserving condition codes.
twisti@4318 799 void cond_inc32(Condition cond, AddressLiteral counter_addr);
twisti@4318 800 // Unconditional atomic increment.
kvn@6429 801 void atomic_incl(Address counter_addr);
kvn@6429 802 void atomic_incl(AddressLiteral counter_addr, Register scr = rscratch1);
kvn@6429 803 #ifdef _LP64
kvn@6429 804 void atomic_incq(Address counter_addr);
kvn@6429 805 void atomic_incq(AddressLiteral counter_addr, Register scr = rscratch1);
kvn@6429 806 #endif
kvn@6429 807 void atomic_incptr(AddressLiteral counter_addr, Register scr = rscratch1) { LP64_ONLY(atomic_incq(counter_addr, scr)) NOT_LP64(atomic_incl(counter_addr, scr)) ; }
kvn@6429 808 void atomic_incptr(Address counter_addr) { LP64_ONLY(atomic_incq(counter_addr)) NOT_LP64(atomic_incl(counter_addr)) ; }
twisti@4318 809
twisti@4318 810 void lea(Register dst, AddressLiteral adr);
twisti@4318 811 void lea(Address dst, AddressLiteral adr);
twisti@4318 812 void lea(Register dst, Address adr) { Assembler::lea(dst, adr); }
twisti@4318 813
twisti@4318 814 void leal32(Register dst, Address src) { leal(dst, src); }
twisti@4318 815
twisti@4318 816 // Import other testl() methods from the parent class or else
twisti@4318 817 // they will be hidden by the following overriding declaration.
twisti@4318 818 using Assembler::testl;
twisti@4318 819 void testl(Register dst, AddressLiteral src);
twisti@4318 820
twisti@4318 821 void orptr(Register dst, Address src) { LP64_ONLY(orq(dst, src)) NOT_LP64(orl(dst, src)); }
twisti@4318 822 void orptr(Register dst, Register src) { LP64_ONLY(orq(dst, src)) NOT_LP64(orl(dst, src)); }
twisti@4318 823 void orptr(Register dst, int32_t src) { LP64_ONLY(orq(dst, src)) NOT_LP64(orl(dst, src)); }
roland@5914 824 void orptr(Address dst, int32_t imm32) { LP64_ONLY(orq(dst, imm32)) NOT_LP64(orl(dst, imm32)); }
twisti@4318 825
twisti@4318 826 void testptr(Register src, int32_t imm32) { LP64_ONLY(testq(src, imm32)) NOT_LP64(testl(src, imm32)); }
twisti@4318 827 void testptr(Register src1, Register src2);
twisti@4318 828
twisti@4318 829 void xorptr(Register dst, Register src) { LP64_ONLY(xorq(dst, src)) NOT_LP64(xorl(dst, src)); }
twisti@4318 830 void xorptr(Register dst, Address src) { LP64_ONLY(xorq(dst, src)) NOT_LP64(xorl(dst, src)); }
twisti@4318 831
twisti@4318 832 // Calls
twisti@4318 833
twisti@4318 834 void call(Label& L, relocInfo::relocType rtype);
twisti@4318 835 void call(Register entry);
twisti@4318 836
twisti@4318 837 // NOTE: this call tranfers to the effective address of entry NOT
twisti@4318 838 // the address contained by entry. This is because this is more natural
twisti@4318 839 // for jumps/calls.
twisti@4318 840 void call(AddressLiteral entry);
twisti@4318 841
twisti@4318 842 // Emit the CompiledIC call idiom
twisti@4318 843 void ic_call(address entry);
twisti@4318 844
twisti@4318 845 // Jumps
twisti@4318 846
twisti@4318 847 // NOTE: these jumps tranfer to the effective address of dst NOT
twisti@4318 848 // the address contained by dst. This is because this is more natural
twisti@4318 849 // for jumps/calls.
twisti@4318 850 void jump(AddressLiteral dst);
twisti@4318 851 void jump_cc(Condition cc, AddressLiteral dst);
twisti@4318 852
twisti@4318 853 // 32bit can do a case table jump in one instruction but we no longer allow the base
twisti@4318 854 // to be installed in the Address class. This jump will tranfers to the address
twisti@4318 855 // contained in the location described by entry (not the address of entry)
twisti@4318 856 void jump(ArrayAddress entry);
twisti@4318 857
twisti@4318 858 // Floating
twisti@4318 859
twisti@4318 860 void andpd(XMMRegister dst, Address src) { Assembler::andpd(dst, src); }
twisti@4318 861 void andpd(XMMRegister dst, AddressLiteral src);
twisti@4318 862
twisti@4318 863 void andps(XMMRegister dst, XMMRegister src) { Assembler::andps(dst, src); }
twisti@4318 864 void andps(XMMRegister dst, Address src) { Assembler::andps(dst, src); }
twisti@4318 865 void andps(XMMRegister dst, AddressLiteral src);
twisti@4318 866
twisti@4318 867 void comiss(XMMRegister dst, XMMRegister src) { Assembler::comiss(dst, src); }
twisti@4318 868 void comiss(XMMRegister dst, Address src) { Assembler::comiss(dst, src); }
twisti@4318 869 void comiss(XMMRegister dst, AddressLiteral src);
twisti@4318 870
twisti@4318 871 void comisd(XMMRegister dst, XMMRegister src) { Assembler::comisd(dst, src); }
twisti@4318 872 void comisd(XMMRegister dst, Address src) { Assembler::comisd(dst, src); }
twisti@4318 873 void comisd(XMMRegister dst, AddressLiteral src);
twisti@4318 874
twisti@4318 875 void fadd_s(Address src) { Assembler::fadd_s(src); }
twisti@4318 876 void fadd_s(AddressLiteral src) { Assembler::fadd_s(as_Address(src)); }
twisti@4318 877
twisti@4318 878 void fldcw(Address src) { Assembler::fldcw(src); }
twisti@4318 879 void fldcw(AddressLiteral src);
twisti@4318 880
twisti@4318 881 void fld_s(int index) { Assembler::fld_s(index); }
twisti@4318 882 void fld_s(Address src) { Assembler::fld_s(src); }
twisti@4318 883 void fld_s(AddressLiteral src);
twisti@4318 884
twisti@4318 885 void fld_d(Address src) { Assembler::fld_d(src); }
twisti@4318 886 void fld_d(AddressLiteral src);
twisti@4318 887
twisti@4318 888 void fld_x(Address src) { Assembler::fld_x(src); }
twisti@4318 889 void fld_x(AddressLiteral src);
twisti@4318 890
twisti@4318 891 void fmul_s(Address src) { Assembler::fmul_s(src); }
twisti@4318 892 void fmul_s(AddressLiteral src) { Assembler::fmul_s(as_Address(src)); }
twisti@4318 893
twisti@4318 894 void ldmxcsr(Address src) { Assembler::ldmxcsr(src); }
twisti@4318 895 void ldmxcsr(AddressLiteral src);
twisti@4318 896
twisti@4318 897 // compute pow(x,y) and exp(x) with x86 instructions. Don't cover
twisti@4318 898 // all corner cases and may result in NaN and require fallback to a
twisti@4318 899 // runtime call.
twisti@4318 900 void fast_pow();
twisti@4318 901 void fast_exp();
twisti@4318 902 void increase_precision();
twisti@4318 903 void restore_precision();
twisti@4318 904
twisti@4318 905 // computes exp(x). Fallback to runtime call included.
twisti@4318 906 void exp_with_fallback(int num_fpu_regs_in_use) { pow_or_exp(true, num_fpu_regs_in_use); }
twisti@4318 907 // computes pow(x,y). Fallback to runtime call included.
twisti@4318 908 void pow_with_fallback(int num_fpu_regs_in_use) { pow_or_exp(false, num_fpu_regs_in_use); }
twisti@4318 909
twisti@4318 910 private:
twisti@4318 911
twisti@4318 912 // call runtime as a fallback for trig functions and pow/exp.
twisti@4318 913 void fp_runtime_fallback(address runtime_entry, int nb_args, int num_fpu_regs_in_use);
twisti@4318 914
twisti@4318 915 // computes 2^(Ylog2X); Ylog2X in ST(0)
twisti@4318 916 void pow_exp_core_encoding();
twisti@4318 917
twisti@4318 918 // computes pow(x,y) or exp(x). Fallback to runtime call included.
twisti@4318 919 void pow_or_exp(bool is_exp, int num_fpu_regs_in_use);
twisti@4318 920
twisti@4318 921 // these are private because users should be doing movflt/movdbl
twisti@4318 922
twisti@4318 923 void movss(Address dst, XMMRegister src) { Assembler::movss(dst, src); }
twisti@4318 924 void movss(XMMRegister dst, XMMRegister src) { Assembler::movss(dst, src); }
twisti@4318 925 void movss(XMMRegister dst, Address src) { Assembler::movss(dst, src); }
twisti@4318 926 void movss(XMMRegister dst, AddressLiteral src);
twisti@4318 927
twisti@4318 928 void movlpd(XMMRegister dst, Address src) {Assembler::movlpd(dst, src); }
twisti@4318 929 void movlpd(XMMRegister dst, AddressLiteral src);
twisti@4318 930
twisti@4318 931 public:
twisti@4318 932
twisti@4318 933 void addsd(XMMRegister dst, XMMRegister src) { Assembler::addsd(dst, src); }
twisti@4318 934 void addsd(XMMRegister dst, Address src) { Assembler::addsd(dst, src); }
twisti@4318 935 void addsd(XMMRegister dst, AddressLiteral src);
twisti@4318 936
twisti@4318 937 void addss(XMMRegister dst, XMMRegister src) { Assembler::addss(dst, src); }
twisti@4318 938 void addss(XMMRegister dst, Address src) { Assembler::addss(dst, src); }
twisti@4318 939 void addss(XMMRegister dst, AddressLiteral src);
twisti@4318 940
twisti@4318 941 void divsd(XMMRegister dst, XMMRegister src) { Assembler::divsd(dst, src); }
twisti@4318 942 void divsd(XMMRegister dst, Address src) { Assembler::divsd(dst, src); }
twisti@4318 943 void divsd(XMMRegister dst, AddressLiteral src);
twisti@4318 944
twisti@4318 945 void divss(XMMRegister dst, XMMRegister src) { Assembler::divss(dst, src); }
twisti@4318 946 void divss(XMMRegister dst, Address src) { Assembler::divss(dst, src); }
twisti@4318 947 void divss(XMMRegister dst, AddressLiteral src);
twisti@4318 948
twisti@4318 949 // Move Unaligned Double Quadword
twisti@4318 950 void movdqu(Address dst, XMMRegister src) { Assembler::movdqu(dst, src); }
twisti@4318 951 void movdqu(XMMRegister dst, Address src) { Assembler::movdqu(dst, src); }
twisti@4318 952 void movdqu(XMMRegister dst, XMMRegister src) { Assembler::movdqu(dst, src); }
twisti@4318 953 void movdqu(XMMRegister dst, AddressLiteral src);
twisti@4318 954
drchase@5353 955 // Move Aligned Double Quadword
drchase@5353 956 void movdqa(XMMRegister dst, Address src) { Assembler::movdqa(dst, src); }
drchase@5353 957 void movdqa(XMMRegister dst, XMMRegister src) { Assembler::movdqa(dst, src); }
drchase@5353 958 void movdqa(XMMRegister dst, AddressLiteral src);
drchase@5353 959
twisti@4318 960 void movsd(XMMRegister dst, XMMRegister src) { Assembler::movsd(dst, src); }
twisti@4318 961 void movsd(Address dst, XMMRegister src) { Assembler::movsd(dst, src); }
twisti@4318 962 void movsd(XMMRegister dst, Address src) { Assembler::movsd(dst, src); }
twisti@4318 963 void movsd(XMMRegister dst, AddressLiteral src);
twisti@4318 964
twisti@4318 965 void mulsd(XMMRegister dst, XMMRegister src) { Assembler::mulsd(dst, src); }
twisti@4318 966 void mulsd(XMMRegister dst, Address src) { Assembler::mulsd(dst, src); }
twisti@4318 967 void mulsd(XMMRegister dst, AddressLiteral src);
twisti@4318 968
twisti@4318 969 void mulss(XMMRegister dst, XMMRegister src) { Assembler::mulss(dst, src); }
twisti@4318 970 void mulss(XMMRegister dst, Address src) { Assembler::mulss(dst, src); }
twisti@4318 971 void mulss(XMMRegister dst, AddressLiteral src);
twisti@4318 972
kvn@7025 973 // Carry-Less Multiplication Quadword
kvn@7025 974 void pclmulldq(XMMRegister dst, XMMRegister src) {
kvn@7025 975 // 0x00 - multiply lower 64 bits [0:63]
kvn@7025 976 Assembler::pclmulqdq(dst, src, 0x00);
kvn@7025 977 }
kvn@7025 978 void pclmulhdq(XMMRegister dst, XMMRegister src) {
kvn@7025 979 // 0x11 - multiply upper 64 bits [64:127]
kvn@7025 980 Assembler::pclmulqdq(dst, src, 0x11);
kvn@7025 981 }
kvn@7025 982
twisti@4318 983 void sqrtsd(XMMRegister dst, XMMRegister src) { Assembler::sqrtsd(dst, src); }
twisti@4318 984 void sqrtsd(XMMRegister dst, Address src) { Assembler::sqrtsd(dst, src); }
twisti@4318 985 void sqrtsd(XMMRegister dst, AddressLiteral src);
twisti@4318 986
twisti@4318 987 void sqrtss(XMMRegister dst, XMMRegister src) { Assembler::sqrtss(dst, src); }
twisti@4318 988 void sqrtss(XMMRegister dst, Address src) { Assembler::sqrtss(dst, src); }
twisti@4318 989 void sqrtss(XMMRegister dst, AddressLiteral src);
twisti@4318 990
twisti@4318 991 void subsd(XMMRegister dst, XMMRegister src) { Assembler::subsd(dst, src); }
twisti@4318 992 void subsd(XMMRegister dst, Address src) { Assembler::subsd(dst, src); }
twisti@4318 993 void subsd(XMMRegister dst, AddressLiteral src);
twisti@4318 994
twisti@4318 995 void subss(XMMRegister dst, XMMRegister src) { Assembler::subss(dst, src); }
twisti@4318 996 void subss(XMMRegister dst, Address src) { Assembler::subss(dst, src); }
twisti@4318 997 void subss(XMMRegister dst, AddressLiteral src);
twisti@4318 998
twisti@4318 999 void ucomiss(XMMRegister dst, XMMRegister src) { Assembler::ucomiss(dst, src); }
twisti@4318 1000 void ucomiss(XMMRegister dst, Address src) { Assembler::ucomiss(dst, src); }
twisti@4318 1001 void ucomiss(XMMRegister dst, AddressLiteral src);
twisti@4318 1002
twisti@4318 1003 void ucomisd(XMMRegister dst, XMMRegister src) { Assembler::ucomisd(dst, src); }
twisti@4318 1004 void ucomisd(XMMRegister dst, Address src) { Assembler::ucomisd(dst, src); }
twisti@4318 1005 void ucomisd(XMMRegister dst, AddressLiteral src);
twisti@4318 1006
twisti@4318 1007 // Bitwise Logical XOR of Packed Double-Precision Floating-Point Values
twisti@4318 1008 void xorpd(XMMRegister dst, XMMRegister src) { Assembler::xorpd(dst, src); }
twisti@4318 1009 void xorpd(XMMRegister dst, Address src) { Assembler::xorpd(dst, src); }
twisti@4318 1010 void xorpd(XMMRegister dst, AddressLiteral src);
twisti@4318 1011
twisti@4318 1012 // Bitwise Logical XOR of Packed Single-Precision Floating-Point Values
twisti@4318 1013 void xorps(XMMRegister dst, XMMRegister src) { Assembler::xorps(dst, src); }
twisti@4318 1014 void xorps(XMMRegister dst, Address src) { Assembler::xorps(dst, src); }
twisti@4318 1015 void xorps(XMMRegister dst, AddressLiteral src);
twisti@4318 1016
twisti@4318 1017 // Shuffle Bytes
twisti@4318 1018 void pshufb(XMMRegister dst, XMMRegister src) { Assembler::pshufb(dst, src); }
twisti@4318 1019 void pshufb(XMMRegister dst, Address src) { Assembler::pshufb(dst, src); }
twisti@4318 1020 void pshufb(XMMRegister dst, AddressLiteral src);
twisti@4318 1021 // AVX 3-operands instructions
twisti@4318 1022
twisti@4318 1023 void vaddsd(XMMRegister dst, XMMRegister nds, XMMRegister src) { Assembler::vaddsd(dst, nds, src); }
twisti@4318 1024 void vaddsd(XMMRegister dst, XMMRegister nds, Address src) { Assembler::vaddsd(dst, nds, src); }
twisti@4318 1025 void vaddsd(XMMRegister dst, XMMRegister nds, AddressLiteral src);
twisti@4318 1026
twisti@4318 1027 void vaddss(XMMRegister dst, XMMRegister nds, XMMRegister src) { Assembler::vaddss(dst, nds, src); }
twisti@4318 1028 void vaddss(XMMRegister dst, XMMRegister nds, Address src) { Assembler::vaddss(dst, nds, src); }
twisti@4318 1029 void vaddss(XMMRegister dst, XMMRegister nds, AddressLiteral src);
twisti@4318 1030
twisti@4318 1031 void vandpd(XMMRegister dst, XMMRegister nds, XMMRegister src, bool vector256) { Assembler::vandpd(dst, nds, src, vector256); }
twisti@4318 1032 void vandpd(XMMRegister dst, XMMRegister nds, Address src, bool vector256) { Assembler::vandpd(dst, nds, src, vector256); }
twisti@4318 1033 void vandpd(XMMRegister dst, XMMRegister nds, AddressLiteral src, bool vector256);
twisti@4318 1034
twisti@4318 1035 void vandps(XMMRegister dst, XMMRegister nds, XMMRegister src, bool vector256) { Assembler::vandps(dst, nds, src, vector256); }
twisti@4318 1036 void vandps(XMMRegister dst, XMMRegister nds, Address src, bool vector256) { Assembler::vandps(dst, nds, src, vector256); }
twisti@4318 1037 void vandps(XMMRegister dst, XMMRegister nds, AddressLiteral src, bool vector256);
twisti@4318 1038
twisti@4318 1039 void vdivsd(XMMRegister dst, XMMRegister nds, XMMRegister src) { Assembler::vdivsd(dst, nds, src); }
twisti@4318 1040 void vdivsd(XMMRegister dst, XMMRegister nds, Address src) { Assembler::vdivsd(dst, nds, src); }
twisti@4318 1041 void vdivsd(XMMRegister dst, XMMRegister nds, AddressLiteral src);
twisti@4318 1042
twisti@4318 1043 void vdivss(XMMRegister dst, XMMRegister nds, XMMRegister src) { Assembler::vdivss(dst, nds, src); }
twisti@4318 1044 void vdivss(XMMRegister dst, XMMRegister nds, Address src) { Assembler::vdivss(dst, nds, src); }
twisti@4318 1045 void vdivss(XMMRegister dst, XMMRegister nds, AddressLiteral src);
twisti@4318 1046
twisti@4318 1047 void vmulsd(XMMRegister dst, XMMRegister nds, XMMRegister src) { Assembler::vmulsd(dst, nds, src); }
twisti@4318 1048 void vmulsd(XMMRegister dst, XMMRegister nds, Address src) { Assembler::vmulsd(dst, nds, src); }
twisti@4318 1049 void vmulsd(XMMRegister dst, XMMRegister nds, AddressLiteral src);
twisti@4318 1050
twisti@4318 1051 void vmulss(XMMRegister dst, XMMRegister nds, XMMRegister src) { Assembler::vmulss(dst, nds, src); }
twisti@4318 1052 void vmulss(XMMRegister dst, XMMRegister nds, Address src) { Assembler::vmulss(dst, nds, src); }
twisti@4318 1053 void vmulss(XMMRegister dst, XMMRegister nds, AddressLiteral src);
twisti@4318 1054
twisti@4318 1055 void vsubsd(XMMRegister dst, XMMRegister nds, XMMRegister src) { Assembler::vsubsd(dst, nds, src); }
twisti@4318 1056 void vsubsd(XMMRegister dst, XMMRegister nds, Address src) { Assembler::vsubsd(dst, nds, src); }
twisti@4318 1057 void vsubsd(XMMRegister dst, XMMRegister nds, AddressLiteral src);
twisti@4318 1058
twisti@4318 1059 void vsubss(XMMRegister dst, XMMRegister nds, XMMRegister src) { Assembler::vsubss(dst, nds, src); }
twisti@4318 1060 void vsubss(XMMRegister dst, XMMRegister nds, Address src) { Assembler::vsubss(dst, nds, src); }
twisti@4318 1061 void vsubss(XMMRegister dst, XMMRegister nds, AddressLiteral src);
twisti@4318 1062
twisti@4318 1063 // AVX Vector instructions
twisti@4318 1064
twisti@4318 1065 void vxorpd(XMMRegister dst, XMMRegister nds, XMMRegister src, bool vector256) { Assembler::vxorpd(dst, nds, src, vector256); }
twisti@4318 1066 void vxorpd(XMMRegister dst, XMMRegister nds, Address src, bool vector256) { Assembler::vxorpd(dst, nds, src, vector256); }
twisti@4318 1067 void vxorpd(XMMRegister dst, XMMRegister nds, AddressLiteral src, bool vector256);
twisti@4318 1068
twisti@4318 1069 void vxorps(XMMRegister dst, XMMRegister nds, XMMRegister src, bool vector256) { Assembler::vxorps(dst, nds, src, vector256); }
twisti@4318 1070 void vxorps(XMMRegister dst, XMMRegister nds, Address src, bool vector256) { Assembler::vxorps(dst, nds, src, vector256); }
twisti@4318 1071 void vxorps(XMMRegister dst, XMMRegister nds, AddressLiteral src, bool vector256);
twisti@4318 1072
twisti@4318 1073 void vpxor(XMMRegister dst, XMMRegister nds, XMMRegister src, bool vector256) {
twisti@4318 1074 if (UseAVX > 1 || !vector256) // vpxor 256 bit is available only in AVX2
twisti@4318 1075 Assembler::vpxor(dst, nds, src, vector256);
twisti@4318 1076 else
twisti@4318 1077 Assembler::vxorpd(dst, nds, src, vector256);
twisti@4318 1078 }
twisti@4318 1079 void vpxor(XMMRegister dst, XMMRegister nds, Address src, bool vector256) {
twisti@4318 1080 if (UseAVX > 1 || !vector256) // vpxor 256 bit is available only in AVX2
twisti@4318 1081 Assembler::vpxor(dst, nds, src, vector256);
twisti@4318 1082 else
twisti@4318 1083 Assembler::vxorpd(dst, nds, src, vector256);
twisti@4318 1084 }
twisti@4318 1085
kvn@4413 1086 // Simple version for AVX2 256bit vectors
kvn@4413 1087 void vpxor(XMMRegister dst, XMMRegister src) { Assembler::vpxor(dst, dst, src, true); }
kvn@4413 1088 void vpxor(XMMRegister dst, Address src) { Assembler::vpxor(dst, dst, src, true); }
kvn@4413 1089
twisti@4318 1090 // Move packed integer values from low 128 bit to hign 128 bit in 256 bit vector.
twisti@4318 1091 void vinserti128h(XMMRegister dst, XMMRegister nds, XMMRegister src) {
twisti@4318 1092 if (UseAVX > 1) // vinserti128h is available only in AVX2
twisti@4318 1093 Assembler::vinserti128h(dst, nds, src);
twisti@4318 1094 else
twisti@4318 1095 Assembler::vinsertf128h(dst, nds, src);
twisti@4318 1096 }
twisti@4318 1097
drchase@5353 1098 // Carry-Less Multiplication Quadword
drchase@5353 1099 void vpclmulldq(XMMRegister dst, XMMRegister nds, XMMRegister src) {
drchase@5353 1100 // 0x00 - multiply lower 64 bits [0:63]
drchase@5353 1101 Assembler::vpclmulqdq(dst, nds, src, 0x00);
drchase@5353 1102 }
drchase@5353 1103 void vpclmulhdq(XMMRegister dst, XMMRegister nds, XMMRegister src) {
drchase@5353 1104 // 0x11 - multiply upper 64 bits [64:127]
drchase@5353 1105 Assembler::vpclmulqdq(dst, nds, src, 0x11);
drchase@5353 1106 }
drchase@5353 1107
twisti@4318 1108 // Data
twisti@4318 1109
twisti@4318 1110 void cmov32( Condition cc, Register dst, Address src);
twisti@4318 1111 void cmov32( Condition cc, Register dst, Register src);
twisti@4318 1112
twisti@4318 1113 void cmov( Condition cc, Register dst, Register src) { cmovptr(cc, dst, src); }
twisti@4318 1114
twisti@4318 1115 void cmovptr(Condition cc, Register dst, Address src) { LP64_ONLY(cmovq(cc, dst, src)) NOT_LP64(cmov32(cc, dst, src)); }
twisti@4318 1116 void cmovptr(Condition cc, Register dst, Register src) { LP64_ONLY(cmovq(cc, dst, src)) NOT_LP64(cmov32(cc, dst, src)); }
twisti@4318 1117
twisti@4318 1118 void movoop(Register dst, jobject obj);
twisti@4318 1119 void movoop(Address dst, jobject obj);
twisti@4318 1120
twisti@4318 1121 void mov_metadata(Register dst, Metadata* obj);
twisti@4318 1122 void mov_metadata(Address dst, Metadata* obj);
twisti@4318 1123
twisti@4318 1124 void movptr(ArrayAddress dst, Register src);
twisti@4318 1125 // can this do an lea?
twisti@4318 1126 void movptr(Register dst, ArrayAddress src);
twisti@4318 1127
twisti@4318 1128 void movptr(Register dst, Address src);
twisti@4318 1129
kvn@6429 1130 #ifdef _LP64
kvn@6429 1131 void movptr(Register dst, AddressLiteral src, Register scratch=rscratch1);
kvn@6429 1132 #else
kvn@6429 1133 void movptr(Register dst, AddressLiteral src, Register scratch=noreg); // Scratch reg is ignored in 32-bit
kvn@6429 1134 #endif
twisti@4318 1135
twisti@4318 1136 void movptr(Register dst, intptr_t src);
twisti@4318 1137 void movptr(Register dst, Register src);
twisti@4318 1138 void movptr(Address dst, intptr_t src);
twisti@4318 1139
twisti@4318 1140 void movptr(Address dst, Register src);
twisti@4318 1141
twisti@4318 1142 void movptr(Register dst, RegisterOrConstant src) {
twisti@4318 1143 if (src.is_constant()) movptr(dst, src.as_constant());
twisti@4318 1144 else movptr(dst, src.as_register());
twisti@4318 1145 }
twisti@4318 1146
twisti@4318 1147 #ifdef _LP64
twisti@4318 1148 // Generally the next two are only used for moving NULL
twisti@4318 1149 // Although there are situations in initializing the mark word where
twisti@4318 1150 // they could be used. They are dangerous.
twisti@4318 1151
twisti@4318 1152 // They only exist on LP64 so that int32_t and intptr_t are not the same
twisti@4318 1153 // and we have ambiguous declarations.
twisti@4318 1154
twisti@4318 1155 void movptr(Address dst, int32_t imm32);
twisti@4318 1156 void movptr(Register dst, int32_t imm32);
twisti@4318 1157 #endif // _LP64
twisti@4318 1158
twisti@4318 1159 // to avoid hiding movl
twisti@4318 1160 void mov32(AddressLiteral dst, Register src);
twisti@4318 1161 void mov32(Register dst, AddressLiteral src);
twisti@4318 1162
twisti@4318 1163 // to avoid hiding movb
twisti@4318 1164 void movbyte(ArrayAddress dst, int src);
twisti@4318 1165
twisti@4318 1166 // Import other mov() methods from the parent class or else
twisti@4318 1167 // they will be hidden by the following overriding declaration.
twisti@4318 1168 using Assembler::movdl;
twisti@4318 1169 using Assembler::movq;
twisti@4318 1170 void movdl(XMMRegister dst, AddressLiteral src);
twisti@4318 1171 void movq(XMMRegister dst, AddressLiteral src);
twisti@4318 1172
twisti@4318 1173 // Can push value or effective address
twisti@4318 1174 void pushptr(AddressLiteral src);
twisti@4318 1175
twisti@4318 1176 void pushptr(Address src) { LP64_ONLY(pushq(src)) NOT_LP64(pushl(src)); }
twisti@4318 1177 void popptr(Address src) { LP64_ONLY(popq(src)) NOT_LP64(popl(src)); }
twisti@4318 1178
twisti@4318 1179 void pushoop(jobject obj);
twisti@4318 1180 void pushklass(Metadata* obj);
twisti@4318 1181
twisti@4318 1182 // sign extend as need a l to ptr sized element
twisti@4318 1183 void movl2ptr(Register dst, Address src) { LP64_ONLY(movslq(dst, src)) NOT_LP64(movl(dst, src)); }
twisti@4318 1184 void movl2ptr(Register dst, Register src) { LP64_ONLY(movslq(dst, src)) NOT_LP64(if (dst != src) movl(dst, src)); }
twisti@4318 1185
twisti@4318 1186 // C2 compiled method's prolog code.
roland@6723 1187 void verified_entry(int framesize, int stack_bang_size, bool fp_mode_24b);
twisti@4318 1188
kvn@4410 1189 // clear memory of size 'cnt' qwords, starting at 'base'.
kvn@4410 1190 void clear_mem(Register base, Register cnt, Register rtmp);
kvn@4410 1191
twisti@4318 1192 // IndexOf strings.
twisti@4318 1193 // Small strings are loaded through stack if they cross page boundary.
twisti@4318 1194 void string_indexof(Register str1, Register str2,
twisti@4318 1195 Register cnt1, Register cnt2,
twisti@4318 1196 int int_cnt2, Register result,
twisti@4318 1197 XMMRegister vec, Register tmp);
twisti@4318 1198
twisti@4318 1199 // IndexOf for constant substrings with size >= 8 elements
twisti@4318 1200 // which don't need to be loaded through stack.
twisti@4318 1201 void string_indexofC8(Register str1, Register str2,
twisti@4318 1202 Register cnt1, Register cnt2,
twisti@4318 1203 int int_cnt2, Register result,
twisti@4318 1204 XMMRegister vec, Register tmp);
twisti@4318 1205
twisti@4318 1206 // Smallest code: we don't need to load through stack,
twisti@4318 1207 // check string tail.
twisti@4318 1208
twisti@4318 1209 // Compare strings.
twisti@4318 1210 void string_compare(Register str1, Register str2,
twisti@4318 1211 Register cnt1, Register cnt2, Register result,
twisti@4318 1212 XMMRegister vec1);
twisti@4318 1213
twisti@4318 1214 // Compare char[] arrays.
twisti@4318 1215 void char_arrays_equals(bool is_array_equ, Register ary1, Register ary2,
twisti@4318 1216 Register limit, Register result, Register chr,
twisti@4318 1217 XMMRegister vec1, XMMRegister vec2);
twisti@4318 1218
twisti@4318 1219 // Fill primitive arrays
twisti@4318 1220 void generate_fill(BasicType t, bool aligned,
twisti@4318 1221 Register to, Register value, Register count,
twisti@4318 1222 Register rtmp, XMMRegister xtmp);
twisti@4318 1223
kvn@4479 1224 void encode_iso_array(Register src, Register dst, Register len,
kvn@4479 1225 XMMRegister tmp1, XMMRegister tmp2, XMMRegister tmp3,
kvn@4479 1226 XMMRegister tmp4, Register tmp5, Register result);
kvn@4479 1227
kvn@7152 1228 #ifdef _LP64
kvn@7152 1229 void add2_with_carry(Register dest_hi, Register dest_lo, Register src1, Register src2);
kvn@7152 1230 void multiply_64_x_64_loop(Register x, Register xstart, Register x_xstart,
kvn@7152 1231 Register y, Register y_idx, Register z,
kvn@7152 1232 Register carry, Register product,
kvn@7152 1233 Register idx, Register kdx);
kvn@7152 1234 void multiply_add_128_x_128(Register x_xstart, Register y, Register z,
kvn@7152 1235 Register yz_idx, Register idx,
kvn@7152 1236 Register carry, Register product, int offset);
kvn@7152 1237 void multiply_128_x_128_bmi2_loop(Register y, Register z,
kvn@7152 1238 Register carry, Register carry2,
kvn@7152 1239 Register idx, Register jdx,
kvn@7152 1240 Register yz_idx1, Register yz_idx2,
kvn@7152 1241 Register tmp, Register tmp3, Register tmp4);
kvn@7152 1242 void multiply_128_x_128_loop(Register x_xstart, Register y, Register z,
kvn@7152 1243 Register yz_idx, Register idx, Register jdx,
kvn@7152 1244 Register carry, Register product,
kvn@7152 1245 Register carry2);
kvn@7152 1246 void multiply_to_len(Register x, Register xlen, Register y, Register ylen, Register z, Register zlen,
kvn@7152 1247 Register tmp1, Register tmp2, Register tmp3, Register tmp4, Register tmp5);
igerasim@8307 1248
igerasim@8307 1249 void square_rshift(Register x, Register len, Register z, Register tmp1, Register tmp3,
igerasim@8307 1250 Register tmp4, Register tmp5, Register rdxReg, Register raxReg);
igerasim@8307 1251 void multiply_add_64_bmi2(Register sum, Register op1, Register op2, Register carry,
igerasim@8307 1252 Register tmp2);
igerasim@8307 1253 void multiply_add_64(Register sum, Register op1, Register op2, Register carry,
igerasim@8307 1254 Register rdxReg, Register raxReg);
igerasim@8307 1255 void add_one_64(Register z, Register zlen, Register carry, Register tmp1);
igerasim@8307 1256 void lshift_by_1(Register x, Register len, Register z, Register zlen, Register tmp1, Register tmp2,
igerasim@8307 1257 Register tmp3, Register tmp4);
igerasim@8307 1258 void square_to_len(Register x, Register len, Register z, Register zlen, Register tmp1, Register tmp2,
igerasim@8307 1259 Register tmp3, Register tmp4, Register tmp5, Register rdxReg, Register raxReg);
igerasim@8307 1260
igerasim@8307 1261 void mul_add_128_x_32_loop(Register out, Register in, Register offset, Register len, Register tmp1,
igerasim@8307 1262 Register tmp2, Register tmp3, Register tmp4, Register tmp5, Register rdxReg,
igerasim@8307 1263 Register raxReg);
igerasim@8307 1264 void mul_add(Register out, Register in, Register offset, Register len, Register k, Register tmp1,
igerasim@8307 1265 Register tmp2, Register tmp3, Register tmp4, Register tmp5, Register rdxReg,
igerasim@8307 1266 Register raxReg);
kvn@7152 1267 #endif
kvn@7152 1268
drchase@5353 1269 // CRC32 code for java.util.zip.CRC32::updateBytes() instrinsic.
drchase@5353 1270 void update_byte_crc32(Register crc, Register val, Register table);
drchase@5353 1271 void kernel_crc32(Register crc, Register buf, Register len, Register table, Register tmp);
drchase@5353 1272 // Fold 128-bit data chunk
drchase@5353 1273 void fold_128bit_crc32(XMMRegister xcrc, XMMRegister xK, XMMRegister xtmp, Register buf, int offset);
drchase@5353 1274 void fold_128bit_crc32(XMMRegister xcrc, XMMRegister xK, XMMRegister xtmp, XMMRegister xbuf);
drchase@5353 1275 // Fold 8-bit data
drchase@5353 1276 void fold_8bit_crc32(Register crc, Register table, Register tmp);
drchase@5353 1277 void fold_8bit_crc32(XMMRegister crc, Register table, XMMRegister xtmp, Register tmp);
drchase@5353 1278
twisti@4318 1279 #undef VIRTUAL
twisti@4318 1280
twisti@4318 1281 };
twisti@4318 1282
twisti@4318 1283 /**
twisti@4318 1284 * class SkipIfEqual:
twisti@4318 1285 *
twisti@4318 1286 * Instantiating this class will result in assembly code being output that will
twisti@4318 1287 * jump around any code emitted between the creation of the instance and it's
twisti@4318 1288 * automatic destruction at the end of a scope block, depending on the value of
twisti@4318 1289 * the flag passed to the constructor, which will be checked at run-time.
twisti@4318 1290 */
twisti@4318 1291 class SkipIfEqual {
twisti@4318 1292 private:
twisti@4318 1293 MacroAssembler* _masm;
twisti@4318 1294 Label _label;
twisti@4318 1295
twisti@4318 1296 public:
twisti@4318 1297 SkipIfEqual(MacroAssembler*, const bool* flag_addr, bool value);
twisti@4318 1298 ~SkipIfEqual();
twisti@4318 1299 };
twisti@4318 1300
twisti@4318 1301 #endif // CPU_X86_VM_MACROASSEMBLER_X86_HPP

mercurial