Searched refs:rd_val (Results 1 – 3 of 3) sorted by relevance
/llvm-project/lldb/source/Plugins/Instruction/LoongArch/ |
H A D | EmulateInstructionLoongArch.cpp | 415 uint64_t rd_val = ReadRegisterUnsigned(eRegisterKindLLDB, rd, 0, &success); in EmulateBEQ64() local 418 if (rj_val == rd_val) { in EmulateBEQ64() 438 uint64_t rd_val = ReadRegisterUnsigned(eRegisterKindLLDB, rd, 0, &success); in EmulateBNE64() local 441 if (rj_val != rd_val) { in EmulateBNE64() 462 int64_t rd_val = in EmulateBLT64() local 466 if (rj_val < rd_val) { in EmulateBLT64() 487 int64_t rd_val = in EmulateBGE64() local 491 if (rj_val >= rd_val) { in EmulateBGE64() 511 uint64_t rd_val = ReadRegisterUnsigned(eRegisterKindLLDB, rd, 0, &success); in EmulateBLTU64() local 514 if (rj_val < rd_val) { in EmulateBLTU64() [all …]
|
/llvm-project/lldb/unittests/Instruction/RISCV/ |
H A D | TestRISCVEmulator.cpp | 218 bool has_rs2, RDComputer rd_val) { in TestInst() argument 242 CheckRD(tester, rd, rd_val(rs1_val, rs2 ? rs2_val : 0, old_pc)); in TestInst() 387 RDComputer rd_val; member 433 TestInst(this, *decode, i.has_rs2, i.rd_val); in TEST_F() 487 T rd_val; member 536 APFloat rd_val(apInt.bitsToFloat()); in TestF_D_CalInst() local 537 ASSERT_EQ(rd_val.convertToFloat(), rd_exp); in TestF_D_CalInst() 541 APFloat rd_val(apInt.bitsToDouble()); in TestF_D_CalInst() local 542 ASSERT_EQ(rd_val.convertToDouble(), rd_exp); in TestF_D_CalInst() 580 TestF_D_CalInst(this, *decode, i.rs1_val, i.rs2_val, i.rd_val); in TEST_F() [all …]
|
/llvm-project/lldb/unittests/Instruction/LoongArch/ |
H A D | TestLoongArchEmulator.cpp | 220 uint64_t rj_val, uint64_t rd_val) { in testBcondBranch() argument 225 tester->gpr.gpr[13] = rd_val; in testBcondBranch()
|