Home
last modified time | relevance | path

Searched refs:process_arch (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DProcessTrace.cpp59 void ProcessTrace::DidAttach(ArchSpec &process_arch) { in DidAttach() argument
73 Process::DidAttach(process_arch); in DidAttach()
H A DProcess.cpp3099 ArchSpec process_arch; in CompleteAttach() local
3100 DidAttach(process_arch); in CompleteAttach()
3102 if (process_arch.IsValid()) { in CompleteAttach()
3106 __FUNCTION__, process_arch.GetTriple().getTriple()); in CompleteAttach()
3107 GetTarget().SetArchitecture(process_arch); in CompleteAttach()
3132 } else if (!process_arch.IsValid()) { in CompleteAttach()
3135 const ArchSpec &process_arch = process_info.GetArchitecture(); in CompleteAttach() local
3137 if (process_arch.IsValid() && in CompleteAttach()
3138 target_arch.IsCompatibleMatch(process_arch) && in CompleteAttach()
3139 !target_arch.IsExactMatch(process_arch)) { in CompleteAttach()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTBundleLoader.cpp140 ArchSpec process_arch; in ParseProcess()
141 process_sp->DidAttach(process_arch); in ParseProcess()
191 ArchSpec process_arch; in ParseKernel()
192 process_sp->DidAttach(process_arch); in ParseKernel()
138 ArchSpec process_arch; ParseProcess() local
189 ArchSpec process_arch; ParseKernel() local
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcessTrace.h38 void DidAttach(ArchSpec &process_arch) override;
H A DProcess.h1044 virtual void DidAttach(ArchSpec &process_arch) { process_arch.Clear(); } in DidAttach() argument
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp783 const ArchSpec &process_arch = m_gdb_comm.GetProcessArchitecture(); in DoLaunch() local
785 if (process_arch.IsValid()) { in DoLaunch()
786 GetTarget().MergeArchitecture(process_arch); in DoLaunch()
880 void ProcessGDBRemote::DidLaunchOrAttach(ArchSpec &process_arch) { in DidLaunchOrAttach() argument
889 process_arch = remote_process_arch; in DidLaunchOrAttach()
891 process_arch.GetArchitectureName(), in DidLaunchOrAttach()
892 process_arch.GetTriple().getTriple()); in DidLaunchOrAttach()
894 process_arch = m_gdb_comm.GetHostArchitecture(); in DidLaunchOrAttach()
898 process_arch.GetArchitectureName(), in DidLaunchOrAttach()
899 process_arch.GetTriple().getTriple()); in DidLaunchOrAttach()
[all …]
H A DProcessGDBRemote.h106 void DidAttach(ArchSpec &process_arch) override;
382 void DidLaunchOrAttach(ArchSpec &process_arch);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
H A DScriptedProcess.h64 void DidAttach(ArchSpec &process_arch) override;
H A DScriptedProcess.cpp215 void ScriptedProcess::DidAttach(ArchSpec &process_arch) { in DoReadMemory()
216 process_arch = GetArchitecture(); in DoReadMemory()
201 DidAttach(ArchSpec & process_arch) DidAttach() argument