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

  /external/chromium_org/third_party/mach_override/libudis86/
decode.c 39 #define REX_W(r) ( ( 0xF & ( r ) ) >> 3 )
133 eff_opr_mode(int dis_mode, int rex_w, int pfx_opr)
136 return rex_w ? 64 : (pfx_opr ? 16 : 32);
861 if ( REX_W( u->pfx_rex ) ) {
998 idx = eff_opr_mode(u->dis_mode, REX_W(u->pfx_rex), u->pfx_opr) / 32;
  /art/disassembler/
disassembler_x86.cc 61 constexpr uint8_t REX_W = 0b1000;
69 bool rex_w = (rex & REX_W) != 0; local
72 } else if (rex_w) {
271 if ((rex & REX_W) != 0) {
1081 uint8_t rex_w = (supports_rex_ && target_specific) ? (rex | 0x48) : rex; local
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86BaseInfo.h 382 // REX_W - REX prefixes are instruction prefixes used in 64-bit mode.
388 REX_W = 1 << REXShift,
476 /// way as REX_W is for regular SSE instructions.
  /external/pcre/dist/sljit/
sljitNativeX86_common.c 110 #define REX_W 0x48
593 *inst++ = REX_W;
618 *inst++ = REX_W;
796 *inst++ = REX_W;
819 *inst++ = REX_W | ((op >= SLJIT_UDIV) ? REX_B : 0);
826 *inst++ = REX_W;
    [all...]
  /art/compiler/dex/quick/x86/
x86_lir.h     [all...]
  /external/qemu/disas/
i386.c 130 #define REX_W 8
    [all...]

Completed in 647 milliseconds