OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:P_REXW
(Results
1 - 4
of
4
) sorted by null
/external/qemu/tcg/x86_64/
tcg-target.c
221
#define
P_REXW
0x200 /* set rex.w = 1 */
242
rex |= (opc &
P_REXW
) >> 6; /* REX.W */
359
tcg_out_modrm(s, 0x8b |
P_REXW
, ret, arg);
371
tcg_out_modrm(s, 0xc7 |
P_REXW
, 0, ret);
374
tcg_out_opc(s, (0xb8 + (ret & 7)) |
P_REXW
, 0, ret, 0);
400
tcg_out_modrm_offset(s, 0x8b |
P_REXW
, ret, arg1, arg2); /* movq */
409
tcg_out_modrm_offset(s, 0x89 |
P_REXW
, arg, arg1, arg2); /* movq */
439
tcg_out_modrm(s, 0xff |
P_REXW
, 0, r0);
442
tcg_out_modrm(s, 0xff |
P_REXW
, 1, r0);
450
tcg_out_modrm(s, 0x83 |
P_REXW
, c, r0)
[
all
...]
/external/qemu/tcg/i386/
tcg-target.c
234
# define
P_REXW
0x800 /* Set REX.W = 1 */
239
# define
P_REXW
0
268
#define OPC_MOVSLQ (0x63 |
P_REXW
)
357
assert((opc &
P_REXW
) == 0);
365
rex |= (opc &
P_REXW
) >> 8; /* REX.W */
508
/* Propagate an opcode prefix, such as
P_REXW
. */
518
int opc = OPC_MOVL_GvEv + (type == TCG_TYPE_I64 ?
P_REXW
: 0);
533
tcg_out_modrm(s, OPC_MOVL_EvIz +
P_REXW
, 0, ret);
536
tcg_out_opc(s, OPC_MOVL_Iv +
P_REXW
+ LOWREGMASK(ret), 0, ret, 0);
568
int opc = OPC_MOVL_GvEv + (type == TCG_TYPE_I64 ?
P_REXW
: 0)
[
all
...]
/external/chromium_org/third_party/mach_override/libudis86/
decode.h
42
#define
P_rexw
( 1 << 5 )
43
#define
P_REXW
(n) ( ( n >> 5 ) & 1 )
decode.c
43
#define REX_PFX_MASK(n) ( (
P_REXW
(n) << 3 ) | \
Completed in 119 milliseconds