Home
last modified time | relevance | path

Searched refs:threadId (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/tools/lldb-vscode/step/
H A DTestVSCode_step.py45 x1 = self.get_local_as_int('x', threadId=tid)
46 (src1, line1) = self.get_source_and_line(threadId=tid)
51 self.stepIn(threadId=tid, waitForStop=True)
52 x2 = self.get_local_as_int('x', threadId=tid)
53 (src2, line2) = self.get_source_and_line(threadId=tid)
59 self.stepOut(threadId=tid, waitForStop=True)
60 x3 = self.get_local_as_int('x', threadId=tid)
61 (src3, line3) = self.get_source_and_line(threadId=tid)
67 self.stepOver(threadId=tid, waitForStop=True)
68 x4 = self.get_local_as_int('x', threadId=tid)
[all …]
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/
H A Dlldbvscode_testcase.py149 response = self.vscode.request_stackTrace(threadId=threadId,
165 threadId=threadId,
172 stackFrames = self.get_stackFrames(threadId=threadId,
194 def get_local_as_int(self, name, threadId=None): argument
195 value = self.vscode.get_local_variable_value(name, threadId=threadId)
211 def stepIn(self, threadId=None, waitForStop=True): argument
212 self.vscode.request_stepIn(threadId=threadId)
217 def stepOver(self, threadId=None, waitForStop=True): argument
218 self.vscode.request_next(threadId=threadId)
223 def stepOut(self, threadId=None, waitForStop=True): argument
[all …]
H A Dvscode.py402 if threadId is None:
404 if threadId is None:
420 threadId=threadId)
444 threadId=threadId)
448 threadId=threadId)
452 threadId=threadId)
460 threadId=threadId)
569 if threadId is None:
597 threadId=threadId)
734 if threadId is None:
[all …]
/llvm-project-15.0.7/mlir/lib/Support/
H A DTiming.cpp178 TimerImpl(std::string &&name) : threadId(llvm::get_threadid()), name(name) {} in TimerImpl()
198 if (tid == threadId) in nest()
300 os << std::string(indent * 2, ' ') << name << " [" << threadId << "]" in dump()
302 if (threadId != markThreadId && markThreadId != 0) in dump()
306 child.second->dump(os, indent + 1, threadId); in dump()
309 child.second->dump(os, indent + 1, threadId); in dump()
399 uint64_t threadId; member in __anon672fa56d0211::TimerImpl
/llvm-project-15.0.7/openmp/libomptarget/DeviceRTL/src/
H A DWorkshare.cpp209 static void dispatch_init(IdentTy *loc, int32_t threadId, in dispatch_init()
215 ASSERT0(LT_FUSSY, threadId < tnum, in dispatch_init()
231 __kmpc_barrier(loc, threadId); in dispatch_init()
279 ForStaticChunk(lastiter, lb, ub, stride, chunk, threadId, tnum); in dispatch_init()
299 ForStaticChunk(lastiter, lb, ub, stride, chunk, threadId, tnum); in dispatch_init()
316 ForStaticNoChunk(lastiter, lb, ub, stride, chunk, threadId, tnum); in dispatch_init()
329 __kmpc_barrier(loc, threadId); in dispatch_init()
334 __kmpc_barrier(loc, threadId); in dispatch_init()
/llvm-project-15.0.7/lldb/test/API/tools/lldb-vscode/coreFile/
H A DTestVSCode_coreFile.py40 self.vscode.request_next(threadId=32259)
/llvm-project-15.0.7/llvm/test/CodeGen/DirectX/
H A Dcomput_ids.ll12 ; CHECK:call i32 @dx.op.threadId.i32(i32 93, i32 %{{.*}})
/llvm-project-15.0.7/openmp/runtime/src/
H A Dkmp_affinity.cpp1983 unsigned threadId; // "" member in apicThreadInfo
1998 if (aa->threadId < bb->threadId) in __kmp_affinity_cmp_apicThreadInfo_phys_id()
2000 if (aa->threadId > bb->threadId) in __kmp_affinity_cmp_apicThreadInfo_phys_id()
2229 threadInfo[nApics].threadId = threadInfo[nApics].apicId & maskT; in __kmp_affinity_create_apicid_map()
2265 unsigned lastThreadId = threadInfo[0].threadId; in __kmp_affinity_create_apicid_map()
2283 lastThreadId = threadInfo[i].threadId; in __kmp_affinity_create_apicid_map()
2299 lastThreadId = threadInfo[i].threadId; in __kmp_affinity_create_apicid_map()
2300 } else if (threadInfo[i].threadId != lastThreadId) { in __kmp_affinity_create_apicid_map()
2302 lastThreadId = threadInfo[i].threadId; in __kmp_affinity_create_apicid_map()
2362 hw_thread.ids[idx++] = threadInfo[i].threadId; in __kmp_affinity_create_apicid_map()
/llvm-project-15.0.7/llvm/tools/llvm-xray/
H A Dxray-stacks.cpp493 uint32_t threadId = iter.first; in printAllPerThread() local
496 printAll<AggType>(OS, FN, perThreadRoots, threadId, reportThreadId); in printAllPerThread()
/llvm-project-15.0.7/lldb/test/API/tools/lldb-vscode/variables/
H A DTestVSCode_variables.py372 expandable_expression["name"], frameIndex=0, threadId=None, context="repl"
/llvm-project-15.0.7/mlir/lib/Dialect/Linalg/Transforms/
H A DTiling.cpp279 Value threadId = threadIds[threadIdIdx]; in tileToForeachThreadOpImpl() local
291 b, loc, i + j * M, {offset, threadId, tileSizePerThread}); in tileToForeachThreadOpImpl()
/llvm-project-15.0.7/lld/ELF/
H A DSyntheticSections.cpp2848 parallelFor(0, concurrency, [&](size_t threadId) { in createSymbols() argument
2853 if ((shardId & (concurrency - 1)) != threadId) in createSymbols()
3319 parallelFor(0, concurrency, [&](size_t threadId) { in finalizeContents() argument
3325 if ((shardId & (concurrency - 1)) == threadId) in finalizeContents()
/llvm-project-15.0.7/llvm/docs/
H A DNVPTXUsage.rst228 ``threadId`` ``@llvm.nvvm.read.ptx.sreg.tid.*``