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.cpp58 void ProcessTrace::DidAttach(ArchSpec &process_arch) { in DidAttach() argument
72 Process::DidAttach(process_arch); in DidAttach()
H A DProcess.cpp2936 ArchSpec process_arch; in CompleteAttach() local
2937 DidAttach(process_arch); in CompleteAttach()
2939 if (process_arch.IsValid()) { in CompleteAttach()
2940 GetTarget().SetArchitecture(process_arch); in CompleteAttach()
2942 const char *triple_str = process_arch.GetTriple().getTriple().c_str(); in CompleteAttach()
2972 } else if (!process_arch.IsValid()) { in CompleteAttach()
2975 const ArchSpec &process_arch = process_info.GetArchitecture(); in CompleteAttach() local
2977 if (process_arch.IsValid() && in CompleteAttach()
2978 target_arch.IsCompatibleMatch(process_arch) && in CompleteAttach()
2979 !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() local
141 process_sp->DidAttach(process_arch); in ParseProcess()
191 ArchSpec process_arch; in ParseKernel() local
192 process_sp->DidAttach(process_arch); in ParseKernel()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcessTrace.h37 void DidAttach(ArchSpec &process_arch) override;
H A DProcess.h1040 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.cpp785 if (process_arch.IsValid()) { in DoLaunch()
889 process_arch = remote_process_arch; in DidLaunchOrAttach()
891 process_arch.GetArchitectureName(), in DidLaunchOrAttach()
898 process_arch.GetArchitectureName(), in DidLaunchOrAttach()
905 if (process_arch.IsValid()) { in DidLaunchOrAttach()
923 GetTarget().SetArchitecture(process_arch); in DidLaunchOrAttach()
957 GetTarget().SetArchitecture(process_arch); in DidLaunchOrAttach()
1070 ArchSpec process_arch; in DidLaunch() local
1071 DidLaunchOrAttach(process_arch); in DidLaunch()
1169 process_arch.Clear(); in DidAttach()
[all …]
H A DProcessGDBRemote.h106 void DidAttach(ArchSpec &process_arch) override;
381 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 DidAttach() argument
216 process_arch = GetArchitecture(); in DidAttach()