Home | History | Annotate | Download | only in priv

Lines Matching defs:new64

8049 /* Let |new64| be a V128 in which only the lower 64 bits are interesting,
8051 generate IR to put |new64| in the lower half of vector reg |dd| and zero
8052 the upper half. If |is2| is True, generate IR to put |new64| in the upper
8058 void putLO64andZUorPutHI64 ( Bool is2, UInt dd, IRTemp new64 )
8066 assign(t_newHI_zero, binop(Iop_InterleaveLO64x2, mkexpr(new64),
8074 putQReg128(dd, unop(Iop_ZeroHI64ofV128, mkexpr(new64)));
11266 IRTemp new64 = newTempV128();
11267 assign(new64, binop(mkVecCATEVENLANES(size), mkexpr(shrd), mkexpr(shrd)));
11268 putLO64andZUorPutHI64(is2, dd, new64);