Lines Matching refs:Val0
3996 Constant *Val0, *Val1; in parseValID() local
4000 parseGlobalTypeAndValue(Val0) || in parseValID()
4006 if (Val0->getType() != Val1->getType()) in parseValID()
4012 if (!Val0->getType()->isFPOrFPVectorTy()) in parseValID()
4014 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1); in parseValID()
4017 if (!Val0->getType()->isIntOrIntVectorTy() && in parseValID()
4018 !Val0->getType()->isPtrOrPtrVectorTy()) in parseValID()
4020 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1); in parseValID()
4035 Constant *Val0, *Val1; in parseValID() local
4048 parseGlobalTypeAndValue(Val0) || in parseValID()
4053 if (Val0->getType() != Val1->getType()) in parseValID()
4056 if (!Val0->getType()->isIntOrIntVectorTy()) in parseValID()
4062 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1, Flags); in parseValID()
8084 Value *Val0, *Val1; LocTy Loc0, Loc1; in parseInsertValue() local
8087 if (parseTypeAndValue(Val0, Loc0, PFS) || in parseInsertValue()
8093 if (!Val0->getType()->isAggregateType()) in parseInsertValue()
8096 Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices); in parseInsertValue()
8103 Inst = InsertValueInst::Create(Val0, Val1, Indices); in parseInsertValue()