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

References

include/llvm/Analysis/Utils/Local.h
   48     if (Constant *OpC = dyn_cast<Constant>(Op)) {
   77     if (IntPtrTy->isVectorTy() && !Op->getType()->isVectorTy())
   78       Op = Builder->CreateVectorSplat(IntPtrTy->getVectorNumElements(), Op);
   78       Op = Builder->CreateVectorSplat(IntPtrTy->getVectorNumElements(), Op);
   81     if (Op->getType() != IntPtrTy)
   82       Op = Builder->CreateIntCast(Op, IntPtrTy, true, Op->getName()+".c");
   82       Op = Builder->CreateIntCast(Op, IntPtrTy, true, Op->getName()+".c");
   82       Op = Builder->CreateIntCast(Op, IntPtrTy, true, Op->getName()+".c");
   85       Op = Builder->CreateMul(Op, ConstantInt::get(IntPtrTy, Size),
   85       Op = Builder->CreateMul(Op, ConstantInt::get(IntPtrTy, Size),
   91     Result = Builder->CreateAdd(Op, Result, GEP->getName()+".offs");