| /llvm-project-15.0.7/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 …]
|
| /llvm-project-15.0.7/llvm/unittests/Analysis/ |
| H A D | ValueTrackingTest.cpp | 1769 auto *LHS2 = findInstructionByNameOrNull(F, "LHS2"); in TEST_F() local 1771 EXPECT_TRUE(haveNoCommonBitsSet(LHS2, RHS2, DL)); in TEST_F() 1772 EXPECT_TRUE(haveNoCommonBitsSet(RHS2, LHS2, DL)); in TEST_F() 1797 auto *LHS2 = findInstructionByNameOrNull(F, "LHS2"); in TEST_F() local 1799 EXPECT_TRUE(haveNoCommonBitsSet(LHS2, RHS2, DL)); in TEST_F() 1800 EXPECT_TRUE(haveNoCommonBitsSet(RHS2, LHS2, DL)); in TEST_F()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineSelect.cpp | 2954 Value *LHS2, *RHS2; in visitSelectInst() local 2955 if (SelectPatternFlavor SPF2 = matchSelectPattern(LHS, LHS2, RHS2).Flavor) in visitSelectInst() 2956 if (Instruction *R = foldSPFofSPF(cast<Instruction>(LHS), SPF2, LHS2, in visitSelectInst() 2959 if (SelectPatternFlavor SPF2 = matchSelectPattern(RHS, LHS2, RHS2).Flavor) in visitSelectInst() 2960 if (Instruction *R = foldSPFofSPF(cast<Instruction>(RHS), SPF2, LHS2, in visitSelectInst()
|
| H A D | InstCombineCompares.cpp | 2885 Value *LHS2, *RHS2; in matchThreeWayIntCompare() local 2886 if (!match(UnequalVal, m_Select(m_ICmp(PredB, m_Value(LHS2), m_Value(RHS2)), in matchThreeWayIntCompare() 2891 if (LHS2 != LHS) { in matchThreeWayIntCompare() 2893 std::swap(LHS2, RHS2); in matchThreeWayIntCompare() 2896 if (LHS2 != LHS) in matchThreeWayIntCompare()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AArch64/ |
| H A D | cond-sel.ll | 151 ; CHECK: cmp [[LHS2:w[0-9]+]], [[RHS2:w[0-9]+]]
|
| /llvm-project-15.0.7/llvm/lib/Target/AVR/ |
| H A D | AVRISelLowering.cpp | 722 SDValue LHS2 = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i16, LHS_1, in getAVRCmp() local 749 Cmp = DAG.getNode(AVRISD::CMPC, DL, MVT::Glue, LHS2, RHS2, Cmp); in getAVRCmp()
|
| /llvm-project-15.0.7/llvm/lib/Analysis/ |
| H A D | ValueTracking.cpp | 2986 const Value *LHS2 = nullptr, *RHS2 = nullptr; in isSignedMinMaxClamp() local 2987 SelectPatternFlavor SPF2 = matchSelectPattern(LHS, LHS2, RHS2).Flavor; in isSignedMinMaxClamp() 2997 In = LHS2; in isSignedMinMaxClamp()
|
| /llvm-project-15.0.7/llvm/lib/Target/ARM/ |
| H A D | ARMISelLowering.cpp | 5638 SDValue LHS1, LHS2; in OptimizeVFPBrcond() local 5640 expandf64Toi32(LHS, DAG, LHS1, LHS2); in OptimizeVFPBrcond() 5642 LHS2 = DAG.getNode(ISD::AND, dl, MVT::i32, LHS2, Mask); in OptimizeVFPBrcond() 5647 SDValue Ops[] = { Chain, ARMcc, LHS1, LHS2, RHS1, RHS2, Dest }; in OptimizeVFPBrcond() 11994 Register LHS2 = MI.getOperand(2).getReg(); in EmitInstrWithCustomInserter() local 12001 .addReg(LHS2).addImm(0) in EmitInstrWithCustomInserter() 12011 .addReg(LHS2).addReg(RHS2) in EmitInstrWithCustomInserter()
|
| /llvm-project-15.0.7/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 24147 SDValue LHS1, LHS2; in splitIntVSETCC() local 24148 std::tie(LHS1, LHS2) = splitVector(LHS, DAG, dl); in splitIntVSETCC() 24159 DAG.getNode(ISD::SETCC, dl, HiVT, LHS2, RHS2, CC)); in splitIntVSETCC()
|