Home
last modified time | relevance | path

Searched refs:PutI (Results 1 – 9 of 9) sorted by relevance

/external/valgrind/main/VEX/priv/
Dir_opt.c396 e1 = flatten_Expr(bb, st->Ist.PutI.ix); in flatten_Stmt()
397 e2 = flatten_Expr(bb, st->Ist.PutI.data); in flatten_Stmt()
398 addStmtToIRSB(bb, IRStmt_PutI(st->Ist.PutI.descr, in flatten_Stmt()
400 st->Ist.PutI.bias, in flatten_Stmt()
625 key = mk_key_GetIPutI( st->Ist.PutI.descr ); in redundant_get_removal_BB()
747 vassert(isIRAtom(st->Ist.PutI.ix)); in handle_gets_Stmt()
748 vassert(isIRAtom(st->Ist.PutI.data)); in handle_gets_Stmt()
842 key = mk_key_GetIPutI( st->Ist.PutI.descr ); in redundant_put_removal_BB()
843 vassert(isIRAtom(st->Ist.PutI.ix)); in redundant_put_removal_BB()
844 vassert(isIRAtom(st->Ist.PutI.data)); in redundant_put_removal_BB()
[all …]
Dir_defs.c1183 ppIRRegArray(s->Ist.PutI.descr); in ppIRStmt()
1185 ppIRExpr(s->Ist.PutI.ix); in ppIRStmt()
1186 vex_printf(",%d] = ", s->Ist.PutI.bias); in ppIRStmt()
1187 ppIRExpr(s->Ist.PutI.data); in ppIRStmt()
1650 s->Ist.PutI.descr = descr; in IRStmt_PutI()
1651 s->Ist.PutI.ix = ix; in IRStmt_PutI()
1652 s->Ist.PutI.bias = bias; in IRStmt_PutI()
1653 s->Ist.PutI.data = data; in IRStmt_PutI()
1898 return IRStmt_PutI(deepCopyIRRegArray(s->Ist.PutI.descr), in deepCopyIRStmt()
1899 deepCopyIRExpr(s->Ist.PutI.ix), in deepCopyIRStmt()
[all …]
Dhost_x86_isel.c3818 env, stmt->Ist.PutI.descr, in iselStmt()
3819 stmt->Ist.PutI.ix, stmt->Ist.PutI.bias ); in iselStmt()
3821 IRType ty = typeOfIRExpr(env->type_env, stmt->Ist.PutI.data); in iselStmt()
3823 HReg val = iselDblExpr(env, stmt->Ist.PutI.data); in iselStmt()
3828 HReg r = iselIntExpr_R(env, stmt->Ist.PutI.data); in iselStmt()
3833 HReg r = iselIntExpr_R(env, stmt->Ist.PutI.data); in iselStmt()
3840 iselInt64Expr(&rHi, &rLo, env, stmt->Ist.PutI.data); in iselStmt()
Dhost_amd64_isel.c3908 env, stmt->Ist.PutI.descr, in iselStmt()
3909 stmt->Ist.PutI.ix, stmt->Ist.PutI.bias ); in iselStmt()
3911 IRType ty = typeOfIRExpr(env->type_env, stmt->Ist.PutI.data); in iselStmt()
3913 HReg val = iselDblExpr(env, stmt->Ist.PutI.data); in iselStmt()
3918 HReg r = iselIntExpr_R(env, stmt->Ist.PutI.data); in iselStmt()
3923 AMD64RI* ri = iselIntExpr_RI(env, stmt->Ist.PutI.data); in iselStmt()
Dhost_ppc_isel.c3992 env, stmt->Ist.PutI.descr, in iselStmt()
3993 stmt->Ist.PutI.ix, stmt->Ist.PutI.bias ); in iselStmt()
3994 IRType ty = typeOfIRExpr(env->type_env, stmt->Ist.PutI.data); in iselStmt()
3996 HReg r_src = iselWordExpr_R(env, stmt->Ist.PutI.data); in iselStmt()
4002 HReg r_src = iselWordExpr_R(env, stmt->Ist.PutI.data); in iselStmt()
/external/valgrind/main/VEX/
Dtest_main.c383 assert(isIRAtom(st->Ist.PutI.ix));
384 assert(isIRAtom(st->Ist.PutI.data));
2640 st->Ist.PutI.descr, in mc_instrument()
2641 st->Ist.PutI.ix, in mc_instrument()
2642 st->Ist.PutI.bias, in mc_instrument()
2643 st->Ist.PutI.data ); in mc_instrument()
/external/valgrind/main/memcheck/
Dmc_translate.c4832 return isBogusAtom(st->Ist.PutI.ix) in checkForBogusLiterals()
4833 || isBogusAtom(st->Ist.PutI.data); in checkForBogusLiterals()
5049 st->Ist.PutI.descr, in MC_()
5050 st->Ist.PutI.ix, in MC_()
5051 st->Ist.PutI.bias, in MC_()
5052 st->Ist.PutI.data ); in MC_()
5788 IRRegArray* descr = st->Ist.PutI.descr; in schemeS()
5803 t1 = schemeE( mce, st->Ist.PutI.data ); in schemeS()
5804 t2 = schemeE( mce, st->Ist.PutI.ix ); in schemeS()
5807 stmt( 'B', mce, IRStmt_PutI( descr_b, st->Ist.PutI.ix, in schemeS()
[all …]
/external/valgrind/main/VEX/pub/
Dlibvex_ir.h1994 } PutI; member
/external/valgrind/main/coregrind/
Dm_translate.c588 descr = st->Ist.PutI.descr; in vg_SP_update_pass()