diff options
Diffstat (limited to 'src/analysis/cfg.h')
-rw-r--r-- | src/analysis/cfg.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/analysis/cfg.h b/src/analysis/cfg.h index 3b980f410..ba4d7a774 100644 --- a/src/analysis/cfg.h +++ b/src/analysis/cfg.h @@ -30,23 +30,7 @@ namespace wasm::analysis { -struct BasicBlock; - -struct CFG { - // Iterate through basic blocks. - using iterator = std::vector<BasicBlock>::const_iterator; - iterator begin() const { return blocks.cbegin(); } - iterator end() const { return blocks.cend(); } - size_t size() const { return blocks.size(); } - - static CFG fromFunction(Function* func); - - void print(std::ostream& os, Module* wasm = nullptr) const; - -private: - std::vector<BasicBlock> blocks; - friend BasicBlock; -}; +struct CFG; struct BasicBlock { using iterator = std::vector<Expression*>::const_iterator; @@ -72,6 +56,22 @@ private: friend CFG; }; +struct CFG { + // Iterate through basic blocks. + using iterator = std::vector<BasicBlock>::const_iterator; + iterator begin() const { return blocks.cbegin(); } + iterator end() const { return blocks.cend(); } + size_t size() const { return blocks.size(); } + + static CFG fromFunction(Function* func); + + void print(std::ostream& os, Module* wasm = nullptr) const; + +private: + std::vector<BasicBlock> blocks; + friend BasicBlock; +}; + } // namespace wasm::analysis #include "cfg-impl.h" |