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.cc423 const MDRawContextPPC64* context_ppc64 = GetContextPPC64(); in Print() local
426 context_ppc64->context_flags); in Print()
428 context_ppc64->srr0); in Print()
430 context_ppc64->srr1); in Print()
435 gpr_index, context_ppc64->gpr[gpr_index]); in Print()
437 printf(" cr = 0x%" PRIx64 "\n", context_ppc64->cr); in Print()
439 context_ppc64->xer); in Print()
440 printf(" lr = 0x%" PRIx64 "\n", context_ppc64->lr); in Print()
442 context_ppc64->ctr); in Print()
444 context_ppc64->vrsave); in Print()
[all …]
Dminidump.cc587 scoped_ptr<MDRawContextPPC64> context_ppc64(new MDRawContextPPC64()); in Read() local
591 context_ppc64->context_flags |= cpu_type; in Read()
608 context_ppc64->context_flags = context_flags; in Read()
610 size_t flags_size = sizeof(context_ppc64->context_flags); in Read()
612 reinterpret_cast<uint8_t*>(context_ppc64.get()) + flags_size; in Read()
627 Swap(&context_ppc64->srr0); in Read()
628 Swap(&context_ppc64->srr1); in Read()
632 Swap(&context_ppc64->gpr[gpr_index]); in Read()
634 Swap(&context_ppc64->cr); in Read()
635 Swap(&context_ppc64->xer); in Read()
[all …]