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

  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 80 // 0-7 and the difference between the 2 groups is given by the REX prefix.
624 // VEX_R: opcode externsion equivalent to REX.R in
633 // VEX_X: equivalent to REX.X, only used when a
636 // 1: Same as REX.X=0 (must be 1 in 32-bit mode)
637 // 0: Same as REX.X=1 (64-bit mode only)
647 // VEX_W: opcode specific (use like REX.W, or used for
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win64/tests/
sce1.asm 2 db 048h; emit a REX prefix, to enable hot-patching
sce3.asm 2 db 048h; emit a REX prefix, to enable hot-patching
  /external/llvm/lib/Target/X86/
X86CodeEmitter.cpp 161 /// REX prefix which specifies 1) 64-bit instructions, 2) non-default operand
164 unsigned REX = 0;
167 // Pseudo instructions do not need REX prefix byte.
171 REX |= 1 << 3;
178 // If it accesses SPL, BPL, SIL, or DIL, then it requires a 0x40 REX prefix.
185 REX |= 0x40;
192 REX |= 1 << 2;
197 REX |= 1 << 0;
203 REX |= 1 << 2;
210 REX |= 1 << Bit
    [all...]
  /art/compiler/dex/quick/x86/
assemble_x86.cc 894 uint8_t rex = 0; local
    [all...]
x86_lir.h     [all...]
  /external/pcre/dist/sljit/
sljitNativeX86_64.c 344 static sljit_si emit_do_imm32(struct sljit_compiler *compiler, sljit_ub rex, sljit_ub opcode, sljit_sw imm)
347 sljit_si length = 1 + (rex ? 1 : 0) + sizeof(sljit_si);
352 if (rex)
353 *inst++ = rex;
367 sljit_ub rex = 0; local
389 rex |= REX_W;
391 rex |= REX;
419 rex |= REX_B;
434 rex |= REX_X
    [all...]
sljitNativeX86_common.c 54 8 - R8 - From now on REX prefix is required
114 #define REX 0x40
    [all...]
  /external/valgrind/main/memcheck/tests/amd64/
fxsave-amd64.stdout.exp 4 -------- FXSAVE non-64 (REX.W == 0) --------
108 -------- FXSAVE 64 (REX.W == 1) --------
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
avx.asm     [all...]

Completed in 1051 milliseconds