Home | History | Annotate | Download | only in AsmParser

Lines Matching full:val0

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