Current Path : /compat/linux/proc/68247/root/usr/src/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //compat/linux/proc/68247/root/usr/src/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ReachableCode.h |
//===- ReachableCode.h -----------------------------------------*- C++ --*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // A flow-sensitive, path-insensitive analysis of unreachable code. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_REACHABLECODE_H #define LLVM_CLANG_REACHABLECODE_H #include "clang/Basic/SourceLocation.h" //===----------------------------------------------------------------------===// // Forward declarations. //===----------------------------------------------------------------------===// namespace llvm { class BitVector; } namespace clang { class AnalysisDeclContext; class CFGBlock; } //===----------------------------------------------------------------------===// // API. //===----------------------------------------------------------------------===// namespace clang { namespace reachable_code { class Callback { virtual void anchor(); public: virtual ~Callback() {} virtual void HandleUnreachable(SourceLocation L, SourceRange R1, SourceRange R2) = 0; }; /// ScanReachableFromBlock - Mark all blocks reachable from Start. /// Returns the total number of blocks that were marked reachable. unsigned ScanReachableFromBlock(const CFGBlock *Start, llvm::BitVector &Reachable); void FindUnreachableCode(AnalysisDeclContext &AC, Callback &CB); }} // end namespace clang::reachable_code #endif