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

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_ignoreset.cpp22 void IgnoreSet::Add(u32 stack_id) { argument
26 if (stacks_[i] == stack_id)
29 stacks_[size_++] = stack_id;
H A Dtsan_ignoreset.h25 void Add(u32 stack_id);
H A Dtsan_rtl_report.cpp107 ReportStack *SymbolizeStackId(u32 stack_id) { argument
108 if (stack_id == 0)
110 StackTrace stack = StackDepotGet(stack_id);
365 void ScopedReportBase::AddSleep(u32 stack_id) { argument
366 rep_->sleep = SymbolizeStackId(stack_id);
H A Dtsan_rtl.h597 void AddSleep(u32 stack_id);
712 ReportStack *SymbolizeStackId(u32 stack_id);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_origin.h39 // (stack_id, prev_id) -> id, where
40 // * stack_id describes the event.
49 // marked with stack_id.
88 u32 stack_id = ChainedOriginDepotGet(getChainedId(), &prev_id); local
89 if (stack) *stack = StackDepotGet(stack_id);
103 u32 stack_id = StackDepotPut(*stack); local
104 CHECK(stack_id);
105 CHECK((stack_id & kHeapIdMask) == stack_id);
106 return Origin(stack_id);
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Djitprofiling.c104 * in the stack_id field in the iJIT_Method_NIDS structure, as VTune fills it.
190 ((piJIT_Method_NIDS) EventSpecificData)->stack_id =
220 ((piJIT_Method_NIDS) EventSpecificData)->stack_id =
223 if (((piJIT_Method_NIDS) EventSpecificData)->stack_id
225 ((piJIT_Method_NIDS) EventSpecificData)->stack_id =
H A Djitprofiling.h154 unsigned int stack_id; member in struct:_iJIT_Method_NIDS
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_thread.h42 destructor_iterations(GetPthreadDestructorIterations()), stack_id(0),
46 u32 stack_id; member in class:__asan::AsanThreadContext
H A Dasan_globals.cpp53 u32 stack_id; member in struct:__asan::GlobalRegistrationSite
103 return grs.stack_id;
361 u32 stack_id = StackDepotPut(stack); local
368 GlobalRegistrationSite site = {stack_id, &globals[0], &globals[n - 1]};
372 Printf("=== ID %d; %p %p\n", stack_id, &globals[0], &globals[n - 1]);
H A Dasan_thread.cpp32 stack_id = StackDepotPut(*args->stack);
H A Dasan_descriptions.cpp61 StackDepotGet(context->stack_id).Print();
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DStackFrameList.h40 /// Retrieve the stack frame with the given ID \p stack_id.
41 lldb::StackFrameSP GetFrameWithStackID(const StackID &stack_id);
H A DThread.h84 ThreadEventData(const lldb::ThreadSP thread_sp, const StackID &stack_id);
417 virtual lldb::StackFrameSP GetFrameWithStackID(const StackID &stack_id) { argument
418 if (stack_id.IsValid())
419 return GetStackFrameList()->GetFrameWithStackID(stack_id);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DStackFrameList.cpp732 const StackID &stack_id) {
733 return stack_sp->GetStackID() < stack_id;
736 StackFrameSP StackFrameList::GetFrameWithStackID(const StackID &stack_id) { argument
739 if (stack_id.IsValid()) {
747 std::lower_bound(begin, end, stack_id, CompareStackID);
749 if ((*pos)->GetStackID() == stack_id)
755 if (frame_sp && frame_sp->GetStackID() == stack_id)
731 CompareStackID(const StackFrameSP &stack_sp, const StackID &stack_id) argument
H A DThread.cpp167 const StackID &stack_id)
168 : m_thread_sp(thread_sp), m_stack_id(stack_id) {}
196 StackID stack_id; local
199 stack_id = event_data->GetStackID();
200 return stack_id;
166 ThreadEventData(const lldb::ThreadSP thread_sp, const StackID &stack_id) argument
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_common.cpp378 static uptr GetCallerPC(u32 stack_id, StackDepotReverseMap *map) { argument
379 CHECK(stack_id);
380 StackTrace stack = map->Get(stack_id);
401 u32 stack_id = m.stack_trace_id(); local
403 if (stack_id > 0)
404 caller_pc = GetCallerPC(stack_id, param->stack_depot_reverse_map);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-converter.cpp229 unsigned stack_id = siblings[0]->ExtraData.id; local
230 NodeStore.push_front({FuncId, Parent, {}, {stack_id, std::move(siblings)}});

Completed in 172 milliseconds