Lines Matching refs:Val0

3564     Constant *Val0, *Val1;  in parseValID()  local
3567 parseGlobalTypeAndValue(Val0) || in parseValID()
3573 if (!Val0->getType()->isAggregateType()) in parseValID()
3576 ExtractValueInst::getIndexedType(Val0->getType(), Indices); in parseValID()
3584 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices); in parseValID()
3591 Constant *Val0, *Val1; in parseValID() local
3595 parseGlobalTypeAndValue(Val0) || in parseValID()
3601 if (Val0->getType() != Val1->getType()) in parseValID()
3607 if (!Val0->getType()->isFPOrFPVectorTy()) in parseValID()
3609 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1); in parseValID()
3612 if (!Val0->getType()->isIntOrIntVectorTy() && in parseValID()
3613 !Val0->getType()->isPtrOrPtrVectorTy()) in parseValID()
3615 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1); in parseValID()
3665 Constant *Val0, *Val1; in parseValID() local
3682 parseGlobalTypeAndValue(Val0) || in parseValID()
3687 if (Val0->getType() != Val1->getType()) in parseValID()
3701 if (!Val0->getType()->isIntOrIntVectorTy()) in parseValID()
3709 if (!Val0->getType()->isFPOrFPVectorTy()) in parseValID()
3718 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags); in parseValID()
3729 Constant *Val0, *Val1; in parseValID() local
3732 parseGlobalTypeAndValue(Val0) || in parseValID()
3737 if (Val0->getType() != Val1->getType()) in parseValID()
3739 if (!Val0->getType()->isIntOrIntVectorTy()) in parseValID()
3742 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1); in parseValID()
7676 Value *Val0, *Val1; LocTy Loc0, Loc1; in parseInsertValue() local
7679 if (parseTypeAndValue(Val0, Loc0, PFS) || in parseInsertValue()
7685 if (!Val0->getType()->isAggregateType()) in parseInsertValue()
7688 Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices); in parseInsertValue()
7695 Inst = InsertValueInst::Create(Val0, Val1, Indices); in parseInsertValue()