Home
last modified time | relevance | path

Searched refs:tyAddr (Results 1 – 7 of 7) sorted by relevance

/external/valgrind/main/exp-dhat/
Ddh_main.c803 IRType tyAddr = Ity_INVALID; in addMemEvent() local
812 tyAddr = typeOfIRExpr( sbOut->tyenv, addr ); in addMemEvent()
813 tl_assert(tyAddr == Ity_I32 || tyAddr == Ity_I64); in addMemEvent()
838 IRTemp sp = newIRTemp(sbOut->tyenv, tyAddr); in addMemEvent()
839 addStmtToIRSB( sbOut, assign(sp, IRExpr_Get(goff_sp, tyAddr))); in addMemEvent()
841 IRTemp sp_minus_rz = newIRTemp(sbOut->tyenv, tyAddr); in addMemEvent()
845 tyAddr == Ity_I32 in addMemEvent()
850 IRTemp diff = newIRTemp(sbOut->tyenv, tyAddr); in addMemEvent()
854 tyAddr == Ity_I32 in addMemEvent()
863 tyAddr == Ity_I32 in addMemEvent()
/external/valgrind/main/VEX/
Dtest_main.c2070 IRType tyAddr = mce->hWordTy; in expr2vbits_LDle_WRK() local
2071 tl_assert( tyAddr == Ity_I32 || tyAddr == Ity_I64 ); in expr2vbits_LDle_WRK()
2072 mkAdd = tyAddr==Ity_I32 ? Iop_Add32 : Iop_Add64; in expr2vbits_LDle_WRK()
2073 eBias = tyAddr==Ity_I32 ? mkU32(bias) : mkU64(bias); in expr2vbits_LDle_WRK()
2074 addrAct = assignNew(mce, tyAddr, binop(mkAdd, addr, eBias) ); in expr2vbits_LDle_WRK()
2231 IRType ty, tyAddr; in do_shadow_STle() local
2239 tyAddr = mce->hWordTy; in do_shadow_STle()
2240 mkAdd = tyAddr==Ity_I32 ? Iop_Add32 : Iop_Add64; in do_shadow_STle()
2241 tl_assert( tyAddr == Ity_I32 || tyAddr == Ity_I64 ); in do_shadow_STle()
2289 eBias0 = tyAddr==Ity_I32 ? mkU32(bias) : mkU64(bias); in do_shadow_STle()
[all …]
/external/valgrind/main/memcheck/
Dmc_translate.c4421 IRType tyAddr = mce->hWordTy; in expr2vbits_Load_WRK() local
4422 tl_assert( tyAddr == Ity_I32 || tyAddr == Ity_I64 ); in expr2vbits_Load_WRK()
4423 mkAdd = tyAddr==Ity_I32 ? Iop_Add32 : Iop_Add64; in expr2vbits_Load_WRK()
4424 eBias = tyAddr==Ity_I32 ? mkU32(bias) : mkU64(bias); in expr2vbits_Load_WRK()
4425 addrAct = assignNew('V', mce, tyAddr, binop(mkAdd, addr, eBias) ); in expr2vbits_Load_WRK()
4741 IRType ty, tyAddr; in do_shadow_Store() local
4746 tyAddr = mce->hWordTy; in do_shadow_Store()
4747 mkAdd = tyAddr==Ity_I32 ? Iop_Add32 : Iop_Add64; in do_shadow_Store()
4748 tl_assert( tyAddr == Ity_I32 || tyAddr == Ity_I64 ); in do_shadow_Store()
4853 eBiasQ0 = tyAddr==Ity_I32 ? mkU32(bias+offQ0) : mkU64(bias+offQ0); in do_shadow_Store()
[all …]
/external/valgrind/main/helgrind/
Dhg_main.c4290 IRType tyAddr = Ity_INVALID; in instrument_mem_access() local
4305 tyAddr = typeOfIRExpr( sbOut->tyenv, addr ); in instrument_mem_access()
4306 tl_assert(tyAddr == Ity_I32 || tyAddr == Ity_I64); in instrument_mem_access()
4401 IRTemp sp = newIRTemp(sbOut->tyenv, tyAddr); in instrument_mem_access()
4402 addStmtToIRSB( sbOut, assign(sp, IRExpr_Get(goff_sp, tyAddr))); in instrument_mem_access()
4405 IRTemp addr_minus_sp = newIRTemp(sbOut->tyenv, tyAddr); in instrument_mem_access()
4409 tyAddr == Ity_I32 in instrument_mem_access()
4415 IRTemp diff = newIRTemp(sbOut->tyenv, tyAddr); in instrument_mem_access()
4419 tyAddr == Ity_I32 in instrument_mem_access()
4429 tyAddr == Ity_I32 in instrument_mem_access()
/external/valgrind/main/exp-sgcheck/
Dsg_main.c2126 IRType tyAddr = Ity_INVALID; in instrument_mem_access() local
2132 tyAddr = typeOfIRExpr( bbOut->tyenv, addr ); in instrument_mem_access()
2133 tl_assert(tyAddr == Ity_I32 || tyAddr == Ity_I64); in instrument_mem_access()
/external/valgrind/main/VEX/priv/
Dhost_mips_isel.c3895 IRType tyAddr = typeOfIRExpr(env->type_env, stmt->Ist.LLSC.addr); in iselStmt() local
3897 if (!mode64 && (tyAddr != Ity_I32)) in iselStmt()
3904 r_addr = iselWordExpr_AMode(env, stmt->Ist.LLSC.addr, tyAddr); in iselStmt()
3917 r_addr = iselWordExpr_AMode(env, stmt->Ist.LLSC.addr, tyAddr); in iselStmt()
Dhost_ppc_isel.c5533 IRType tyAddr = typeOfIRExpr(env->type_env, stmt->Ist.LLSC.addr); in iselStmt() local
5537 if (!mode64 && (tyAddr != Ity_I32)) in iselStmt()
5539 if (mode64 && (tyAddr != Ity_I64)) in iselStmt()