Searched refs:frame (Results 201 - 225 of 509) sorted by relevance

1234567891011>>

/freebsd-current/sys/x86/include/
H A Dapicvar.h257 void lapic_handle_intr(int vector, struct trapframe *frame);
258 void lapic_handle_timer(struct trapframe *frame);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DThreadMemory.h30 CreateRegisterContextForFrame(lldb_private::StackFrame *frame) override;
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DThreadGDBRemote.cpp300 ThreadGDBRemote::CreateRegisterContextForFrame(StackFrame *frame) { argument
304 if (frame)
305 concrete_frame_idx = frame->GetConcreteFrameIndex();
322 reg_ctx_sp = GetUnwinder().CreateRegisterContextForFrame(frame);
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DUnwindLLDB.h53 eRegisterInLiveRegisterContext // register value is in a live (stack frame
80 DoCreateRegisterContextForFrame(lldb_private::StackFrame *frame) override;
84 // Needed to retrieve the "next" frame (e.g. frame 2 needs to retrieve frame
114 // this frame - current pc if unknown
115 lldb::addr_t cfa = LLDB_INVALID_ADDRESS; // The canonical frame address for
116 // this stack frame
140 // Check if Full UnwindPlan of First frame is valid or not.
141 // If not then try Fallback UnwindPlan of the frame
[all...]
H A DStackFrameList.h31 /// is true. Synthetic (inline) frames expanded from the concrete frame #0
35 /// Get the frame at index \p idx. Invisible frames cannot be indexed.
38 /// Get the first concrete frame with index greater than or equal to \p idx.
39 /// Unlike \ref GetFrameAtIndex, this cannot return a synthetic frame.
42 /// Retrieve the stack frame with the given ID \p stack_id.
45 /// Mark a stack frame as the currently selected frame and return its index.
46 uint32_t SetSelectedFrame(lldb_private::StackFrame *frame);
48 /// Get the currently selected frame index.
50 /// selected a frame, an
[all...]
/freebsd-current/sys/arm/arm/
H A Dgdb_machdep.c41 #include <machine/frame.h>
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dompt-internal.h56 ompt_frame_t frame; member in struct:__anon3080
/freebsd-current/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_fake_stack.cpp137 // makecontext. It should be possible to make GC to discard wrong stack frame if
167 // Poison the frame, so the any access will be reported as UAR.
298 FakeFrame *frame = reinterpret_cast<FakeFrame *>(fs->AddrIsInFakeStack( local
300 if (!frame) return nullptr;
301 if (frame->magic != kCurrentStackFrameMagic)
305 return reinterpret_cast<void*>(frame->real_stack);
/freebsd-current/contrib/llvm-project/lldb/bindings/interface/
H A DSBFrameExtensions.i22 if parent_idx >= 0 and parent_idx < len(self.thread.frame):
23 return self.thread.frame[parent_idx]
61 fp = property(GetFP, None, doc='''A read only property that returns the frame pointer (FP) as an unsigned integer.''')
63 module = property(GetModule, None, doc='''A read only property that returns an lldb object that represents the module (lldb.SBModule) for this stack frame.''')
64 compile_unit = property(GetCompileUnit, None, doc='''A read only property that returns an lldb object that represents the compile unit (lldb.SBCompileUnit) for this stack frame.''')
65 function = property(GetFunction, None, doc='''A read only property that returns an lldb object that represents the function (lldb.SBFunction) for this stack frame.''')
66 symbol = property(GetSymbol, None, doc='''A read only property that returns an lldb object that represents the symbol (lldb.SBSymbol) for this stack frame.''')
67 block = property(GetBlock, None, doc='''A read only property that returns an lldb object that represents the block (lldb.SBBlock) for this stack frame.''')
68 is_inlined = property(IsInlined, None, doc='''A read only property that returns an boolean that indicates if the block frame is an inlined function.''')
69 name = property(GetFunctionName, None, doc='''A read only property that retuns the name for the function that this frame represent
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
H A DScriptedThread.cpp118 ScriptedThread::CreateRegisterContextForFrame(StackFrame *frame) { argument
120 frame ? frame->GetConcreteFrameIndex() : 0;
123 return GetUnwinder().CreateRegisterContextForFrame(frame);
214 llvm::Twine("Couldn't add frame (" + llvm::Twine(idx) +
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Expression/
H A DDWARFExpression.h88 /// Return the call-frame-info style register kind
91 /// Set the call-frame-info style register kind
116 /// the stack frame list, this short-cut is available.
119 /// The call-frame-info style register kind.
154 bool MatchesOperand(StackFrame &frame, const Instruction::Operand &op) const;
/freebsd-current/sys/arm64/arm64/
H A Dgdb_machdep.c39 #include <machine/frame.h>
/freebsd-current/sys/contrib/xen/
H A Dgrant_table.h70 * 2. Write ent->frame:
72 * GTF_accept_transfer: Pseudo-phys frame slot being filled by new
73 * frame, or zero if none.
97 * transferred frame is written. It is safe for the guest to spin waiting
143 uint32_t frame; member in struct:grant_entry_v1
157 * GTF_permit_access: Allow @domid to map/access @frame.
158 * GTF_accept_transfer: Allow @domid to transfer ownership of one page frame
159 * to this guest. Xen writes the page number to @frame.
199 * to transferring ownership of a page frame. When a guest sees this flag
203 * after reading GTF_transfer_committed. Xen will always write the frame
250 uint64_t frame; member in struct:grant_entry_v2::__anon48
262 uint64_t frame; member in struct:grant_entry_v2::__anon49
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/API/
H A DSBBlock.cpp232 lldb::SBValueList SBBlock::GetVariables(lldb::SBFrame &frame, bool arguments, argument
235 LLDB_INSTRUMENT_VA(this, frame, arguments, locals, statics, use_dynamic);
240 StackFrameSP frame_sp(frame.GetFrameSP());
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp125 StackFrameSP frame = thread_sp->GetStackFrameAtIndex(I); local
126 Address addr = frame->GetFrameCodeAddressForSymbolication();
130 // The first non-runtime frame is responsible for the bug.
132 responsible_frame = frame;
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
H A DCPPLanguageRuntime.cpp118 // (lldb) frame var -R f_display
384 StackFrameSP frame = thread.GetStackFrameAtIndex(0); local
386 if (frame) {
387 ValueObjectSP value_sp = frame->FindVariable(g_this);
/freebsd-current/sys/modules/linux/
H A DMakefile102 -fno-omit-frame-pointer -foptimize-sibling-calls ${VDSOFLAGS} \
109 -fno-omit-frame-pointer -foptimize-sibling-calls ${VDSOFLAGS} \
114 ${LD} -m elf_i386 --shared --eh-frame-hdr -soname=linux-gate.so.1 \
/freebsd-current/sys/modules/linux64/
H A DMakefile68 -fno-omit-frame-pointer -foptimize-sibling-calls \
75 -fno-omit-frame-pointer -foptimize-sibling-calls \
80 ${LD} --shared --eh-frame-hdr -soname=linux-vdso.so.1 \
/freebsd-current/sys/kern/
H A Dkern_intr.c114 static int intr_event_schedule_thread(struct intr_event *ie, struct trapframe *frame);
132 #define PMC_SOFT_CALL_INTR_HLPR(event, frame) \
134 if (frame != NULL) \
135 PMC_SOFT_CALL_TF( , , intr, event, frame); \
973 intr_event_schedule_thread(struct intr_event *ie, struct trapframe *frame) argument
1018 PMC_SOFT_CALL_INTR_HLPR(schedule, frame);
1029 PMC_SOFT_CALL_INTR_HLPR(waiting, frame);
1350 * o frame: the current trap frame. If the client interrupt
1351 * handler needs this frame, the
1359 intr_event_handle(struct intr_event *ie, struct trapframe *frame) argument
[all...]
/freebsd-current/crypto/openssl/crypto/sha/asm/
H A Dsha512-s390x.pl111 $frame=$stdframe+16*$SZ;
265 lghi %r1,-$frame
294 l${g} $ctx,`$frame+2*$SIZE_T`($sp)
312 cl${g} $inp,`$frame+4*$SIZE_T`($sp)
315 lm${g} %r6,%r15,`$frame+6*$SIZE_T`($sp)
/freebsd-current/sys/i386/i386/
H A Dmachdep.c717 DB_SHOW_COMMAND(frame, db_show_frame)
719 struct trapframe *frame; local
721 frame = have_addr ? (struct trapframe *)addr : curthread->td_frame;
723 frame->tf_ss, frame->tf_esp, frame->tf_eflags, frame->tf_cs,
724 frame->tf_eip);
725 printf("err %#x trapno %d\n", frame->tf_err, frame
[all...]
/freebsd-current/sys/cddl/dev/profile/
H A Dprofile.c82 * appears as its own stack frame. All of this means that we need to add one
83 * frame for amd64, and then take one away for both amd64 and i386.
234 struct trapframe *frame; local
246 frame = td->td_intr_frame;
247 if (frame != NULL) {
248 if (TRAPF_USERMODE(frame))
249 upc = TRAPF_PC(frame);
251 pc = TRAPF_PC(frame);
252 td->t_dtrace_trapframe = frame;
/freebsd-current/usr.sbin/cdcontrol/
H A Dcdcontrol.c493 toc_buffer[n].addr.msf.frame));
510 toc_buffer[n].addr.msf.frame) - blk;
605 tf = toc_buffer[tr1].addr.msf.frame;
653 f2 = toc_buffer[n].addr.msf.frame;
671 tf = toc_buffer[tr2].addr.msf.frame;
693 tf = toc_buffer[n].addr.msf.frame;
722 f2 = toc_buffer[n].addr.msf.frame;
1021 e->addr.msf.second, e->addr.msf.frame);
1024 e->addr.msf.frame);
1039 e[1].addr.msf.frame);
1121 status(int *trk, int *min, int *sec, int *frame) argument
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp66 // If we don't have a CFA value, use the frame index for our StackID so that
156 // Calculate the frame block and use this for the stack ID symbol context
249 // We can't change the pc value of a history stack frame - it is immutable.
282 // Use the block with the inlined function info as the frame block we
283 // want this frame to have only the variables for the inlined function
319 // If this is not frame zero, then we need to subtract 1 from the PC value
325 // We have something in our stack frame symbol context, lets check if we
478 // We can't fetch variable information for a history stack frame.
512 // We can't fetch variable information for a history stack frame.
619 error.SetErrorStringWithFormat("no variable named '%s' found in this frame",
1390 GetValueForOffset(StackFrame &frame, ValueObjectSP &parent, int64_t offset) argument
1422 GetValueForDereferincingOffset(StackFrame &frame, ValueObjectSP &base, int64_t offset) argument
1479 DoGuessValueAt(StackFrame &frame, ConstString reg, int64_t offset, Disassembler &disassembler, VariableList &variables, const Address &pc) argument
[all...]
/freebsd-current/sys/dev/ocs_fc/
H A Docs_unsol.c216 /* If the transport FCFI entry is NULL, then drop the frame */
218 ocs_log_test(ocs, "FCFI %d is not valid, dropping frame\n", seq->fcfi);
231 * then add the new frame to pending list
246 * We are not holding frames and pending list is empty, just process frame.
247 * A non-zero return means the frame was not handled - so cleanup
280 /* need to check for hold frames condition after each frame processed
281 * because any given frame could cause a transition to a state that
288 /* Get next frame/sequence */
300 /* now dispatch frame(s) to dispatch function */
342 /* need to check for hold frames condition after each frame processe
394 ocs_hw_sequence_t *frame; local
1174 ocs_hw_sequence_t *frame = NULL; local
[all...]

Completed in 225 milliseconds

1234567891011>>