Home | History | Annotate | Download | only in VEX

Lines Matching refs:Unop

716 #define unop(_op, _arg)          IRExpr_Unop((_op),(_arg))
823 /* unop(Iop_Neg8, a1)))); */
833 /* unop(Iop_Neg16, a1)))); */
843 /* unop(Iop_Neg32, a1)))); */
903 assignNew(mce, Ity_I8, unop(Iop_Not8, data)),
915 assignNew(mce, Ity_I16, unop(Iop_Not16, data)),
927 assignNew(mce, Ity_I32, unop(Iop_Not32, data)),
939 assignNew(mce, Ity_I64, unop(Iop_Not64, data)),
951 assignNew(mce, Ity_V128, unop(Iop_NotV128, data)),
991 return assignNew(mce, Ity_I8, unop(Iop_1Sto8, tmp1));
993 return assignNew(mce, Ity_I16, unop(Iop_1Sto16, tmp1));
995 return assignNew(mce, Ity_I32, unop(Iop_1Sto32, tmp1));
997 return assignNew(mce, Ity_I64, unop(Iop_1Sto64, tmp1));
999 tmp1 = assignNew(mce, Ity_I64, unop(Iop_1Sto64, tmp1));
1344 assignNew(mce,ty, unop(opNOT, qaa))));
1349 assignNew(mce,ty, unop(opNOT, qbb))));
1380 return assignNew(mce, Ity_V128, unop(Iop_CmpNEZ8x16, at));
1385 return assignNew(mce, Ity_V128, unop(Iop_CmpNEZ16x8, at));
1390 return assignNew(mce, Ity_V128, unop(Iop_CmpNEZ32x4, at));
1395 return assignNew(mce, Ity_V128, unop(Iop_CmpNEZ64x2, at));
1462 at = assignNew(mce, Ity_I32, unop(Iop_V128to32, at));
1473 at = assignNew(mce, Ity_I32, unop(Iop_V128to32, vatomX));
1508 at = assignNew(mce, Ity_I64, unop(Iop_V128to64, at));
1519 at = assignNew(mce, Ity_I64, unop(Iop_V128to64, vatomX));
1964 return assignNew(mce, Ity_V128, unop(op, vatom));
1985 return assignNew(mce, Ity_I64, unop(op, vatom));
1994 return assignNew(mce, Ity_I32, unop(op, vatom));
2000 unop(op, vatom));
2005 return assignNew(mce, Ity_I8, unop(op, vatom));
2008 return assignNew(mce, Ity_I1, unop(Iop_32to1, vatom));
2165 return expr2vbits_Unop( mce, e->Iex.Unop.op, e->Iex.Unop.arg );
2208 case Ity_I16: return assignNew(mce, tyH, unop(Iop_16Uto32, vatom));
2209 case Ity_I8: return assignNew(mce, tyH, unop(Iop_8Uto32, vatom));
2291 vdataLo64 = assignNew(mce, Ity_I64, unop(Iop_V128to64, vdata));
2298 vdataHi64 = assignNew(mce, Ity_I64, unop(Iop_V128HIto64, vdata));
2561 return isBogusAtom(e->Iex.Unop.arg);