Home
last modified time | relevance | path

Searched refs:platform_arch (Results 1 – 7 of 7) sorted by relevance

/freebsd-10-stable/contrib/llvm/tools/lldb/source/Target/
DTargetList.cpp86 ArchSpec platform_arch(arch); in CreateTarget() local
105 if (platform_arch.IsValid()) in CreateTarget()
107 … if (!platform_arch.IsCompatibleMatch(matching_module_spec.GetArchitecture())) in CreateTarget()
110 platform_arch.GetTriple().str().c_str(), in CreateTarget()
119 platform_arch = matching_module_spec.GetArchitecture(); in CreateTarget()
130 platform_arch = matching_module_spec.GetArchitecture(); in CreateTarget()
157 platform_arch); in CreateTarget()
169 if (arch.IsValid() && !platform_sp->IsCompatibleArchitecture(arch, false, &platform_arch)) in CreateTarget()
171 platform_sp = Platform::GetPlatformForArchitecture(arch, &platform_arch); in CreateTarget()
175 if (!platform_arch.IsValid()) in CreateTarget()
[all …]
DPlatform.cpp1089 ArchSpec platform_arch; in IsCompatibleArchitecture() local
1093 … for (uint32_t arch_idx=0; GetSupportedArchitectureAtIndex (arch_idx, platform_arch); ++arch_idx) in IsCompatibleArchitecture()
1095 if (arch.IsExactMatch(platform_arch)) in IsCompatibleArchitecture()
1098 *compatible_arch_ptr = platform_arch; in IsCompatibleArchitecture()
1105 … for (uint32_t arch_idx=0; GetSupportedArchitectureAtIndex (arch_idx, platform_arch); ++arch_idx) in IsCompatibleArchitecture()
1107 if (arch.IsCompatibleMatch(platform_arch)) in IsCompatibleArchitecture()
1110 *compatible_arch_ptr = platform_arch; in IsCompatibleArchitecture()
DProcess.cpp3356 ArchSpec platform_arch; in CompleteAttach() local
3357 platform_sp = platform_sp->GetPlatformForArchitecture (target_arch, &platform_arch); in CompleteAttach()
3361 m_target.SetArchitecture(platform_arch); in CompleteAttach()
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Interpreter/
DOptionGroupPlatform.cpp30 ArchSpec &platform_arch) const in CreatePlatformWithOptions()
39 …if (platform_arch.IsValid() && !platform_sp->IsCompatibleArchitecture(arch, false, &platform_arch)) in CreatePlatformWithOptions()
51 platform_sp = Platform::Create (arch, &platform_arch, error); in CreatePlatformWithOptions()
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/
DPlatformFreeBSD.cpp266 ArchSpec platform_arch; in ResolveExecutable() local
267 for (uint32_t idx = 0; GetSupportedArchitectureAtIndex (idx, platform_arch); ++idx) in ResolveExecutable()
285 arch_names.PutCString (platform_arch.GetArchitectureName()); in ResolveExecutable()
641 ArchSpec platform_arch (Host::GetArchitecture (Host::eSystemDefaultArchitecture)); in GetSupportedArchitectureAtIndex() local
643 if (platform_arch.IsExactMatch(platform_arch64)) in GetSupportedArchitectureAtIndex()
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/
DOptionGroupPlatform.h66 ArchSpec &platform_arch) const;
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Commands/
DCommandObjectPlatform.cpp247 ArchSpec platform_arch; in DoExecute() local
248 …tform_options.CreatePlatformWithOptions (m_interpreter, ArchSpec(), select, error, platform_arch)); in DoExecute()