Home | History | Annotate | Download | only in priv

Lines Matching refs:tR

23268 static IRTemp math_VPUNPCK_YMM ( IRTemp tL, IRType tR, IROp op )
23274 breakupV256toV128s( tR, &tRhi, &tRlo );
23282 static IRTemp math_VPUNPCKLBW_YMM ( IRTemp tL, IRTemp tR )
23284 return math_VPUNPCK_YMM( tL, tR, Iop_InterleaveLO8x16 );
23288 static IRTemp math_VPUNPCKLWD_YMM ( IRTemp tL, IRTemp tR )
23290 return math_VPUNPCK_YMM( tL, tR, Iop_InterleaveLO16x8 );
23294 static IRTemp math_VPUNPCKLDQ_YMM ( IRTemp tL, IRTemp tR )
23296 return math_VPUNPCK_YMM( tL, tR, Iop_InterleaveLO32x4 );
23300 static IRTemp math_VPUNPCKLQDQ_YMM ( IRTemp tL, IRTemp tR )
23302 return math_VPUNPCK_YMM( tL, tR, Iop_InterleaveLO64x2 );
23306 static IRTemp math_VPUNPCKHBW_YMM ( IRTemp tL, IRTemp tR )
23308 return math_VPUNPCK_YMM( tL, tR, Iop_InterleaveHI8x16 );
23312 static IRTemp math_VPUNPCKHWD_YMM ( IRTemp tL, IRTemp tR )
23314 return math_VPUNPCK_YMM( tL, tR, Iop_InterleaveHI16x8 );
23318 static IRTemp math_VPUNPCKHDQ_YMM ( IRTemp tL, IRTemp tR )
23320 return math_VPUNPCK_YMM( tL, tR, Iop_InterleaveHI32x4 );
23324 static IRTemp math_VPUNPCKHQDQ_YMM ( IRTemp tL, IRTemp tR )
23326 return math_VPUNPCK_YMM( tL, tR, Iop_InterleaveHI64x2 );
23330 static IRTemp math_VPACKSSWB_YMM ( IRTemp tL, IRTemp tR )
23332 return math_VPUNPCK_YMM( tL, tR, Iop_QNarrowBin16Sto8Sx16 );
23336 static IRTemp math_VPACKUSWB_YMM ( IRTemp tL, IRTemp tR )
23338 return math_VPUNPCK_YMM( tL, tR, Iop_QNarrowBin16Sto8Ux16 );
23342 static IRTemp math_VPACKSSDW_YMM ( IRTemp tL, IRTemp tR )
23344 return math_VPUNPCK_YMM( tL, tR, Iop_QNarrowBin32Sto16Sx8 );
23348 static IRTemp math_VPACKUSDW_YMM ( IRTemp tL, IRTemp tR )
23350 return math_VPUNPCK_YMM( tL, tR, Iop_QNarrowBin32Sto16Ux8 );