• Home
  • Raw
  • Download

Lines Matching defs:OpTy

3089         Type *OpTy = getTypeByID(Record[1]);
3090 if (!OpTy)
3092 Constant *Op = ValueList.getConstantFwdRef(Record[2], OpTy);
3151 VectorType *OpTy =
3153 if (!OpTy)
3155 Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
3171 VectorType *OpTy = dyn_cast<VectorType>(CurTy);
3172 if (Record.size() < 3 || !OpTy)
3174 Constant *Op0 = ValueList.getConstantFwdRef(Record[0], OpTy);
3176 OpTy->getElementType());
3191 VectorType *OpTy = dyn_cast<VectorType>(CurTy);
3192 if (Record.size() < 3 || !OpTy)
3194 Constant *Op0 = ValueList.getConstantFwdRef(Record[0], OpTy);
3195 Constant *Op1 = ValueList.getConstantFwdRef(Record[1], OpTy);
3197 OpTy->getNumElements());
3204 VectorType *OpTy =
3206 if (Record.size() < 4 || !RTy || !OpTy)
3208 Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
3209 Constant *Op1 = ValueList.getConstantFwdRef(Record[2], OpTy);
3219 Type *OpTy = getTypeByID(Record[0]);
3220 if (!OpTy)
3222 Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
3223 Constant *Op1 = ValueList.getConstantFwdRef(Record[2], OpTy);
3225 if (OpTy->isFPOrFPVectorTy())
4983 Type *OpTy = getTypeByID(Record[1]);
4984 unsigned ValueBitWidth = cast<IntegerType>(OpTy)->getBitWidth();
4986 Value *Cond = getValue(Record, 2, NextValueNo, OpTy);
4988 if (!OpTy || !Cond || !Default)
5041 Type *OpTy = getTypeByID(Record[0]);
5042 Value *Cond = getValue(Record, 1, NextValueNo, OpTy);
5044 if (!OpTy || !Cond || !Default)
5051 dyn_cast_or_null<ConstantInt>(getFnValueByID(Record[3+i*2], OpTy));
5065 Type *OpTy = getTypeByID(Record[0]);
5066 Value *Address = getValue(Record, 1, NextValueNo, OpTy);
5067 if (!OpTy || !Address)
5258 Type *OpTy = getTypeByID(Record[1]);
5259 Value *Size = getFnValueByID(Record[2], OpTy);
5497 PointerType *OpTy = dyn_cast<PointerType>(Callee->getType());
5498 if (!OpTy)
5501 FTy = dyn_cast<FunctionType>(OpTy->getElementType());
5504 } else if (OpTy->getElementType() != FTy)
5560 Type *OpTy = getTypeByID(Record[0]);
5561 Value *Op = getValue(Record, 1, NextValueNo, OpTy);
5563 if (!OpTy || !Op || !ResTy)