/freebsd/contrib/llvm-project/compiler-rt/lib/msan/ |
H A D | msan_origin.h | 88 u32 stack_id = ChainedOriginDepotGet(getChainedId(), &prev_id); in getNextChainedOrigin() local 89 if (stack) *stack = StackDepotGet(stack_id); in getNextChainedOrigin() 103 u32 stack_id = StackDepotPut(*stack); in CreateHeapOrigin() local 104 CHECK(stack_id); in CreateHeapOrigin() 105 CHECK((stack_id & kHeapIdMask) == stack_id); in CreateHeapOrigin() 106 return Origin(stack_id); in CreateHeapOrigin()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/nsan/ |
H A D | nsan_stats.cpp | 45 u32 stack_id = StackDepotPut(Stack); in UpdateEntry() local 46 typename MapT::Handle Handle(map, Key(check_ty, stack_id)); in UpdateEntry() 50 entry.stack_id = stack_id; in UpdateEntry() 132 StackDepotGet(entry.stack_id).Print(); in Print() 145 StackDepotGet(entry.stack_id).Print(); in Print()
|
H A D | nsan_stats.h | 63 __sanitizer::u32 stack_id = 0; member 78 __sanitizer::u32 stack_id = 0; member
|
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_ignoreset.cpp | 22 void IgnoreSet::Add(StackID stack_id) { in Add() argument 26 if (stacks_[i] == stack_id) in Add() 29 stacks_[size_++] = stack_id; in Add()
|
H A D | tsan_mutexset.cpp | 24 void MutexSet::AddAddr(uptr addr, StackID stack_id, bool write) { in AddAddr() argument 45 descs_[size_].stack_id = stack_id; in AddAddr()
|
H A D | tsan_mutexset.h | 27 StackID stack_id; member 42 void AddAddr(uptr addr, StackID stack_id, bool write); 81 void MutexSet::AddAddr(uptr addr, StackID stack_id, bool write) {} in AddAddr() argument
|
H A D | tsan_rtl_report.cpp | 92 ReportStack *SymbolizeStackId(u32 stack_id) { in SymbolizeStackId() argument 93 if (stack_id == 0) in SymbolizeStackId() 95 StackTrace stack = StackDepotGet(stack_id); in SymbolizeStackId() 196 int id = this->AddMutex(d.addr, d.stack_id); in AddMemoryAccess() 335 void ScopedReportBase::AddSleep(StackID stack_id) { in AddSleep() argument 336 rep_->sleep = SymbolizeStackId(stack_id); in AddSleep() 567 StackID stack_id = in RestoreStack() local 570 ev_addr, stack_id, is_write); in RestoreStack() 571 mset->AddAddr(ev_addr, stack_id, is_write); in RestoreStack()
|
H A D | tsan_ignoreset.h | 23 void Add(StackID stack_id);
|
H A D | tsan_rtl_mutex.cpp | 69 StackID stack_id, bool write) { in RecordMutexLock() argument 76 TraceMutexLock(thr, typ, pc, addr, stack_id); in RecordMutexLock() 77 thr->mset.AddAddr(addr, stack_id, write); in RecordMutexLock()
|
H A D | tsan_rtl.h | 417 void AddSleep(StackID stack_id); 515 ReportStack *SymbolizeStackId(StackID stack_id);
|
H A D | tsan_interface_ann.cpp | 444 rep.AddMutex(desc.addr, desc.stack_id); in ReportMutexHeldWrongContext()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITProfiling/ |
H A D | jitprofiling.c | 190 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = in iJIT_NotifyEvent() 220 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = in iJIT_NotifyEvent() 223 if (((piJIT_Method_NIDS) EventSpecificData)->stack_id in iJIT_NotifyEvent() 225 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = in iJIT_NotifyEvent()
|
H A D | jitprofiling.h | 154 unsigned int stack_id; member
|
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/ |
H A D | dfsan_origin.h | 67 u32 stack_id = GetChainedOriginDepot()->Get(getChainedId(), &prev_id); in getNextChainedOrigin() local 69 *stack = StackDepotGet(stack_id); in getNextChainedOrigin()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/ |
H A D | memprof_thread.h | 37 destructor_iterations(GetPthreadDestructorIterations()), stack_id(0), in MemprofThreadContext() 41 u32 stack_id; member
|
H A D | memprof_descriptions.cpp | 61 StackDepotGet(context->stack_id).Print(); in DescribeThread()
|
H A D | memprof_thread.cpp | 30 stack_id = StackDepotPut(*args->stack); in OnCreated()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_globals.cpp | 52 u32 stack_id; member 107 return grs.stack_id; in FindRegistrationSite() 370 u32 stack_id = StackDepotPut(stack); in __asan_register_globals() local 377 GlobalRegistrationSite site = {stack_id, &globals[0], &globals[n - 1]}; in __asan_register_globals() 381 Printf("=== ID %d; %p %p\n", stack_id, (void *)&globals[0], in __asan_register_globals()
|
H A D | asan_descriptions.cpp | 61 StackDepotGet(context->stack_id).Print(); in DescribeThread()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | StackFrameList.cpp | 759 const StackID &stack_id) { in CompareStackID() argument 760 return stack_sp->GetStackID() < stack_id; in CompareStackID() 763 StackFrameSP StackFrameList::GetFrameWithStackID(const StackID &stack_id) { in GetFrameWithStackID() argument 766 if (stack_id.IsValid()) { in GetFrameWithStackID() 774 std::lower_bound(begin, end, stack_id, CompareStackID); in GetFrameWithStackID() 776 if ((*pos)->GetStackID() == stack_id) in GetFrameWithStackID() 782 if (frame_sp && frame_sp->GetStackID() == stack_id) in GetFrameWithStackID()
|
H A D | Thread.cpp | 156 const StackID &stack_id) in ThreadEventData() argument 157 : m_thread_sp(thread_sp), m_stack_id(stack_id) {} in ThreadEventData() 185 StackID stack_id; in GetStackIDFromEvent() local 188 stack_id = event_data->GetStackID(); in GetStackIDFromEvent() 189 return stack_id; in GetStackIDFromEvent()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | Thread.h | 88 ThreadEventData(const lldb::ThreadSP thread_sp, const StackID &stack_id); 432 virtual lldb::StackFrameSP GetFrameWithStackID(const StackID &stack_id) { in GetFrameWithStackID() argument 433 if (stack_id.IsValid()) in GetFrameWithStackID() 434 return GetStackFrameList()->GetFrameWithStackID(stack_id); in GetFrameWithStackID()
|
H A D | StackFrameList.h | 43 lldb::StackFrameSP GetFrameWithStackID(const StackID &stack_id);
|
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_report.cpp | 501 u32 stack_id = 0; member 522 u32 stack_id = 0; member 641 result.stack_id = chunk.GetAllocStackId(); in CopyHeapChunk() 714 result.heap.stack_id = chunk.GetAllocStackId(); in FindBufferOverflowCandidate() 746 GetStackTraceFromId(candidate.heap.stack_id).Print(); in PrintHeapOrGlobalCandidate() 983 GetStackTraceFromId(heap.stack_id).Print(); in ~TailOverwrittenReport()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/ |
H A D | xray-converter.cpp | 238 unsigned stack_id = siblings[0]->ExtraData.id; in findOrCreateStackNode() local 239 NodeStore.push_front({FuncId, Parent, {}, {stack_id, std::move(siblings)}}); in findOrCreateStackNode()
|