reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Utility/RegisterValue.h
  125   uint64_t GetAsUInt64(uint64_t fail_value = UINT64_MAX,

References

tools/lldb/source/Commands/CommandObjectRegister.cpp
   93             addr_t reg_addr = reg_value.GetAsUInt64(LLDB_INVALID_ADDRESS);
tools/lldb/source/Core/EmulateInstruction.cpp
   98     return reg_value.GetAsUInt64(fail_value, success_ptr);
  109     return reg_value.GetAsUInt64(fail_value, success_ptr);
tools/lldb/source/Host/common/NativeRegisterContext.cpp
  197                 __FUNCTION__, value.GetAsUInt64());
  198       return value.GetAsUInt64();
tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.cpp
   52       uint64_t value = reg_value.GetAsUInt64();
  251                                                 reg_value.GetAsUInt64());
tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
  197         arg.value = reg_val.GetAsUInt64(0, &success);
  280         arg.value = reg_val.GetAsUInt64(0, &success);
  320         arg.value = reg_val.GetAsUInt64(0, &success);
  364         arg.value = reg_val.GetAsUInt64(0, &success);
tools/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
  979     next_pc = pc_it->second.GetAsUInt64();
  982       next_flags = flags_it->second.GetAsUInt64();
tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux.cpp
  156   void *buf = reinterpret_cast<void *>(value.GetAsUInt64());
tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.cpp
  448         reg_value.SetUInt64(reg_value.GetAsUInt64() >> 8);
  650         *(uint64_t *)dst = reg_value.GetAsUInt64();
 1024   uint64_t status_bits = reg_value.GetAsUInt64();
 1060   uint64_t control_bits = reg_value.GetAsUInt64();
 1112   uint64_t control_bits = reg_value.GetAsUInt64() & ~bit_mask;
 1142   uint64_t status_bits = reg_value.GetAsUInt64() & ~bit_mask;
 1154   uint64_t control_bits = reg_value.GetAsUInt64() & ~bit_mask;
 1167   uint64_t status_bits = reg_value.GetAsUInt64() & ~bit_mask;
 1177   uint64_t control_bits = reg_value.GetAsUInt64() & ~bit_mask;
 1208   return reg_value.GetAsUInt64();
tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.cpp
  589     gpr.x[reg - gpr_x0] = value.GetAsUInt64();
  643     exc.far = value.GetAsUInt64();
tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.cpp
  801     (&gpr.rax)[reg - gpr_rax] = value.GetAsUInt64();
  885     exc.faultvaddr = value.GetAsUInt64();
tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
 1601         old_caller_pc_value = reg_value.GetAsUInt64();
 1656           new_caller_pc_value = reg_value.GetAsUInt64();
 1809           address = reg_value.GetAsUInt64();
 1968       value = reg_value.GetAsUInt64();
 1992     value = reg_value.GetAsUInt64();
tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp
  626           cfa_reg_num, m_initial_sp - reg_value.GetAsUInt64());
  639           cfa_reg_num, m_initial_sp - reg_value.GetAsUInt64());
  650           m_initial_sp - reg_value.GetAsUInt64());
tools/lldb/source/Target/RegisterContext.cpp
  212       return value.GetAsUInt64();
tools/lldb/source/Target/StackFrame.cpp
 1294     if (reg_value.GetAsUInt64() == value) {
 1616         Address return_value_address(return_value.GetAsUInt64());
tools/lldb/unittests/Utility/RegisterValueTest.cpp
   21   EXPECT_EQ(42u, R8.GetAsUInt64());