Lines Matching refs:Val0
2970 Constant *Val0, *Val1; in ParseValID() local
2973 ParseGlobalTypeAndValue(Val0) || in ParseValID()
2979 if (!Val0->getType()->isAggregateType()) in ParseValID()
2982 ExtractValueInst::getIndexedType(Val0->getType(), Indices); in ParseValID()
2990 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices); in ParseValID()
2997 Constant *Val0, *Val1; in ParseValID() local
3001 ParseGlobalTypeAndValue(Val0) || in ParseValID()
3007 if (Val0->getType() != Val1->getType()) in ParseValID()
3013 if (!Val0->getType()->isFPOrFPVectorTy()) in ParseValID()
3015 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1); in ParseValID()
3018 if (!Val0->getType()->isIntOrIntVectorTy() && in ParseValID()
3019 !Val0->getType()->getScalarType()->isPointerTy()) in ParseValID()
3021 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1); in ParseValID()
3047 Constant *Val0, *Val1; in ParseValID() local
3065 ParseGlobalTypeAndValue(Val0) || in ParseValID()
3070 if (Val0->getType() != Val1->getType()) in ParseValID()
3072 if (!Val0->getType()->isIntOrIntVectorTy()) { in ParseValID()
3090 if (!Val0->getType()->isIntOrIntVectorTy()) in ParseValID()
3098 if (!Val0->getType()->isFPOrFPVectorTy()) in ParseValID()
3107 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags); in ParseValID()
3118 Constant *Val0, *Val1; in ParseValID() local
3121 ParseGlobalTypeAndValue(Val0) || in ParseValID()
3126 if (Val0->getType() != Val1->getType()) in ParseValID()
3128 if (!Val0->getType()->isIntOrIntVectorTy()) in ParseValID()
3131 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1); in ParseValID()
6302 Value *Val0, *Val1; LocTy Loc0, Loc1; in ParseInsertValue() local
6305 if (ParseTypeAndValue(Val0, Loc0, PFS) || in ParseInsertValue()
6311 if (!Val0->getType()->isAggregateType()) in ParseInsertValue()
6314 Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices); in ParseInsertValue()
6321 Inst = InsertValueInst::Create(Val0, Val1, Indices); in ParseInsertValue()