Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86AvoidStoreForwardingBlocks.cpp539 MachineInstr &StoreMI = *StoreMO.getParent(); in findPotentiallylBlockedCopies() local
541 if (StoreMI.getParent() == MI.getParent() && in findPotentiallylBlockedCopies()
542 isPotentialBlockedMemCpyPair(MI.getOpcode(), StoreMI.getOpcode()) && in findPotentiallylBlockedCopies()
544 isRelevantAddressingMode(&StoreMI)) { in findPotentiallylBlockedCopies()
547 assert(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()