Lines Matching refs:stack
49 void show_trace(struct task_struct *task, unsigned long *stack) in show_trace() argument
55 ((unsigned long)stack & (~(THREAD_SIZE - 1))); in show_trace()
57 while (valid_stack_ptr(context, stack)) { in show_trace()
58 addr = *stack++; in show_trace()
71 unsigned long addr, *stack; in show_stack() local
77 stack = esp; in show_stack()
81 if (kstack_end(stack)) in show_stack()
83 if (__get_user(addr, stack)) { in show_stack()
87 printk("Failing address 0x%lx\n", (unsigned long)stack); in show_stack()
90 stack++; in show_stack()
176 unsigned long addr, stack = regs->sp; in nommu_dump_state() local
208 printk("Stack dump [0x%08lx]:\n", (unsigned long)stack); in nommu_dump_state()
210 if (((long)stack & (THREAD_SIZE - 1)) == 0) in nommu_dump_state()
212 stack++; in nommu_dump_state()
214 printk("%lx :: sp + %02d: 0x%08lx\n", stack, i * 4, in nommu_dump_state()
215 *((unsigned long *)(__pa(stack)))); in nommu_dump_state()
221 while (((long)stack & (THREAD_SIZE - 1)) != 0) { in nommu_dump_state()
222 addr = *((unsigned long *)__pa(stack)); in nommu_dump_state()
223 stack++; in nommu_dump_state()