//==- ProgramPoint.h - Program Points for Path-Sensitive Analysis --*- C++ -*-// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file defines the interface ProgramPoint, which identifies a // distinct location in a function. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_ANALYSIS_PROGRAM_POINT #define LLVM_CLANG_ANALYSIS_PROGRAM_POINT #include "clang/AST/CFG.h" #include "llvm/Support/DataTypes.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/FoldingSet.h" #include namespace clang { class ProgramPoint { public: enum Kind { BlockEntranceKind=0, PostStmtKind=1, PostLoadKind=2, BlockExitKind=3, BlockEdgeSrcKind=4, BlockEdgeDstKind=5, BlockEdgeAuxKind=6 }; protected: uintptr_t Data; ProgramPoint(const void* Ptr, Kind k) { setRawData(Ptr, k); } ProgramPoint() : Data(0) {} void setRawData(const void* Ptr, Kind k) { assert ((reinterpret_cast(const_cast(Ptr)) & 0x7) == 0 && "Address must have at least an 8-byte alignment."); Data = reinterpret_cast(const_cast(Ptr)) | k; } public: unsigned getKind() const { return Data & 0x7; } void* getRawPtr() const { return reinterpret_cast(Data & ~0x7); } void* getRawData() const { return reinterpret_cast(Data); } static bool classof(const ProgramPoint*) { return true; } bool operator==(const ProgramPoint & RHS) const { return Data == RHS.Data; } bool operator!=(const ProgramPoint& RHS) const { return Data != RHS.Data; } void Profile(llvm::FoldingSetNodeID& ID) const { ID.AddInteger(getKind()); ID.AddPointer(getRawPtr()); } }; class BlockEntrance : public ProgramPoint { public: BlockEntrance(const CFGBlock* B) : ProgramPoint(B, BlockEntranceKind) {} CFGBlock* getBlock() const { return reinterpret_cast(getRawPtr()); } Stmt* getFirstStmt() const { CFGBlock* B = getBlock(); return B->empty() ? NULL : B->front(); } static bool classof(const ProgramPoint* Location) { return Location->getKind() == BlockEntranceKind; } }; class BlockExit : public ProgramPoint { public: BlockExit(const CFGBlock* B) : ProgramPoint(B, BlockExitKind) {} CFGBlock* getBlock() const { return reinterpret_cast(getRawPtr()); } Stmt* getLastStmt() const { CFGBlock* B = getBlock(); return B->empty() ? NULL : B->back(); } Stmt* getTerminator() const { return getBlock()->getTerminator(); } static bool classof(const ProgramPoint* Location) { return Location->getKind() == BlockExitKind; } }; class PostStmt : public ProgramPoint { protected: PostStmt(const Stmt* S, Kind k) : ProgramPoint(S, k) {} public: PostStmt(const Stmt* S) : ProgramPoint(S, PostStmtKind) {} Stmt* getStmt() const { return (Stmt*) getRawPtr(); } static bool classof(const ProgramPoint* Location) { unsigned k = Location->getKind(); return k == PostStmtKind || k == PostLoadKind; } }; class PostLoad : public PostStmt { public: PostLoad(const Stmt* S) : PostStmt(S, PostLoadKind) {} static bool classof(const ProgramPoint* Location) { return Location->getKind() == PostLoadKind; } }; class BlockEdge : public ProgramPoint { typedef std::pair BPair; public: BlockEdge(CFG& cfg, const CFGBlock* B1, const CFGBlock* B2); /// This ctor forces the BlockEdge to be constructed using an explicitly /// allocated pair object that is stored in the CFG. This is usually /// used to construct edges representing jumps using computed gotos. BlockEdge(CFG& cfg, const CFGBlock* B1, const CFGBlock* B2, bool) : ProgramPoint(cfg.getBlockEdgeImpl(B1, B2), BlockEdgeAuxKind) {} CFGBlock* getSrc() const; CFGBlock* getDst() const; static bool classof(const ProgramPoint* Location) { unsigned k = Location->getKind(); return k >= BlockEdgeSrcKind && k <= BlockEdgeAuxKind; } }; } // end namespace clang namespace llvm { // Traits specialization for DenseMap template <> struct DenseMapInfo { static inline clang::ProgramPoint getEmptyKey() { uintptr_t x = reinterpret_cast(DenseMapInfo::getEmptyKey()) & ~0x7; return clang::BlockEntrance(reinterpret_cast(x)); } static inline clang::ProgramPoint getTombstoneKey() { uintptr_t x = reinterpret_cast(DenseMapInfo::getTombstoneKey()) & ~0x7; return clang::BlockEntrance(reinterpret_cast(x)); } static unsigned getHashValue(const clang::ProgramPoint& Loc) { return DenseMapInfo::getHashValue(Loc.getRawData()); } static bool isEqual(const clang::ProgramPoint& L, const clang::ProgramPoint& R) { return L == R; } static bool isPod() { return true; } }; } // end namespace llvm #endif