• Home
  • Raw
  • Download

Lines Matching refs:Val0

2126     Constant *Val0, *Val1;  in ParseValID()  local
2129 ParseGlobalTypeAndValue(Val0) || in ParseValID()
2135 if (!Val0->getType()->isAggregateType()) in ParseValID()
2137 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices)) in ParseValID()
2139 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices); in ParseValID()
2146 Constant *Val0, *Val1; in ParseValID() local
2150 ParseGlobalTypeAndValue(Val0) || in ParseValID()
2156 if (Val0->getType() != Val1->getType()) in ParseValID()
2162 if (!Val0->getType()->isFPOrFPVectorTy()) in ParseValID()
2164 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1); in ParseValID()
2167 if (!Val0->getType()->isIntOrIntVectorTy() && in ParseValID()
2168 !Val0->getType()->isPointerTy()) in ParseValID()
2170 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1); in ParseValID()
2196 Constant *Val0, *Val1; in ParseValID() local
2214 ParseGlobalTypeAndValue(Val0) || in ParseValID()
2219 if (Val0->getType() != Val1->getType()) in ParseValID()
2221 if (!Val0->getType()->isIntOrIntVectorTy()) { in ParseValID()
2239 if (!Val0->getType()->isIntOrIntVectorTy()) in ParseValID()
2247 if (!Val0->getType()->isFPOrFPVectorTy()) in ParseValID()
2256 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags); in ParseValID()
2267 Constant *Val0, *Val1; in ParseValID() local
2270 ParseGlobalTypeAndValue(Val0) || in ParseValID()
2275 if (Val0->getType() != Val1->getType()) in ParseValID()
2277 if (!Val0->getType()->isIntOrIntVectorTy()) in ParseValID()
2280 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1); in ParseValID()
3957 Value *Val0, *Val1; LocTy Loc0, Loc1; in ParseInsertValue() local
3960 if (ParseTypeAndValue(Val0, Loc0, PFS) || in ParseInsertValue()
3966 if (!Val0->getType()->isAggregateType()) in ParseInsertValue()
3969 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices)) in ParseInsertValue()
3971 Inst = InsertValueInst::Create(Val0, Val1, Indices); in ParseInsertValue()