| /openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/ |
| H A D | sanitizer_stack_store_test.cpp | 28 std::vector<uptr> frames(kStackTraceMax); in ForEachTrace() local 29 std::iota(frames.begin(), frames.end(), 0x100000); in ForEachTrace() 36 StackTrace s(frames.data(), size, tag); in ForEachTrace() 42 std::next_permutation(frames.begin(), frames.end()); in ForEachTrace() 184 std::vector<uptr> frames(200); in TEST_P() local 185 for (uptr i = 0; i < kBlockSizeFrames * 4 / frames.size(); ++i) { in TEST_P() 186 for (uptr& f : frames) { in TEST_P() 192 store_.Store(StackTrace(frames.data(), frames.size()), &pack); in TEST_P()
|
| H A D | sanitizer_stackdepot_test.cpp | 178 std::vector<uptr> frames(64); in TEST_P() local 180 std::iota(frames.begin(), frames.end(), idx + 1); in TEST_P() 182 StackTrace s(frames.data(), frames.size()); in TEST_P() 186 std::next_permutation(frames.begin(), frames.end()); in TEST_P()
|
| /openbsd-src/regress/gnu/lib/libexecinfo/ |
| H A D | t_backtrace.c | 59 } frames[] = { in myfunc3() local 72 for (j = 0; j < __arraycount(frames); ++j) { in myfunc3() 73 if (!frames[j].is_optional) in myfunc3() 99 if (frames[i].is_optional && in myfunc3() 100 strcmp(strings[j], frames[i].name)) { in myfunc3() 104 ATF_CHECK_STREQ(strings[j], frames[i].name); in myfunc3()
|
| /openbsd-src/gnu/llvm/lldb/examples/interposing/darwin/fd_interposing/ |
| H A D | FDInterposing.cpp | 151 const Frames &frames) in FDEvent() argument 152 : m_string_sp(string_sp), m_frames(frames.begin(), frames.end()), in FDEvent() 289 void *frames[2048]; in get_backtrace() local 290 int count = ::backtrace(&frames[0], sizeof(frames) / sizeof(void *)); in get_backtrace() 292 frame_buffer.assign(&frames[frames_to_remove], &frames[count]); in get_backtrace() 294 frame_buffer.assign(&frames[0], &frames[count]); in get_backtrace() 441 Frames frames; in backtrace_log() local 442 if (get_backtrace(frames, 2)) in backtrace_log() 443 ::backtrace_symbols_fd(frames.data(), frames.size(), log_fd); in backtrace_log() 461 Frames frames; in backtrace_error() local [all …]
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/asan/ |
| H A D | asan_suppressions.cpp | 84 SymbolizedStack *frames = symbolizer->SymbolizePC(addr); in IsStackTraceSuppressed() local 85 CHECK(frames); in IsStackTraceSuppressed() 86 for (SymbolizedStack *cur = frames; cur; cur = cur->next) { in IsStackTraceSuppressed() 94 frames->ClearAll(); in IsStackTraceSuppressed() 98 frames->ClearAll(); in IsStackTraceSuppressed()
|
| /openbsd-src/gnu/usr.bin/perl/dist/threads/t/ |
| H A D | stack_env.t | 41 my $frames; 50 # This possibility could be lessened by choosing $frames to be something 54 $frames = 128; 55 $size = $frames * $frame_size; 77 my $size_plus_eighth = $size * 1.125; # 128 frames map to 144
|
| H A D | stack.t | 13 my $frames; 19 # This possibility could be lessened by choosing $frames to be something 22 $frames = 128; 23 $size = $frames * $frame_size; 76 my $size_plus_quarter = $size * 1.25; # 128 frames map to 160 121 my $size_plus_eighth = $size * 1.125; # 128 frames map to 144
|
| /openbsd-src/gnu/llvm/lldb/examples/python/scripted_process/ |
| H A D | crashlog_scripted_process.py | 148 frames = [] 149 for frame in thread.frames: 156 frames.append({"idx": frame.index, "pc": pc}) 157 return frames 164 if not self.backing_thread or not len(self.backing_thread.frames): 167 self.frames = CrashLogScriptedThread.resolve_stackframes(self.backing_thread, 171 return self.frames
|
| H A D | scripted_process.py | 241 self.frames = [] 325 return self.frames
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_report.cpp | 108 if (ent == 0 || ent->frames == 0) { in PrintStack() 112 SymbolizedStack *frame = ent->frames; in PrintStack() 295 static SymbolizedStack *SkipTsanInternalFrames(SymbolizedStack *frames) { in SkipTsanInternalFrames() argument 296 while (FrameIsInternal(frames) && frames->next) in SkipTsanInternalFrames() 297 frames = frames->next; in SkipTsanInternalFrames() 298 return frames; in SkipTsanInternalFrames() 372 if (SymbolizedStack *frame = SkipTsanInternalFrames(stack->frames)) in PrintReport() 387 if (ent == 0 || ent->frames == 0) { in PrintStack() 391 SymbolizedStack *frame = ent->frames; in PrintStack()
|
| H A D | tsan_debugging.cpp | 86 if (rep->sleep) CopyTrace(rep->sleep->frames, sleep_trace, trace_size); in __tsan_get_report_data() 103 if (stack) CopyTrace(stack->frames, trace, trace_size); in __tsan_get_report_stack() 119 if (mop->stack) CopyTrace(mop->stack->frames, trace, trace_size); in __tsan_get_report_mop() 138 if (loc->stack) CopyTrace(loc->stack->frames, trace, trace_size); in __tsan_get_report_loc() 161 if (mutex->stack) CopyTrace(mutex->stack->frames, trace, trace_size); in __tsan_get_report_mutex() 177 if (thread->stack) CopyTrace(thread->stack->frames, trace, trace_size); in __tsan_get_report_thread()
|
| H A D | tsan_suppressions.cpp | 114 for (const SymbolizedStack *frame = stack->frames; frame; in IsSuppressed() 120 if (0 == internal_strcmp(stype, kSuppressionRace) && stack->frames != nullptr) in IsSuppressed() 121 return IsSuppressed(kSuppressionRaceTop, stack->frames->info, sp); in IsSuppressed()
|
| /openbsd-src/games/gomoku/ |
| H A D | bdinit.c | 55 memset(frames, 0, sizeof(frames)); in bdinit() 56 cbp = frames; in bdinit() 178 for (cbp = frames + FAREA; --cbp >= frames; ) { /* each frame */ in init_overlap() 203 n = sp2->s_frame[r] - frames; in init_overlap()
|
| H A D | makemove.c | 233 str = &overlap[(a = sp1->s_frame[r] - frames) * FAREA]; in update_overlap() 252 b = sp2->s_frame[r] - frames; in update_overlap() 287 b = sp->s_frame[r1] - frames; in update_overlap()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/ |
| H A D | i386-loop-3.c | 38 client_frame_t frames[64]; member 51 for (frame = cl->frames, i = 0; i < 64; i++, frame++) { in CalcPing() 70 cl.frames[0].ping_time = 1.0f; in main()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_stacktrace_libcdep.cpp | 35 SymbolizedStack *frames = symbolize_ in ProcessAddressFrames() local 38 if (!frames) in ProcessAddressFrames() 41 for (SymbolizedStack *cur = frames; cur; cur = cur->next) { in ProcessAddressFrames() 53 frames->ClearAll(); in ProcessAddressFrames()
|
| H A D | sanitizer_unwind_linux_libcdep.cpp | 161 InternalMmapVector<backtrace_frame_t> frames(kStackTraceMax); in UnwindSlow() local 164 frames.data(), in UnwindSlow() 174 trace_buffer[size++] = frames[i].absolute_pc + 2; in UnwindSlow()
|
| /openbsd-src/gnu/llvm/lldb/bindings/interface/ |
| H A D | SBThread.i | 447 frames = [] 449 frames.append(frame) 450 return frames 457 …frames = property(get_thread_frames, None, doc='''A read only property that returns a list() of ll…
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/hwasan/scripts/ |
| H A D | hwasan_symbolize | 286 frames = list(self.iter_call_stack(binary, buildid, addr)) 288 if len(frames) > 0: 292 frames[0][0]) 293 ) + self.maybe_linkify(frames[0][1]), 295 for i in range(1, len(frames)): 299 self.maybe_escape("%s->%s%s in " % (space1, space2, frames[i][0])) 300 + self.maybe_linkify(frames[i][1]), escape=False)
|
| /openbsd-src/gnu/llvm/lldb/examples/darwin/heap_find/heap/ |
| H A D | heap_find.cpp | 185 mach_vm_address_t frames[MAX_FRAMES]; member 674 stack_entry->frames[0] = 0; in get_stack_for_address_enumerator() 676 *(task_t *)task_ptr, stack_record.stack_identifier, stack_entry->frames, in get_stack_for_address_enumerator() 680 stack_entry->frames[stack_entry->num_frames] = 0; in get_stack_for_address_enumerator() 701 stack_entry->frames[0] = 0; in get_stack_history_for_address() 703 stack_entry->frames, MAX_FRAMES, in get_stack_history_for_address() 708 stack_entry->frames[stack_entry->num_frames] = 0; in get_stack_history_for_address()
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | collect2.c | 1784 int frames = (frame_tables.number > 0); in write_c_file_stat() local 1834 if (frames) in write_c_file_stat() 1866 if (constructors.number > 0 || frames) in write_c_file_stat() 1870 if (frames) in write_c_file_stat() 1875 fprintf (stream, "\tp = ctors + %d;\n", constructors.number + frames); in write_c_file_stat() 1883 if (destructors.number > 0 || frames) in write_c_file_stat() 1887 if (frames) in write_c_file_stat() 1894 destructors.number + frames); in write_c_file_stat() 1913 int frames = (frame_tables.number > 0); in write_c_file_glob() local 1919 if (frames) in write_c_file_glob() [all …]
|
| /openbsd-src/gnu/llvm/llvm/docs/CommandGuide/ |
| H A D | llvm-addr2line.rst | 31 - ``llvm-addr2line`` defaults not to print inlined frames. Use `-i`_ to show 32 inlined frames for a source code location in an inlined function.
|
| /openbsd-src/gnu/llvm/clang/utils/analyzer/ |
| H A D | exploded-graph-rewriter.py | 150 self.frames = [EnvironmentFrame(f) for f in json_e] 154 if len(self.frames) != len(prev.frames): 158 for i in range(len(self.frames)): 159 f = self.frames[i] 160 prev_f = prev.frames[i] 612 f = e.frames[i] 613 prev_f = prev_e.frames[i] 621 for f in e.frames:
|
| /openbsd-src/gnu/llvm/lldb/examples/python/ |
| H A D | diagnose_unwind.py | 201 for frame in thread.frames: 244 for frame in thread.frames: 280 for frame in thread.frames:
|
| /openbsd-src/gnu/gcc/gcc/config/arm/ |
| H A D | arm.opt | 39 Generate APCS conformant stack frames 143 Thumb: Generate (non-leaf) stack frames even if not needed 147 Thumb: Generate (leaf) stack frames even if not needed
|