HomeSort by: relevance | last modified time | path
    Searched refs:findCommutedOpIndices (Results 1 - 19 of 19) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsInstrInfo.h 155 bool findCommutedOpIndices(const MachineInstr &MI, unsigned &SrcOpIdx1,
MipsInstrInfo.cpp 681 bool MipsInstrInfo::findCommutedOpIndices(const MachineInstr &MI,
685 "TargetInstrInfo::findCommutedOpIndices() can't handle bundles");
706 return TargetInstrInfo::findCommutedOpIndices(MI, SrcOpIdx1, SrcOpIdx2);
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVInstrInfo.h 140 bool findCommutedOpIndices(const MachineInstr &MI, unsigned &SrcOpIdx1,
RISCVInstrInfo.cpp 1153 bool RISCVInstrInfo::findCommutedOpIndices(const MachineInstr &MI,
1246 return TargetInstrInfo::findCommutedOpIndices(MI, SrcOpIdx1, SrcOpIdx2);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetInstrInfo.cpp 178 assert(findCommutedOpIndices(MI, CommutableOpIdx1, CommutableOpIdx2) &&
254 // any commutable operand, which is done in findCommutedOpIndices() method
257 !findCommutedOpIndices(MI, OpIdx1, OpIdx2)) {
296 bool TargetInstrInfo::findCommutedOpIndices(const MachineInstr &MI,
300 "TargetInstrInfo::findCommutedOpIndices() can't handle bundles");
PeepholeOptimizer.cpp 1536 if (TII->findCommutedOpIndices(MI, Idx, CommIdx) && CommIdx == TiedUseIdx) {
TwoAddressInstructionPass.cpp 1073 // The call of findCommutedOpIndices below only checks if BaseOpIdx
1078 !TII->findCommutedOpIndices(*MI, BaseOpIdx, OtherOpIdx))
RegisterCoalescer.cpp 843 // the findCommutedOpIndices() method.
850 if (!TII->findCommutedOpIndices(*DefMI, UseOpIdx, NewDstIdx))
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86InstrInfo.h 281 /// findCommutedOpIndices(MI, Op1, Op2);
284 bool findCommutedOpIndices(const MachineInstr &MI, unsigned &SrcOpIdx1,
X86InstrInfo.cpp 2462 bool X86InstrInfo::findCommutedOpIndices(const MachineInstr &MI,
2523 return TargetInstrInfo::findCommutedOpIndices(MI, SrcOpIdx1, SrcOpIdx2);
2528 return TargetInstrInfo::findCommutedOpIndices(MI, SrcOpIdx1, SrcOpIdx2);
2537 return TargetInstrInfo::findCommutedOpIndices(MI, SrcOpIdx1, SrcOpIdx2);
2668 return TargetInstrInfo::findCommutedOpIndices(MI, SrcOpIdx1, SrcOpIdx2);
5630 if (findCommutedOpIndices(MI, CommuteOpIdx1, CommuteOpIdx2)) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCInstrInfo.h 403 bool findCommutedOpIndices(const MachineInstr &MI, unsigned &SrcOpIdx1,
PPCInstrInfo.cpp 1226 bool PPCInstrInfo::findCommutedOpIndices(const MachineInstr &MI,
1235 return TargetInstrInfo::findCommutedOpIndices(MI, SrcOpIdx1, SrcOpIdx2);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIInstrInfo.h 262 bool findCommutedOpIndices(const MachineInstr &MI, unsigned &SrcOpIdx1,
265 bool findCommutedOpIndices(MCInstrDesc Desc, unsigned & SrcOpIdx0,
SIFoldOperands.cpp 391 bool CanCommute = TII->findCommutedOpIndices(*MI, CommuteIdx0, CommuteIdx1);
SIInstrInfo.cpp 2083 "inconsistency with findCommutedOpIndices");
2121 bool SIInstrInfo::findCommutedOpIndices(const MachineInstr &MI,
2124 return findCommutedOpIndices(MI.getDesc(), SrcOpIdx0, SrcOpIdx1);
2127 bool SIInstrInfo::findCommutedOpIndices(MCInstrDesc Desc, unsigned &SrcOpIdx0,
AMDGPUISelDAGToDAG.cpp 2962 if (SII->findCommutedOpIndices(Desc, OpIdx, CommuteIdx1)) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TargetInstrInfo.h 415 // the method findCommutedOpIndices() to tell the method that the
455 /// findCommutedOpIndices(MI, Op1, Op2);
458 virtual bool findCommutedOpIndices(const MachineInstr &MI,
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
Thumb2SizeReduction.cpp 779 if (!TII->findCommutedOpIndices(*MI, CommOpIdx1, CommOpIdx2) ||
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyRegStackify.cpp 778 if (TII->findCommutedOpIndices(*Insert, Operand0, Operand1)) {

Completed in 107 milliseconds