]> granicus.if.org Git - clang/blob - include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h
[analyzer] First step toward removing
[clang] / include / clang / StaticAnalyzer / Core / PathSensitive / SVals.h
1 //== SVals.h - Abstract Values for Static Analysis ---------*- 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 SVal, Loc, and NonLoc, classes that represent
11 //  abstract r-values for use with path-sensitive value tracking.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_CLANG_GR_RVALUE_H
16 #define LLVM_CLANG_GR_RVALUE_H
17
18 #include "clang/Basic/LLVM.h"
19 #include "clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h"
20 #include "llvm/ADT/ImmutableList.h"
21
22 //==------------------------------------------------------------------------==//
23 //  Base SVal types.
24 //==------------------------------------------------------------------------==//
25
26 namespace clang {
27
28 namespace ento {
29
30 class CompoundValData;
31 class LazyCompoundValData;
32 class ProgramState;
33 class BasicValueFactory;
34 class MemRegion;
35 class TypedRegion;
36 class MemRegionManager;
37 class ProgramStateManager;
38 class SValBuilder;
39
40 /// SVal - This represents a symbolic expression, which can be either
41 ///  an L-value or an R-value.
42 ///
43 class SVal {
44 public:
45   enum BaseKind {
46     // The enumerators must be representable using 2 bits.
47     UndefinedKind = 0,  // for subclass UndefinedVal (an uninitialized value)
48     UnknownKind = 1,    // for subclass UnknownVal (a void value)
49     LocKind = 2,        // for subclass Loc (an L-value)
50     NonLocKind = 3      // for subclass NonLoc (an R-value that's not
51                         //   an L-value)
52   };
53   enum { BaseBits = 2, BaseMask = 0x3 };
54
55 protected:
56   const void *Data;
57
58   /// The lowest 2 bits are a BaseKind (0 -- 3).
59   ///  The higher bits are an unsigned "kind" value.
60   unsigned Kind;
61
62   explicit SVal(const void *d, bool isLoc, unsigned ValKind)
63   : Data(d), Kind((isLoc ? LocKind : NonLocKind) | (ValKind << BaseBits)) {}
64
65   explicit SVal(BaseKind k, const void *D = NULL)
66     : Data(D), Kind(k) {}
67
68 public:
69   explicit SVal() : Data(0), Kind(0) {}
70   ~SVal() {}
71
72   /// BufferTy - A temporary buffer to hold a set of SVals.
73   typedef SmallVector<SVal,5> BufferTy;
74
75   inline unsigned getRawKind() const { return Kind; }
76   inline BaseKind getBaseKind() const { return (BaseKind) (Kind & BaseMask); }
77   inline unsigned getSubKind() const { return (Kind & ~BaseMask) >> BaseBits; }
78
79   // This method is required for using SVal in a FoldingSetNode.  It
80   // extracts a unique signature for this SVal object.
81   inline void Profile(llvm::FoldingSetNodeID& ID) const {
82     ID.AddInteger((unsigned) getRawKind());
83     ID.AddPointer(Data);
84   }
85
86   inline bool operator==(const SVal& R) const {
87     return getRawKind() == R.getRawKind() && Data == R.Data;
88   }
89
90   inline bool operator!=(const SVal& R) const {
91     return !(*this == R);
92   }
93
94   inline bool isUnknown() const {
95     return getRawKind() == UnknownKind;
96   }
97
98   inline bool isUndef() const {
99     return getRawKind() == UndefinedKind;
100   }
101
102   inline bool isUnknownOrUndef() const {
103     return getRawKind() <= UnknownKind;
104   }
105
106   inline bool isValid() const {
107     return getRawKind() > UnknownKind;
108   }
109
110   bool isConstant() const;
111
112   bool isConstant(int I) const;
113
114   bool isZeroConstant() const;
115
116   /// hasConjuredSymbol - If this SVal wraps a conjured symbol, return true;
117   bool hasConjuredSymbol() const;
118
119   /// getAsFunctionDecl - If this SVal is a MemRegionVal and wraps a
120   /// CodeTextRegion wrapping a FunctionDecl, return that FunctionDecl.
121   /// Otherwise return 0.
122   const FunctionDecl *getAsFunctionDecl() const;
123
124   /// If this SVal is a location (subclasses Loc) and
125   /// wraps a symbol, return that SymbolRef.  Otherwise return 0.
126   SymbolRef getAsLocSymbol() const;
127
128   /// Get the symbol in the SVal or its base region.
129   SymbolRef getLocSymbolInBase() const;
130
131   /// If this SVal wraps a symbol return that SymbolRef.
132   /// Otherwise, return 0.
133   SymbolRef getAsSymbol() const;
134
135   /// getAsSymbolicExpression - If this Sval wraps a symbolic expression then
136   ///  return that expression.  Otherwise return NULL.
137   const SymExpr *getAsSymbolicExpression() const;
138
139   const SymExpr* getAsSymExpr() const;
140
141   const MemRegion *getAsRegion() const;
142
143   void dumpToStream(raw_ostream &OS) const;
144   void dump() const;
145
146   // Iterators.
147   class symbol_iterator {
148     SmallVector<const SymExpr*, 5> itr;
149     void expand();
150   public:
151     symbol_iterator() {}
152     symbol_iterator(const SymExpr *SE);
153
154     symbol_iterator &operator++();
155     SymbolRef operator*();
156
157     bool operator==(const symbol_iterator &X) const;
158     bool operator!=(const symbol_iterator &X) const;
159   };
160
161   symbol_iterator symbol_begin() const {
162     const SymExpr *SE = getAsSymbolicExpression();
163     if (SE)
164       return symbol_iterator(SE);
165     else
166       return symbol_iterator();
167   }
168
169   symbol_iterator symbol_end() const { return symbol_iterator(); }
170
171   // Implement isa<T> support.
172   static inline bool classof(const SVal*) { return true; }
173 };
174
175
176 class UndefinedVal : public SVal {
177 public:
178   UndefinedVal() : SVal(UndefinedKind) {}
179   UndefinedVal(const void *D) : SVal(UndefinedKind, D) {}
180
181   static inline bool classof(const SVal* V) {
182     return V->getBaseKind() == UndefinedKind;
183   }
184
185   const void *getData() const { return Data; }
186 };
187
188 class DefinedOrUnknownSVal : public SVal {
189 private:
190   // Do not implement.  We want calling these methods to be a compiler
191   // error since they are tautologically false.
192   bool isUndef() const;
193   bool isValid() const;
194   
195 protected:
196   explicit DefinedOrUnknownSVal(const void *d, bool isLoc, unsigned ValKind)
197     : SVal(d, isLoc, ValKind) {}
198   
199   explicit DefinedOrUnknownSVal(BaseKind k, void *D = NULL)
200     : SVal(k, D) {}
201   
202 public:
203     // Implement isa<T> support.
204   static inline bool classof(const SVal *V) {
205     return !V->isUndef();
206   }
207 };
208   
209 class UnknownVal : public DefinedOrUnknownSVal {
210 public:
211   explicit UnknownVal() : DefinedOrUnknownSVal(UnknownKind) {}
212   
213   static inline bool classof(const SVal *V) {
214     return V->getBaseKind() == UnknownKind;
215   }
216 };
217
218 class DefinedSVal : public DefinedOrUnknownSVal {
219 private:
220   // Do not implement.  We want calling these methods to be a compiler
221   // error since they are tautologically true/false.
222   bool isUnknown() const;
223   bool isUnknownOrUndef() const;
224   bool isValid() const;  
225 protected:
226   explicit DefinedSVal(const void *d, bool isLoc, unsigned ValKind)
227     : DefinedOrUnknownSVal(d, isLoc, ValKind) {}
228 public:
229   // Implement isa<T> support.
230   static inline bool classof(const SVal *V) {
231     return !V->isUnknownOrUndef();
232   }
233 };
234
235 class NonLoc : public DefinedSVal {
236 protected:
237   explicit NonLoc(unsigned SubKind, const void *d)
238     : DefinedSVal(d, false, SubKind) {}
239
240 public:
241   void dumpToStream(raw_ostream &Out) const;
242
243   // Implement isa<T> support.
244   static inline bool classof(const SVal* V) {
245     return V->getBaseKind() == NonLocKind;
246   }
247 };
248
249 class Loc : public DefinedSVal {
250 protected:
251   explicit Loc(unsigned SubKind, const void *D)
252   : DefinedSVal(const_cast<void*>(D), true, SubKind) {}
253
254 public:
255   void dumpToStream(raw_ostream &Out) const;
256
257   Loc(const Loc& X) : DefinedSVal(X.Data, true, X.getSubKind()) {}
258
259   // Implement isa<T> support.
260   static inline bool classof(const SVal* V) {
261     return V->getBaseKind() == LocKind;
262   }
263
264   static inline bool isLocType(QualType T) {
265     return T->isAnyPointerType() || T->isBlockPointerType() || 
266            T->isReferenceType();
267   }
268 };
269
270 //==------------------------------------------------------------------------==//
271 //  Subclasses of NonLoc.
272 //==------------------------------------------------------------------------==//
273
274 namespace nonloc {
275
276 enum Kind { ConcreteIntKind, SymbolValKind, SymExprValKind,
277             LocAsIntegerKind, CompoundValKind, LazyCompoundValKind };
278
279 class SymbolVal : public NonLoc {
280 public:
281   SymbolVal(SymbolRef sym) : NonLoc(SymbolValKind, sym) {}
282
283   SymbolRef getSymbol() const {
284     return (const SymExpr*) Data;
285   }
286
287   static inline bool classof(const SVal* V) {
288     return V->getBaseKind() == NonLocKind &&
289            V->getSubKind() == SymbolValKind;
290   }
291
292   static inline bool classof(const NonLoc* V) {
293     return V->getSubKind() == SymbolValKind;
294   }
295 };
296
297 class SymExprVal : public NonLoc {
298 public:
299   explicit SymExprVal(const SymExpr *SE)
300     : NonLoc(SymExprValKind, reinterpret_cast<const void*>(SE)) {}
301
302   const SymExpr *getSymbolicExpression() const {
303     return reinterpret_cast<const SymExpr*>(Data);
304   }
305
306   static inline bool classof(const SVal* V) {
307     return V->getBaseKind() == NonLocKind &&
308            V->getSubKind() == SymExprValKind;
309   }
310
311   static inline bool classof(const NonLoc* V) {
312     return V->getSubKind() == SymExprValKind;
313   }
314 };
315
316 class ConcreteInt : public NonLoc {
317 public:
318   explicit ConcreteInt(const llvm::APSInt& V) : NonLoc(ConcreteIntKind, &V) {}
319
320   const llvm::APSInt& getValue() const {
321     return *static_cast<const llvm::APSInt*>(Data);
322   }
323
324   // Transfer functions for binary/unary operations on ConcreteInts.
325   SVal evalBinOp(SValBuilder &svalBuilder, BinaryOperator::Opcode Op,
326                  const ConcreteInt& R) const;
327
328   ConcreteInt evalComplement(SValBuilder &svalBuilder) const;
329
330   ConcreteInt evalMinus(SValBuilder &svalBuilder) const;
331
332   // Implement isa<T> support.
333   static inline bool classof(const SVal* V) {
334     return V->getBaseKind() == NonLocKind &&
335            V->getSubKind() == ConcreteIntKind;
336   }
337
338   static inline bool classof(const NonLoc* V) {
339     return V->getSubKind() == ConcreteIntKind;
340   }
341 };
342
343 class LocAsInteger : public NonLoc {
344   friend class ento::SValBuilder;
345
346   explicit LocAsInteger(const std::pair<SVal, uintptr_t>& data) :
347     NonLoc(LocAsIntegerKind, &data) {
348       assert (isa<Loc>(data.first));
349     }
350
351 public:
352
353   Loc getLoc() const {
354     return cast<Loc>(((std::pair<SVal, uintptr_t>*) Data)->first);
355   }
356
357   const Loc& getPersistentLoc() const {
358     const SVal& V = ((std::pair<SVal, uintptr_t>*) Data)->first;
359     return cast<Loc>(V);
360   }
361
362   unsigned getNumBits() const {
363     return ((std::pair<SVal, unsigned>*) Data)->second;
364   }
365
366   // Implement isa<T> support.
367   static inline bool classof(const SVal* V) {
368     return V->getBaseKind() == NonLocKind &&
369            V->getSubKind() == LocAsIntegerKind;
370   }
371
372   static inline bool classof(const NonLoc* V) {
373     return V->getSubKind() == LocAsIntegerKind;
374   }
375 };
376
377 class CompoundVal : public NonLoc {
378   friend class ento::SValBuilder;
379
380   explicit CompoundVal(const CompoundValData* D) : NonLoc(CompoundValKind, D) {}
381
382 public:
383   const CompoundValData* getValue() const {
384     return static_cast<const CompoundValData*>(Data);
385   }
386
387   typedef llvm::ImmutableList<SVal>::iterator iterator;
388   iterator begin() const;
389   iterator end() const;
390
391   static bool classof(const SVal* V) {
392     return V->getBaseKind() == NonLocKind && V->getSubKind() == CompoundValKind;
393   }
394
395   static bool classof(const NonLoc* V) {
396     return V->getSubKind() == CompoundValKind;
397   }
398 };
399
400 class LazyCompoundVal : public NonLoc {
401   friend class ento::SValBuilder;
402
403   explicit LazyCompoundVal(const LazyCompoundValData *D)
404     : NonLoc(LazyCompoundValKind, D) {}
405 public:
406   const LazyCompoundValData *getCVData() const {
407     return static_cast<const LazyCompoundValData*>(Data);
408   }
409   const void *getStore() const;
410   const TypedRegion *getRegion() const;
411
412   static bool classof(const SVal *V) {
413     return V->getBaseKind() == NonLocKind &&
414            V->getSubKind() == LazyCompoundValKind;
415   }
416   static bool classof(const NonLoc *V) {
417     return V->getSubKind() == LazyCompoundValKind;
418   }
419 };
420
421 } // end namespace ento::nonloc
422
423 //==------------------------------------------------------------------------==//
424 //  Subclasses of Loc.
425 //==------------------------------------------------------------------------==//
426
427 namespace loc {
428
429 enum Kind { GotoLabelKind, MemRegionKind, ConcreteIntKind, ObjCPropRefKind };
430
431 class GotoLabel : public Loc {
432 public:
433   explicit GotoLabel(LabelDecl *Label) : Loc(GotoLabelKind, Label) {}
434
435   const LabelDecl *getLabel() const {
436     return static_cast<const LabelDecl*>(Data);
437   }
438
439   static inline bool classof(const SVal* V) {
440     return V->getBaseKind() == LocKind && V->getSubKind() == GotoLabelKind;
441   }
442
443   static inline bool classof(const Loc* V) {
444     return V->getSubKind() == GotoLabelKind;
445   }
446 };
447
448
449 class MemRegionVal : public Loc {
450 public:
451   explicit MemRegionVal(const MemRegion* r) : Loc(MemRegionKind, r) {}
452
453   const MemRegion* getRegion() const {
454     return static_cast<const MemRegion*>(Data);
455   }
456
457   const MemRegion* stripCasts() const;
458
459   template <typename REGION>
460   const REGION* getRegionAs() const {
461     return llvm::dyn_cast<REGION>(getRegion());
462   }
463
464   inline bool operator==(const MemRegionVal& R) const {
465     return getRegion() == R.getRegion();
466   }
467
468   inline bool operator!=(const MemRegionVal& R) const {
469     return getRegion() != R.getRegion();
470   }
471
472   // Implement isa<T> support.
473   static inline bool classof(const SVal* V) {
474     return V->getBaseKind() == LocKind &&
475            V->getSubKind() == MemRegionKind;
476   }
477
478   static inline bool classof(const Loc* V) {
479     return V->getSubKind() == MemRegionKind;
480   }
481 };
482
483 class ConcreteInt : public Loc {
484 public:
485   explicit ConcreteInt(const llvm::APSInt& V) : Loc(ConcreteIntKind, &V) {}
486
487   const llvm::APSInt& getValue() const {
488     return *static_cast<const llvm::APSInt*>(Data);
489   }
490
491   // Transfer functions for binary/unary operations on ConcreteInts.
492   SVal evalBinOp(BasicValueFactory& BasicVals, BinaryOperator::Opcode Op,
493                  const ConcreteInt& R) const;
494
495   // Implement isa<T> support.
496   static inline bool classof(const SVal* V) {
497     return V->getBaseKind() == LocKind &&
498            V->getSubKind() == ConcreteIntKind;
499   }
500
501   static inline bool classof(const Loc* V) {
502     return V->getSubKind() == ConcreteIntKind;
503   }
504 };
505
506 /// \brief Pseudo-location SVal used by the ExprEngine to simulate a "load" or
507 /// "store" of an ObjC property for the dot syntax.
508 class ObjCPropRef : public Loc {
509 public:
510   explicit ObjCPropRef(const ObjCPropertyRefExpr *E)
511     : Loc(ObjCPropRefKind, E) {}
512
513   const ObjCPropertyRefExpr *getPropRefExpr() const {
514     return static_cast<const ObjCPropertyRefExpr *>(Data);
515   }
516
517   // Implement isa<T> support.
518   static inline bool classof(const SVal* V) {
519     return V->getBaseKind() == LocKind &&
520            V->getSubKind() == ObjCPropRefKind;
521   }
522
523   static inline bool classof(const Loc* V) {
524     return V->getSubKind() == ObjCPropRefKind;
525   }
526 };
527
528 } // end ento::loc namespace
529 } // end GR namespace
530
531 } // end clang namespace
532
533 namespace llvm {
534 static inline raw_ostream &operator<<(raw_ostream &os,
535                                             clang::ento::SVal V) {
536   V.dumpToStream(os);
537   return os;
538 }
539
540 } // end llvm namespace
541
542 #endif