| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | InstructionCost.h | 254 InstructionCost LHS2(LHS); 255 LHS2 += RHS; 256 return LHS2; 261 InstructionCost LHS2(LHS); 262 LHS2 -= RHS; 263 return LHS2; 268 InstructionCost LHS2(LHS); 269 LHS2 *= RHS; 270 return LHS2; 276 LHS2 /= RHS; [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineSelect.cpp | 3577 Value *LHS2, *RHS2; in visitSelectInst() local 3578 if (SelectPatternFlavor SPF2 = matchSelectPattern(LHS, LHS2, RHS2).Flavor) in visitSelectInst() 3579 if (Instruction *R = foldSPFofSPF(cast<Instruction>(LHS), SPF2, LHS2, in visitSelectInst() 3582 if (SelectPatternFlavor SPF2 = matchSelectPattern(RHS, LHS2, RHS2).Flavor) in visitSelectInst() 3583 if (Instruction *R = foldSPFofSPF(cast<Instruction>(RHS), SPF2, LHS2, in visitSelectInst()
|
| H A D | InstCombineCompares.cpp | 3083 Value *LHS2, *RHS2; in matchThreeWayIntCompare() local 3084 if (!match(UnequalVal, m_Select(m_ICmp(PredB, m_Value(LHS2), m_Value(RHS2)), in matchThreeWayIntCompare() 3089 if (LHS2 != LHS) { in matchThreeWayIntCompare() 3091 std::swap(LHS2, RHS2); in matchThreeWayIntCompare() 3094 if (LHS2 != LHS) in matchThreeWayIntCompare()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LICM.cpp | 2428 Value *LHS1, *LHS2, *RHS1, *RHS2; in hoistMinMax() local 2430 !MatchICmpAgainstInvariant(Cond2, P2, LHS2, RHS2)) in hoistMinMax() 2432 if (P1 != P2 || LHS1 != LHS2) in hoistMinMax()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AVR/ |
| H A D | AVRISelLowering.cpp | 831 SDValue LHS2 = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i16, LHS_1, in getAVRCmp() local 858 Cmp = DAG.getNode(AVRISD::CMPC, DL, MVT::Glue, LHS2, RHS2, Cmp); in getAVRCmp()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ValueTracking.cpp | 3199 const Value *LHS2 = nullptr, *RHS2 = nullptr; in isSignedMinMaxClamp() local 3200 SelectPatternFlavor SPF2 = matchSelectPattern(LHS, LHS2, RHS2).Flavor; in isSignedMinMaxClamp() 3210 In = LHS2; in isSignedMinMaxClamp()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMISelLowering.cpp | 5678 SDValue LHS1, LHS2; in OptimizeVFPBrcond() local 5680 expandf64Toi32(LHS, DAG, LHS1, LHS2); in OptimizeVFPBrcond() 5682 LHS2 = DAG.getNode(ISD::AND, dl, MVT::i32, LHS2, Mask); in OptimizeVFPBrcond() 5687 SDValue Ops[] = { Chain, ARMcc, LHS1, LHS2, RHS1, RHS2, Dest }; in OptimizeVFPBrcond() 12217 Register LHS2 = MI.getOperand(2).getReg(); in EmitInstrWithCustomInserter() local 12224 .addReg(LHS2).addImm(0) in EmitInstrWithCustomInserter() 12234 .addReg(LHS2).addReg(RHS2) in EmitInstrWithCustomInserter()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVISelLowering.cpp | 7038 SDValue LHS2 = Val.getOperand(0); in matchSetCC() local 7042 if (LHS == LHS2 && RHS == RHS2) { in matchSetCC() 7045 if (CC == ISD::getSetCCInverse(CC2, LHS2.getValueType())) in matchSetCC() 7047 } else if (LHS == RHS2 && RHS == LHS2) { in matchSetCC() 7051 if (CC == ISD::getSetCCInverse(CC2, LHS2.getValueType())) in matchSetCC()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 22935 SDValue LHS1, LHS2; in splitIntVSETCC() local 22936 std::tie(LHS1, LHS2) = splitVector(LHS, DAG, dl); in splitIntVSETCC() 22947 DAG.getNode(ISD::SETCC, dl, HiVT, LHS2, RHS2, CC)); in splitIntVSETCC()
|