Diego Caballero | 168d04d | 2018-05-21 18:14:23 +0000 | [diff] [blame] | 1 | //===-- VPlanHCFGBuilder.h --------------------------------------*- C++ -*-===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Diego Caballero | 168d04d | 2018-05-21 18:14:23 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | /// |
| 9 | /// \file |
| 10 | /// This file defines the VPlanHCFGBuilder class which contains the public |
| 11 | /// interface (buildHierarchicalCFG) to build a VPlan-based Hierarchical CFG |
| 12 | /// (H-CFG) for an incoming IR. |
| 13 | /// |
| 14 | /// A H-CFG in VPlan is a control-flow graph whose nodes are VPBasicBlocks |
| 15 | /// and/or VPRegionBlocks (i.e., other H-CFGs). The outermost H-CFG of a VPlan |
| 16 | /// consists of a VPRegionBlock, denoted Top Region, which encloses any other |
| 17 | /// VPBlockBase in the H-CFG. This guarantees that any VPBlockBase in the H-CFG |
| 18 | /// other than the Top Region will have a parent VPRegionBlock and allows us |
| 19 | /// to easily add more nodes before/after the main vector loop (such as the |
| 20 | /// reduction epilogue). |
| 21 | /// |
| 22 | //===----------------------------------------------------------------------===// |
| 23 | |
| 24 | #ifndef LLVM_TRANSFORMS_VECTORIZE_VPLAN_VPLANHCFGBUILDER_H |
| 25 | #define LLVM_TRANSFORMS_VECTORIZE_VPLAN_VPLANHCFGBUILDER_H |
| 26 | |
| 27 | #include "VPlan.h" |
Diego Caballero | 2a34ac8 | 2018-07-30 21:33:31 +0000 | [diff] [blame] | 28 | #include "VPlanDominatorTree.h" |
Diego Caballero | 168d04d | 2018-05-21 18:14:23 +0000 | [diff] [blame] | 29 | #include "VPlanVerifier.h" |
| 30 | |
| 31 | namespace llvm { |
| 32 | |
| 33 | class Loop; |
Diego Caballero | 2a34ac8 | 2018-07-30 21:33:31 +0000 | [diff] [blame] | 34 | class VPlanTestBase; |
Diego Caballero | 168d04d | 2018-05-21 18:14:23 +0000 | [diff] [blame] | 35 | |
| 36 | /// Main class to build the VPlan H-CFG for an incoming IR. |
| 37 | class VPlanHCFGBuilder { |
Diego Caballero | 2a34ac8 | 2018-07-30 21:33:31 +0000 | [diff] [blame] | 38 | friend VPlanTestBase; |
| 39 | |
Diego Caballero | 168d04d | 2018-05-21 18:14:23 +0000 | [diff] [blame] | 40 | private: |
| 41 | // The outermost loop of the input loop nest considered for vectorization. |
| 42 | Loop *TheLoop; |
| 43 | |
| 44 | // Loop Info analysis. |
| 45 | LoopInfo *LI; |
| 46 | |
Diego Caballero | 2a34ac8 | 2018-07-30 21:33:31 +0000 | [diff] [blame] | 47 | // The VPlan that will contain the H-CFG we are building. |
| 48 | VPlan &Plan; |
| 49 | |
Diego Caballero | 168d04d | 2018-05-21 18:14:23 +0000 | [diff] [blame] | 50 | // VPlan verifier utility. |
| 51 | VPlanVerifier Verifier; |
| 52 | |
Diego Caballero | 2a34ac8 | 2018-07-30 21:33:31 +0000 | [diff] [blame] | 53 | // Dominator analysis for VPlan plain CFG to be used in the |
| 54 | // construction of the H-CFG. This analysis is no longer valid once regions |
| 55 | // are introduced. |
| 56 | VPDominatorTree VPDomTree; |
Diego Caballero | 168d04d | 2018-05-21 18:14:23 +0000 | [diff] [blame] | 57 | |
Diego Caballero | 2a34ac8 | 2018-07-30 21:33:31 +0000 | [diff] [blame] | 58 | /// Build plain CFG for TheLoop. Return a new VPRegionBlock (TopRegion) |
| 59 | /// enclosing the plain CFG. |
| 60 | VPRegionBlock *buildPlainCFG(); |
| 61 | |
| 62 | public: |
| 63 | VPlanHCFGBuilder(Loop *Lp, LoopInfo *LI, VPlan &P) |
| 64 | : TheLoop(Lp), LI(LI), Plan(P) {} |
| 65 | |
| 66 | /// Build H-CFG for TheLoop and update Plan accordingly. |
| 67 | void buildHierarchicalCFG(); |
Diego Caballero | 168d04d | 2018-05-21 18:14:23 +0000 | [diff] [blame] | 68 | }; |
| 69 | } // namespace llvm |
| 70 | |
| 71 | #endif // LLVM_TRANSFORMS_VECTORIZE_VPLAN_VPLANHCFGBUILDER_H |