Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86AvoidStoreForwardingBlocks.cpp548 MachineInstr &StoreMI = *StoreMO.getParent(); in findPotentiallylBlockedCopies() local
550 if (StoreMI.getParent() == MI.getParent() && in findPotentiallylBlockedCopies()
551 isPotentialBlockedMemCpyPair(MI.getOpcode(), StoreMI.getOpcode()) && in findPotentiallylBlockedCopies()
553 isRelevantAddressingMode(&StoreMI) && in findPotentiallylBlockedCopies()
554 MI.hasOneMemOperand() && StoreMI.hasOneMemOperand()) { in findPotentiallylBlockedCopies()
555 if (!alias(**MI.memoperands_begin(), **StoreMI.memoperands_begin())) in findPotentiallylBlockedCopies()
556 BlockedLoadsStoresPairs.push_back(std::make_pair(&MI, &StoreMI)); in findPotentiallylBlockedCopies()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp983 auto &StoreMI = cast<GStore>(MI); in narrowScalar() local
985 Register SrcReg = StoreMI.getValueReg(); in narrowScalar()
996 if (8 * StoreMI.getMemSize() != SrcTy.getSizeInBits()) { in narrowScalar()
999 MIRBuilder.buildStore(TmpReg, StoreMI.getPointerReg(), StoreMI.getMMO()); in narrowScalar()
1000 StoreMI.eraseFromParent(); in narrowScalar()
1004 return reduceLoadStoreWidth(StoreMI, 0, NarrowTy); in narrowScalar()
2995 Register SrcReg = StoreMI.getValueReg(); in lowerStore()
2996 Register PtrReg = StoreMI.getPointerReg(); in lowerStore()
2999 MachineMemOperand &MMO = **StoreMI.memoperands_begin(); in lowerStore()
3025 StoreMI.eraseFromParent(); in lowerStore()
[all …]