Searched refs:ThreadID (Results 1 - 17 of 17) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/XRay/
H A DBlockIndexer.cpp67 CurrentBlock.ThreadID = R.tid();
85 Indices.insert({{CurrentBlock.ProcessID, CurrentBlock.ThreadID}, {}});
86 It->second.push_back({CurrentBlock.ProcessID, CurrentBlock.ThreadID,
90 CurrentBlock.ThreadID = 0;
H A DProfile.cpp198 using ThreadProfileIndexMap = DenseMap<Profile::ThreadID, PathDataMapPtr>;
309 P.addBlock(Profile::Block{Profile::ThreadID{Header.Thread},
333 DenseMap<Profile::ThreadID, std::vector<StackEntry>> ThreadStacks;
334 DenseMap<Profile::ThreadID, DenseMap<Profile::PathID, Profile::Data>>
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DThreadPool.cpp31 for (unsigned ThreadID = 0; ThreadID < ThreadCount; ++ThreadID) {
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Dguarded_pool_allocator.cpp71 AllocationTrace.ThreadID = getThreadID();
74 DeallocationTrace.ThreadID = kInvalidThreadID;
102 DeallocationTrace.ThreadID = getThreadID();
372 options::Printf_t Printf, uint64_t ThreadID) {
428 if (ThreadID == GuardedPoolAllocator::kInvalidThreadID)
431 snprintf(ThreadBuffer, kThreadBufferLen, "%" PRIu64, ThreadID);
443 if (Meta->DeallocationTrace.ThreadID ==
448 Meta->DeallocationTrace.ThreadID);
459 if (Meta->AllocationTrace.ThreadID == GuardedPoolAllocator::kInvalidThreadID)
463 Meta->AllocationTrace.ThreadID);
371 printErrorType(Error E, uintptr_t AccessPtr, AllocationMetadata *Meta, options::Printf_t Printf, uint64_t ThreadID) argument
507 uint64_t ThreadID = getThreadID(); local
[all...]
H A Dguarded_pool_allocator.h64 uint64_t ThreadID = kInvalidThreadID; member in struct:gwp_asan::GuardedPoolAllocator::AllocationMetadata::CallSiteInfo
/freebsd-11-stable/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 in struct:llvm::xray::BlockIndexer::Block
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadSpec.cpp38 spec_dict.GetValueForKeyAsInteger(GetKey(OptionNames::ThreadID), tid);
61 data_dict_sp->AddIntegerItem(GetKey(OptionNames::ThreadID), m_tid);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadSpec.h110 ThreadID, member in class:lldb_private::ThreadSpec::OptionNames
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/
H A DNativeThreadListDarwin.cpp191 if (m_threads[idx]->ThreadID() == globally_unique_id)
268 return m_threads[idx]->ThreadID();
278 return thread_sp->ThreadID();
514 const DNBThreadResumeAction *thread_action = thread_actions.GetActionForThread (thread->ThreadID(), true);
518 if (solo_thread == thread->ThreadID())
531 new_threads[idx]->ThreadID(),
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreLowerThreadLocal.cpp211 Value *ThreadID = Builder.CreateCall(GetID, {}); local
213 {Builder.getInt64(0), ThreadID});
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp313 Value *ThreadID = getOrCreateThreadID(Ident); local
318 Ident, ThreadID,
327 Ident, ThreadID,
592 Value *SerializedParallelCallArgs[] = {Ident, ThreadID};
602 Value *EndArgs[] = {Ident, ThreadID};
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DFormatEntity.h58 ThreadID, member in class:lldb_private::FormatEntity::Entry::Type
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntimeNVPTX.cpp2157 llvm::Value *ThreadID = getThreadID(CGF, Loc);
2160 {RTLoc, ThreadID});
2529 llvm::Value *ThreadID = getThreadID(CGF, Loc);
2530 llvm::Value *Args[] = {RTLoc, ThreadID};
2636 llvm::Value *ThreadID = getThreadID(CGF, Loc);
2639 {RTLoc, ThreadID});
2698 llvm::Value *ThreadID = getThreadID(CGF, Loc);
2699 llvm::Value *Args[] = {RTLoc, ThreadID};
2769 llvm::Value *ThreadID = getNVPTXThreadID(CGF);
2793 CGF.Builder.CreateICmpEQ(ThreadID, CounterVa
[all...]
H A DCGOpenMPRuntime.cpp78 /// Get an LValue for the current ThreadID variable.
113 assert(ThreadIDVar != nullptr && "No ThreadID in OpenMP region.");
194 assert(ThreadIDVar != nullptr && "No ThreadID in OpenMP region.");
201 /// Get an LValue for the current ThreadID variable.
274 /// Get an LValue for the current ThreadID variable.
1545 llvm::Value *ThreadID = getThreadID(CGF, D.getBeginLoc());
1548 UpLoc, ThreadID,
1695 // OpenMPLocThreadIDMap may have null DebugLoc and non-null ThreadID, if
1743 llvm::Value *ThreadID = nullptr; local
1748 ThreadID
5272 llvm::Value *ThreadID = getThreadID(CGF, Loc); local
5371 llvm::Value *ThreadID = getThreadID(CGF, Loc); local
10988 llvm::Value *ThreadID = getThreadID(CGF, CVD->getBeginLoc()); local
[all...]
H A DCGOpenMPRuntime.h366 /// Stores debug location and ThreadID for the function.
369 llvm::Value *ThreadID; member in struct:clang::CodeGen::CGOpenMPRuntime::DebugLocThreadIdTy
866 /// \a D. This outlined function has type void(*)(kmp_int32 *ThreadID,
878 /// \a D. This outlined function has type void(*)(kmp_int32 *ThreadID,
890 /// outlined function has type void(*)(kmp_int32 ThreadID, struct task_t*
1733 /// \a D. This outlined function has type void(*)(kmp_int32 *ThreadID,
1747 /// \a D. This outlined function has type void(*)(kmp_int32 *ThreadID,
1761 /// outlined function has type void(*)(kmp_int32 ThreadID, struct task_t*
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp162 ENTRY("id", ThreadID),
325 ENUM_TO_CSTR(ThreadID);
1191 case Entry::Type::ThreadID:
2268 if (entry.type != Entry::Type::ThreadID &&

Completed in 225 milliseconds