Home
last modified time | relevance | path

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

12345678

/netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/
H A Dtsan_report.cpp34 , stacks() in ReportDesc()
276 if (rep->stacks.Size()) in ChooseSummaryStack()
277 return rep->stacks[0]; in ChooseSummaryStack()
323 rep->stacks.Size()); in PrintReport()
333 PrintStack(rep->stacks[2*i]); in PrintReport()
337 PrintStack(rep->stacks[2*i+1]); in PrintReport()
339 PrintStack(rep->stacks[i]); in PrintReport()
346 for (uptr i = 0; i < rep->stacks.Size(); i++) { in PrintReport()
349 PrintStack(rep->stacks[i]); in PrintReport()
466 PrintStack(rep->stacks[2*i]); in PrintReport()
[all …]
H A Dtsan_platform_linux.cpp126 StackDepotStats stacks = StackDepotGetStats(); in WriteMemoryProfile() local
132 mem[MemMmap] -= meta.mem_block + meta.sync_obj + stacks.allocated + in WriteMemoryProfile()
145 meta.mem_block >> 20, meta.sync_obj >> 20, stacks.allocated >> 20, in WriteMemoryProfile()
146 stacks.n_uniq_ids, nlive, nthread); in WriteMemoryProfile()
H A Dtsan_platform_mac.cpp162 StackDepotStats stacks = StackDepotGetStats(); in WriteMemoryProfile() local
190 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()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
H A Dtsan_report.cc51 , stacks() in ReportDesc()
284 if (rep->stacks.Size()) in ChooseSummaryStack()
285 return rep->stacks[0]; in ChooseSummaryStack()
331 rep->stacks.Size()); in PrintReport()
341 PrintStack(rep->stacks[2*i]); in PrintReport()
345 PrintStack(rep->stacks[2*i+1]); in PrintReport()
347 PrintStack(rep->stacks[i]); in PrintReport()
354 for (uptr i = 0; i < rep->stacks.Size(); i++) { in PrintReport()
357 PrintStack(rep->stacks[i]); in PrintReport()
471 PrintStack(rep->stacks[2*i]); in PrintReport()
[all …]
H A Dtsan_platform_mac.cc158 StackDepotStats *stacks = StackDepotGetStats(); in WriteMemoryProfile() local
183 stacks->n_uniq_ids, stacks->allocated / 1024, in WriteMemoryProfile()
H A Dtsan_debugging.cc75 *stack_count = rep->stacks.Size(); in __tsan_get_report_data()
96 CHECK_LT(idx, rep->stacks.Size()); in __tsan_get_report_stack()
97 ReportStack *stack = rep->stacks[idx]; in __tsan_get_report_stack()
H A Dtsan_platform_linux.cc122 StackDepotStats *stacks = StackDepotGetStats(); in WriteMemoryProfile() local
129 stacks->allocated >> 20, stacks->n_uniq_ids, in WriteMemoryProfile()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
H A Dtsan_report.cc49 , stacks() in ReportDesc()
282 if (rep->stacks.Size()) in ChooseSummaryStack()
283 return rep->stacks[0]; in ChooseSummaryStack()
329 rep->stacks.Size()); in PrintReport()
339 PrintStack(rep->stacks[2*i]); in PrintReport()
343 PrintStack(rep->stacks[2*i+1]); in PrintReport()
345 PrintStack(rep->stacks[i]); in PrintReport()
352 for (uptr i = 0; i < rep->stacks.Size(); i++) { in PrintReport()
355 PrintStack(rep->stacks[i]); in PrintReport()
469 PrintStack(rep->stacks[2*i]); in PrintReport()
[all …]
H A Dtsan_platform_mac.cc156 StackDepotStats *stacks = StackDepotGetStats(); in WriteMemoryProfile() local
181 stacks->n_uniq_ids, stacks->allocated / 1024, in WriteMemoryProfile()
H A Dtsan_platform_linux.cc120 StackDepotStats *stacks = StackDepotGetStats(); in WriteMemoryProfile() local
127 stacks->allocated >> 20, stacks->n_uniq_ids, in WriteMemoryProfile()
H A Dtsan_debugging.cc73 *stack_count = rep->stacks.Size(); in __tsan_get_report_data()
94 CHECK_LT(idx, rep->stacks.Size()); in __tsan_get_report_stack()
95 ReportStack *stack = rep->stacks[idx]; in __tsan_get_report_stack()
/netbsd-src/external/cddl/dtracetoolkit/dist/Java/
H A Dj_profile.d70 @stacks[jstack(DEPTH)] = count();
75 trunc(@stacks, TOP);
77 printa(@stacks);
/netbsd-src/external/cddl/dtracetoolkit/dist/Bin/
H A Dj_profile.d70 @stacks[jstack(DEPTH)] = count();
75 trunc(@stacks, TOP);
77 printa(@stacks);
H A Dpy_profile.d71 @stacks[jstack(DEPTH)] = count();
76 trunc(@stacks, TOP);
78 printa(@stacks);
/netbsd-src/external/cddl/dtracetoolkit/dist/Python/
H A Dpy_profile.d71 @stacks[jstack(DEPTH)] = count();
76 trunc(@stacks, TOP);
78 printa(@stacks);
/netbsd-src/crypto/external/bsd/openssl/dist/doc/internal/man3/
H A Dossl_rsa_get0_all_params.pod22 in the B<RSA> object I<r> to the contents of the stacks of BIGNUMs I<primes>,
24 but not of the stacks.
27 in the B<RSA> object I<r> and pushes them on the stacks of constant BIGNUMs
29 BIGNUMs, but not of the stacks.
/netbsd-src/sys/external/bsd/drm2/dist/drm/i915/
H A Dintel_runtime_pm.c98 depot_stack_handle_t stack, *stacks; in track_intel_runtime_pm_wakeref() local
113 stacks = krealloc(rpm->debug.owners, in track_intel_runtime_pm_wakeref()
114 (rpm->debug.count + 1) * sizeof(*stacks), in track_intel_runtime_pm_wakeref()
116 if (stacks) { in track_intel_runtime_pm_wakeref()
117 stacks[rpm->debug.count++] = stack; in track_intel_runtime_pm_wakeref()
118 rpm->debug.owners = stacks; in track_intel_runtime_pm_wakeref()
/netbsd-src/external/apache2/llvm/dist/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 …xray-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
/netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Examples/
H A Dj_profile_example.txt20 Sampling 10-level stacks at 101 Hertz... Hit Ctrl-C to end.
23 Top 25 most frequently sampled stacks,
111 The most frequent stacks had Func_loop.func_c() on CPU, with a stack trace
120 Sampling 10-level stacks at 101 Hertz... Hit Ctrl-C to end.
122 Top 25 most frequently sampled stacks,
/netbsd-src/external/cddl/dtracetoolkit/dist/Examples/
H A Dj_profile_example.txt20 Sampling 10-level stacks at 101 Hertz... Hit Ctrl-C to end.
23 Top 25 most frequently sampled stacks,
111 The most frequent stacks had Func_loop.func_c() on CPU, with a stack trace
120 Sampling 10-level stacks at 101 Hertz... Hit Ctrl-C to end.
122 Top 25 most frequently sampled stacks,
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/lsan/
H A Dlsan_common_fuchsia.cpp79 auto stacks = +[](void *chunk, size_t size, void *data) { in LockStuffAndStopTheWorld() local
130 flags()->use_stacks ? stacks : nullptr, in LockStuffAndStopTheWorld()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
H A DCMakeLists.txt20 xray-stacks.cpp
/netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/secondary/llvm/tools/llvm-xray/
H A DBUILD.gn21 "xray-stacks.cpp",
/netbsd-src/external/apache2/llvm/bin/llvm-xray/
H A DMakefile20 xray-stacks.cpp

12345678