Lines Matching refs:Val0

2806     Constant *Val0, *Val1;  in ParseValID()  local
2809 ParseGlobalTypeAndValue(Val0) || in ParseValID()
2815 if (!Val0->getType()->isAggregateType()) in ParseValID()
2818 ExtractValueInst::getIndexedType(Val0->getType(), Indices); in ParseValID()
2826 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices); in ParseValID()
2833 Constant *Val0, *Val1; in ParseValID() local
2837 ParseGlobalTypeAndValue(Val0) || in ParseValID()
2843 if (Val0->getType() != Val1->getType()) in ParseValID()
2849 if (!Val0->getType()->isFPOrFPVectorTy()) in ParseValID()
2851 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1); in ParseValID()
2854 if (!Val0->getType()->isIntOrIntVectorTy() && in ParseValID()
2855 !Val0->getType()->getScalarType()->isPointerTy()) in ParseValID()
2857 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1); in ParseValID()
2883 Constant *Val0, *Val1; in ParseValID() local
2901 ParseGlobalTypeAndValue(Val0) || in ParseValID()
2906 if (Val0->getType() != Val1->getType()) in ParseValID()
2908 if (!Val0->getType()->isIntOrIntVectorTy()) { in ParseValID()
2926 if (!Val0->getType()->isIntOrIntVectorTy()) in ParseValID()
2934 if (!Val0->getType()->isFPOrFPVectorTy()) in ParseValID()
2943 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags); in ParseValID()
2954 Constant *Val0, *Val1; in ParseValID() local
2957 ParseGlobalTypeAndValue(Val0) || in ParseValID()
2962 if (Val0->getType() != Val1->getType()) in ParseValID()
2964 if (!Val0->getType()->isIntOrIntVectorTy()) in ParseValID()
2967 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1); in ParseValID()
6079 Value *Val0, *Val1; LocTy Loc0, Loc1; in ParseInsertValue() local
6082 if (ParseTypeAndValue(Val0, Loc0, PFS) || in ParseInsertValue()
6088 if (!Val0->getType()->isAggregateType()) in ParseInsertValue()
6091 Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices); in ParseInsertValue()
6098 Inst = InsertValueInst::Create(Val0, Val1, Indices); in ParseInsertValue()