| /freebsd-12.1/contrib/compiler-rt/lib/msan/ |
| H A D | msan_origin.h | 89 u32 stack_id = ChainedOriginDepotGet(getChainedId(), &prev_id); in getNextChainedOrigin() local 90 if (stack) *stack = StackDepotGet(stack_id); in getNextChainedOrigin() 104 u32 stack_id = StackDepotPut(*stack); in CreateHeapOrigin() local 105 CHECK(stack_id); in CreateHeapOrigin() 106 CHECK((stack_id & kHeapIdMask) == stack_id); in CreateHeapOrigin() 107 return Origin(stack_id); in CreateHeapOrigin()
|
| /freebsd-12.1/contrib/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_ignoreset.cc | 23 void IgnoreSet::Add(u32 stack_id) { in Add() argument 27 if (stacks_[i] == stack_id) in Add() 30 stacks_[size_++] = stack_id; in Add()
|
| H A D | tsan_ignoreset.h | 26 void Add(u32 stack_id);
|
| H A D | tsan_rtl_report.cc | 108 ReportStack *SymbolizeStackId(u32 stack_id) { in SymbolizeStackId() argument 109 if (stack_id == 0) in SymbolizeStackId() 111 StackTrace stack = StackDepotGet(stack_id); in SymbolizeStackId() 365 void ScopedReportBase::AddSleep(u32 stack_id) { in AddSleep() argument 366 rep_->sleep = SymbolizeStackId(stack_id); in AddSleep()
|
| H A D | tsan_rtl.h | 593 void AddSleep(u32 stack_id); 707 ReportStack *SymbolizeStackId(u32 stack_id);
|
| /freebsd-12.1/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ |
| H A D | jitprofiling.c | 191 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = in iJIT_NotifyEvent() 221 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = in iJIT_NotifyEvent() 224 if (((piJIT_Method_NIDS) EventSpecificData)->stack_id in iJIT_NotifyEvent() 226 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = in iJIT_NotifyEvent()
|
| H A D | jitprofiling.h | 155 unsigned int stack_id; member
|
| /freebsd-12.1/contrib/compiler-rt/lib/asan/ |
| H A D | asan_globals.cc | 54 u32 stack_id; member 104 return grs.stack_id; in FindRegistrationSite() 363 u32 stack_id = StackDepotPut(stack); in __asan_register_globals() local 370 GlobalRegistrationSite site = {stack_id, &globals[0], &globals[n - 1]}; in __asan_register_globals() 374 Printf("=== ID %d; %p %p\n", stack_id, &globals[0], &globals[n - 1]); in __asan_register_globals()
|
| H A D | asan_thread.h | 43 destructor_iterations(GetPthreadDestructorIterations()), stack_id(0), in AsanThreadContext() 47 u32 stack_id; variable
|
| H A D | asan_thread.cc | 33 stack_id = StackDepotPut(*args->stack); in OnCreated()
|
| H A D | asan_descriptions.cc | 62 StackDepotGet(context->stack_id).Print(); in DescribeThread()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | StackFrameList.cpp | 724 const StackID &stack_id) { in CompareStackID() argument 725 return stack_sp->GetStackID() < stack_id; in CompareStackID() 728 StackFrameSP StackFrameList::GetFrameWithStackID(const StackID &stack_id) { in GetFrameWithStackID() argument 731 if (stack_id.IsValid()) { in GetFrameWithStackID() 739 std::lower_bound(begin, end, stack_id, CompareStackID); in GetFrameWithStackID() 741 if ((*pos)->GetStackID() == stack_id) in GetFrameWithStackID() 747 if (frame_sp && frame_sp->GetStackID() == stack_id) in GetFrameWithStackID()
|
| H A D | Thread.cpp | 186 const StackID &stack_id) in ThreadEventData() argument 187 : m_thread_sp(thread_sp), m_stack_id(stack_id) {} in ThreadEventData() 215 StackID stack_id; in GetStackIDFromEvent() local 218 stack_id = event_data->GetStackID(); in GetStackIDFromEvent() 219 return stack_id; in GetStackIDFromEvent()
|
| /freebsd-12.1/contrib/compiler-rt/lib/lsan/ |
| H A D | lsan_common.cc | 379 static uptr GetCallerPC(u32 stack_id, StackDepotReverseMap *map) { in GetCallerPC() argument 380 CHECK(stack_id); in GetCallerPC() 381 StackTrace stack = map->Get(stack_id); in GetCallerPC() 402 u32 stack_id = m.stack_trace_id(); in MarkInvalidPCCb() local 404 if (stack_id > 0) in MarkInvalidPCCb() 405 caller_pc = GetCallerPC(stack_id, param->stack_depot_reverse_map); in MarkInvalidPCCb()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/ |
| H A D | Thread.h | 89 ThreadEventData(const lldb::ThreadSP thread_sp, const StackID &stack_id); 448 virtual lldb::StackFrameSP GetFrameWithStackID(const StackID &stack_id) { in GetFrameWithStackID() argument 449 if (stack_id.IsValid()) in GetFrameWithStackID() 450 return GetStackFrameList()->GetFrameWithStackID(stack_id); in GetFrameWithStackID()
|
| H A D | StackFrameList.h | 44 lldb::StackFrameSP GetFrameWithStackID(const StackID &stack_id);
|
| /freebsd-12.1/contrib/llvm/tools/llvm-xray/ |
| H A D | xray-converter.cpp | 235 unsigned stack_id = siblings[0]->ExtraData.id; in findOrCreateStackNode() local 236 NodeStore.push_front({FuncId, Parent, {}, {stack_id, std::move(siblings)}}); in findOrCreateStackNode()
|