Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiMemAluCombiner.cpp79 const MbbIterator &MemInstr,
241 MachineOperand Dest = MemInstr->getOperand(0); in insertMergedInstruction()
242 MachineOperand Base = MemInstr->getOperand(1); in insertMergedInstruction()
243 MachineOperand MemOffset = MemInstr->getOperand(2); in insertMergedInstruction()
259 BuildMI(*BB, MemInstr, MemInstr->getDebugLoc(), TII->get(NewOpc)); in insertMergedInstruction()
280 InstrBuilder.setMemRefs(MemInstr->memoperands()); in insertMergedInstruction()
331 MachineOperand *Base = &MemInstr->getOperand(1); in findClosestSuitableAluInstr()
332 MachineOperand *Offset = &MemInstr->getOperand(2); in findClosestSuitableAluInstr()
333 bool IsSpls = isSpls(MemInstr->getOpcode()); in findClosestSuitableAluInstr()
335 MbbIterator First = MemInstr; in findClosestSuitableAluInstr()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/
H A DX86FoldTablesEmitter.cpp163 const CodeGenInstruction *MemInstr,
169 const CodeGenInstruction *MemInstr,
465 Record *MemRec = MemInstr->TheDef; in addEntryWithFlags()
483 Record *MemOpRec = MemInstr->Operands[FoldedInd].Rec; in addEntryWithFlags()
521 Record *MemRec = MemInstr->TheDef; in updateTables()
529 addEntryWithFlags(Table2Addr, RegInstr, MemInstr, S, 0); in updateTables()
539 Record *MemOpRec = MemInstr->Operands[i].Rec; in updateTables()
543 addEntryWithFlags(Table0, RegInstr, MemInstr, S, 0); in updateTables()
546 addEntryWithFlags(Table1, RegInstr, MemInstr, S, 1); in updateTables()
549 addEntryWithFlags(Table2, RegInstr, MemInstr, S, 2); in updateTables()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp738 for (Instruction *MemInstr : MemoryInstrs) { in getVectorizablePrefix()
740 if (BarrierMemoryInstr && BarrierMemoryInstr->comesBefore(MemInstr)) in getVectorizablePrefix()
743 auto *MemLoad = dyn_cast<LoadInst>(MemInstr); in getVectorizablePrefix()
758 if (isa<StoreInst>(MemInstr) && ChainLoad && in getVectorizablePrefix()
759 (IsInvariantLoad(ChainLoad) || ChainLoad->comesBefore(MemInstr))) in getVectorizablePrefix()
767 if (!AA.isNoAlias(MemoryLocation::get(MemInstr), in getVectorizablePrefix()
772 << " " << *MemInstr << '\n' in getVectorizablePrefix()
773 << " " << *getLoadStorePointerOperand(MemInstr) << '\n' in getVectorizablePrefix()
780 BarrierMemoryInstr = MemInstr; in getVectorizablePrefix()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopInterchange.cpp93 ValueVector MemInstr; in populateDependencyMatrix() local
104 MemInstr.push_back(&I); in populateDependencyMatrix()
108 MemInstr.push_back(&I); in populateDependencyMatrix()
113 LLVM_DEBUG(dbgs() << "Found " << MemInstr.size() in populateDependencyMatrix()
118 for (I = MemInstr.begin(), IE = MemInstr.end(); I != IE; ++I) { in populateDependencyMatrix()
119 for (J = I, JE = MemInstr.end(); J != JE; ++J) { in populateDependencyMatrix()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUnrollAndJam.cpp632 SmallVector<Instruction *, 4> &MemInstr) { in getLoadsAndStores() argument
640 MemInstr.push_back(&I); in getLoadsAndStores()
644 MemInstr.push_back(&I); in getLoadsAndStores()