Home
last modified time | relevance | path

Searched refs:GetArchitecture (Results 1 – 25 of 194) sorted by relevance

12345678

/freebsd-14-stable/contrib/llvm-project/lldb/source/Host/netbsd/
HDHostNetBSD.cpp119 process_info.GetArchitecture() = in GetNetBSDProcessCPUType()
120 HostInfo::GetArchitecture(HostInfo::eArchKind32); in GetNetBSDProcessCPUType()
123 process_info.GetArchitecture() = in GetNetBSDProcessCPUType()
124 HostInfo::GetArchitecture(HostInfo::eArchKind64); in GetNetBSDProcessCPUType()
132 process_info.GetArchitecture().Clear(); in GetNetBSDProcessCPUType()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/Platform/QemuUser/
HDPlatformQemuUser.cpp43 llvm::StringRef GetArchitecture() { in GetArchitecture() function in __anon2361c5ae0111::PluginProperties
109 llvm::Triple triple = HostInfo::GetArchitecture().GetTriple(); in GetSupportedArchitectures()
111 triple.setArchName(GetGlobalProperties().GetArchitecture()); in GetSupportedArchitectures()
170 llvm::StringRef arch = GetGlobalProperties().GetArchitecture(); in DebugProcess()
174 arch = target.GetArchitecture().GetTriple().getArchName(); in DebugProcess()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Target/
HDProcessTrace.cpp106 ArchSpec ProcessTrace::GetArchitecture() { in GetArchitecture() function in ProcessTrace
107 return GetTarget().GetArchitecture(); in GetArchitecture()
113 info.SetArchitecture(GetArchitecture()); in GetProcessInfo()
HDTargetList.cpp149 matching_module_spec.GetArchitecture())) { in CreateTargetInternal()
153 update_platform_arch(matching_module_spec.GetArchitecture()); in CreateTargetInternal()
159 matching_module_spec.GetArchitecture().DumpTriple( in CreateTargetInternal()
171 platform_arch = matching_module_spec.GetArchitecture(); in CreateTargetInternal()
176 module_spec.GetArchitecture() = arch; in CreateTargetInternal()
179 update_platform_arch(matching_module_spec.GetArchitecture()); in CreateTargetInternal()
186 archs.push_back(spec.GetArchitecture()); in CreateTargetInternal()
392 exe_arch_ptr->IsCompatibleMatch(exe_module->GetArchitecture()); in FindTargetWithExecutableAndArchitecture()
HDThreadPlanStepInstruction.cpp106 GetTarget().GetArchitecture().GetMaximumOpcodeByteSize(); in IsPlanStale()
189 GetTarget().GetArchitecture().GetAddressByteSize()); in ShouldStop()
193 GetTarget().GetArchitecture().GetAddressByteSize()); in ShouldStop()
/freebsd-14-stable/contrib/llvm-project/lldb/include/lldb/Core/
HDModuleSpec.h89 ArchSpec &GetArchitecture() { return m_arch; } in GetArchitecture() function
91 const ArchSpec &GetArchitecture() const { return m_arch; } in GetArchitecture() function
249 if (!GetArchitecture().IsExactMatch( in Matches()
250 match_module_spec.GetArchitecture())) in Matches()
253 if (!GetArchitecture().IsCompatibleMatch( in Matches()
254 match_module_spec.GetArchitecture())) in Matches()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Symbol/
HDFuncUnwinders.cpp255 if (target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_32_i386 && in GetEHFrameAugmentedUnwindPlan()
256 target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_64_x86_64 && in GetEHFrameAugmentedUnwindPlan()
257 target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_64_x86_64h) { in GetEHFrameAugmentedUnwindPlan()
296 if (target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_32_i386 && in GetDebugFrameAugmentedUnwindPlan()
297 target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_64_x86_64 && in GetDebugFrameAugmentedUnwindPlan()
298 target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_64_x86_64h) { in GetDebugFrameAugmentedUnwindPlan()
523 if (ArchSpec arch = m_unwind_table.GetArchitecture()) { in GetUnwindAssemblyProfiler()
524 arch.MergeFrom(target.GetArchitecture()); in GetUnwindAssemblyProfiler()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Host/common/
HDProcessLaunchInfo.cpp248 const llvm::Triple &triple = GetArchitecture().GetTriple(); in ConvertArgumentsForLaunchingInShell()
293 if (GetArchitecture().IsValid() && // Valid architecture in ConvertArgumentsForLaunchingInShell()
294 GetArchitecture().GetTriple().getVendor() == in ConvertArgumentsForLaunchingInShell()
296 GetArchitecture().GetCore() != in ConvertArgumentsForLaunchingInShell()
300 GetArchitecture().GetArchitectureName()); in ConvertArgumentsForLaunchingInShell()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Core/
HDValue.cpp371 data.SetByteOrder(target->GetArchitecture().GetByteOrder()); in GetValueAsData()
373 target->GetArchitecture().GetAddressByteSize()); in GetValueAsData()
384 process->GetTarget().GetArchitecture().GetByteOrder()); in GetValueAsData()
386 process->GetTarget().GetArchitecture().GetAddressByteSize()); in GetValueAsData()
431 exe_ctx->GetTargetRef().GetArchitecture().GetByteOrder()); in GetValueAsData()
433 .GetArchitecture() in GetValueAsData()
487 data.SetByteOrder(target->GetArchitecture().GetByteOrder()); in GetValueAsData()
488 data.SetAddressByteSize(target->GetArchitecture().GetAddressByteSize()); in GetValueAsData()
HDAddress.cpp89 byte_order = target_sp->GetArchitecture().GetByteOrder(); in GetByteOrderAndAddressSize()
90 addr_size = target_sp->GetArchitecture().GetAddressByteSize(); in GetByteOrderAndAddressSize()
96 byte_order = module_sp->GetArchitecture().GetByteOrder(); in GetByteOrderAndAddressSize()
97 addr_size = module_sp->GetArchitecture().GetAddressByteSize(); in GetByteOrderAndAddressSize()
424 addr_size = target->GetArchitecture().GetAddressByteSize(); in Dump()
480 target->GetArchitecture().GetMachine(); in Dump()
504 pointer_size = target->GetArchitecture().GetAddressByteSize(); in Dump()
506 pointer_size = module_sp->GetArchitecture().GetAddressByteSize(); in Dump()
740 ABI::FindPlugin(ProcessSP(), module_sp->GetArchitecture()); in Dump()
HDDynamicLoader.cpp84 executable->GetArchitecture()); in GetTargetExecutable()
155 ModuleSpec module_spec(file, target.GetArchitecture()); in FindModuleViaTarget()
281 if (!target.GetArchitecture().IsValid()) in LoadBinaryWithUUIDAndAddress()
282 target.SetArchitecture(module_sp->GetArchitecture()); in LoadBinaryWithUUIDAndAddress()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
HDProcessElfCore.cpp86 ModuleSpec core_module_spec(m_core_file, target_sp->GetArchitecture()); in CanDebug()
221 ArchSpec arch(m_core_module_sp->GetArchitecture()); in DoLoadCore()
223 ArchSpec target_arch = GetTarget().GetArchitecture(); in DoLoadCore()
224 ArchSpec core_arch(m_core_module_sp->GetArchitecture()); in DoLoadCore()
228 SetUnixSignals(UnixSignals::Create(GetArchitecture())); in DoLoadCore()
263 exe_module_spec.GetArchitecture() = arch; in DoLoadCore()
604 ArchSpec arch = GetArchitecture(); in parseFreeBSDNotes()
712 switch (GetArchitecture().GetMachine()) { in parseNetBSDNotes()
885 const ArchSpec &arch = GetArchitecture(); in parseLinuxNotes()
980 switch (GetArchitecture().GetTriple().getOS()) { in ParseThreadContextsFromNoteSegment()
[all …]
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
HDProcessMinidump.cpp195 ArchSpec arch = GetArchitecture(); in DoLoadCore()
214 SetUnixSignals(UnixSignals::Create(GetArchitecture())); in DoLoadCore()
218 GetTarget().MergeArchitecture(module->GetArchitecture()); in DoLoadCore()
258 ArchSpec arch = GetArchitecture(); in RefreshStateAfterStop()
315 ArchSpec ProcessMinidump::GetArchitecture() { in GetArchitecture() function in ProcessMinidump
317 return m_minidump_parser->GetArchitecture(); in GetArchitecture()
475 auto file_spec = FileSpec(name, GetArchitecture().GetTriple()); in ReadModuleList()
477 module_spec.GetArchitecture() = GetArchitecture(); in ReadModuleList()
541 info.SetArchitecture(GetArchitecture()); in GetProcessInfo()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
HDScriptedProcess.cpp216 process_arch = GetArchitecture(); in DidAttach()
282 ArchSpec ScriptedProcess::GetArchitecture() { in GetArchitecture() function in ScriptedProcess
283 return GetTarget().GetArchitecture(); in GetArchitecture()
411 info.SetArchitecture(GetArchitecture()); in GetProcessInfo()
464 module_spec.GetArchitecture() = target.GetArchitecture(); in GetLoadedDynamicLibrariesInfos()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Host/openbsd/
HDHost.cpp107 process_info.GetArchitecture() = in GetOpenBSDProcessCPUType()
108 HostInfo::GetArchitecture(HostInfo::eArchKindDefault); in GetOpenBSDProcessCPUType()
111 process_info.GetArchitecture().Clear(); in GetOpenBSDProcessCPUType()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Utility/
HDProcessInfo.cpp255 return !m_match_info.GetArchitecture().IsValid() || in ArchitectureMatches()
256 m_match_info.GetArchitecture().IsCompatibleMatch(arch_spec); in ArchitectureMatches()
302 return ArchitectureMatches(proc_info.GetArchitecture()) && in Matches()
329 if (m_match_info.GetArchitecture().IsValid()) in MatchAllProcesses()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Expression/
HDObjectFileJIT.cpp125 if (ArchSpec arch = GetArchitecture()) in Dump()
162 ArchSpec ObjectFileJIT::GetArchitecture() { in GetArchitecture() function in ObjectFileJIT
164 return delegate_sp->GetArchitecture(); in GetArchitecture()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
HDCFBasicHash.cpp27 m_exe_ctx_ref.GetTargetSP()->GetArchitecture().GetAddressByteSize(); in Update()
28 m_byte_order = m_exe_ctx_ref.GetTargetSP()->GetArchitecture().GetByteOrder(); in Update()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Host/freebsd/
HDHost.cpp109 process_info.GetArchitecture() = in GetFreeBSDProcessCPUType()
110 HostInfo::GetArchitecture(HostInfo::eArchKindDefault); in GetFreeBSDProcessCPUType()
113 process_info.GetArchitecture().Clear(); in GetFreeBSDProcessCPUType()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Commands/
HDCommandObjectDisassemble.cpp111 if (target_sp && (target_sp->GetArchitecture().GetTriple().getArch() == in SetOptionValue()
113 target_sp->GetArchitecture().GetTriple().getArch() == in SetOptionValue()
183 if (target->GetArchitecture().GetTriple().getArch() == llvm::Triple::x86 || in OptionParsingStarting()
184 target->GetArchitecture().GetTriple().getArch() == in OptionParsingStarting()
445 m_options.arch = target->GetArchitecture(); in DoExecute()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
HDDWARFLocationExpression.cpp110 const ArchSpec &architecture = module->GetArchitecture(); in MakeLocationExpressionInternal()
135 uint32_t reg_num = GetRegisterNumber(module->GetArchitecture().GetMachine(), in MakeRegisterBasedLocationExpressionInternal()
188 const ArchSpec &architecture = module->GetArchitecture(); in MakeVFrameRelLocationExpression()
230 const ArchSpec &architecture = module->GetArchitecture(); in MakeConstantLocationExpression()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/
HDObjectContainerBSDArchive.cpp191 !pos->second->GetArchitecture().IsCompatibleMatch(arch)) in FindCachedArchive()
294 *file, module_sp->GetArchitecture(), module_sp->GetModificationTime(), in CreateInstance()
313 *file, module_sp->GetArchitecture(), module_sp->GetModificationTime(), in CreateInstance()
373 m_file, module_sp->GetArchitecture(), in ParseHeader()
511 if (module_spec.GetArchitecture().IsValid()) { in GetModuleSpecifications()
512 archive_sp->SetArchitecture(module_spec.GetArchitecture()); in GetModuleSpecifications()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/Platform/OpenBSD/
HDPlatformOpenBSD.cpp87 default_platform_sp->SetSystemArchitecture(HostInfo::GetArchitecture()); in Initialize()
112 m_supported_architectures.push_back(HostInfo::GetArchitecture()); in PlatformOpenBSD()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/
HDPlatformFreeBSD.cpp92 default_platform_sp->SetSystemArchitecture(HostInfo::GetArchitecture()); in Initialize()
117 ArchSpec hostArch = HostInfo::GetArchitecture(HostInfo::eArchKindDefault); in PlatformFreeBSD()
121 HostInfo::GetArchitecture(HostInfo::eArchKind32)); in PlatformFreeBSD()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/ABI/RISCV/
HDABISysV_riscv.h63 lldb_private::ArchSpec arch = GetProcessSP()->GetTarget().GetArchitecture(); in CallFrameAddressIsValid()
76 lldb_private::ArchSpec arch = GetProcessSP()->GetTarget().GetArchitecture(); in CodeAddressIsValid()

12345678