Searched refs:frame (Results 26 - 50 of 351) sorted by relevance

1234567891011>>

/freebsd-9.3-release/sys/mips/mips/
H A Dtrap.c83 #include <machine/frame.h>
102 static void log_frame_dump(struct trapframe *frame);
106 static void trap_frame_dump(struct trapframe *frame);
260 static int emulate_unaligned_access(struct trapframe *frame, int mode);
1082 log_frame_dump(struct trapframe *frame) argument
1086 (intmax_t)0, (intmax_t)frame->ast, (intmax_t)frame->v0, (intmax_t)frame->v1);
1089 (intmax_t)frame->a0, (intmax_t)frame
1123 trap_frame_dump(struct trapframe *frame) argument
1183 log_illegal_instruction(const char *msg, struct trapframe *frame) argument
1228 log_bad_page_fault(char *msg, struct trapframe *frame, int trap_type) argument
1300 mips_unaligned_load_store(struct trapframe *frame, int mode, register_t addr, register_t pc) argument
1417 emulate_unaligned_access(struct trapframe *frame, int mode) argument
[all...]
/freebsd-9.3-release/sys/cddl/dev/cyclic/i386/
H A Dcyclic_machdep.c33 static void cyclic_clock(struct trapframe *frame);
77 cyclic_clock(struct trapframe *frame) argument
82 if (TRAPF_USERMODE(frame)) {
84 c->cpu_profile_upc = TRAPF_PC(frame);
86 c->cpu_profile_pc = TRAPF_PC(frame);
/freebsd-9.3-release/sys/amd64/linux32/
H A Dlinux32_sysvec.c309 struct l_rt_sigframe *fp, frame; local
345 bzero(&frame, sizeof(frame));
347 frame.sf_handler = PTROUT(catcher);
348 frame.sf_sig = sig;
349 frame.sf_siginfo = PTROUT(&fp->sf_si);
350 frame.sf_ucontext = PTROUT(&fp->sf_sc);
353 ksiginfo_to_lsiginfo(ksi, &frame.sf_si, sig);
358 frame.sf_sc.uc_flags = 0; /* XXX ??? */
359 frame
447 struct l_sigframe *fp, frame; local
565 struct l_sigframe frame; local
748 struct trapframe *frame; local
[all...]
/freebsd-9.3-release/sys/i386/linux/
H A Dlinux_sysvec.c414 struct l_rt_sigframe *fp, frame; local
449 bzero(&frame, sizeof(frame));
451 frame.sf_handler = catcher;
452 frame.sf_sig = sig;
453 frame.sf_siginfo = &fp->sf_si;
454 frame.sf_ucontext = &fp->sf_sc;
457 ksiginfo_to_lsiginfo(ksi, &frame.sf_si, sig);
462 frame.sf_sc.uc_flags = 0; /* XXX ??? */
463 frame
548 struct l_sigframe *fp, frame; local
662 struct l_sigframe frame; local
843 struct trapframe *frame; local
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Di387-tdep.h57 struct frame_info *frame,
60 /* Read a value of type TYPE from register REGNUM in frame FRAME, and
63 extern void i387_register_to_value (struct frame_info *frame, int regnum,
67 REGNUM in frame FRAME. */
69 extern void i387_value_to_register (struct frame_info *frame, int regnum,
H A Dframe.h26 /* The following is the intended naming schema for frame functions.
32 get_frame_WHAT...(): Get WHAT from the THIS frame (functionaly
35 frame_unwind_WHAT...(): Unwind THIS frame's WHAT from the NEXT
36 frame.
38 put_frame_WHAT...(): Put a value into this frame (unsafe, need to
39 invalidate the frame / regcache afterwards) (better name more
48 void /frame/_WHAT(): Read WHAT's value into the buffer parameter.
50 ULONGEST /frame/_WHAT_unsigned(): Return an unsigned value (the
53 LONGEST /frame/_WHAT_signed(): Return WHAT signed value.
57 /frame/_memor
[all...]
H A Di386ly-tdep.c30 /* Return the PC of the caller from the call frame. Assumes the subr
31 prologue has already been executed, and the frame pointer setup.
32 If this is the outermost frame, we check to see if we are in a
38 i386lynx_saved_pc_after_call (struct frame_info *frame) argument
44 read_memory_nobpt (frame->pc - 7, opcode, 7);
H A Dblockframe.c29 #include "frame.h"
37 #include "dummy-frame.h"
166 /* Similar to inside_entry_func, but accomodating legacy frame code. */
188 /* Return nonzero if the function for this frame lacks a prologue.
193 legacy_frameless_look_for_prologue (struct frame_info *frame) argument
197 func_start = get_frame_func (frame);
208 no prologue and hence no code creating a frame. There for
212 else if (get_frame_pc (frame) == 0)
213 /* A frame with a zero PC is usually created by dereferencing a
216 has no chance of setting up a stack frame
243 get_frame_block(struct frame_info *frame, CORE_ADDR *addr_in_block) argument
286 get_frame_function(struct frame_info *frame) argument
542 struct frame_info *frame; local
[all...]
/freebsd-9.3-release/sys/amd64/include/
H A Dkdb.h32 #include <machine/frame.h>
/freebsd-9.3-release/sys/arm/include/
H A Dkdb.h32 #include <machine/frame.h>
H A Dcpu.h24 #define TRAPF_USERMODE(frame) ((frame->tf_spsr & PSR_MODE) == PSR_USR32_MODE)
/freebsd-9.3-release/sys/i386/include/
H A Dkdb.h32 #include <machine/frame.h>
/freebsd-9.3-release/sys/mips/include/
H A Dkdb.h33 #include <machine/frame.h>
H A Dpcb.h45 #include <machine/frame.h>
/freebsd-9.3-release/sys/powerpc/include/
H A Dkdb.h33 #include <machine/frame.h>
/freebsd-9.3-release/sys/arm/arm/
H A Dundefined.c77 #include <machine/frame.h>
132 gdb_trapper(u_int addr, u_int insn, struct trapframe *frame, int code) argument
150 return !kgdb_trap(T_BREAKPOINT, frame);
175 undefinedinstruction(trapframe_t *frame) argument
189 if (!(frame->tf_spsr & I32_bit))
192 frame->tf_pc -= INSN_SIZE;
195 fault_pc = frame->tf_pc;
213 userret(td, frame);
245 if ((frame->tf_spsr & PSR_MODE) == PSR_USR32_MODE) {
251 td->td_frame = frame;
[all...]
/freebsd-9.3-release/sys/cddl/dev/dtrace/i386/
H A Ddtrace_isa.c36 #include <machine/frame.h>
64 struct i386_frame *frame; local
75 frame = (struct i386_frame *)ebp;
77 if (!INKERNEL(frame))
80 callpc = frame->f_retaddr;
95 if (frame->f_frame <= frame ||
96 (vm_offset_t)frame->f_frame >=
99 frame = frame
455 struct i386_frame *frame; local
[all...]
/freebsd-9.3-release/sys/xen/
H A Devtchn.h17 #include <machine/frame.h>
31 void evtchn_do_upcall(struct trapframe *frame);
/freebsd-9.3-release/lib/libc/mips/gen/
H A Dsignalcontext.c34 #include <machine/frame.h>
/freebsd-9.3-release/sys/amd64/amd64/
H A Dio.c33 #include <machine/frame.h>
/freebsd-9.3-release/sys/i386/i386/
H A Dio.c33 #include <machine/frame.h>
/freebsd-9.3-release/sys/ia64/include/
H A Dcpu.h45 #include <machine/frame.h>
/freebsd-9.3-release/lib/libc/sparc64/gen/
H A Dsignalcontext.c33 #include <machine/frame.h>
51 struct frame *fp;
56 fp = (struct frame *)sfp - 1;
/freebsd-9.3-release/sys/amd64/ia32/
H A Dia32_syscall.c89 #include <machine/frame.h>
98 void ia32_syscall(struct trapframe *frame); /* Called from asm code */
111 struct trapframe *frame; local
117 frame = td->td_frame;
119 params = (caddr_t)frame->tf_rsp + sizeof(u_int32_t);
120 sa->code = frame->tf_rax;
160 td->td_retval[1] = frame->tf_rdx;
169 ia32_syscall(struct trapframe *frame) argument
177 orig_tf_rflags = frame->tf_rflags;
179 td->td_frame = frame;
[all...]
/freebsd-9.3-release/lib/libc/sparc64/sys/
H A D__sparc_utrap_emul.c31 #include <machine/frame.h>
99 struct frame *frm;
110 * the frame.
112 frm = (struct frame *)(uf->uf_out[6] + SPOFF);
120 struct frame *frm;
131 * the frame.
133 frm = (struct frame *)(uf->uf_out[6] + SPOFF);

Completed in 217 milliseconds

1234567891011>>