Home
last modified time | relevance | path

Searched refs:rax_value (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/lldb/examples/python/
H A Dscripted_step.py242 rax_value = frame_0.FindRegister("rax")
243 if rax_value.GetError().Success():
244 print("RAX on exit: ", rax_value.GetValue())
246 print("Couldn't get rax value:", rax_value.GetError().GetCString())
/llvm-project-15.0.7/lldb/source/Plugins/ABI/X86/
H A DABIWindows_x86_64.cpp653 RegisterValue rax_value; in GetReturnValueObjectImpl() local
654 reg_ctx_sp->ReadRegister(rax_info, rax_value); in GetReturnValueObjectImpl()
656 rax_value.GetData(rax_data); in GetReturnValueObjectImpl()
H A DABISysV_x86_64.cpp661 RegisterValue rax_value, rdx_value, xmm0_value, xmm1_value; in GetReturnValueObjectImpl() local
662 reg_ctx_sp->ReadRegister(rax_info, rax_value); in GetReturnValueObjectImpl()
669 rax_value.GetData(rax_data); in GetReturnValueObjectImpl()