Lines Matching refs:Cs

15 void fuzzerop::makeConstantsWithType(Type *T, std::vector<Constant *> &Cs) {  in makeConstantsWithType()  argument
18 Cs.push_back(ConstantInt::get(IntTy, 0)); in makeConstantsWithType()
19 Cs.push_back(ConstantInt::get(IntTy, 1)); in makeConstantsWithType()
20 Cs.push_back(ConstantInt::get(IntTy, 42)); in makeConstantsWithType()
21 Cs.push_back(ConstantInt::get(IntTy, APInt::getMaxValue(W))); in makeConstantsWithType()
22 Cs.push_back(ConstantInt::get(IntTy, APInt::getMinValue(W))); in makeConstantsWithType()
23 Cs.push_back(ConstantInt::get(IntTy, APInt::getSignedMaxValue(W))); in makeConstantsWithType()
24 Cs.push_back(ConstantInt::get(IntTy, APInt::getSignedMinValue(W))); in makeConstantsWithType()
25 Cs.push_back(ConstantInt::get(IntTy, APInt::getOneBitSet(W, W / 2))); in makeConstantsWithType()
29 Cs.push_back(ConstantFP::get(Ctx, APFloat::getZero(Sem))); in makeConstantsWithType()
30 Cs.push_back(ConstantFP::get(Ctx, APFloat(Sem, 1))); in makeConstantsWithType()
31 Cs.push_back(ConstantFP::get(Ctx, APFloat(Sem, 42))); in makeConstantsWithType()
32 Cs.push_back(ConstantFP::get(Ctx, APFloat::getLargest(Sem))); in makeConstantsWithType()
33 Cs.push_back(ConstantFP::get(Ctx, APFloat::getSmallest(Sem))); in makeConstantsWithType()
34 Cs.push_back(ConstantFP::get(Ctx, APFloat::getInf(Sem))); in makeConstantsWithType()
35 Cs.push_back(ConstantFP::get(Ctx, APFloat::getNaN(Sem))); in makeConstantsWithType()
42 Cs.push_back(ConstantVector::getSplat(EC, Elt)); in makeConstantsWithType()
45 Cs.push_back(UndefValue::get(T)); in makeConstantsWithType()
46 Cs.push_back(PoisonValue::get(T)); in makeConstantsWithType()