/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
H A D | NativeRegisterContextDBReg_x86.cpp | 105 is_hit = dr6.GetAsUInt64() & GetStatusBit(wp_index); in IsWatchpointHit() 138 is_vacant = !(dr7.GetAsUInt64() & GetEnableBit(wp_index)); in IsWatchpointVacant() 176 uint64_t control_bits = dr7.GetAsUInt64() & ~GetWatchControlBitmask(wp_index); in SetHardwareWatchpointWithIndex() 186 if (drN.GetAsUInt64() != addr || in SetHardwareWatchpointWithIndex() 187 (dr7.GetAsUInt64() & GetWatchControlBitmask(wp_index)) != in SetHardwareWatchpointWithIndex() 215 return WriteRegister(GetDR(7), RegisterValue(dr7.GetAsUInt64() & in ClearHardwareWatchpoint() 230 GetDR(6), RegisterValue(dr6.GetAsUInt64() & ~GetStatusBit(wp_index))); in ClearWatchpointHit() 240 RegisterValue(dr7.GetAsUInt64() & ~watchpoint_all_control_bit_mask)); in ClearAllHardwareWatchpoints() 270 return drN.GetAsUInt64(); in GetWatchpointAddress()
|
H A D | NativeProcessSoftwareSingleStep.cpp | 188 next_pc = pc_it->second.GetAsUInt64(); in SetupSoftwareSingleStepping() 191 next_flags = flags_it->second.GetAsUInt64(); in SetupSoftwareSingleStepping()
|
H A D | RegisterContextDarwin_arm64.cpp | 581 gpr.x[reg - gpr_x0] = value.GetAsUInt64(); in WriteRegister() 635 exc.far = value.GetAsUInt64(); in WriteRegister()
|
H A D | RegisterContextDarwin_x86_64.cpp | 795 (&gpr.rax)[reg - gpr_rax] = value.GetAsUInt64(); in WriteRegister() 879 exc.faultvaddr = value.GetAsUInt64(); in WriteRegister()
|
H A D | StopInfoMachException.cpp | 126 uint64_t bad_address = X16Val.GetAsUInt64(); in DeterminePtrauthFailure()
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | OptionValue.cpp | 249 OptionValueUInt64 *OptionValue::GetAsUInt64() { in GetAsUUID() 255 const OptionValueUInt64 *OptionValue::GetAsUInt64() const { in GetBooleanValue() 433 if (const OptionValueUInt64 *option_value = GetAsUInt64()) 440 if (OptionValueUInt64 *option_value = GetAsUInt64()) { in GetBuiltinTypeAsCString() 230 OptionValueUInt64 *OptionValue::GetAsUInt64() { GetAsUInt64() function in OptionValue 236 const OptionValueUInt64 *OptionValue::GetAsUInt64() const { GetAsUInt64() function in OptionValue
|
H A D | OptionArgParser.cpp | 292 register_value = reg_val.GetAsUInt64(0, &success); in DoToAddress()
|
H A D | OptionValueProperties.cpp | 277 return value->GetAsUInt64(); in GetPropertyAtIndexAsOptionValueUInt64()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/InstEmulation/ |
H A D | UnwindAssemblyInstEmulation.cpp | 632 cfa_reg_num, m_initial_sp - sp_reg_val.GetAsUInt64()); in WriteRegister() 663 cfa_reg_num, m_initial_sp - reg_value.GetAsUInt64()); in WriteRegister() 676 cfa_reg_num, m_initial_sp - reg_value.GetAsUInt64()); in WriteRegister() 687 m_initial_sp - reg_value.GetAsUInt64()); in WriteRegister()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | OptionValue.h | 242 OptionValueUInt64 *GetAsUInt64(); 243 const OptionValueUInt64 *GetAsUInt64() const;
|
/freebsd/contrib/llvm-project/lldb/source/Host/common/ |
H A D | NativeRegisterContext.cpp | 205 value.GetAsUInt64()); in ReadRegisterAsUnsigned() 206 return value.GetAsUInt64(); in ReadRegisterAsUnsigned()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | DumpRegisterValue.cpp | 138 dump_type_value(fields_type, reg_val.GetAsUInt64(), exe_scope, reg_info, in DumpRegisterValue()
|
H A D | EmulateInstruction.cpp | 107 return reg_value.GetAsUInt64(fail_value, success_ptr); in ReadRegisterUnsigned() 123 return reg_value->GetAsUInt64(fail_value, success_ptr); in ReadRegisterUnsigned()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | RegisterContextUnwind.cpp | 1759 old_caller_pc_value = reg_value.GetAsUInt64(); in TryFallbackUnwindPlan() 1819 new_caller_pc_value = reg_value.GetAsUInt64(); in TryFallbackUnwindPlan() 1979 address = reg_value.GetAsUInt64(); in ReadFrameAddress() 2162 value = reg_value.GetAsUInt64(); in ReadGPRValue() 2188 value = reg_value.GetAsUInt64(); in ReadGPRValue() 2238 addr_t reg_value = value.GetAsUInt64(LLDB_INVALID_ADDRESS); in ReadRegister()
|
H A D | RegisterContext.cpp | 206 return value.GetAsUInt64(); in WriteRegisterFromUnsigned()
|
H A D | StackFrame.cpp | 1277 if (reg_value.GetAsUInt64() == value) { in GetBaseExplainingValue() 1597 Address return_value_address(return_value.GetAsUInt64()); in DoGuessValueAt()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | RegisterValue.h | 136 uint64_t GetAsUInt64(uint64_t fail_value = UINT64_MAX,
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectRegister.cpp | 95 addr_t reg_addr = reg_value.GetAsUInt64(LLDB_INVALID_ADDRESS); in DumpRegister()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/ |
H A D | EmulationStateARM.cpp | 214 reg_value.GetAsUInt64()); in WritePseudoRegister()
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | RegisterValue.cpp | 537 uint64_t RegisterValue::GetAsUInt64(uint64_t fail_value, in GetAsUInt64() function in RegisterValue
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/ |
H A D | NativeRegisterContextNetBSD_x86_64.cpp | 591 if ((dr7.GetAsUInt64() & 0xFF) == 0) in CopyHardwareWatchpointsFrom()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ |
H A D | NativeRegisterContextFreeBSD_x86_64.cpp | 601 if ((dr7.GetAsUInt64() & 0xFF) == 0) in CopyHardwareWatchpointsFrom()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/ |
H A D | EmulateInstructionRISCV.cpp | 137 ? std::optional<uint64_t>(value.GetAsUInt64()) in Read() 162 uint64_t bits = value.GetAsUInt64(); in ReadAPFloat()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Minidump/ |
H A D | MinidumpFileBuilder.cpp | 428 return reg_value.GetAsUInt64(); in read_register_u64_raw()
|