Home
last modified time | relevance | path

Searched refs:StoreMI (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLoadStoreOpt.cpp303 for (auto *StoreMI : StoresToMerge) in mergeStores() local
518 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 …]
H A DLegalizerHelper.cpp1358 auto &StoreMI = cast<GStore>(MI); in narrowScalar() local
1360 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 …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86AvoidStoreForwardingBlocks.cpp542 MachineInstr &StoreMI = *StoreMO.getParent(); in findPotentiallylBlockedCopies() local
544 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()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DLoadStoreOpt.h148 bool mergeTruncStore(GStore &StoreMI,