diff options
| author | 2015-06-24 14:11:45 +0000 | |
|---|---|---|
| committer | 2015-06-24 14:11:46 +0000 | |
| commit | 22c4edd865bfdea29e80a789cef70e8e51d2a3a5 (patch) | |
| tree | 310873c7bf2eee705d46bcdcb0022015969c4ae3 /compiler/optimizing/nodes.h | |
| parent | 2b1bc487d3fa84e4bac16e85112e5e45682ac0ba (diff) | |
| parent | 69ba7b7112c2277ac225615b37e6df74c055740d (diff) | |
Merge "ART: Run GraphChecker after Builder and SsaBuilder"
Diffstat (limited to 'compiler/optimizing/nodes.h')
| -rw-r--r-- | compiler/optimizing/nodes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index 581645f21a..0f5b1abbbf 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -160,6 +160,8 @@ class HGraph : public ArenaObject<kArenaAllocMisc> { const GrowableArray<HBasicBlock*>& GetBlocks() const { return blocks_; } HBasicBlock* GetBlock(size_t id) const { return blocks_.Get(id); } + bool IsInSsaForm() const { return in_ssa_form_; } + HBasicBlock* GetEntryBlock() const { return entry_block_; } HBasicBlock* GetExitBlock() const { return exit_block_; } bool HasExitBlock() const { return exit_block_ != nullptr; } |