Home
last modified time | relevance | path

Searched refs:Ico (Results 1 – 25 of 25) sorted by relevance

/external/valgrind/VEX/priv/
Dir_opt.c1098 case Ico_U1: return toBool( c1->Ico.U1 == c2->Ico.U1 ); in sameIRExprs_aux2()
1099 case Ico_U8: return toBool( c1->Ico.U8 == c2->Ico.U8 ); in sameIRExprs_aux2()
1100 case Ico_U16: return toBool( c1->Ico.U16 == c2->Ico.U16 ); in sameIRExprs_aux2()
1101 case Ico_U32: return toBool( c1->Ico.U32 == c2->Ico.U32 ); in sameIRExprs_aux2()
1102 case Ico_U64: return toBool( c1->Ico.U64 == c2->Ico.U64 ); in sameIRExprs_aux2()
1186 && e->Iex.Const.con->Ico.U32 == 0); in isZeroU32()
1196 && e->Iex.Const.con->Ico.U64 == 0);
1205 && e->Iex.Const.con->Ico.V128 == 0x0000); in isZeroV128()
1213 && e->Iex.Const.con->Ico.V256 == 0x00000000); in isZeroV256()
1221 case Ico_U1: return toBool( e->Iex.Const.con->Ico.U1 == 0); in isZeroU()
[all …]
Dir_defs.c76 case Ico_U1: vex_printf( "%d:I1", con->Ico.U1 ? 1 : 0); break; in ppIRConst()
77 case Ico_U8: vex_printf( "0x%x:I8", (UInt)(con->Ico.U8)); break; in ppIRConst()
78 case Ico_U16: vex_printf( "0x%x:I16", (UInt)(con->Ico.U16)); break; in ppIRConst()
79 case Ico_U32: vex_printf( "0x%x:I32", (UInt)(con->Ico.U32)); break; in ppIRConst()
80 case Ico_U64: vex_printf( "0x%llx:I64", (ULong)(con->Ico.U64)); break; in ppIRConst()
81 case Ico_F32: u.f32 = con->Ico.F32; in ppIRConst()
84 case Ico_F32i: vex_printf( "F32i{0x%x}", con->Ico.F32i); break; in ppIRConst()
85 case Ico_F64: u.f64 = con->Ico.F64; in ppIRConst()
88 case Ico_F64i: vex_printf( "F64i{0x%llx}", con->Ico.F64i); break; in ppIRConst()
89 case Ico_V128: vex_printf( "V128{0x%04x}", (UInt)(con->Ico.V128)); break; in ppIRConst()
[all …]
Dhost_s390_isel.c315 ULong value = arg2->Iex.Const.con->Ico.U64; in s390_isel_amode_wrk()
452 case Ico_U1: value = expr->Iex.Const.con->Ico.U1; break; in s390_expr_is_const_zero()
453 case Ico_U8: value = expr->Iex.Const.con->Ico.U8; break; in s390_expr_is_const_zero()
454 case Ico_U16: value = expr->Iex.Const.con->Ico.U16; break; in s390_expr_is_const_zero()
455 case Ico_U32: value = expr->Iex.Const.con->Ico.U32; break; in s390_expr_is_const_zero()
456 case Ico_U64: value = expr->Iex.Const.con->Ico.U64; break; in s390_expr_is_const_zero()
474 case Ico_U1: value = con->Ico.U1; return ((Long)(value << 63) >> 63); in get_const_value_as_ulong()
475 case Ico_U8: value = con->Ico.U8; return ((Long)(value << 56) >> 56); in get_const_value_as_ulong()
476 case Ico_U16: value = con->Ico.U16; return ((Long)(value << 48) >> 48); in get_const_value_as_ulong()
477 case Ico_U32: value = con->Ico.U32; return ((Long)(value << 32) >> 32); in get_const_value_as_ulong()
[all …]
Dhost_amd64_isel.c98 && e->Iex.Const.con->Ico.U8 == 0; in isZeroU8()
298 && e->Iex.Const.con->Ico.U64 == 0ULL; in isZeroU64()
305 && e->Iex.Const.con->Ico.U32 == 0; in isZeroU32()
381 if (fitsIn32Bits(e->Iex.Const.con->Ico.U64)) { in iselIntExpr_single_instruction()
384 AMD64RMI_Imm(toUInt(e->Iex.Const.con->Ico.U64)), in iselIntExpr_single_instruction()
388 return AMD64Instr_Imm64(e->Iex.Const.con->Ico.U64, dst); in iselIntExpr_single_instruction()
542 && guard->Iex.Const.con->Ico.U1 == True) { in doHelperCall()
639 && guard->Iex.Const.con->Ico.U1 == True) { in doHelperCall()
1066 nshift = e->Iex.Binop.arg2->Iex.Const.con->Ico.U8; in iselIntExpr_R_wrk()
1850 addInstr(env, AMD64Instr_Imm64(e->Iex.Const.con->Ico.U64, r)); in iselIntExpr_R_wrk()
[all …]
Dhost_arm64_isel.c342 return con->Ico.U64 == 0; in isZeroU64()
606 && guard->Iex.Const.con->Ico.U1 == True) { in doHelperCall()
712 && guard->Iex.Const.con->Ico.U1 == True) { in doHelperCall()
871 Long simm = (Long)e->Iex.Binop.arg2->Iex.Const.con->Ico.U64; in iselIntExpr_AMode_wrk()
889 ULong uimm = e->Iex.Binop.arg2->Iex.Const.con->Ico.U64; in iselIntExpr_AMode_wrk()
945 case Ico_U64: u = e->Iex.Const.con->Ico.U64; break; in iselIntExpr_RIA_wrk()
946 case Ico_U32: u = e->Iex.Const.con->Ico.U32; break; in iselIntExpr_RIA_wrk()
1210 maybe = mb_mkARM64RIL_I(e->Iex.Const.con->Ico.U64); in iselIntExpr_RIL_wrk()
1214 UInt u32 = e->Iex.Const.con->Ico.U32; in iselIntExpr_RIL_wrk()
1268 UInt u = e->Iex.Const.con->Ico.U8; in iselIntExpr_RI6_wrk()
[all …]
Dhost_arm_isel.c457 && guard->Iex.Const.con->Ico.U1 == True) { in doHelperCallWithArgsOnStack()
633 && guard->Iex.Const.con->Ico.U1 == True) { in doHelperCall()
769 && guard->Iex.Const.con->Ico.U1 == True) { in doHelperCall()
920 Int simm = (Int)e->Iex.Binop.arg2->Iex.Const.con->Ico.U32; in iselIntExpr_AMode1_wrk()
986 Int simm = (Int)e->Iex.Binop.arg2->Iex.Const.con->Ico.U32; in iselIntExpr_AMode2_wrk()
1038 Int simm = (Int)e->Iex.Binop.arg2->Iex.Const.con->Ico.U32; in iselIntExpr_AModeV_wrk()
1113 case Ico_U32: u = e->Iex.Const.con->Ico.U32; break; in iselIntExpr_RI84_wrk()
1114 case Ico_U16: u = 0xFFFF & (e->Iex.Const.con->Ico.U16); break; in iselIntExpr_RI84_wrk()
1115 case Ico_U8: u = 0xFF & (e->Iex.Const.con->Ico.U8); break; in iselIntExpr_RI84_wrk()
1167 case Ico_U32: u = e->Iex.Const.con->Ico.U32; break; in iselIntExpr_RI5_wrk()
[all …]
Dhost_mips_isel.c484 && guard->Iex.Const.con->Ico.U1 == True) { in doHelperCall()
587 && guard->Iex.Const.con->Ico.U1 == True) { in doHelperCall()
720 uLong_is_4_aligned(e->Iex.Binop.arg2->Iex.Const.con->Ico.U64) : True) in iselWordExpr_AMode_wrk()
721 && uLong_fits_in_16_bits(e->Iex.Binop.arg2->Iex.Const.con->Ico.U64)) { in iselWordExpr_AMode_wrk()
722 return MIPSAMode_IR((Int) e->Iex.Binop.arg2->Iex.Const.con->Ico.U64, in iselWordExpr_AMode_wrk()
740 && uInt_fits_in_16_bits(e->Iex.Binop.arg2->Iex.Const.con-> Ico.U32)) { in iselWordExpr_AMode_wrk()
741 return MIPSAMode_IR((Int) e->Iex.Binop.arg2->Iex.Const.con->Ico.U32, in iselWordExpr_AMode_wrk()
1813 l = (Long) con->Ico.U64; in iselWordExpr_R_wrk()
1816 l = (Long) (Int) con->Ico.U32; in iselWordExpr_R_wrk()
1819 l = (Long) (Int) (Short) con->Ico.U16; in iselWordExpr_R_wrk()
[all …]
Dhost_x86_isel.c110 && e->Iex.Const.con->Ico.U8 == 0; in isZeroU8()
117 && e->Iex.Const.con->Ico.U32 == 0; in isZeroU32()
647 && guard->Iex.Const.con->Ico.U1 == True) { in doHelperCall()
1023 nshift = e->Iex.Binop.arg2->Iex.Const.con->Ico.U8; in iselIntExpr_R_wrk()
1576 ->Iex.Binop.arg2->Iex.Binop.arg2->Iex.Const.con->Ico.U8; in iselIntExpr_AMode_wrk()
1577 UInt imm32 = e->Iex.Binop.arg2->Iex.Const.con->Ico.U32; in iselIntExpr_AMode_wrk()
1593 UInt shift = e->Iex.Binop.arg2->Iex.Binop.arg2->Iex.Const.con->Ico.U8; in iselIntExpr_AMode_wrk()
1607 return X86AMode_IR(e->Iex.Binop.arg2->Iex.Const.con->Ico.U32, r1); in iselIntExpr_AMode_wrk()
1653 case Ico_U32: u = e->Iex.Const.con->Ico.U32; break; in iselIntExpr_RMI_wrk()
1654 case Ico_U16: u = 0xFFFF & (e->Iex.Const.con->Ico.U16); break; in iselIntExpr_RMI_wrk()
[all …]
Dhost_ppc_isel.c213 && e->Iex.Const.con->Ico.U8 == 0; in isZeroU8()
846 && guard->Iex.Const.con->Ico.U1 == True) { in doHelperCall()
1003 && guard->Iex.Const.con->Ico.U1 == True) { in doHelperCall()
1243 vassert(mode->Iex.Const.con->Ico.U32 == 0x8); in FPU_rounding_mode_isOdd()
2515 l = (Long) con->Ico.U64; break; in iselWordExpr_R_wrk()
2516 case Ico_U32: l = (Long)(Int) con->Ico.U32; break; in iselWordExpr_R_wrk()
2517 case Ico_U16: l = (Long)(Int)(Short)con->Ico.U16; break; in iselWordExpr_R_wrk()
2518 case Ico_U8: l = (Long)(Int)(Char )con->Ico.U8; break; in iselWordExpr_R_wrk()
2643 ->Iex.Const.con->Ico.U64) in iselWordExpr_AMode_wrk()
2646 ->Iex.Const.con->Ico.U64)) { in iselWordExpr_AMode_wrk()
[all …]
Dguest_s390_helpers.c1860 cond = cond_expr->Iex.Const.con->Ico.U64; in guest_s390x_spechelper()
1861 cc_op = cc_op_expr->Iex.Const.con->Ico.U64; in guest_s390x_spechelper()
2029 mask = cc_dep2->Iex.Const.con->Ico.U64; in guest_s390x_spechelper()
2103 mask16 = cc_dep2->Iex.Const.con->Ico.U64; in guest_s390x_spechelper()
2145 mask16 = cc_dep2->Iex.Const.con->Ico.U64; in guest_s390x_spechelper()
2395 cc_op = cc_op_expr->Iex.Const.con->Ico.U64; in guest_s390x_spechelper()
Dguest_arm_helpers.c810 && e->Iex.Const.con->Ico.U32 == n ); in isU32()
Dguest_arm64_helpers.c1309 && e->Iex.Const.con->Ico.U64 == n ); in isU64()
Dguest_x86_helpers.c810 && e->Iex.Const.con->Ico.U32 == n ); in isU32()
Dguest_amd64_helpers.c1013 && e->Iex.Const.con->Ico.U64 == n ); in isU64()
/external/valgrind/coregrind/m_gdbserver/
Dm_gdbserver.c1268 sb_in->next->Iex.Const.con->Ico.U64 in VG_()
1269 : sb_in->next->Iex.Const.con->Ico.U32); in VG_()
1303 st->Ist.Exit.dst->Ico.U64 : in VG_()
1304 st->Ist.Exit.dst->Ico.U32); in VG_()
/external/valgrind/lackey/
Dlk_main.c936 dst = (sizeof(Addr) == 4) ? st->Ist.Exit.dst->Ico.U32 : in lk_instrument()
937 st->Ist.Exit.dst->Ico.U64; in lk_instrument()
/external/skia/
Dpublic.bzl274 """Sources for the codecs. Excludes Ico, Webp, Png, and Raw if limited."""
278 "src/codec/*Ico*.cpp",
/external/skqp/
Dpublic.bzl267 """Sources for the codecs. Excludes Ico, Webp, Png, and Raw if limited."""
271 "src/codec/*Ico*.cpp",
/external/valgrind/coregrind/
Dm_translate.c314 (sizeof_SP==4 ? (Long)(Int)(con->Ico.U32) \ in vg_SP_update_pass()
315 : (Long)(con->Ico.U64)) in vg_SP_update_pass()
/external/valgrind/cachegrind/
Dcg_main.c1267 sea = dst->Ico.U32; in cg_instrument()
1271 sea = dst->Ico.U64; in cg_instrument()
/external/valgrind/callgrind/
Dmain.c844 addr = con->Ico.U32; in IRConst2Addr()
848 addr = con->Ico.U64; in IRConst2Addr()
/external/valgrind/memcheck/
Dmc_translate.c1093 && e->Iex.Const.con->Ico.U32 == 0 ); in isZeroU32()
1101 && e->Iex.Const.con->Ico.U64 == 0 ); in isZeroU64()
6213 case Ico_U8: n = (ULong)con->Ico.U8; break; in isBogusAtom()
6214 case Ico_U16: n = (ULong)con->Ico.U16; break; in isBogusAtom()
6215 case Ico_U32: n = (ULong)con->Ico.U32; break; in isBogusAtom()
6216 case Ico_U64: n = (ULong)con->Ico.U64; break; in isBogusAtom()
/external/valgrind/VEX/pub/
Dlibvex_ir.h306 } Ico; member
/external/honggfuzz/examples/apache-httpd/corpus_http2/
D49f1f9a887ae1e117bb7391f30e5e3c4.0000bb58.honggfuzz.cov255 d�|m�7� �c��<����AOе�P�9���+i ��R��jz�X-�>�h�\�k̾�8�`�t故�*�ꟿ�.;\��[�����d1 js��Q�PIco�…
/external/honggfuzz/examples/apache-httpd/corpus_http1/
D49f1f9a887ae1e117bb7391f30e5e3c4.0000bb58.honggfuzz.cov255 d�|m�7� �c��<����AOе�P�9���+i ��R��jz�X-�>�h�\�k̾�8�`�t故�*�ꟿ�.;\��[�����d1 js��Q�PIco�…