Home
last modified time | relevance | path

Searched refs:rex (Results 1 – 25 of 129) sorted by relevance

123456

/netbsd-src/sys/arch/amd64/amd64/
H A Ddb_disasm.c896 #define f_mod(rex, byte) ((byte)>>6) argument
897 #define f_reg(rex, byte) ((((byte)>>3)&0x7) | (rex & REX_R ? 0x8 : 0x0)) argument
898 #define f_rm(rex, byte) (((byte)&0x7) | (rex & REX_B ? 0x8 : 0x0)) argument
900 #define sib_ss(rex, byte) ((byte)>>6) argument
901 #define sib_index(rex, byte) ((((byte)>>3)&0x7) | (rex & REX_X ? 0x8 : 0x0)) argument
902 #define sib_base(rex, byte) (((byte)&0x7) | (rex & REX_B ? 0x8 : 0x0)) argument
997 db_read_address(db_addr_t loc, int short_addr, u_int rex, int regmodrm, in db_read_address() argument
1004 mod = f_mod(rex, regmodrm); in db_read_address()
1005 rm = f_rm(rex, regmodrm); in db_read_address()
1017 rm = sib_base(rex, sib); in db_read_address()
[all …]
/netbsd-src/sys/external/bsd/sljit/dist/sljit_src/
H A DsljitNativeX86_64.c326 static sljit_s32 emit_do_imm32(struct sljit_compiler *compiler, sljit_u8 rex, sljit_u8 opcode, slji… in emit_do_imm32() argument
329 sljit_s32 length = 1 + (rex ? 1 : 0) + sizeof(sljit_s32); in emit_do_imm32()
334 if (rex) in emit_do_imm32()
335 *inst++ = rex; in emit_do_imm32()
349 sljit_u8 rex = 0; in emit_x86_instruction() local
371 rex |= REX_W; in emit_x86_instruction()
373 rex |= REX; in emit_x86_instruction()
400 rex |= REX_B; in emit_x86_instruction()
415 rex |= REX_X; in emit_x86_instruction()
420 rex |= REX_B; in emit_x86_instruction()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/perlasm/
H A Dx86_64-xlate.pl1006 sub rex { subroutine
1008 my ($dst,$src,$rex)=@_;
1010 $rex|=0x04 if($dst>=8);
1011 $rex|=0x01 if($src>=8);
1012 push @$opcode,($rex|0x40) if ($rex);
1021 rex(\@opcode,$src,$dst,0x8);
1028 rex(\@opcode,$src,$dst,0x8);
1045 rex(\@opcode,$src,$dst);
1063 rex(\@opcode,$dst,$src);
1076 rex(\@opcode,$2,$1);
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/perlasm/
H A Dx86_64-xlate.pl952 sub rex { subroutine
954 my ($dst,$src,$rex)=@_;
956 $rex|=0x04 if($dst>=8);
957 $rex|=0x01 if($src>=8);
958 push @$opcode,($rex|0x40) if ($rex);
967 rex(\@opcode,$src,$dst,0x8);
974 rex(\@opcode,$src,$dst,0x8);
991 rex(\@opcode,$src,$dst);
1009 rex(\@opcode,$dst,$src);
1022 rex(\@opcode,$2,$1);
[all …]
/netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
H A Dimx6q-rex-pro.dts9 #include "imx6qdl-rex.dtsi"
13 compatible = "rex,imx6q-rex-pro", "fsl,imx6q";
H A Dimx6dl-rex-basic.dts9 #include "imx6qdl-rex.dtsi"
13 compatible = "rex,imx6dl-rex-basic", "fsl,imx6dl";
/netbsd-src/external/cddl/osnet/dist/uts/intel/dtrace/
H A Dfasttrap_isa.c110 #define FASTTRAP_REX_W(rex) (((rex) >> 3) & 1) argument
111 #define FASTTRAP_REX_R(rex) (((rex) >> 2) & 1) argument
112 #define FASTTRAP_REX_X(rex) (((rex) >> 1) & 1) argument
113 #define FASTTRAP_REX_B(rex) ((rex) & 1) argument
281 uint8_t seg, rex = 0; in fasttrap_tracepoint_init() local
374 rex = instr[start++]; in fasttrap_tracepoint_init()
427 ASSERT(p->p_model == DATAMODEL_LP64 || rex == 0); in fasttrap_tracepoint_init()
443 regmap[index | (FASTTRAP_REX_X(rex) << 3)]; in fasttrap_tracepoint_init()
446 regmap[base | (FASTTRAP_REX_B(rex) << 3)]; in fasttrap_tracepoint_init()
467 (FASTTRAP_REX_B(rex) << 3); in fasttrap_tracepoint_init()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.h31 #define wFromREX(rex) (((rex) & 0x8) >> 3) argument
32 #define rFromREX(rex) (((rex) & 0x4) >> 2) argument
33 #define xFromREX(rex) (((rex) & 0x2) >> 1) argument
34 #define bFromREX(rex) ((rex) & 0x1) argument
/netbsd-src/external/gpl3/binutils/dist/opcodes/
H A Di386-dis.c152 uint8_t rex; member
288 if (ins->rex & value) \
382 if (ins->prefixes || ins->fwait_prefix >= 0 || (ins->rex & REX_OPCODE)) in fetch_error()
8501 ins->rex = (ins->rex2_payload & 0xf) | REX_OPCODE; in ckprefix()
8566 if (ins->prefixes || ins->rex) in ckprefix()
8572 return ins->rex ? ckp_bogus : ckp_okay; in ckprefix()
8580 if (ins->rex) in ckprefix()
8584 ins->rex = newrex; in ckprefix()
8889 ins->rex = ~(*ins->codep >> 5) & 0x7; in get_valid_dis386()
8910 ins->rex |= REX_W; in get_valid_dis386()
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/opcodes/
H A Di386-dis.c152 unsigned char rex; member
262 if ((ins->rex & value)) \
8636 if (ins->prefixes || ins->rex) in ckprefix()
8642 ins->rex_used = ins->rex; in ckprefix()
8651 if (ins->rex) in ckprefix()
8653 ins->rex_used = ins->rex; in ckprefix()
8658 ins->rex = newrex; in ckprefix()
8944 ins->rex = ~(*ins->codep >> 5) & 0x7; in get_valid_dis386()
8965 ins->rex |= REX_W; in get_valid_dis386()
8971 ins->rex &= ~REX_B; in get_valid_dis386()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libgfortran/generated/
H A Dreshape_c4.c56 index_type rex; in reshape_c4() local
105 rex = shape_data[n]; in reshape_c4()
107 GFC_DIMENSION_SET(ret->dim[n], 0, rex - 1, rs); in reshape_c4()
109 rs *= rex; in reshape_c4()
H A Dreshape_r4.c56 index_type rex; in reshape_r4() local
105 rex = shape_data[n]; in reshape_r4()
107 GFC_DIMENSION_SET(ret->dim[n], 0, rex - 1, rs); in reshape_r4()
109 rs *= rex; in reshape_r4()
H A Dreshape_r10.c56 index_type rex; in reshape_r10() local
105 rex = shape_data[n]; in reshape_r10()
107 GFC_DIMENSION_SET(ret->dim[n], 0, rex - 1, rs); in reshape_r10()
109 rs *= rex; in reshape_r10()
H A Dreshape_c10.c56 index_type rex; in reshape_c10() local
105 rex = shape_data[n]; in reshape_c10()
107 GFC_DIMENSION_SET(ret->dim[n], 0, rex - 1, rs); in reshape_c10()
109 rs *= rex; in reshape_c10()
H A Dreshape_i8.c56 index_type rex; in reshape_8() local
105 rex = shape_data[n]; in reshape_8()
107 GFC_DIMENSION_SET(ret->dim[n], 0, rex - 1, rs); in reshape_8()
109 rs *= rex; in reshape_8()
H A Dreshape_r8.c56 index_type rex; in reshape_r8() local
105 rex = shape_data[n]; in reshape_r8()
107 GFC_DIMENSION_SET(ret->dim[n], 0, rex - 1, rs); in reshape_r8()
109 rs *= rex; in reshape_r8()
H A Dreshape_r17.c56 index_type rex; in reshape_r17() local
105 rex = shape_data[n]; in reshape_r17()
107 GFC_DIMENSION_SET(ret->dim[n], 0, rex - 1, rs); in reshape_r17()
109 rs *= rex; in reshape_r17()
/netbsd-src/external/gpl3/gcc.old/dist/libgfortran/generated/
H A Dreshape_c8.c56 index_type rex; in reshape_c8() local
105 rex = shape_data[n]; in reshape_c8()
107 GFC_DIMENSION_SET(ret->dim[n], 0, rex - 1, rs); in reshape_c8()
109 rs *= rex; in reshape_c8()
H A Dreshape_c16.c56 index_type rex; in reshape_c16() local
105 rex = shape_data[n]; in reshape_c16()
107 GFC_DIMENSION_SET(ret->dim[n], 0, rex - 1, rs); in reshape_c16()
109 rs *= rex; in reshape_c16()
H A Dreshape_r8.c56 index_type rex; in reshape_r8() local
105 rex = shape_data[n]; in reshape_r8()
107 GFC_DIMENSION_SET(ret->dim[n], 0, rex - 1, rs); in reshape_r8()
109 rs *= rex; in reshape_r8()
H A Dreshape_r16.c56 index_type rex; in reshape_r16() local
105 rex = shape_data[n]; in reshape_r16()
107 GFC_DIMENSION_SET(ret->dim[n], 0, rex - 1, rs); in reshape_r16()
109 rs *= rex; in reshape_r16()
H A Dreshape_c4.c56 index_type rex; in reshape_c4() local
105 rex = shape_data[n]; in reshape_c4()
107 GFC_DIMENSION_SET(ret->dim[n], 0, rex - 1, rs); in reshape_c4()
109 rs *= rex; in reshape_c4()
H A Dreshape_r10.c56 index_type rex; in reshape_r10() local
105 rex = shape_data[n]; in reshape_r10()
107 GFC_DIMENSION_SET(ret->dim[n], 0, rex - 1, rs); in reshape_r10()
109 rs *= rex; in reshape_r10()
H A Dreshape_i8.c56 index_type rex; in reshape_8() local
105 rex = shape_data[n]; in reshape_8()
107 GFC_DIMENSION_SET(ret->dim[n], 0, rex - 1, rs); in reshape_8()
109 rs *= rex; in reshape_8()
H A Dreshape_i4.c56 index_type rex; in reshape_4() local
105 rex = shape_data[n]; in reshape_4()
107 GFC_DIMENSION_SET(ret->dim[n], 0, rex - 1, rs); in reshape_4()
109 rs *= rex; in reshape_4()

123456