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

Declarations

tools/lldb/include/lldb/Utility/RegisterValue.h
  122   uint32_t GetAsUInt32(uint32_t fail_value = UINT32_MAX,

References

tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp
 1335     uint32_t r0_u32 = r0_value.GetAsUInt32();
tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.cpp
   40       m_gpr[i - dwarf_r0] = reg_value.GetAsUInt32();
tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
  241         arg.value = reg_val.GetAsUInt32(0, &success);
tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.cpp
  647         *(uint32_t *)dst = reg_value.GetAsUInt32();
tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp
 1238     gpr.r[reg - gpr_r0] = value.GetAsUInt32();
 1273     fpu.floats.s[reg] = value.GetAsUInt32();
 1277     fpu.fpscr = value.GetAsUInt32();
 1281     exc.exception = value.GetAsUInt32();
 1284     exc.fsr = value.GetAsUInt32();
 1287     exc.far = value.GetAsUInt32();
tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.cpp
  629     fpu.fpsr = value.GetAsUInt32();
  633     fpu.fpcr = value.GetAsUInt32();
  637     exc.exception = value.GetAsUInt32();
  640     exc.esr = value.GetAsUInt32();
tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.cpp
  741     (&gpr.eax)[reg - gpr_eax] = value.GetAsUInt32();
  761     fpu.ip = value.GetAsUInt32();
  769     fpu.dp = value.GetAsUInt32();
  777     fpu.mxcsr = value.GetAsUInt32();
  781     fpu.mxcsrmask = value.GetAsUInt32();
  813     exc.trapno = value.GetAsUInt32();
  817     exc.err = value.GetAsUInt32();
  821     exc.faultvaddr = value.GetAsUInt32();
tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.cpp
  821     fpu.ip = value.GetAsUInt32();
  829     fpu.dp = value.GetAsUInt32();
  837     fpu.mxcsr = value.GetAsUInt32();
  841     fpu.mxcsrmask = value.GetAsUInt32();
  877     exc.trapno = value.GetAsUInt32();
  881     exc.err = value.GetAsUInt32();
tools/lldb/unittests/Utility/RegisterValueTest.cpp
   20   EXPECT_EQ(42u, R8.GetAsUInt32());