Lines Matching refs:rd

86 size_t asm_arm_mov_reg_i32(asm_arm_t *as, uint rd, int imm);
87 void asm_arm_mov_reg_i32_optimised(asm_arm_t *as, uint rd, int imm);
88 void asm_arm_mov_local_reg(asm_arm_t *as, int local_num, uint rd);
89 void asm_arm_mov_reg_local(asm_arm_t *as, uint rd, int local_num);
90 void asm_arm_setcc_reg(asm_arm_t *as, uint rd, uint cond);
93 void asm_arm_cmp_reg_i8(asm_arm_t *as, uint rd, int imm);
94 void asm_arm_cmp_reg_reg(asm_arm_t *as, uint rd, uint rn);
97 void asm_arm_add_reg_reg_reg(asm_arm_t *as, uint rd, uint rn, uint rm);
98 void asm_arm_sub_reg_reg_reg(asm_arm_t *as, uint rd, uint rn, uint rm);
99 void asm_arm_mul_reg_reg_reg(asm_arm_t *as, uint rd, uint rn, uint rm);
100 void asm_arm_and_reg_reg_reg(asm_arm_t *as, uint rd, uint rn, uint rm);
101 void asm_arm_eor_reg_reg_reg(asm_arm_t *as, uint rd, uint rn, uint rm);
102 void asm_arm_orr_reg_reg_reg(asm_arm_t *as, uint rd, uint rn, uint rm);
103 void asm_arm_mov_reg_local_addr(asm_arm_t *as, uint rd, int local_num);
105 void asm_arm_lsl_reg_reg(asm_arm_t *as, uint rd, uint rs);
106 void asm_arm_lsr_reg_reg(asm_arm_t *as, uint rd, uint rs);
107 void asm_arm_asr_reg_reg(asm_arm_t *as, uint rd, uint rs);
110 void asm_arm_ldr_reg_reg(asm_arm_t *as, uint rd, uint rn, uint byte_offset);
111 void asm_arm_ldrh_reg_reg(asm_arm_t *as, uint rd, uint rn);
112 void asm_arm_ldrb_reg_reg(asm_arm_t *as, uint rd, uint rn);
113 void asm_arm_str_reg_reg(asm_arm_t *as, uint rd, uint rm, uint byte_offset);
114 void asm_arm_strh_reg_reg(asm_arm_t *as, uint rd, uint rm);
115 void asm_arm_strb_reg_reg(asm_arm_t *as, uint rd, uint rm);
117 void asm_arm_str_reg_reg_reg(asm_arm_t *as, uint rd, uint rm, uint rn);
118 void asm_arm_strh_reg_reg_reg(asm_arm_t *as, uint rd, uint rm, uint rn);
119 void asm_arm_strb_reg_reg_reg(asm_arm_t *as, uint rd, uint rm, uint rn);