/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | MergeFunctions.cpp | 329 int Res1 = FunctionComparator(F1, F2, &GlobalNumbers).compare(); in doFunctionalCheck() local 333 if (Res1 != -Res2) { in doFunctionalCheck() 340 if (Res1 == 0) in doFunctionalCheck() 355 if (Res1 != 0 && Res1 == Res4) { in doFunctionalCheck() 357 Transitive = Res3 == Res1; in doFunctionalCheck() 360 Transitive = Res3 == Res1; in doFunctionalCheck() 363 Transitive = Res4 == -Res1; in doFunctionalCheck() 369 dbgs() << "Res1, Res3, Res4: " << Res1 << ", " << Res3 << ", " in doFunctionalCheck()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | CFG.cpp | 1183 TryResult Res1, Res2; in checkIncorrectLogicOperator() local 1184 Res1 = analyzeLogicOperatorCondition(BO1, Value, L1); in checkIncorrectLogicOperator() 1187 if (!Res1.isKnown() || !Res2.isKnown()) in checkIncorrectLogicOperator() 1191 AlwaysTrue &= (Res1.isTrue() && Res2.isTrue()); in checkIncorrectLogicOperator() 1192 AlwaysFalse &= !(Res1.isTrue() && Res2.isTrue()); in checkIncorrectLogicOperator() 1194 AlwaysTrue &= (Res1.isTrue() || Res2.isTrue()); in checkIncorrectLogicOperator() 1195 AlwaysFalse &= !(Res1.isTrue() || Res2.isTrue()); in checkIncorrectLogicOperator() 1198 LHSAlwaysTrue &= Res1.isTrue(); in checkIncorrectLogicOperator() 1199 LHSAlwaysFalse &= Res1.isFalse(); in checkIncorrectLogicOperator()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPULibCalls.cpp | 87 bool evaluateScalarMathFunc(const FuncInfo &FInfo, double &Res0, double &Res1, 1461 double &Res1, Constant *copr0, in evaluateScalarMathFunc() argument 1618 Res1 = cos(opr0); in evaluateScalarMathFunc()
|
H A D | AMDGPULegalizerInfo.cpp | 5109 Register Res1 = MI.getOperand(1).getReg(); in legalizeFFREXP() local 5134 B.buildSExtOrTrunc(Res1, Exp); in legalizeFFREXP()
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCDwarf.cpp | 130 const MCExpr *Res1 = MCBinaryExpr::create(MCBinaryExpr::Sub, Res, RHS, Ctx); in makeEndMinusStartExpr() local 132 const MCExpr *Res3 = MCBinaryExpr::create(MCBinaryExpr::Sub, Res1, Res2, Ctx); in makeEndMinusStartExpr()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOpenMP.cpp | 23679 ExprResult Res1 = SemaRef.CreateBuiltinBinOp( in ActOnOMPIteratorExpr() local 23681 if (!Res1.isUsable()) { in ActOnOMPIteratorExpr() 23686 Res1 = SemaRef.CreateBuiltinBinOp(D.AssignmentLoc, BO_Add, Res1.get(), in ActOnOMPIteratorExpr() 23688 if (!Res1.isUsable()) { in ActOnOMPIteratorExpr() 23693 Res1 = SemaRef.CreateBuiltinBinOp( in ActOnOMPIteratorExpr() 23694 D.AssignmentLoc, BO_Sub, Res1.get(), in ActOnOMPIteratorExpr() 23696 if (!Res1.isUsable()) { in ActOnOMPIteratorExpr() 23701 Res1 = SemaRef.CreateBuiltinBinOp(D.AssignmentLoc, BO_Div, Res1.get(), in ActOnOMPIteratorExpr() 23703 if (!Res1.isUsable()) { in ActOnOMPIteratorExpr() 23716 CmpRes.get(), Res.get(), Res1.get()); in ActOnOMPIteratorExpr()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | TargetLowering.h | 4232 SDValue CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo = true);
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64ISelDAGToDAG.cpp | 177 bool SelectRoundingVLShr(SDValue N, SDValue &Res1, SDValue &Res2) { in SelectRoundingVLShr() argument 201 Res1 = Op.getOperand(0); in SelectRoundingVLShr()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | SLPVectorizer.cpp | 10404 std::pair<T *, bool> Res1 = ResizeAction(ShuffleMask.begin()->first, Mask, in performExtractsShuffleAction() local 10412 if (Res1.second) in performExtractsShuffleAction() 10419 Prev = Action(Mask, {Res1.first, Res2.first}); in performExtractsShuffleAction()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMISelLowering.cpp | 10340 SDValue Res1 = DAG.getNode(BaseOpcode, dl, EltVT, Ext2, Ext3, Op->getFlags()); in LowerVecReduce() local 10341 Res = DAG.getNode(BaseOpcode, dl, EltVT, Res0, Res1, Op->getFlags()); in LowerVecReduce() 20735 SDValue Res1 = in LowerDivRem() local 20738 {Res0, Res1}); in LowerDivRem()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | DAGCombiner.cpp | 322 SDValue CombineTo(SDNode *N, SDValue Res0, SDValue Res1, in CombineTo() argument 324 SDValue To[] = { Res0, Res1 }; in CombineTo() 920 CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) { in CombineTo() argument 921 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo); in CombineTo()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 55383 SDValue Res1 = DAG.getNode( in combineADC() local 55388 return DCI.CombineTo(N, Res1, CarryOut); in combineADC()
|