Lines Matching refs:PStore
4013 StoreInst *PStore = findUniqueStoreInBlocks(PTB, PFB); in mergeConditionalStoreToAddress() local
4015 if (!PStore || !QStore) in mergeConditionalStoreToAddress()
4019 if (!QStore->isUnordered() || !PStore->isUnordered() || in mergeConditionalStoreToAddress()
4020 PStore->getValueOperand()->getType() != in mergeConditionalStoreToAddress()
4045 for (auto I = BasicBlock::iterator(PStore), E = PStore->getParent()->end(); in mergeConditionalStoreToAddress()
4047 if (&*I != PStore && I->mayReadOrWriteMemory()) in mergeConditionalStoreToAddress()
4086 const std::array<StoreInst *, 2> FreeStores = {PStore, QStore}; in mergeConditionalStoreToAddress()
4114 Value *PPHI = ensureValueAvailableInSuccessor(PStore->getValueOperand(), in mergeConditionalStoreToAddress()
4115 PStore->getParent()); in mergeConditionalStoreToAddress()
4123 Value *PPred = PStore->getParent() == PTB ? PCond : QB.CreateNot(PCond); in mergeConditionalStoreToAddress()
4139 SI->setAAMetadata(PStore->getAAMetadata().merge(QStore->getAAMetadata())); in mergeConditionalStoreToAddress()
4144 SI->setAlignment(std::min(PStore->getAlign(), QStore->getAlign())); in mergeConditionalStoreToAddress()
4147 PStore->eraseFromParent(); in mergeConditionalStoreToAddress()