Home
last modified time | relevance | path

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

/external/valgrind/exp-dhat/
Ddh_main.c802 IRType tyAddr = Ity_INVALID; in addMemEvent() local
811 tyAddr = typeOfIRExpr( sbOut->tyenv, addr ); in addMemEvent()
812 tl_assert(tyAddr == Ity_I32 || tyAddr == Ity_I64); in addMemEvent()
837 IRTemp sp = newIRTemp(sbOut->tyenv, tyAddr); in addMemEvent()
838 addStmtToIRSB( sbOut, assign(sp, IRExpr_Get(goff_sp, tyAddr))); in addMemEvent()
840 IRTemp sp_minus_rz = newIRTemp(sbOut->tyenv, tyAddr); in addMemEvent()
844 tyAddr == Ity_I32 in addMemEvent()
849 IRTemp diff = newIRTemp(sbOut->tyenv, tyAddr); in addMemEvent()
853 tyAddr == Ity_I32 in addMemEvent()
862 tyAddr == Ity_I32 in addMemEvent()
/external/valgrind/VEX/useful/
Dtest_main.c2090 IRType tyAddr = mce->hWordTy; in expr2vbits_LDle_WRK() local
2091 tl_assert( tyAddr == Ity_I32 || tyAddr == Ity_I64 ); in expr2vbits_LDle_WRK()
2092 mkAdd = tyAddr==Ity_I32 ? Iop_Add32 : Iop_Add64; in expr2vbits_LDle_WRK()
2093 eBias = tyAddr==Ity_I32 ? mkU32(bias) : mkU64(bias); in expr2vbits_LDle_WRK()
2094 addrAct = assignNew(mce, tyAddr, binop(mkAdd, addr, eBias) ); in expr2vbits_LDle_WRK()
2251 IRType ty, tyAddr; in do_shadow_STle() local
2259 tyAddr = mce->hWordTy; in do_shadow_STle()
2260 mkAdd = tyAddr==Ity_I32 ? Iop_Add32 : Iop_Add64; in do_shadow_STle()
2261 tl_assert( tyAddr == Ity_I32 || tyAddr == Ity_I64 ); in do_shadow_STle()
2309 eBias0 = tyAddr==Ity_I32 ? mkU32(bias) : mkU64(bias); in do_shadow_STle()
[all …]
/external/valgrind/memcheck/
Dmc_translate.c4705 IRType tyAddr = mce->hWordTy; in expr2vbits_Load_WRK() local
4706 tl_assert( tyAddr == Ity_I32 || tyAddr == Ity_I64 ); in expr2vbits_Load_WRK()
4707 mkAdd = tyAddr==Ity_I32 ? Iop_Add32 : Iop_Add64; in expr2vbits_Load_WRK()
4708 eBias = tyAddr==Ity_I32 ? mkU32(bias) : mkU64(bias); in expr2vbits_Load_WRK()
4709 addrAct = assignNew('V', mce, tyAddr, binop(mkAdd, addr, eBias) ); in expr2vbits_Load_WRK()
5025 IRType ty, tyAddr; in do_shadow_Store() local
5030 tyAddr = mce->hWordTy; in do_shadow_Store()
5031 mkAdd = tyAddr==Ity_I32 ? Iop_Add32 : Iop_Add64; in do_shadow_Store()
5032 tl_assert( tyAddr == Ity_I32 || tyAddr == Ity_I64 ); in do_shadow_Store()
5137 eBiasQ0 = tyAddr==Ity_I32 ? mkU32(bias+offQ0) : mkU64(bias+offQ0); in do_shadow_Store()
[all …]
/external/valgrind/helgrind/
Dhg_main.c4427 IRType tyAddr = Ity_INVALID; in instrument_mem_access() local
4442 tyAddr = typeOfIRExpr( sbOut->tyenv, addr ); in instrument_mem_access()
4443 tl_assert(tyAddr == Ity_I32 || tyAddr == Ity_I64); in instrument_mem_access()
4538 IRTemp sp = newIRTemp(sbOut->tyenv, tyAddr); in instrument_mem_access()
4539 addStmtToIRSB( sbOut, assign(sp, IRExpr_Get(goff_sp, tyAddr))); in instrument_mem_access()
4542 IRTemp addr_minus_sp = newIRTemp(sbOut->tyenv, tyAddr); in instrument_mem_access()
4546 tyAddr == Ity_I32 in instrument_mem_access()
4552 IRTemp diff = newIRTemp(sbOut->tyenv, tyAddr); in instrument_mem_access()
4556 tyAddr == Ity_I32 in instrument_mem_access()
4566 tyAddr == Ity_I32 in instrument_mem_access()
/external/valgrind/exp-sgcheck/
Dsg_main.c2134 IRType tyAddr = Ity_INVALID; in instrument_mem_access() local
2140 tyAddr = typeOfIRExpr( bbOut->tyenv, addr ); in instrument_mem_access()
2141 tl_assert(tyAddr == Ity_I32 || tyAddr == Ity_I64); in instrument_mem_access()
/external/valgrind/VEX/priv/
Dhost_mips_isel.c3904 IRType tyAddr = typeOfIRExpr(env->type_env, stmt->Ist.LLSC.addr); in iselStmt() local
3906 if (!mode64 && (tyAddr != Ity_I32)) in iselStmt()
3913 r_addr = iselWordExpr_AMode(env, stmt->Ist.LLSC.addr, tyAddr); in iselStmt()
3926 r_addr = iselWordExpr_AMode(env, stmt->Ist.LLSC.addr, tyAddr); in iselStmt()
Dhost_ppc_isel.c5746 IRType tyAddr = typeOfIRExpr(env->type_env, stmt->Ist.LLSC.addr); in iselStmt() local
5750 if (!mode64 && (tyAddr != Ity_I32)) in iselStmt()
5752 if (mode64 && (tyAddr != Ity_I64)) in iselStmt()