Home
last modified time | relevance | path

Searched refs:ThreadID (Results 1 – 24 of 24) sorted by relevance

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/
H A Dsegv_handler_posix.cpp76 uint64_t ThreadID = gwp_asan::getThreadID(); in printHeader() local
79 if (ThreadID == gwp_asan::kInvalidThreadID) in printHeader()
82 snprintf(ThreadBuffer, kThreadBufferLen, "%" PRIu64, ThreadID); in printHeader()
134 uint64_t ThreadID = __gwp_asan_get_deallocation_thread_id(AllocMeta); in dumpReport() local
135 if (ThreadID == gwp_asan::kInvalidThreadID) in dumpReport()
138 Printf("0x%zx was deallocated by thread %zu here:\n", ErrorPtr, ThreadID); in dumpReport()
145 uint64_t ThreadID = __gwp_asan_get_allocation_thread_id(AllocMeta); in dumpReport() local
146 if (ThreadID == gwp_asan::kInvalidThreadID) in dumpReport()
149 Printf("0x%zx was allocated by thread %zu here:\n", ErrorPtr, ThreadID); in dumpReport()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DThreadPool.cpp28 for (unsigned ThreadID = 0; ThreadID < ThreadCount; ++ThreadID) { in ThreadPool() local
29 Threads.emplace_back([S, ThreadID, this] { in ThreadPool()
30 S.apply_thread_strategy(ThreadID); in ThreadPool()
H A DParallel.cpp98 void work(ThreadPoolStrategy S, unsigned ThreadID) { in work() argument
99 S.apply_thread_strategy(ThreadID); in work()
/freebsd-13.1/contrib/llvm-project/llvm/lib/XRay/
H A DBlockIndexer.cpp67 CurrentBlock.ThreadID = R.tid(); in visit()
85 Indices.insert({{CurrentBlock.ProcessID, CurrentBlock.ThreadID}, {}}); in flush()
86 It->second.push_back({CurrentBlock.ProcessID, CurrentBlock.ThreadID, in flush()
90 CurrentBlock.ThreadID = 0; in flush()
H A DProfile.cpp198 using ThreadProfileIndexMap = DenseMap<Profile::ThreadID, PathDataMapPtr>; in mergeProfilesByThread()
309 P.addBlock(Profile::Block{Profile::ThreadID{Header.Thread}, in loadProfile()
333 DenseMap<Profile::ThreadID, std::vector<StackEntry>> ThreadStacks; in profileFromTrace()
334 DenseMap<Profile::ThreadID, DenseMap<Profile::PathID, Profile::Data>> in profileFromTrace()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Dcommon.cpp46 AllocationTrace.ThreadID = getThreadID(); in RecordAllocation()
48 DeallocationTrace.ThreadID = kInvalidThreadID; in RecordAllocation()
53 DeallocationTrace.ThreadID = getThreadID(); in RecordDeallocation()
H A Dcrash_handler.cpp111 return AllocationMeta->AllocationTrace.ThreadID; in __gwp_asan_get_allocation_thread_id()
135 return AllocationMeta->DeallocationTrace.ThreadID; in __gwp_asan_get_deallocation_thread_id()
H A Dcommon.h63 uint64_t ThreadID = kInvalidThreadID; member
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/XRay/
H A DProfile.h53 using ThreadID = uint64_t;
63 ThreadID Thread;
H A DBlockIndexer.h30 int32_t ThreadID; member
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DThreadSpec.cpp36 spec_dict.GetValueForKeyAsInteger(GetKey(OptionNames::ThreadID), tid); in CreateFromStructuredData()
59 data_dict_sp->AddIntegerItem(GetKey(OptionNames::ThreadID), m_tid); in SerializeToStructuredData()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreLowerThreadLocal.cpp161 Value *ThreadID = Builder.CreateCall(GetID, {}); in lowerGlobal() local
163 {Builder.getInt64(0), ThreadID}); in lowerGlobal()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadSpec.h112 ThreadID, enumerator
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DFormatEntity.h59 ThreadID, enumerator
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp1316 UpLoc, ThreadID, in emitTaskOutlinedFunction()
1473 llvm::Value *ThreadID = nullptr; in getThreadID() local
1478 ThreadID = I->second.ThreadID; in getThreadID()
1479 if (ThreadID != nullptr) in getThreadID()
1480 return ThreadID; in getThreadID()
1502 Elem.second.ThreadID = ThreadID; in getThreadID()
1504 return ThreadID; in getThreadID()
1523 Elem.second.ThreadID = Call; in getThreadID()
2163 CGF.EmitStoreOfScalar(ThreadID, in emitThreadIDAddress()
5152 DepTaskArgs[1] = ThreadID; in emitTaskCall()
[all …]
H A DCGOpenMPRuntimeGPU.cpp1619 llvm::Value *ThreadID = RT.getGPUThreadID(CGF); in emitCriticalRegion() local
1643 CGF.Builder.CreateICmpEQ(ThreadID, CounterVal); in emitCriticalRegion()
2106 llvm::Value *ThreadID = RT.getGPUThreadID(CGF); in emitInterWarpCopyFunction() local
2230 Bld.CreateICmpULT(ThreadID, NumWarpsVal, "is_active_thread"); in emitInterWarpCopyFunction()
2238 {llvm::Constant::getNullValue(CGM.Int64Ty), ThreadID}); in emitInterWarpCopyFunction()
H A DCGOpenMPRuntime.h431 llvm::Value *ThreadID; member
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h8350 Stmt *ThreadID = nullptr; variable
8353 void setThreadID(Expr *TID) { ThreadID = TID; } in setThreadID()
8368 OMPFilterClause(Expr *ThreadID, Stmt *HelperE, in OMPFilterClause() argument
8372 OMPClauseWithPreInit(this), LParenLoc(LParenLoc), ThreadID(ThreadID) { in OMPFilterClause()
8384 Expr *getThreadID() { return cast<Expr>(ThreadID); } in getThreadID()
8387 Expr *getThreadID() const { return cast<Expr>(ThreadID); } in getThreadID()
8389 child_range children() { return child_range(&ThreadID, &ThreadID + 1); } in children()
8392 return const_child_range(&ThreadID, &ThreadID + 1); in children()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp151 Definition("id", EntryType::ThreadID),
320 ENUM_TO_CSTR(ThreadID); in TypeToCString()
1182 case Entry::Type::ThreadID: in Format()
2281 if (entry.type != Entry::Type::ThreadID && in ParseInternal()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp490 Value *ThreadID = getOrCreateThreadID(Ident); in createParallel() local
495 Ident, ThreadID, in createParallel()
504 Ident, ThreadID, in createParallel()
679 Value *SerializedParallelCallArgs[] = {Ident, ThreadID}; in createParallel()
689 Value *EndArgs[] = {Ident, ThreadID}; in createParallel()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DOptions.td75 Arg<"ThreadID">, Desc<"The breakpoint stops only for the thread whose TID "
943 Arg<"ThreadID">, Desc<"The stop hook is run only for the thread whose TID "
1053 Arg<"ThreadID">, Desc<"List the thread plans for this TID, can be "
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h2252 OMPClause *RebuildOMPFilterClause(Expr *ThreadID, SourceLocation StartLoc, in RebuildOMPFilterClause() argument
2255 return getSema().ActOnOpenMPFilterClause(ThreadID, StartLoc, LParenLoc, in RebuildOMPFilterClause()
9505 ExprResult ThreadID = getDerived().TransformExpr(C->getThreadID()); in TransformOMPFilterClause() local
9506 if (ThreadID.isInvalid()) in TransformOMPFilterClause()
9508 return getDerived().RebuildOMPFilterClause(ThreadID.get(), C->getBeginLoc(), in TransformOMPFilterClause()
H A DSemaOpenMP.cpp15382 OMPClause *Sema::ActOnOpenMPFilterClause(Expr *ThreadID, in ActOnOpenMPFilterClause() argument
15386 Expr *ValExpr = ThreadID; in ActOnOpenMPFilterClause()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h11100 OMPClause *ActOnOpenMPFilterClause(Expr *ThreadID, SourceLocation StartLoc,