Home
last modified time | relevance | path

Searched refs:stacks (Results 1 – 25 of 72) sorted by relevance

123

/openbsd/gnu/llvm/compiler-rt/lib/tsan/rtl/
H A Dtsan_report.cpp34 , stacks() in ReportDesc()
271 if (rep->stacks.Size()) in ChooseSummaryStack()
272 return rep->stacks[0]; in ChooseSummaryStack()
321 rep->stacks.Size()); in PrintReport()
331 PrintStack(rep->stacks[2*i]); in PrintReport()
335 PrintStack(rep->stacks[2*i+1]); in PrintReport()
337 PrintStack(rep->stacks[i]); in PrintReport()
344 for (uptr i = 0; i < rep->stacks.Size(); i++) { in PrintReport()
347 PrintStack(rep->stacks[i]); in PrintReport()
464 PrintStack(rep->stacks[2*i]); in PrintReport()
[all …]
H A Dtsan_platform_mac.cpp171 StackDepotStats stacks = StackDepotGetStats(); in WriteMemoryProfile() local
197 stacks.n_uniq_ids, stacks.allocated / 1024, nthread, nlive); in WriteMemoryProfile()
H A Dtsan_debugging.cpp80 *stack_count = rep->stacks.Size(); in __tsan_get_report_data()
101 CHECK_LT(idx, rep->stacks.Size()); in __tsan_get_report_stack()
102 ReportStack *stack = rep->stacks[idx]; in __tsan_get_report_stack()
H A Dtsan_platform_linux.cpp123 StackDepotStats stacks = StackDepotGetStats(); in WriteMemoryProfile() local
135 stacks.allocated + internal_stats[AllocatorStatMapped]; in WriteMemoryProfile()
148 stacks.allocated >> 20, nlive, nthread); in WriteMemoryProfile()
H A Dtsan_report.h104 Vector<ReportStack*> stacks; variable
H A Dtsan_flags.inc81 "If set, prints thread creation stacks for the threads involved in "
H A Dtsan_rtl_report.cpp172 ReportStack **rs = rep_->stacks.PushBack(); in AddStack()
644 for (uptr i = 0; pc_or_addr == 0 && i < rep->stacks.Size(); i++) in OutputReport()
645 pc_or_addr = IsSuppressed(rep->typ, rep->stacks[i], &supp); in OutputReport()
/openbsd/sys/dev/pci/drm/i915/
H A Dintel_runtime_pm.c77 depot_stack_handle_t stack, *stacks; in track_intel_runtime_pm_wakeref() local
92 stacks = krealloc(rpm->debug.owners, in track_intel_runtime_pm_wakeref()
93 (rpm->debug.count + 1) * sizeof(*stacks), in track_intel_runtime_pm_wakeref()
95 if (stacks) { in track_intel_runtime_pm_wakeref()
96 stacks[rpm->debug.count++] = stack; in track_intel_runtime_pm_wakeref()
97 rpm->debug.owners = stacks; in track_intel_runtime_pm_wakeref()
/openbsd/gnu/llvm/llvm/docs/
H A DXRayExample.rst204 The way to use the command is to output the top stacks by call count and time spent.
226 In the default mode, identical stacks on different threads are independently
228 stacks fill your list of top calls.
231 ``--per-thread-stacks`` flags. ``--per-thread-stacks`` treats the thread id as an
233 identical stacks from all threads.
246 - ``--all-stacks`` - Emits all of the stacks.
255 …-log.llc.5rqxkU --instr_map=./bin/llc --stack-format=flame --aggregation-type=time --all-stacks | \
258 If you open the svg in a browser, mouse events allow exploring the call stacks.
346 - Collecting function call stacks and how often they're encountered in the
H A DSegmentedStacks.rst16 call into the libgcc runtime to allocate more stack space. Segmented stacks are
H A DReference.rst205 This document describes segmented stacks and how they are used in LLVM.
/openbsd/gnu/llvm/compiler-rt/lib/lsan/
H A Dlsan_common_fuchsia.cpp88 auto stacks = +[](void *chunk, size_t size, void *data) { in LockStuffAndStopTheWorld() local
139 flags()->use_stacks ? stacks : nullptr, in LockStuffAndStopTheWorld()
H A Dlsan_flags.inc30 LSAN_FLAG(bool, use_stacks, true, "Root set: include thread stacks")
/openbsd/gnu/llvm/llvm/tools/llvm-xray/
H A DCMakeLists.txt20 xray-stacks.cpp
/openbsd/gnu/llvm/llvm/utils/gn/secondary/llvm/tools/llvm-xray/
H A DBUILD.gn21 "xray-stacks.cpp",
/openbsd/gnu/usr.bin/binutils/gdb/osf-share/
H A Dcma_stack_int.h65 cma_t_address stacks; member
/openbsd/sys/kern/
H A Dsubr_witness.c484 union lock_stack *stacks; in witness_initialize() local
523 stacks = (void *)uvm_pageboot_alloc(sizeof(*stacks) * in witness_initialize()
534 witness_lock_stack_free(&stacks[i]); in witness_initialize()
2532 union lock_stack *stacks; in witness_alloc_stacks() local
2541 stacks = mallocarray(nstacks, sizeof(*stacks), M_WITNESS, in witness_alloc_stacks()
2543 if (stacks == NULL) in witness_alloc_stacks()
2548 stacks[i].ls_next = w_lock_stack_free; in witness_alloc_stacks()
2549 w_lock_stack_free = &stacks[i]; in witness_alloc_stacks()
/openbsd/gnu/llvm/compiler-rt/lib/memprof/
H A Dmemprof_flags.inc28 "If set, prints thread creation stacks for the threads involved in the "
/openbsd/gnu/llvm/clang/include/clang/Basic/
H A DDiagnosticOptions.def62 DIAGOPT(ShowNoteIncludeStack, 1, 0) /// Show include stacks for notes.
/openbsd/gnu/lib/libiberty/src/
H A DREADME6 obstack -- stacks of arbitrarily-sized objects
/openbsd/gnu/llvm/llvm/lib/Target/M68k/
H A DM68kInstrCompiler.td117 // When using segmented stacks these are lowered into instructions which first
/openbsd/etc/
H A DMAKEDEV.mansub37 dnl Initialize the stacks stored in _m4_*
/openbsd/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp351 StructuredData::ArraySP stacks = ConvertToStructuredArray( in RetrieveReportData() local
362 dict->AddItem("stacks", stacks); in RetrieveReportData()
/openbsd/gnu/llvm/llvm/docs/tutorial/MyFirstLanguageFrontend/
H A Dindex.rst89 stacks", etc.
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/
H A DMachinePassRegistry.def78 // MACHINE_FUNCTION_ANALYSIS("live-stacks", LiveStacksPass())

123