Home
last modified time | relevance | path

Searched refs:eip (Results 1 – 25 of 32) sorted by relevance

12

/linux-2.4.37.9/arch/i386/kernel/
Dtraps.c212 smp_processor_id(), 0xffff & regs->xcs, regs->eip, print_tainted(), regs->eflags); in show_registers()
231 if(regs->eip < PAGE_OFFSET) in show_registers()
237 if(__get_user(c, &((unsigned char*)regs->eip)[i])) { in show_registers()
254 unsigned long eip; in handle_BUG() local
259 eip = regs->eip; in handle_BUG()
261 if (eip < PAGE_OFFSET) in handle_BUG()
263 if (__get_user(ud2, (unsigned short *)eip)) in handle_BUG()
267 if (__get_user(line, (unsigned short *)(eip + 2))) in handle_BUG()
269 if (__get_user(file, (char **)(eip + 4)) || in handle_BUG()
338 unsigned long fixup = search_exception_table(regs->eip); in do_trap()
[all …]
Dprocess.c453 printk("EIP: %04x:[<%08lx>] CPU: %d",0xffff & regs->xcs,regs->eip, smp_processor_id()); in show_regs()
563 p->thread.eip = (unsigned long) ret_from_fork; in copy_thread()
607 dump->regs.eip = regs->eip; in dump_thread()
772 unsigned long ebp, esp, eip; in get_wchan() local
786 eip = *(unsigned long *) (ebp+4); in get_wchan()
787 if (eip < first_sched || eip >= last_sched) in get_wchan()
788 return eip; in get_wchan()
Dsignal.c221 COPY(eip); in restore_sigcontext()
342 err |= __put_user(regs->eip, &sc->eip); in setup_sigcontext()
436 regs->eip = (unsigned long) ka->sa.sa_handler; in setup_frame()
447 current->comm, current->pid, frame, regs->eip, frame->pretcode); in setup_frame()
511 regs->eip = (unsigned long) ka->sa.sa_handler; in setup_rt_frame()
522 current->comm, current->pid, frame, regs->eip, frame->pretcode); in setup_rt_frame()
557 regs->eip -= 2; in handle_signal()
712 regs->eip -= 2; in do_signal()
Dentry.S141 movl EIP(%esp),%eax # due to call gates, this is eflags, not eip..
142 movl CS(%esp),%edx # this is eip..
165 movl EIP(%esp),%eax # due to call gates, this is eflags, not eip..
166 movl CS(%esp),%edx # this is eip..
Dnmi.c364 printk("NMI Watchdog detected LOCKUP on CPU%d, eip %08lx, registers:\n", cpu, regs->eip); in nmi_watchdog_tick()
Dsmpboot.c482 :"r" (current->thread.esp),"r" (current->thread.eip)); in initialize_secondary()
799 idle->thread.eip = (unsigned long) start_secondary; in do_boot_cpu()
/linux-2.4.37.9/include/asm-x86_64/
Dhw_irq.h135 static inline void x86_do_profile (unsigned long eip) in x86_do_profile() argument
147 eip -= (unsigned long) &_stext; in x86_do_profile()
148 eip >>= prof_shift; in x86_do_profile()
154 if (eip > prof_len-1) in x86_do_profile()
155 eip = prof_len-1; in x86_do_profile()
156 atomic_inc((atomic_t *)&prof_buffer[eip]); in x86_do_profile()
Dsigcontext32.h61 unsigned int eip; member
Duser32.h38 __u32 orig_eax, eip; member
/linux-2.4.37.9/include/asm-i386/
Dhw_irq.h192 static inline void x86_do_profile (unsigned long eip) in x86_do_profile() argument
204 eip -= (unsigned long) &_stext; in x86_do_profile()
205 eip >>= prof_shift; in x86_do_profile()
211 if (eip > prof_len-1) in x86_do_profile()
212 eip = prof_len-1; in x86_do_profile()
213 atomic_inc((atomic_t *)&prof_buffer[eip]); in x86_do_profile()
Dptrace.h37 long eip; member
59 #define instruction_pointer(regs) ((regs)->eip)
Dvm86.h84 long eip; member
159 long eip; member
Dprocessor.h338 unsigned long eip; member
364 unsigned long eip; member
416 regs->eip = new_eip; \
Dsigcontext.h72 unsigned long eip; member
Duser.h82 long orig_eax, eip; member
Dsystem.h29 :"=m" (prev->thread.esp),"=m" (prev->thread.eip), \
31 :"m" (next->thread.esp),"m" (next->thread.eip), \
Delf.h79 pr_reg[12] = regs->eip; \
/linux-2.4.37.9/arch/cris/kernel/
Dprocess.c408 unsigned long ebp, esp, eip; in get_wchan()
422 eip = *(unsigned long *) (ebp+4); in get_wchan()
423 if (eip < first_sched || eip >= last_sched) in get_wchan()
424 return eip; in get_wchan()
/linux-2.4.37.9/include/asm-cris/
Dprocessor.h102 unsigned long eip = 0; \
106 eip = ((struct pt_regs *)regs)->irp; \
107 eip; })
/linux-2.4.37.9/include/asm-m68k/
Dprocessor.h142 unsigned long eip = 0; \
145 eip = ((struct pt_regs *) (tsk)->thread.esp0)->pc; \
146 eip; })
/linux-2.4.37.9/arch/i386/mm/
Dfault.c218 printk("WP fault at %08lx\n", regs->eip); in do_page_fault()
300 if ((fixup = search_exception_table(regs->eip)) != 0) { in do_page_fault()
301 regs->eip = fixup; in do_page_fault()
318 printk("%08lx\n", regs->eip); in do_page_fault()
/linux-2.4.37.9/fs/proc/
Darray.c306 unsigned long vsize, eip, esp, wchan = ~0UL; in proc_pid_stat() local
318 vsize = eip = esp = 0; in proc_pid_stat()
341 eip = KSTK_EIP(task); in proc_pid_stat()
395 eip, in proc_pid_stat()
/linux-2.4.37.9/arch/x86_64/ia32/
Dptrace32.c73 R32(eip, rip); in putreg32()
147 R32(eip, rip); in getreg32()
/linux-2.4.37.9/include/asm-ia64/
Dia32.h123 unsigned int eip; member
550 __u32 orig_eax, eip; member
/linux-2.4.37.9/Documentation/
Dexception.txt46 (i.e. regs->eip) to find an address where the execution can continue
48 return address (again regs->eip) and returns. The execution will
267 4.) do page fault calls search_exception_table (regs->eip == c017e7a5);

12