stack frame for interrupts/exceptions in PPC

Tameen Khan tameen at cisco.com
Wed Apr 28 11:11:09 EST 2004


I am tryting to implement kernel backtracing for PPC.

I need to understand how the process kernel stack/interrupt stack is managed
for PPC in the event of interrupts and exceptions.
ANY pointer to docs/code etc explaining above topic will be appreciated.

What is STACK_FRAME_OVERHEAD_PPC used for??? Its defined to be 16 for PPC
and 112 for PPC64.

I'm have the following issues right now.
1) How to identify stack frames which need special handling. For PPC64 if
the function name is .ret_from_syscall_1 or .ret_from_except, it is deemed
to be an interrupt_frame and handled seperately. There is also special
handling for frame __switch_to.

2) How to get the newpc, newlr and newsp values for these special frames.
Code used for PPC64 is given below.

nip_offset = byte offset of nip in struct pt_regs
r1_offset =  byte offset of r1 in struct pt_regs
lr_offset = byte offset of lr in struct pt_regs

         if (interrupt_frame) {
                newpc = KL_VREAD_PTR(sp +
                    KL_STACK_FRAME_OVERHEAD_PPC +
                    nip_offset);
                newsp = KL_VREAD_PTR(sp +
                    KL_STACK_FRAME_OVERHEAD_PPC +
                    r1_offset);
                newlr = KL_VREAD_PTR(sp +
                    KL_STACK_FRAME_OVERHEAD_PPC +
                    lr_offset);
                frm_size = get_frame_size(sp, newsp, saddr);
            }


Thanks
Tameen


** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/





More information about the Linuxppc-dev mailing list