| /llvm-project-15.0.7/compiler-rt/lib/ubsan/ |
| H A D | ubsan_diag.cpp | 291 if (InRange && InRange->getEnd().getMemoryLocation() == P) in PrintMemorySnippet() 292 InRange = upperBound(P, Ranges, NumRanges); in PrintMemorySnippet() 293 if (!InRange && P > Loc) in PrintMemorySnippet() 295 if (InRange && InRange->getStart().getMemoryLocation() < P) in PrintMemorySnippet() 297 if (InRange && InRange->getStart().getMemoryLocation() <= P) in PrintMemorySnippet() 308 InRange = 0; in PrintMemorySnippet() 311 if (!InRange || InRange->getEnd().getMemoryLocation() == P) in PrintMemorySnippet() 312 InRange = upperBound(P, Ranges, NumRanges); in PrintMemorySnippet() 313 if (!InRange) in PrintMemorySnippet() 318 if (InRange && InRange->getStart().getMemoryLocation() == P) { in PrintMemorySnippet() [all …]
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/ |
| H A D | SimpleConstraintManager.cpp | 96 const llvm::APSInt &To, bool InRange) { in assumeInclusiveRangeInternal() argument 106 return assumeSymInclusiveRange(State, Sym, From, To, InRange); in assumeInclusiveRangeInternal() 117 return assumeSymInclusiveRange(State, Sym, From, To, InRange); in assumeInclusiveRangeInternal() 124 bool isFeasible = (IsInRange == InRange); in assumeInclusiveRangeInternal()
|
| H A D | RangedConstraintManager.cpp | 103 const llvm::APSInt &To, bool InRange) { in assumeSymInclusiveRange() argument 125 if (InRange) in assumeSymInclusiveRange()
|
| /llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/ |
| H A D | release.h | 154 if (!InRange) { in processNextPage() 156 InRange = true; in processNextPage() 173 if (InRange) { in closeOpenedRange() 176 InRange = false; in closeOpenedRange() 182 bool InRange = false; variable
|
| /llvm-project-15.0.7/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | SimpleConstraintManager.h | 55 bool InRange) = 0; 76 bool InRange) override;
|
| H A D | SMTConv.h | 531 const llvm::APSInt &From, const llvm::APSInt &To, bool InRange) { in getRangeExpr() argument 545 return getBinExpr(Solver, Ctx, Exp, SymTy, InRange ? BO_EQ : BO_NE, in getRangeExpr() 557 getBinExpr(Solver, Ctx, Exp, SymTy, InRange ? BO_GE : BO_LT, FromExp, in getRangeExpr() 560 InRange ? BO_LE : BO_GT, ToExp, ToTy, in getRangeExpr() 563 return fromBinOp(Solver, LHS, InRange ? BO_LAnd : BO_LOr, RHS, in getRangeExpr()
|
| H A D | SMTConstraintManager.h | 66 bool InRange) override { in REGISTER_TRAIT_WITH_PROGRAMSTATE() 69 State, Sym, SMTConv::getRangeExpr(Solver, Ctx, Sym, From, To, InRange)); in REGISTER_TRAIT_WITH_PROGRAMSTATE()
|
| H A D | RangedConstraintManager.h | 424 bool InRange) override;
|
| /llvm-project-15.0.7/lldb/source/Plugins/Trace/intel-pt/ |
| H A D | TraceCursorIntelPT.cpp | 37 if (!m_tsc_range || m_pos < 0 || !m_tsc_range->InRange(m_pos)) { in ClearTimingRangesIfInvalid() 45 !m_nanoseconds_range->InRange(m_pos)) { in ClearTimingRangesIfInvalid()
|
| H A D | DecodedThread.h | 97 bool InRange(uint64_t item_index) const; 137 bool InRange(uint64_t item_index) const;
|
| H A D | DecodedThread.cpp | 47 bool DecodedThread::TSCRange::InRange(uint64_t item_index) const { in InRange() function in DecodedThread::TSCRange 52 bool DecodedThread::NanosecondsRange::InRange(uint64_t item_index) const { in InRange() function in DecodedThread::NanosecondsRange
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | ThreadPlanStepRange.cpp | 101 bool ThreadPlanStepRange::InRange() { in InRange() function in ThreadPlanStepRange 448 if (InRange()) { in MischiefManaged() 481 if (!InRange()) { in IsPlanStale()
|
| H A D | ThreadPlanStepOverRange.cpp | 193 if (InRange()) { in ShouldStop()
|
| H A D | ThreadPlanStepInRange.cpp | 204 if (InRange()) { in ShouldStop()
|
| /llvm-project-15.0.7/lldb/include/lldb/Target/ |
| H A D | ThreadPlanStepRange.h | 44 bool InRange();
|
| /llvm-project-15.0.7/libc/test/src/math/ |
| H A D | LogbTest.h | 94 TEST_F(LlvmLibcLogbTest, InRange) { testRange(&func); }
|
| H A D | FrexpTest.h | 118 TEST_F(LlvmLibcFrexpTest, InRange) { testRange(&func); }
|
| /llvm-project-15.0.7/llvm/lib/Target/Mips/ |
| H A D | MicroMipsSizeReduction.cpp | 327 static bool InRange(int64_t Value, unsigned short Shift, int LBound, in InRange() function 344 if (!InRange(offset, Entry.Shift(), Entry.LBound(), Entry.HBound())) in ImmInRange()
|
| /llvm-project-15.0.7/llvm/lib/IR/ |
| H A D | ConstantFold.cpp | 2178 bool InRange = true; in ConstantFoldGetElementPtr() local 2181 InRange &= isIndexInRangeOfArrayType(STy->getNumElements(), CI); in ConstantFoldGetElementPtr() 2187 if (InRange || Unknown) in ConstantFoldGetElementPtr()
|
| /llvm-project-15.0.7/clang/lib/AST/Interp/ |
| H A D | Interp.h | 266 bool InRange(InterpState &S, CodePtr OpPC) { in InRange() function
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaChecking.cpp | 12558 InRange = InRangeFlag, enumerator 12573 if (Value >= PromotedMin) return InRange; in compare() 12574 if (Value <= PromotedMax) return InRange; in compare() 12583 case -1: return InRange; in compare() 12736 bool InRange = Cmp & PromotedRange::InRangeFlag; in CheckTautologicalComparison() local 12737 if (InRange && IsEnumConstOrFromMacro(S, Constant)) in CheckTautologicalComparison() 12742 if (Other->refersToBitField() && InRange && Value == 0 && in CheckTautologicalComparison() 12782 if (!InRange || Other->isKnownToHaveBooleanValue()) { in CheckTautologicalComparison() 12786 S.PDiag(!InRange ? diag::warn_out_of_range_compare in CheckTautologicalComparison()
|