Home | History | Annotate | Download | only in x64

Lines Matching refs:rex_

101   emit(0x48 | reg.high_bit() << 2 | op.rex_);
106 emit(0x48 | (reg.code() & 0x8) >> 1 | op.rex_);
117 emit(0x48 | op.rex_);
127 emit(0x40 | reg.high_bit() << 2 | op.rex_);
137 emit(0x40 | op.rex_);
148 byte rex_bits = reg.high_bit() << 2 | op.rex_;
154 byte rex_bits = (reg.code() & 0x8) >> 1 | op.rex_;
183 if (op.rex_ != 0) emit(0x40 | op.rex_);
530 rex_ |= rm_reg.high_bit();
541 rex_ |= index.high_bit() << 1 | base.high_bit();