Home
last modified time | relevance | path

Searched refs:ReadRegister (Results 1 – 25 of 102) sorted by relevance

12345

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DNativeRegisterContextDBReg_x86.cpp101 Status error = ReadRegister(GetDR(6), dr6); in IsWatchpointHit()
134 Status error = ReadRegister(GetDR(7), dr7); in IsWatchpointVacant()
169 error = ReadRegister(GetDR(7), dr7); in SetHardwareWatchpointWithIndex()
172 error = ReadRegister(GetDR(wp_index), drN); in SetHardwareWatchpointWithIndex()
211 Status error = ReadRegister(GetDR(7), dr7); in ClearHardwareWatchpoint()
225 Status error = ReadRegister(GetDR(6), dr6); in ClearWatchpointHit()
235 Status error = ReadRegister(GetDR(7), dr7); in ClearAllHardwareWatchpoints()
268 if (ReadRegister(GetDR(wp_index), drN).Fail()) in GetWatchpointAddress()
H A DRegisterContextThreadMemory.cpp93 bool RegisterContextThreadMemory::ReadRegister(const RegisterInfo *reg_info, in ReadRegister() function in RegisterContextThreadMemory
97 return m_reg_ctx_sp->ReadRegister(reg_info, reg_value); in ReadRegister()
H A DRegisterContextDummy.h40 bool ReadRegister(const lldb_private::RegisterInfo *reg_info,
/freebsd/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/InstEmulation/
H A DUnwindAssemblyInstEmulation.h72 m_inst_emulator_up->SetCallbacks(ReadMemory, WriteMemory, ReadRegister, in UnwindAssemblyInstEmulation()
87 static bool ReadRegister(lldb_private::EmulateInstruction *instruction,
109 bool ReadRegister(lldb_private::EmulateInstruction *instruction,
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DEmulateInstruction.cpp77 EmulateInstruction::ReadRegister(const RegisterInfo &reg_info) { in ReadRegister() function in EmulateInstruction
88 bool EmulateInstruction::ReadRegister(lldb::RegisterKind reg_kind, in ReadRegister() function in EmulateInstruction
95 std::optional<RegisterValue> value = ReadRegister(*reg_info); in ReadRegister()
106 if (ReadRegister(reg_kind, reg_num, reg_value)) in ReadRegisterUnsigned()
116 std::optional<RegisterValue> reg_value = ReadRegister(reg_info); in ReadRegisterUnsigned()
300 return frame->GetRegisterContext()->ReadRegister(reg_info, reg_value); in ReadRegisterFrame()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/AArch64/
H A DABIMacOSX_arm64.cpp201 if (reg_ctx->ReadRegister(reg_info, reg_value)) { in GetArgumentValues()
526 if (!reg_ctx->ReadRegister(reg_info, reg_value)) in LoadValueFromConsecutiveGPRRegisters()
567 if (!reg_ctx->ReadRegister(reg_info, reg_value)) in LoadValueFromConsecutiveGPRRegisters()
679 if (reg_ctx->ReadRegister(x0_reg_info, x0_reg_value) && in GetReturnValueObjectImpl()
680 reg_ctx->ReadRegister(x1_reg_info, x1_reg_value)) { in GetReturnValueObjectImpl()
743 if (reg_ctx->ReadRegister(v0_reg_info, v0_value)) { in GetReturnValueObjectImpl()
777 if (reg_ctx->ReadRegister(v0_info, reg_value)) { in GetReturnValueObjectImpl()
H A DABISysV_arm64.cpp172 if (reg_ctx->ReadRegister(reg_info, reg_value)) { in GetArgumentValues()
501 if (!reg_ctx->ReadRegister(reg_info, reg_value)) in LoadValueFromConsecutiveGPRRegisters()
538 if (!reg_ctx->ReadRegister(reg_info, reg_value)) in LoadValueFromConsecutiveGPRRegisters()
651 if (reg_ctx->ReadRegister(x0_reg_info, x0_reg_value) && in GetReturnValueObjectImpl()
652 reg_ctx->ReadRegister(x1_reg_info, x1_reg_value)) { in GetReturnValueObjectImpl()
715 if (reg_ctx->ReadRegister(v0_reg_info, v0_value)) { in GetReturnValueObjectImpl()
747 if (reg_ctx->ReadRegister(v0_info, reg_value)) { in GetReturnValueObjectImpl()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/Mips/
H A DABISysV_mips64.cpp851 reg_ctx->ReadRegister(f0_info, f0_value); in GetReturnValueObjectImpl()
867 reg_ctx->ReadRegister(f2_info, f2_value); in GetReturnValueObjectImpl()
957 reg_ctx->ReadRegister(f0_info, f0_value); in GetReturnValueObjectImpl()
958 reg_ctx->ReadRegister(f2_info, f2_value); in GetReturnValueObjectImpl()
983 reg_ctx->ReadRegister(f1_info, f1_value); in GetReturnValueObjectImpl()
989 reg_ctx->ReadRegister(f1_info, f1_value); in GetReturnValueObjectImpl()
1094 reg_ctx->ReadRegister(r2_info, r2_value); in GetReturnValueObjectImpl()
1104 reg_ctx->ReadRegister(r3_info, r3_value); in GetReturnValueObjectImpl()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/X86/
H A DABISysV_x86_64.cpp463 if (reg_ctx->ReadRegister(xmm0_info, xmm0_value)) { in GetReturnValueObjectSimple()
512 if (reg_ctx->ReadRegister(altivec_reg, reg_value)) { in GetReturnValueObjectSimple()
538 if (reg_ctx->ReadRegister(altivec_reg, reg_value) && in GetReturnValueObjectSimple()
539 reg_ctx->ReadRegister(altivec_reg2, reg_value2)) { in GetReturnValueObjectSimple()
663 reg_ctx_sp->ReadRegister(rax_info, rax_value); in GetReturnValueObjectImpl()
664 reg_ctx_sp->ReadRegister(rdx_info, rdx_value); in GetReturnValueObjectImpl()
665 reg_ctx_sp->ReadRegister(xmm0_info, xmm0_value); in GetReturnValueObjectImpl()
666 reg_ctx_sp->ReadRegister(xmm1_info, xmm1_value); in GetReturnValueObjectImpl()
H A DABISysV_i386.cpp468 if (reg_ctx->ReadRegister(st0_info, st0_value)) { in GetReturnValueObjectSimple()
530 if (reg_ctx->ReadRegister(vec_reg, reg_value)) { in GetReturnValueObjectSimple()
556 if (reg_ctx->ReadRegister(vec_reg, reg_value) && in GetReturnValueObjectSimple()
557 reg_ctx->ReadRegister(vec_reg2, reg_value2)) { in GetReturnValueObjectSimple()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSDKernel/
H A DRegisterContextFreeBSDKernel_arm64.h22 bool ReadRegister(const lldb_private::RegisterInfo *reg_info,
H A DRegisterContextFreeBSDKernel_i386.h22 bool ReadRegister(const lldb_private::RegisterInfo *reg_info,
H A DRegisterContextFreeBSDKernel_x86_64.h22 bool ReadRegister(const lldb_private::RegisterInfo *reg_info,
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextPOSIXCore_arm.h27 bool ReadRegister(const lldb_private::RegisterInfo *reg_info,
H A DRegisterContextPOSIXCore_ppc64le.h24 bool ReadRegister(const lldb_private::RegisterInfo *reg_info,
H A DRegisterContextPOSIXCore_x86_64.h23 bool ReadRegister(const lldb_private::RegisterInfo *reg_info,
H A DRegisterContextPOSIXCore_mips64.h27 bool ReadRegister(const lldb_private::RegisterInfo *reg_info,
H A DRegisterContextPOSIXCore_s390x.h26 bool ReadRegister(const lldb_private::RegisterInfo *reg_info,
H A DRegisterContextPOSIXCore_riscv64.h31 bool ReadRegister(const lldb_private::RegisterInfo *reg_info,
H A DRegisterContextPOSIXCore_powerpc.h26 bool ReadRegister(const lldb_private::RegisterInfo *reg_info,
H A DRegisterContextPOSIXCore_arm.cpp44 bool RegisterContextCorePOSIX_arm::ReadRegister(const RegisterInfo *reg_info, in ReadRegister() function in RegisterContextCorePOSIX_arm
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeRegisterContextFreeBSD_arm.h41 Status ReadRegister(const RegisterInfo *reg_info,
H A DNativeRegisterContextFreeBSD_powerpc.h42 Status ReadRegister(const RegisterInfo *reg_info,
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DRegisterContext.cpp205 if (ReadRegister(reg_info, value)) in WriteRegisterFromUnsigned()
252 if (context->ReadRegister(reg_info, reg_value)) { in CopyFromRegisterContext()
254 } else if (frame_zero_context->ReadRegister(reg_info, reg_value)) { in CopyFromRegisterContext()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DRegisterContextMinidump_ARM64.h50 bool ReadRegister(const RegisterInfo *reg_info,

12345