Lines Matching refs:ra
240 uint32_t ra = Bits32(opcode, 20, 16); in EmulateLD() local
247 if (ra != gpr_r1_ppc64le || rt != gpr_r1_ppc64le || ids != 0) in EmulateLD()
251 LLDB_LOG(log, "EmulateLD: {0:X+8}: ld r{1}, {2}(r{3})", m_addr, rt, ids, ra); in EmulateLD()
269 uint32_t ra = Bits32(opcode, 20, 16); in EmulateSTD() local
274 if (ra != gpr_r1_ppc64le) in EmulateSTD()
289 u ? "u" : "", rs, ids, ra); in EmulateSTD()
307 if (!GetRegisterInfo(eRegisterKindLLDB, ra, ra_info)) in EmulateSTD()
315 uint64_t ra_val = ReadRegisterUnsigned(eRegisterKindLLDB, ra, 0, &success); in EmulateSTD()
327 WriteRegisterUnsigned(ctx, eRegisterKindLLDB, ra, addr); in EmulateSTD()
336 uint32_t ra = Bits32(opcode, 20, 16); in EmulateOR() local
341 (ra != gpr_r30_ppc64le && ra != gpr_r31_ppc64le) || rb != gpr_r1_ppc64le) in EmulateOR()
345 LLDB_LOG(log, "EmulateOR: {0:X+8}: mr r{1}, r{2}", m_addr, ra, rb); in EmulateOR()
349 if (!GetRegisterInfo(eRegisterKindLLDB, ra, ra_info)) in EmulateOR()
361 WriteRegisterUnsigned(ctx, eRegisterKindLLDB, ra, rb_val); in EmulateOR()
362 m_fp = ra; in EmulateOR()
369 uint32_t ra = Bits32(opcode, 20, 16); in EmulateADDI() local
375 if (rt != gpr_r1_ppc64le || ra != gpr_r1_ppc64le) in EmulateADDI()