Home
last modified time | relevance | path

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

12345678910

/openbsd/src/gnu/llvm/lldb/source/Host/netbsd/
DHostNetBSD.cpp118 process_info.GetArchitecture() = in GetNetBSDProcessCPUType()
119 HostInfo::GetArchitecture(HostInfo::eArchKind32); in GetNetBSDProcessCPUType()
122 process_info.GetArchitecture() = in GetNetBSDProcessCPUType()
123 HostInfo::GetArchitecture(HostInfo::eArchKind64); in GetNetBSDProcessCPUType()
131 process_info.GetArchitecture().Clear(); in GetNetBSDProcessCPUType()
/openbsd/src/gnu/llvm/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DDynamicLoaderDarwinKernel.cpp162 process->GetTarget().GetArchitecture().GetTriple(); in CreateInstance()
299 int ptrsize = process->GetTarget().GetArchitecture().GetAddressByteSize(); in SearchForKernelNearPC()
352 if (process->GetTarget().GetArchitecture().GetAddressByteSize() == 8) { in SearchForKernelViaExhaustiveSearch()
364 if (process->GetTarget().GetArchitecture().GetAddressByteSize() == 8) in SearchForKernelViaExhaustiveSearch()
478 if (!process->GetTarget().GetArchitecture().IsCompatibleMatch( in CheckForKernelImageAtAddress()
698 if (memory_module_sp->GetArchitecture().IsValid()) { in ReadMemoryModule()
699 process->GetTarget().SetArchitecture(memory_module_sp->GetArchitecture()); in ReadMemoryModule()
761 module_spec.GetArchitecture() = target.GetArchitecture(); in LoadImageUsingMemoryModule()
772 target.GetArchitecture()); in LoadImageUsingMemoryModule()
925 return m_memory_module_sp->GetArchitecture().GetAddressByteSize(); in GetAddressByteSize()
[all …]
/openbsd/src/gnu/llvm/lldb/source/Target/
DProcessTrace.cpp103 ArchSpec ProcessTrace::GetArchitecture() { in GetArchitecture() function in ProcessTrace
104 return GetTarget().GetArchitecture(); in GetArchitecture()
110 info.SetArchitecture(GetArchitecture()); in GetProcessInfo()
DTargetList.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()
390 exe_arch_ptr->IsCompatibleMatch(exe_module->GetArchitecture()); in FindTargetWithExecutableAndArchitecture()
DThreadPlanStepInstruction.cpp106 GetTarget().GetArchitecture().GetMaximumOpcodeByteSize(); in IsPlanStale()
189 GetTarget().GetArchitecture().GetAddressByteSize()); in ShouldStop()
193 GetTarget().GetArchitecture().GetAddressByteSize()); in ShouldStop()
DRemoteAwarePlatform.cpp94 if (resolved_module_spec.GetArchitecture().IsValid()) { in ResolveExecutable()
102 resolved_module_spec.GetArchitecture().GetTriple(); in ResolveExecutable()
109 HostInfo::GetArchitecture(HostInfo::eArchKindDefault).GetTriple(); in ResolveExecutable()
127 resolved_module_spec.GetArchitecture().GetArchitectureName()); in ResolveExecutable()
138 resolved_module_spec.GetArchitecture() = arch; in ResolveExecutable()
/openbsd/src/gnu/llvm/lldb/include/lldb/Core/
DModuleSpec.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()
/openbsd/src/gnu/llvm/lldb/source/Symbol/
DFuncUnwinders.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()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/elf-core/
DProcessElfCore.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()
260 exe_module_spec.GetArchitecture() = arch; in DoLoadCore()
594 ArchSpec arch = GetArchitecture(); in parseFreeBSDNotes()
702 switch (GetArchitecture().GetMachine()) { in parseNetBSDNotes()
875 const ArchSpec &arch = GetArchitecture(); in parseLinuxNotes()
969 switch (GetArchitecture().GetTriple().getOS()) { in ParseThreadContextsFromNoteSegment()
[all …]
/openbsd/src/gnu/llvm/lldb/source/Host/common/
DProcessLaunchInfo.cpp252 const llvm::Triple &triple = GetArchitecture().GetTriple(); in ConvertArgumentsForLaunchingInShell()
297 if (GetArchitecture().IsValid() && // Valid architecture in ConvertArgumentsForLaunchingInShell()
298 GetArchitecture().GetTriple().getVendor() == in ConvertArgumentsForLaunchingInShell()
300 GetArchitecture().GetCore() != in ConvertArgumentsForLaunchingInShell()
304 GetArchitecture().GetArchitectureName()); in ConvertArgumentsForLaunchingInShell()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/minidump/
DProcessMinidump.cpp60 m_arch(module_spec.GetArchitecture()), m_uuid(module_spec.GetUUID()), in PlaceholderObjectFile()
76 ArchSpec GetArchitecture() override { return m_arch; } in GetArchitecture() function in __anon0cd9e6bc0111::PlaceholderObjectFile
272 ArchSpec arch = GetArchitecture(); in DoLoadCore()
291 SetUnixSignals(UnixSignals::Create(GetArchitecture())); in DoLoadCore()
295 GetTarget().MergeArchitecture(module->GetArchitecture()); in DoLoadCore()
335 ArchSpec arch = GetArchitecture(); in RefreshStateAfterStop()
392 ArchSpec ProcessMinidump::GetArchitecture() { in GetArchitecture() function in ProcessMinidump
394 return m_minidump_parser->GetArchitecture(); in GetArchitecture()
552 auto file_spec = FileSpec(name, GetArchitecture().GetTriple()); in ReadModuleList()
554 module_spec.GetArchitecture() = GetArchitecture(); in ReadModuleList()
[all …]
/openbsd/src/gnu/llvm/lldb/source/Core/
DValue.cpp355 data.SetByteOrder(target->GetArchitecture().GetByteOrder()); in GetValueAsData()
357 target->GetArchitecture().GetAddressByteSize()); in GetValueAsData()
368 process->GetTarget().GetArchitecture().GetByteOrder()); in GetValueAsData()
370 process->GetTarget().GetArchitecture().GetAddressByteSize()); in GetValueAsData()
415 exe_ctx->GetTargetRef().GetArchitecture().GetByteOrder()); in GetValueAsData()
417 .GetArchitecture() in GetValueAsData()
471 data.SetByteOrder(target->GetArchitecture().GetByteOrder()); in GetValueAsData()
472 data.SetAddressByteSize(target->GetArchitecture().GetAddressByteSize()); in GetValueAsData()
DDynamicLoader.cpp83 executable->GetArchitecture()); in GetTargetExecutable()
154 ModuleSpec module_spec(file, target.GetArchitecture()); in FindModuleViaTarget()
237 if (!target.GetArchitecture().IsValid()) in LoadBinaryWithUUIDAndAddress()
238 target.SetArchitecture(module_sp->GetArchitecture()); in LoadBinaryWithUUIDAndAddress()
DAddress.cpp87 byte_order = target_sp->GetArchitecture().GetByteOrder(); in GetByteOrderAndAddressSize()
88 addr_size = target_sp->GetArchitecture().GetAddressByteSize(); in GetByteOrderAndAddressSize()
94 byte_order = module_sp->GetArchitecture().GetByteOrder(); in GetByteOrderAndAddressSize()
95 addr_size = module_sp->GetArchitecture().GetAddressByteSize(); in GetByteOrderAndAddressSize()
421 addr_size = target->GetArchitecture().GetAddressByteSize(); in Dump()
477 target->GetArchitecture().GetMachine(); in Dump()
501 pointer_size = target->GetArchitecture().GetAddressByteSize(); in Dump()
503 pointer_size = module_sp->GetArchitecture().GetAddressByteSize(); in Dump()
734 ABI::FindPlugin(ProcessSP(), module_sp->GetArchitecture()); in Dump()
/openbsd/src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
DRenderScriptExpressionOpts.cpp84 m_process_ptr->GetTarget().GetArchitecture().GetTriple().getTriple(); in runOnModule()
96 switch (m_process_ptr->GetTarget().GetArchitecture().GetMachine()) { in runOnModule()
160 proto, process->GetTarget().GetArchitecture().GetMachine()); in GetOverrideExprOptions()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/
DPlatformMacOSX.cpp61 default_platform_sp->SetSystemArchitecture(HostInfo::GetArchitecture()); in Initialize()
188 if (module_spec.GetArchitecture().GetCore() == in GetSharedModule()
194 module_spec_x86_64.GetArchitecture() = ArchSpec("x86_64-apple-macosx"); in GetSharedModule()
DPlatformAppleSimulator.cpp396 if (resolved_module_spec.GetArchitecture().IsValid()) { in ResolveExecutable()
411 resolved_module_spec.GetArchitecture() = arch; in ResolveExecutable()
414 if (!module_spec.GetArchitecture().IsValid() || in ResolveExecutable()
415 module_spec.GetArchitecture().GetCore() == in ResolveExecutable()
416 resolved_module_spec.GetArchitecture().GetCore()) { in ResolveExecutable()
522 const llvm::Triple &triple = proc_info.GetArchitecture().GetTriple(); in FindProcesses()
/openbsd/src/gnu/llvm/lldb/source/Host/openbsd/
DHost.cpp109 process_info.GetArchitecture() = in GetOpenBSDProcessCPUType()
110 HostInfo::GetArchitecture(HostInfo::eArchKindDefault); in GetOpenBSDProcessCPUType()
113 process_info.GetArchitecture().Clear(); in GetOpenBSDProcessCPUType()
/openbsd/src/gnu/llvm/lldb/source/Utility/
DProcessInfo.cpp246 return !m_match_info.GetArchitecture().IsValid() || in ArchitectureMatches()
247 m_match_info.GetArchitecture().IsCompatibleMatch(arch_spec); in ArchitectureMatches()
293 return ArchitectureMatches(proc_info.GetArchitecture()) && in Matches()
320 if (m_match_info.GetArchitecture().IsValid()) in MatchAllProcesses()
/openbsd/src/gnu/llvm/lldb/source/Plugins/ObjectFile/JIT/
DObjectFileJIT.cpp138 if (ArchSpec arch = GetArchitecture()) in Dump()
175 ArchSpec ObjectFileJIT::GetArchitecture() { in GetArchitecture() function in ObjectFileJIT
177 return delegate_sp->GetArchitecture(); in GetArchitecture()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Language/ObjC/
DCFBasicHash.cpp27 m_exe_ctx_ref.GetTargetSP()->GetArchitecture().GetAddressByteSize(); in Update()
28 m_byte_order = m_exe_ctx_ref.GetTargetSP()->GetArchitecture().GetByteOrder(); in Update()
/openbsd/src/gnu/llvm/lldb/source/Host/freebsd/
DHost.cpp109 process_info.GetArchitecture() = in GetFreeBSDProcessCPUType()
110 HostInfo::GetArchitecture(HostInfo::eArchKindDefault); in GetFreeBSDProcessCPUType()
113 process_info.GetArchitecture().Clear(); in GetFreeBSDProcessCPUType()
/openbsd/src/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/
DDWARFLocationExpression.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()
/openbsd/src/gnu/llvm/lldb/source/Commands/
DCommandObjectDisassemble.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()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Platform/FreeBSD/
DPlatformFreeBSD.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()

12345678910