LLVM 19.0.0git
MachinePostDominators.h
Go to the documentation of this file.
1//===- llvm/CodeGen/MachinePostDominators.h ----------------------*- C++ -*-==//
2//
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
6//
7//===----------------------------------------------------------------------===//
8//
9// This file exposes interfaces to post dominance information for
10// target-specific code.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_CODEGEN_MACHINEPOSTDOMINATORS_H
15#define LLVM_CODEGEN_MACHINEPOSTDOMINATORS_H
16
19#include <memory>
20
21namespace llvm {
22
23///
24/// MachinePostDominatorTree - an analysis pass wrapper for DominatorTree
25/// used to compute the post-dominator tree for MachineFunctions.
26///
29 std::unique_ptr<PostDomTreeT> PDT;
30
31public:
32 static char ID;
33
35
37 if (!PDT)
38 PDT.reset(new PostDomTreeT());
39 return *PDT;
40 }
41
43
44 MachineDomTreeNode *getRootNode() const { return PDT->getRootNode(); }
45
47 return PDT->getNode(BB);
48 }
49
51 return PDT->getNode(BB);
52 }
53
55 const MachineDomTreeNode *B) const {
56 return PDT->dominates(A, B);
57 }
58
59 bool dominates(const MachineBasicBlock *A, const MachineBasicBlock *B) const {
60 return PDT->dominates(A, B);
61 }
62
64 const MachineDomTreeNode *B) const {
65 return PDT->properlyDominates(A, B);
66 }
67
69 const MachineBasicBlock *B) const {
70 return PDT->properlyDominates(A, B);
71 }
72
74 return PDT->isVirtualRoot(Node);
75 }
76
78 MachineBasicBlock *B) const {
79 return PDT->findNearestCommonDominator(A, B);
80 }
81
82 /// Returns the nearest common dominator of the given blocks.
83 /// If that tree node is a virtual root, a nullptr will be returned.
86
87 bool runOnMachineFunction(MachineFunction &MF) override;
88 void getAnalysisUsage(AnalysisUsage &AU) const override;
89 void releaseMemory() override { PDT.reset(nullptr); }
90 void verifyAnalysis() const override;
91 void print(llvm::raw_ostream &OS, const Module *M = nullptr) const override;
92};
93} //end of namespace llvm
94
95#endif
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
DenseMap< Block *, BlockRelaxAux > Blocks
Definition: ELF_riscv.cpp:507
raw_pwrite_stream & OS
Represent the analysis usage information of a pass.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
Base class for the actual dominator tree node.
Core dominator tree base class.
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:311
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
MachinePostDominatorTree - an analysis pass wrapper for DominatorTree used to compute the post-domina...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
FunctionPass * createMachinePostDominatorTreePass()
bool isVirtualRoot(const MachineDomTreeNode *Node) const
bool dominates(const MachineDomTreeNode *A, const MachineDomTreeNode *B) const
MachineDomTreeNode * getRootNode() const
MachineDomTreeNode * operator[](MachineBasicBlock *BB) const
bool properlyDominates(const MachineDomTreeNode *A, const MachineDomTreeNode *B) const
void verifyAnalysis() const override
verifyAnalysis() - This member can be implemented by a analysis pass to check state of analysis infor...
bool runOnMachineFunction(MachineFunction &MF) override
runOnMachineFunction - This method must be overloaded to perform the desired machine code transformat...
void print(llvm::raw_ostream &OS, const Module *M=nullptr) const override
print - Print out the internal state of the pass.
MachineBasicBlock * findNearestCommonDominator(MachineBasicBlock *A, MachineBasicBlock *B) const
bool dominates(const MachineBasicBlock *A, const MachineBasicBlock *B) const
MachineDomTreeNode * getNode(MachineBasicBlock *BB) const
bool properlyDominates(const MachineBasicBlock *A, const MachineBasicBlock *B) const
void releaseMemory() override
releaseMemory() - This member can be implemented by a pass if it wants to be able to release its memo...
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18