Searched refs:frame (Results 101 - 125 of 351) sorted by relevance

1234567891011>>

/freebsd-9.3-release/sys/arm/arm/
H A Dcpufunc.c1313 trapframe_t *frame = arg; local
1318 if ((frame->tf_spsr & PSR_MODE) == PSR_SVC32_MODE) {
1333 saved_lr = frame->tf_usr_lr;
1334 frame->tf_usr_lr = frame->tf_svc_lr;
1346 fault_pc = frame->tf_pc;
1355 int *registers = &frame->tf_r0;
1384 int *registers = &frame->tf_r0;
1395 (frame->tf_spsr & PSR_MODE) == PSR_SVC32_MODE)
1410 if ((frame
1454 trapframe_t *frame = arg; local
[all...]
H A Dtrap.c112 #include <machine/frame.h>
903 syscall(struct thread *td, trapframe_t *frame, u_int32_t insn) argument
908 td->td_frame = frame;
916 userret(td, frame);
927 swi_handler(trapframe_t *frame) argument
932 td->td_frame = frame;
939 if (__predict_false(((frame->tf_pc - INSN_SIZE) & 3) != 0)) {
941 userret(td, frame);
944 insn = *(u_int32_t *)(frame->tf_pc - INSN_SIZE);
951 if (__predict_true(frame
[all...]
H A Dvm_machdep.c272 trapframe_t *frame; local
278 frame = td->td_frame;
282 insn = *(u_int32_t *)(frame->tf_pc - INSN_SIZE);
284 register_t *ap = &frame->tf_r0;
296 frame->tf_r0 = 0;
297 frame->tf_r1 = td->td_retval[0];
299 frame->tf_r0 = td->td_retval[0];
300 frame->tf_r1 = td->td_retval[1];
302 frame->tf_spsr &= ~PSR_C_bit; /* carry bit */
308 frame
[all...]
H A Dgdb_machdep.c43 #include <machine/frame.h>
/freebsd-9.3-release/contrib/gdb/gdb/tui/
H A Dtui-regs.c31 #include "frame.h"
55 struct frame_info *frame, int refresh_values_only);
58 tui_get_register (struct gdbarch *gdbarch, struct frame_info *frame,
201 using the given frame. Values are refreshed only when refresh_values_only
206 struct frame_info *frame, int refresh_values_only)
287 tui_get_register (gdbarch, frame, data, regnum, 0);
479 given a particular frame. If the values have changed, they are
482 tui_check_register_values (struct frame_info *frame) argument
507 tui_get_register (current_gdbarch, frame, data,
645 /* Get the register from the frame an
205 tui_show_register_group(struct gdbarch *gdbarch, struct reggroup *group, struct frame_info *frame, int refresh_values_only) argument
648 tui_register_format(struct gdbarch *gdbarch, struct frame_info *frame, struct tui_data_element *data_element, int regnum) argument
703 tui_get_register(struct gdbarch *gdbarch, struct frame_info *frame, struct tui_data_element *data, int regnum, int *changedp) argument
[all...]
H A Dtui-windata.c239 tui_check_data_values (struct frame_info *frame) argument
241 tui_check_register_values (frame);
260 has changed (data_element_ptr, frame, &new_value)
/freebsd-9.3-release/sys/cddl/dev/dtrace/i386/
H A Ddtrace_subr.c45 #include <machine/frame.h>
476 dtrace_trap(struct trapframe *frame, u_int type) argument
503 frame->tf_eip += dtrace_instr_size((u_char *) frame->tf_eip);
515 frame->tf_eip += dtrace_instr_size((u_char *) frame->tf_eip);
/freebsd-9.3-release/sys/dev/usb/
H A Dusb_pf.c193 usbpf_xfer_frame_is_read(struct usb_xfer *xfer, uint32_t frame) argument
197 if ((frame == 0) && (xfer->flags_int.control_xfr != 0) &&
252 uint32_t frame; local
322 /* init offset and frame */
324 frame = 0;
334 /* get frame header pointer */
369 usbd_copy_out(&xfer->frbuffers[frame],
385 frame ++;
/freebsd-9.3-release/sys/sparc64/sparc64/
H A Ddb_trace.c112 /* First, check whether the frame is in the pcb. */
125 if (copyin((void *)(rsp + offsetof(struct frame, fr_fp)),
127 copyin((void *)(rsp + offsetof(struct frame, fr_pc)),
220 db_backtrace(struct thread *td, struct frame *fp, int count)
255 fp = (struct frame *)(db_get_value((db_addr_t)&fp->fr_fp,
280 (struct frame *)__builtin_frame_address(1), -1);
290 (struct frame *)(ctx->pcb_sp + SPOFF), count));
H A Dvm_machdep.c78 #include <machine/frame.h>
204 struct frame *fr;
211 fr = (struct frame *)tf - 1;
235 tf->tf_out[6] = sp - SPOFF - sizeof(struct frame);
262 struct frame *fp;
298 * space, the parent's top most frame must be saved in the pcb. The
299 * child will pop the frame when it returns to user mode, and may
324 * Copy the trap frame for the return to user mode as if from a
336 fp = (struct frame *)tf - 1;
340 /* Terminate stack traces at this frame
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dalphanbsd-tdep.c25 #include "frame.h"
188 alphanbsd_sigcontext_addr (struct frame_info *frame) argument
192 out which trampoline frame type we have. */
193 return get_frame_base (frame);
202 /* Hook into the DWARF CFI frame unwinder. */
205 /* Hook into the MDEBUG frame unwinder. */
H A Dgdbarch.h291 /* Function for getting target's idea of a frame pointer. FIXME: GDB's
292 whole scheme for dealing with "frames" and "frame pointers" needs a
984 typedef void (gdbarch_print_registers_info_ftype) (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, int regnum, int all);
985 extern void gdbarch_print_registers_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, int regnum, int all);
990 typedef void (gdbarch_print_float_info_ftype) (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, const char *args);
991 extern void gdbarch_print_float_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, const char *args);
996 typedef void (gdbarch_print_vector_info_ftype) (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, const char *args);
997 extern void gdbarch_print_vector_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, const char *args);
1199 typedef void (gdbarch_deprecated_get_saved_register_ftype) (char *raw_buffer, int *optimized, CORE_ADDR *addrp, struct frame_info *frame, int regnum, enum lval_type *lval);
1200 extern void gdbarch_deprecated_get_saved_register (struct gdbarch *gdbarch, char *raw_buffer, int *optimized, CORE_ADDR *addrp, struct frame_info *frame, in
[all...]
H A Ddummy-frame.c26 #include "dummy-frame.h"
28 #include "frame.h"
31 #include "frame-unwind.h"
39 /* Dummy frame. This saves the processor state just prior to setting
47 /* These values belong to the caller (the previous frame, the frame
79 /* Does the PC fall within the dummy frame's breakpoint
89 (frame base) value that eactly matches that saved TOS.
98 saved the dummy frame's top-of-stack. Try matching the
101 frame, chec
261 generic_pop_current_frame(void (*popper) (struct frame_info * frame)) argument
263 struct frame_info *frame = get_current_frame (); local
[all...]
H A Dvarobj.h37 USE_SPECIFIED_FRAME, /* Use the frame passed to varobj_create */
38 USE_CURRENT_FRAME, /* Use the current frame */
39 USE_SELECTED_FRAME /* Always reevaluate in selected frame */
60 char *expression, CORE_ADDR frame,
/freebsd-9.3-release/sys/xen/
H A Dgnttab.h61 int gnttab_grant_foreign_access(domid_t domid, unsigned long frame,
114 unsigned long frame, int flags);
/freebsd-9.3-release/sys/powerpc/aim/
H A Dmachdep.c739 db_trap_glue(struct trapframe *frame) argument
741 if (!(frame->srr1 & PSL_PR)
742 && (frame->exc == EXC_TRC || frame->exc == EXC_RUNMODETRC
743 || (frame->exc == EXC_PGM
744 && (frame->srr1 & 0x20000))
745 || frame->exc == EXC_BPT
746 || frame->exc == EXC_DSI)) {
747 int type = frame->exc;
748 if (type == EXC_PGM && (frame
[all...]
/freebsd-9.3-release/contrib/binutils/binutils/
H A Ddwarf.h52 frame, enumerator in enum:dwarf_section_display_enum
/freebsd-9.3-release/contrib/gcc/config/i386/
H A Dsol2-c1.asm50 ! Start creating the initial frame by pushing a NULL value for the return
51 ! address of the initial frame, and mark the end of the stack frame chain
52 ! (the innermost stack frame) with a NULL value, per page 3-32 of the ABI.
53 ! Initialize the first stack frame pointer in %ebp (the contents of which
100 ! the frame pointer. Fetch the argument count into %eax, scale by the
104 ! off the frame pointer (whew!).
116 ! the initial frame pointer.
H A Dsol2-gc1.asm53 ! Start creating the initial frame by pushing a NULL value for the return
54 ! address of the initial frame, and mark the end of the stack frame chain
55 ! (the innermost stack frame) with a NULL value, per page 3-32 of the ABI.
56 ! Initialize the first stack frame pointer in %ebp (the contents of which
113 ! the frame pointer. Fetch the argument count into %eax, scale by the
117 ! off the frame pointer (whew!).
129 ! the initial frame pointer.
/freebsd-9.3-release/contrib/wpa/wpa_supplicant/
H A Dap.h37 void ap_rx_from_unknown_sta(void *ctx, const u8 *frame, size_t len);
/freebsd-9.3-release/lib/libc/arm/gen/
H A Dsignalcontext.c34 #include <machine/frame.h>
64 /* Wipe out frame pointer. */
/freebsd-9.3-release/share/examples/ppp/
H A Dchap-auth50 frame .$n;
92 frame .b;
/freebsd-9.3-release/sys/arm/include/
H A Ddb_machdep.h33 #include <machine/frame.h>
H A Dframe.h1 /* $NetBSD: frame.h,v 1.5 2002/10/19 00:10:54 bjh21 Exp $ */
39 * frame.h
59 * Trap frame. Pushed onto the kernel stack on a trap (synchronous exception).
89 * * Scheduler activations upcall frame. Pushed onto user stack before
104 * * Signal frame. Pushed onto user stack before calling sigcode.
141 * Switch frame
153 * Stack frame. Used during stack traces (db_trace.c)
155 struct frame { struct
166 /* End of frame.h */
/freebsd-9.3-release/sys/arm/xscale/i80321/
H A Di80321_timer.c58 #include <machine/frame.h>
464 struct trapframe *frame = arg; local
468 hardclock(TRAPF_USERMODE(frame), TRAPF_PC(frame));

Completed in 249 milliseconds

1234567891011>>