Constructors
Declared in <llvm/CodeGen/MachineLoopInfo.h>
Construct an empty MachineLoopInfo.
constexpr
MachineLoopInfo() = default;
» more...
Deleted copy constructor; MachineLoopInfo is not copyable.
MachineLoopInfo(MachineLoopInfo const& Unused) = delete;
» more...
Move-construct MachineLoopInfo from another instance.
constexpr
MachineLoopInfo(MachineLoopInfo&& Arg) = default;
» more...
Construct MachineLoopInfo by analyzing MDT.
explicit
MachineLoopInfo(MachineDominatorTree& MDT);
» more...
| Name | Description |
|---|---|
| Unused | Ignored; copy construction is not supported. |
| Arg | MachineLoopInfo to move from. |
| MDT | Dominator tree used to discover natural loops. |