Searched refs:si_h (Results 1 – 2 of 2) sorted by relevance
/openbmc/linux/arch/loongarch/kernel/ |
H A D | alternative.c | 65 unsigned int si, si_l, si_h; in recompute_jump() local 73 si_h = src->reg0i26_format.immediate_h; in recompute_jump() 77 jump_addr = cur_pc + sign_extend64((si_h << 16 | si_l) << 2, 27); in recompute_jump() 89 si_h = src->reg1i21_format.immediate_h; in recompute_jump() 96 jump_addr = cur_pc + sign_extend64((si_h << 16 | si_l) << 2, 22); in recompute_jump()
|
H A D | kgdb.c | 297 unsigned int si, si_l, si_h, rd, rj, cj; in get_step_address() local 308 si_h = ip->reg0i26_format.immediate_h; in get_step_address() 312 *next_addr = pc + sign_extend64((si_h << 16 | si_l) << 2, 27); in get_step_address() 315 *next_addr = pc + sign_extend64((si_h << 16 | si_l) << 2, 27); in get_step_address() 323 si_h = ip->reg1i21_format.immediate_h; in get_step_address() 328 *next_addr = pc + sign_extend64((si_h << 16 | si_l) << 2, 22); in get_step_address() 332 *next_addr = pc + sign_extend64((si_h << 16 | si_l) << 2, 22); in get_step_address() 336 *next_addr = pc + sign_extend64((si_h << 16 | si_l) << 2, 22); in get_step_address() 338 *next_addr = pc + sign_extend64((si_h << 16 | si_l) << 2, 22); in get_step_address()
|