Searched refs:frame_ppc (Results 1 – 3 of 3) sorted by relevance
/external/google-breakpad/src/tools/mac/crash_report/ |
D | crash_report.mm | 164 const StackFramePPC *frame_ppc = 167 if ((frame_ppc->context_validity & StackFramePPC::CONTEXT_VALID_ALL) == 169 sequence = PrintRegister("srr0", frame_ppc->context.srr0, sequence); 170 sequence = PrintRegister("srr1", frame_ppc->context.srr1, sequence); 171 sequence = PrintRegister("cr", frame_ppc->context.cr, sequence); 172 sequence = PrintRegister("xer", frame_ppc->context.xer, sequence); 173 sequence = PrintRegister("lr", frame_ppc->context.lr, sequence); 174 sequence = PrintRegister("ctr", frame_ppc->context.ctr, sequence); 175 sequence = PrintRegister("mq", frame_ppc->context.mq, sequence); 176 sequence = PrintRegister("vrsave", frame_ppc->context.vrsave, sequence); [all …]
|
/external/google-breakpad/src/processor/ |
D | stackwalker_selftest.cc | 363 StackFramePPC *frame_ppc = reinterpret_cast<StackFramePPC*>(frame); in CountCallerFrames() local 364 printf(" gpr[1] = 0x%08x\n", frame_ppc->context.gpr[1]); in CountCallerFrames()
|
D | stackwalk_common.cc | 314 const StackFramePPC *frame_ppc = in PrintStack() local 317 if (frame_ppc->context_validity & StackFramePPC::CONTEXT_VALID_SRR0) in PrintStack() 318 sequence = PrintRegister("srr0", frame_ppc->context.srr0, sequence); in PrintStack() 319 if (frame_ppc->context_validity & StackFramePPC::CONTEXT_VALID_GPR1) in PrintStack() 320 sequence = PrintRegister("r1", frame_ppc->context.gpr[1], sequence); in PrintStack()
|