LLVM 19.0.0git
TailDuplicator.h
Go to the documentation of this file.
1//===- llvm/CodeGen/TailDuplicator.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 defines the TailDuplicator class. Used by the
10// TailDuplication pass, and MachineBlockPlacement.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_CODEGEN_TAILDUPLICATOR_H
15#define LLVM_CODEGEN_TAILDUPLICATOR_H
16
17#include "llvm/ADT/DenseMap.h"
18#include "llvm/ADT/DenseSet.h"
21#include <utility>
22#include <vector>
23
24namespace llvm {
25
26template <typename T, unsigned int N> class SmallSetVector;
27template <typename Fn> class function_ref;
28class MBFIWrapper;
29class MachineBasicBlock;
30class MachineBranchProbabilityInfo;
31class MachineFunction;
32class MachineInstr;
33class MachineModuleInfo;
34class MachineRegisterInfo;
35class ProfileSummaryInfo;
36class TargetRegisterInfo;
37
38/// Utility class to perform tail duplication.
40 const TargetInstrInfo *TII;
41 const TargetRegisterInfo *TRI;
45 MBFIWrapper *MBFI;
47 bool PreRegAlloc;
48 bool LayoutMode;
49 unsigned TailDupSize;
50
51 // A list of virtual registers for which to update SSA form.
52 SmallVector<Register, 16> SSAUpdateVRs;
53
54 // For each virtual register in SSAUpdateVals keep a list of source virtual
55 // registers.
56 using AvailableValsTy = std::vector<std::pair<MachineBasicBlock *, Register>>;
57
59
60public:
61 /// Prepare to run on a specific machine function.
62 /// @param MF - Function that will be processed
63 /// @param PreRegAlloc - true if used before register allocation
64 /// @param MBPI - Branch Probability Info. Used to propagate correct
65 /// probabilities when modifying the CFG.
66 /// @param LayoutMode - When true, don't use the existing layout to make
67 /// decisions.
68 /// @param TailDupSize - Maxmimum size of blocks to tail-duplicate. Zero
69 /// default implies using the command line value TailDupSize.
70 void initMF(MachineFunction &MF, bool PreRegAlloc,
72 MBFIWrapper *MBFI,
74 bool LayoutMode, unsigned TailDupSize = 0);
75
77 static bool isSimpleBB(MachineBasicBlock *TailBB);
78 bool shouldTailDuplicate(bool IsSimple, MachineBasicBlock &TailBB);
79
80 /// Returns true if TailBB can successfully be duplicated into PredBB
82
83 /// Tail duplicate a single basic block into its predecessors, and then clean
84 /// up.
85 /// If \p DuplicatePreds is not null, it will be updated to contain the list
86 /// of predecessors that received a copy of \p MBB.
87 /// If \p RemovalCallback is non-null. It will be called before MBB is
88 /// deleted.
89 /// If \p CandidatePtr is not null, duplicate into these blocks only.
91 bool IsSimple, MachineBasicBlock *MBB,
92 MachineBasicBlock *ForcedLayoutPred,
93 SmallVectorImpl<MachineBasicBlock*> *DuplicatedPreds = nullptr,
94 function_ref<void(MachineBasicBlock *)> *RemovalCallback = nullptr,
95 SmallVectorImpl<MachineBasicBlock *> *CandidatePtr = nullptr);
96
97private:
99
100 void addSSAUpdateEntry(Register OrigReg, Register NewReg,
102 void processPHI(MachineInstr *MI, MachineBasicBlock *TailBB,
103 MachineBasicBlock *PredBB,
105 SmallVectorImpl<std::pair<Register, RegSubRegPair>> &Copies,
106 const DenseSet<Register> &UsedByPhi, bool Remove);
107 void duplicateInstruction(MachineInstr *MI, MachineBasicBlock *TailBB,
108 MachineBasicBlock *PredBB,
110 const DenseSet<Register> &UsedByPhi);
111 void updateSuccessorsPHIs(MachineBasicBlock *FromBB, bool isDead,
114 bool canCompletelyDuplicateBB(MachineBasicBlock &BB);
115 bool duplicateSimpleBB(MachineBasicBlock *TailBB,
117 const DenseSet<Register> &RegsUsedByPhi);
118 bool tailDuplicate(bool IsSimple,
119 MachineBasicBlock *TailBB,
120 MachineBasicBlock *ForcedLayoutPred,
124 void appendCopies(MachineBasicBlock *MBB,
125 SmallVectorImpl<std::pair<Register, RegSubRegPair>> &CopyInfos,
127
128 void removeDeadBlock(
130 function_ref<void(MachineBasicBlock *)> *RemovalCallback = nullptr);
131};
132
133} // end namespace llvm
134
135#endif // LLVM_CODEGEN_TAILDUPLICATOR_H
MachineBasicBlock & MBB
This file defines the DenseMap class.
This file defines the DenseSet and SmallDenseSet classes.
IRTranslator LLVM IR MI
SI Lower i1 Copies
This file defines the SmallVector class.
Implements a dense probed hash-table based set.
Definition: DenseSet.h:271
Representation of each machine instruction.
Definition: MachineInstr.h:69
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
Analysis providing profile information.
Wrapper class representing virtual and physical registers.
Definition: Register.h:19
A SetVector that performs no allocations if smaller than a certain size.
Definition: SetVector.h:370
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Definition: SmallVector.h:586
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1209
Utility class to perform tail duplication.
void initMF(MachineFunction &MF, bool PreRegAlloc, const MachineBranchProbabilityInfo *MBPI, MBFIWrapper *MBFI, ProfileSummaryInfo *PSI, bool LayoutMode, unsigned TailDupSize=0)
Prepare to run on a specific machine function.
bool tailDuplicateBlocks()
Look for small blocks that are unconditionally branched to and do not fall through.
bool tailDuplicateAndUpdate(bool IsSimple, MachineBasicBlock *MBB, MachineBasicBlock *ForcedLayoutPred, SmallVectorImpl< MachineBasicBlock * > *DuplicatedPreds=nullptr, function_ref< void(MachineBasicBlock *)> *RemovalCallback=nullptr, SmallVectorImpl< MachineBasicBlock * > *CandidatePtr=nullptr)
Tail duplicate a single basic block into its predecessors, and then clean up.
static bool isSimpleBB(MachineBasicBlock *TailBB)
True if this BB has only one unconditional jump.
bool canTailDuplicate(MachineBasicBlock *TailBB, MachineBasicBlock *PredBB)
Returns true if TailBB can successfully be duplicated into PredBB.
bool shouldTailDuplicate(bool IsSimple, MachineBasicBlock &TailBB)
Determine if it is profitable to duplicate this block.
TargetInstrInfo - Interface to description of machine instruction set.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
An efficient, type-erasing, non-owning reference to a callable.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
A pair composed of a register and a sub-register index.