Home
last modified time | relevance | path

Searched refs:context_ppc (Results 1 – 2 of 2) sorted by relevance

/external/google-breakpad/src/processor/
Ddump_context.cc340 const MDRawContextPPC* context_ppc = GetContextPPC(); in Print() local
343 context_ppc->context_flags); in Print()
344 printf(" srr0 = 0x%x\n", context_ppc->srr0); in Print()
345 printf(" srr1 = 0x%x\n", context_ppc->srr1); in Print()
350 gpr_index, context_ppc->gpr[gpr_index]); in Print()
352 printf(" cr = 0x%x\n", context_ppc->cr); in Print()
353 printf(" xer = 0x%x\n", context_ppc->xer); in Print()
354 printf(" lr = 0x%x\n", context_ppc->lr); in Print()
355 printf(" ctr = 0x%x\n", context_ppc->ctr); in Print()
356 printf(" mq = 0x%x\n", context_ppc->mq); in Print()
[all …]
Dminidump.cc844 scoped_ptr<MDRawContextPPC> context_ppc(new MDRawContextPPC()); in Read() local
849 context_ppc->context_flags = context_flags; in Read()
851 size_t flags_size = sizeof(context_ppc->context_flags); in Read()
853 reinterpret_cast<uint8_t*>(context_ppc.get()) + flags_size; in Read()
872 Normalize128(&context_ppc->vector_save.save_vr[vr_index], true); in Read()
877 Swap(&context_ppc->srr0); in Read()
878 Swap(&context_ppc->srr1); in Read()
882 Swap(&context_ppc->gpr[gpr_index]); in Read()
884 Swap(&context_ppc->cr); in Read()
885 Swap(&context_ppc->xer); in Read()
[all …]