/external/llvm/test/CodeGen/MIR/Lanai/ |
D | peephole-compare.mir | 184 - { id: 0, class: gpr } 185 - { id: 1, class: gpr } 186 - { id: 2, class: gpr } 187 - { id: 3, class: gpr } 188 - { id: 4, class: gpr } 189 - { id: 5, class: gpr } 232 - { id: 0, class: gpr } 233 - { id: 1, class: gpr } 234 - { id: 2, class: gpr } 235 - { id: 3, class: gpr } [all …]
|
/external/elfutils/backends/ |
D | ppc_initreg.c | 95 const size_t gprs = sizeof (user_regs.r.gpr) / sizeof (*user_regs.r.gpr); in ppc_set_initial_registers_tid() 97 for (unsigned gpr = 0; gpr < gprs; gpr++) in ppc_set_initial_registers_tid() 98 dwarf_regs[gpr] = user_regs.r.gpr[gpr]; in ppc_set_initial_registers_tid()
|
/external/strace/linux/or1k/ |
D | get_syscall_args.c | 5 tcp->u_arg[0] = or1k_regs.gpr[3 + 0]; in get_syscall_args() 6 tcp->u_arg[1] = or1k_regs.gpr[3 + 1]; in get_syscall_args() 7 tcp->u_arg[2] = or1k_regs.gpr[3 + 2]; in get_syscall_args() 8 tcp->u_arg[3] = or1k_regs.gpr[3 + 3]; in get_syscall_args() 9 tcp->u_arg[4] = or1k_regs.gpr[3 + 4]; in get_syscall_args() 10 tcp->u_arg[5] = or1k_regs.gpr[3 + 5]; in get_syscall_args()
|
D | get_error.c | 4 if (check_errno && is_negated_errno(or1k_regs.gpr[11])) { in get_error() 6 tcp->u_error = -or1k_regs.gpr[11]; in get_error() 8 tcp->u_rval = or1k_regs.gpr[11]; in get_error()
|
D | set_error.c | 4 or1k_regs.gpr[11] = -tcp->u_error; in arch_set_error() 11 or1k_regs.gpr[11] = tcp->u_rval; in arch_set_success()
|
D | get_scno.c | 5 tcp->scno = or1k_regs.gpr[11]; in arch_get_scno()
|
D | set_scno.c | 4 or1k_regs.gpr[11] = scno; in arch_set_scno()
|
/external/llvm/test/CodeGen/AArch64/GlobalISel/ |
D | arm64-regbankselect.mir | 61 # Based on the type i32, this should be gpr. 65 # CHECK-NEXT: - { id: 0, class: gpr } 100 # CHECK-NEXT: - { id: 1, class: gpr } 101 # CHECK-NEXT: - { id: 2, class: gpr } 120 # CHECK-NEXT: - { id: 1, class: gpr } 121 # CHECK-NEXT: - { id: 2, class: gpr } 122 # CHECK-NEXT: - { id: 3, class: gpr } 145 # CHECK-NEXT: - { id: 0, class: gpr } 147 # CHECK-NEXT: - { id: 2, class: gpr } 170 # CHECK-NEXT: - { id: 3, class: gpr } [all …]
|
/external/strace/linux/powerpc/ |
D | get_syscall_args.c | 6 tcp->u_arg[1] = ppc_regs.gpr[4]; in get_syscall_args() 7 tcp->u_arg[2] = ppc_regs.gpr[5]; in get_syscall_args() 8 tcp->u_arg[3] = ppc_regs.gpr[6]; in get_syscall_args() 9 tcp->u_arg[4] = ppc_regs.gpr[7]; in get_syscall_args() 10 tcp->u_arg[5] = ppc_regs.gpr[8]; in get_syscall_args()
|
D | set_error.c | 4 ppc_regs.gpr[3] = tcp->u_error; in arch_set_error() 6 return upoke(tcp->pid, sizeof(long) * (PT_R0 + 3), ppc_regs.gpr[3]); in arch_set_error() 15 ppc_regs.gpr[3] = tcp->u_rval; in arch_set_success() 19 upoke(tcp->pid, sizeof(long) * (PT_R0 + 3), ppc_regs.gpr[3]); in arch_set_success()
|
D | get_error.c | 6 tcp->u_error = ppc_regs.gpr[3]; in get_error() 8 tcp->u_rval = ppc_regs.gpr[3]; in get_error()
|
D | get_scno.c | 5 tcp->scno = ppc_regs.gpr[0]; in arch_get_scno()
|
D | set_scno.c | 7 ppc_regs.gpr[0] = scno; in arch_set_scno()
|
D | arch_sigreturn.c | 4 unsigned long addr = ppc_regs.gpr[1]; in arch_sigreturn()
|
/external/google-breakpad/src/processor/ |
D | stackwalker_ppc64.cc | 98 if (!memory_->GetMemoryAtAddress(last_frame->context.gpr[1], in GetCallerFrame() 100 stack_pointer <= last_frame->context.gpr[1]) { in GetCallerFrame() 119 frame->context.gpr[1] = stack_pointer; in GetCallerFrame()
|
D | stackwalker_ppc.cc | 107 if (!memory_->GetMemoryAtAddress(last_frame->context.gpr[1], in GetCallerFrame() 109 stack_pointer <= last_frame->context.gpr[1]) { in GetCallerFrame() 128 frame->context.gpr[1] = stack_pointer; in GetCallerFrame()
|
/external/valgrind/coregrind/m_sigframe/ |
D | sigframe-ppc64-linux.c | 203 # define DO(gpr) frame->uc.uc_mcontext.gp_regs[VKI_PT_R0+gpr] \ in VG_() argument 204 = tst->arch.vex.guest_GPR##gpr in VG_() 323 # define DO(gpr) tst->arch.vex.guest_GPR##gpr \ in VG_() argument 324 = frame->uc.uc_mcontext.gp_regs[VKI_PT_R0+gpr] in VG_()
|
D | sigframe-ppc32-linux.c | 145 # define DO(gpr) mc->mc_gregs[VKI_PT_R0+gpr] = tst->arch.vex.guest_GPR##gpr in stack_mcontext() argument 879 # define DO(gpr) tst->arch.vex.guest_GPR##gpr = mc->mc_gregs[VKI_PT_R0+gpr] in VG_() argument
|
/external/syslinux/com32/lib/syslinux/ |
D | shuffle_rm.c | 83 uint32_t gpr[8]; in syslinux_shuffle_boot_rm() member 147 MOV_TO_R32(p, R_SP, rp->gpr[R_SP]); in syslinux_shuffle_boot_rm() 157 MOV_TO_R32(p, i, rp->gpr[i]); in syslinux_shuffle_boot_rm()
|
/external/v8/src/libsampler/ |
D | sampler.cc | 455 reinterpret_cast<void*>(ucontext->uc_mcontext.regs->gpr[PT_R1]); in FillRegisterState() 457 reinterpret_cast<void*>(ucontext->uc_mcontext.regs->gpr[PT_R31]); in FillRegisterState() 536 state->pc = reinterpret_cast<void*>(mcontext.cpu.gpr[ARM_REG_PC]); in FillRegisterState() 537 state->sp = reinterpret_cast<void*>(mcontext.cpu.gpr[ARM_REG_SP]); in FillRegisterState() 538 state->fp = reinterpret_cast<void*>(mcontext.cpu.gpr[ARM_REG_FP]); in FillRegisterState() 542 state->sp = reinterpret_cast<void*>(mcontext.jmp_context.gpr[1]); in FillRegisterState() 543 state->fp = reinterpret_cast<void*>(mcontext.jmp_context.gpr[31]); in FillRegisterState()
|
/external/valgrind/coregrind/ |
D | vgdb-invoker-ptrace.c | 864 sp = user_mod.regs.gpr[1]; in invoker_invoke_gdbserver() 866 sp = user_mod.regs.gpr[1]; in invoker_invoke_gdbserver() 935 user_mod.regs.gpr[3] = check; in invoker_invoke_gdbserver() 1031 user_mod.regs.gpr[1] = sp - 220; in invoker_invoke_gdbserver() 1032 user_mod.regs.gpr[2] = toc_addr; in invoker_invoke_gdbserver() 1036 user_mod.regs.gpr[3] = check; in invoker_invoke_gdbserver() 1042 user_mod.regs.gpr[1] = sp - 512; in invoker_invoke_gdbserver() 1043 user_mod.regs.gpr[12] = user_mod.regs.nip; in invoker_invoke_gdbserver() 1046 user_mod.regs.gpr[3] = check; in invoker_invoke_gdbserver()
|
/external/llvm/test/CodeGen/MIR/AArch64/ |
D | generic-virtual-registers-error.mir | 19 # CHECK-NEXT: - { id: 0, class: gpr } 21 - { id: 0, class: gpr }
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | eg_asm.c | 76 bc->bytecode[id++] = S_SQ_CF_ALLOC_EXPORT_WORD0_RW_GPR(cf->output.gpr) | in eg_bytecode_cf_build() 107 bc->bytecode[id++] = S_SQ_CF_ALLOC_EXPORT_WORD0_RW_GPR(cf->output.gpr) | in eg_bytecode_cf_build()
|
D | r600_asm.c | 299 if (output->gpr >= bc->ngpr) in r600_bytecode_add_output() 300 bc->ngpr = output->gpr + 1; in r600_bytecode_add_output() 313 if ((output->gpr + output->burst_count) == bc->cf_last->output.gpr && in r600_bytecode_add_output() 318 bc->cf_last->output.gpr = output->gpr; in r600_bytecode_add_output() 323 } else if (output->gpr == (bc->cf_last->output.gpr + bc->cf_last->output.burst_count) && in r600_bytecode_add_output() 897 int gpr[5], chan[5]; in replace_gpr_with_pv_ps() local 907 gpr[i] = prev[i]->dst.sel; in replace_gpr_with_pv_ps() 914 gpr[i] = -1; in replace_gpr_with_pv_ps() 928 if (alu->src[src].sel == gpr[4] && in replace_gpr_with_pv_ps() 938 if (alu->src[src].sel == gpr[j] && in replace_gpr_with_pv_ps() [all …]
|
/external/strace/linux/powerpc64/ |
D | get_scno.c | 5 tcp->scno = ppc_regs.gpr[0]; in arch_get_scno()
|