Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/
H A Dsegv_handler_posix.cpp79 uint64_t ThreadID = gwp_asan::getThreadID(); in printHeader() local
82 if (ThreadID == gwp_asan::kInvalidThreadID) in printHeader()
85 snprintf(ThreadBuffer, kThreadBufferLen, "%" PRIu64, ThreadID); in printHeader()
167 uint64_t ThreadID = __gwp_asan_get_deallocation_thread_id(AllocMeta); in dumpReport() local
168 if (ThreadID == gwp_asan::kInvalidThreadID) in dumpReport()
171 Printf("0x%zx was deallocated by thread %zu here:\n", ErrorPtr, ThreadID); in dumpReport()
178 uint64_t ThreadID = __gwp_asan_get_allocation_thread_id(AllocMeta); in dumpReport() local
179 if (ThreadID == gwp_asan::kInvalidThreadID) in dumpReport()
182 Printf("0x%zx was allocated by thread %zu here:\n", ErrorPtr, ThreadID); in dumpReport()
/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/Support/
H A DThreadPool.cpp45 int ThreadID = Threads.size(); in grow() local
46 Threads.emplace_back([this, ThreadID] { in grow()
47 set_thread_name(formatv("llvm-worker-{0}", ThreadID)); in grow()
48 Strategy.apply_thread_strategy(ThreadID); in grow()
H A DParallel.cpp111 void work(ThreadPoolStrategy S, unsigned ThreadID) { in work() argument
112 threadIndex = ThreadID; in work()
113 S.apply_thread_strategy(ThreadID); in work()
/freebsd-14.2/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.cpp119 return AllocationMeta->AllocationTrace.ThreadID; in __gwp_asan_get_allocation_thread_id()
143 return AllocationMeta->DeallocationTrace.ThreadID; in __gwp_asan_get_deallocation_thread_id()
H A Dcommon.h84 uint64_t ThreadID = kInvalidThreadID; member
/freebsd-14.2/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-14.2/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-14.2/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreLowerThreadLocal.cpp160 Value *ThreadID = Builder.CreateCall(GetID, {}); in lowerGlobal() local
162 {Builder.getInt64(0), ThreadID}); in lowerGlobal()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadSpec.h112 ThreadID, enumerator
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DFormatEntity.h58 ThreadID, enumerator
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp1291 UpLoc, ThreadID, in emitTaskOutlinedFunction()
1411 ThreadID = I->second.ThreadID; in getThreadID()
1412 if (ThreadID != nullptr) in getThreadID()
1413 return ThreadID; in getThreadID()
1435 Elem.second.ThreadID = ThreadID; in getThreadID()
1437 return ThreadID; in getThreadID()
1457 Elem.second.ThreadID = Call; in getThreadID()
1954 CGF.EmitStoreOfScalar(ThreadID, in emitThreadIDAddress()
4528 DepTaskArgs[1] = ThreadID; in emitTaskCall()
4676 ThreadID, in emitTaskLoopCall()
[all …]
H A DCGOpenMPRuntimeGPU.cpp1352 llvm::Value *ThreadID = RT.getGPUThreadID(CGF); in emitCriticalRegion() local
1376 CGF.Builder.CreateICmpEQ(ThreadID, CounterVal); in emitCriticalRegion()
1759 llvm::Value *ThreadID = RT.getGPUThreadID(CGF); in emitInterWarpCopyFunction() local
1879 Bld.CreateICmpULT(ThreadID, NumWarpsVal, "is_active_thread"); in emitInterWarpCopyFunction()
1887 {llvm::Constant::getNullValue(CGM.Int64Ty), ThreadID}); in emitInterWarpCopyFunction()
H A DCGOpenMPRuntime.h398 llvm::Value *ThreadID; member
/freebsd-14.2/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp1167 /* global thread num*/ ThreadID, in targetParallelCallback()
1300 Value *ThreadID = getOrCreateThreadID(Ident); in createParallel() local
1312 Ident, ThreadID, in createParallel()
1321 Ident, ThreadID, in createParallel()
1438 ThreadID, ToBeDeletedVec); in createParallel()
1714 Value *ThreadID = getOrCreateThreadID(Ident); in createTask() local
1845 CI = Builder.CreateCall(&OutlinedFn, {ThreadID}); in createTask()
1863 Builder.CreateCall(TaskFn, {Ident, ThreadID, TaskData}); in createTask()
1897 Value *ThreadID = getOrCreateThreadID(Ident); in createTaskgroup() local
1902 Builder.CreateCall(TaskgroupFn, {Ident, ThreadID}); in createTaskgroup()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp151 Definition("id", EntryType::ThreadID),
312 ENUM_TO_CSTR(ThreadID); in TypeToCString()
1245 case Entry::Type::ThreadID: in Format()
2235 if (entry.type != Entry::Type::ThreadID && in ParseInternal()
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DOptions.td84 Arg<"ThreadID">, Desc<"The breakpoint stops only for the thread whose TID "
1004 Arg<"ThreadID">, Desc<"The stop hook is run only for the thread whose TID "
1114 Arg<"ThreadID">, Desc<"List the thread plans for this TID, can be "
1122 Arg<"ThreadID">, Completion<"ThreadID">,
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h2351 OMPClause *RebuildOMPFilterClause(Expr *ThreadID, SourceLocation StartLoc, in RebuildOMPFilterClause() argument
2354 return getSema().ActOnOpenMPFilterClause(ThreadID, StartLoc, LParenLoc, in RebuildOMPFilterClause()
10036 ExprResult ThreadID = getDerived().TransformExpr(C->getThreadID()); in TransformOMPFilterClause() local
10037 if (ThreadID.isInvalid()) in TransformOMPFilterClause()
10039 return getDerived().RebuildOMPFilterClause(ThreadID.get(), C->getBeginLoc(), in TransformOMPFilterClause()
H A DSemaOpenMP.cpp18069 OMPClause *Sema::ActOnOpenMPFilterClause(Expr *ThreadID, in ActOnOpenMPFilterClause() argument
18073 Expr *ValExpr = ThreadID; in ActOnOpenMPFilterClause()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h8715 OMPFilterClause(Expr *ThreadID, Stmt *HelperE, in OMPFilterClause() argument
8718 : OMPOneStmtClause(ThreadID, StartLoc, LParenLoc, EndLoc), in OMPFilterClause()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h12313 OMPClause *ActOnOpenMPFilterClause(Expr *ThreadID, SourceLocation StartLoc,