diff options
Diffstat (limited to 'src/analysis/cfg.h')
-rw-r--r-- | src/analysis/cfg.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/analysis/cfg.h b/src/analysis/cfg.h index a7f67c041..ff9b05849 100644 --- a/src/analysis/cfg.h +++ b/src/analysis/cfg.h @@ -58,6 +58,7 @@ private: std::vector<Expression*> insts; std::vector<BasicBlock*> predecessors; std::vector<BasicBlock*> successors; + friend CFG; }; @@ -78,9 +79,32 @@ struct CFG { private: std::vector<BasicBlock> blocks; + friend BasicBlock; }; +// A helper class that computes block indexes for a CFG and allows querying of +// them. +struct CFGBlockIndexes { + CFGBlockIndexes(const CFG& cfg); + + // Gets the index of the basic block in which the instruction resides. + Index get(Expression* expr) const { + auto iter = map.find(expr); + if (iter == map.end()) { + // There is no entry for this, which can be the case for control flow + // structures, or for unreachable code. + return InvalidBlock; + } + return iter->second; + } + + enum { InvalidBlock = Index(-1) }; + +private: + std::unordered_map<Expression*, Index> map; +}; + } // namespace wasm::analysis #include "cfg-impl.h" |