Lines Matching refs:ARM_IP
487 emit(ARM_UDIV(ARM_IP, rm, rn), ctx); in emit_udivmod()
488 emit(ARM_MLS(rd, rn, ARM_IP, rm), ctx); in emit_udivmod()
515 emit_mov_i(ARM_IP, op == BPF_DIV ? in emit_udivmod()
517 emit_blx_r(ARM_IP, ctx); in emit_udivmod()
841 emit(ARM_SUB_I(ARM_IP, rt, 32), ctx); in emit_a32_lsh_r64()
844 emit(ARM_ORR_SR(ARM_LR, ARM_LR, rd[1], SRTYPE_ASL, ARM_IP), ctx); in emit_a32_lsh_r64()
845 emit(ARM_ORR_SR(ARM_IP, ARM_LR, rd[1], SRTYPE_LSR, tmp2[0]), ctx); in emit_a32_lsh_r64()
849 arm_bpf_put_reg32(dst_hi, ARM_IP, ctx); in emit_a32_lsh_r64()
865 emit(ARM_RSB_I(ARM_IP, rt, 32), ctx); in emit_a32_arsh_r64()
868 emit(ARM_ORR_SR(ARM_LR, ARM_LR, rd[0], SRTYPE_ASL, ARM_IP), ctx); in emit_a32_arsh_r64()
871 emit(ARM_MOV_SR(ARM_IP, rd[0], SRTYPE_ASR, rt), ctx); in emit_a32_arsh_r64()
874 arm_bpf_put_reg32(dst_hi, ARM_IP, ctx); in emit_a32_arsh_r64()
890 emit(ARM_RSB_I(ARM_IP, rt, 32), ctx); in emit_a32_rsh_r64()
893 emit(ARM_ORR_SR(ARM_LR, ARM_LR, rd[0], SRTYPE_ASL, ARM_IP), ctx); in emit_a32_rsh_r64()
895 emit(ARM_MOV_SR(ARM_IP, rd[0], SRTYPE_LSR, rt), ctx); in emit_a32_rsh_r64()
898 arm_bpf_put_reg32(dst_hi, ARM_IP, ctx); in emit_a32_rsh_r64()
998 emit(ARM_MUL(ARM_IP, rd[1], rt[0]), ctx); in emit_a32_mul_r64()
1000 emit(ARM_ADD_R(ARM_LR, ARM_IP, ARM_LR), ctx); in emit_a32_mul_r64()
1002 emit(ARM_UMULL(ARM_IP, rd[0], rd[1], rt[1]), ctx); in emit_a32_mul_r64()
1005 arm_bpf_put_reg32(dst_lo, ARM_IP, ctx); in emit_a32_mul_r64()
1115 emit(ARM_AND_R(ARM_IP, rt, rn), ctx); in emit_ar_r()
1117 emit(ARM_ORRS_R(ARM_IP, ARM_LR, ARM_IP), ctx); in emit_ar_r()
1119 emit(ARM_ANDS_R(ARM_IP, rt, rn), ctx); in emit_ar_r()
1140 emit(ARM_SBCS_R(ARM_IP, rm, rd), ctx); in emit_ar_r()
1146 emit(ARM_SBCS_R(ARM_IP, rd, rm), ctx); in emit_ar_r()
1256 emit(ARM_ORR_SI(ARM_IP, tmp2[0], tmp2[1], SRTYPE_LSL, 24), ctx); in emit_rev32()
1264 emit(ARM_ORR_R(rd, ARM_IP, tmp2[0]), ctx); in emit_rev32()
1293 u16 reg_set = CALLEE_PUSH_MASK | 1 << ARM_IP | 1 << ARM_PC; in build_prologue()
1294 emit(ARM_MOV_R(ARM_IP, ARM_SP), ctx); in build_prologue()
1296 emit(ARM_SUB_I(ARM_FP, ARM_IP, 4), ctx); in build_prologue()