• Home
  • Raw
  • Download

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()
835 emit(ARM_SUB_I(ARM_IP, rt, 32), ctx); in emit_a32_lsh_r64()
838 emit(ARM_ORR_SR(ARM_LR, ARM_LR, rd[1], SRTYPE_ASL, ARM_IP), ctx); in emit_a32_lsh_r64()
839 emit(ARM_ORR_SR(ARM_IP, ARM_LR, rd[1], SRTYPE_LSR, tmp2[0]), ctx); in emit_a32_lsh_r64()
843 arm_bpf_put_reg32(dst_hi, ARM_IP, ctx); in emit_a32_lsh_r64()
859 emit(ARM_RSB_I(ARM_IP, rt, 32), ctx); in emit_a32_arsh_r64()
862 emit(ARM_ORR_SR(ARM_LR, ARM_LR, rd[0], SRTYPE_ASL, ARM_IP), ctx); in emit_a32_arsh_r64()
865 emit(ARM_MOV_SR(ARM_IP, rd[0], SRTYPE_ASR, rt), ctx); in emit_a32_arsh_r64()
868 arm_bpf_put_reg32(dst_hi, ARM_IP, ctx); in emit_a32_arsh_r64()
884 emit(ARM_RSB_I(ARM_IP, rt, 32), ctx); in emit_a32_rsh_r64()
887 emit(ARM_ORR_SR(ARM_LR, ARM_LR, rd[0], SRTYPE_ASL, ARM_IP), ctx); in emit_a32_rsh_r64()
889 emit(ARM_MOV_SR(ARM_IP, rd[0], SRTYPE_LSR, rt), ctx); in emit_a32_rsh_r64()
892 arm_bpf_put_reg32(dst_hi, ARM_IP, ctx); in emit_a32_rsh_r64()
984 emit(ARM_MUL(ARM_IP, rd[1], rt[0]), ctx); in emit_a32_mul_r64()
986 emit(ARM_ADD_R(ARM_LR, ARM_IP, ARM_LR), ctx); in emit_a32_mul_r64()
988 emit(ARM_UMULL(ARM_IP, rd[0], rd[1], rt[1]), ctx); in emit_a32_mul_r64()
991 arm_bpf_put_reg32(dst_lo, ARM_IP, ctx); in emit_a32_mul_r64()
1093 emit(ARM_AND_R(ARM_IP, rt, rn), ctx); in emit_ar_r()
1095 emit(ARM_ORRS_R(ARM_IP, ARM_LR, ARM_IP), ctx); in emit_ar_r()
1097 emit(ARM_ANDS_R(ARM_IP, rt, rn), ctx); in emit_ar_r()
1118 emit(ARM_SBCS_R(ARM_IP, rm, rd), ctx); in emit_ar_r()
1124 emit(ARM_SBCS_R(ARM_IP, rd, rm), ctx); in emit_ar_r()
1233 emit(ARM_ORR_SI(ARM_IP, tmp2[0], tmp2[1], SRTYPE_LSL, 24), ctx); in emit_rev32()
1241 emit(ARM_ORR_R(rd, ARM_IP, tmp2[0]), ctx); in emit_rev32()
1273 u16 reg_set = CALLEE_PUSH_MASK | 1 << ARM_IP | 1 << ARM_PC; in build_prologue()
1274 emit(ARM_MOV_R(ARM_IP, ARM_SP), ctx); in build_prologue()
1276 emit(ARM_SUB_I(ARM_FP, ARM_IP, 4), ctx); in build_prologue()
1282 emit(ARM_SUB_I(ARM_IP, ARM_SP, SCRATCH_SIZE), ctx); in build_prologue()
1290 emit_a32_mov_r(fplo, ARM_IP, ctx); in build_prologue()