1 //===- HexagonPacketizer.h - VLIW packetizer --------------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_LIB_TARGET_HEXAGON_HEXAGONVLIWPACKETIZER_H
10 #define LLVM_LIB_TARGET_HEXAGON_HEXAGONVLIWPACKETIZER_H
12 #include "llvm/CodeGen/DFAPacketizer.h"
13 #include "llvm/CodeGen/MachineBasicBlock.h"
14 #include "llvm/CodeGen/ScheduleDAG.h"
19 class HexagonInstrInfo
;
20 class HexagonRegisterInfo
;
21 class MachineBranchProbabilityInfo
;
22 class MachineFunction
;
24 class MachineLoopInfo
;
25 class TargetRegisterClass
;
27 class HexagonPacketizerList
: public VLIWPacketizerList
{
28 // Vector of instructions assigned to the packet that has just been created.
29 std::vector
<MachineInstr
*> OldPacketMIs
;
31 // Has the instruction been promoted to a dot-new instruction.
32 bool PromotedToDotNew
;
34 // Has the instruction been glued to allocframe.
35 bool GlueAllocframeStore
;
37 // Has the feeder instruction been glued to new value jump.
38 bool GlueToNewValueJump
;
40 // This holds the offset value, when pruning the dependences.
41 int64_t ChangedOffset
;
43 // Check if there is a dependence between some instruction already in this
44 // packet and this instruction.
47 // Only check for dependence if there are resources available to
48 // schedule this instruction.
49 bool FoundSequentialDependence
;
51 bool MemShufDisabled
= false;
53 // Track MIs with ignored dependence.
54 std::vector
<MachineInstr
*> IgnoreDepMIs
;
56 // Set to true if the packet contains an instruction that stalls with an
57 // instruction from the previous packet.
58 bool PacketStalls
= false;
61 /// A handle to the branch probability pass.
62 const MachineBranchProbabilityInfo
*MBPI
;
63 const MachineLoopInfo
*MLI
;
66 const HexagonInstrInfo
*HII
;
67 const HexagonRegisterInfo
*HRI
;
71 HexagonPacketizerList(MachineFunction
&MF
, MachineLoopInfo
&MLI
,
73 const MachineBranchProbabilityInfo
*MBPI
,
76 // initPacketizerState - initialize some internal flags.
77 void initPacketizerState() override
;
79 // ignorePseudoInstruction - Ignore bundling of pseudo instructions.
80 bool ignorePseudoInstruction(const MachineInstr
&MI
,
81 const MachineBasicBlock
*MBB
) override
;
83 // isSoloInstruction - return true if instruction MI can not be packetized
84 // with any other instruction, which means that MI itself is a packet.
85 bool isSoloInstruction(const MachineInstr
&MI
) override
;
87 // isLegalToPacketizeTogether - Is it legal to packetize SUI and SUJ
89 bool isLegalToPacketizeTogether(SUnit
*SUI
, SUnit
*SUJ
) override
;
91 // isLegalToPruneDependencies - Is it legal to prune dependece between SUI
93 bool isLegalToPruneDependencies(SUnit
*SUI
, SUnit
*SUJ
) override
;
95 bool foundLSInPacket();
96 MachineBasicBlock::iterator
addToPacket(MachineInstr
&MI
) override
;
97 void endPacket(MachineBasicBlock
*MBB
,
98 MachineBasicBlock::iterator MI
) override
;
99 bool shouldAddToPacket(const MachineInstr
&MI
) override
;
101 void unpacketizeSoloInstrs(MachineFunction
&MF
);
104 bool getmemShufDisabled() {
105 return MemShufDisabled
;
107 void setmemShufDisabled(bool val
) {
108 MemShufDisabled
= val
;
110 bool isCallDependent(const MachineInstr
&MI
, SDep::Kind DepType
,
112 bool promoteToDotCur(MachineInstr
&MI
, SDep::Kind DepType
,
113 MachineBasicBlock::iterator
&MII
,
114 const TargetRegisterClass
*RC
);
115 bool canPromoteToDotCur(const MachineInstr
&MI
, const SUnit
*PacketSU
,
116 unsigned DepReg
, MachineBasicBlock::iterator
&MII
,
117 const TargetRegisterClass
*RC
);
118 void cleanUpDotCur();
120 bool promoteToDotNew(MachineInstr
&MI
, SDep::Kind DepType
,
121 MachineBasicBlock::iterator
&MII
,
122 const TargetRegisterClass
*RC
);
123 bool canPromoteToDotNew(const MachineInstr
&MI
, const SUnit
*PacketSU
,
124 unsigned DepReg
, MachineBasicBlock::iterator
&MII
,
125 const TargetRegisterClass
*RC
);
126 bool canPromoteToNewValue(const MachineInstr
&MI
, const SUnit
*PacketSU
,
127 unsigned DepReg
, MachineBasicBlock::iterator
&MII
);
128 bool canPromoteToNewValueStore(const MachineInstr
&MI
,
129 const MachineInstr
&PacketMI
, unsigned DepReg
);
130 bool demoteToDotOld(MachineInstr
&MI
);
131 bool useCallersSP(MachineInstr
&MI
);
132 void useCalleesSP(MachineInstr
&MI
);
133 bool updateOffset(SUnit
*SUI
, SUnit
*SUJ
);
134 void undoChangedOffset(MachineInstr
&MI
);
135 bool arePredicatesComplements(MachineInstr
&MI1
, MachineInstr
&MI2
);
136 bool restrictingDepExistInPacket(MachineInstr
&, unsigned);
137 bool isNewifiable(const MachineInstr
&MI
, const TargetRegisterClass
*NewRC
);
138 bool isCurifiable(MachineInstr
&MI
);
139 bool cannotCoexist(const MachineInstr
&MI
, const MachineInstr
&MJ
);
141 bool isPromotedToDotNew() const {
142 return PromotedToDotNew
;
145 bool tryAllocateResourcesForConstExt(bool Reserve
);
146 bool canReserveResourcesForConstExt();
147 void reserveResourcesForConstExt();
148 bool hasDeadDependence(const MachineInstr
&I
, const MachineInstr
&J
);
149 bool hasControlDependence(const MachineInstr
&I
, const MachineInstr
&J
);
150 bool hasRegMaskDependence(const MachineInstr
&I
, const MachineInstr
&J
);
151 bool hasDualStoreDependence(const MachineInstr
&I
, const MachineInstr
&J
);
152 bool producesStall(const MachineInstr
&MI
);
155 } // end namespace llvm
157 #endif // LLVM_LIB_TARGET_HEXAGON_HEXAGONVLIWPACKETIZER_H