/freebsd/contrib/llvm-project/lldb/source/Host/netbsd/ |
H A D | HostNetBSD.cpp | 119 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/contrib/llvm-project/lldb/source/Target/ |
H A D | ProcessTrace.cpp | 106 ArchSpec ProcessTrace::GetArchitecture() { in GetArchitecture() function in ProcessTrace 107 return GetTarget().GetArchitecture(); in GetArchitecture() 113 info.SetArchitecture(GetArchitecture()); in GetProcessInfo()
|
H A D | TargetList.cpp | 149 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()
|
H A D | ThreadPlanStepInstruction.cpp | 106 GetTarget().GetArchitecture().GetMaximumOpcodeByteSize(); in IsPlanStale() 189 GetTarget().GetArchitecture().GetAddressByteSize()); in ShouldStop() 193 GetTarget().GetArchitecture().GetAddressByteSize()); in ShouldStop()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | ModuleSpec.h | 89 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/contrib/llvm-project/lldb/source/Symbol/ |
H A D | FuncUnwinders.cpp | 255 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/contrib/llvm-project/lldb/source/Host/common/ |
H A D | ProcessLaunchInfo.cpp | 248 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/contrib/llvm-project/lldb/source/Core/ |
H A D | Value.cpp | 371 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()
|
H A D | Address.cpp | 89 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()
|
H A D | DynamicLoader.cpp | 84 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/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ |
H A D | ProcessElfCore.cpp | 86 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/contrib/llvm-project/lldb/source/Plugins/Platform/QemuUser/ |
H A D | PlatformQemuUser.cpp | 43 llvm::StringRef GetArchitecture() { in GetArchitecture() function in __anon844340d40111::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/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ |
H A D | ProcessMinidump.cpp | 195 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/contrib/llvm-project/lldb/source/Plugins/Process/scripted/ |
H A D | ScriptedProcess.cpp | 216 process_arch = GetArchitecture(); in DoReadMemory() 282 ArchSpec ScriptedProcess::GetArchitecture() { in GetMemoryRegions() 283 return GetTarget().GetArchitecture(); in GetMemoryRegions() 411 info.SetArchitecture(GetArchitecture()); in GetLoadedDynamicLibrariesInfos() 464 module_spec.GetArchitecture() = target.GetArchitecture(); in GetLoadedDynamicLibrariesInfos() 268 ArchSpec ScriptedProcess::GetArchitecture() { GetArchitecture() function in ScriptedProcess
|
/freebsd/contrib/llvm-project/lldb/source/Host/openbsd/ |
H A D | Host.cpp | 107 process_info.GetArchitecture() = in GetOpenBSDProcessCPUType() 108 HostInfo::GetArchitecture(HostInfo::eArchKindDefault); in GetOpenBSDProcessCPUType() 111 process_info.GetArchitecture().Clear(); in GetOpenBSDProcessCPUType()
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | ProcessInfo.cpp | 255 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/contrib/llvm-project/lldb/source/Expression/ |
H A D | ObjectFileJIT.cpp | 125 if (ArchSpec arch = GetArchitecture()) in Dump() 162 ArchSpec ObjectFileJIT::GetArchitecture() { in CalculateType() 164 return delegate_sp->GetArchitecture(); in CalculateStrata() 166 ArchSpec ObjectFileJIT::GetArchitecture() { GetArchitecture() function in ObjectFileJIT
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ |
H A D | CFBasicHash.cpp | 27 m_exe_ctx_ref.GetTargetSP()->GetArchitecture().GetAddressByteSize(); in Update() 28 m_byte_order = m_exe_ctx_ref.GetTargetSP()->GetArchitecture().GetByteOrder(); in Update()
|
/freebsd/contrib/llvm-project/lldb/source/Host/freebsd/ |
H A D | Host.cpp | 109 process_info.GetArchitecture() = in GetFreeBSDProcessCPUType() 110 HostInfo::GetArchitecture(HostInfo::eArchKindDefault); in GetFreeBSDProcessCPUType() 113 process_info.GetArchitecture().Clear(); in GetFreeBSDProcessCPUType()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | DWARFLocationExpression.cpp | 110 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/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectDisassemble.cpp | 111 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/contrib/llvm-project/lldb/source/Plugins/Platform/OpenBSD/ |
H A D | PlatformOpenBSD.cpp | 87 default_platform_sp->SetSystemArchitecture(HostInfo::GetArchitecture()); in Initialize() 112 m_supported_architectures.push_back(HostInfo::GetArchitecture()); in PlatformOpenBSD()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/ |
H A D | PlatformFreeBSD.cpp | 92 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/contrib/llvm-project/lldb/include/lldb/Expression/ |
H A D | ObjectFileJIT.h | 30 virtual ArchSpec GetArchitecture() = 0; 94 lldb_private::ArchSpec GetArchitecture() override;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/ |
H A D | ObjectContainerBSDArchive.cpp | 191 !pos->second->GetArchitecture().IsCompatibleMatch(arch)) in Extract() 294 *file, module_sp->GetArchitecture(), module_sp->GetModificationTime(), in FindObject() 313 *file, module_sp->GetArchitecture(), module_sp->GetModificationTime(), in FindCachedArchive() 373 m_file, module_sp->GetArchitecture(), in GetArchiveCache() 511 if (module_spec.GetArchitecture().IsValid()) { in ParseHeader() 512 archive_sp->SetArchitecture(module_spec.GetArchitecture()); in ParseHeader()
|