HomeSort by relevance Sort by last modified time
    Searched refs:rex (Results 26 - 50 of 88) sorted by null

12 3 4

  /external/swiftshader/third_party/LLVM/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.h 43 #define wFromREX(rex) (((rex) & 0x8) >> 3)
44 #define rFromREX(rex) (((rex) & 0x4) >> 2)
45 #define xFromREX(rex) (((rex) & 0x2) >> 1)
46 #define bFromREX(rex) ((rex) & 0x1)
450 /* The value of the REX prefix, if present */
453 the opcode, or right before the REX prefix if one is present) *
    [all...]
  /external/boringssl/src/crypto/perlasm/
x86_64-xlate.pl 943 sub rex {
945 my ($dst,$src,$rex)=@_;
947 $rex|=0x04 if($dst>=8);
948 $rex|=0x01 if($src>=8);
949 push @$opcode,($rex|0x40) if ($rex);
958 rex(\@opcode,$src,$dst,0x8);
965 rex(\@opcode,$src,$dst,0x8);
982 rex(\@opcode,$src,$dst);
1000 rex(\@opcode,$dst,$src)
942 sub rex { subroutine
    [all...]
  /external/pcre/dist2/src/sljit/
sljitNativeX86_64.c 331 static sljit_s32 emit_do_imm32(struct sljit_compiler *compiler, sljit_u8 rex, sljit_u8 opcode, sljit_sw imm)
334 sljit_s32 length = 1 + (rex ? 1 : 0) + sizeof(sljit_s32);
339 if (rex)
340 *inst++ = rex;
354 sljit_u8 rex = 0; local
376 rex |= REX_W;
378 rex |= REX;
406 rex |= REX_B;
421 rex |= REX_X
    [all...]
  /art/compiler/utils/x86_64/
assembler_x86_64.cc 995 // Emit a REX.W prefix if the operand size is 64 bits.
1010 // Emit a REX.W prefix if the operand size is 64 bits.
1030 // Emit a REX.W prefix if the operand size is 64 bits.
1045 // Emit a REX.W prefix if the operand size is 64 bits.
1105 // Emit a REX.W prefix if the operand size is 64 bits.
1125 // Emit a REX.W prefix if the operand size is 64 bits.
3324 uint8_t rex = force ? 0x40 : 0; local
3363 uint8_t rex = operand.rex(); local
3370 uint8_t rex = operand.rex(); local
3380 uint8_t rex = operand.rex(); local
3398 uint8_t rex = operand.rex(); local
3416 uint8_t rex = 0x48 | operand.rex(); \/\/ REX.W000 local
3424 uint8_t rex = 0x48 | operand.rex(); \/\/ REX.W000 local
3438 uint8_t rex = operand.rex(); local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/testdata/
libmach8db.c 77 uchar rex; /* REX prefix (or zero) */ member in struct:Instr
121 /* amd64 rex extension byte */
144 %o - register from opcode and REX.B
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/testdata/
libmach8db.c 77 uchar rex; /* REX prefix (or zero) */ member in struct:Instr
121 /* amd64 rex extension byte */
144 %o - register from opcode and REX.B
    [all...]
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.h 32 #define wFromREX(rex) (((rex) & 0x8) >> 3)
33 #define rFromREX(rex) (((rex) & 0x4) >> 2)
34 #define xFromREX(rex) (((rex) & 0x2) >> 1)
35 #define bFromREX(rex) ((rex) & 0x1)
557 // The value of the REX prefix, if present
560 // the opcode, or right before the REX prefix if one is present)
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
i386-dis.c 149 /* REX prefix the current instruction. See below. */
150 static int rex; variable
151 /* Bits of REX we've already used. */
153 /* REX bits in original REX prefix ignored. */
155 /* Mark parts used in the REX prefix. When we are testing for
156 empty prefix (for 8bit register REX extension), just mask it
157 out. Otherwise test for REX bit is excuse for existence of REX
163 if ((rex & value))
    [all...]
  /external/guava/guava-bootstrap/src/java/util/concurrent/
AbstractExecutorService.java 88 } catch (RuntimeException rex) {
89 ee = new ExecutionException(rex);
  /libcore/ojluni/src/main/java/java/util/concurrent/
AbstractExecutorService.java 202 } catch (RuntimeException rex) {
203 ee = new ExecutionException(rex);
ForkJoinTask.java 286 } catch (Throwable rex) {
287 return setExceptionalCompletion(rex);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
decode.go 258 rex Prefix // rex byte if present (or 0)
259 rexUsed Prefix // bits used in rex byte
260 rexIndex = -1 // index of rex byte
338 // Read non-REX prefixes.
410 // Read REX prefix.
412 rex = Prefix(src[pos])
417 inst.Prefix[pos] = rex
419 if rex&PrefixREXW != 0 {
467 if rex&PrefixREXR != 0
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
decode.go 258 rex Prefix // rex byte if present (or 0)
259 rexUsed Prefix // bits used in rex byte
260 rexIndex = -1 // index of rex byte
338 // Read non-REX prefixes.
410 // Read REX prefix.
412 rex = Prefix(src[pos])
417 inst.Prefix[pos] = rex
419 if rex&PrefixREXW != 0 {
467 if rex&PrefixREXR != 0
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-i386.c 329 rex_byte rex; member in struct:_i386_insn
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
MoreExecutors.java 725 } catch (RuntimeException rex) {
726 ee = new ExecutionException(rex);
    [all...]
  /external/llvm/utils/lit/lit/
main.py 360 rex = re.compile(opts.filter)
365 if rex.search(result_test.getFullName())]
  /external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_x86sse.c 657 uint8_t rex = 0x40; local
660 rex |= 4;
665 rex |= 1;
668 emit_1ub(p, rex);
694 uint8_t rex = 0x48; local
703 rex |= 4;
708 rex |= 1;
712 emit_1ub(p, rex);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pstats.py 305 rex = re.compile(sel)
311 if rex.search(func_std_string(func)):
  /external/python/cpython2/Lib/
pstats.py 297 rex = re.compile(sel)
303 if rex.search(func_std_string(func)):
  /libcore/jsr166-tests/src/test/java/jsr166/
ForkJoinTask8Test.java 271 } catch (Throwable rex) {
272 p.completeExceptionally(rex);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pstats.py 297 rex = re.compile(sel)
303 if rex.search(func_std_string(func)):
  /prebuilts/gdb/linux-x86/lib/python2.7/
pstats.py 297 rex = re.compile(sel)
303 if rex.search(func_std_string(func)):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pstats.py 297 rex = re.compile(sel)
303 if rex.search(func_std_string(func)):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pstats.py 297 rex = re.compile(sel)
303 if rex.search(func_std_string(func)):
  /external/boringssl/src/crypto/fipsmodule/sha/asm/
sha1-x86_64.pl     [all...]

Completed in 2186 milliseconds

12 3 4