Lines Matching defs:CurTy

1266   Type *CurTy = Type::getInt32Ty(Context);
1295 V = UndefValue::get(CurTy);
1302 CurTy = TypeList[Record[0]];
1305 V = Constant::getNullValue(CurTy);
1308 if (!CurTy->isIntegerTy() || Record.empty())
1310 V = ConstantInt::get(CurTy, decodeSignRotatedValue(Record[0]));
1313 if (!CurTy->isIntegerTy() || Record.empty())
1317 cast<IntegerType>(CurTy)->getBitWidth());
1325 if (CurTy->isHalfTy())
1328 else if (CurTy->isFloatTy())
1331 else if (CurTy->isDoubleTy())
1334 else if (CurTy->isX86_FP80Ty()) {
1341 } else if (CurTy->isFP128Ty())
1344 else if (CurTy->isPPC_FP128Ty())
1348 V = UndefValue::get(CurTy);
1359 if (StructType *STy = dyn_cast<StructType>(CurTy)) {
1364 } else if (ArrayType *ATy = dyn_cast<ArrayType>(CurTy)) {
1369 } else if (VectorType *VTy = dyn_cast<VectorType>(CurTy)) {
1375 V = UndefValue::get(CurTy);
1383 ArrayType *ATy = cast<ArrayType>(CurTy);
1397 ArrayType *ATy = cast<ArrayType>(CurTy);
1411 int Opc = GetDecodedBinaryOpcode(Record[0], CurTy);
1413 V = UndefValue::get(CurTy); // Unknown binop.
1415 Constant *LHS = ValueList.getConstantFwdRef(Record[1], CurTy);
1416 Constant *RHS = ValueList.getConstantFwdRef(Record[2], CurTy);
1444 V = UndefValue::get(CurTy); // Unknown cast.
1450 V = ConstantExpr::getCast(Opc, Op, CurTy);
1478 ValueList.getConstantFwdRef(Record[1],CurTy),
1479 ValueList.getConstantFwdRef(Record[2],CurTy));
1494 VectorType *OpTy = dyn_cast<VectorType>(CurTy);
1505 VectorType *OpTy = dyn_cast<VectorType>(CurTy);
1517 VectorType *RTy = dyn_cast<VectorType>(CurTy);
1562 PointerType *PTy = cast<PointerType>(CurTy);