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

  /art/compiler/utils/x86_64/
assembler_x86_64.h 84 return rex_;
102 && (reg.NeedsRex() == ((rex_ & 1) != 0)); // REX.000B bits match.
107 Operand() : rex_(0), length_(0) { }
112 rex_ |= 0x41; // REX.000B
122 rex_ |= 0x41; // REX.000B
125 rex_ |= 0x42; // REX.00X0
145 uint8_t rex_; member in class:art::x86_64::Operand
149 explicit Operand(CpuRegister reg) : rex_(0), length_(0) { SetModRM(3, reg); }
  /external/chromium_org/v8/src/x64/
disasm-x64.cc 295 rex_(0),
323 byte rex_; member in class:disasm::DisassemblerX64
332 rex_ = rex;
335 bool rex() { return rex_ != 0; }
337 bool rex_b() { return (rex_ & 0x01) != 0; }
340 int base_reg(int low_bits) { return low_bits | ((rex_ & 0x01) << 3); }
342 bool rex_x() { return (rex_ & 0x02) != 0; }
344 bool rex_r() { return (rex_ & 0x04) != 0; }
346 bool rex_w() { return (rex_ & 0x08) != 0; }
    [all...]

Completed in 53 milliseconds