Searched refs:CastOp (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp296 Value *CastOp = CI->getOperand(0); local
300 if (PointerType *SrcTy = dyn_cast<PointerType>(CastOp->getType())) {
314 if (Constant *CSrc = dyn_cast<Constant>(CastOp))
319 CastOp = ConstantExpr::getGetElementPtr(CSrc, Idxs);
320 SrcTy = cast<PointerType>(CastOp->getType());
337 IC.Builder->CreateLoad(CastOp, LI.isVolatile(), CI->getName());
462 Value *CastOp = CI->getOperand(0); local
465 PointerType *SrcTy = dyn_cast<PointerType>(CastOp->getType());
535 CastOp = IC.Builder->CreateInBoundsGEP(CastOp, NewGEPIndice
[all...]
/external/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp200 Value *CastOp = cast<CastInst>(V)->getOperand(0); local
202 unsigned SmallWidth = CastOp->getType()->getPrimitiveSizeInBits();
207 Value *Result = GetLinearExpression(CastOp, Scale, Offset, Extension,
H A DScalarEvolution.cpp5011 if (Constant *CastOp = BuildConstantFromSCEV(SS->getOperand()))
5012 return ConstantExpr::getSExt(CastOp, SS->getType());
5017 if (Constant *CastOp = BuildConstantFromSCEV(SZ->getOperand()))
5018 return ConstantExpr::getZExt(CastOp, SZ->getType());
5023 if (Constant *CastOp = BuildConstantFromSCEV(ST->getOperand()))
5024 return ConstantExpr::getTrunc(CastOp, ST->getType());

Completed in 203 milliseconds