Home
last modified time | relevance | path

Searched refs:thread_ids (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/tools/lldb-server/
H A DTestGdbRemoteThreadsInStopReply.py58 thread_ids = threads_text.split(",")
60 self.assertEquals(len(thread_ids), len(pcs))
64 thread_pcs[int(thread_ids[i], 16)] = pcs[i]
/llvm-project-15.0.7/polly/lib/External/ppcg/
H A Dgpu.h388 isl_id_list *thread_ids; member
H A Dgpu.c1131 id = isl_id_list_get_id(kernel->thread_ids, i); in extract_block_size()
1160 isl_id_list_free(kernel->thread_ids); in ppcg_kernel_free()
3064 kernel->block_dim, kernel->thread_ids); in insert_context()
3556 filter = set_schedule_modulo(graft, kernel->thread_ids, in add_copies_group_shared()
3916 kernel->thread_ids = ppcg_scop_generate_names(gen->prog->scop, in gpu_create_kernel()
3918 kernel->thread_filter = set_schedule_modulo(node, kernel->thread_ids, in gpu_create_kernel()
H A Dcuda.c400 print_iterators(out, type, kernel->thread_ids, thread_dims); in print_kernel_iterators()
H A Dgpu_group.c1590 id = isl_id_list_get_id(kernel->thread_ids, i); in compute_privatization()
/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A DVSCode.h155 llvm::DenseSet<lldb::tid_t> thread_ids; member
H A Dlldb-vscode.cpp220 old_thread_ids.swap(g_vsc.thread_ids); in SendThreadStoppedEvent()
262 g_vsc.thread_ids.insert(thread.GetThreadID()); in SendThreadStoppedEvent()
270 auto end = g_vsc.thread_ids.end(); in SendThreadStoppedEvent()
271 auto pos = g_vsc.thread_ids.find(tid); in SendThreadStoppedEvent()
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/tools/lldb-server/
H A Dgdbremote_testcase.py769 thread_ids = []
772 thread_ids.extend(new_thread_infos)
773 return thread_ids
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h351 size_t GetCurrentThreadIDs(std::vector<lldb::tid_t> &thread_ids,
H A DGDBRemoteCommunicationClient.cpp2897 std::vector<lldb::tid_t> &thread_ids, bool &sequence_mutex_unavailable) { in GetCurrentThreadIDs() argument
2899 thread_ids.clear(); in GetCurrentThreadIDs()
2911 thread_ids.push_back(id.second); in GetCurrentThreadIDs()
2914 return thread_ids.size(); in GetCurrentThreadIDs()
H A DProcessGDBRemote.cpp1440 StringExtractorGDBRemote thread_ids{value}; in UpdateThreadIDsFromStopReplyThreadsValue() local
1443 auto pid_tid = thread_ids.GetPidTid(pid); in UpdateThreadIDsFromStopReplyThreadsValue()
1450 } while (thread_ids.GetChar() == ','); in UpdateThreadIDsFromStopReplyThreadsValue()
/llvm-project-15.0.7/polly/lib/CodeGen/
H A DPPCGCodeGeneration.cpp2112 isl_id *Id = isl_id_list_get_id(Kernel->thread_ids, i); in insertKernelIntrinsics()
2154 createFunc(LocalName[i], isl_id_list_get_id(Kernel->thread_ids, i), SizeT); in insertKernelCallsSPIR()