Lines Matching refs:PStore
3746 StoreInst *PStore = findUniqueStoreInBlocks(PTB, PFB); in mergeConditionalStoreToAddress() local
3748 if (!PStore || !QStore) in mergeConditionalStoreToAddress()
3752 if (!QStore->isUnordered() || !PStore->isUnordered() || in mergeConditionalStoreToAddress()
3753 PStore->getValueOperand()->getType() != in mergeConditionalStoreToAddress()
3778 for (auto I = BasicBlock::iterator(PStore), E = PStore->getParent()->end(); in mergeConditionalStoreToAddress()
3780 if (&*I != PStore && I->mayReadOrWriteMemory()) in mergeConditionalStoreToAddress()
3818 const std::array<StoreInst *, 2> FreeStores = {PStore, QStore}; in mergeConditionalStoreToAddress()
3846 Value *PPHI = ensureValueAvailableInSuccessor(PStore->getValueOperand(), in mergeConditionalStoreToAddress()
3847 PStore->getParent()); in mergeConditionalStoreToAddress()
3853 Value *PPred = PStore->getParent() == PTB ? PCond : QB.CreateNot(PCond); in mergeConditionalStoreToAddress()
3867 SI->setAAMetadata(PStore->getAAMetadata().merge(QStore->getAAMetadata())); in mergeConditionalStoreToAddress()
3872 SI->setAlignment(std::min(PStore->getAlign(), QStore->getAlign())); in mergeConditionalStoreToAddress()
3875 PStore->eraseFromParent(); in mergeConditionalStoreToAddress()