Lines Matching refs:cpu32

9414 static void Print_x86_thread_state32_t(MachO::x86_thread_state32_t &cpu32) {  in Print_x86_thread_state32_t()  argument
9415 outs() << "\t eax " << format("0x%08" PRIx32, cpu32.eax); in Print_x86_thread_state32_t()
9416 outs() << " ebx " << format("0x%08" PRIx32, cpu32.ebx); in Print_x86_thread_state32_t()
9417 outs() << " ecx " << format("0x%08" PRIx32, cpu32.ecx); in Print_x86_thread_state32_t()
9418 outs() << " edx " << format("0x%08" PRIx32, cpu32.edx) << "\n"; in Print_x86_thread_state32_t()
9419 outs() << "\t edi " << format("0x%08" PRIx32, cpu32.edi); in Print_x86_thread_state32_t()
9420 outs() << " esi " << format("0x%08" PRIx32, cpu32.esi); in Print_x86_thread_state32_t()
9421 outs() << " ebp " << format("0x%08" PRIx32, cpu32.ebp); in Print_x86_thread_state32_t()
9422 outs() << " esp " << format("0x%08" PRIx32, cpu32.esp) << "\n"; in Print_x86_thread_state32_t()
9423 outs() << "\t ss " << format("0x%08" PRIx32, cpu32.ss); in Print_x86_thread_state32_t()
9424 outs() << " eflags " << format("0x%08" PRIx32, cpu32.eflags); in Print_x86_thread_state32_t()
9425 outs() << " eip " << format("0x%08" PRIx32, cpu32.eip); in Print_x86_thread_state32_t()
9426 outs() << " cs " << format("0x%08" PRIx32, cpu32.cs) << "\n"; in Print_x86_thread_state32_t()
9427 outs() << "\t ds " << format("0x%08" PRIx32, cpu32.ds); in Print_x86_thread_state32_t()
9428 outs() << " es " << format("0x%08" PRIx32, cpu32.es); in Print_x86_thread_state32_t()
9429 outs() << " fs " << format("0x%08" PRIx32, cpu32.fs); in Print_x86_thread_state32_t()
9430 outs() << " gs " << format("0x%08" PRIx32, cpu32.gs) << "\n"; in Print_x86_thread_state32_t()
9596 static void Print_arm_thread_state32_t(MachO::arm_thread_state32_t &cpu32) { in Print_arm_thread_state32_t() argument
9597 outs() << "\t r0 " << format("0x%08" PRIx32, cpu32.r[0]); in Print_arm_thread_state32_t()
9598 outs() << " r1 " << format("0x%08" PRIx32, cpu32.r[1]); in Print_arm_thread_state32_t()
9599 outs() << " r2 " << format("0x%08" PRIx32, cpu32.r[2]); in Print_arm_thread_state32_t()
9600 outs() << " r3 " << format("0x%08" PRIx32, cpu32.r[3]) << "\n"; in Print_arm_thread_state32_t()
9601 outs() << "\t r4 " << format("0x%08" PRIx32, cpu32.r[4]); in Print_arm_thread_state32_t()
9602 outs() << " r5 " << format("0x%08" PRIx32, cpu32.r[5]); in Print_arm_thread_state32_t()
9603 outs() << " r6 " << format("0x%08" PRIx32, cpu32.r[6]); in Print_arm_thread_state32_t()
9604 outs() << " r7 " << format("0x%08" PRIx32, cpu32.r[7]) << "\n"; in Print_arm_thread_state32_t()
9605 outs() << "\t r8 " << format("0x%08" PRIx32, cpu32.r[8]); in Print_arm_thread_state32_t()
9606 outs() << " r9 " << format("0x%08" PRIx32, cpu32.r[9]); in Print_arm_thread_state32_t()
9607 outs() << " r10 " << format("0x%08" PRIx32, cpu32.r[10]); in Print_arm_thread_state32_t()
9608 outs() << " r11 " << format("0x%08" PRIx32, cpu32.r[11]) << "\n"; in Print_arm_thread_state32_t()
9609 outs() << "\t r12 " << format("0x%08" PRIx32, cpu32.r[12]); in Print_arm_thread_state32_t()
9610 outs() << " sp " << format("0x%08" PRIx32, cpu32.sp); in Print_arm_thread_state32_t()
9611 outs() << " lr " << format("0x%08" PRIx32, cpu32.lr); in Print_arm_thread_state32_t()
9612 outs() << " pc " << format("0x%08" PRIx32, cpu32.pc) << "\n"; in Print_arm_thread_state32_t()
9613 outs() << "\t cpsr " << format("0x%08" PRIx32, cpu32.cpsr) << "\n"; in Print_arm_thread_state32_t()
9697 MachO::x86_thread_state32_t cpu32; in PrintThreadCommand() local
9700 memcpy(&cpu32, begin, sizeof(MachO::x86_thread_state32_t)); in PrintThreadCommand()
9703 memset(&cpu32, '\0', sizeof(MachO::x86_thread_state32_t)); in PrintThreadCommand()
9704 memcpy(&cpu32, begin, left); in PrintThreadCommand()
9708 swapStruct(cpu32); in PrintThreadCommand()
9709 Print_x86_thread_state32_t(cpu32); in PrintThreadCommand()
9934 MachO::arm_thread_state32_t cpu32; in PrintThreadCommand() local
9937 memcpy(&cpu32, begin, sizeof(MachO::arm_thread_state32_t)); in PrintThreadCommand()
9940 memset(&cpu32, '\0', sizeof(MachO::arm_thread_state32_t)); in PrintThreadCommand()
9941 memcpy(&cpu32, begin, left); in PrintThreadCommand()
9945 swapStruct(cpu32); in PrintThreadCommand()
9946 Print_arm_thread_state32_t(cpu32); in PrintThreadCommand()