Lines Matching full:val0
2123 Constant *Val0, *Val1;
2126 ParseGlobalTypeAndValue(Val0) ||
2132 if (!Val0->getType()->isAggregateType())
2134 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
2136 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
2143 Constant *Val0, *Val1;
2147 ParseGlobalTypeAndValue(Val0) ||
2153 if (Val0->getType() != Val1->getType())
2159 if (!Val0->getType()->isFPOrFPVectorTy())
2161 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
2164 if (!Val0->getType()->isIntOrIntVectorTy() &&
2165 !Val0->getType()->getScalarType()->isPointerTy())
2167 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
2193 Constant *Val0, *Val1;
2211 ParseGlobalTypeAndValue(Val0) ||
2216 if (Val0->getType() != Val1->getType())
2218 if (!Val0->getType()->isIntOrIntVectorTy()) {
2236 if (!Val0->getType()->isIntOrIntVectorTy())
2244 if (!Val0->getType()->isFPOrFPVectorTy())
2253 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
2264 Constant *Val0, *Val1;
2267 ParseGlobalTypeAndValue(Val0) ||
2272 if (Val0->getType() != Val1->getType())
2274 if (!Val0->getType()->isIntOrIntVectorTy())
2277 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
3952 Value *Val0, *Val1; LocTy Loc0, Loc1;
3955 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
3961 if (!Val0->getType()->isAggregateType())
3964 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
3966 Inst = InsertValueInst::Create(Val0, Val1, Indices);