/external/valgrind/main/VEX/priv/ |
H A D | host_x86_isel.c | 2118 HReg sHi, sLo; local 2123 iselInt64Expr(&sHi,&sLo, env, e->Iex.Binop.arg1); 2124 addInstr(env, mk_iMOVsd_RR(sHi, hregX86_EDX())); 2223 HReg rAmt, sHi, sLo, tHi, tLo, tTemp; local 2228 iselInt64Expr(&sHi,&sLo, env, e->Iex.Binop.arg1); 2230 addInstr(env, mk_iMOVsd_RR(sHi, tHi)); 2265 HReg rAmt, sHi, sLo, tHi, tLo, tTemp; local 2270 iselInt64Expr(&sHi,&sLo, env, e->Iex.Binop.arg1); 2272 addInstr(env, mk_iMOVsd_RR(sHi, tHi)); 2587 HReg sHi, sL local [all...] |
H A D | guest_amd64_helpers.c | 3039 ULong amd64g_calculate_sse_phminposuw ( ULong sLo, ULong sHi ) 3047 t = sel16x4_0(sHi); if (t < min) { min = t; idx = 4; } 3048 t = sel16x4_1(sHi); if (t < min) { min = t; idx = 5; } 3049 t = sel16x4_2(sHi); if (t < min) { min = t; idx = 6; } 3050 t = sel16x4_3(sHi); if (t < min) { min = t; idx = 7; } 3104 ULong amd64g_calc_mpsadbw ( ULong sHi, ULong sLo, argument 3114 ULong src = ((srcOffsL & 2) ? sHi : sLo) >> (32 * (srcOffsL & 1));
|
H A D | host_amd64_isel.c | 2334 HReg sHi, sLo; local 2339 iselInt128Expr(&sHi,&sLo, env, e->Iex.Binop.arg1); 2340 addInstr(env, mk_iMOVsd_RR(sHi, hregAMD64_RDX()));
|
H A D | guest_x86_toIR.c | 12050 IRTemp sHi = newTemp(Ity_I64); local 12089 assign( sHi, unop(Iop_V128HIto64, mkexpr(sV)) ); 12099 binop(opCatE,mkexpr(sHi),mkexpr(sLo)), 12100 binop(opCatO,mkexpr(sHi),mkexpr(sLo)) 12148 IRTemp sHi = newTemp(Ity_I64); local 12172 assign( sHi, unop(Iop_V128HIto64, mkexpr(sV)) ); 12178 dis_PMULHRSW_helper( mkexpr(sHi), mkexpr(dHi) ), 12235 IRTemp sHi = newTemp(Ity_I64); local 12268 assign( sHi, unop(Iop_V128HIto64, mkexpr(sV)) ); 12274 dis_PSIGN_helper( mkexpr(sHi), mkexp 12328 IRTemp sHi = newTemp(Ity_I64); local 12428 IRTemp sHi = newTemp(Ity_I64); local 12552 IRTemp sHi = newTemp(Ity_I64); local [all...] |
H A D | guest_amd64_toIR.c | 9289 IRTemp sHi = newTemp(Ity_I64); local 9298 assign( sHi, unop(Iop_V128HIto64, mkexpr(sV)) ); 9302 assign( rHi, mkexpr(sHi) ); 9306 assign( rHi, dis_PALIGNR_XMM_helper(dLo, sHi, imm8) ); 9307 assign( rLo, dis_PALIGNR_XMM_helper(sHi, sLo, imm8) ); 9311 assign( rLo, mkexpr(sHi) ); 9315 assign( rLo, dis_PALIGNR_XMM_helper(dLo, sHi, imm8-8) ); 14382 IRTemp sHi = newTemp(Ity_I64); local 14401 assign( sHi, unop(Iop_V128HIto64, mkexpr(sV)) ); 14406 /* mask0x80hi = Not(SarN8x8(sHi, 14482 IRTemp sHi = newTemp(Ity_I64); local 14831 IRTemp sHi = newTemp(Ity_I64); local 14924 IRTemp sHi = newTemp(Ity_I64); local 16020 IRTemp sHi = newTemp(Ity_I64); local 17250 IRTemp sHi = newTemp(Ity_I64); local 24598 IRTemp sHi, sLo, dHi, dLo; local 24649 IRTemp sHi, sLo, dHi, dLo; local [all...] |
/external/valgrind/main/coregrind/m_aspacemgr/ |
H A D | aspacemgr-linux.c | 1430 sLo is the first address denoted by some segment and sHi is the 1435 void split_nsegments_lo_and_hi ( Addr sLo, Addr sHi, argument 1439 aspacem_assert(sLo < sHi); 1441 aspacem_assert(VG_IS_PAGE_ALIGNED(sHi+1)); 1445 if (sHi < sHi+1) 1446 split_nsegment_at(sHi+1); 1449 *iHi = find_nsegment_idx(sHi); 1454 aspacem_assert(nsegments[*iHi].end == sHi);
|