Lines Matching refs:PStore
4081 StoreInst *PStore = findUniqueStoreInBlocks(PTB, PFB); in mergeConditionalStoreToAddress() local
4083 if (!PStore || !QStore) in mergeConditionalStoreToAddress()
4087 if (!QStore->isUnordered() || !PStore->isUnordered() || in mergeConditionalStoreToAddress()
4088 PStore->getValueOperand()->getType() != in mergeConditionalStoreToAddress()
4113 for (auto I = BasicBlock::iterator(PStore), E = PStore->getParent()->end(); in mergeConditionalStoreToAddress()
4115 if (&*I != PStore && I->mayReadOrWriteMemory()) in mergeConditionalStoreToAddress()
4154 const std::array<StoreInst *, 2> FreeStores = {PStore, QStore}; in mergeConditionalStoreToAddress()
4182 Value *PPHI = ensureValueAvailableInSuccessor(PStore->getValueOperand(), in mergeConditionalStoreToAddress()
4183 PStore->getParent()); in mergeConditionalStoreToAddress()
4191 Value *PPred = PStore->getParent() == PTB ? PCond : QB.CreateNot(PCond); in mergeConditionalStoreToAddress()
4207 SI->setAAMetadata(PStore->getAAMetadata().merge(QStore->getAAMetadata())); in mergeConditionalStoreToAddress()
4212 SI->setAlignment(std::min(PStore->getAlign(), QStore->getAlign())); in mergeConditionalStoreToAddress()
4215 PStore->eraseFromParent(); in mergeConditionalStoreToAddress()