Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetInstrInfo.cpp177 unsigned CommutableOpIdx1 = Idx1; (void)CommutableOpIdx1; in commuteInstructionImpl() local
179 assert(findCommutedOpIndices(MI, CommutableOpIdx1, CommutableOpIdx2) && in commuteInstructionImpl()
180 CommutableOpIdx1 == Idx1 && CommutableOpIdx2 == Idx2 && in commuteInstructionImpl()
266 unsigned CommutableOpIdx1, in fixCommutedOpIndices() argument
270 ResultIdx1 = CommutableOpIdx1; in fixCommutedOpIndices()
273 if (ResultIdx2 == CommutableOpIdx1) in fixCommutedOpIndices()
276 ResultIdx1 = CommutableOpIdx1; in fixCommutedOpIndices()
280 if (ResultIdx1 == CommutableOpIdx1) in fixCommutedOpIndices()
283 ResultIdx2 = CommutableOpIdx1; in fixCommutedOpIndices()
289 return (ResultIdx1 == CommutableOpIdx1 && ResultIdx2 == CommutableOpIdx2) || in fixCommutedOpIndices()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfo.cpp3199 unsigned CommutableOpIdx1 = 1; in findCommutedOpIndices()
3201 if (!fixCommutedOpIndices(SrcOpIdx1, SrcOpIdx2, CommutableOpIdx1, in findCommutedOpIndices()
3238 unsigned CommutableOpIdx1 = SrcOpIdx1; in findCommutedOpIndices()
3242 CommutableOpIdx1 = 1; in findCommutedOpIndices()
3245 CommutableOpIdx1 = SrcOpIdx2; in findCommutedOpIndices()
3248 // CommutableOpIdx1 is well defined now. Let's choose another commutable in findCommutedOpIndices()
3251 if (CommutableOpIdx1 != 1) { in findCommutedOpIndices()
3255 Register Op1Reg = MI.getOperand(CommutableOpIdx1).getReg(); in findCommutedOpIndices()
3268 if (!fixCommutedOpIndices(SrcOpIdx1, SrcOpIdx2, CommutableOpIdx1, in findCommutedOpIndices()
3192 unsigned CommutableOpIdx1 = 1; findCommutedOpIndices() local
3231 unsigned CommutableOpIdx1 = SrcOpIdx1; findCommutedOpIndices() local
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp2788 unsigned CommutableOpIdx1; in findThreeSrcCommutedOpIndices() local
2789 for (CommutableOpIdx1 = LastCommutableVecOp; in findThreeSrcCommutedOpIndices()
2790 CommutableOpIdx1 >= FirstCommutableVecOp; CommutableOpIdx1--) { in findThreeSrcCommutedOpIndices()
2792 if (CommutableOpIdx1 == KMaskOp) in findThreeSrcCommutedOpIndices()
2798 if (Op2Reg != MI.getOperand(CommutableOpIdx1).getReg()) in findThreeSrcCommutedOpIndices()
2803 if (CommutableOpIdx1 < FirstCommutableVecOp) in findThreeSrcCommutedOpIndices()
2808 if (!fixCommutedOpIndices(SrcOpIdx1, SrcOpIdx2, CommutableOpIdx1, in findThreeSrcCommutedOpIndices()
3008 unsigned CommutableOpIdx1 = 2; in findCommutedOpIndices() local
3012 ++CommutableOpIdx1; in findCommutedOpIndices()
3015 if (!fixCommutedOpIndices(SrcOpIdx1, SrcOpIdx2, CommutableOpIdx1, in findCommutedOpIndices()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetInstrInfo.h200 unsigned CommutableOpIdx1,