Lines Matching defs:Val0
362 Value *Val0 = getRandomVal();
363 Value *Val1 = getRandomValue(Val0->getType());
366 if (Val0->getType()->isPointerTy() ||
371 if (Val0->getType()->getScalarSizeInBits() == 1)
374 bool isFloat = Val0->getType()->getScalarType()->isFloatingPointTy();
397 BinaryOperator::Create(Op, Val0, Val1, "B", Term->getIterator()));
470 Value *Val0 = getRandomVectorValue();
472 Val0, getRandomValue(Type::getInt32Ty(BB->getContext())), "E",
483 Value *Val0 = getRandomVectorValue();
484 Value *Val1 = getRandomValue(Val0->getType());
487 if (isa<ScalableVectorType>(Val0->getType()))
490 unsigned Width = cast<FixedVectorType>(Val0->getType())->getNumElements();
504 Value *V = new ShuffleVectorInst(Val0, Val1, Mask, "Shuff",
515 Value *Val0 = getRandomVectorValue();
516 Value *Val1 = getRandomValue(Val0->getType()->getScalarType());
519 Val0, Val1, getRandomValue(Type::getInt32Ty(BB->getContext())), "I",
612 Value *Val0 = getRandomVal();
613 Value *Val1 = getRandomValue(Val0->getType());
619 if (auto *VTy = dyn_cast<VectorType>(Val0->getType()))
624 Value *V = SelectInst::Create(Cond, Val0, Val1, "Sl",
635 Value *Val0 = getRandomVal();
636 Value *Val1 = getRandomValue(Val0->getType());
638 if (Val0->getType()->isPointerTy()) return;
639 bool fp = Val0->getType()->getScalarType()->isFloatingPointTy();
653 (CmpInst::Predicate)op, Val0, Val1, "Cmp",