Home
last modified time | relevance | path

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

/external/google-breakpad/src/processor/
Ddump_context.cc379 const MDRawContextPPC64* context_ppc64 = GetContextPPC64(); in Print() local
382 context_ppc64->context_flags); in Print()
384 context_ppc64->srr0); in Print()
386 context_ppc64->srr1); in Print()
391 gpr_index, context_ppc64->gpr[gpr_index]); in Print()
393 printf(" cr = 0x%" PRIx64 "\n", context_ppc64->cr); in Print()
395 context_ppc64->xer); in Print()
396 printf(" lr = 0x%" PRIx64 "\n", context_ppc64->lr); in Print()
398 context_ppc64->ctr); in Print()
400 context_ppc64->vrsave); in Print()
[all …]
Dminidump.cc561 scoped_ptr<MDRawContextPPC64> context_ppc64(new MDRawContextPPC64()); in Read() local
565 context_ppc64->context_flags |= cpu_type; in Read()
582 context_ppc64->context_flags = context_flags; in Read()
584 size_t flags_size = sizeof(context_ppc64->context_flags); in Read()
586 reinterpret_cast<uint8_t*>(context_ppc64.get()) + flags_size; in Read()
601 Swap(&context_ppc64->srr0); in Read()
602 Swap(&context_ppc64->srr1); in Read()
606 Swap(&context_ppc64->gpr[gpr_index]); in Read()
608 Swap(&context_ppc64->cr); in Read()
609 Swap(&context_ppc64->xer); in Read()
[all …]