HomeSort by relevance Sort by last modified time
    Searched refs:rex_ (Results 1 - 4 of 4) sorted by null

  /external/v8/src/x64/
assembler-x64-inl.h 102 emit(0x48 | reg.high_bit() << 2 | op.rex_);
107 emit(0x48 | (reg.code() & 0x8) >> 1 | op.rex_);
118 emit(0x48 | op.rex_);
128 emit(0x40 | reg.high_bit() << 2 | op.rex_);
138 emit(0x40 | op.rex_);
149 byte rex_bits = reg.high_bit() << 2 | op.rex_;
155 byte rex_bits = (reg.code() & 0x8) >> 1 | op.rex_;
184 if (op.rex_ != 0) emit(0x40 | op.rex_);
457 rex_ |= rm_reg.high_bit()
    [all...]
disasm-x64.cc 315 rex_(0),
342 byte rex_; member in class:disasm::DisassemblerX64
350 rex_ = rex;
353 bool rex() { return rex_ != 0; }
355 bool rex_b() { return (rex_ & 0x01) != 0; }
358 int base_reg(int low_bits) { return low_bits | ((rex_ & 0x01) << 3); }
360 bool rex_x() { return (rex_ & 0x02) != 0; }
362 bool rex_r() { return (rex_ & 0x04) != 0; }
364 bool rex_w() { return (rex_ & 0x08) != 0; }
    [all...]
assembler-x64.cc 215 Operand::Operand(Register base, int32_t disp) : rex_(0) {
237 int32_t disp) : rex_(0) {
257 int32_t disp) : rex_(0) {
291 rex_ = operand.rex_;
322 int index_code = ((buf_[1] >> 3) & 0x07) | ((rex_ & 0x02) << 2);
326 base_code = (buf_[1] & 0x07) | ((rex_ & 0x01) << 3);
334 base_code |= ((rex_ & 0x01) << 3);
    [all...]
assembler-x64.h 410 bool requires_rex() const { return rex_ != 0; }
416 byte rex_;
    [all...]

Completed in 103 milliseconds