| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ABI/X86/ |
| H A D | ABIMacOSX_i386.cpp | 292 thread.GetRegisterContext()->ReadRegisterAsUnsigned(eax_id, 0) & in GetReturnValueObjectImpl() 295 (thread.GetRegisterContext()->ReadRegisterAsUnsigned(edx_id, 0) & in GetReturnValueObjectImpl() 306 thread.GetRegisterContext()->ReadRegisterAsUnsigned(eax_id, 0) & in GetReturnValueObjectImpl() 310 thread.GetRegisterContext()->ReadRegisterAsUnsigned(eax_id, 0) & in GetReturnValueObjectImpl() 316 thread.GetRegisterContext()->ReadRegisterAsUnsigned(eax_id, 0) & in GetReturnValueObjectImpl() 320 thread.GetRegisterContext()->ReadRegisterAsUnsigned(eax_id, 0) & in GetReturnValueObjectImpl() 326 thread.GetRegisterContext()->ReadRegisterAsUnsigned(eax_id, 0) & in GetReturnValueObjectImpl() 330 thread.GetRegisterContext()->ReadRegisterAsUnsigned(eax_id, 0) & in GetReturnValueObjectImpl() 338 thread.GetRegisterContext()->ReadRegisterAsUnsigned(eax_id, 0) & in GetReturnValueObjectImpl()
|
| H A D | ABISysV_i386.cpp | 379 thread.GetRegisterContext()->ReadRegisterAsUnsigned(eax_id, 0) & in GetReturnValueObjectSimple() 399 thread.GetRegisterContext()->ReadRegisterAsUnsigned(eax_id, 0) & in GetReturnValueObjectSimple() 402 (thread.GetRegisterContext()->ReadRegisterAsUnsigned(edx_id, 0) & in GetReturnValueObjectSimple() 454 thread.GetRegisterContext()->ReadRegisterAsUnsigned(eax_id, 0) & in GetReturnValueObjectSimple() 499 thread.GetRegisterContext()->ReadRegisterAsUnsigned(eax_id, 0) & in GetReturnValueObjectSimple() 607 thread.GetRegisterContext()->ReadRegisterAsUnsigned(eax_id, 0) & in GetReturnValueObjectImpl()
|
| H A D | ABIWindows_x86_64.cpp | 213 scalar = thread.GetRegisterContext()->ReadRegisterAsUnsigned( in ReadIntegerArgument() 420 uint64_t raw_value = thread.GetRegisterContext()->ReadRegisterAsUnsigned( in GetReturnValueObjectSimple() 495 (uint64_t)thread.GetRegisterContext()->ReadRegisterAsUnsigned(rax_id, in GetReturnValueObjectSimple() 725 (uint64_t)thread.GetRegisterContext()->ReadRegisterAsUnsigned(rax_id, in GetReturnValueObjectImpl()
|
| H A D | ABISysV_x86_64.cpp | 197 scalar = thread.GetRegisterContext()->ReadRegisterAsUnsigned( in ReadIntegerArgument() 412 uint64_t raw_value = thread.GetRegisterContext()->ReadRegisterAsUnsigned( in GetReturnValueObjectSimple() 488 (uint64_t)thread.GetRegisterContext()->ReadRegisterAsUnsigned(rax_id, in GetReturnValueObjectSimple() 841 (uint64_t)thread.GetRegisterContext()->ReadRegisterAsUnsigned(rax_id, in GetReturnValueObjectImpl()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | NativeRegisterContext.cpp | 122 const uint64_t retval = ReadRegisterAsUnsigned(reg, fail_value); in GetPC() 144 return ReadRegisterAsUnsigned(reg, fail_value); in GetSP() 156 return ReadRegisterAsUnsigned(reg, fail_value); in GetFP() 168 return ReadRegisterAsUnsigned(reg, fail_value); in GetReturnAddress() 174 return ReadRegisterAsUnsigned(reg, fail_value); in GetFlags() 178 NativeRegisterContext::ReadRegisterAsUnsigned(uint32_t reg, in ReadRegisterAsUnsigned() function in NativeRegisterContext 181 return ReadRegisterAsUnsigned(GetRegisterInfoAtIndex(reg), fail_value); in ReadRegisterAsUnsigned() 186 NativeRegisterContext::ReadRegisterAsUnsigned(const RegisterInfo *reg_info, in ReadRegisterAsUnsigned() function in NativeRegisterContext
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ABI/Mips/ |
| H A D | ABISysV_mips.cpp | 830 reg_ctx->ReadRegisterAsUnsigned(r2_reg_info, 0) & UINT32_MAX); in GetReturnValueObjectImpl() 833 reg_ctx->ReadRegisterAsUnsigned(r2_reg_info, 0) & UINT32_MAX); in GetReturnValueObjectImpl() 838 reg_ctx->ReadRegisterAsUnsigned(r2_reg_info, 0) & UINT16_MAX); in GetReturnValueObjectImpl() 841 reg_ctx->ReadRegisterAsUnsigned(r2_reg_info, 0) & UINT16_MAX); in GetReturnValueObjectImpl() 846 reg_ctx->ReadRegisterAsUnsigned(r2_reg_info, 0) & UINT8_MAX); in GetReturnValueObjectImpl() 849 reg_ctx->ReadRegisterAsUnsigned(r2_reg_info, 0) & UINT8_MAX); in GetReturnValueObjectImpl() 854 thread.GetRegisterContext()->ReadRegisterAsUnsigned(r2_reg_info, 0) & in GetReturnValueObjectImpl() 860 uint64_t mem_address = reg_ctx->ReadRegisterAsUnsigned( in GetReturnValueObjectImpl() 868 uint64_t raw_value = reg_ctx->ReadRegisterAsUnsigned(r2_reg_info, 0); in GetReturnValueObjectImpl() 884 ((reg_ctx->ReadRegisterAsUnsigned(r3_reg_info, 0)) << 32) | in GetReturnValueObjectImpl() [all …]
|
| H A D | ABISysV_mips64.cpp | 774 uint64_t raw_value = reg_ctx->ReadRegisterAsUnsigned(r2_info, 0); in GetReturnValueObjectImpl() 817 uint64_t raw_value = reg_ctx->ReadRegisterAsUnsigned(r2_info, 0); in GetReturnValueObjectImpl() 831 result[1] = reg_ctx->ReadRegisterAsUnsigned(r3_info, 0); in GetReturnValueObjectImpl() 834 result[0] = reg_ctx->ReadRegisterAsUnsigned(r3_info, 0); in GetReturnValueObjectImpl() 1122 uint64_t mem_address = reg_ctx->ReadRegisterAsUnsigned( in GetReturnValueObjectImpl()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Target/ |
| H A D | RegisterContext.cpp | 124 uint64_t pc = ReadRegisterAsUnsigned(reg, fail_value); in GetPC() 181 return ReadRegisterAsUnsigned(reg, fail_value); in GetSP() 193 return ReadRegisterAsUnsigned(reg, fail_value); in GetFP() 205 return ReadRegisterAsUnsigned(reg, fail_value); in GetReturnAddress() 211 return ReadRegisterAsUnsigned(reg, fail_value); in GetFlags() 214 uint64_t RegisterContext::ReadRegisterAsUnsigned(uint32_t reg, in ReadRegisterAsUnsigned() function in RegisterContext 217 return ReadRegisterAsUnsigned(GetRegisterInfoAtIndex(reg), fail_value); in ReadRegisterAsUnsigned() 221 uint64_t RegisterContext::ReadRegisterAsUnsigned(const RegisterInfo *reg_info, in ReadRegisterAsUnsigned() function in RegisterContext
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ABI/ARM/ |
| H A D | ABISysV_arm.cpp | 1518 reg_ctx->ReadRegisterAsUnsigned(r0_reg_info, 0) & UINT32_MAX; in GetReturnValuePassedInMemory() 1593 reg_ctx->ReadRegisterAsUnsigned(r0_reg_info, 0) & UINT32_MAX); in GetReturnValueObjectImpl() 1596 reg_ctx->ReadRegisterAsUnsigned(r0_reg_info, 0) & UINT32_MAX); in GetReturnValueObjectImpl() 1601 reg_ctx->ReadRegisterAsUnsigned(r0_reg_info, 0) & UINT16_MAX); in GetReturnValueObjectImpl() 1604 reg_ctx->ReadRegisterAsUnsigned(r0_reg_info, 0) & UINT16_MAX); in GetReturnValueObjectImpl() 1609 reg_ctx->ReadRegisterAsUnsigned(r0_reg_info, 0) & UINT8_MAX); in GetReturnValueObjectImpl() 1612 reg_ctx->ReadRegisterAsUnsigned(r0_reg_info, 0) & UINT8_MAX); in GetReturnValueObjectImpl() 1633 reg_ctx->ReadRegisterAsUnsigned(reg_info, 0) & UINT32_MAX; in GetReturnValueObjectImpl() 1659 reg_ctx->ReadRegisterAsUnsigned(r0_reg_info, 0) & UINT32_MAX; in GetReturnValueObjectImpl() 1661 ((uint64_t)(reg_ctx->ReadRegisterAsUnsigned(r1_reg_info, 0) & in GetReturnValueObjectImpl() [all …]
|
| H A D | ABIMacOSX_arm.cpp | 1398 const uint32_t curr_cpsr = reg_ctx->ReadRegisterAsUnsigned(cpsr_reg_info, 0); in PrepareTrivialCall() 1634 raw_value = reg_ctx->ReadRegisterAsUnsigned(r0_reg_info, 0) & UINT32_MAX; in GetReturnValueObjectImpl() 1635 raw_value |= ((uint64_t)(reg_ctx->ReadRegisterAsUnsigned(r1_reg_info, 0) & in GetReturnValueObjectImpl() 1646 reg_ctx->ReadRegisterAsUnsigned(r0_reg_info, 0) & UINT32_MAX); in GetReturnValueObjectImpl() 1649 reg_ctx->ReadRegisterAsUnsigned(r0_reg_info, 0) & UINT32_MAX); in GetReturnValueObjectImpl() 1654 reg_ctx->ReadRegisterAsUnsigned(r0_reg_info, 0) & UINT16_MAX); in GetReturnValueObjectImpl() 1657 reg_ctx->ReadRegisterAsUnsigned(r0_reg_info, 0) & UINT16_MAX); in GetReturnValueObjectImpl() 1662 reg_ctx->ReadRegisterAsUnsigned(r0_reg_info, 0) & UINT8_MAX); in GetReturnValueObjectImpl() 1665 reg_ctx->ReadRegisterAsUnsigned(r0_reg_info, 0) & UINT8_MAX); in GetReturnValueObjectImpl() 1670 thread.GetRegisterContext()->ReadRegisterAsUnsigned(r0_reg_info, 0) & in GetReturnValueObjectImpl()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ABI/ARC/ |
| H A D | ABISysV_arc.cpp | 150 const auto reg_value = reg_ctx.ReadRegisterAsUnsigned(rf_build_reg, in IsRegisterFileReduced() 434 reg_ctx->ReadRegisterAsUnsigned(reg_info_r0, 0) & UINT32_MAX; in ReadRawValue() 437 raw_value |= (reg_ctx->ReadRegisterAsUnsigned( in ReadRawValue() 475 value.GetScalar() = reg_ctx->ReadRegisterAsUnsigned(reg_info_r0, 0); in GetReturnValueObjectSimple() 539 value.GetScalar() = reg_ctx->ReadRegisterAsUnsigned(reg_info_r0, 0); in GetReturnValueObjectImpl()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | RegisterContext.h | 194 uint64_t ReadRegisterAsUnsigned(uint32_t reg, uint64_t fail_value); 196 uint64_t ReadRegisterAsUnsigned(const RegisterInfo *reg_info,
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/common/ |
| H A D | NativeRegisterContext.h | 152 lldb::addr_t ReadRegisterAsUnsigned(uint32_t reg, lldb::addr_t fail_value); 154 lldb::addr_t ReadRegisterAsUnsigned(const RegisterInfo *reg_info,
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ABI/SystemZ/ |
| H A D | ABISysV_s390x.cpp | 289 scalar = thread.GetRegisterContext()->ReadRegisterAsUnsigned( in ReadIntegerArgument() 499 uint64_t raw_value = thread.GetRegisterContext()->ReadRegisterAsUnsigned( in GetReturnValueObjectSimple() 573 (uint64_t)thread.GetRegisterContext()->ReadRegisterAsUnsigned(r2_id, 0); in GetReturnValueObjectSimple() 609 (uint64_t)thread.GetRegisterContext()->ReadRegisterAsUnsigned(r2_id, 0); in GetReturnValueObjectImpl()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/ |
| H A D | ABISysV_ppc.cpp | 320 scalar = thread.GetRegisterContext()->ReadRegisterAsUnsigned( in ReadIntegerArgument() 533 uint64_t raw_value = thread.GetRegisterContext()->ReadRegisterAsUnsigned( in GetReturnValueObjectSimple() 605 (uint64_t)thread.GetRegisterContext()->ReadRegisterAsUnsigned(r3_id, 0); in GetReturnValueObjectSimple() 853 (uint64_t)thread.GetRegisterContext()->ReadRegisterAsUnsigned(r3_id, in GetReturnValueObjectImpl()
|
| H A D | ABISysV_ppc64.cpp | 158 reg_value = reg_ctx->ReadRegisterAsUnsigned(r2_reg_info, 0); in PrepareTrivialCall() 174 reg_value = reg_ctx->ReadRegisterAsUnsigned(sp_reg_info, 0); in PrepareTrivialCall() 207 scalar = thread.GetRegisterContext()->ReadRegisterAsUnsigned( in ReadIntegerArgument()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ABI/AArch64/ |
| H A D | ABISysV_arm64.cpp | 585 reg_ctx->ReadRegisterAsUnsigned(reg_info, LLDB_INVALID_ADDRESS); in LoadValueFromConsecutiveGPRRegisters() 637 thread.GetRegisterContext()->ReadRegisterAsUnsigned(x0_reg_info, in GetReturnValueObjectImpl() 806 lldb::addr_t mask_reg_val = reg_ctx_sp->ReadRegisterAsUnsigned( in ReadLinuxProcessAddressMask()
|
| H A D | ABIMacOSX_arm64.cpp | 617 reg_ctx->ReadRegisterAsUnsigned(reg_info, LLDB_INVALID_ADDRESS); in LoadValueFromConsecutiveGPRRegisters() 668 thread.GetRegisterContext()->ReadRegisterAsUnsigned(x0_reg_info, in GetReturnValueObjectImpl()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
| H A D | NativeProcessSoftwareSingleStep.cpp | 93 return regsiter_context.ReadRegisterAsUnsigned(flags_info, in ReadFlags()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/ |
| H A D | InstrumentationRuntimeMainThreadChecker.cpp | 104 uint64_t apiname_ptr = regctx_sp->ReadRegisterAsUnsigned(reginfo, 0); in RetrieveReportData()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteRegisterContext.cpp | 748 uint64_t vg_reg_value = ReadRegisterAsUnsigned(vg_reg_num, fail_value); in AArch64SVEReconfigure()
|