HomeSort by: relevance | last modified time | path
    Searched refs:INSN_SIZE (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/arch/usermode/modules/syscallemu/
syscallemu_arm.c 60 pc_call = ARM_TF_PC(frame) - INSN_SIZE;
67 (pc_call + INSN_SIZE >= sce->sce_user_start &&
68 pc_call + INSN_SIZE < sce->sce_user_end)) {
  /src/sys/arch/riscv/riscv/
syscall.c 65 #define INSN_SIZE 4
207 INSN_SIZE + // ecall
208 INSN_SIZE * 2; // jump to cerror (or nops)
244 INSN_SIZE + // ecall
245 INSN_SIZE * 2; // jump to cerror (or nops)
253 tf->tf_pc -= INSN_SIZE * 2; // jump to cerror.
  /src/sys/arch/arm/include/
db_machdep.h 73 #define BKPT_SIZE (INSN_SIZE) /* size of breakpoint inst */
114 #define next_instr_address(pc, bd) ((bd) ? (pc) : ((pc) + INSN_SIZE))
armreg.h 422 #define INSN_SIZE 4 /* Always 4 bytes */
  /src/sys/arch/arm/arm/
syscall.c 112 if (__predict_false(((tf->tf_pc - INSN_SIZE) & 3) != 0)) {
118 ksi.ksi_addr = (uint32_t *)(intptr_t) (tf->tf_pc-INSN_SIZE);
138 insn = read_insn(tf->tf_pc - INSN_SIZE, true);
161 tf->tf_pc -= INSN_SIZE;
216 ksi.ksi_addr = (void *)(tf->tf_pc - INSN_SIZE);
268 tf->tf_pc -= INSN_SIZE;
undefined.c 154 tf->tf_pc += INSN_SIZE;
168 tf->tf_pc += INSN_SIZE;
225 frame->tf_pc += INSN_SIZE;
271 frame->tf_pc += INSN_SIZE;
317 tf->tf_pc -= INSN_SIZE;
320 tf->tf_pc += INSN_SIZE; /* Reset for the rest code */
333 tf->tf_pc -= INSN_SIZE;
linux_syscall.c 145 frame->tf_pc -= INSN_SIZE;
199 frame->tf_pc -= INSN_SIZE;
disassem.c 468 return(loc + INSN_SIZE);
761 return(loc + INSN_SIZE);
  /src/sys/arch/arm/vfp/
vfp_init.c 219 frame->tf_pc += INSN_SIZE;
478 // frame->tf_pc -= INSN_SIZE;
511 // frame->tf_pc -= INSN_SIZE;
  /src/sys/arch/riscv/include/
insn.h 173 #define INSN_SIZE(insn) (INSN_HALFWORDS(insn) * sizeof(uint16_t))

Completed in 22 milliseconds