Lines Matching refs:ARM_IP
474 emit(ARM_UDIV(ARM_IP, rm, rn), ctx); in emit_udivmod()
475 emit(ARM_MLS(rd, rn, ARM_IP, rm), ctx); in emit_udivmod()
499 emit_mov_i(ARM_IP, op == BPF_DIV ? in emit_udivmod()
501 emit_blx_r(ARM_IP, ctx); in emit_udivmod()
838 emit(ARM_SUB_I(ARM_IP, rt, 32), ctx); in emit_a32_lsh_r64()
841 emit(ARM_ORR_SR(ARM_LR, ARM_LR, rd[1], SRTYPE_ASL, ARM_IP), ctx); in emit_a32_lsh_r64()
842 emit(ARM_ORR_SR(ARM_IP, ARM_LR, rd[1], SRTYPE_LSR, tmp2[0]), ctx); in emit_a32_lsh_r64()
846 arm_bpf_put_reg32(dst_hi, ARM_IP, ctx); in emit_a32_lsh_r64()
862 emit(ARM_RSB_I(ARM_IP, rt, 32), ctx); in emit_a32_arsh_r64()
865 emit(ARM_ORR_SR(ARM_LR, ARM_LR, rd[0], SRTYPE_ASL, ARM_IP), ctx); in emit_a32_arsh_r64()
868 emit(ARM_MOV_SR(ARM_IP, rd[0], SRTYPE_ASR, rt), ctx); in emit_a32_arsh_r64()
871 arm_bpf_put_reg32(dst_hi, ARM_IP, ctx); in emit_a32_arsh_r64()
887 emit(ARM_RSB_I(ARM_IP, rt, 32), ctx); in emit_a32_rsh_r64()
890 emit(ARM_ORR_SR(ARM_LR, ARM_LR, rd[0], SRTYPE_ASL, ARM_IP), ctx); in emit_a32_rsh_r64()
892 emit(ARM_MOV_SR(ARM_IP, rd[0], SRTYPE_LSR, rt), ctx); in emit_a32_rsh_r64()
895 arm_bpf_put_reg32(dst_hi, ARM_IP, ctx); in emit_a32_rsh_r64()
995 emit(ARM_MUL(ARM_IP, rd[1], rt[0]), ctx); in emit_a32_mul_r64()
997 emit(ARM_ADD_R(ARM_LR, ARM_IP, ARM_LR), ctx); in emit_a32_mul_r64()
999 emit(ARM_UMULL(ARM_IP, rd[0], rd[1], rt[1]), ctx); in emit_a32_mul_r64()
1002 arm_bpf_put_reg32(dst_lo, ARM_IP, ctx); in emit_a32_mul_r64()
1112 emit(ARM_AND_R(ARM_IP, rt, rn), ctx); in emit_ar_r()
1114 emit(ARM_ORRS_R(ARM_IP, ARM_LR, ARM_IP), ctx); in emit_ar_r()
1116 emit(ARM_ANDS_R(ARM_IP, rt, rn), ctx); in emit_ar_r()
1137 emit(ARM_SBCS_R(ARM_IP, rm, rd), ctx); in emit_ar_r()
1143 emit(ARM_SBCS_R(ARM_IP, rd, rm), ctx); in emit_ar_r()
1252 emit(ARM_ORR_SI(ARM_IP, tmp2[0], tmp2[1], SRTYPE_LSL, 24), ctx); in emit_rev32()
1260 emit(ARM_ORR_R(rd, ARM_IP, tmp2[0]), ctx); in emit_rev32()
1289 u16 reg_set = CALLEE_PUSH_MASK | 1 << ARM_IP | 1 << ARM_PC; in build_prologue()
1290 emit(ARM_MOV_R(ARM_IP, ARM_SP), ctx); in build_prologue()
1292 emit(ARM_SUB_I(ARM_FP, ARM_IP, 4), ctx); in build_prologue()