Lines Matching refs:Val0
2461 Constant *Val0, *Val1; in ParseValID() local
2464 ParseGlobalTypeAndValue(Val0) || in ParseValID()
2470 if (!Val0->getType()->isAggregateType()) in ParseValID()
2472 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices)) in ParseValID()
2474 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices); in ParseValID()
2481 Constant *Val0, *Val1; in ParseValID() local
2485 ParseGlobalTypeAndValue(Val0) || in ParseValID()
2491 if (Val0->getType() != Val1->getType()) in ParseValID()
2497 if (!Val0->getType()->isFPOrFPVectorTy()) in ParseValID()
2499 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1); in ParseValID()
2502 if (!Val0->getType()->isIntOrIntVectorTy() && in ParseValID()
2503 !Val0->getType()->getScalarType()->isPointerTy()) in ParseValID()
2505 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1); in ParseValID()
2531 Constant *Val0, *Val1; in ParseValID() local
2549 ParseGlobalTypeAndValue(Val0) || in ParseValID()
2554 if (Val0->getType() != Val1->getType()) in ParseValID()
2556 if (!Val0->getType()->isIntOrIntVectorTy()) { in ParseValID()
2574 if (!Val0->getType()->isIntOrIntVectorTy()) in ParseValID()
2582 if (!Val0->getType()->isFPOrFPVectorTy()) in ParseValID()
2591 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags); in ParseValID()
2602 Constant *Val0, *Val1; in ParseValID() local
2605 ParseGlobalTypeAndValue(Val0) || in ParseValID()
2610 if (Val0->getType() != Val1->getType()) in ParseValID()
2612 if (!Val0->getType()->isIntOrIntVectorTy()) in ParseValID()
2615 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1); in ParseValID()
4337 Value *Val0, *Val1; LocTy Loc0, Loc1; in ParseInsertValue() local
4340 if (ParseTypeAndValue(Val0, Loc0, PFS) || in ParseInsertValue()
4346 if (!Val0->getType()->isAggregateType()) in ParseInsertValue()
4349 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices)) in ParseInsertValue()
4351 Inst = InsertValueInst::Create(Val0, Val1, Indices); in ParseInsertValue()