Lines Matching full:indx
741 Value *Indx = Builder.getInt32(i);
742 Indx = Builder.CreateExtractElement(Mask, Indx, "shuf_idx");
743 Indx = Builder.CreateZExt(Indx, CGF.Int32Ty, "idx_zext");
748 cmpIndx = Builder.CreateICmpUGT(Indx, Builder.getInt32(3),
750 newIndx = Builder.CreateSub(Indx, Builder.getInt32(1), "shuf_idx_adj");
751 Indx = Builder.CreateSelect(cmpIndx, newIndx, Indx, "sel_shuf_idx");
753 Value *VExt = Builder.CreateExtractElement(LHS, Indx, "shuf_elt");
754 NewV = Builder.CreateInsertElement(NewV, VExt, Indx, "shuf_ins");