Home
last modified time | relevance | path

Searched refs:frames (Results 1 – 25 of 202) sorted by relevance

123456789

/llvm-project/cross-project-tests/debuginfo-tests/dexter/dex/dextIR/
H A DStepIR.py50 frames: List[FrameIR],
60 if frames is None:
61 frames = []
62 self.frames = frames
90 return len(self.frames)
94 if not len(self.frames):
96 return self.frames[0]
H A DProgramState.py104 def __init__(self, frames: List[StackFrame] = None):
105 self.frames = frames
111 enumerate(self.frames),
122 if self.frames:
123 for idx, frame in enumerate(self.frames):
125 if not frame.match(other.frames[idx]):
/llvm-project/lldb/test/API/functionalities/asan/
H A DTestMemoryHistory.py79 history_thread.frames[1].GetLineEntry().GetFileSpec().GetFilename(),
86 history_thread.frames[1].GetLineEntry().GetFileSpec().GetFilename(),
95 history_thread.frames[1].GetLineEntry().GetFileSpec().GetFilename(),
162 history_thread.frames[1].GetLineEntry().GetFileSpec().GetFilename(),
166 history_thread.frames[1].GetLineEntry().GetLine(), self.line_free
172 history_thread.frames[1].GetLineEntry().GetFileSpec().GetFilename(),
176 history_thread.frames[1].GetLineEntry().GetLine(), self.line_malloc
184 history_thread.frames[1].GetLineEntry().GetFileSpec().GetFilename(),
188 history_thread.frames[1].GetLineEntry().GetLine(), self.line_malloc
/llvm-project/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_stack_store_test.cpp28 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 Dsanitizer_stackdepot_test.cpp183 std::vector<uptr> frames(64); in TEST_P() local
185 std::iota(frames.begin(), frames.end(), idx + 1); in TEST_P()
187 StackTrace s(frames.data(), frames.size()); in TEST_P()
191 std::next_permutation(frames.begin(), frames.end()); in TEST_P()
/llvm-project/lldb/examples/interposing/darwin/fd_interposing/
H A DFDInterposing.cpp151 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 …]
/llvm-project/openmp/libompd/gdb-plugin/ompd/
H A Dframe_filter.py123 self.frames = self.curr_task.get_task_frame()
152 (ompd_enter_frame, ompd_exit_frame) = self.frames
179 self.frames = self.curr_task.get_task_frame()
217 self.frames = self.curr_task.get_task_frame()
218 (enter_frame, exit_frame) = self.frames
239 self.frames = self.curr_task.get_task_frame()
257 (ompd_enter_frame, ompd_exit_frame) = self.frames
294 self.frames = self.curr_task.get_task_frame()
/llvm-project/lldb/test/API/lang/c/step-target/
H A DTestStepTarget.py56 frame = thread.frames[0]
68 frame = thread.frames[0]
80 frame = thread.frames[0]
95 frame = thread.frames[0]
110 frame = thread.frames[0]
/llvm-project/lldb/examples/python/
H A Dcrashlog_scripted_process.py146 frames = []
147 for frame in thread.frames:
154 frames.append({"idx": frame.index, "pc": pc})
155 return frames
161 if not self.backing_thread or not len(self.backing_thread.frames):
164 self.frames = CrashLogScriptedThread.resolve_stackframes(
168 return self.frames
/llvm-project/compiler-rt/test/asan/TestCases/Darwin/
H A Dcrashlog-stacktraces.c18 int i, frames = backtrace(callstack, 128); in death_function() local
19 char** strs = backtrace_symbols(callstack, frames); in death_function()
20 for (i = 0; i < frames; ++i) { in death_function()
/llvm-project/lldb/bindings/interface/
H A DSBThreadExtensions.i12 '''Iterate over all frames in a lldb.SBThread object.'''
16 '''Return the number of frames in a lldb.SBThread object.'''
20 '''A helper object that will lazily hand out frames for a thread when supplied an index.'''
42 '''An accessor function that returns a list() that contains all frames in a lldb.SBThread object.'''
43 frames = []
45 frames.append(frame)
46 return frames
66 num_frames = property(GetNumFrames, None, doc='''A read only property that returns the number of stack frames in this thread as an integer.''')
67 frames = property(get_thread_frames, None, doc='''A read only property that returns a list() of lldb.SBFrame objects for all frames i
[all...]
/llvm-project/cross-project-tests/debuginfo-tests/dexter/dex/debugger/dbgeng/
H A Dprobe_process.py66 def main_on_stack(Symbols, frames): argument
69 for x in frames:
77 frames, numframes = Client.Control.GetStackTraceEx()
79 the_frames = [Frame(frames[x], x, Client.Symbols) for x in range(numframes)]
/llvm-project/mlir/lib/IR/
H A DLocation.cpp148 CallSiteLoc CallSiteLoc::get(Location name, ArrayRef<Location> frames) {
149 assert(!frames.empty() && "required at least 1 call frame");
150 Location caller = frames.back();
151 for (auto frame : llvm::reverse(frames.drop_back()))
75 get(Location name,ArrayRef<Location> frames) get() argument
/llvm-project/lldb/test/Shell/ScriptInterpreter/Python/Crashlog/
H A Dparser_json.test37 …('[{"triggered":true,"id":3835,"queue":"com.apple.bwgraph.devicevendor","frames":[[0,101472],[0,40…
41 assert len(parser.crashlog.threads[0].frames) == 2
42 assert parser.crashlog.threads[0].frames[0].pc == 7309839456
43 assert parser.crashlog.threads[0].frames[0].description == 101472
/llvm-project/lldb/test/API/functionalities/unwind/noreturn/
H A DTestNoreturnUnwind.py39 for f in thread.frames:
47 for f in thread.frames:
53 if abort_frame_number == len(thread.frames):
/llvm-project/compiler-rt/lib/nsan/
H A Dnsan_suppressions.cpp52 SymbolizedStack *frames = Symbolizer::GetOrInit()->SymbolizePC(addr); in GetSuppressionForAddr() local
53 for (SymbolizedStack *cur = frames; cur; cur = cur->next) { in GetSuppressionForAddr()
59 frames->ClearAll(); in GetSuppressionForAddr()
/llvm-project/cross-project-tests/debuginfo-tests/dexter/dex/debugger/lldb/
H A DLLDB.py241 frames = []
274 frames.append(frame)
299 if len(frames) == 1 and frames[0].function is None:
300 frames = []
307 frames=frames,
/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_debugging.cpp88 if (rep->sleep) CopyTrace(rep->sleep->frames, sleep_trace, trace_size); in __tsan_get_report_data()
105 if (stack) CopyTrace(stack->frames, trace, trace_size); in __tsan_get_report_stack()
121 if (mop->stack) CopyTrace(mop->stack->frames, trace, trace_size); in __tsan_get_report_mop()
140 if (loc->stack) CopyTrace(loc->stack->frames, trace, trace_size); in __tsan_get_report_loc()
163 if (mutex->stack) CopyTrace(mutex->stack->frames, trace, trace_size); in __tsan_get_report_mutex()
179 if (thread->stack) CopyTrace(thread->stack->frames, trace, trace_size); in __tsan_get_report_thread()
H A Dtsan_report.cpp104 if (ent == 0 || ent->frames == 0) { in PrintStack()
108 SymbolizedStack *frame = ent->frames; in PrintStack()
276 static const SymbolizedStack *SkipTsanInternalFrames(SymbolizedStack *frames) { in SkipTsanInternalFrames() argument
277 if (const SymbolizedStack *f = SkipInternalFrames(frames)) in SkipTsanInternalFrames()
279 return frames; // Fallback to the top frame. in SkipTsanInternalFrames()
353 if (const SymbolizedStack *frame = SkipTsanInternalFrames(stack->frames)) in PrintReport()
368 if (ent == 0 || ent->frames == 0) { in PrintStack()
372 SymbolizedStack *frame = ent->frames; in PrintStack()
/llvm-project/lldb/test/API/functionalities/thread/step_out/
H A DTestThreadStepOut.py52 zeroth_frame = self.step_out_thread.frames[0]
70 other_threads[thread.GetIndexID()] = thread.frames[0].line_entry
81 thread.frames[0].line_entry.file.basename,
86 thread.frames[0].line_entry.line,
/llvm-project/compiler-rt/lib/asan/
H A Dasan_suppressions.cpp72 const SymbolizedStack *frames = symbolized_stack.get(); in IsStackTraceSuppressed()
73 CHECK(frames); in IsStackTraceSuppressed()
74 for (const SymbolizedStack *cur = frames; cur; cur = cur->next) { in IsStackTraceSuppressed()
84 const SymbolizedStack *frames = symbolized_stack.get(); IsStackTraceSuppressed() local
/llvm-project/cross-project-tests/debuginfo-tests/dexter/dex/debugger/visualstudio/
H A DVisualStudio.py349 frames = []
379 frames.append(frame)
381 if frames:
382 frames[0].loc = loc
386 program_state = ProgramState(frames=state_frames)
390 frames=frames,
/llvm-project/openmp/libompd/gdb-plugin/
H A DREADME.txt33frames to a large extent, displaying only the user application frames. When ‘ompd bt on continued’…
34 …tep -- Executes "step" command into user application frames, skipping OpenMP runtime frames as…
/llvm-project/lldb/test/API/functionalities/conditional_break/
H A Dconditional_break.py21 thread.frames[0].function.name == "c"
22 and thread.frames[1].function.name == "a"
/llvm-project/lldb/test/API/lang/c/full_lto_stepping/
H A DTestFullLtoStepping.py19 name = thread.frames[0].GetFunctionName()
23 name = thread.frames[0].GetFunctionName()

123456789