Searched refs:StoreMI (Results 1 – 4 of 4) sorted by relevance
303 for (auto *StoreMI : StoresToMerge) in mergeStores() local518 if (!StoreMI.isSimple()) in addStoreToCandidate()537 C.Stores.emplace_back(&StoreMI); in addStoreToCandidate()539 << StoreMI); in addStoreToCandidate()565 C.Stores.emplace_back(&StoreMI); in addStoreToCandidate()714 if (!StoreMI.isSimple()) in mergeTruncStore()727 auto &LastStore = StoreMI; in mergeTruncStore()865 Builder.setInstrAndDebugLoc(StoreMI); in mergeTruncStore()900 Stores.emplace_back(StoreMI); in mergeTruncStoresBlock()902 for (auto *StoreMI : Stores) { in mergeTruncStoresBlock() local[all …]
1358 auto &StoreMI = cast<GStore>(MI); in narrowScalar() local1360 Register SrcReg = StoreMI.getValueReg(); in narrowScalar()1371 if (8 * StoreMI.getMemSize() != SrcTy.getSizeInBits()) { in narrowScalar()1374 MIRBuilder.buildStore(TmpReg, StoreMI.getPointerReg(), StoreMI.getMMO()); in narrowScalar()1375 StoreMI.eraseFromParent(); in narrowScalar()1379 return reduceLoadStoreWidth(StoreMI, 0, NarrowTy); in narrowScalar()3441 Register SrcReg = StoreMI.getValueReg(); in lowerStore()3442 Register PtrReg = StoreMI.getPointerReg(); in lowerStore()3445 MachineMemOperand &MMO = **StoreMI.memoperands_begin(); in lowerStore()3471 StoreMI.eraseFromParent(); in lowerStore()[all …]
542 MachineInstr &StoreMI = *StoreMO.getParent(); in findPotentiallylBlockedCopies() local544 if (StoreMI.getParent() == MI.getParent() && in findPotentiallylBlockedCopies()545 isPotentialBlockedMemCpyPair(MI.getOpcode(), StoreMI.getOpcode()) && in findPotentiallylBlockedCopies()547 isRelevantAddressingMode(&StoreMI) && in findPotentiallylBlockedCopies()548 MI.hasOneMemOperand() && StoreMI.hasOneMemOperand()) { in findPotentiallylBlockedCopies()549 if (!alias(**MI.memoperands_begin(), **StoreMI.memoperands_begin())) in findPotentiallylBlockedCopies()550 BlockedLoadsStoresPairs.push_back(std::make_pair(&MI, &StoreMI)); in findPotentiallylBlockedCopies()
148 bool mergeTruncStore(GStore &StoreMI,