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

References

lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
 1511   BranchInst *OtherBr = dyn_cast<BranchInst>(BBI);
 1512   if (!OtherBr || BBI == OtherBB->begin())
 1519     --BBI;
 1521     while (isa<DbgInfoIntrinsic>(BBI) ||
 1522            (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy())) {
 1522            (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy())) {
 1523       if (BBI==OtherBB->begin())
 1525       --BBI;
 1529     OtherStore = dyn_cast<StoreInst>(BBI);
 1543     for (;; --BBI) {
 1545       if ((OtherStore = dyn_cast<StoreInst>(BBI))) {
 1553       if (BBI->mayReadFromMemory() || BBI->mayThrow() ||
 1553       if (BBI->mayReadFromMemory() || BBI->mayThrow() ||
 1554           BBI->mayWriteToMemory() || BBI == OtherBB->begin())
 1554           BBI->mayWriteToMemory() || BBI == OtherBB->begin())
 1581   BBI = DestBB->getFirstInsertionPt();
 1585   InsertNewInstBefore(NewSI, *BBI);