/src/sys/external/bsd/sljit/dist/sljit_src/ |
sljitNativeMIPS_64.c | 36 sljit_ins ins; local in function:load_immediate 87 ins = (shift == 32) ? DSLL32 : DSLL; 89 ins |= SH_IMM(shift); 90 FAIL_IF(push_inst(compiler, ins | TA(dst_ar) | DA(dst_ar), dst_ar)); 144 ins = op_dimm32; \ 148 ins = (op & SLJIT_I32_OP) ? op_imm : op_dimm; \ 150 FAIL_IF(push_inst(compiler, ins | T(src1) | DA(EQUAL_FLAG) | SH_IMM(src2), EQUAL_FLAG)); \ 152 FAIL_IF(push_inst(compiler, ins | T(src1) | D(dst) | SH_IMM(src2), DR(dst))); \ 155 ins = (op & SLJIT_I32_OP) ? op_v : op_dv; \ 157 FAIL_IF(push_inst(compiler, ins | S(src2) | T(src1) | DA(EQUAL_FLAG), EQUAL_FLAG)); 165 sljit_ins ins; local in function:emit_single_op [all...] |
sljitNativeARM_32.c | 2216 sljit_uw cc, ins; local in function:sljit_emit_op_flags 2236 ins = (op == SLJIT_AND ? AND_DP : (op == SLJIT_OR ? ORR_DP : EOR_DP)); 2238 FAIL_IF(push_inst(compiler, (EMIT_DATA_PROCESS_INS(ins, 0, dst, dst, SRC2_IMM | 1) & ~COND_MASK) | cc)); 2251 FAIL_IF(push_inst(compiler, (EMIT_DATA_PROCESS_INS(ins, 0, dst_reg, src, SRC2_IMM | 1) & ~COND_MASK) | cc)); 2252 FAIL_IF(push_inst(compiler, (EMIT_DATA_PROCESS_INS(ins, 0, dst_reg, src, SRC2_IMM | 0) & ~COND_MASK) | (cc ^ 0x10000000)));
|
sljitNativeARM_T2_32.c | 1815 sljit_ins cc, ins; local in function:sljit_emit_op_flags 1843 ins = (op == SLJIT_AND ? ANDI : (op == SLJIT_OR ? ORRI : EORI)); 1848 FAIL_IF(push_inst32(compiler, ins | RN4(src) | RD4(dst) | 1)); 1870 FAIL_IF(push_inst32(compiler, ins | RN4(src) | RD4(dst_r) | 1)); 1871 FAIL_IF(push_inst32(compiler, ins | RN4(src) | RD4(dst_r) | 0)); 1875 FAIL_IF(push_inst32(compiler, ins | RN4(src) | RD4(dst_r) | 1));
|
sljitNativeARM_64.c | 129 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins) 133 *ptr = ins; 365 sljit_ins ins; local in function:logical_imm 413 ins = 1 << 22; 415 ins = (0x3f - ((len << 1) - 1)) << 10; 418 return ins | ((len - ones - 1) << 10) | ((len - ones - right) << 16); 420 return ins | ((ones - 1) << 10) | ((len - right) << 16);
|
/src/sys/ddb/ |
db_run.c | 151 db_expr_t ins = db_get_value(pc, sizeof(int), false); local in function:db_stop_at_pc 155 if (!inst_trap_return(ins) && 156 (!inst_return(ins) || --db_call_depth != 0)) { 158 if (inst_call(ins) || inst_return(ins)) { 169 if (inst_call(ins)) 175 db_expr_t ins = db_get_value(pc, sizeof(int), false); local in function:db_stop_at_pc 179 if (!inst_call(ins) && 180 !inst_return(ins) && 181 !inst_trap_return(ins)) { [all...] |
/src/sys/dev/ppbus/ |
ppbus_msq.c | 212 int param, ins, arg, type; local in function:ppbus_MS_init_msq 221 ins = MS_INS(param); 231 printf("%s: param = %d, ins = %d, arg = %d, type = %d\n", 232 __func__, param, ins, arg, type); 239 msq[ins].arg[arg].i = va_arg(p_list, int); 244 msq[ins].arg[arg].i = (int)va_arg(p_list, char); 247 msq[ins].arg[arg].i = (int)va_arg(p_list, int); 251 msq[ins].arg[arg].p = va_arg(p_list, void *); 255 msq[ins].arg[arg].f = va_arg(p_list, void *);
|
/src/sys/arch/alpha/alpha/ |
db_trace.c | 73 alpha_instruction ins; local in function:decode_prologue 87 db_read_bytes(pc, sizeof(ins.bits), (char *)&ins.bits); 89 if (ins.mem_format.opcode == op_lda && 90 ins.mem_format.ra == 30 && 91 ins.mem_format.rb == 30) { 97 signed_immediate = (long)ins.mem_format.displacement; 113 } else if (ins.operate_lit_format.opcode == op_arit && 114 ins.operate_lit_format.function == op_subq && 115 ins.operate_lit_format.ra == 30 & [all...] |
/src/sys/arch/mips/mips/ |
db_interface.c | 1087 uint32_t ins; local in function:next_instr_address 1093 ins = mips_ufetch32((void *)pc); 1095 ins = *(uint32_t *)pc; 1097 if (inst_branch(ins) || inst_call(ins) || inst_return(ins))
|
/src/sys/netinet/ |
dccp_tfrc.c | 1696 int ins = 0; local in function:tfrc_recv_packet_recv 1740 ins = tfrc_recv_add_hist(cb, packet); 1753 if (!ins) {
|
tcp_vtw.h | 285 uint64_t ins; /* <! inserts */ member in struct:vtw_stats
|
/src/sys/arch/hp300/stand/common/ |
scsireg.h | 404 u_char ins : 1; member in struct:scsi_format
|
/src/usr.sbin/acpitools/acpidump/ |
acpi.c | 1614 uint32_t ins = whea->Instruction; local in function:acpi_print_einj_instruction 1617 switch (ins) { 1637 printf("%d", ins); 3948 uint32_t ins; local in function:acpi_print_wdat_instruction 3950 ins = whea->Instruction & ~ACPI_WDAT_PRESERVE_REGISTER; 3953 switch (ins) { 3970 printf("%d", ins);
|
/src/common/lib/libx86emu/ |
x86emu.c | 169 static void ins (struct X86EMU *, int size); 1630 ins(emu, 4); 1632 ins(emu, 2); 4398 ins(emu, 1); 7938 ins(struct X86EMU *emu, int size) function in typeref:typename:void
|