1 //== RangeConstraintManager.cpp - Manage range constraints.------*- C++ -*--==// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file defines RangeConstraintManager, a class that tracks simple 11 // equality and inequality constraints on symbolic values of ProgramState. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #include "RangedConstraintManager.h" 16 #include "clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h" 17 #include "clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h" 18 #include "clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h" 19 #include "llvm/ADT/FoldingSet.h" 20 #include "llvm/ADT/ImmutableSet.h" 21 #include "llvm/Support/raw_ostream.h" 22 23 using namespace clang; 24 using namespace ento; 25 26 /// A Range represents the closed range [from, to]. The caller must 27 /// guarantee that from <= to. Note that Range is immutable, so as not 28 /// to subvert RangeSet's immutability. 29 namespace { 30 class Range : public std::pair<const llvm::APSInt *, const llvm::APSInt *> { 31 public: 32 Range(const llvm::APSInt &from, const llvm::APSInt &to) 33 : std::pair<const llvm::APSInt *, const llvm::APSInt *>(&from, &to) { 34 assert(from <= to); 35 } 36 bool Includes(const llvm::APSInt &v) const { 37 return *first <= v && v <= *second; 38 } 39 const llvm::APSInt &From() const { return *first; } 40 const llvm::APSInt &To() const { return *second; } 41 const llvm::APSInt *getConcreteValue() const { 42 return &From() == &To() ? &From() : nullptr; 43 } 44 45 void Profile(llvm::FoldingSetNodeID &ID) const { 46 ID.AddPointer(&From()); 47 ID.AddPointer(&To()); 48 } 49 }; 50 51 class RangeTrait : public llvm::ImutContainerInfo<Range> { 52 public: 53 // When comparing if one Range is less than another, we should compare 54 // the actual APSInt values instead of their pointers. This keeps the order 55 // consistent (instead of comparing by pointer values) and can potentially 56 // be used to speed up some of the operations in RangeSet. 57 static inline bool isLess(key_type_ref lhs, key_type_ref rhs) { 58 return *lhs.first < *rhs.first || 59 (!(*rhs.first < *lhs.first) && *lhs.second < *rhs.second); 60 } 61 }; 62 63 /// RangeSet contains a set of ranges. If the set is empty, then 64 /// there the value of a symbol is overly constrained and there are no 65 /// possible values for that symbol. 66 class RangeSet { 67 typedef llvm::ImmutableSet<Range, RangeTrait> PrimRangeSet; 68 PrimRangeSet ranges; // no need to make const, since it is an 69 // ImmutableSet - this allows default operator= 70 // to work. 71 public: 72 typedef PrimRangeSet::Factory Factory; 73 typedef PrimRangeSet::iterator iterator; 74 75 RangeSet(PrimRangeSet RS) : ranges(RS) {} 76 77 /// Create a new set with all ranges of this set and RS. 78 /// Possible intersections are not checked here. 79 RangeSet addRange(Factory &F, const RangeSet &RS) { 80 PrimRangeSet Ranges(RS.ranges); 81 for (const auto &range : ranges) 82 Ranges = F.add(Ranges, range); 83 return RangeSet(Ranges); 84 } 85 86 iterator begin() const { return ranges.begin(); } 87 iterator end() const { return ranges.end(); } 88 89 bool isEmpty() const { return ranges.isEmpty(); } 90 91 /// Construct a new RangeSet representing '{ [from, to] }'. 92 RangeSet(Factory &F, const llvm::APSInt &from, const llvm::APSInt &to) 93 : ranges(F.add(F.getEmptySet(), Range(from, to))) {} 94 95 /// Profile - Generates a hash profile of this RangeSet for use 96 /// by FoldingSet. 97 void Profile(llvm::FoldingSetNodeID &ID) const { ranges.Profile(ID); } 98 99 /// getConcreteValue - If a symbol is contrained to equal a specific integer 100 /// constant then this method returns that value. Otherwise, it returns 101 /// NULL. 102 const llvm::APSInt *getConcreteValue() const { 103 return ranges.isSingleton() ? ranges.begin()->getConcreteValue() : nullptr; 104 } 105 106 private: 107 void IntersectInRange(BasicValueFactory &BV, Factory &F, 108 const llvm::APSInt &Lower, const llvm::APSInt &Upper, 109 PrimRangeSet &newRanges, PrimRangeSet::iterator &i, 110 PrimRangeSet::iterator &e) const { 111 // There are six cases for each range R in the set: 112 // 1. R is entirely before the intersection range. 113 // 2. R is entirely after the intersection range. 114 // 3. R contains the entire intersection range. 115 // 4. R starts before the intersection range and ends in the middle. 116 // 5. R starts in the middle of the intersection range and ends after it. 117 // 6. R is entirely contained in the intersection range. 118 // These correspond to each of the conditions below. 119 for (/* i = begin(), e = end() */; i != e; ++i) { 120 if (i->To() < Lower) { 121 continue; 122 } 123 if (i->From() > Upper) { 124 break; 125 } 126 127 if (i->Includes(Lower)) { 128 if (i->Includes(Upper)) { 129 newRanges = 130 F.add(newRanges, Range(BV.getValue(Lower), BV.getValue(Upper))); 131 break; 132 } else 133 newRanges = F.add(newRanges, Range(BV.getValue(Lower), i->To())); 134 } else { 135 if (i->Includes(Upper)) { 136 newRanges = F.add(newRanges, Range(i->From(), BV.getValue(Upper))); 137 break; 138 } else 139 newRanges = F.add(newRanges, *i); 140 } 141 } 142 } 143 144 const llvm::APSInt &getMinValue() const { 145 assert(!isEmpty()); 146 return ranges.begin()->From(); 147 } 148 149 bool pin(llvm::APSInt &Lower, llvm::APSInt &Upper) const { 150 // This function has nine cases, the cartesian product of range-testing 151 // both the upper and lower bounds against the symbol's type. 152 // Each case requires a different pinning operation. 153 // The function returns false if the described range is entirely outside 154 // the range of values for the associated symbol. 155 APSIntType Type(getMinValue()); 156 APSIntType::RangeTestResultKind LowerTest = Type.testInRange(Lower, true); 157 APSIntType::RangeTestResultKind UpperTest = Type.testInRange(Upper, true); 158 159 switch (LowerTest) { 160 case APSIntType::RTR_Below: 161 switch (UpperTest) { 162 case APSIntType::RTR_Below: 163 // The entire range is outside the symbol's set of possible values. 164 // If this is a conventionally-ordered range, the state is infeasible. 165 if (Lower <= Upper) 166 return false; 167 168 // However, if the range wraps around, it spans all possible values. 169 Lower = Type.getMinValue(); 170 Upper = Type.getMaxValue(); 171 break; 172 case APSIntType::RTR_Within: 173 // The range starts below what's possible but ends within it. Pin. 174 Lower = Type.getMinValue(); 175 Type.apply(Upper); 176 break; 177 case APSIntType::RTR_Above: 178 // The range spans all possible values for the symbol. Pin. 179 Lower = Type.getMinValue(); 180 Upper = Type.getMaxValue(); 181 break; 182 } 183 break; 184 case APSIntType::RTR_Within: 185 switch (UpperTest) { 186 case APSIntType::RTR_Below: 187 // The range wraps around, but all lower values are not possible. 188 Type.apply(Lower); 189 Upper = Type.getMaxValue(); 190 break; 191 case APSIntType::RTR_Within: 192 // The range may or may not wrap around, but both limits are valid. 193 Type.apply(Lower); 194 Type.apply(Upper); 195 break; 196 case APSIntType::RTR_Above: 197 // The range starts within what's possible but ends above it. Pin. 198 Type.apply(Lower); 199 Upper = Type.getMaxValue(); 200 break; 201 } 202 break; 203 case APSIntType::RTR_Above: 204 switch (UpperTest) { 205 case APSIntType::RTR_Below: 206 // The range wraps but is outside the symbol's set of possible values. 207 return false; 208 case APSIntType::RTR_Within: 209 // The range starts above what's possible but ends within it (wrap). 210 Lower = Type.getMinValue(); 211 Type.apply(Upper); 212 break; 213 case APSIntType::RTR_Above: 214 // The entire range is outside the symbol's set of possible values. 215 // If this is a conventionally-ordered range, the state is infeasible. 216 if (Lower <= Upper) 217 return false; 218 219 // However, if the range wraps around, it spans all possible values. 220 Lower = Type.getMinValue(); 221 Upper = Type.getMaxValue(); 222 break; 223 } 224 break; 225 } 226 227 return true; 228 } 229 230 public: 231 // Returns a set containing the values in the receiving set, intersected with 232 // the closed range [Lower, Upper]. Unlike the Range type, this range uses 233 // modular arithmetic, corresponding to the common treatment of C integer 234 // overflow. Thus, if the Lower bound is greater than the Upper bound, the 235 // range is taken to wrap around. This is equivalent to taking the 236 // intersection with the two ranges [Min, Upper] and [Lower, Max], 237 // or, alternatively, /removing/ all integers between Upper and Lower. 238 RangeSet Intersect(BasicValueFactory &BV, Factory &F, llvm::APSInt Lower, 239 llvm::APSInt Upper) const { 240 if (!pin(Lower, Upper)) 241 return F.getEmptySet(); 242 243 PrimRangeSet newRanges = F.getEmptySet(); 244 245 PrimRangeSet::iterator i = begin(), e = end(); 246 if (Lower <= Upper) 247 IntersectInRange(BV, F, Lower, Upper, newRanges, i, e); 248 else { 249 // The order of the next two statements is important! 250 // IntersectInRange() does not reset the iteration state for i and e. 251 // Therefore, the lower range most be handled first. 252 IntersectInRange(BV, F, BV.getMinValue(Upper), Upper, newRanges, i, e); 253 IntersectInRange(BV, F, Lower, BV.getMaxValue(Lower), newRanges, i, e); 254 } 255 256 return newRanges; 257 } 258 259 void print(raw_ostream &os) const { 260 bool isFirst = true; 261 os << "{ "; 262 for (iterator i = begin(), e = end(); i != e; ++i) { 263 if (isFirst) 264 isFirst = false; 265 else 266 os << ", "; 267 268 os << '[' << i->From().toString(10) << ", " << i->To().toString(10) 269 << ']'; 270 } 271 os << " }"; 272 } 273 274 bool operator==(const RangeSet &other) const { 275 return ranges == other.ranges; 276 } 277 }; 278 } // end anonymous namespace 279 280 REGISTER_TRAIT_WITH_PROGRAMSTATE(ConstraintRange, 281 CLANG_ENTO_PROGRAMSTATE_MAP(SymbolRef, 282 RangeSet)) 283 284 namespace { 285 class RangeConstraintManager : public RangedConstraintManager { 286 public: 287 RangeConstraintManager(SubEngine *SE, SValBuilder &SVB) 288 : RangedConstraintManager(SE, SVB) {} 289 290 //===------------------------------------------------------------------===// 291 // Implementation for interface from ConstraintManager. 292 //===------------------------------------------------------------------===// 293 294 bool canReasonAbout(SVal X) const override; 295 296 ConditionTruthVal checkNull(ProgramStateRef State, SymbolRef Sym) override; 297 298 const llvm::APSInt *getSymVal(ProgramStateRef State, 299 SymbolRef Sym) const override; 300 301 ProgramStateRef removeDeadBindings(ProgramStateRef State, 302 SymbolReaper &SymReaper) override; 303 304 void print(ProgramStateRef State, raw_ostream &Out, const char *nl, 305 const char *sep) override; 306 307 //===------------------------------------------------------------------===// 308 // Implementation for interface from RangedConstraintManager. 309 //===------------------------------------------------------------------===// 310 311 ProgramStateRef assumeSymNE(ProgramStateRef State, SymbolRef Sym, 312 const llvm::APSInt &V, 313 const llvm::APSInt &Adjustment) override; 314 315 ProgramStateRef assumeSymEQ(ProgramStateRef State, SymbolRef Sym, 316 const llvm::APSInt &V, 317 const llvm::APSInt &Adjustment) override; 318 319 ProgramStateRef assumeSymLT(ProgramStateRef State, SymbolRef Sym, 320 const llvm::APSInt &V, 321 const llvm::APSInt &Adjustment) override; 322 323 ProgramStateRef assumeSymGT(ProgramStateRef State, SymbolRef Sym, 324 const llvm::APSInt &V, 325 const llvm::APSInt &Adjustment) override; 326 327 ProgramStateRef assumeSymLE(ProgramStateRef State, SymbolRef Sym, 328 const llvm::APSInt &V, 329 const llvm::APSInt &Adjustment) override; 330 331 ProgramStateRef assumeSymGE(ProgramStateRef State, SymbolRef Sym, 332 const llvm::APSInt &V, 333 const llvm::APSInt &Adjustment) override; 334 335 ProgramStateRef assumeSymWithinInclusiveRange( 336 ProgramStateRef State, SymbolRef Sym, const llvm::APSInt &From, 337 const llvm::APSInt &To, const llvm::APSInt &Adjustment) override; 338 339 ProgramStateRef assumeSymOutsideInclusiveRange( 340 ProgramStateRef State, SymbolRef Sym, const llvm::APSInt &From, 341 const llvm::APSInt &To, const llvm::APSInt &Adjustment) override; 342 343 private: 344 RangeSet::Factory F; 345 346 RangeSet getRange(ProgramStateRef State, SymbolRef Sym); 347 348 RangeSet getSymLTRange(ProgramStateRef St, SymbolRef Sym, 349 const llvm::APSInt &Int, 350 const llvm::APSInt &Adjustment); 351 RangeSet getSymGTRange(ProgramStateRef St, SymbolRef Sym, 352 const llvm::APSInt &Int, 353 const llvm::APSInt &Adjustment); 354 RangeSet getSymLERange(ProgramStateRef St, SymbolRef Sym, 355 const llvm::APSInt &Int, 356 const llvm::APSInt &Adjustment); 357 RangeSet getSymLERange(const RangeSet &RS, const llvm::APSInt &Int, 358 const llvm::APSInt &Adjustment); 359 RangeSet getSymGERange(ProgramStateRef St, SymbolRef Sym, 360 const llvm::APSInt &Int, 361 const llvm::APSInt &Adjustment); 362 }; 363 364 } // end anonymous namespace 365 366 std::unique_ptr<ConstraintManager> 367 ento::CreateRangeConstraintManager(ProgramStateManager &StMgr, SubEngine *Eng) { 368 return llvm::make_unique<RangeConstraintManager>(Eng, StMgr.getSValBuilder()); 369 } 370 371 bool RangeConstraintManager::canReasonAbout(SVal X) const { 372 Optional<nonloc::SymbolVal> SymVal = X.getAs<nonloc::SymbolVal>(); 373 if (SymVal && SymVal->isExpression()) { 374 const SymExpr *SE = SymVal->getSymbol(); 375 376 if (const SymIntExpr *SIE = dyn_cast<SymIntExpr>(SE)) { 377 switch (SIE->getOpcode()) { 378 // We don't reason yet about bitwise-constraints on symbolic values. 379 case BO_And: 380 case BO_Or: 381 case BO_Xor: 382 return false; 383 // We don't reason yet about these arithmetic constraints on 384 // symbolic values. 385 case BO_Mul: 386 case BO_Div: 387 case BO_Rem: 388 case BO_Shl: 389 case BO_Shr: 390 return false; 391 // All other cases. 392 default: 393 return true; 394 } 395 } 396 397 if (const SymSymExpr *SSE = dyn_cast<SymSymExpr>(SE)) { 398 if (BinaryOperator::isComparisonOp(SSE->getOpcode())) { 399 // We handle Loc <> Loc comparisons, but not (yet) NonLoc <> NonLoc. 400 if (Loc::isLocType(SSE->getLHS()->getType())) { 401 assert(Loc::isLocType(SSE->getRHS()->getType())); 402 return true; 403 } 404 } 405 } 406 407 return false; 408 } 409 410 return true; 411 } 412 413 ConditionTruthVal RangeConstraintManager::checkNull(ProgramStateRef State, 414 SymbolRef Sym) { 415 const RangeSet *Ranges = State->get<ConstraintRange>(Sym); 416 417 // If we don't have any information about this symbol, it's underconstrained. 418 if (!Ranges) 419 return ConditionTruthVal(); 420 421 // If we have a concrete value, see if it's zero. 422 if (const llvm::APSInt *Value = Ranges->getConcreteValue()) 423 return *Value == 0; 424 425 BasicValueFactory &BV = getBasicVals(); 426 APSIntType IntType = BV.getAPSIntType(Sym->getType()); 427 llvm::APSInt Zero = IntType.getZeroValue(); 428 429 // Check if zero is in the set of possible values. 430 if (Ranges->Intersect(BV, F, Zero, Zero).isEmpty()) 431 return false; 432 433 // Zero is a possible value, but it is not the /only/ possible value. 434 return ConditionTruthVal(); 435 } 436 437 const llvm::APSInt *RangeConstraintManager::getSymVal(ProgramStateRef St, 438 SymbolRef Sym) const { 439 const ConstraintRangeTy::data_type *T = St->get<ConstraintRange>(Sym); 440 return T ? T->getConcreteValue() : nullptr; 441 } 442 443 /// Scan all symbols referenced by the constraints. If the symbol is not alive 444 /// as marked in LSymbols, mark it as dead in DSymbols. 445 ProgramStateRef 446 RangeConstraintManager::removeDeadBindings(ProgramStateRef State, 447 SymbolReaper &SymReaper) { 448 bool Changed = false; 449 ConstraintRangeTy CR = State->get<ConstraintRange>(); 450 ConstraintRangeTy::Factory &CRFactory = State->get_context<ConstraintRange>(); 451 452 for (ConstraintRangeTy::iterator I = CR.begin(), E = CR.end(); I != E; ++I) { 453 SymbolRef Sym = I.getKey(); 454 if (SymReaper.maybeDead(Sym)) { 455 Changed = true; 456 CR = CRFactory.remove(CR, Sym); 457 } 458 } 459 460 return Changed ? State->set<ConstraintRange>(CR) : State; 461 } 462 463 /// Return a range set subtracting zero from \p Domain. 464 static RangeSet assumeNonZero( 465 BasicValueFactory &BV, 466 RangeSet::Factory &F, 467 SymbolRef Sym, 468 RangeSet Domain) { 469 APSIntType IntType = BV.getAPSIntType(Sym->getType()); 470 return Domain.Intersect(BV, F, ++IntType.getZeroValue(), 471 --IntType.getZeroValue()); 472 } 473 474 /// \brief Apply implicit constraints for bitwise OR- and AND-. 475 /// For unsigned types, bitwise OR with a constant always returns 476 /// a value greater-or-equal than the constant, and bitwise AND 477 /// returns a value less-or-equal then the constant. 478 /// 479 /// Pattern matches the expression \p Sym against those rule, 480 /// and applies the required constraints. 481 /// \p Input Previously established expression range set 482 static RangeSet applyBitwiseConstraints( 483 BasicValueFactory &BV, 484 RangeSet::Factory &F, 485 RangeSet Input, 486 const SymIntExpr* SIE) { 487 QualType T = SIE->getType(); 488 bool IsUnsigned = T->isUnsignedIntegerType(); 489 const llvm::APSInt &RHS = SIE->getRHS(); 490 const llvm::APSInt &Zero = BV.getAPSIntType(T).getZeroValue(); 491 BinaryOperator::Opcode Operator = SIE->getOpcode(); 492 493 // For unsigned types, the output of bitwise-or is bigger-or-equal than RHS. 494 if (Operator == BO_Or && IsUnsigned) 495 return Input.Intersect(BV, F, RHS, BV.getMaxValue(T)); 496 497 // Bitwise-or with a non-zero constant is always non-zero. 498 if (Operator == BO_Or && RHS != Zero) 499 return assumeNonZero(BV, F, SIE, Input); 500 501 // For unsigned types, or positive RHS, 502 // bitwise-and output is always smaller-or-equal than RHS (assuming two's 503 // complement representation of signed types). 504 if (Operator == BO_And && (IsUnsigned || RHS >= Zero)) 505 return Input.Intersect(BV, F, BV.getMinValue(T), RHS); 506 507 return Input; 508 } 509 510 RangeSet RangeConstraintManager::getRange(ProgramStateRef State, 511 SymbolRef Sym) { 512 if (ConstraintRangeTy::data_type *V = State->get<ConstraintRange>(Sym)) 513 return *V; 514 515 // Lazily generate a new RangeSet representing all possible values for the 516 // given symbol type. 517 BasicValueFactory &BV = getBasicVals(); 518 QualType T = Sym->getType(); 519 520 RangeSet Result(F, BV.getMinValue(T), BV.getMaxValue(T)); 521 522 // References are known to be non-zero. 523 if (T->isReferenceType()) 524 return assumeNonZero(BV, F, Sym, Result); 525 526 // Known constraints on ranges of bitwise expressions. 527 if (const SymIntExpr* SIE = dyn_cast<SymIntExpr>(Sym)) 528 return applyBitwiseConstraints(BV, F, Result, SIE); 529 530 return Result; 531 } 532 533 //===------------------------------------------------------------------------=== 534 // assumeSymX methods: protected interface for RangeConstraintManager. 535 //===------------------------------------------------------------------------===/ 536 537 // The syntax for ranges below is mathematical, using [x, y] for closed ranges 538 // and (x, y) for open ranges. These ranges are modular, corresponding with 539 // a common treatment of C integer overflow. This means that these methods 540 // do not have to worry about overflow; RangeSet::Intersect can handle such a 541 // "wraparound" range. 542 // As an example, the range [UINT_MAX-1, 3) contains five values: UINT_MAX-1, 543 // UINT_MAX, 0, 1, and 2. 544 545 ProgramStateRef 546 RangeConstraintManager::assumeSymNE(ProgramStateRef St, SymbolRef Sym, 547 const llvm::APSInt &Int, 548 const llvm::APSInt &Adjustment) { 549 // Before we do any real work, see if the value can even show up. 550 APSIntType AdjustmentType(Adjustment); 551 if (AdjustmentType.testInRange(Int, true) != APSIntType::RTR_Within) 552 return St; 553 554 llvm::APSInt Lower = AdjustmentType.convert(Int) - Adjustment; 555 llvm::APSInt Upper = Lower; 556 --Lower; 557 ++Upper; 558 559 // [Int-Adjustment+1, Int-Adjustment-1] 560 // Notice that the lower bound is greater than the upper bound. 561 RangeSet New = getRange(St, Sym).Intersect(getBasicVals(), F, Upper, Lower); 562 return New.isEmpty() ? nullptr : St->set<ConstraintRange>(Sym, New); 563 } 564 565 ProgramStateRef 566 RangeConstraintManager::assumeSymEQ(ProgramStateRef St, SymbolRef Sym, 567 const llvm::APSInt &Int, 568 const llvm::APSInt &Adjustment) { 569 // Before we do any real work, see if the value can even show up. 570 APSIntType AdjustmentType(Adjustment); 571 if (AdjustmentType.testInRange(Int, true) != APSIntType::RTR_Within) 572 return nullptr; 573 574 // [Int-Adjustment, Int-Adjustment] 575 llvm::APSInt AdjInt = AdjustmentType.convert(Int) - Adjustment; 576 RangeSet New = getRange(St, Sym).Intersect(getBasicVals(), F, AdjInt, AdjInt); 577 return New.isEmpty() ? nullptr : St->set<ConstraintRange>(Sym, New); 578 } 579 580 RangeSet RangeConstraintManager::getSymLTRange(ProgramStateRef St, 581 SymbolRef Sym, 582 const llvm::APSInt &Int, 583 const llvm::APSInt &Adjustment) { 584 // Before we do any real work, see if the value can even show up. 585 APSIntType AdjustmentType(Adjustment); 586 switch (AdjustmentType.testInRange(Int, true)) { 587 case APSIntType::RTR_Below: 588 return F.getEmptySet(); 589 case APSIntType::RTR_Within: 590 break; 591 case APSIntType::RTR_Above: 592 return getRange(St, Sym); 593 } 594 595 // Special case for Int == Min. This is always false. 596 llvm::APSInt ComparisonVal = AdjustmentType.convert(Int); 597 llvm::APSInt Min = AdjustmentType.getMinValue(); 598 if (ComparisonVal == Min) 599 return F.getEmptySet(); 600 601 llvm::APSInt Lower = Min - Adjustment; 602 llvm::APSInt Upper = ComparisonVal - Adjustment; 603 --Upper; 604 605 return getRange(St, Sym).Intersect(getBasicVals(), F, Lower, Upper); 606 } 607 608 ProgramStateRef 609 RangeConstraintManager::assumeSymLT(ProgramStateRef St, SymbolRef Sym, 610 const llvm::APSInt &Int, 611 const llvm::APSInt &Adjustment) { 612 RangeSet New = getSymLTRange(St, Sym, Int, Adjustment); 613 return New.isEmpty() ? nullptr : St->set<ConstraintRange>(Sym, New); 614 } 615 616 RangeSet RangeConstraintManager::getSymGTRange(ProgramStateRef St, 617 SymbolRef Sym, 618 const llvm::APSInt &Int, 619 const llvm::APSInt &Adjustment) { 620 // Before we do any real work, see if the value can even show up. 621 APSIntType AdjustmentType(Adjustment); 622 switch (AdjustmentType.testInRange(Int, true)) { 623 case APSIntType::RTR_Below: 624 return getRange(St, Sym); 625 case APSIntType::RTR_Within: 626 break; 627 case APSIntType::RTR_Above: 628 return F.getEmptySet(); 629 } 630 631 // Special case for Int == Max. This is always false. 632 llvm::APSInt ComparisonVal = AdjustmentType.convert(Int); 633 llvm::APSInt Max = AdjustmentType.getMaxValue(); 634 if (ComparisonVal == Max) 635 return F.getEmptySet(); 636 637 llvm::APSInt Lower = ComparisonVal - Adjustment; 638 llvm::APSInt Upper = Max - Adjustment; 639 ++Lower; 640 641 return getRange(St, Sym).Intersect(getBasicVals(), F, Lower, Upper); 642 } 643 644 ProgramStateRef 645 RangeConstraintManager::assumeSymGT(ProgramStateRef St, SymbolRef Sym, 646 const llvm::APSInt &Int, 647 const llvm::APSInt &Adjustment) { 648 RangeSet New = getSymGTRange(St, Sym, Int, Adjustment); 649 return New.isEmpty() ? nullptr : St->set<ConstraintRange>(Sym, New); 650 } 651 652 RangeSet RangeConstraintManager::getSymGERange(ProgramStateRef St, 653 SymbolRef Sym, 654 const llvm::APSInt &Int, 655 const llvm::APSInt &Adjustment) { 656 // Before we do any real work, see if the value can even show up. 657 APSIntType AdjustmentType(Adjustment); 658 switch (AdjustmentType.testInRange(Int, true)) { 659 case APSIntType::RTR_Below: 660 return getRange(St, Sym); 661 case APSIntType::RTR_Within: 662 break; 663 case APSIntType::RTR_Above: 664 return F.getEmptySet(); 665 } 666 667 // Special case for Int == Min. This is always feasible. 668 llvm::APSInt ComparisonVal = AdjustmentType.convert(Int); 669 llvm::APSInt Min = AdjustmentType.getMinValue(); 670 if (ComparisonVal == Min) 671 return getRange(St, Sym); 672 673 llvm::APSInt Max = AdjustmentType.getMaxValue(); 674 llvm::APSInt Lower = ComparisonVal - Adjustment; 675 llvm::APSInt Upper = Max - Adjustment; 676 677 return getRange(St, Sym).Intersect(getBasicVals(), F, Lower, Upper); 678 } 679 680 ProgramStateRef 681 RangeConstraintManager::assumeSymGE(ProgramStateRef St, SymbolRef Sym, 682 const llvm::APSInt &Int, 683 const llvm::APSInt &Adjustment) { 684 RangeSet New = getSymGERange(St, Sym, Int, Adjustment); 685 return New.isEmpty() ? nullptr : St->set<ConstraintRange>(Sym, New); 686 } 687 688 RangeSet RangeConstraintManager::getSymLERange(const RangeSet &RS, 689 const llvm::APSInt &Int, 690 const llvm::APSInt &Adjustment) { 691 // Before we do any real work, see if the value can even show up. 692 APSIntType AdjustmentType(Adjustment); 693 switch (AdjustmentType.testInRange(Int, true)) { 694 case APSIntType::RTR_Below: 695 return F.getEmptySet(); 696 case APSIntType::RTR_Within: 697 break; 698 case APSIntType::RTR_Above: 699 return RS; 700 } 701 702 // Special case for Int == Max. This is always feasible. 703 llvm::APSInt ComparisonVal = AdjustmentType.convert(Int); 704 llvm::APSInt Max = AdjustmentType.getMaxValue(); 705 if (ComparisonVal == Max) 706 return RS; 707 708 llvm::APSInt Min = AdjustmentType.getMinValue(); 709 llvm::APSInt Lower = Min - Adjustment; 710 llvm::APSInt Upper = ComparisonVal - Adjustment; 711 712 return RS.Intersect(getBasicVals(), F, Lower, Upper); 713 } 714 715 RangeSet RangeConstraintManager::getSymLERange(ProgramStateRef St, 716 SymbolRef Sym, 717 const llvm::APSInt &Int, 718 const llvm::APSInt &Adjustment) { 719 // Before we do any real work, see if the value can even show up. 720 APSIntType AdjustmentType(Adjustment); 721 switch (AdjustmentType.testInRange(Int, true)) { 722 case APSIntType::RTR_Below: 723 return F.getEmptySet(); 724 case APSIntType::RTR_Within: 725 break; 726 case APSIntType::RTR_Above: 727 return getRange(St, Sym); 728 } 729 730 // Special case for Int == Max. This is always feasible. 731 llvm::APSInt ComparisonVal = AdjustmentType.convert(Int); 732 llvm::APSInt Max = AdjustmentType.getMaxValue(); 733 if (ComparisonVal == Max) 734 return getRange(St, Sym); 735 736 llvm::APSInt Min = AdjustmentType.getMinValue(); 737 llvm::APSInt Lower = Min - Adjustment; 738 llvm::APSInt Upper = ComparisonVal - Adjustment; 739 740 return getRange(St, Sym).Intersect(getBasicVals(), F, Lower, Upper); 741 } 742 743 ProgramStateRef 744 RangeConstraintManager::assumeSymLE(ProgramStateRef St, SymbolRef Sym, 745 const llvm::APSInt &Int, 746 const llvm::APSInt &Adjustment) { 747 RangeSet New = getSymLERange(St, Sym, Int, Adjustment); 748 return New.isEmpty() ? nullptr : St->set<ConstraintRange>(Sym, New); 749 } 750 751 ProgramStateRef RangeConstraintManager::assumeSymWithinInclusiveRange( 752 ProgramStateRef State, SymbolRef Sym, const llvm::APSInt &From, 753 const llvm::APSInt &To, const llvm::APSInt &Adjustment) { 754 RangeSet New = getSymGERange(State, Sym, From, Adjustment); 755 if (New.isEmpty()) 756 return nullptr; 757 New = getSymLERange(New, To, Adjustment); 758 return New.isEmpty() ? nullptr : State->set<ConstraintRange>(Sym, New); 759 } 760 761 ProgramStateRef RangeConstraintManager::assumeSymOutsideInclusiveRange( 762 ProgramStateRef State, SymbolRef Sym, const llvm::APSInt &From, 763 const llvm::APSInt &To, const llvm::APSInt &Adjustment) { 764 RangeSet RangeLT = getSymLTRange(State, Sym, From, Adjustment); 765 RangeSet RangeGT = getSymGTRange(State, Sym, To, Adjustment); 766 RangeSet New(RangeLT.addRange(F, RangeGT)); 767 return New.isEmpty() ? nullptr : State->set<ConstraintRange>(Sym, New); 768 } 769 770 //===------------------------------------------------------------------------=== 771 // Pretty-printing. 772 //===------------------------------------------------------------------------===/ 773 774 void RangeConstraintManager::print(ProgramStateRef St, raw_ostream &Out, 775 const char *nl, const char *sep) { 776 777 ConstraintRangeTy Ranges = St->get<ConstraintRange>(); 778 779 if (Ranges.isEmpty()) { 780 Out << nl << sep << "Ranges are empty." << nl; 781 return; 782 } 783 784 Out << nl << sep << "Ranges of symbol values:"; 785 for (ConstraintRangeTy::iterator I = Ranges.begin(), E = Ranges.end(); I != E; 786 ++I) { 787 Out << nl << ' ' << I.getKey() << " : "; 788 I.getData().print(Out); 789 } 790 Out << nl; 791 } 792