reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Analysis/Utils/Local.h
   32   Value *Result = Constant::getNullValue(IntPtrTy);
   39   unsigned IntPtrWidth = IntPtrTy->getScalarType()->getIntegerBitWidth();
   58           Result = Builder->CreateAdd(Result, ConstantInt::get(IntPtrTy, Size),
   64       if (IntPtrTy->isVectorTy() && !OpC->getType()->isVectorTy())
   65         OpC = ConstantVector::getSplat(IntPtrTy->getVectorNumElements(), OpC);
   67       Constant *Scale = ConstantInt::get(IntPtrTy, Size);
   68       Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
   77     if (IntPtrTy->isVectorTy() && !Op->getType()->isVectorTy())
   78       Op = Builder->CreateVectorSplat(IntPtrTy->getVectorNumElements(), Op);
   81     if (Op->getType() != IntPtrTy)
   82       Op = Builder->CreateIntCast(Op, IntPtrTy, true, Op->getName()+".c");
   85       Op = Builder->CreateMul(Op, ConstantInt::get(IntPtrTy, Size),