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

/openbsd-current/gnu/llvm/llvm/lib/Transforms/AggressiveInstCombine/
H A DAggressiveInstCombine.cpp652 LoadInst *LI2 = dyn_cast<LoadInst>(L2); local
655 if (LI1 == LI2 || !LI1 || !LI2 || !LI1->isSimple() || !LI2->isSimple() ||
656 LI1->getPointerAddressSpace() != LI2->getPointerAddressSpace())
660 if (LI1->getParent() != LI2->getParent())
673 Value *Load2Ptr = LI2->getPointerOperand();
681 uint64_t LoadSize2 = LI2->getType()->getPrimitiveSizeInBits();
690 LoadInst *Start = LOps.FoundRoot ? LOps.RootInsert : LI1, *End = LI2;
711 std::swap(LI1, LI2);
[all...]
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/
H A DStackProtector.cpp555 LoadInst *LI2 = B.CreateLoad(B.getInt8PtrTy(), AI, true); local
556 auto *Cmp = cast<ICmpInst>(B.CreateICmpNE(Guard, LI2));
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp1291 auto *LI2 = dyn_cast<LoadInst>(V2);
1292 if (LI1 && LI2) {
1293 if (LI1->getParent() != LI2->getParent() || !LI1->isSimple() ||
1294 !LI2->isSimple())
1298 LI1->getType(), LI1->getPointerOperand(), LI2->getType(),
1299 LI2->getPointerOperand(), DL, SE, /*StrictCheck=*/true);
1302 getUnderlyingObject(LI2->getPointerOperand()) &&

Completed in 274 milliseconds