Lines Matching refs:cpu32

9381 static void Print_x86_thread_state32_t(MachO::x86_thread_state32_t &cpu32) {  in Print_x86_thread_state32_t()  argument
9382 outs() << "\t eax " << format("0x%08" PRIx32, cpu32.eax); in Print_x86_thread_state32_t()
9383 outs() << " ebx " << format("0x%08" PRIx32, cpu32.ebx); in Print_x86_thread_state32_t()
9384 outs() << " ecx " << format("0x%08" PRIx32, cpu32.ecx); in Print_x86_thread_state32_t()
9385 outs() << " edx " << format("0x%08" PRIx32, cpu32.edx) << "\n"; in Print_x86_thread_state32_t()
9386 outs() << "\t edi " << format("0x%08" PRIx32, cpu32.edi); in Print_x86_thread_state32_t()
9387 outs() << " esi " << format("0x%08" PRIx32, cpu32.esi); in Print_x86_thread_state32_t()
9388 outs() << " ebp " << format("0x%08" PRIx32, cpu32.ebp); in Print_x86_thread_state32_t()
9389 outs() << " esp " << format("0x%08" PRIx32, cpu32.esp) << "\n"; in Print_x86_thread_state32_t()
9390 outs() << "\t ss " << format("0x%08" PRIx32, cpu32.ss); in Print_x86_thread_state32_t()
9391 outs() << " eflags " << format("0x%08" PRIx32, cpu32.eflags); in Print_x86_thread_state32_t()
9392 outs() << " eip " << format("0x%08" PRIx32, cpu32.eip); in Print_x86_thread_state32_t()
9393 outs() << " cs " << format("0x%08" PRIx32, cpu32.cs) << "\n"; in Print_x86_thread_state32_t()
9394 outs() << "\t ds " << format("0x%08" PRIx32, cpu32.ds); in Print_x86_thread_state32_t()
9395 outs() << " es " << format("0x%08" PRIx32, cpu32.es); in Print_x86_thread_state32_t()
9396 outs() << " fs " << format("0x%08" PRIx32, cpu32.fs); in Print_x86_thread_state32_t()
9397 outs() << " gs " << format("0x%08" PRIx32, cpu32.gs) << "\n"; in Print_x86_thread_state32_t()
9563 static void Print_arm_thread_state32_t(MachO::arm_thread_state32_t &cpu32) { in Print_arm_thread_state32_t() argument
9564 outs() << "\t r0 " << format("0x%08" PRIx32, cpu32.r[0]); in Print_arm_thread_state32_t()
9565 outs() << " r1 " << format("0x%08" PRIx32, cpu32.r[1]); in Print_arm_thread_state32_t()
9566 outs() << " r2 " << format("0x%08" PRIx32, cpu32.r[2]); in Print_arm_thread_state32_t()
9567 outs() << " r3 " << format("0x%08" PRIx32, cpu32.r[3]) << "\n"; in Print_arm_thread_state32_t()
9568 outs() << "\t r4 " << format("0x%08" PRIx32, cpu32.r[4]); in Print_arm_thread_state32_t()
9569 outs() << " r5 " << format("0x%08" PRIx32, cpu32.r[5]); in Print_arm_thread_state32_t()
9570 outs() << " r6 " << format("0x%08" PRIx32, cpu32.r[6]); in Print_arm_thread_state32_t()
9571 outs() << " r7 " << format("0x%08" PRIx32, cpu32.r[7]) << "\n"; in Print_arm_thread_state32_t()
9572 outs() << "\t r8 " << format("0x%08" PRIx32, cpu32.r[8]); in Print_arm_thread_state32_t()
9573 outs() << " r9 " << format("0x%08" PRIx32, cpu32.r[9]); in Print_arm_thread_state32_t()
9574 outs() << " r10 " << format("0x%08" PRIx32, cpu32.r[10]); in Print_arm_thread_state32_t()
9575 outs() << " r11 " << format("0x%08" PRIx32, cpu32.r[11]) << "\n"; in Print_arm_thread_state32_t()
9576 outs() << "\t r12 " << format("0x%08" PRIx32, cpu32.r[12]); in Print_arm_thread_state32_t()
9577 outs() << " sp " << format("0x%08" PRIx32, cpu32.sp); in Print_arm_thread_state32_t()
9578 outs() << " lr " << format("0x%08" PRIx32, cpu32.lr); in Print_arm_thread_state32_t()
9579 outs() << " pc " << format("0x%08" PRIx32, cpu32.pc) << "\n"; in Print_arm_thread_state32_t()
9580 outs() << "\t cpsr " << format("0x%08" PRIx32, cpu32.cpsr) << "\n"; in Print_arm_thread_state32_t()
9664 MachO::x86_thread_state32_t cpu32; in PrintThreadCommand() local
9667 memcpy(&cpu32, begin, sizeof(MachO::x86_thread_state32_t)); in PrintThreadCommand()
9670 memset(&cpu32, '\0', sizeof(MachO::x86_thread_state32_t)); in PrintThreadCommand()
9671 memcpy(&cpu32, begin, left); in PrintThreadCommand()
9675 swapStruct(cpu32); in PrintThreadCommand()
9676 Print_x86_thread_state32_t(cpu32); in PrintThreadCommand()
9901 MachO::arm_thread_state32_t cpu32; in PrintThreadCommand() local
9904 memcpy(&cpu32, begin, sizeof(MachO::arm_thread_state32_t)); in PrintThreadCommand()
9907 memset(&cpu32, '\0', sizeof(MachO::arm_thread_state32_t)); in PrintThreadCommand()
9908 memcpy(&cpu32, begin, left); in PrintThreadCommand()
9912 swapStruct(cpu32); in PrintThreadCommand()
9913 Print_arm_thread_state32_t(cpu32); in PrintThreadCommand()