Lines Matching refs:lower
208 uint32_t *upper, uint32_t *lower) in thm_jumps_decode() argument
214 *lower = MEM2THM16OPCODE(*(uint16_t *)(loc + 2)); in thm_jumps_decode()
218 j_one = (*lower >> BIT_THM_BL_J1) & 1; in thm_jumps_decode()
219 j_two = (*lower >> BIT_THM_BL_J2) & 1; in thm_jumps_decode()
224 ((*lower & MASK_THM_BL_IMM11) << 1); in thm_jumps_decode()
240 uint32_t *upper, uint32_t *lower) in thm_jumps_reloc() argument
249 *lower = (uint16_t)((*lower & (MASK_THM_BL_10|MASK_THM_BL_1)) | in thm_jumps_reloc()
254 *(uint16_t *)(loc + 2) = OPCODE2THM16MEM(*lower); in thm_jumps_reloc()
262 uint32_t upper, lower; in thm_jumps_handler() local
264 ret = thm_jumps_decode(reloc_type, loc, sym_base_addr, sym_name, &offset, &upper, &lower); in thm_jumps_handler()
266 thm_jumps_reloc(loc, &offset, &upper, &lower); in thm_jumps_handler()
276 uint32_t upper, lower; in thm_movs_handler() local
279 lower = MEM2THM16OPCODE(*(uint16_t *)(loc + 2)); in thm_movs_handler()
284 ((lower & MASK_THM_MOV_IMM3) >> SHIFT_THM_MOV_IMM3) | (lower & MASK_THM_MOV_IMM8); in thm_movs_handler()
298 lower = (uint16_t)((lower & (MASK_THM_MOV_0|MASK_THM_MOV_RD)) | in thm_movs_handler()
302 *(uint16_t *)(loc + 2) = OPCODE2THM16MEM(lower); in thm_movs_handler()