Searched refs:BaseOps1 (Results 1 – 7 of 7) sorted by relevance
/external/llvm-project/llvm/lib/Target/AArch64/ |
D | AArch64InstrInfo.h | 144 bool shouldClusterMemOps(ArrayRef<const MachineOperand *> BaseOps1,
|
D | AArch64InstrInfo.cpp | 2628 ArrayRef<const MachineOperand *> BaseOps1, in shouldClusterMemOps() argument 2631 assert(BaseOps1.size() == 1 && BaseOps2.size() == 1); in shouldClusterMemOps() 2632 const MachineOperand &BaseOp1 = *BaseOps1.front(); in shouldClusterMemOps()
|
/external/llvm-project/llvm/lib/Target/AMDGPU/ |
D | SIInstrInfo.cpp | 442 ArrayRef<const MachineOperand *> BaseOps1, in memOpsHaveSameBasePtr() argument 448 if (BaseOps1.front()->isIdenticalTo(*BaseOps2.front())) in memOpsHaveSameBasePtr() 472 bool SIInstrInfo::shouldClusterMemOps(ArrayRef<const MachineOperand *> BaseOps1, in shouldClusterMemOps() argument 478 assert(!BaseOps1.empty() && !BaseOps2.empty()); in shouldClusterMemOps() 479 const MachineInstr &FirstLdSt = *BaseOps1.front()->getParent(); in shouldClusterMemOps() 481 if (!memOpsHaveSameBasePtr(FirstLdSt, BaseOps1, SecondLdSt, BaseOps2)) in shouldClusterMemOps() 2890 memOpsHaveSameBaseOperands(ArrayRef<const MachineOperand *> BaseOps1, in memOpsHaveSameBaseOperands() argument 2892 if (BaseOps1.size() != BaseOps2.size()) in memOpsHaveSameBaseOperands() 2894 for (size_t I = 0, E = BaseOps1.size(); I < E; ++I) { in memOpsHaveSameBaseOperands() 2895 if (!BaseOps1[I]->isIdenticalTo(*BaseOps2[I])) in memOpsHaveSameBaseOperands() [all …]
|
D | SIInstrInfo.h | 194 bool shouldClusterMemOps(ArrayRef<const MachineOperand *> BaseOps1,
|
/external/llvm-project/llvm/lib/Target/PowerPC/ |
D | PPCInstrInfo.h | 527 bool shouldClusterMemOps(ArrayRef<const MachineOperand *> BaseOps1,
|
D | PPCInstrInfo.cpp | 2345 ArrayRef<const MachineOperand *> BaseOps1, in shouldClusterMemOps() argument 2349 assert(BaseOps1.size() == 1 && BaseOps2.size() == 1); in shouldClusterMemOps() 2350 const MachineOperand &BaseOp1 = *BaseOps1.front(); in shouldClusterMemOps()
|
/external/llvm-project/llvm/include/llvm/CodeGen/ |
D | TargetInstrInfo.h | 1329 virtual bool shouldClusterMemOps(ArrayRef<const MachineOperand *> BaseOps1, in shouldClusterMemOps() argument
|