Searched defs:rex (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/gas64/
H A Dgas-prefix.asm5 rex jmp foo label
6 rex movb $0, %ah label
7 rex movb $0, %sil label
/external/openssl/crypto/perlasm/
H A Dx86_64-xlate.pl653 sub rex {
655 my ($dst,$src,$rex)=@_;
657 $rex|=0x04 if($dst>=8);
658 $rex|=0x01 if($src>=8);
659 push @opcode,($rex|0x40) if ($rex);
672 rex(\@opcode,$src,$dst,0x8);
679 rex(\@opcode,$src,$dst,0x8);
696 rex(\@opcode,$src,$dst);
714 rex(\
652 sub rex { subroutine
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/perlasm/
H A Dx86_64-xlate.pl670 sub rex {
672 my ($dst,$src,$rex)=@_;
674 $rex|=0x04 if($dst>=8);
675 $rex|=0x01 if($src>=8);
676 push @opcode,($rex|0x40) if ($rex);
689 rex(\@opcode,$src,$dst,0x8);
696 rex(\@opcode,$src,$dst,0x8);
713 rex(\@opcode,$src,$dst);
731 rex(\
669 sub rex { subroutine
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/aes/asm/
H A Daesni-x86_64.pl3505 sub rex {
3508 my $rex=0;
3510 $rex|=0x04 if($dst>=8);
3511 $rex|=0x01 if($src>=8);
3512 push @opcode,$rex|0x40 if($rex);
3520 rex(\@opcode,$4,$3);
3534 rex(\@opcode,$3,$2);
3492 sub rex { subroutine
/external/openssl/crypto/aes/asm/
H A Daesni-x86_64.pl3042 sub rex {
3045 my $rex=0;
3047 $rex|=0x04 if($dst>=8);
3048 $rex|=0x01 if($src>=8);
3049 push @opcode,$rex|0x40 if($rex);
3057 rex(\@opcode,$4,$3);
3071 rex(\@opcode,$3,$2);
3029 sub rex { subroutine
H A Daesni-sha1-x86_64.pl1219 sub rex { subroutine
1222 my $rex=0;
1224 $rex|=0x04 if($dst>=8);
1225 $rex|=0x01 if($src>=8);
1226 push @opcode,$rex|0x40 if($rex);
1238 rex(\@opcode,$3,$2);
/external/pcre/dist/sljit/
H A DsljitNativeX86_64.c344 static sljit_si emit_do_imm32(struct sljit_compiler *compiler, sljit_ub rex, sljit_ub opcode, sljit_sw imm) argument
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;
439 rex |
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
H A Dx86bc.c110 yasm_x86__set_rex_from_reg(unsigned char *rex, unsigned char *low3, argument
121 if (*rex == 0xff) {
126 *rex |= 0x40 | (((reg & 8) >> 3) << rexbit);
129 if (*rex != 0 && *rex != 0xff) {
134 *rex = 0xff; /* Flag so we can NEVER set it (see above) */
206 unsigned char *rex, unsigned int bits)
210 if (yasm_x86__set_rex_from_reg(rex, &rm, reg, bits, X86_REX_B))
273 yasm_x86__bc_apply_prefixes(x86_common *common, unsigned char *rex, argument
295 if (!rex)
205 yasm_x86__ea_create_reg(x86_effaddr *x86_ea, unsigned long reg, unsigned char *rex, unsigned int bits) argument
[all...]
H A Dx86expr.c585 unsigned int bits, int address16_op, unsigned char *rex,
867 if (yasm_x86__set_rex_from_reg(rex, &low3,
894 if (yasm_x86__set_rex_from_reg(rex, &low3, (unsigned int)
907 if (yasm_x86__set_rex_from_reg(rex, &low3,
912 if (yasm_x86__set_rex_from_reg(rex, &low3,
584 yasm_x86__expr_checkea(x86_effaddr *x86_ea, unsigned char *addrsize, unsigned int bits, int address16_op, unsigned char *rex, yasm_bytecode *bc) argument
H A Dx86arch.h172 int yasm_x86__set_rex_from_reg(unsigned char *rex, unsigned char *low3,
202 unsigned char *rex, unsigned int bits);
242 unsigned char rex; /* REX AMD64 extension, 0 if none, member in struct:x86_insn
293 (x86_common *common, unsigned char *rex, unsigned int def_opersize_64,
301 int address16_op, unsigned char *rex, yasm_bytecode *bc);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
H A Drtasm_x86sse.c656 uint8_t rex = 0x40; local
659 rex |= 4;
664 rex |= 1;
667 emit_1ub(p, rex);
693 uint8_t rex = 0x48; local
702 rex |= 4;
707 rex |= 1;
711 emit_1ub(p, rex);
/external/chromium_org/v8/src/x64/
H A Ddisasm-x64.cc330 void setRex(byte rex) { argument
331 DCHECK_EQ(0x40, rex & 0xF0);
332 rex_ = rex;
335 bool rex() { return rex_ != 0; } function in class:disasm::DisassemblerX64
339 // Actual number of base register given the low bits and the rex.b state.
/external/mesa3d/src/gallium/auxiliary/rtasm/
H A Drtasm_x86sse.c656 uint8_t rex = 0x40; local
659 rex |= 4;
664 rex |= 1;
667 emit_1ub(p, rex);
693 uint8_t rex = 0x48; local
702 rex |= 4;
707 rex |= 1;
711 emit_1ub(p, rex);
/external/valgrind/main/VEX/priv/
H A Dhost_amd64_defs.c2031 (lowest bit of rex distinguishes R12/RSP)
2035 (lowest bit of rex distinguishes R12/RSP)
2132 static inline UChar clearWBit ( UChar rex )
2134 return toUChar(rex & ~(1<<3));
2277 UChar rex; local
2551 rex = clearWBit( rexAMode_R( fake(0), i->Ain.Alu32R.dst ) );
2552 if (rex != 0x40) *p++ = rex;
2557 rex = clearWBit( rexAMode_R( fake(0), i->Ain.Alu32R.dst) );
2558 if (rex !
[all...]
/external/qemu/tcg/i386/
H A Dtcg-target.c375 int rex; local
389 rex = 0;
390 rex |= (opc & P_REXW) >> 8; /* REX.W */
391 rex |= (r & 8) >> 1; /* REX.R */
392 rex |= (x & 8) >> 2; /* REX.X */
393 rex |= (rm & 8) >> 3; /* REX.B */
400 rex |= opc & (r >= 4 ? P_REXB_R : 0);
401 rex |= opc & (rm >= 4 ? P_REXB_RM : 0);
403 if (rex) {
404 tcg_out8(s, (uint8_t)(rex |
[all...]
/external/qemu/disas/
H A Di386.c245 static int rex; variable
256 if ((rex & value)) \
709 'K' => print 'd' or 'q' if rex prefix is present.
714 . or suffix_always is true. print 'q' if rex prefix is present.
3389 rex = 0;
3458 if (prefixes || rex)
3470 if (rex)
3472 rex_used = rex;
3475 rex = newrex;
3488 "rex", /*
[all...]
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 2671 milliseconds