1b3e77600SGreg Clayton //===-- OperatingSystemPython.cpp --------------------------------*- C++ -*-===// 2b3e77600SGreg Clayton // 3b3e77600SGreg Clayton // The LLVM Compiler Infrastructure 4b3e77600SGreg Clayton // 5b3e77600SGreg Clayton // This file is distributed under the University of Illinois Open Source 6b3e77600SGreg Clayton // License. See LICENSE.TXT for details. 7b3e77600SGreg Clayton // 8b3e77600SGreg Clayton //===----------------------------------------------------------------------===// 993a64300SDaniel Malea 1093a64300SDaniel Malea #include "lldb/lldb-python.h" 1193a64300SDaniel Malea 12b3e77600SGreg Clayton #ifndef LLDB_DISABLE_PYTHON 13b3e77600SGreg Clayton 14b3e77600SGreg Clayton #include "OperatingSystemPython.h" 15b3e77600SGreg Clayton // C Includes 16b3e77600SGreg Clayton // C++ Includes 17b3e77600SGreg Clayton // Other libraries and framework includes 18b3e77600SGreg Clayton #include "lldb/Core/ArchSpec.h" 19b3e77600SGreg Clayton #include "lldb/Core/DataBufferHeap.h" 205790759aSEnrico Granata #include "lldb/Core/Debugger.h" 21b3e77600SGreg Clayton #include "lldb/Core/Module.h" 22b3e77600SGreg Clayton #include "lldb/Core/PluginManager.h" 23b3e77600SGreg Clayton #include "lldb/Core/RegisterValue.h" 2462f80036SGreg Clayton #include "lldb/Core/StreamString.h" 250641ca1aSZachary Turner #include "lldb/Core/StructuredData.h" 26b3e77600SGreg Clayton #include "lldb/Core/ValueObjectVariable.h" 275790759aSEnrico Granata #include "lldb/Interpreter/CommandInterpreter.h" 280641ca1aSZachary Turner #include "lldb/Interpreter/ScriptInterpreter.h" 29b3e77600SGreg Clayton #include "lldb/Symbol/ClangNamespaceDecl.h" 30b3e77600SGreg Clayton #include "lldb/Symbol/ObjectFile.h" 31b3e77600SGreg Clayton #include "lldb/Symbol/VariableList.h" 32b3e77600SGreg Clayton #include "lldb/Target/Process.h" 33b3e77600SGreg Clayton #include "lldb/Target/StopInfo.h" 34b3e77600SGreg Clayton #include "lldb/Target/Target.h" 35b3e77600SGreg Clayton #include "lldb/Target/ThreadList.h" 36b3e77600SGreg Clayton #include "lldb/Target/Thread.h" 37b3e77600SGreg Clayton #include "Plugins/Process/Utility/DynamicRegisterInfo.h" 38cbd79b6cSEnrico Granata #include "Plugins/Process/Utility/RegisterContextDummy.h" 39b3e77600SGreg Clayton #include "Plugins/Process/Utility/RegisterContextMemory.h" 40b3e77600SGreg Clayton #include "Plugins/Process/Utility/ThreadMemory.h" 41b3e77600SGreg Clayton 42b3e77600SGreg Clayton using namespace lldb; 43b3e77600SGreg Clayton using namespace lldb_private; 44b3e77600SGreg Clayton 45b3e77600SGreg Clayton void 46b3e77600SGreg Clayton OperatingSystemPython::Initialize() 47b3e77600SGreg Clayton { 48b3e77600SGreg Clayton PluginManager::RegisterPlugin (GetPluginNameStatic(), 49b3e77600SGreg Clayton GetPluginDescriptionStatic(), 50b3e77600SGreg Clayton CreateInstance); 51b3e77600SGreg Clayton } 52b3e77600SGreg Clayton 53b3e77600SGreg Clayton void 54b3e77600SGreg Clayton OperatingSystemPython::Terminate() 55b3e77600SGreg Clayton { 56b3e77600SGreg Clayton PluginManager::UnregisterPlugin (CreateInstance); 57b3e77600SGreg Clayton } 58b3e77600SGreg Clayton 59b3e77600SGreg Clayton OperatingSystem * 60b3e77600SGreg Clayton OperatingSystemPython::CreateInstance (Process *process, bool force) 61b3e77600SGreg Clayton { 62b3e77600SGreg Clayton // Python OperatingSystem plug-ins must be requested by name, so force must be true 63c9d645d3SGreg Clayton FileSpec python_os_plugin_spec (process->GetPythonOSPluginPath()); 64c9d645d3SGreg Clayton if (python_os_plugin_spec && python_os_plugin_spec.Exists()) 65c9d645d3SGreg Clayton { 667b0992d9SGreg Clayton std::unique_ptr<OperatingSystemPython> os_ap (new OperatingSystemPython (process, python_os_plugin_spec)); 67c9d645d3SGreg Clayton if (os_ap.get() && os_ap->IsValid()) 68c9d645d3SGreg Clayton return os_ap.release(); 69c9d645d3SGreg Clayton } 70b3e77600SGreg Clayton return NULL; 71b3e77600SGreg Clayton } 72b3e77600SGreg Clayton 73b3e77600SGreg Clayton 7457abc5d6SGreg Clayton ConstString 75b3e77600SGreg Clayton OperatingSystemPython::GetPluginNameStatic() 76b3e77600SGreg Clayton { 7757abc5d6SGreg Clayton static ConstString g_name("python"); 7857abc5d6SGreg Clayton return g_name; 79b3e77600SGreg Clayton } 80b3e77600SGreg Clayton 81b3e77600SGreg Clayton const char * 82b3e77600SGreg Clayton OperatingSystemPython::GetPluginDescriptionStatic() 83b3e77600SGreg Clayton { 84b3e77600SGreg Clayton return "Operating system plug-in that gathers OS information from a python class that implements the necessary OperatingSystem functionality."; 85b3e77600SGreg Clayton } 86b3e77600SGreg Clayton 87b3e77600SGreg Clayton 88c9d645d3SGreg Clayton OperatingSystemPython::OperatingSystemPython (lldb_private::Process *process, const FileSpec &python_module_path) : 89b3e77600SGreg Clayton OperatingSystem (process), 90b3e77600SGreg Clayton m_thread_list_valobj_sp (), 915790759aSEnrico Granata m_register_info_ap (), 925790759aSEnrico Granata m_interpreter (NULL), 93a4d8747dSGreg Clayton m_python_object_sp () 94b3e77600SGreg Clayton { 955790759aSEnrico Granata if (!process) 965790759aSEnrico Granata return; 97a4d8747dSGreg Clayton TargetSP target_sp = process->CalculateTarget(); 985790759aSEnrico Granata if (!target_sp) 995790759aSEnrico Granata return; 1005790759aSEnrico Granata m_interpreter = target_sp->GetDebugger().GetCommandInterpreter().GetScriptInterpreter(); 1015790759aSEnrico Granata if (m_interpreter) 1025790759aSEnrico Granata { 1032443cbd7SGreg Clayton 104c9d645d3SGreg Clayton std::string os_plugin_class_name (python_module_path.GetFilename().AsCString("")); 105c9d645d3SGreg Clayton if (!os_plugin_class_name.empty()) 106c9d645d3SGreg Clayton { 107c9d645d3SGreg Clayton const bool init_session = false; 108c9d645d3SGreg Clayton const bool allow_reload = true; 109c9d645d3SGreg Clayton char python_module_path_cstr[PATH_MAX]; 110c9d645d3SGreg Clayton python_module_path.GetPath(python_module_path_cstr, sizeof(python_module_path_cstr)); 111c9d645d3SGreg Clayton Error error; 112c9d645d3SGreg Clayton if (m_interpreter->LoadScriptingModule (python_module_path_cstr, allow_reload, init_session, error)) 113c9d645d3SGreg Clayton { 114c9d645d3SGreg Clayton // Strip the ".py" extension if there is one 115c9d645d3SGreg Clayton size_t py_extension_pos = os_plugin_class_name.rfind(".py"); 116c9d645d3SGreg Clayton if (py_extension_pos != std::string::npos) 117c9d645d3SGreg Clayton os_plugin_class_name.erase (py_extension_pos); 118c9d645d3SGreg Clayton // Add ".OperatingSystemPlugIn" to the module name to get a string like "modulename.OperatingSystemPlugIn" 119c9d645d3SGreg Clayton os_plugin_class_name += ".OperatingSystemPlugIn"; 1200641ca1aSZachary Turner StructuredData::ObjectSP object_sp = 1210641ca1aSZachary Turner m_interpreter->OSPlugin_CreatePluginObject(os_plugin_class_name.c_str(), process->CalculateProcess()); 1220641ca1aSZachary Turner if (object_sp && object_sp->IsValid()) 123a4d8747dSGreg Clayton m_python_object_sp = object_sp; 124c9d645d3SGreg Clayton } 1252443cbd7SGreg Clayton } 1265790759aSEnrico Granata } 127b3e77600SGreg Clayton } 128b3e77600SGreg Clayton 129b3e77600SGreg Clayton OperatingSystemPython::~OperatingSystemPython () 130b3e77600SGreg Clayton { 131b3e77600SGreg Clayton } 132b3e77600SGreg Clayton 133b3e77600SGreg Clayton DynamicRegisterInfo * 134b3e77600SGreg Clayton OperatingSystemPython::GetDynamicRegisterInfo () 135b3e77600SGreg Clayton { 1362443cbd7SGreg Clayton if (m_register_info_ap.get() == NULL) 1372443cbd7SGreg Clayton { 138a4d8747dSGreg Clayton if (!m_interpreter || !m_python_object_sp) 1395790759aSEnrico Granata return NULL; 14062f80036SGreg Clayton Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_OS)); 1411c22be69SGreg Clayton 1421c22be69SGreg Clayton if (log) 143d01b2953SDaniel Malea log->Printf ("OperatingSystemPython::GetDynamicRegisterInfo() fetching thread register definitions from python for pid %" PRIu64, m_process->GetID()); 1441c22be69SGreg Clayton 1450641ca1aSZachary Turner StructuredData::DictionarySP dictionary = m_interpreter->OSPlugin_RegisterInfo(m_python_object_sp); 1465790759aSEnrico Granata if (!dictionary) 1475790759aSEnrico Granata return NULL; 148b3e77600SGreg Clayton 1490641ca1aSZachary Turner m_register_info_ap.reset(new DynamicRegisterInfo(*dictionary, m_process->GetTarget().GetArchitecture().GetByteOrder())); 1502443cbd7SGreg Clayton assert (m_register_info_ap->GetNumRegisters() > 0); 1512443cbd7SGreg Clayton assert (m_register_info_ap->GetNumRegisterSets() > 0); 152b3e77600SGreg Clayton } 153b3e77600SGreg Clayton return m_register_info_ap.get(); 154b3e77600SGreg Clayton } 155b3e77600SGreg Clayton 156b3e77600SGreg Clayton //------------------------------------------------------------------ 157b3e77600SGreg Clayton // PluginInterface protocol 158b3e77600SGreg Clayton //------------------------------------------------------------------ 15957abc5d6SGreg Clayton ConstString 160b3e77600SGreg Clayton OperatingSystemPython::GetPluginName() 161b3e77600SGreg Clayton { 162b3e77600SGreg Clayton return GetPluginNameStatic(); 163b3e77600SGreg Clayton } 164b3e77600SGreg Clayton 165b3e77600SGreg Clayton uint32_t 166b3e77600SGreg Clayton OperatingSystemPython::GetPluginVersion() 167b3e77600SGreg Clayton { 168b3e77600SGreg Clayton return 1; 169b3e77600SGreg Clayton } 170b3e77600SGreg Clayton 171b3e77600SGreg Clayton bool 172ba4e61d3SAndrew Kaylor OperatingSystemPython::UpdateThreadList (ThreadList &old_thread_list, 173ba4e61d3SAndrew Kaylor ThreadList &core_thread_list, 174ba4e61d3SAndrew Kaylor ThreadList &new_thread_list) 175b3e77600SGreg Clayton { 176a4d8747dSGreg Clayton if (!m_interpreter || !m_python_object_sp) 177a85e6b6cSDaniel Malea return false; 1781c22be69SGreg Clayton 17962f80036SGreg Clayton Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_OS)); 1801c22be69SGreg Clayton 181*ab745c2aSGreg Clayton // First thing we have to do is to try to get the API lock, and the run lock. 182*ab745c2aSGreg Clayton // We're going to change the thread content of the process, and we're going 183*ab745c2aSGreg Clayton // to use python, which requires the API lock to do it. 184*ab745c2aSGreg Clayton // 185*ab745c2aSGreg Clayton // If someone already has the API lock, that is ok, we just want to avoid 186*ab745c2aSGreg Clayton // external code from making new API calls while this call is happening. 187*ab745c2aSGreg Clayton // 188*ab745c2aSGreg Clayton // This is a recursive lock so we can grant it to any Python code called on 189*ab745c2aSGreg Clayton // the stack below us. 19085e276b8SJim Ingham Target &target = m_process->GetTarget(); 191*ab745c2aSGreg Clayton Mutex::Locker api_locker; 192*ab745c2aSGreg Clayton api_locker.TryLock(target.GetAPIMutex()); 19385e276b8SJim Ingham 1941c22be69SGreg Clayton if (log) 195d01b2953SDaniel Malea log->Printf ("OperatingSystemPython::UpdateThreadList() fetching thread data from python for pid %" PRIu64, m_process->GetID()); 1961c22be69SGreg Clayton 197b3ae8761SGreg Clayton // The threads that are in "new_thread_list" upon entry are the threads from the 198b3ae8761SGreg Clayton // lldb_private::Process subclass, no memory threads will be in this list. 199b3ae8761SGreg Clayton 200198125a8SEnrico Granata auto lock = m_interpreter->AcquireInterpreterLock(); // to make sure threads_list stays alive 2010641ca1aSZachary Turner StructuredData::ArraySP threads_list = m_interpreter->OSPlugin_ThreadsInfo(m_python_object_sp); 202e98008ccSGreg Clayton 203e98008ccSGreg Clayton const uint32_t num_cores = core_thread_list.GetSize(false); 204e98008ccSGreg Clayton 205e98008ccSGreg Clayton // Make a map so we can keep track of which cores were used from the 206e98008ccSGreg Clayton // core_thread list. Any real threads/cores that weren't used should 207e98008ccSGreg Clayton // later be put back into the "new_thread_list". 208e98008ccSGreg Clayton std::vector<bool> core_used_map(num_cores, false); 209a4d8747dSGreg Clayton if (threads_list) 210435ce139SGreg Clayton { 21162f80036SGreg Clayton if (log) 21262f80036SGreg Clayton { 21362f80036SGreg Clayton StreamString strm; 2140641ca1aSZachary Turner threads_list->Dump(strm); 21562f80036SGreg Clayton log->Printf("threads_list = %s", strm.GetString().c_str()); 21662f80036SGreg Clayton } 2170641ca1aSZachary Turner 2180641ca1aSZachary Turner const uint32_t num_threads = threads_list->GetSize(); 2190641ca1aSZachary Turner for (uint32_t i = 0; i < num_threads; ++i) 2206e0ff1a3SGreg Clayton { 2210641ca1aSZachary Turner StructuredData::ObjectSP thread_dict_obj = threads_list->GetItemAtIndex(i); 2220641ca1aSZachary Turner if (auto thread_dict = thread_dict_obj->GetAsDictionary()) 223435ce139SGreg Clayton { 2240641ca1aSZachary Turner ThreadSP thread_sp(CreateThreadFromThreadInfo(*thread_dict, core_thread_list, old_thread_list, core_used_map, NULL)); 225a4d8747dSGreg Clayton if (thread_sp) 226435ce139SGreg Clayton new_thread_list.AddThread(thread_sp); 227435ce139SGreg Clayton } 228435ce139SGreg Clayton } 229435ce139SGreg Clayton } 2306e0ff1a3SGreg Clayton 231e98008ccSGreg Clayton // Any real core threads that didn't end up backing a memory thread should 232e98008ccSGreg Clayton // still be in the main thread list, and they should be inserted at the beginning 233e98008ccSGreg Clayton // of the list 234e98008ccSGreg Clayton uint32_t insert_idx = 0; 235e98008ccSGreg Clayton for (uint32_t core_idx = 0; core_idx < num_cores; ++core_idx) 236e98008ccSGreg Clayton { 237e98008ccSGreg Clayton if (core_used_map[core_idx] == false) 238e98008ccSGreg Clayton { 239e98008ccSGreg Clayton new_thread_list.InsertThread (core_thread_list.GetThreadAtIndex(core_idx, false), insert_idx); 240e98008ccSGreg Clayton ++insert_idx; 241e98008ccSGreg Clayton } 242e98008ccSGreg Clayton } 2436e0ff1a3SGreg Clayton 244b3e77600SGreg Clayton return new_thread_list.GetSize(false) > 0; 245b3e77600SGreg Clayton } 246b3e77600SGreg Clayton 247a4d8747dSGreg Clayton ThreadSP 2480641ca1aSZachary Turner OperatingSystemPython::CreateThreadFromThreadInfo(StructuredData::Dictionary &thread_dict, ThreadList &core_thread_list, 2490641ca1aSZachary Turner ThreadList &old_thread_list, std::vector<bool> &core_used_map, bool *did_create_ptr) 250a4d8747dSGreg Clayton { 251a4d8747dSGreg Clayton ThreadSP thread_sp; 2520641ca1aSZachary Turner tid_t tid = LLDB_INVALID_THREAD_ID; 2530641ca1aSZachary Turner if (!thread_dict.GetValueForKeyAsInteger("tid", tid)) 2540641ca1aSZachary Turner return ThreadSP(); 255a4d8747dSGreg Clayton 2560641ca1aSZachary Turner uint32_t core_number; 2570641ca1aSZachary Turner addr_t reg_data_addr; 2580641ca1aSZachary Turner std::string name; 2590641ca1aSZachary Turner std::string queue; 2600641ca1aSZachary Turner 2610641ca1aSZachary Turner thread_dict.GetValueForKeyAsInteger("core", core_number, UINT32_MAX); 2620641ca1aSZachary Turner thread_dict.GetValueForKeyAsInteger("register_data_addr", reg_data_addr, LLDB_INVALID_ADDRESS); 2630641ca1aSZachary Turner thread_dict.GetValueForKeyAsString("name", name); 2640641ca1aSZachary Turner thread_dict.GetValueForKeyAsString("queue", queue); 265a4d8747dSGreg Clayton 266160c9d81SGreg Clayton // See if a thread already exists for "tid" 267b3ae8761SGreg Clayton thread_sp = old_thread_list.FindThreadByID(tid, false); 268160c9d81SGreg Clayton if (thread_sp) 269160c9d81SGreg Clayton { 270160c9d81SGreg Clayton // A thread already does exist for "tid", make sure it was an operating system 271160c9d81SGreg Clayton // plug-in generated thread. 272160c9d81SGreg Clayton if (!IsOperatingSystemPluginThread(thread_sp)) 273160c9d81SGreg Clayton { 274160c9d81SGreg Clayton // We have thread ID overlap between the protocol threads and the 275160c9d81SGreg Clayton // operating system threads, clear the thread so we create an 276160c9d81SGreg Clayton // operating system thread for this. 277160c9d81SGreg Clayton thread_sp.reset(); 278160c9d81SGreg Clayton } 279160c9d81SGreg Clayton } 280160c9d81SGreg Clayton 281a4d8747dSGreg Clayton if (!thread_sp) 282a4d8747dSGreg Clayton { 283a4d8747dSGreg Clayton if (did_create_ptr) 284a4d8747dSGreg Clayton *did_create_ptr = true; 2850641ca1aSZachary Turner thread_sp.reset(new ThreadMemory(*m_process, tid, name.c_str(), queue.c_str(), reg_data_addr)); 286b3ae8761SGreg Clayton } 287b3ae8761SGreg Clayton 288b3ae8761SGreg Clayton if (core_number < core_thread_list.GetSize(false)) 289b3ae8761SGreg Clayton { 290160c9d81SGreg Clayton ThreadSP core_thread_sp(core_thread_list.GetThreadAtIndex(core_number, false)); 291160c9d81SGreg Clayton if (core_thread_sp) 292160c9d81SGreg Clayton { 293e98008ccSGreg Clayton // Keep track of which cores were set as the backing thread for memory threads... 294e98008ccSGreg Clayton if (core_number < core_used_map.size()) 295e98008ccSGreg Clayton core_used_map[core_number] = true; 296e98008ccSGreg Clayton 297160c9d81SGreg Clayton ThreadSP backing_core_thread_sp(core_thread_sp->GetBackingThread()); 298160c9d81SGreg Clayton if (backing_core_thread_sp) 299160c9d81SGreg Clayton { 300160c9d81SGreg Clayton thread_sp->SetBackingThread(backing_core_thread_sp); 301160c9d81SGreg Clayton } 302160c9d81SGreg Clayton else 303160c9d81SGreg Clayton { 304160c9d81SGreg Clayton thread_sp->SetBackingThread(core_thread_sp); 305160c9d81SGreg Clayton } 306160c9d81SGreg Clayton } 307a4d8747dSGreg Clayton } 308a4d8747dSGreg Clayton return thread_sp; 309a4d8747dSGreg Clayton } 310a4d8747dSGreg Clayton 311a4d8747dSGreg Clayton 312a4d8747dSGreg Clayton 313b3e77600SGreg Clayton void 314b3e77600SGreg Clayton OperatingSystemPython::ThreadWasSelected (Thread *thread) 315b3e77600SGreg Clayton { 316b3e77600SGreg Clayton } 317b3e77600SGreg Clayton 318b3e77600SGreg Clayton RegisterContextSP 319a4d8747dSGreg Clayton OperatingSystemPython::CreateRegisterContextForThread (Thread *thread, addr_t reg_data_addr) 320b3e77600SGreg Clayton { 321435ce139SGreg Clayton RegisterContextSP reg_ctx_sp; 322a4d8747dSGreg Clayton if (!m_interpreter || !m_python_object_sp || !thread) 323160c9d81SGreg Clayton return reg_ctx_sp; 324160c9d81SGreg Clayton 325160c9d81SGreg Clayton if (!IsOperatingSystemPluginThread(thread->shared_from_this())) 326160c9d81SGreg Clayton return reg_ctx_sp; 3271c22be69SGreg Clayton 32885e276b8SJim Ingham // First thing we have to do is get the API lock, and the run lock. We're going to change the thread 32985e276b8SJim Ingham // content of the process, and we're going to use python, which requires the API lock to do it. 33085e276b8SJim Ingham // So get & hold that. This is a recursive lock so we can grant it to any Python code called on the stack below us. 33185e276b8SJim Ingham Target &target = m_process->GetTarget(); 33285e276b8SJim Ingham Mutex::Locker api_locker (target.GetAPIMutex()); 33385e276b8SJim Ingham 3345160ce5cSGreg Clayton Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD)); 3351c22be69SGreg Clayton 336198125a8SEnrico Granata auto lock = m_interpreter->AcquireInterpreterLock(); // to make sure python objects stays alive 337ead45e01SGreg Clayton if (reg_data_addr != LLDB_INVALID_ADDRESS) 338ead45e01SGreg Clayton { 339ead45e01SGreg Clayton // The registers data is in contiguous memory, just create the register 340ead45e01SGreg Clayton // context using the address provided 341ead45e01SGreg Clayton if (log) 342160c9d81SGreg Clayton log->Printf ("OperatingSystemPython::CreateRegisterContextForThread (tid = 0x%" PRIx64 ", 0x%" PRIx64 ", reg_data_addr = 0x%" PRIx64 ") creating memory register context", 343160c9d81SGreg Clayton thread->GetID(), 344160c9d81SGreg Clayton thread->GetProtocolID(), 345160c9d81SGreg Clayton reg_data_addr); 346ead45e01SGreg Clayton reg_ctx_sp.reset (new RegisterContextMemory (*thread, 0, *GetDynamicRegisterInfo (), reg_data_addr)); 347ead45e01SGreg Clayton } 348ead45e01SGreg Clayton else 349ead45e01SGreg Clayton { 350ead45e01SGreg Clayton // No register data address is provided, query the python plug-in to let 351ead45e01SGreg Clayton // it make up the data as it sees fit 3521c22be69SGreg Clayton if (log) 353160c9d81SGreg Clayton log->Printf ("OperatingSystemPython::CreateRegisterContextForThread (tid = 0x%" PRIx64 ", 0x%" PRIx64 ") fetching register data from python", 354160c9d81SGreg Clayton thread->GetID(), 355160c9d81SGreg Clayton thread->GetProtocolID()); 3561c22be69SGreg Clayton 3570641ca1aSZachary Turner StructuredData::StringSP reg_context_data = m_interpreter->OSPlugin_RegisterContextData(m_python_object_sp, thread->GetID()); 358435ce139SGreg Clayton if (reg_context_data) 359435ce139SGreg Clayton { 3600641ca1aSZachary Turner std::string value = reg_context_data->GetValue(); 3610641ca1aSZachary Turner DataBufferSP data_sp(new DataBufferHeap(value.c_str(), value.length())); 362435ce139SGreg Clayton if (data_sp->GetByteSize()) 363435ce139SGreg Clayton { 364435ce139SGreg Clayton RegisterContextMemory *reg_ctx_memory = new RegisterContextMemory (*thread, 0, *GetDynamicRegisterInfo (), LLDB_INVALID_ADDRESS); 365435ce139SGreg Clayton if (reg_ctx_memory) 366435ce139SGreg Clayton { 367435ce139SGreg Clayton reg_ctx_sp.reset(reg_ctx_memory); 368435ce139SGreg Clayton reg_ctx_memory->SetAllRegisterData (data_sp); 369435ce139SGreg Clayton } 370435ce139SGreg Clayton } 371435ce139SGreg Clayton } 372ead45e01SGreg Clayton } 373cbd79b6cSEnrico Granata // if we still have no register data, fallback on a dummy context to avoid crashing 374cbd79b6cSEnrico Granata if (!reg_ctx_sp) 375cbd79b6cSEnrico Granata { 376cbd79b6cSEnrico Granata if (log) 377cbd79b6cSEnrico Granata log->Printf ("OperatingSystemPython::CreateRegisterContextForThread (tid = 0x%" PRIx64 ") forcing a dummy register context", thread->GetID()); 378cbd79b6cSEnrico Granata reg_ctx_sp.reset(new RegisterContextDummy(*thread,0,target.GetArchitecture().GetAddressByteSize())); 379cbd79b6cSEnrico Granata } 380b3e77600SGreg Clayton return reg_ctx_sp; 381b3e77600SGreg Clayton } 382b3e77600SGreg Clayton 383b3e77600SGreg Clayton StopInfoSP 384b3e77600SGreg Clayton OperatingSystemPython::CreateThreadStopReason (lldb_private::Thread *thread) 385b3e77600SGreg Clayton { 386b3e77600SGreg Clayton // We should have gotten the thread stop info from the dictionary of data for 387b3e77600SGreg Clayton // the thread in the initial call to get_thread_info(), this should have been 388b3e77600SGreg Clayton // cached so we can return it here 389b3e77600SGreg Clayton StopInfoSP stop_info_sp; //(StopInfo::CreateStopReasonWithSignal (*thread, SIGSTOP)); 390b3e77600SGreg Clayton return stop_info_sp; 391b3e77600SGreg Clayton } 392b3e77600SGreg Clayton 393a4d8747dSGreg Clayton lldb::ThreadSP 394a4d8747dSGreg Clayton OperatingSystemPython::CreateThread (lldb::tid_t tid, addr_t context) 395a4d8747dSGreg Clayton { 3965160ce5cSGreg Clayton Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD)); 397a4d8747dSGreg Clayton 398a4d8747dSGreg Clayton if (log) 399a4d8747dSGreg Clayton log->Printf ("OperatingSystemPython::CreateThread (tid = 0x%" PRIx64 ", context = 0x%" PRIx64 ") fetching register data from python", tid, context); 400a4d8747dSGreg Clayton 401a4d8747dSGreg Clayton if (m_interpreter && m_python_object_sp) 402a4d8747dSGreg Clayton { 403a4d8747dSGreg Clayton // First thing we have to do is get the API lock, and the run lock. We're going to change the thread 404a4d8747dSGreg Clayton // content of the process, and we're going to use python, which requires the API lock to do it. 405a4d8747dSGreg Clayton // So get & hold that. This is a recursive lock so we can grant it to any Python code called on the stack below us. 406a4d8747dSGreg Clayton Target &target = m_process->GetTarget(); 407a4d8747dSGreg Clayton Mutex::Locker api_locker (target.GetAPIMutex()); 408a4d8747dSGreg Clayton 409198125a8SEnrico Granata auto lock = m_interpreter->AcquireInterpreterLock(); // to make sure thread_info_dict stays alive 4100641ca1aSZachary Turner StructuredData::DictionarySP thread_info_dict = m_interpreter->OSPlugin_CreateThread(m_python_object_sp, tid, context); 411e98008ccSGreg Clayton std::vector<bool> core_used_map; 412a4d8747dSGreg Clayton if (thread_info_dict) 413a4d8747dSGreg Clayton { 414b3ae8761SGreg Clayton ThreadList core_threads(m_process); 415a4d8747dSGreg Clayton ThreadList &thread_list = m_process->GetThreadList(); 416a4d8747dSGreg Clayton bool did_create = false; 4170641ca1aSZachary Turner ThreadSP thread_sp(CreateThreadFromThreadInfo(*thread_info_dict, core_threads, thread_list, core_used_map, &did_create)); 418a4d8747dSGreg Clayton if (did_create) 419a4d8747dSGreg Clayton thread_list.AddThread(thread_sp); 420a4d8747dSGreg Clayton return thread_sp; 421a4d8747dSGreg Clayton } 422a4d8747dSGreg Clayton } 423a4d8747dSGreg Clayton return ThreadSP(); 424a4d8747dSGreg Clayton } 425a4d8747dSGreg Clayton 426a4d8747dSGreg Clayton 427b3e77600SGreg Clayton 428b3e77600SGreg Clayton #endif // #ifndef LLDB_DISABLE_PYTHON 429