1 /*
   2  * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef CPU_X86_VM_ASSEMBLER_X86_HPP
  26 #define CPU_X86_VM_ASSEMBLER_X86_HPP
  27 
  28 #include "asm/register.hpp"
  29 #include "vm_version_x86.hpp"
  30 
  31 class BiasedLockingCounters;
  32 
  33 // Contains all the definitions needed for x86 assembly code generation.
  34 
  35 // Calling convention
  36 class Argument {
  37  public:
  38   enum {
  39 #ifdef _LP64
  40 #ifdef _WIN64
  41     n_int_register_parameters_c   = 4, // rcx, rdx, r8, r9 (c_rarg0, c_rarg1, ...)
  42     n_float_register_parameters_c = 4,  // xmm0 - xmm3 (c_farg0, c_farg1, ... )
  43 #else
  44     n_int_register_parameters_c   = 6, // rdi, rsi, rdx, rcx, r8, r9 (c_rarg0, c_rarg1, ...)
  45     n_float_register_parameters_c = 8,  // xmm0 - xmm7 (c_farg0, c_farg1, ... )
  46 #endif // _WIN64
  47     n_int_register_parameters_j   = 6, // j_rarg0, j_rarg1, ...
  48     n_float_register_parameters_j = 8  // j_farg0, j_farg1, ...
  49 #else
  50     n_register_parameters = 0   // 0 registers used to pass arguments
  51 #endif // _LP64
  52   };
  53 };
  54 
  55 
  56 #ifdef _LP64
  57 // Symbolically name the register arguments used by the c calling convention.
  58 // Windows is different from linux/solaris. So much for standards...
  59 
  60 #ifdef _WIN64
  61 
  62 REGISTER_DECLARATION(Register, c_rarg0, rcx);
  63 REGISTER_DECLARATION(Register, c_rarg1, rdx);
  64 REGISTER_DECLARATION(Register, c_rarg2, r8);
  65 REGISTER_DECLARATION(Register, c_rarg3, r9);
  66 
  67 REGISTER_DECLARATION(XMMRegister, c_farg0, xmm0);
  68 REGISTER_DECLARATION(XMMRegister, c_farg1, xmm1);
  69 REGISTER_DECLARATION(XMMRegister, c_farg2, xmm2);
  70 REGISTER_DECLARATION(XMMRegister, c_farg3, xmm3);
  71 
  72 #else
  73 
  74 REGISTER_DECLARATION(Register, c_rarg0, rdi);
  75 REGISTER_DECLARATION(Register, c_rarg1, rsi);
  76 REGISTER_DECLARATION(Register, c_rarg2, rdx);
  77 REGISTER_DECLARATION(Register, c_rarg3, rcx);
  78 REGISTER_DECLARATION(Register, c_rarg4, r8);
  79 REGISTER_DECLARATION(Register, c_rarg5, r9);
  80 
  81 REGISTER_DECLARATION(XMMRegister, c_farg0, xmm0);
  82 REGISTER_DECLARATION(XMMRegister, c_farg1, xmm1);
  83 REGISTER_DECLARATION(XMMRegister, c_farg2, xmm2);
  84 REGISTER_DECLARATION(XMMRegister, c_farg3, xmm3);
  85 REGISTER_DECLARATION(XMMRegister, c_farg4, xmm4);
  86 REGISTER_DECLARATION(XMMRegister, c_farg5, xmm5);
  87 REGISTER_DECLARATION(XMMRegister, c_farg6, xmm6);
  88 REGISTER_DECLARATION(XMMRegister, c_farg7, xmm7);
  89 
  90 #endif // _WIN64
  91 
  92 // Symbolically name the register arguments used by the Java calling convention.
  93 // We have control over the convention for java so we can do what we please.
  94 // What pleases us is to offset the java calling convention so that when
  95 // we call a suitable jni method the arguments are lined up and we don't
  96 // have to do little shuffling. A suitable jni method is non-static and a
  97 // small number of arguments (two fewer args on windows)
  98 //
  99 //        |-------------------------------------------------------|
 100 //        | c_rarg0   c_rarg1  c_rarg2 c_rarg3 c_rarg4 c_rarg5    |
 101 //        |-------------------------------------------------------|
 102 //        | rcx       rdx      r8      r9      rdi*    rsi*       | windows (* not a c_rarg)
 103 //        | rdi       rsi      rdx     rcx     r8      r9         | solaris/linux
 104 //        |-------------------------------------------------------|
 105 //        | j_rarg5   j_rarg0  j_rarg1 j_rarg2 j_rarg3 j_rarg4    |
 106 //        |-------------------------------------------------------|
 107 
 108 REGISTER_DECLARATION(Register, j_rarg0, c_rarg1);
 109 REGISTER_DECLARATION(Register, j_rarg1, c_rarg2);
 110 REGISTER_DECLARATION(Register, j_rarg2, c_rarg3);
 111 // Windows runs out of register args here
 112 #ifdef _WIN64
 113 REGISTER_DECLARATION(Register, j_rarg3, rdi);
 114 REGISTER_DECLARATION(Register, j_rarg4, rsi);
 115 #else
 116 REGISTER_DECLARATION(Register, j_rarg3, c_rarg4);
 117 REGISTER_DECLARATION(Register, j_rarg4, c_rarg5);
 118 #endif /* _WIN64 */
 119 REGISTER_DECLARATION(Register, j_rarg5, c_rarg0);
 120 
 121 REGISTER_DECLARATION(XMMRegister, j_farg0, xmm0);
 122 REGISTER_DECLARATION(XMMRegister, j_farg1, xmm1);
 123 REGISTER_DECLARATION(XMMRegister, j_farg2, xmm2);
 124 REGISTER_DECLARATION(XMMRegister, j_farg3, xmm3);
 125 REGISTER_DECLARATION(XMMRegister, j_farg4, xmm4);
 126 REGISTER_DECLARATION(XMMRegister, j_farg5, xmm5);
 127 REGISTER_DECLARATION(XMMRegister, j_farg6, xmm6);
 128 REGISTER_DECLARATION(XMMRegister, j_farg7, xmm7);
 129 
 130 REGISTER_DECLARATION(Register, rscratch1, r10);  // volatile
 131 REGISTER_DECLARATION(Register, rscratch2, r11);  // volatile
 132 
 133 REGISTER_DECLARATION(Register, r12_heapbase, r12); // callee-saved
 134 REGISTER_DECLARATION(Register, r15_thread, r15); // callee-saved
 135 
 136 #else
 137 // rscratch1 will apear in 32bit code that is dead but of course must compile
 138 // Using noreg ensures if the dead code is incorrectly live and executed it
 139 // will cause an assertion failure
 140 #define rscratch1 noreg
 141 #define rscratch2 noreg
 142 
 143 #endif // _LP64
 144 
 145 // JSR 292
 146 // On x86, the SP does not have to be saved when invoking method handle intrinsics
 147 // or compiled lambda forms. We indicate that by setting rbp_mh_SP_save to noreg.
 148 REGISTER_DECLARATION(Register, rbp_mh_SP_save, noreg);
 149 
 150 // Address is an abstraction used to represent a memory location
 151 // using any of the amd64 addressing modes with one object.
 152 //
 153 // Note: A register location is represented via a Register, not
 154 //       via an address for efficiency & simplicity reasons.
 155 
 156 class ArrayAddress;
 157 
 158 class Address {
 159  public:
 160   enum ScaleFactor {
 161     no_scale = -1,
 162     times_1  =  0,
 163     times_2  =  1,
 164     times_4  =  2,
 165     times_8  =  3,
 166     times_ptr = LP64_ONLY(times_8) NOT_LP64(times_4)
 167   };
 168   static ScaleFactor times(int size) {
 169     assert(size >= 1 && size <= 8 && is_power_of_2(size), "bad scale size");
 170     if (size == 8)  return times_8;
 171     if (size == 4)  return times_4;
 172     if (size == 2)  return times_2;
 173     return times_1;
 174   }
 175   static int scale_size(ScaleFactor scale) {
 176     assert(scale != no_scale, "");
 177     assert(((1 << (int)times_1) == 1 &&
 178             (1 << (int)times_2) == 2 &&
 179             (1 << (int)times_4) == 4 &&
 180             (1 << (int)times_8) == 8), "");
 181     return (1 << (int)scale);
 182   }
 183 
 184  private:
 185   Register         _base;
 186   Register         _index;
 187   XMMRegister      _xmmindex;
 188   ScaleFactor      _scale;
 189   int              _disp;
 190   bool             _isxmmindex;
 191   RelocationHolder _rspec;
 192 
 193   // Easily misused constructors make them private
 194   // %%% can we make these go away?
 195   NOT_LP64(Address(address loc, RelocationHolder spec);)
 196   Address(int disp, address loc, relocInfo::relocType rtype);
 197   Address(int disp, address loc, RelocationHolder spec);
 198 
 199  public:
 200 
 201  int disp() { return _disp; }
 202   // creation
 203   Address()
 204     : _base(noreg),
 205       _index(noreg),
 206       _xmmindex(xnoreg),
 207       _scale(no_scale),
 208       _disp(0),
 209       _isxmmindex(false){
 210   }
 211 
 212   // No default displacement otherwise Register can be implicitly
 213   // converted to 0(Register) which is quite a different animal.
 214 
 215   Address(Register base, int disp)
 216     : _base(base),
 217       _index(noreg),
 218       _xmmindex(xnoreg),
 219       _scale(no_scale),
 220       _disp(disp),
 221       _isxmmindex(false){
 222   }
 223 
 224   Address(Register base, Register index, ScaleFactor scale, int disp = 0)
 225     : _base (base),
 226       _index(index),
 227       _xmmindex(xnoreg),
 228       _scale(scale),
 229       _disp (disp),
 230       _isxmmindex(false) {
 231     assert(!index->is_valid() == (scale == Address::no_scale),
 232            "inconsistent address");
 233   }
 234 
 235   Address(Register base, RegisterOrConstant index, ScaleFactor scale = times_1, int disp = 0)
 236     : _base (base),
 237       _index(index.register_or_noreg()),
 238       _xmmindex(xnoreg),
 239       _scale(scale),
 240       _disp (disp + (index.constant_or_zero() * scale_size(scale))),
 241       _isxmmindex(false){
 242     if (!index.is_register())  scale = Address::no_scale;
 243     assert(!_index->is_valid() == (scale == Address::no_scale),
 244            "inconsistent address");
 245   }
 246 
 247   Address(Register base, XMMRegister index, ScaleFactor scale, int disp = 0)
 248     : _base (base),
 249       _index(noreg),
 250       _xmmindex(index),
 251       _scale(scale),
 252       _disp(disp),
 253       _isxmmindex(true) {
 254       assert(!index->is_valid() == (scale == Address::no_scale),
 255              "inconsistent address");
 256   }
 257 
 258   Address plus_disp(int disp) const {
 259     Address a = (*this);
 260     a._disp += disp;
 261     return a;
 262   }
 263   Address plus_disp(RegisterOrConstant disp, ScaleFactor scale = times_1) const {
 264     Address a = (*this);
 265     a._disp += disp.constant_or_zero() * scale_size(scale);
 266     if (disp.is_register()) {
 267       assert(!a.index()->is_valid(), "competing indexes");
 268       a._index = disp.as_register();
 269       a._scale = scale;
 270     }
 271     return a;
 272   }
 273   bool is_same_address(Address a) const {
 274     // disregard _rspec
 275     return _base == a._base && _disp == a._disp && _index == a._index && _scale == a._scale;
 276   }
 277 
 278   // The following two overloads are used in connection with the
 279   // ByteSize type (see sizes.hpp).  They simplify the use of
 280   // ByteSize'd arguments in assembly code. Note that their equivalent
 281   // for the optimized build are the member functions with int disp
 282   // argument since ByteSize is mapped to an int type in that case.
 283   //
 284   // Note: DO NOT introduce similar overloaded functions for WordSize
 285   // arguments as in the optimized mode, both ByteSize and WordSize
 286   // are mapped to the same type and thus the compiler cannot make a
 287   // distinction anymore (=> compiler errors).
 288 
 289 #ifdef ASSERT
 290   Address(Register base, ByteSize disp)
 291     : _base(base),
 292       _index(noreg),
 293       _xmmindex(xnoreg),
 294       _scale(no_scale),
 295       _disp(in_bytes(disp)),
 296       _isxmmindex(false){
 297   }
 298 
 299   Address(Register base, Register index, ScaleFactor scale, ByteSize disp)
 300     : _base(base),
 301       _index(index),
 302       _xmmindex(xnoreg),
 303       _scale(scale),
 304       _disp(in_bytes(disp)),
 305       _isxmmindex(false){
 306     assert(!index->is_valid() == (scale == Address::no_scale),
 307            "inconsistent address");
 308   }
 309   Address(Register base, RegisterOrConstant index, ScaleFactor scale, ByteSize disp)
 310     : _base (base),
 311       _index(index.register_or_noreg()),
 312       _xmmindex(xnoreg),
 313       _scale(scale),
 314       _disp (in_bytes(disp) + (index.constant_or_zero() * scale_size(scale))),
 315       _isxmmindex(false) {
 316     if (!index.is_register())  scale = Address::no_scale;
 317     assert(!_index->is_valid() == (scale == Address::no_scale),
 318            "inconsistent address");
 319   }
 320 
 321 #endif // ASSERT
 322 
 323   // accessors
 324   bool        uses(Register reg) const { return _base == reg || _index == reg; }
 325   Register    base()             const { return _base;  }
 326   Register    index()            const { return _index; }
 327   XMMRegister xmmindex()         const { return _xmmindex; }
 328   ScaleFactor scale()            const { return _scale; }
 329   int         disp()             const { return _disp;  }
 330   bool        isxmmindex()       const { return _isxmmindex; }
 331 
 332   // Convert the raw encoding form into the form expected by the constructor for
 333   // Address.  An index of 4 (rsp) corresponds to having no index, so convert
 334   // that to noreg for the Address constructor.
 335   static Address make_raw(int base, int index, int scale, int disp, relocInfo::relocType disp_reloc);
 336 
 337   static Address make_array(ArrayAddress);
 338 
 339  private:
 340   bool base_needs_rex() const {
 341     return _base != noreg && _base->encoding() >= 8;
 342   }
 343 
 344   bool index_needs_rex() const {
 345     return _index != noreg &&_index->encoding() >= 8;
 346   }
 347 
 348   bool xmmindex_needs_rex() const {
 349     return _xmmindex != xnoreg && _xmmindex->encoding() >= 8;
 350   }
 351 
 352   relocInfo::relocType reloc() const { return _rspec.type(); }
 353 
 354   friend class Assembler;
 355   friend class MacroAssembler;
 356   friend class LIR_Assembler; // base/index/scale/disp
 357 };
 358 
 359 //
 360 // AddressLiteral has been split out from Address because operands of this type
 361 // need to be treated specially on 32bit vs. 64bit platforms. By splitting it out
 362 // the few instructions that need to deal with address literals are unique and the
 363 // MacroAssembler does not have to implement every instruction in the Assembler
 364 // in order to search for address literals that may need special handling depending
 365 // on the instruction and the platform. As small step on the way to merging i486/amd64
 366 // directories.
 367 //
 368 class AddressLiteral {
 369   friend class ArrayAddress;
 370   RelocationHolder _rspec;
 371   // Typically we use AddressLiterals we want to use their rval
 372   // However in some situations we want the lval (effect address) of the item.
 373   // We provide a special factory for making those lvals.
 374   bool _is_lval;
 375 
 376   // If the target is far we'll need to load the ea of this to
 377   // a register to reach it. Otherwise if near we can do rip
 378   // relative addressing.
 379 
 380   address          _target;
 381 
 382  protected:
 383   // creation
 384   AddressLiteral()
 385     : _is_lval(false),
 386       _target(NULL)
 387   {}
 388 
 389   public:
 390 
 391 
 392   AddressLiteral(address target, relocInfo::relocType rtype);
 393 
 394   AddressLiteral(address target, RelocationHolder const& rspec)
 395     : _rspec(rspec),
 396       _is_lval(false),
 397       _target(target)
 398   {}
 399 
 400   AddressLiteral addr() {
 401     AddressLiteral ret = *this;
 402     ret._is_lval = true;
 403     return ret;
 404   }
 405 
 406 
 407  private:
 408 
 409   address target() { return _target; }
 410   bool is_lval() { return _is_lval; }
 411 
 412   relocInfo::relocType reloc() const { return _rspec.type(); }
 413   const RelocationHolder& rspec() const { return _rspec; }
 414 
 415   friend class Assembler;
 416   friend class MacroAssembler;
 417   friend class Address;
 418   friend class LIR_Assembler;
 419 };
 420 
 421 // Convience classes
 422 class RuntimeAddress: public AddressLiteral {
 423 
 424   public:
 425 
 426   RuntimeAddress(address target) : AddressLiteral(target, relocInfo::runtime_call_type) {}
 427 
 428 };
 429 
 430 class ExternalAddress: public AddressLiteral {
 431  private:
 432   static relocInfo::relocType reloc_for_target(address target) {
 433     // Sometimes ExternalAddress is used for values which aren't
 434     // exactly addresses, like the card table base.
 435     // external_word_type can't be used for values in the first page
 436     // so just skip the reloc in that case.
 437     return external_word_Relocation::can_be_relocated(target) ? relocInfo::external_word_type : relocInfo::none;
 438   }
 439 
 440  public:
 441 
 442   ExternalAddress(address target) : AddressLiteral(target, reloc_for_target(target)) {}
 443 
 444 };
 445 
 446 class InternalAddress: public AddressLiteral {
 447 
 448   public:
 449 
 450   InternalAddress(address target) : AddressLiteral(target, relocInfo::internal_word_type) {}
 451 
 452 };
 453 
 454 // x86 can do array addressing as a single operation since disp can be an absolute
 455 // address amd64 can't. We create a class that expresses the concept but does extra
 456 // magic on amd64 to get the final result
 457 
 458 class ArrayAddress {
 459   private:
 460 
 461   AddressLiteral _base;
 462   Address        _index;
 463 
 464   public:
 465 
 466   ArrayAddress() {};
 467   ArrayAddress(AddressLiteral base, Address index): _base(base), _index(index) {};
 468   AddressLiteral base() { return _base; }
 469   Address index() { return _index; }
 470 
 471 };
 472 
 473 class InstructionAttr;
 474 
 475 // 64-bit refect the fxsave size which is 512 bytes and the new xsave area on EVEX which is another 2176 bytes
 476 // See fxsave and xsave(EVEX enabled) documentation for layout
 477 const int FPUStateSizeInWords = NOT_LP64(27) LP64_ONLY(2688 / wordSize);
 478 
 479 // The Intel x86/Amd64 Assembler: Pure assembler doing NO optimizations on the instruction
 480 // level (e.g. mov rax, 0 is not translated into xor rax, rax!); i.e., what you write
 481 // is what you get. The Assembler is generating code into a CodeBuffer.
 482 
 483 class Assembler : public AbstractAssembler  {
 484   friend class AbstractAssembler; // for the non-virtual hack
 485   friend class LIR_Assembler; // as_Address()
 486   friend class StubGenerator;
 487 
 488  public:
 489   enum Condition {                     // The x86 condition codes used for conditional jumps/moves.
 490     zero          = 0x4,
 491     notZero       = 0x5,
 492     equal         = 0x4,
 493     notEqual      = 0x5,
 494     less          = 0xc,
 495     lessEqual     = 0xe,
 496     greater       = 0xf,
 497     greaterEqual  = 0xd,
 498     below         = 0x2,
 499     belowEqual    = 0x6,
 500     above         = 0x7,
 501     aboveEqual    = 0x3,
 502     overflow      = 0x0,
 503     noOverflow    = 0x1,
 504     carrySet      = 0x2,
 505     carryClear    = 0x3,
 506     negative      = 0x8,
 507     positive      = 0x9,
 508     parity        = 0xa,
 509     noParity      = 0xb
 510   };
 511 
 512   enum Prefix {
 513     // segment overrides
 514     CS_segment = 0x2e,
 515     SS_segment = 0x36,
 516     DS_segment = 0x3e,
 517     ES_segment = 0x26,
 518     FS_segment = 0x64,
 519     GS_segment = 0x65,
 520 
 521     REX        = 0x40,
 522 
 523     REX_B      = 0x41,
 524     REX_X      = 0x42,
 525     REX_XB     = 0x43,
 526     REX_R      = 0x44,
 527     REX_RB     = 0x45,
 528     REX_RX     = 0x46,
 529     REX_RXB    = 0x47,
 530 
 531     REX_W      = 0x48,
 532 
 533     REX_WB     = 0x49,
 534     REX_WX     = 0x4A,
 535     REX_WXB    = 0x4B,
 536     REX_WR     = 0x4C,
 537     REX_WRB    = 0x4D,
 538     REX_WRX    = 0x4E,
 539     REX_WRXB   = 0x4F,
 540 
 541     VEX_3bytes = 0xC4,
 542     VEX_2bytes = 0xC5,
 543     EVEX_4bytes = 0x62,
 544     Prefix_EMPTY = 0x0
 545   };
 546 
 547   enum VexPrefix {
 548     VEX_B = 0x20,
 549     VEX_X = 0x40,
 550     VEX_R = 0x80,
 551     VEX_W = 0x80
 552   };
 553 
 554   enum ExexPrefix {
 555     EVEX_F  = 0x04,
 556     EVEX_V  = 0x08,
 557     EVEX_Rb = 0x10,
 558     EVEX_X  = 0x40,
 559     EVEX_Z  = 0x80
 560   };
 561 
 562   enum VexSimdPrefix {
 563     VEX_SIMD_NONE = 0x0,
 564     VEX_SIMD_66   = 0x1,
 565     VEX_SIMD_F3   = 0x2,
 566     VEX_SIMD_F2   = 0x3
 567   };
 568 
 569   enum VexOpcode {
 570     VEX_OPCODE_NONE  = 0x0,
 571     VEX_OPCODE_0F    = 0x1,
 572     VEX_OPCODE_0F_38 = 0x2,
 573     VEX_OPCODE_0F_3A = 0x3,
 574     VEX_OPCODE_MASK  = 0x1F
 575   };
 576 
 577   enum AvxVectorLen {
 578     AVX_128bit = 0x0,
 579     AVX_256bit = 0x1,
 580     AVX_512bit = 0x2,
 581     AVX_NoVec  = 0x4
 582   };
 583 
 584   enum EvexTupleType {
 585     EVEX_FV   = 0,
 586     EVEX_HV   = 4,
 587     EVEX_FVM  = 6,
 588     EVEX_T1S  = 7,
 589     EVEX_T1F  = 11,
 590     EVEX_T2   = 13,
 591     EVEX_T4   = 15,
 592     EVEX_T8   = 17,
 593     EVEX_HVM  = 18,
 594     EVEX_QVM  = 19,
 595     EVEX_OVM  = 20,
 596     EVEX_M128 = 21,
 597     EVEX_DUP  = 22,
 598     EVEX_ETUP = 23
 599   };
 600 
 601   enum EvexInputSizeInBits {
 602     EVEX_8bit  = 0,
 603     EVEX_16bit = 1,
 604     EVEX_32bit = 2,
 605     EVEX_64bit = 3,
 606     EVEX_NObit = 4
 607   };
 608 
 609   enum WhichOperand {
 610     // input to locate_operand, and format code for relocations
 611     imm_operand  = 0,            // embedded 32-bit|64-bit immediate operand
 612     disp32_operand = 1,          // embedded 32-bit displacement or address
 613     call32_operand = 2,          // embedded 32-bit self-relative displacement
 614 #ifndef _LP64
 615     _WhichOperand_limit = 3
 616 #else
 617      narrow_oop_operand = 3,     // embedded 32-bit immediate narrow oop
 618     _WhichOperand_limit = 4
 619 #endif
 620   };
 621 
 622   enum ComparisonPredicate {
 623     eq = 0,
 624     lt = 1,
 625     le = 2,
 626     _false = 3,
 627     neq = 4,
 628     nlt = 5,
 629     nle = 6,
 630     _true = 7
 631   };
 632 
 633 
 634   // NOTE: The general philopsophy of the declarations here is that 64bit versions
 635   // of instructions are freely declared without the need for wrapping them an ifdef.
 636   // (Some dangerous instructions are ifdef's out of inappropriate jvm's.)
 637   // In the .cpp file the implementations are wrapped so that they are dropped out
 638   // of the resulting jvm. This is done mostly to keep the footprint of MINIMAL
 639   // to the size it was prior to merging up the 32bit and 64bit assemblers.
 640   //
 641   // This does mean you'll get a linker/runtime error if you use a 64bit only instruction
 642   // in a 32bit vm. This is somewhat unfortunate but keeps the ifdef noise down.
 643 
 644 private:
 645 
 646   bool _legacy_mode_bw;
 647   bool _legacy_mode_dq;
 648   bool _legacy_mode_vl;
 649   bool _legacy_mode_vlbw;
 650   bool _is_managed;
 651   bool _vector_masking;    // For stub code use only
 652 
 653   class InstructionAttr *_attributes;
 654 
 655   // 64bit prefixes
 656   int prefix_and_encode(int reg_enc, bool byteinst = false);
 657   int prefixq_and_encode(int reg_enc);
 658 
 659   int prefix_and_encode(int dst_enc, int src_enc) {
 660     return prefix_and_encode(dst_enc, false, src_enc, false);
 661   }
 662   int prefix_and_encode(int dst_enc, bool dst_is_byte, int src_enc, bool src_is_byte);
 663   int prefixq_and_encode(int dst_enc, int src_enc);
 664 
 665   void prefix(Register reg);
 666   void prefix(Register dst, Register src, Prefix p);
 667   void prefix(Register dst, Address adr, Prefix p);
 668   void prefix(Address adr);
 669   void prefixq(Address adr);
 670 
 671   void prefix(Address adr, Register reg,  bool byteinst = false);
 672   void prefix(Address adr, XMMRegister reg);
 673   void prefixq(Address adr, Register reg);
 674   void prefixq(Address adr, XMMRegister reg);
 675 
 676   void prefetch_prefix(Address src);
 677 
 678   void rex_prefix(Address adr, XMMRegister xreg,
 679                   VexSimdPrefix pre, VexOpcode opc, bool rex_w);
 680   int  rex_prefix_and_encode(int dst_enc, int src_enc,
 681                              VexSimdPrefix pre, VexOpcode opc, bool rex_w);
 682 
 683   void vex_prefix(bool vex_r, bool vex_b, bool vex_x, int nds_enc, VexSimdPrefix pre, VexOpcode opc);
 684 
 685   void evex_prefix(bool vex_r, bool vex_b, bool vex_x, bool evex_r, bool evex_v,
 686                    int nds_enc, VexSimdPrefix pre, VexOpcode opc);
 687 
 688   void vex_prefix(Address adr, int nds_enc, int xreg_enc,
 689                   VexSimdPrefix pre, VexOpcode opc,
 690                   InstructionAttr *attributes);
 691 
 692   int  vex_prefix_and_encode(int dst_enc, int nds_enc, int src_enc,
 693                              VexSimdPrefix pre, VexOpcode opc,
 694                              InstructionAttr *attributes);
 695 
 696   void simd_prefix(XMMRegister xreg, XMMRegister nds, Address adr, VexSimdPrefix pre,
 697                    VexOpcode opc, InstructionAttr *attributes);
 698 
 699   int simd_prefix_and_encode(XMMRegister dst, XMMRegister nds, XMMRegister src, VexSimdPrefix pre,
 700                              VexOpcode opc, InstructionAttr *attributes);
 701 
 702   // Helper functions for groups of instructions
 703   void emit_arith_b(int op1, int op2, Register dst, int imm8);
 704 
 705   void emit_arith(int op1, int op2, Register dst, int32_t imm32);
 706   // Force generation of a 4 byte immediate value even if it fits into 8bit
 707   void emit_arith_imm32(int op1, int op2, Register dst, int32_t imm32);
 708   void emit_arith(int op1, int op2, Register dst, Register src);
 709 
 710   bool emit_compressed_disp_byte(int &disp);
 711 
 712   void emit_operand(Register reg,
 713                     Register base, Register index, Address::ScaleFactor scale,
 714                     int disp,
 715                     RelocationHolder const& rspec,
 716                     int rip_relative_correction = 0);
 717 
 718   void emit_operand(XMMRegister reg, Register base, XMMRegister index,
 719                     Address::ScaleFactor scale,
 720                     int disp, RelocationHolder const& rspec);
 721 
 722   void emit_operand(Register reg, Address adr, int rip_relative_correction = 0);
 723 
 724   // operands that only take the original 32bit registers
 725   void emit_operand32(Register reg, Address adr);
 726 
 727   void emit_operand(XMMRegister reg,
 728                     Register base, Register index, Address::ScaleFactor scale,
 729                     int disp,
 730                     RelocationHolder const& rspec);
 731 
 732   void emit_operand(XMMRegister reg, Address adr);
 733 
 734   void emit_operand(MMXRegister reg, Address adr);
 735 
 736   // workaround gcc (3.2.1-7) bug
 737   void emit_operand(Address adr, MMXRegister reg);
 738 
 739 
 740   // Immediate-to-memory forms
 741   void emit_arith_operand(int op1, Register rm, Address adr, int32_t imm32);
 742 
 743   void emit_farith(int b1, int b2, int i);
 744 
 745 
 746  protected:
 747   #ifdef ASSERT
 748   void check_relocation(RelocationHolder const& rspec, int format);
 749   #endif
 750 
 751   void emit_data(jint data, relocInfo::relocType    rtype, int format);
 752   void emit_data(jint data, RelocationHolder const& rspec, int format);
 753   void emit_data64(jlong data, relocInfo::relocType rtype, int format = 0);
 754   void emit_data64(jlong data, RelocationHolder const& rspec, int format = 0);
 755 
 756   bool reachable(AddressLiteral adr) NOT_LP64({ return true;});
 757 
 758   // These are all easily abused and hence protected
 759 
 760   // 32BIT ONLY SECTION
 761 #ifndef _LP64
 762   // Make these disappear in 64bit mode since they would never be correct
 763   void cmp_literal32(Register src1, int32_t imm32, RelocationHolder const& rspec);   // 32BIT ONLY
 764   void cmp_literal32(Address src1, int32_t imm32, RelocationHolder const& rspec);    // 32BIT ONLY
 765 
 766   void mov_literal32(Register dst, int32_t imm32, RelocationHolder const& rspec);    // 32BIT ONLY
 767   void mov_literal32(Address dst, int32_t imm32, RelocationHolder const& rspec);     // 32BIT ONLY
 768 
 769   void push_literal32(int32_t imm32, RelocationHolder const& rspec);                 // 32BIT ONLY
 770 #else
 771   // 64BIT ONLY SECTION
 772   void mov_literal64(Register dst, intptr_t imm64, RelocationHolder const& rspec);   // 64BIT ONLY
 773 
 774   void cmp_narrow_oop(Register src1, int32_t imm32, RelocationHolder const& rspec);
 775   void cmp_narrow_oop(Address src1, int32_t imm32, RelocationHolder const& rspec);
 776 
 777   void mov_narrow_oop(Register dst, int32_t imm32, RelocationHolder const& rspec);
 778   void mov_narrow_oop(Address dst, int32_t imm32, RelocationHolder const& rspec);
 779 #endif // _LP64
 780 
 781   // These are unique in that we are ensured by the caller that the 32bit
 782   // relative in these instructions will always be able to reach the potentially
 783   // 64bit address described by entry. Since they can take a 64bit address they
 784   // don't have the 32 suffix like the other instructions in this class.
 785 
 786   void call_literal(address entry, RelocationHolder const& rspec);
 787   void jmp_literal(address entry, RelocationHolder const& rspec);
 788 
 789   // Avoid using directly section
 790   // Instructions in this section are actually usable by anyone without danger
 791   // of failure but have performance issues that are addressed my enhanced
 792   // instructions which will do the proper thing base on the particular cpu.
 793   // We protect them because we don't trust you...
 794 
 795   // Don't use next inc() and dec() methods directly. INC & DEC instructions
 796   // could cause a partial flag stall since they don't set CF flag.
 797   // Use MacroAssembler::decrement() & MacroAssembler::increment() methods
 798   // which call inc() & dec() or add() & sub() in accordance with
 799   // the product flag UseIncDec value.
 800 
 801   void decl(Register dst);
 802   void decl(Address dst);
 803   void decq(Register dst);
 804   void decq(Address dst);
 805 
 806   void incl(Register dst);
 807   void incl(Address dst);
 808   void incq(Register dst);
 809   void incq(Address dst);
 810 
 811   // New cpus require use of movsd and movss to avoid partial register stall
 812   // when loading from memory. But for old Opteron use movlpd instead of movsd.
 813   // The selection is done in MacroAssembler::movdbl() and movflt().
 814 
 815   // Move Scalar Single-Precision Floating-Point Values
 816   void movss(XMMRegister dst, Address src);
 817   void movss(XMMRegister dst, XMMRegister src);
 818   void movss(Address dst, XMMRegister src);
 819 
 820   // Move Scalar Double-Precision Floating-Point Values
 821   void movsd(XMMRegister dst, Address src);
 822   void movsd(XMMRegister dst, XMMRegister src);
 823   void movsd(Address dst, XMMRegister src);
 824   void movlpd(XMMRegister dst, Address src);
 825 
 826   // New cpus require use of movaps and movapd to avoid partial register stall
 827   // when moving between registers.
 828   void movaps(XMMRegister dst, XMMRegister src);
 829   void movapd(XMMRegister dst, XMMRegister src);
 830 
 831   // End avoid using directly
 832 
 833 
 834   // Instruction prefixes
 835   void prefix(Prefix p);
 836 
 837   public:
 838 
 839   // Creation
 840   Assembler(CodeBuffer* code) : AbstractAssembler(code) {
 841     init_attributes();
 842   }
 843 
 844   // Decoding
 845   static address locate_operand(address inst, WhichOperand which);
 846   static address locate_next_instruction(address inst);
 847 
 848   // Utilities
 849   static bool is_polling_page_far() NOT_LP64({ return false;});
 850   static bool query_compressed_disp_byte(int disp, bool is_evex_inst, int vector_len,
 851                                          int cur_tuple_type, int in_size_in_bits, int cur_encoding);
 852 
 853   // Generic instructions
 854   // Does 32bit or 64bit as needed for the platform. In some sense these
 855   // belong in macro assembler but there is no need for both varieties to exist
 856 
 857   void init_attributes(void) {
 858     _legacy_mode_bw = (VM_Version::supports_avx512bw() == false);
 859     _legacy_mode_dq = (VM_Version::supports_avx512dq() == false);
 860     _legacy_mode_vl = (VM_Version::supports_avx512vl() == false);
 861     _legacy_mode_vlbw = (VM_Version::supports_avx512vlbw() == false);
 862     _is_managed = false;
 863     _vector_masking = false;
 864     _attributes = NULL;
 865   }
 866 
 867   void set_attributes(InstructionAttr *attributes) { _attributes = attributes; }
 868   void clear_attributes(void) { _attributes = NULL; }
 869 
 870   void set_managed(void) { _is_managed = true; }
 871   void clear_managed(void) { _is_managed = false; }
 872   bool is_managed(void) { return _is_managed; }
 873 
 874   // Following functions are for stub code use only
 875   void set_vector_masking(void) { _vector_masking = true; }
 876   void clear_vector_masking(void) { _vector_masking = false; }
 877   bool is_vector_masking(void) { return _vector_masking; }
 878 
 879   void lea(Register dst, Address src);
 880 
 881   void mov(Register dst, Register src);
 882 
 883   void pusha();
 884   void popa();
 885 
 886   void pushf();
 887   void popf();
 888 
 889   void push(int32_t imm32);
 890 
 891   void push(Register src);
 892 
 893   void pop(Register dst);
 894 
 895   // These are dummies to prevent surprise implicit conversions to Register
 896   void push(void* v);
 897   void pop(void* v);
 898 
 899   // These do register sized moves/scans
 900   void rep_mov();
 901   void rep_stos();
 902   void rep_stosb();
 903   void repne_scan();
 904 #ifdef _LP64
 905   void repne_scanl();
 906 #endif
 907 
 908   // Vanilla instructions in lexical order
 909 
 910   void adcl(Address dst, int32_t imm32);
 911   void adcl(Address dst, Register src);
 912   void adcl(Register dst, int32_t imm32);
 913   void adcl(Register dst, Address src);
 914   void adcl(Register dst, Register src);
 915 
 916   void adcq(Register dst, int32_t imm32);
 917   void adcq(Register dst, Address src);
 918   void adcq(Register dst, Register src);
 919 
 920   void addb(Address dst, int imm8);
 921   void addw(Address dst, int imm16);
 922 
 923   void addl(Address dst, int32_t imm32);
 924   void addl(Address dst, Register src);
 925   void addl(Register dst, int32_t imm32);
 926   void addl(Register dst, Address src);
 927   void addl(Register dst, Register src);
 928 
 929   void addq(Address dst, int32_t imm32);
 930   void addq(Address dst, Register src);
 931   void addq(Register dst, int32_t imm32);
 932   void addq(Register dst, Address src);
 933   void addq(Register dst, Register src);
 934 
 935 #ifdef _LP64
 936  //Add Unsigned Integers with Carry Flag
 937   void adcxq(Register dst, Register src);
 938 
 939  //Add Unsigned Integers with Overflow Flag
 940   void adoxq(Register dst, Register src);
 941 #endif
 942 
 943   void addr_nop_4();
 944   void addr_nop_5();
 945   void addr_nop_7();
 946   void addr_nop_8();
 947 
 948   // Add Scalar Double-Precision Floating-Point Values
 949   void addsd(XMMRegister dst, Address src);
 950   void addsd(XMMRegister dst, XMMRegister src);
 951 
 952   // Add Scalar Single-Precision Floating-Point Values
 953   void addss(XMMRegister dst, Address src);
 954   void addss(XMMRegister dst, XMMRegister src);
 955 
 956   // AES instructions
 957   void aesdec(XMMRegister dst, Address src);
 958   void aesdec(XMMRegister dst, XMMRegister src);
 959   void aesdeclast(XMMRegister dst, Address src);
 960   void aesdeclast(XMMRegister dst, XMMRegister src);
 961   void aesenc(XMMRegister dst, Address src);
 962   void aesenc(XMMRegister dst, XMMRegister src);
 963   void aesenclast(XMMRegister dst, Address src);
 964   void aesenclast(XMMRegister dst, XMMRegister src);
 965   void vaesdec(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
 966   void vaesdeclast(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
 967 
 968   void andl(Address  dst, int32_t imm32);
 969   void andl(Register dst, int32_t imm32);
 970   void andl(Register dst, Address src);
 971   void andl(Register dst, Register src);
 972 
 973   void andq(Address  dst, int32_t imm32);
 974   void andq(Register dst, int32_t imm32);
 975   void andq(Register dst, Address src);
 976   void andq(Register dst, Register src);
 977 
 978   // BMI instructions
 979   void andnl(Register dst, Register src1, Register src2);
 980   void andnl(Register dst, Register src1, Address src2);
 981   void andnq(Register dst, Register src1, Register src2);
 982   void andnq(Register dst, Register src1, Address src2);
 983 
 984   void blsil(Register dst, Register src);
 985   void blsil(Register dst, Address src);
 986   void blsiq(Register dst, Register src);
 987   void blsiq(Register dst, Address src);
 988 
 989   void blsmskl(Register dst, Register src);
 990   void blsmskl(Register dst, Address src);
 991   void blsmskq(Register dst, Register src);
 992   void blsmskq(Register dst, Address src);
 993 
 994   void blsrl(Register dst, Register src);
 995   void blsrl(Register dst, Address src);
 996   void blsrq(Register dst, Register src);
 997   void blsrq(Register dst, Address src);
 998 
 999   void bsfl(Register dst, Register src);
1000   void bsrl(Register dst, Register src);
1001 
1002 #ifdef _LP64
1003   void bsfq(Register dst, Register src);
1004   void bsrq(Register dst, Register src);
1005 #endif
1006 
1007   void bswapl(Register reg);
1008 
1009   void bswapq(Register reg);
1010 
1011   void call(Label& L, relocInfo::relocType rtype);
1012   void call(Register reg);  // push pc; pc <- reg
1013   void call(Address adr);   // push pc; pc <- adr
1014 
1015   void cdql();
1016 
1017   void cdqq();
1018 
1019   void cld();
1020 
1021   void clflush(Address adr);
1022 
1023   void cmovl(Condition cc, Register dst, Register src);
1024   void cmovl(Condition cc, Register dst, Address src);
1025 
1026   void cmovq(Condition cc, Register dst, Register src);
1027   void cmovq(Condition cc, Register dst, Address src);
1028 
1029 
1030   void cmpb(Address dst, int imm8);
1031 
1032   void cmpl(Address dst, int32_t imm32);
1033 
1034   void cmpl(Register dst, int32_t imm32);
1035   void cmpl(Register dst, Register src);
1036   void cmpl(Register dst, Address src);
1037 
1038   void cmpq(Address dst, int32_t imm32);
1039   void cmpq(Address dst, Register src);
1040 
1041   void cmpq(Register dst, int32_t imm32);
1042   void cmpq(Register dst, Register src);
1043   void cmpq(Register dst, Address src);
1044 
1045   // these are dummies used to catch attempting to convert NULL to Register
1046   void cmpl(Register dst, void* junk); // dummy
1047   void cmpq(Register dst, void* junk); // dummy
1048 
1049   void cmpw(Address dst, int imm16);
1050 
1051   void cmpxchg8 (Address adr);
1052 
1053   void cmpxchgb(Register reg, Address adr);
1054   void cmpxchgl(Register reg, Address adr);
1055 
1056   void cmpxchgq(Register reg, Address adr);
1057 
1058   // Ordered Compare Scalar Double-Precision Floating-Point Values and set EFLAGS
1059   void comisd(XMMRegister dst, Address src);
1060   void comisd(XMMRegister dst, XMMRegister src);
1061 
1062   // Ordered Compare Scalar Single-Precision Floating-Point Values and set EFLAGS
1063   void comiss(XMMRegister dst, Address src);
1064   void comiss(XMMRegister dst, XMMRegister src);
1065 
1066   // Identify processor type and features
1067   void cpuid();
1068 
1069   // CRC32C
1070   void crc32(Register crc, Register v, int8_t sizeInBytes);
1071   void crc32(Register crc, Address adr, int8_t sizeInBytes);
1072 
1073   // Convert Scalar Double-Precision Floating-Point Value to Scalar Single-Precision Floating-Point Value
1074   void cvtsd2ss(XMMRegister dst, XMMRegister src);
1075   void cvtsd2ss(XMMRegister dst, Address src);
1076 
1077   // Convert Doubleword Integer to Scalar Double-Precision Floating-Point Value
1078   void cvtsi2sdl(XMMRegister dst, Register src);
1079   void cvtsi2sdl(XMMRegister dst, Address src);
1080   void cvtsi2sdq(XMMRegister dst, Register src);
1081   void cvtsi2sdq(XMMRegister dst, Address src);
1082 
1083   // Convert Doubleword Integer to Scalar Single-Precision Floating-Point Value
1084   void cvtsi2ssl(XMMRegister dst, Register src);
1085   void cvtsi2ssl(XMMRegister dst, Address src);
1086   void cvtsi2ssq(XMMRegister dst, Register src);
1087   void cvtsi2ssq(XMMRegister dst, Address src);
1088 
1089   // Convert Packed Signed Doubleword Integers to Packed Double-Precision Floating-Point Value
1090   void cvtdq2pd(XMMRegister dst, XMMRegister src);
1091 
1092   // Convert Packed Signed Doubleword Integers to Packed Single-Precision Floating-Point Value
1093   void cvtdq2ps(XMMRegister dst, XMMRegister src);
1094 
1095   // Convert Scalar Single-Precision Floating-Point Value to Scalar Double-Precision Floating-Point Value
1096   void cvtss2sd(XMMRegister dst, XMMRegister src);
1097   void cvtss2sd(XMMRegister dst, Address src);
1098 
1099   // Convert with Truncation Scalar Double-Precision Floating-Point Value to Doubleword Integer
1100   void cvttsd2sil(Register dst, Address src);
1101   void cvttsd2sil(Register dst, XMMRegister src);
1102   void cvttsd2siq(Register dst, XMMRegister src);
1103 
1104   // Convert with Truncation Scalar Single-Precision Floating-Point Value to Doubleword Integer
1105   void cvttss2sil(Register dst, XMMRegister src);
1106   void cvttss2siq(Register dst, XMMRegister src);
1107 
1108   void cvttpd2dq(XMMRegister dst, XMMRegister src);
1109 
1110   // Divide Scalar Double-Precision Floating-Point Values
1111   void divsd(XMMRegister dst, Address src);
1112   void divsd(XMMRegister dst, XMMRegister src);
1113 
1114   // Divide Scalar Single-Precision Floating-Point Values
1115   void divss(XMMRegister dst, Address src);
1116   void divss(XMMRegister dst, XMMRegister src);
1117 
1118   void emms();
1119 
1120   void fabs();
1121 
1122   void fadd(int i);
1123 
1124   void fadd_d(Address src);
1125   void fadd_s(Address src);
1126 
1127   // "Alternate" versions of x87 instructions place result down in FPU
1128   // stack instead of on TOS
1129 
1130   void fadda(int i); // "alternate" fadd
1131   void faddp(int i = 1);
1132 
1133   void fchs();
1134 
1135   void fcom(int i);
1136 
1137   void fcomp(int i = 1);
1138   void fcomp_d(Address src);
1139   void fcomp_s(Address src);
1140 
1141   void fcompp();
1142 
1143   void fcos();
1144 
1145   void fdecstp();
1146 
1147   void fdiv(int i);
1148   void fdiv_d(Address src);
1149   void fdivr_s(Address src);
1150   void fdiva(int i);  // "alternate" fdiv
1151   void fdivp(int i = 1);
1152 
1153   void fdivr(int i);
1154   void fdivr_d(Address src);
1155   void fdiv_s(Address src);
1156 
1157   void fdivra(int i); // "alternate" reversed fdiv
1158 
1159   void fdivrp(int i = 1);
1160 
1161   void ffree(int i = 0);
1162 
1163   void fild_d(Address adr);
1164   void fild_s(Address adr);
1165 
1166   void fincstp();
1167 
1168   void finit();
1169 
1170   void fist_s (Address adr);
1171   void fistp_d(Address adr);
1172   void fistp_s(Address adr);
1173 
1174   void fld1();
1175 
1176   void fld_d(Address adr);
1177   void fld_s(Address adr);
1178   void fld_s(int index);
1179   void fld_x(Address adr);  // extended-precision (80-bit) format
1180 
1181   void fldcw(Address src);
1182 
1183   void fldenv(Address src);
1184 
1185   void fldlg2();
1186 
1187   void fldln2();
1188 
1189   void fldz();
1190 
1191   void flog();
1192   void flog10();
1193 
1194   void fmul(int i);
1195 
1196   void fmul_d(Address src);
1197   void fmul_s(Address src);
1198 
1199   void fmula(int i);  // "alternate" fmul
1200 
1201   void fmulp(int i = 1);
1202 
1203   void fnsave(Address dst);
1204 
1205   void fnstcw(Address src);
1206 
1207   void fnstsw_ax();
1208 
1209   void fprem();
1210   void fprem1();
1211 
1212   void frstor(Address src);
1213 
1214   void fsin();
1215 
1216   void fsqrt();
1217 
1218   void fst_d(Address adr);
1219   void fst_s(Address adr);
1220 
1221   void fstp_d(Address adr);
1222   void fstp_d(int index);
1223   void fstp_s(Address adr);
1224   void fstp_x(Address adr); // extended-precision (80-bit) format
1225 
1226   void fsub(int i);
1227   void fsub_d(Address src);
1228   void fsub_s(Address src);
1229 
1230   void fsuba(int i);  // "alternate" fsub
1231 
1232   void fsubp(int i = 1);
1233 
1234   void fsubr(int i);
1235   void fsubr_d(Address src);
1236   void fsubr_s(Address src);
1237 
1238   void fsubra(int i); // "alternate" reversed fsub
1239 
1240   void fsubrp(int i = 1);
1241 
1242   void ftan();
1243 
1244   void ftst();
1245 
1246   void fucomi(int i = 1);
1247   void fucomip(int i = 1);
1248 
1249   void fwait();
1250 
1251   void fxch(int i = 1);
1252 
1253   void fxrstor(Address src);
1254   void xrstor(Address src);
1255 
1256   void fxsave(Address dst);
1257   void xsave(Address dst);
1258 
1259   void fyl2x();
1260   void frndint();
1261   void f2xm1();
1262   void fldl2e();
1263 
1264   void hlt();
1265 
1266   void idivl(Register src);
1267   void divl(Register src); // Unsigned division
1268 
1269 #ifdef _LP64
1270   void idivq(Register src);
1271 #endif
1272 
1273   void imull(Register src);
1274   void imull(Register dst, Register src);
1275   void imull(Register dst, Register src, int value);
1276   void imull(Register dst, Address src);
1277 
1278 #ifdef _LP64
1279   void imulq(Register dst, Register src);
1280   void imulq(Register dst, Register src, int value);
1281   void imulq(Register dst, Address src);
1282 #endif
1283 
1284   // jcc is the generic conditional branch generator to run-
1285   // time routines, jcc is used for branches to labels. jcc
1286   // takes a branch opcode (cc) and a label (L) and generates
1287   // either a backward branch or a forward branch and links it
1288   // to the label fixup chain. Usage:
1289   //
1290   // Label L;      // unbound label
1291   // jcc(cc, L);   // forward branch to unbound label
1292   // bind(L);      // bind label to the current pc
1293   // jcc(cc, L);   // backward branch to bound label
1294   // bind(L);      // illegal: a label may be bound only once
1295   //
1296   // Note: The same Label can be used for forward and backward branches
1297   // but it may be bound only once.
1298 
1299   void jcc(Condition cc, Label& L, bool maybe_short = true);
1300 
1301   // Conditional jump to a 8-bit offset to L.
1302   // WARNING: be very careful using this for forward jumps.  If the label is
1303   // not bound within an 8-bit offset of this instruction, a run-time error
1304   // will occur.
1305 
1306   // Use macro to record file and line number.
1307   #define jccb(cc, L) jccb_0(cc, L, __FILE__, __LINE__)
1308 
1309   void jccb_0(Condition cc, Label& L, const char* file, int line);
1310 
1311   void jmp(Address entry);    // pc <- entry
1312 
1313   // Label operations & relative jumps (PPUM Appendix D)
1314   void jmp(Label& L, bool maybe_short = true);   // unconditional jump to L
1315 
1316   void jmp(Register entry); // pc <- entry
1317 
1318   // Unconditional 8-bit offset jump to L.
1319   // WARNING: be very careful using this for forward jumps.  If the label is
1320   // not bound within an 8-bit offset of this instruction, a run-time error
1321   // will occur.
1322 
1323   // Use macro to record file and line number.
1324   #define jmpb(L) jmpb_0(L, __FILE__, __LINE__)
1325 
1326   void jmpb_0(Label& L, const char* file, int line);
1327 
1328   void ldmxcsr( Address src );
1329 
1330   void leal(Register dst, Address src);
1331 
1332   void leaq(Register dst, Address src);
1333 
1334   void lfence();
1335 
1336   void lock();
1337 
1338   void lzcntl(Register dst, Register src);
1339 
1340 #ifdef _LP64
1341   void lzcntq(Register dst, Register src);
1342 #endif
1343 
1344   enum Membar_mask_bits {
1345     StoreStore = 1 << 3,
1346     LoadStore  = 1 << 2,
1347     StoreLoad  = 1 << 1,
1348     LoadLoad   = 1 << 0
1349   };
1350 
1351   // Serializes memory and blows flags
1352   void membar(Membar_mask_bits order_constraint) {
1353     if (os::is_MP()) {
1354       // We only have to handle StoreLoad
1355       if (order_constraint & StoreLoad) {
1356         // All usable chips support "locked" instructions which suffice
1357         // as barriers, and are much faster than the alternative of
1358         // using cpuid instruction. We use here a locked add [esp-C],0.
1359         // This is conveniently otherwise a no-op except for blowing
1360         // flags, and introducing a false dependency on target memory
1361         // location. We can't do anything with flags, but we can avoid
1362         // memory dependencies in the current method by locked-adding
1363         // somewhere else on the stack. Doing [esp+C] will collide with
1364         // something on stack in current method, hence we go for [esp-C].
1365         // It is convenient since it is almost always in data cache, for
1366         // any small C.  We need to step back from SP to avoid data
1367         // dependencies with other things on below SP (callee-saves, for
1368         // example). Without a clear way to figure out the minimal safe
1369         // distance from SP, it makes sense to step back the complete
1370         // cache line, as this will also avoid possible second-order effects
1371         // with locked ops against the cache line. Our choice of offset
1372         // is bounded by x86 operand encoding, which should stay within
1373         // [-128; +127] to have the 8-byte displacement encoding.
1374         //
1375         // Any change to this code may need to revisit other places in
1376         // the code where this idiom is used, in particular the
1377         // orderAccess code.
1378 
1379         int offset = -VM_Version::L1_line_size();
1380         if (offset < -128) {
1381           offset = -128;
1382         }
1383 
1384         lock();
1385         addl(Address(rsp, offset), 0);// Assert the lock# signal here
1386       }
1387     }
1388   }
1389 
1390   void mfence();
1391 
1392   // Moves
1393 
1394   void mov64(Register dst, int64_t imm64);
1395 
1396   void movb(Address dst, Register src);
1397   void movb(Address dst, int imm8);
1398   void movb(Register dst, Address src);
1399 
1400   void movddup(XMMRegister dst, XMMRegister src);
1401 
1402   void kmovbl(KRegister dst, Register src);
1403   void kmovbl(Register dst, KRegister src);
1404   void kmovwl(KRegister dst, Register src);
1405   void kmovwl(KRegister dst, Address src);
1406   void kmovwl(Register dst, KRegister src);
1407   void kmovdl(KRegister dst, Register src);
1408   void kmovdl(Register dst, KRegister src);
1409   void kmovql(KRegister dst, KRegister src);
1410   void kmovql(Address dst, KRegister src);
1411   void kmovql(KRegister dst, Address src);
1412   void kmovql(KRegister dst, Register src);
1413   void kmovql(Register dst, KRegister src);
1414 
1415   void knotwl(KRegister dst, KRegister src);
1416 
1417   void kortestbl(KRegister dst, KRegister src);
1418   void kortestwl(KRegister dst, KRegister src);
1419   void kortestdl(KRegister dst, KRegister src);
1420   void kortestql(KRegister dst, KRegister src);
1421 
1422   void ktestq(KRegister src1, KRegister src2);
1423   void ktestd(KRegister src1, KRegister src2);
1424 
1425   void ktestql(KRegister dst, KRegister src);
1426 
1427   void movdl(XMMRegister dst, Register src);
1428   void movdl(Register dst, XMMRegister src);
1429   void movdl(XMMRegister dst, Address src);
1430   void movdl(Address dst, XMMRegister src);
1431 
1432   // Move Double Quadword
1433   void movdq(XMMRegister dst, Register src);
1434   void movdq(Register dst, XMMRegister src);
1435 
1436   // Move Aligned Double Quadword
1437   void movdqa(XMMRegister dst, XMMRegister src);
1438   void movdqa(XMMRegister dst, Address src);
1439 
1440   // Move Unaligned Double Quadword
1441   void movdqu(Address     dst, XMMRegister src);
1442   void movdqu(XMMRegister dst, Address src);
1443   void movdqu(XMMRegister dst, XMMRegister src);
1444 
1445   // Move Unaligned 256bit Vector
1446   void vmovdqu(Address dst, XMMRegister src);
1447   void vmovdqu(XMMRegister dst, Address src);
1448   void vmovdqu(XMMRegister dst, XMMRegister src);
1449 
1450    // Move Unaligned 512bit Vector
1451   void evmovdqub(Address dst, XMMRegister src, int vector_len);
1452   void evmovdqub(XMMRegister dst, Address src, int vector_len);
1453   void evmovdqub(XMMRegister dst, XMMRegister src, int vector_len);
1454   void evmovdqub(XMMRegister dst, KRegister mask, Address src, int vector_len);
1455   void evmovdquw(Address dst, XMMRegister src, int vector_len);
1456   void evmovdquw(Address dst, KRegister mask, XMMRegister src, int vector_len);
1457   void evmovdquw(XMMRegister dst, Address src, int vector_len);
1458   void evmovdquw(XMMRegister dst, KRegister mask, Address src, int vector_len);
1459   void evmovdqul(Address dst, XMMRegister src, int vector_len);
1460   void evmovdqul(XMMRegister dst, Address src, int vector_len);
1461   void evmovdqul(XMMRegister dst, XMMRegister src, int vector_len);
1462   void evmovdquq(Address dst, XMMRegister src, int vector_len);
1463   void evmovdquq(XMMRegister dst, Address src, int vector_len);
1464   void evmovdquq(XMMRegister dst, XMMRegister src, int vector_len);
1465 
1466   // Move lower 64bit to high 64bit in 128bit register
1467   void movlhps(XMMRegister dst, XMMRegister src);
1468 
1469   void movl(Register dst, int32_t imm32);
1470   void movl(Address dst, int32_t imm32);
1471   void movl(Register dst, Register src);
1472   void movl(Register dst, Address src);
1473   void movl(Address dst, Register src);
1474 
1475   // These dummies prevent using movl from converting a zero (like NULL) into Register
1476   // by giving the compiler two choices it can't resolve
1477 
1478   void movl(Address  dst, void* junk);
1479   void movl(Register dst, void* junk);
1480 
1481 #ifdef _LP64
1482   void movq(Register dst, Register src);
1483   void movq(Register dst, Address src);
1484   void movq(Address  dst, Register src);
1485 #endif
1486 
1487   void movq(Address     dst, MMXRegister src );
1488   void movq(MMXRegister dst, Address src );
1489 
1490 #ifdef _LP64
1491   // These dummies prevent using movq from converting a zero (like NULL) into Register
1492   // by giving the compiler two choices it can't resolve
1493 
1494   void movq(Address  dst, void* dummy);
1495   void movq(Register dst, void* dummy);
1496 #endif
1497 
1498   // Move Quadword
1499   void movq(Address     dst, XMMRegister src);
1500   void movq(XMMRegister dst, Address src);
1501 
1502   void movsbl(Register dst, Address src);
1503   void movsbl(Register dst, Register src);
1504 
1505 #ifdef _LP64
1506   void movsbq(Register dst, Address src);
1507   void movsbq(Register dst, Register src);
1508 
1509   // Move signed 32bit immediate to 64bit extending sign
1510   void movslq(Address  dst, int32_t imm64);
1511   void movslq(Register dst, int32_t imm64);
1512 
1513   void movslq(Register dst, Address src);
1514   void movslq(Register dst, Register src);
1515   void movslq(Register dst, void* src); // Dummy declaration to cause NULL to be ambiguous
1516 #endif
1517 
1518   void movswl(Register dst, Address src);
1519   void movswl(Register dst, Register src);
1520 
1521 #ifdef _LP64
1522   void movswq(Register dst, Address src);
1523   void movswq(Register dst, Register src);
1524 #endif
1525 
1526   void movw(Address dst, int imm16);
1527   void movw(Register dst, Address src);
1528   void movw(Address dst, Register src);
1529 
1530   void movzbl(Register dst, Address src);
1531   void movzbl(Register dst, Register src);
1532 
1533 #ifdef _LP64
1534   void movzbq(Register dst, Address src);
1535   void movzbq(Register dst, Register src);
1536 #endif
1537 
1538   void movzwl(Register dst, Address src);
1539   void movzwl(Register dst, Register src);
1540 
1541 #ifdef _LP64
1542   void movzwq(Register dst, Address src);
1543   void movzwq(Register dst, Register src);
1544 #endif
1545 
1546   // Unsigned multiply with RAX destination register
1547   void mull(Address src);
1548   void mull(Register src);
1549 
1550 #ifdef _LP64
1551   void mulq(Address src);
1552   void mulq(Register src);
1553   void mulxq(Register dst1, Register dst2, Register src);
1554 #endif
1555 
1556   // Multiply Scalar Double-Precision Floating-Point Values
1557   void mulsd(XMMRegister dst, Address src);
1558   void mulsd(XMMRegister dst, XMMRegister src);
1559 
1560   // Multiply Scalar Single-Precision Floating-Point Values
1561   void mulss(XMMRegister dst, Address src);
1562   void mulss(XMMRegister dst, XMMRegister src);
1563 
1564   void negl(Register dst);
1565 
1566 #ifdef _LP64
1567   void negq(Register dst);
1568 #endif
1569 
1570   void nop(int i = 1);
1571 
1572   void notl(Register dst);
1573 
1574 #ifdef _LP64
1575   void notq(Register dst);
1576 #endif
1577 
1578   void orl(Address dst, int32_t imm32);
1579   void orl(Register dst, int32_t imm32);
1580   void orl(Register dst, Address src);
1581   void orl(Register dst, Register src);
1582   void orl(Address dst, Register src);
1583 
1584   void orb(Address dst, int imm8);
1585 
1586   void orq(Address dst, int32_t imm32);
1587   void orq(Register dst, int32_t imm32);
1588   void orq(Register dst, Address src);
1589   void orq(Register dst, Register src);
1590 
1591   // Pack with unsigned saturation
1592   void packuswb(XMMRegister dst, XMMRegister src);
1593   void packuswb(XMMRegister dst, Address src);
1594   void vpackuswb(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
1595 
1596   // Pemutation of 64bit words
1597   void vpermq(XMMRegister dst, XMMRegister src, int imm8, int vector_len);
1598   void vpermq(XMMRegister dst, XMMRegister src, int imm8);
1599   void vperm2i128(XMMRegister dst,  XMMRegister nds, XMMRegister src, int imm8);
1600   void vperm2f128(XMMRegister dst, XMMRegister nds, XMMRegister src, int imm8);
1601   void evpermi2q(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
1602 
1603   void pause();
1604 
1605   // Undefined Instruction
1606   void ud2();
1607 
1608   // SSE4.2 string instructions
1609   void pcmpestri(XMMRegister xmm1, XMMRegister xmm2, int imm8);
1610   void pcmpestri(XMMRegister xmm1, Address src, int imm8);
1611 
1612   void pcmpeqb(XMMRegister dst, XMMRegister src);
1613   void vpcmpeqb(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
1614   void evpcmpeqb(KRegister kdst, XMMRegister nds, XMMRegister src, int vector_len);
1615   void evpcmpeqb(KRegister kdst, XMMRegister nds, Address src, int vector_len);
1616   void evpcmpeqb(KRegister kdst, KRegister mask, XMMRegister nds, Address src, int vector_len);
1617 
1618   void evpcmpgtb(KRegister kdst, XMMRegister nds, Address src, int vector_len);
1619   void evpcmpgtb(KRegister kdst, KRegister mask, XMMRegister nds, Address src, int vector_len);
1620 
1621   void evpcmpuw(KRegister kdst, XMMRegister nds, XMMRegister src, ComparisonPredicate vcc, int vector_len);
1622   void evpcmpuw(KRegister kdst, KRegister mask, XMMRegister nds, XMMRegister src, ComparisonPredicate of, int vector_len);
1623   void evpcmpuw(KRegister kdst, XMMRegister nds, Address src, ComparisonPredicate vcc, int vector_len);
1624 
1625   void pcmpeqw(XMMRegister dst, XMMRegister src);
1626   void vpcmpeqw(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
1627   void evpcmpeqw(KRegister kdst, XMMRegister nds, XMMRegister src, int vector_len);
1628   void evpcmpeqw(KRegister kdst, XMMRegister nds, Address src, int vector_len);
1629 
1630   void pcmpeqd(XMMRegister dst, XMMRegister src);
1631   void vpcmpeqd(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
1632   void evpcmpeqd(KRegister kdst, XMMRegister nds, XMMRegister src, int vector_len);
1633   void evpcmpeqd(KRegister kdst, XMMRegister nds, Address src, int vector_len);
1634 
1635   void pcmpeqq(XMMRegister dst, XMMRegister src);
1636   void vpcmpeqq(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
1637   void evpcmpeqq(KRegister kdst, XMMRegister nds, XMMRegister src, int vector_len);
1638   void evpcmpeqq(KRegister kdst, XMMRegister nds, Address src, int vector_len);
1639 
1640   void pmovmskb(Register dst, XMMRegister src);
1641   void vpmovmskb(Register dst, XMMRegister src);
1642 
1643   // SSE 4.1 extract
1644   void pextrd(Register dst, XMMRegister src, int imm8);
1645   void pextrq(Register dst, XMMRegister src, int imm8);
1646   void pextrd(Address dst, XMMRegister src, int imm8);
1647   void pextrq(Address dst, XMMRegister src, int imm8);
1648   void pextrb(Address dst, XMMRegister src, int imm8);
1649   // SSE 2 extract
1650   void pextrw(Register dst, XMMRegister src, int imm8);
1651   void pextrw(Address dst, XMMRegister src, int imm8);
1652 
1653   // SSE 4.1 insert
1654   void pinsrd(XMMRegister dst, Register src, int imm8);
1655   void pinsrq(XMMRegister dst, Register src, int imm8);
1656   void pinsrd(XMMRegister dst, Address src, int imm8);
1657   void pinsrq(XMMRegister dst, Address src, int imm8);
1658   void pinsrb(XMMRegister dst, Address src, int imm8);
1659   // SSE 2 insert
1660   void pinsrw(XMMRegister dst, Register src, int imm8);
1661   void pinsrw(XMMRegister dst, Address src, int imm8);
1662 
1663   // SSE4.1 packed move
1664   void pmovzxbw(XMMRegister dst, XMMRegister src);
1665   void pmovzxbw(XMMRegister dst, Address src);
1666 
1667   void vpmovzxbw( XMMRegister dst, Address src, int vector_len);
1668   void vpmovzxbw(XMMRegister dst, XMMRegister src, int vector_len);
1669   void evpmovzxbw(XMMRegister dst, KRegister mask, Address src, int vector_len);
1670 
1671   void evpmovwb(Address dst, XMMRegister src, int vector_len);
1672   void evpmovwb(Address dst, KRegister mask, XMMRegister src, int vector_len);
1673 
1674   void vpmovzxwd(XMMRegister dst, XMMRegister src, int vector_len);
1675 
1676   void evpmovdb(Address dst, XMMRegister src, int vector_len);
1677 
1678 #ifndef _LP64 // no 32bit push/pop on amd64
1679   void popl(Address dst);
1680 #endif
1681 
1682 #ifdef _LP64
1683   void popq(Address dst);
1684 #endif
1685 
1686   void popcntl(Register dst, Address src);
1687   void popcntl(Register dst, Register src);
1688 
1689   void vpopcntd(XMMRegister dst, XMMRegister src, int vector_len);
1690 
1691 #ifdef _LP64
1692   void popcntq(Register dst, Address src);
1693   void popcntq(Register dst, Register src);
1694 #endif
1695 
1696   // Prefetches (SSE, SSE2, 3DNOW only)
1697 
1698   void prefetchnta(Address src);
1699   void prefetchr(Address src);
1700   void prefetcht0(Address src);
1701   void prefetcht1(Address src);
1702   void prefetcht2(Address src);
1703   void prefetchw(Address src);
1704 
1705   // Shuffle Bytes
1706   void pshufb(XMMRegister dst, XMMRegister src);
1707   void pshufb(XMMRegister dst, Address src);
1708   void vpshufb(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
1709 
1710   // Shuffle Packed Doublewords
1711   void pshufd(XMMRegister dst, XMMRegister src, int mode);
1712   void pshufd(XMMRegister dst, Address src,     int mode);
1713   void vpshufd(XMMRegister dst, XMMRegister src, int mode, int vector_len);
1714 
1715   // Shuffle Packed Low Words
1716   void pshuflw(XMMRegister dst, XMMRegister src, int mode);
1717   void pshuflw(XMMRegister dst, Address src,     int mode);
1718 
1719   // Shuffle packed values at 128 bit granularity
1720   void evshufi64x2(XMMRegister dst, XMMRegister nds, XMMRegister src, int imm8, int vector_len);
1721 
1722   // Shift Right by bytes Logical DoubleQuadword Immediate
1723   void psrldq(XMMRegister dst, int shift);
1724   // Shift Left by bytes Logical DoubleQuadword Immediate
1725   void pslldq(XMMRegister dst, int shift);
1726 
1727   // Logical Compare 128bit
1728   void ptest(XMMRegister dst, XMMRegister src);
1729   void ptest(XMMRegister dst, Address src);
1730   // Logical Compare 256bit
1731   void vptest(XMMRegister dst, XMMRegister src);
1732   void vptest(XMMRegister dst, Address src);
1733 
1734   // Interleave Low Bytes
1735   void punpcklbw(XMMRegister dst, XMMRegister src);
1736   void punpcklbw(XMMRegister dst, Address src);
1737 
1738   // Interleave Low Doublewords
1739   void punpckldq(XMMRegister dst, XMMRegister src);
1740   void punpckldq(XMMRegister dst, Address src);
1741 
1742   // Interleave Low Quadwords
1743   void punpcklqdq(XMMRegister dst, XMMRegister src);
1744 
1745 #ifndef _LP64 // no 32bit push/pop on amd64
1746   void pushl(Address src);
1747 #endif
1748 
1749   void pushq(Address src);
1750 
1751   void rcll(Register dst, int imm8);
1752 
1753   void rclq(Register dst, int imm8);
1754 
1755   void rcrq(Register dst, int imm8);
1756 
1757   void rcpps(XMMRegister dst, XMMRegister src);
1758 
1759   void rcpss(XMMRegister dst, XMMRegister src);
1760 
1761   void rdtsc();
1762 
1763   void ret(int imm16);
1764 
1765 #ifdef _LP64
1766   void rorq(Register dst, int imm8);
1767   void rorxq(Register dst, Register src, int imm8);
1768   void rorxd(Register dst, Register src, int imm8);
1769 #endif
1770 
1771   void sahf();
1772 
1773   void sarl(Register dst, int imm8);
1774   void sarl(Register dst);
1775 
1776   void sarq(Register dst, int imm8);
1777   void sarq(Register dst);
1778 
1779   void sbbl(Address dst, int32_t imm32);
1780   void sbbl(Register dst, int32_t imm32);
1781   void sbbl(Register dst, Address src);
1782   void sbbl(Register dst, Register src);
1783 
1784   void sbbq(Address dst, int32_t imm32);
1785   void sbbq(Register dst, int32_t imm32);
1786   void sbbq(Register dst, Address src);
1787   void sbbq(Register dst, Register src);
1788 
1789   void setb(Condition cc, Register dst);
1790 
1791   void palignr(XMMRegister dst, XMMRegister src, int imm8);
1792   void vpalignr(XMMRegister dst, XMMRegister src1, XMMRegister src2, int imm8, int vector_len);
1793   void evalignq(XMMRegister dst, XMMRegister nds, XMMRegister src, uint8_t imm8);
1794 
1795   void pblendw(XMMRegister dst, XMMRegister src, int imm8);
1796 
1797   void sha1rnds4(XMMRegister dst, XMMRegister src, int imm8);
1798   void sha1nexte(XMMRegister dst, XMMRegister src);
1799   void sha1msg1(XMMRegister dst, XMMRegister src);
1800   void sha1msg2(XMMRegister dst, XMMRegister src);
1801   // xmm0 is implicit additional source to the following instruction.
1802   void sha256rnds2(XMMRegister dst, XMMRegister src);
1803   void sha256msg1(XMMRegister dst, XMMRegister src);
1804   void sha256msg2(XMMRegister dst, XMMRegister src);
1805 
1806   void shldl(Register dst, Register src);
1807   void shldl(Register dst, Register src, int8_t imm8);
1808 
1809   void shll(Register dst, int imm8);
1810   void shll(Register dst);
1811 
1812   void shlq(Register dst, int imm8);
1813   void shlq(Register dst);
1814 
1815   void shrdl(Register dst, Register src);
1816 
1817   void shrl(Register dst, int imm8);
1818   void shrl(Register dst);
1819 
1820   void shrq(Register dst, int imm8);
1821   void shrq(Register dst);
1822 
1823   void smovl(); // QQQ generic?
1824 
1825   // Compute Square Root of Scalar Double-Precision Floating-Point Value
1826   void sqrtsd(XMMRegister dst, Address src);
1827   void sqrtsd(XMMRegister dst, XMMRegister src);
1828 
1829   // Compute Square Root of Scalar Single-Precision Floating-Point Value
1830   void sqrtss(XMMRegister dst, Address src);
1831   void sqrtss(XMMRegister dst, XMMRegister src);
1832 
1833   void std();
1834 
1835   void stmxcsr( Address dst );
1836 
1837   void subl(Address dst, int32_t imm32);
1838   void subl(Address dst, Register src);
1839   void subl(Register dst, int32_t imm32);
1840   void subl(Register dst, Address src);
1841   void subl(Register dst, Register src);
1842 
1843   void subq(Address dst, int32_t imm32);
1844   void subq(Address dst, Register src);
1845   void subq(Register dst, int32_t imm32);
1846   void subq(Register dst, Address src);
1847   void subq(Register dst, Register src);
1848 
1849   // Force generation of a 4 byte immediate value even if it fits into 8bit
1850   void subl_imm32(Register dst, int32_t imm32);
1851   void subq_imm32(Register dst, int32_t imm32);
1852 
1853   // Subtract Scalar Double-Precision Floating-Point Values
1854   void subsd(XMMRegister dst, Address src);
1855   void subsd(XMMRegister dst, XMMRegister src);
1856 
1857   // Subtract Scalar Single-Precision Floating-Point Values
1858   void subss(XMMRegister dst, Address src);
1859   void subss(XMMRegister dst, XMMRegister src);
1860 
1861   void testb(Register dst, int imm8);
1862   void testb(Address dst, int imm8);
1863 
1864   void testl(Register dst, int32_t imm32);
1865   void testl(Register dst, Register src);
1866   void testl(Register dst, Address src);
1867 
1868   void testq(Register dst, int32_t imm32);
1869   void testq(Register dst, Register src);
1870   void testq(Register dst, Address src);
1871 
1872   // BMI - count trailing zeros
1873   void tzcntl(Register dst, Register src);
1874   void tzcntq(Register dst, Register src);
1875 
1876   // Unordered Compare Scalar Double-Precision Floating-Point Values and set EFLAGS
1877   void ucomisd(XMMRegister dst, Address src);
1878   void ucomisd(XMMRegister dst, XMMRegister src);
1879 
1880   // Unordered Compare Scalar Single-Precision Floating-Point Values and set EFLAGS
1881   void ucomiss(XMMRegister dst, Address src);
1882   void ucomiss(XMMRegister dst, XMMRegister src);
1883 
1884   void xabort(int8_t imm8);
1885 
1886   void xaddb(Address dst, Register src);
1887   void xaddw(Address dst, Register src);
1888   void xaddl(Address dst, Register src);
1889   void xaddq(Address dst, Register src);
1890 
1891   void xbegin(Label& abort, relocInfo::relocType rtype = relocInfo::none);
1892 
1893   void xchgb(Register reg, Address adr);
1894   void xchgw(Register reg, Address adr);
1895   void xchgl(Register reg, Address adr);
1896   void xchgl(Register dst, Register src);
1897 
1898   void xchgq(Register reg, Address adr);
1899   void xchgq(Register dst, Register src);
1900 
1901   void xend();
1902 
1903   // Get Value of Extended Control Register
1904   void xgetbv();
1905 
1906   void xorl(Register dst, int32_t imm32);
1907   void xorl(Register dst, Address src);
1908   void xorl(Register dst, Register src);
1909 
1910   void xorb(Register dst, Address src);
1911 
1912   void xorq(Register dst, Address src);
1913   void xorq(Register dst, Register src);
1914 
1915   void set_byte_if_not_zero(Register dst); // sets reg to 1 if not zero, otherwise 0
1916 
1917   // AVX 3-operands scalar instructions (encoded with VEX prefix)
1918 
1919   void vaddsd(XMMRegister dst, XMMRegister nds, Address src);
1920   void vaddsd(XMMRegister dst, XMMRegister nds, XMMRegister src);
1921   void vaddss(XMMRegister dst, XMMRegister nds, Address src);
1922   void vaddss(XMMRegister dst, XMMRegister nds, XMMRegister src);
1923   void vdivsd(XMMRegister dst, XMMRegister nds, Address src);
1924   void vdivsd(XMMRegister dst, XMMRegister nds, XMMRegister src);
1925   void vdivss(XMMRegister dst, XMMRegister nds, Address src);
1926   void vdivss(XMMRegister dst, XMMRegister nds, XMMRegister src);
1927   void vfmadd231sd(XMMRegister dst, XMMRegister nds, XMMRegister src);
1928   void vfmadd231ss(XMMRegister dst, XMMRegister nds, XMMRegister src);
1929   void vmulsd(XMMRegister dst, XMMRegister nds, Address src);
1930   void vmulsd(XMMRegister dst, XMMRegister nds, XMMRegister src);
1931   void vmulss(XMMRegister dst, XMMRegister nds, Address src);
1932   void vmulss(XMMRegister dst, XMMRegister nds, XMMRegister src);
1933   void vsubsd(XMMRegister dst, XMMRegister nds, Address src);
1934   void vsubsd(XMMRegister dst, XMMRegister nds, XMMRegister src);
1935   void vsubss(XMMRegister dst, XMMRegister nds, Address src);
1936   void vsubss(XMMRegister dst, XMMRegister nds, XMMRegister src);
1937 
1938   void shlxl(Register dst, Register src1, Register src2);
1939   void shlxq(Register dst, Register src1, Register src2);
1940 
1941   //====================VECTOR ARITHMETIC=====================================
1942 
1943   // Add Packed Floating-Point Values
1944   void addpd(XMMRegister dst, XMMRegister src);
1945   void addpd(XMMRegister dst, Address src);
1946   void addps(XMMRegister dst, XMMRegister src);
1947   void vaddpd(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
1948   void vaddps(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
1949   void vaddpd(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
1950   void vaddps(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
1951 
1952   // Subtract Packed Floating-Point Values
1953   void subpd(XMMRegister dst, XMMRegister src);
1954   void subps(XMMRegister dst, XMMRegister src);
1955   void vsubpd(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
1956   void vsubps(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
1957   void vsubpd(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
1958   void vsubps(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
1959 
1960   // Multiply Packed Floating-Point Values
1961   void mulpd(XMMRegister dst, XMMRegister src);
1962   void mulpd(XMMRegister dst, Address src);
1963   void mulps(XMMRegister dst, XMMRegister src);
1964   void vmulpd(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
1965   void vmulps(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
1966   void vmulpd(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
1967   void vmulps(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
1968 
1969   void vfmadd231pd(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
1970   void vfmadd231ps(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
1971   void vfmadd231pd(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
1972   void vfmadd231ps(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
1973 
1974   // Divide Packed Floating-Point Values
1975   void divpd(XMMRegister dst, XMMRegister src);
1976   void divps(XMMRegister dst, XMMRegister src);
1977   void vdivpd(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
1978   void vdivps(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
1979   void vdivpd(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
1980   void vdivps(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
1981 
1982   // Sqrt Packed Floating-Point Values
1983   void vsqrtpd(XMMRegister dst, XMMRegister src, int vector_len);
1984   void vsqrtpd(XMMRegister dst, Address src, int vector_len);
1985   void vsqrtps(XMMRegister dst, XMMRegister src, int vector_len);
1986   void vsqrtps(XMMRegister dst, Address src, int vector_len);
1987 
1988   // Bitwise Logical AND of Packed Floating-Point Values
1989   void andpd(XMMRegister dst, XMMRegister src);
1990   void andps(XMMRegister dst, XMMRegister src);
1991   void vandpd(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
1992   void vandps(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
1993   void vandpd(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
1994   void vandps(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
1995 
1996   void unpckhpd(XMMRegister dst, XMMRegister src);
1997   void unpcklpd(XMMRegister dst, XMMRegister src);
1998 
1999   // Bitwise Logical XOR of Packed Floating-Point Values
2000   void xorpd(XMMRegister dst, XMMRegister src);
2001   void xorps(XMMRegister dst, XMMRegister src);
2002   void vxorpd(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2003   void vxorps(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2004   void vxorpd(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
2005   void vxorps(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
2006 
2007   // Add horizontal packed integers
2008   void vphaddw(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2009   void vphaddd(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2010   void phaddw(XMMRegister dst, XMMRegister src);
2011   void phaddd(XMMRegister dst, XMMRegister src);
2012 
2013   // Add packed integers
2014   void paddb(XMMRegister dst, XMMRegister src);
2015   void paddw(XMMRegister dst, XMMRegister src);
2016   void paddd(XMMRegister dst, XMMRegister src);
2017   void paddd(XMMRegister dst, Address src);
2018   void paddq(XMMRegister dst, XMMRegister src);
2019   void vpaddb(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2020   void vpaddw(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2021   void vpaddd(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2022   void vpaddq(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2023   void vpaddb(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
2024   void vpaddw(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
2025   void vpaddd(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
2026   void vpaddq(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
2027 
2028   // Sub packed integers
2029   void psubb(XMMRegister dst, XMMRegister src);
2030   void psubw(XMMRegister dst, XMMRegister src);
2031   void psubd(XMMRegister dst, XMMRegister src);
2032   void psubq(XMMRegister dst, XMMRegister src);
2033   void vpsubb(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2034   void vpsubw(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2035   void vpsubd(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2036   void vpsubq(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2037   void vpsubb(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
2038   void vpsubw(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
2039   void vpsubd(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
2040   void vpsubq(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
2041 
2042   // Multiply packed integers (only shorts and ints)
2043   void pmullw(XMMRegister dst, XMMRegister src);
2044   void pmulld(XMMRegister dst, XMMRegister src);
2045   void vpmullw(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2046   void vpmulld(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2047   void vpmullq(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2048   void vpmullw(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
2049   void vpmulld(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
2050   void vpmullq(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
2051 
2052   // Shift left packed integers
2053   void psllw(XMMRegister dst, int shift);
2054   void pslld(XMMRegister dst, int shift);
2055   void psllq(XMMRegister dst, int shift);
2056   void psllw(XMMRegister dst, XMMRegister shift);
2057   void pslld(XMMRegister dst, XMMRegister shift);
2058   void psllq(XMMRegister dst, XMMRegister shift);
2059   void vpsllw(XMMRegister dst, XMMRegister src, int shift, int vector_len);
2060   void vpslld(XMMRegister dst, XMMRegister src, int shift, int vector_len);
2061   void vpsllq(XMMRegister dst, XMMRegister src, int shift, int vector_len);
2062   void vpsllw(XMMRegister dst, XMMRegister src, XMMRegister shift, int vector_len);
2063   void vpslld(XMMRegister dst, XMMRegister src, XMMRegister shift, int vector_len);
2064   void vpsllq(XMMRegister dst, XMMRegister src, XMMRegister shift, int vector_len);
2065 
2066   // Logical shift right packed integers
2067   void psrlw(XMMRegister dst, int shift);
2068   void psrld(XMMRegister dst, int shift);
2069   void psrlq(XMMRegister dst, int shift);
2070   void psrlw(XMMRegister dst, XMMRegister shift);
2071   void psrld(XMMRegister dst, XMMRegister shift);
2072   void psrlq(XMMRegister dst, XMMRegister shift);
2073   void vpsrlw(XMMRegister dst, XMMRegister src, int shift, int vector_len);
2074   void vpsrld(XMMRegister dst, XMMRegister src, int shift, int vector_len);
2075   void vpsrlq(XMMRegister dst, XMMRegister src, int shift, int vector_len);
2076   void vpsrlw(XMMRegister dst, XMMRegister src, XMMRegister shift, int vector_len);
2077   void vpsrld(XMMRegister dst, XMMRegister src, XMMRegister shift, int vector_len);
2078   void vpsrlq(XMMRegister dst, XMMRegister src, XMMRegister shift, int vector_len);
2079   void evpsrlvw(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2080   void evpsllvw(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2081 
2082   // Arithmetic shift right packed integers (only shorts and ints, no instructions for longs)
2083   void psraw(XMMRegister dst, int shift);
2084   void psrad(XMMRegister dst, int shift);
2085   void psraw(XMMRegister dst, XMMRegister shift);
2086   void psrad(XMMRegister dst, XMMRegister shift);
2087   void vpsraw(XMMRegister dst, XMMRegister src, int shift, int vector_len);
2088   void vpsrad(XMMRegister dst, XMMRegister src, int shift, int vector_len);
2089   void vpsraw(XMMRegister dst, XMMRegister src, XMMRegister shift, int vector_len);
2090   void vpsrad(XMMRegister dst, XMMRegister src, XMMRegister shift, int vector_len);
2091 
2092   // And packed integers
2093   void pand(XMMRegister dst, XMMRegister src);
2094   void vpand(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2095   void vpand(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
2096   void vpandq(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2097 
2098   // Andn packed integers
2099   void pandn(XMMRegister dst, XMMRegister src);
2100 
2101   // Or packed integers
2102   void por(XMMRegister dst, XMMRegister src);
2103   void vpor(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2104   void vpor(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
2105   void vporq(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2106 
2107   // Xor packed integers
2108   void pxor(XMMRegister dst, XMMRegister src);
2109   void vpxor(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2110   void vpxor(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
2111   void evpxorq(XMMRegister dst, XMMRegister nds, XMMRegister src, int vector_len);
2112   void evpxorq(XMMRegister dst, XMMRegister nds, Address src, int vector_len);
2113 
2114 
2115   // vinserti forms
2116   void vinserti128(XMMRegister dst, XMMRegister nds, XMMRegister src, uint8_t imm8);
2117   void vinserti128(XMMRegister dst, XMMRegister nds, Address src, uint8_t imm8);
2118   void vinserti32x4(XMMRegister dst, XMMRegister nds, XMMRegister src, uint8_t imm8);
2119   void vinserti32x4(XMMRegister dst, XMMRegister nds, Address src, uint8_t imm8);
2120   void vinserti64x4(XMMRegister dst, XMMRegister nds, XMMRegister src, uint8_t imm8);
2121 
2122   // vinsertf forms
2123   void vinsertf128(XMMRegister dst, XMMRegister nds, XMMRegister src, uint8_t imm8);
2124   void vinsertf128(XMMRegister dst, XMMRegister nds, Address src, uint8_t imm8);
2125   void vinsertf32x4(XMMRegister dst, XMMRegister nds, XMMRegister src, uint8_t imm8);
2126   void vinsertf32x4(XMMRegister dst, XMMRegister nds, Address src, uint8_t imm8);
2127   void vinsertf64x4(XMMRegister dst, XMMRegister nds, XMMRegister src, uint8_t imm8);
2128   void vinsertf64x4(XMMRegister dst, XMMRegister nds, Address src, uint8_t imm8);
2129 
2130   // vextracti forms
2131   void vextracti128(XMMRegister dst, XMMRegister src, uint8_t imm8);
2132   void vextracti128(Address dst, XMMRegister src, uint8_t imm8);
2133   void vextracti32x4(XMMRegister dst, XMMRegister src, uint8_t imm8);
2134   void vextracti32x4(Address dst, XMMRegister src, uint8_t imm8);
2135   void vextracti64x2(XMMRegister dst, XMMRegister src, uint8_t imm8);
2136   void vextracti64x4(XMMRegister dst, XMMRegister src, uint8_t imm8);
2137 
2138   // vextractf forms
2139   void vextractf128(XMMRegister dst, XMMRegister src, uint8_t imm8);
2140   void vextractf128(Address dst, XMMRegister src, uint8_t imm8);
2141   void vextractf32x4(XMMRegister dst, XMMRegister src, uint8_t imm8);
2142   void vextractf32x4(Address dst, XMMRegister src, uint8_t imm8);
2143   void vextractf64x2(XMMRegister dst, XMMRegister src, uint8_t imm8);
2144   void vextractf64x4(XMMRegister dst, XMMRegister src, uint8_t imm8);
2145   void vextractf64x4(Address dst, XMMRegister src, uint8_t imm8);
2146 
2147   // legacy xmm sourced word/dword replicate
2148   void vpbroadcastw(XMMRegister dst, XMMRegister src);
2149   void vpbroadcastd(XMMRegister dst, XMMRegister src);
2150 
2151   // xmm/mem sourced byte/word/dword/qword replicate
2152   void evpbroadcastb(XMMRegister dst, XMMRegister src, int vector_len);
2153   void evpbroadcastb(XMMRegister dst, Address src, int vector_len);
2154   void evpbroadcastw(XMMRegister dst, XMMRegister src, int vector_len);
2155   void evpbroadcastw(XMMRegister dst, Address src, int vector_len);
2156   void evpbroadcastd(XMMRegister dst, XMMRegister src, int vector_len);
2157   void evpbroadcastd(XMMRegister dst, Address src, int vector_len);
2158   void evpbroadcastq(XMMRegister dst, XMMRegister src, int vector_len);
2159   void evpbroadcastq(XMMRegister dst, Address src, int vector_len);
2160 
2161   void evbroadcasti64x2(XMMRegister dst, XMMRegister src, int vector_len);
2162   void evbroadcasti64x2(XMMRegister dst, Address src, int vector_len);
2163 
2164   // scalar single/double precision replicate
2165   void evpbroadcastss(XMMRegister dst, XMMRegister src, int vector_len);
2166   void evpbroadcastss(XMMRegister dst, Address src, int vector_len);
2167   void evpbroadcastsd(XMMRegister dst, XMMRegister src, int vector_len);
2168   void evpbroadcastsd(XMMRegister dst, Address src, int vector_len);
2169 
2170   // gpr sourced byte/word/dword/qword replicate
2171   void evpbroadcastb(XMMRegister dst, Register src, int vector_len);
2172   void evpbroadcastw(XMMRegister dst, Register src, int vector_len);
2173   void evpbroadcastd(XMMRegister dst, Register src, int vector_len);
2174   void evpbroadcastq(XMMRegister dst, Register src, int vector_len);
2175 
2176   void evpgatherdd(XMMRegister dst, KRegister k1, Address src, int vector_len);
2177 
2178   // Carry-Less Multiplication Quadword
2179   void pclmulqdq(XMMRegister dst, XMMRegister src, int mask);
2180   void vpclmulqdq(XMMRegister dst, XMMRegister nds, XMMRegister src, int mask);
2181   void evpclmulqdq(XMMRegister dst, XMMRegister nds, XMMRegister src, int mask, int vector_len);
2182   // AVX instruction which is used to clear upper 128 bits of YMM registers and
2183   // to avoid transaction penalty between AVX and SSE states. There is no
2184   // penalty if legacy SSE instructions are encoded using VEX prefix because
2185   // they always clear upper 128 bits. It should be used before calling
2186   // runtime code and native libraries.
2187   void vzeroupper();
2188 
2189   // AVX support for vectorized conditional move (float/double). The following two instructions used only coupled.
2190   void cmppd(XMMRegister dst, XMMRegister nds, XMMRegister src, int cop, int vector_len);
2191   void blendvpd(XMMRegister dst, XMMRegister nds, XMMRegister src1, XMMRegister src2, int vector_len);
2192   void cmpps(XMMRegister dst, XMMRegister nds, XMMRegister src, int cop, int vector_len);
2193   void blendvps(XMMRegister dst, XMMRegister nds, XMMRegister src1, XMMRegister src2, int vector_len);
2194   void vpblendd(XMMRegister dst, XMMRegister nds, XMMRegister src, int imm8, int vector_len);
2195 
2196  protected:
2197   // Next instructions require address alignment 16 bytes SSE mode.
2198   // They should be called only from corresponding MacroAssembler instructions.
2199   void andpd(XMMRegister dst, Address src);
2200   void andps(XMMRegister dst, Address src);
2201   void xorpd(XMMRegister dst, Address src);
2202   void xorps(XMMRegister dst, Address src);
2203 
2204 };
2205 
2206 // The Intel x86/Amd64 Assembler attributes: All fields enclosed here are to guide encoding level decisions.
2207 // Specific set functions are for specialized use, else defaults or whatever was supplied to object construction
2208 // are applied.
2209 class InstructionAttr {
2210 public:
2211   InstructionAttr(
2212     int vector_len,     // The length of vector to be applied in encoding - for both AVX and EVEX
2213     bool rex_vex_w,     // Width of data: if 32-bits or less, false, else if 64-bit or specially defined, true
2214     bool legacy_mode,   // Details if either this instruction is conditionally encoded to AVX or earlier if true else possibly EVEX
2215     bool no_reg_mask,   // when true, k0 is used when EVEX encoding is chosen, else k1 is used under the same condition
2216     bool uses_vl)       // This instruction may have legacy constraints based on vector length for EVEX
2217     :
2218       _avx_vector_len(vector_len),
2219       _rex_vex_w(rex_vex_w),
2220       _rex_vex_w_reverted(false),
2221       _legacy_mode(legacy_mode),
2222       _no_reg_mask(no_reg_mask),
2223       _uses_vl(uses_vl),
2224       _tuple_type(Assembler::EVEX_ETUP),
2225       _input_size_in_bits(Assembler::EVEX_NObit),
2226       _is_evex_instruction(false),
2227       _evex_encoding(0),
2228       _is_clear_context(true),
2229       _is_extended_context(false),
2230       _embedded_opmask_register_specifier(1), // hard code k1, it will be initialized for now
2231       _current_assembler(NULL) {
2232     if (UseAVX < 3) _legacy_mode = true;
2233   }
2234 
2235   ~InstructionAttr() {
2236     if (_current_assembler != NULL) {
2237       _current_assembler->clear_attributes();
2238     }
2239     _current_assembler = NULL;
2240   }
2241 
2242 private:
2243   int  _avx_vector_len;
2244   bool _rex_vex_w;
2245   bool _rex_vex_w_reverted;
2246   bool _legacy_mode;
2247   bool _no_reg_mask;
2248   bool _uses_vl;
2249   int  _tuple_type;
2250   int  _input_size_in_bits;
2251   bool _is_evex_instruction;
2252   int  _evex_encoding;
2253   bool _is_clear_context;
2254   bool _is_extended_context;
2255   int _embedded_opmask_register_specifier;
2256 
2257   Assembler *_current_assembler;
2258 
2259 public:
2260   // query functions for field accessors
2261   int  get_vector_len(void) const { return _avx_vector_len; }
2262   bool is_rex_vex_w(void) const { return _rex_vex_w; }
2263   bool is_rex_vex_w_reverted(void) { return _rex_vex_w_reverted; }
2264   bool is_legacy_mode(void) const { return _legacy_mode; }
2265   bool is_no_reg_mask(void) const { return _no_reg_mask; }
2266   bool uses_vl(void) const { return _uses_vl; }
2267   int  get_tuple_type(void) const { return _tuple_type; }
2268   int  get_input_size(void) const { return _input_size_in_bits; }
2269   int  is_evex_instruction(void) const { return _is_evex_instruction; }
2270   int  get_evex_encoding(void) const { return _evex_encoding; }
2271   bool is_clear_context(void) const { return _is_clear_context; }
2272   bool is_extended_context(void) const { return _is_extended_context; }
2273   int get_embedded_opmask_register_specifier(void) const { return _embedded_opmask_register_specifier; }
2274 
2275   // Set the vector len manually
2276   void set_vector_len(int vector_len) { _avx_vector_len = vector_len; }
2277 
2278   // Set revert rex_vex_w for avx encoding
2279   void set_rex_vex_w_reverted(void) { _rex_vex_w_reverted = true; }
2280 
2281   // Set rex_vex_w based on state
2282   void set_rex_vex_w(bool state) { _rex_vex_w = state; }
2283 
2284   // Set the instruction to be encoded in AVX mode
2285   void set_is_legacy_mode(void) { _legacy_mode = true; }
2286 
2287   // Set the current instuction to be encoded as an EVEX instuction
2288   void set_is_evex_instruction(void) { _is_evex_instruction = true; }
2289 
2290   // Internal encoding data used in compressed immediate offset programming
2291   void set_evex_encoding(int value) { _evex_encoding = value; }
2292 
2293   // Set the Evex.Z field to be used to clear all non directed XMM/YMM/ZMM components
2294   void reset_is_clear_context(void) { _is_clear_context = false; }
2295 
2296   // Map back to current asembler so that we can manage object level assocation
2297   void set_current_assembler(Assembler *current_assembler) { _current_assembler = current_assembler; }
2298 
2299   // Address modifiers used for compressed displacement calculation
2300   void set_address_attributes(int tuple_type, int input_size_in_bits) {
2301     if (VM_Version::supports_evex()) {
2302       _tuple_type = tuple_type;
2303       _input_size_in_bits = input_size_in_bits;
2304     }
2305   }
2306 
2307   // Set embedded opmask register specifier.
2308   void set_embedded_opmask_register_specifier(KRegister mask) {
2309     _embedded_opmask_register_specifier = (*mask).encoding() & 0x7;
2310   }
2311 
2312 };
2313 
2314 #endif // CPU_X86_VM_ASSEMBLER_X86_HPP