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

  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86CodeEmitter.cpp 147 /// REX prefix which specifies 1) 64-bit instructions, 2) non-default operand
150 unsigned REX = 0;
153 // Pseudo instructions do not need REX prefix byte.
157 REX |= 1 << 3;
164 // If it accesses SPL, BPL, SIL, or DIL, then it requires a 0x40 REX prefix.
171 REX |= 0x40;
178 REX |= (1 << 0) | (1 << 2);
182 REX |= 1 << 2;
187 REX |= 1 << 0;
193 REX |= 1 << 2
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 54 // 0-7 and the difference between the 2 groups is given by the REX prefix.
394 // VEX_R: opcode externsion equivalent to REX.R in
402 // VEX_X: equivalent to REX.X, only used when a
405 // 1: Same as REX.X=0 (must be 1 in 32-bit mode)
406 // 0: Same as REX.X=1 (64-bit mode only)
416 // VEX_W: opcode specific (use like REX.W, or used for
621 /// REX prefix which specifies 1) 64-bit instructions, 2) non-default operand
625 unsigned REX = 0;
627 REX |= 1 << 3; // set REX.
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 126 uint64_t TSFlags, bool Rex, unsigned &CurByte,
350 uint64_t TSFlags, bool Rex,
377 assert(Rex);
390 return Rex ? X86::reloc_riprel_4byte_relax_rex
609 // VEX_R: opcode externsion equivalent to REX.R in
618 // VEX_X: equivalent to REX.X, only used when a
621 // 1: Same as REX.X=0 (must be 1 in 32-bit mode)
622 // 0: Same as REX.X=1 (64-bit mode only)
632 // VEX_W: opcode specific (use like REX.W, or used for
    [all...]
  /external/pcre/dist2/src/sljit/
sljitNativeX86_common.c 54 8 - R8 - From now on REX prefix is required
114 #define REX 0x40
    [all...]

Completed in 2756 milliseconds