Searched refs:LI2 (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/ |
| H A D | AggressiveInstCombine.cpp | 668 LoadInst *LI2 = dyn_cast<LoadInst>(L2); in foldLoadsRecursive() local 671 if (LI1 == LI2 || !LI1 || !LI2 || !LI1->isSimple() || !LI2->isSimple() || in foldLoadsRecursive() 672 LI1->getPointerAddressSpace() != LI2->getPointerAddressSpace()) in foldLoadsRecursive() 676 if (LI1->getParent() != LI2->getParent()) in foldLoadsRecursive() 689 Value *Load2Ptr = LI2->getPointerOperand(); in foldLoadsRecursive() 697 uint64_t LoadSize2 = LI2->getType()->getPrimitiveSizeInBits(); in foldLoadsRecursive() 703 !DL.typeSizeEqualsStoreSize(LI2->getType())) in foldLoadsRecursive() 707 LoadInst *Start = LOps.FoundRoot ? LOps.RootInsert : LI1, *End = LI2; in foldLoadsRecursive() 729 std::swap(LI1, LI2); in foldLoadsRecursive() 767 AAMDNodes AATags2 = LI2->getAAMetadata(); in foldLoadsRecursive()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | StackProtector.cpp | 680 LoadInst *LI2 = B.CreateLoad(B.getPtrTy(), AI, true); in InsertStackProtectors() local 681 auto *Cmp = cast<ICmpInst>(B.CreateICmpNE(Guard, LI2)); in InsertStackProtectors()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | SLPVectorizer.cpp | 2234 auto *LI2 = dyn_cast<LoadInst>(V2); in getShallowScore() local 2235 if (LI1 && LI2) { in getShallowScore() 2236 if (LI1->getParent() != LI2->getParent() || !LI1->isSimple() || in getShallowScore() 2237 !LI2->isSimple()) in getShallowScore() 2241 LI1->getType(), LI1->getPointerOperand(), LI2->getType(), in getShallowScore() 2242 LI2->getPointerOperand(), DL, SE, /*StrictCheck=*/true); in getShallowScore() 2245 getUnderlyingObject(LI2->getPointerOperand()) && in getShallowScore()
|