Lines Matching refs:cpu32

8948 static void Print_x86_thread_state32_t(MachO::x86_thread_state32_t &cpu32) {  in Print_x86_thread_state32_t()  argument
8949 outs() << "\t eax " << format("0x%08" PRIx32, cpu32.eax); in Print_x86_thread_state32_t()
8950 outs() << " ebx " << format("0x%08" PRIx32, cpu32.ebx); in Print_x86_thread_state32_t()
8951 outs() << " ecx " << format("0x%08" PRIx32, cpu32.ecx); in Print_x86_thread_state32_t()
8952 outs() << " edx " << format("0x%08" PRIx32, cpu32.edx) << "\n"; in Print_x86_thread_state32_t()
8953 outs() << "\t edi " << format("0x%08" PRIx32, cpu32.edi); in Print_x86_thread_state32_t()
8954 outs() << " esi " << format("0x%08" PRIx32, cpu32.esi); in Print_x86_thread_state32_t()
8955 outs() << " ebp " << format("0x%08" PRIx32, cpu32.ebp); in Print_x86_thread_state32_t()
8956 outs() << " esp " << format("0x%08" PRIx32, cpu32.esp) << "\n"; in Print_x86_thread_state32_t()
8957 outs() << "\t ss " << format("0x%08" PRIx32, cpu32.ss); in Print_x86_thread_state32_t()
8958 outs() << " eflags " << format("0x%08" PRIx32, cpu32.eflags); in Print_x86_thread_state32_t()
8959 outs() << " eip " << format("0x%08" PRIx32, cpu32.eip); in Print_x86_thread_state32_t()
8960 outs() << " cs " << format("0x%08" PRIx32, cpu32.cs) << "\n"; in Print_x86_thread_state32_t()
8961 outs() << "\t ds " << format("0x%08" PRIx32, cpu32.ds); in Print_x86_thread_state32_t()
8962 outs() << " es " << format("0x%08" PRIx32, cpu32.es); in Print_x86_thread_state32_t()
8963 outs() << " fs " << format("0x%08" PRIx32, cpu32.fs); in Print_x86_thread_state32_t()
8964 outs() << " gs " << format("0x%08" PRIx32, cpu32.gs) << "\n"; in Print_x86_thread_state32_t()
9130 static void Print_arm_thread_state32_t(MachO::arm_thread_state32_t &cpu32) { in Print_arm_thread_state32_t() argument
9131 outs() << "\t r0 " << format("0x%08" PRIx32, cpu32.r[0]); in Print_arm_thread_state32_t()
9132 outs() << " r1 " << format("0x%08" PRIx32, cpu32.r[1]); in Print_arm_thread_state32_t()
9133 outs() << " r2 " << format("0x%08" PRIx32, cpu32.r[2]); in Print_arm_thread_state32_t()
9134 outs() << " r3 " << format("0x%08" PRIx32, cpu32.r[3]) << "\n"; in Print_arm_thread_state32_t()
9135 outs() << "\t r4 " << format("0x%08" PRIx32, cpu32.r[4]); in Print_arm_thread_state32_t()
9136 outs() << " r5 " << format("0x%08" PRIx32, cpu32.r[5]); in Print_arm_thread_state32_t()
9137 outs() << " r6 " << format("0x%08" PRIx32, cpu32.r[6]); in Print_arm_thread_state32_t()
9138 outs() << " r7 " << format("0x%08" PRIx32, cpu32.r[7]) << "\n"; in Print_arm_thread_state32_t()
9139 outs() << "\t r8 " << format("0x%08" PRIx32, cpu32.r[8]); in Print_arm_thread_state32_t()
9140 outs() << " r9 " << format("0x%08" PRIx32, cpu32.r[9]); in Print_arm_thread_state32_t()
9141 outs() << " r10 " << format("0x%08" PRIx32, cpu32.r[10]); in Print_arm_thread_state32_t()
9142 outs() << " r11 " << format("0x%08" PRIx32, cpu32.r[11]) << "\n"; in Print_arm_thread_state32_t()
9143 outs() << "\t r12 " << format("0x%08" PRIx32, cpu32.r[12]); in Print_arm_thread_state32_t()
9144 outs() << " sp " << format("0x%08" PRIx32, cpu32.sp); in Print_arm_thread_state32_t()
9145 outs() << " lr " << format("0x%08" PRIx32, cpu32.lr); in Print_arm_thread_state32_t()
9146 outs() << " pc " << format("0x%08" PRIx32, cpu32.pc) << "\n"; in Print_arm_thread_state32_t()
9147 outs() << "\t cpsr " << format("0x%08" PRIx32, cpu32.cpsr) << "\n"; in Print_arm_thread_state32_t()
9231 MachO::x86_thread_state32_t cpu32; in PrintThreadCommand() local
9234 memcpy(&cpu32, begin, sizeof(MachO::x86_thread_state32_t)); in PrintThreadCommand()
9237 memset(&cpu32, '\0', sizeof(MachO::x86_thread_state32_t)); in PrintThreadCommand()
9238 memcpy(&cpu32, begin, left); in PrintThreadCommand()
9242 swapStruct(cpu32); in PrintThreadCommand()
9243 Print_x86_thread_state32_t(cpu32); in PrintThreadCommand()
9468 MachO::arm_thread_state32_t cpu32; in PrintThreadCommand() local
9471 memcpy(&cpu32, begin, sizeof(MachO::arm_thread_state32_t)); in PrintThreadCommand()
9474 memset(&cpu32, '\0', sizeof(MachO::arm_thread_state32_t)); in PrintThreadCommand()
9475 memcpy(&cpu32, begin, left); in PrintThreadCommand()
9479 swapStruct(cpu32); in PrintThreadCommand()
9480 Print_arm_thread_state32_t(cpu32); in PrintThreadCommand()