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

/freebsd-11.0-release/contrib/compiler-rt/lib/tsan/rtl/
H A Dtsan_ignoreset.cc23 void IgnoreSet::Add(u32 stack_id) { argument
27 if (stacks_[i] == stack_id)
30 stacks_[size_++] = stack_id;
H A Dtsan_ignoreset.h26 void Add(u32 stack_id);
H A Dtsan_rtl_report.cc99 ReportStack *SymbolizeStackId(u32 stack_id) { argument
100 if (stack_id == 0)
102 StackTrace stack = StackDepotGet(stack_id);
354 void ScopedReport::AddSleep(u32 stack_id) { argument
355 rep_->sleep = SymbolizeStackId(stack_id);
H A Dtsan_rtl.h537 void AddSleep(u32 stack_id);
616 ReportStack *SymbolizeStackId(u32 stack_id);
/freebsd-11.0-release/contrib/compiler-rt/lib/msan/
H A Dmsan_origin.h40 // (stack_id, prev_id) -> id, where
41 // * stack_id describes the event.
50 // marked with stack_id.
89 u32 stack_id = ChainedOriginDepotGet(getChainedId(), &prev_id); local
90 if (stack) *stack = StackDepotGet(stack_id);
104 u32 stack_id = StackDepotPut(*stack); local
105 CHECK(stack_id);
106 CHECK((stack_id & kHeapIdMask) == stack_id);
107 return Origin(stack_id);
[all...]
/freebsd-11.0-release/contrib/compiler-rt/lib/lsan/
H A Dlsan_common_linux.cc91 static uptr GetCallerPC(u32 stack_id, StackDepotReverseMap *map) { argument
92 CHECK(stack_id);
93 StackTrace stack = map->Get(stack_id);
114 u32 stack_id = m.stack_trace_id(); local
116 if (stack_id > 0)
117 caller_pc = GetCallerPC(stack_id, param->stack_depot_reverse_map);
/freebsd-11.0-release/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Djitprofiling.c106 * in the stack_id field in the iJIT_Method_NIDS structure, as VTune fills it.
192 ((piJIT_Method_NIDS) EventSpecificData)->stack_id =
222 ((piJIT_Method_NIDS) EventSpecificData)->stack_id =
225 if (((piJIT_Method_NIDS) EventSpecificData)->stack_id
227 ((piJIT_Method_NIDS) EventSpecificData)->stack_id =
H A Djitprofiling.h155 unsigned int stack_id; member in struct:_iJIT_Method_NIDS
/freebsd-11.0-release/contrib/compiler-rt/lib/asan/
H A Dasan_globals.cc53 u32 stack_id; member in struct:__asan::GlobalRegistrationSite
101 return grs.stack_id;
219 u32 stack_id = StackDepotPut(stack); local
224 GlobalRegistrationSite site = {stack_id, &globals[0], &globals[n - 1]};
228 Printf("=== ID %d; %p %p\n", stack_id, &globals[0], &globals[n - 1]);
H A Dasan_thread.h39 destructor_iterations(GetPthreadDestructorIterations()), stack_id(0),
43 u32 stack_id; member in class:__asan::AsanThreadContext
H A Dasan_thread.cc38 stack_id = StackDepotPut(*args->stack);
H A Dasan_report.cc616 StackDepotGet(context->stack_id).Print();
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DStackFrameList.h47 GetFrameWithStackID (const StackID &stack_id);
H A DThread.h103 ThreadEventData (const lldb::ThreadSP thread_sp, const StackID &stack_id);
567 GetFrameWithStackID (const StackID &stack_id) argument
569 if (stack_id.IsValid())
570 return GetStackFrameList()->GetFrameWithStackID (stack_id);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Target/
H A DStackFrameList.cpp627 CompareStackID (const StackFrameSP &stack_sp, const StackID &stack_id) argument
629 return stack_sp->GetStackID() < stack_id;
633 StackFrameList::GetFrameWithStackID (const StackID &stack_id) argument
637 if (stack_id.IsValid())
646 collection::const_iterator pos = std::lower_bound (begin, end, stack_id, CompareStackID);
649 if ((*pos)->GetStackID() == stack_id)
653 // if (m_frames.back()->GetStackID() < stack_id)
659 if (frame_sp && frame_sp->GetStackID() == stack_id)
H A DThread.cpp191 Thread::ThreadEventData::ThreadEventData (const lldb::ThreadSP thread_sp, const StackID &stack_id) : argument
193 m_stack_id (stack_id)
235 StackID stack_id; local
238 stack_id = event_data->GetStackID();
239 return stack_id;

Completed in 152 milliseconds