HomeSort by relevance Sort by last modified time
    Searched defs:rex (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/openssl/openssl/crypto/perlasm/
x86_64-xlate.pl 653 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(\@opcode,$dst,$src)
652 sub rex { subroutine
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/gas64/
gas-prefix.asm 5 rex jmp foo label
6 rex movb $0, %ah label
7 rex movb $0, %sil label
  /external/openssl/crypto/perlasm/
x86_64-xlate.pl 653 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(\@opcode,$dst,$src)
652 sub rex { subroutine
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/aes/asm/
aesni-x86_64.pl 3027 sub rex { subroutine
    [all...]
aesni-sha1-x86_64.pl 1219 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/openssl/crypto/aes/asm/
aesni-x86_64.pl 3027 sub rex { subroutine
    [all...]
aesni-sha1-x86_64.pl 1219 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);
  /dalvik/vm/compiler/codegen/x86/libenc/
dec_base.cpp 184 ((NULL == rex || 0 == rex->flag) ? reg : (reg + 8))
189 //don't know the use of rex, seems not used when _EM64T_ is not enabled
193 , const Rex UNREF *rex
211 decodeModRM(odesc, pbuf, pinst, rex);
228 decodeModRM(odesc, pbuf, pinst, rex);
311 , rex
378 Rex *prex = NULL;
379 Rex rex local
    [all...]
  /art/runtime/
disassembler_x86.cc 45 static void DumpReg0(std::ostream& os, uint8_t /*rex*/, size_t reg,
48 // TODO: combine rex into size
60 static void DumpReg(std::ostream& os, uint8_t rex, uint8_t reg,
62 size_t reg_num = reg; // TODO: combine with REX.R on 64bit
64 DumpReg0(os, rex, reg_num, byte_operand, size_override);
72 static void DumpBaseReg(std::ostream& os, uint8_t rex, uint8_t reg) {
73 size_t reg_num = reg; // TODO: combine with REX.B on 64bit
74 DumpReg0(os, rex, reg_num, false, 0);
77 static void DumpIndexReg(std::ostream& os, uint8_t rex, uint8_t reg) {
78 int reg_num = reg; // TODO: combine with REX.X on 64bi
141 uint8_t rex = (*instr >= 0x40 && *instr <= 0x4F) ? *instr : 0; local
    [all...]
  /external/qemu/tcg/x86_64/
tcg-target.c 221 #define P_REXW 0x200 /* set rex.w = 1 */
240 int rex = 0; local
242 rex |= (opc & P_REXW) >> 6; /* REX.W */
243 rex |= (r & 8) >> 1; /* REX.R */
244 rex |= (x & 8) >> 2; /* REX.X */
245 rex |= (rm & 8) >> 3; /* REX.B *
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
x86arch.h 122 X86_REG8X = 0x2<<4, /* 64-bit mode only, REX prefix version of REG8 */
167 /* Sets REX (4th bit) and 3 LS bits from register size/number. Returns 1 if
168 * impossible to fit reg into REX, otherwise returns 0. Input parameter rexbit
169 * indicates bit of REX to use if REX is needed. Will not modify REX if not
172 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
    [all...]
  /external/chromium_org/v8/src/x64/
disasm-x64.cc 353 void setRex(byte rex) {
354 ASSERT_EQ(0x40, rex & 0xF0);
355 rex_ = rex;
358 bool rex() { return rex_ != 0; } function in class:disasm::DisassemblerX64
362 // Actual number of base register given the low bits and the rex.b state.
745 regop &= 0x7; // The REX.R bit does not affect the operation.
    [all...]
  /external/v8/src/x64/
disasm-x64.cc 348 void setRex(byte rex) {
349 ASSERT_EQ(0x40, rex & 0xF0);
350 rex_ = rex;
353 bool rex() { return rex_ != 0; } function in class:disasm::DisassemblerX64
357 // Actual number of base register given the low bits and the rex.b state.
737 regop &= 0x7; // The REX.R bit does not affect the operation.
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
rtasm_x86sse.c 656 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);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_x86sse.c 656 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);
    [all...]
  /external/qemu/tcg/i386/
tcg-target.c 234 # define P_REXW 0x800 /* Set REX.W = 1 */
353 int rex; local
364 rex = 0;
365 rex |= (opc & P_REXW) >> 8; /* REX.W */
366 rex |= (r & 8) >> 1; /* REX.R */
367 rex |= (x & 8) >> 2; /* REX.X */
368 rex |= (rm & 8) >> 3; /* REX.B *
    [all...]
  /external/valgrind/main/VEX/priv/
host_amd64_defs.c 2269 UChar rex; local
    [all...]
  /external/qemu/
i386-dis.c 244 /* REX prefix the current instruction. See below. */
245 static int rex; variable
246 /* Bits of REX we've already used. */
248 /* Mark parts used in the REX prefix. When we are testing for
249 empty prefix (for 8bit register REX extension), just mask it
250 out. Otherwise test for REX bit is excuse for existence of REX
256 if ((rex & value)) \
476 #define dq_mode 11 /* operand size depends on REX prefixes. */
702 'K' => print 'd' or 'q' if rex prefix is present
    [all...]
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 
lint_api.jar 
lint_checks.jar 
  /external/droiddriver/libs/
guava-13.0.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
  /prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.jar 

Completed in 1830 milliseconds

1 2