Searched refs:argreg (Results 1 – 6 of 6) sorted by relevance
/external/strace/linux/bfin/ |
D | get_syscall_args.c | 5 static const int argreg[MAX_ARGS] = in get_syscall_args() local 10 if (upeek(tcp->pid, argreg[i], &tcp->u_arg[i]) < 0) in get_syscall_args()
|
/external/valgrind/VEX/priv/ |
D | host_ppc_isel.c | 728 Int n_args, i, argreg; in doHelperCall() local 875 argreg = 0; in doHelperCall() 879 vassert(argreg < PPC_N_REGPARMS); in doHelperCall() 882 argiregs |= (1 << (argreg+3)); in doHelperCall() 883 addInstr(env, mk_iMOVds_RR( argregs[argreg], in doHelperCall() 885 argreg++; in doHelperCall() 892 argiregs |= (1 << (argreg+3)); in doHelperCall() 894 mk_iMOVds_RR( argregs[argreg], in doHelperCall() 899 if ((argreg%2) == 1) in doHelperCall() 901 argreg++; // XXX: odd argreg => even rN in doHelperCall() [all …]
|
D | host_mips_isel.c | 404 Int n_args, i, argreg; in doHelperCall() local 511 argreg = 0; in doHelperCall() 515 vassert(argreg < MIPS_N_REGPARMS); in doHelperCall() 522 argiregs |= (1 << (argreg + 4)); in doHelperCall() 523 addInstr(env, mk_iMOVds_RR(argregs[argreg], in doHelperCall() 525 argreg++; in doHelperCall() 527 if (argreg & 1) { in doHelperCall() 528 argreg++; in doHelperCall() 529 argiregs |= (1 << (argreg + 4)); in doHelperCall() 533 argiregs |= (1 << (argreg + 4)); in doHelperCall() [all …]
|
D | host_tilegx_isel.c | 221 Long n_args, i, argreg; in doHelperCall() local 300 argreg = 0; in doHelperCall() 303 vassert(argreg < TILEGX_N_REGPARMS); in doHelperCall() 307 argiregs |= (1 << (argreg)); in doHelperCall() 308 addInstr(env, mk_iMOVds_RR(argregs[argreg], in doHelperCall() 311 argreg++; in doHelperCall() 317 argreg = 0; in doHelperCall() 320 vassert(argreg < TILEGX_N_REGPARMS); in doHelperCall() 323 tmpregs[argreg] = iselWordExpr_R(env, args[i]); in doHelperCall() 324 argreg++; in doHelperCall() [all …]
|
D | host_x86_isel.c | 439 i, argreg, argregX; in doHelperCall() local 561 argreg = cee->regparms; in doHelperCall() 576 argregX = argreg; in doHelperCall() 586 argreg--; in doHelperCall() 587 vassert(argreg >= 0); in doHelperCall() 595 tmpregs[argreg] = iselIntExpr_R(env, arg); in doHelperCall() 610 argreg--; in doHelperCall() 611 vassert(argreg >= 0); in doHelperCall() 616 argregs[argreg])); in doHelperCall() 624 argregs[argreg])); in doHelperCall()
|
D | host_s390_isel.c | 516 UInt n_args, i, argreg, size; in doHelperCall() local 576 argreg = 0; in doHelperCall() 583 tmpregs[argreg] = newVRegI(env); in doHelperCall() 584 addInstr(env, s390_insn_move(sizeof(ULong), tmpregs[argreg], in doHelperCall() 587 tmpregs[argreg] = s390_isel_int_expr(env, args[i]); in doHelperCall() 589 argreg++; in doHelperCall() 606 for (i = 0; i < argreg; i++) { in doHelperCall()
|