Lines Matching refs:Val0

3505     Constant *Val0, *Val1;  in parseValID()  local
3509 parseGlobalTypeAndValue(Val0) || in parseValID()
3515 if (Val0->getType() != Val1->getType()) in parseValID()
3521 if (!Val0->getType()->isFPOrFPVectorTy()) in parseValID()
3523 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1); in parseValID()
3526 if (!Val0->getType()->isIntOrIntVectorTy() && in parseValID()
3527 !Val0->getType()->isPtrOrPtrVectorTy()) in parseValID()
3529 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1); in parseValID()
3570 Constant *Val0, *Val1; in parseValID() local
3587 parseGlobalTypeAndValue(Val0) || in parseValID()
3592 if (Val0->getType() != Val1->getType()) in parseValID()
3606 if (!Val0->getType()->isIntOrIntVectorTy()) in parseValID()
3614 if (!Val0->getType()->isFPOrFPVectorTy()) in parseValID()
3623 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags); in parseValID()
3634 Constant *Val0, *Val1; in parseValID() local
3637 parseGlobalTypeAndValue(Val0) || in parseValID()
3642 if (Val0->getType() != Val1->getType()) in parseValID()
3644 if (!Val0->getType()->isIntOrIntVectorTy()) in parseValID()
3647 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1); in parseValID()
7653 Value *Val0, *Val1; LocTy Loc0, Loc1; in parseInsertValue() local
7656 if (parseTypeAndValue(Val0, Loc0, PFS) || in parseInsertValue()
7662 if (!Val0->getType()->isAggregateType()) in parseInsertValue()
7665 Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices); in parseInsertValue()
7672 Inst = InsertValueInst::Create(Val0, Val1, Indices); in parseInsertValue()