reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
4303 if (!match(CastOp0, m_ZExtOrSExt(m_Value(X)))) 4306 bool IsSignedExt = CastOp0->getOpcode() == Instruction::SExt; 4312 if (CastOp0->getOpcode() != CastOp1->getOpcode()) 4320 if (!CastOp0->hasOneUse() && !CastOp1->hasOneUse()) 4324 X = Builder.CreateCast(CastOp0->getOpcode(), X, YTy); 4326 Y = Builder.CreateCast(CastOp0->getOpcode(), Y, XTy); 4352 Type *SrcTy = CastOp0->getSrcTy(); 4353 Type *DestTy = CastOp0->getDestTy(); 4355 Constant *Res2 = ConstantExpr::getCast(CastOp0->getOpcode(), Res1, DestTy);