Lines Matching refs:rj
130 int32_t rj = loongarch_decode_imm ("5:5", insn, 0);
136 && rd == sp && rj == sp && si12 < 0)
141 && rd == fp && rj == sp && si12 > 0)
146 && rj == sp)
151 && rj == sp)
160 else if ((insn & 0xffc00000) == 0x03800000) /* ori rd,rj,si12 */
162 if (reg_used[rj])
164 reg_value[rd] = reg_value[rj] | (si12 & 0xfff);
169 && rd == sp && rj == sp)
234 if ((insn & 0xfc000000) == 0x4c000000) /* jirl rd, rj, offs16 */
236 LONGEST rj = regcache_raw_get_signed (regcache,
238 next_pc = rj + loongarch_decode_imm ("10:16<<2", insn, 1);
245 else if ((insn & 0xfc000000) == 0x58000000) /* beq rj, rd, offs16 */
247 LONGEST rj = regcache_raw_get_signed (regcache,
251 if (rj == rd)
254 else if ((insn & 0xfc000000) == 0x5c000000) /* bne rj, rd, offs16 */
256 LONGEST rj = regcache_raw_get_signed (regcache,
260 if (rj != rd)
263 else if ((insn & 0xfc000000) == 0x60000000) /* blt rj, rd, offs16 */
265 LONGEST rj = regcache_raw_get_signed (regcache,
269 if (rj < rd)
272 else if ((insn & 0xfc000000) == 0x64000000) /* bge rj, rd, offs16 */
274 LONGEST rj = regcache_raw_get_signed (regcache,
278 if (rj >= rd)
281 else if ((insn & 0xfc000000) == 0x68000000) /* bltu rj, rd, offs16 */
283 ULONGEST rj = regcache_raw_get_unsigned (regcache,
287 if (rj < rd)
290 else if ((insn & 0xfc000000) == 0x6c000000) /* bgeu rj, rd, offs16 */
292 ULONGEST rj = regcache_raw_get_unsigned (regcache,
296 if (rj >= rd)
299 else if ((insn & 0xfc000000) == 0x40000000) /* beqz rj, offs21 */
301 LONGEST rj = regcache_raw_get_signed (regcache,
303 if (rj == 0)
306 else if ((insn & 0xfc000000) == 0x44000000) /* bnez rj, offs21 */
308 LONGEST rj = regcache_raw_get_signed (regcache,
310 if (rj != 0)