Lines Matching full:cs
20 void fuzzerop::makeConstantsWithType(Type *T, std::vector<Constant *> &Cs) {
23 Cs.push_back(ConstantInt::get(IntTy, 0));
24 Cs.push_back(ConstantInt::get(IntTy, 1));
25 Cs.push_back(ConstantInt::get(IntTy, 42));
26 Cs.push_back(ConstantInt::get(IntTy, APInt::getMaxValue(W)));
27 Cs.push_back(ConstantInt::get(IntTy, APInt::getMinValue(W)));
28 Cs.push_back(ConstantInt::get(IntTy, APInt::getSignedMaxValue(W)));
29 Cs.push_back(ConstantInt::get(IntTy, APInt::getSignedMinValue(W)));
30 Cs.push_back(ConstantInt::get(IntTy, APInt::getOneBitSet(W, W / 2)));
34 Cs.push_back(ConstantFP::get(Ctx, APFloat::getZero(Sem)));
35 Cs.push_back(ConstantFP::get(Ctx, APFloat(Sem, 1)));
36 Cs.push_back(ConstantFP::get(Ctx, APFloat(Sem, 42)));
37 Cs.push_back(ConstantFP::get(Ctx, APFloat::getLargest(Sem)));
38 Cs.push_back(ConstantFP::get(Ctx, APFloat::getSmallest(Sem)));
39 Cs.push_back(ConstantFP::get(Ctx, APFloat::getInf(Sem)));
40 Cs.push_back(ConstantFP::get(Ctx, APFloat::getNaN(Sem)));
47 Cs.push_back(ConstantVector::getSplat(EC, Elt));
51 Cs.push_back(UndefValue::get(T));
52 Cs.push_back(PoisonValue::get(T));