Home
last modified time | relevance | path

Searched refs:BO_LE (Results 1 – 21 of 21) sorted by relevance

/NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
HDSimpleSValBuilder.cpp317 case BO_LE: in evalBinOpNN()
398 case BO_LE: in evalBinOpNN()
463 case BO_LE: in evalBinOpNN()
571 bool leftFirst = (op == BO_LT || op == BO_LE); in evalBinOpFieldRegionFieldRegion()
604 case BO_LE: in evalBinOpLL()
627 case BO_LE: in evalBinOpLL()
683 case BO_LE: in evalBinOpLL()
833 case BO_LE: in evalBinOpLL()
HDSimpleConstraintManager.cpp260 case BO_LE: in assumeSymRel()
HDBasicValueFactory.cpp214 case BO_LE: in evalAPSInt()
HDBugReporterVisitors.cpp1368 case BO_LE: Op = BO_GE; break; in VisitTrueTest()
1369 case BO_GE: Op = BO_LE; break; in VisitTrueTest()
1377 case BO_GT: Op = BO_LE; break; in VisitTrueTest()
1378 case BO_LE: Op = BO_GT; break; in VisitTrueTest()
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDOperationKinds.h313 BO_LT, BO_GT, BO_LE, BO_GE, // [C99 6.5.8] Relational operators. enumerator
HDStmtVisitor.h58 case BO_LE: DISPATCH(BinLE, BinaryOperator); in Visit()
HDExpr.h3015 case BO_GT: return BO_LE; in negateComparisonOp()
3016 case BO_LE: return BO_GT; in negateComparisonOp()
3029 case BO_LE: return BO_GE; in reverseComparisonOp()
3030 case BO_GE: return BO_LE; in reverseComparisonOp()
/NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
HDBoolAssignmentChecker.cpp122 svalBuilder.evalBinOp(state, BO_LE, *DV, OneVal, in checkBind()
HDCStringChecker.cpp687 SVal evalLength = svalBuilder.evalBinOpNN(state, BO_LE, *strLn, in getCStringLengthForRegion()
1244 state, BO_LE, resultNL, *strLengthNL, cmpTy) in evalstrLengthCommon()
1250 state, BO_LE, resultNL, *maxlenValNL, cmpTy) in evalstrLengthCommon()
1469 SVal copiedLessThanBound = svalBuilder.evalBinOpNN(state, BO_LE, in evalStrcpyCommon()
1481 SVal copiedLessThanSrc = svalBuilder.evalBinOpNN(state, BO_LE, in evalStrcpyCommon()
HDIdenticalExprChecker.cpp240 if (((Op == BO_EQ) || (Op == BO_LE) || (Op == BO_GE))) in checkComparisonOp()
/NextBSD/contrib/llvm/tools/clang/lib/Analysis/
HDCFG.cpp672 case BO_LE: in analyzeLogicOperatorCondition()
706 BO1 = BO_LE; in checkIncorrectLogicOperator()
709 else if (BO1 == BO_LE) in checkIncorrectLogicOperator()
727 BO2 = BO_LE; in checkIncorrectLogicOperator()
730 else if (BO2 == BO_LE) in checkIncorrectLogicOperator()
HDThreadSafetyCommon.cpp520 case BO_LE: return translateBinOp(til::BOP_Leq, BO, Ctx); in translateBinaryOperator()
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDCGStmtOpenMP.cpp1241 BinaryOperator Cond(&IVRefExpr, &UBRefExpr, BO_LE, C.BoolTy, VK_RValue, in EmitSections()
1824 case BO_LE: in emitOMPAtomicRMW()
HDCGExprScalar.cpp2903 case BO_LE: in EmitCompare()
3566 case BO_LE: in EmitCompoundAssignmentLValue()
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDExpr.cpp141 case BO_LE: in isKnownToHaveBooleanValue()
1794 case BO_LE: return "<="; in getOpcodeStr()
1849 case OO_LessEqual: return BO_LE; in getOverloadedOpcode()
HDStmtProfile.cpp959 BinaryOp = BO_LE; in DecodeOperatorCall()
HDExprConstant.cpp1734 case BO_LE: Result = LHS <= RHS; return true; in handleIntIntBinOp()
6930 case BO_LE: in VisitBinaryOperator()
7151 case BO_LE: return Success(CompareLHS <= CompareRHS, E); in VisitBinaryOperator()
7204 return Success(Opcode == BO_EQ || Opcode == BO_LE || Opcode == BO_GE, E); in VisitBinaryOperator()
8890 case BO_LE: in CheckICE()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaOpenMP.cpp2471 (BO->getOpcode() == BO_LT || BO->getOpcode() == BO_LE), in CheckCond()
2790 S, DefaultLoc, TestIsLessOp ? (TestIsStrictOp ? BO_LT : BO_LE) in BuildPreCond()
3316 ? SemaRef.BuildBinOp(CurScope, CondLoc, BO_LE, IV.get(), UB.get()) in CheckOpenMPLoop()
6153 case BO_LE: in ActOnOpenMPReductionClause()
HDSemaChecking.cpp6096 case BO_LE: in GetExprRange()
6346 } else if (op == BO_LE && IsZero(S, E->getLHS())) { in CheckTrivialUnsignedComparison()
6456 if (op == BO_LT || op == BO_LE) in DiagnoseOutOfRangeComparison()
6515 case BO_LE: in DiagnoseOutOfRangeComparison()
HDSemaExpr.cpp8481 || Opc == BO_LE in CheckCompareOperands()
9940 case tok::lessequal: Opc = BO_LE; break; in ConvertTokenKindToBinaryOpcode()
10161 case BO_LE: in CreateBuiltinBinOp()
/NextBSD/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
HDRewriteObjC.cpp3011 new (Context) BinaryOperator(sizeofExpr, limit, BO_LE, Context->IntTy, in SynthMessageExpr()