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.cc384 const MDRawContextPPC* context_ppc = GetContextPPC(); in Print() local
387 context_ppc->context_flags); in Print()
388 printf(" srr0 = 0x%x\n", context_ppc->srr0); in Print()
389 printf(" srr1 = 0x%x\n", context_ppc->srr1); in Print()
394 gpr_index, context_ppc->gpr[gpr_index]); in Print()
396 printf(" cr = 0x%x\n", context_ppc->cr); in Print()
397 printf(" xer = 0x%x\n", context_ppc->xer); in Print()
398 printf(" lr = 0x%x\n", context_ppc->lr); in Print()
399 printf(" ctr = 0x%x\n", context_ppc->ctr); in Print()
400 printf(" mq = 0x%x\n", context_ppc->mq); in Print()
[all …]
Dminidump.cc862 scoped_ptr<MDRawContextPPC> context_ppc(new MDRawContextPPC()); in Read() local
867 context_ppc->context_flags = context_flags; in Read()
869 size_t flags_size = sizeof(context_ppc->context_flags); in Read()
871 reinterpret_cast<uint8_t*>(context_ppc.get()) + flags_size; in Read()
890 Normalize128(&context_ppc->vector_save.save_vr[vr_index], true); in Read()
895 Swap(&context_ppc->srr0); in Read()
896 Swap(&context_ppc->srr1); in Read()
900 Swap(&context_ppc->gpr[gpr_index]); in Read()
902 Swap(&context_ppc->cr); in Read()
903 Swap(&context_ppc->xer); in Read()
[all …]