Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 1 | //===- HexagonPacketizer.h - VLIW packetizer --------------------*- 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 |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #ifndef LLVM_LIB_TARGET_HEXAGON_HEXAGONVLIWPACKETIZER_H |
| 10 | #define LLVM_LIB_TARGET_HEXAGON_HEXAGONVLIWPACKETIZER_H |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 11 | |
| 12 | #include "llvm/CodeGen/DFAPacketizer.h" |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 13 | #include "llvm/CodeGen/MachineBasicBlock.h" |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 14 | #include "llvm/CodeGen/ScheduleDAG.h" |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 15 | #include <vector> |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 16 | |
| 17 | namespace llvm { |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 18 | |
Benjamin Kramer | 7356498 | 2017-01-30 14:55:33 +0000 | [diff] [blame] | 19 | class HexagonInstrInfo; |
| 20 | class HexagonRegisterInfo; |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 21 | class MachineBranchProbabilityInfo; |
| 22 | class MachineFunction; |
| 23 | class MachineInstr; |
| 24 | class MachineLoopInfo; |
| 25 | class TargetRegisterClass; |
Benjamin Kramer | 7356498 | 2017-01-30 14:55:33 +0000 | [diff] [blame] | 26 | |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 27 | class HexagonPacketizerList : public VLIWPacketizerList { |
| 28 | // Vector of instructions assigned to the packet that has just been created. |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 29 | std::vector<MachineInstr *> OldPacketMIs; |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 30 | |
| 31 | // Has the instruction been promoted to a dot-new instruction. |
| 32 | bool PromotedToDotNew; |
| 33 | |
| 34 | // Has the instruction been glued to allocframe. |
| 35 | bool GlueAllocframeStore; |
| 36 | |
| 37 | // Has the feeder instruction been glued to new value jump. |
| 38 | bool GlueToNewValueJump; |
| 39 | |
Krzysztof Parzyszek | 8f174dd | 2017-10-11 15:51:44 +0000 | [diff] [blame] | 40 | // This holds the offset value, when pruning the dependences. |
| 41 | int64_t ChangedOffset; |
| 42 | |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 43 | // Check if there is a dependence between some instruction already in this |
| 44 | // packet and this instruction. |
| 45 | bool Dependence; |
| 46 | |
| 47 | // Only check for dependence if there are resources available to |
| 48 | // schedule this instruction. |
| 49 | bool FoundSequentialDependence; |
| 50 | |
Krzysztof Parzyszek | a8ab1b7 | 2017-12-11 18:57:54 +0000 | [diff] [blame] | 51 | bool MemShufDisabled = false; |
| 52 | |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 53 | // Track MIs with ignored dependence. |
| 54 | std::vector<MachineInstr*> IgnoreDepMIs; |
| 55 | |
Krzysztof Parzyszek | 9aaf923 | 2017-05-02 18:12:19 +0000 | [diff] [blame] | 56 | // Set to true if the packet contains an instruction that stalls with an |
| 57 | // instruction from the previous packet. |
Krzysztof Parzyszek | fca6fae | 2017-05-02 18:29:49 +0000 | [diff] [blame] | 58 | bool PacketStalls = false; |
Krzysztof Parzyszek | 9aaf923 | 2017-05-02 18:12:19 +0000 | [diff] [blame] | 59 | |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 60 | protected: |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 61 | /// A handle to the branch probability pass. |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 62 | const MachineBranchProbabilityInfo *MBPI; |
| 63 | const MachineLoopInfo *MLI; |
| 64 | |
| 65 | private: |
| 66 | const HexagonInstrInfo *HII; |
| 67 | const HexagonRegisterInfo *HRI; |
Krzysztof Parzyszek | 39a979c | 2018-08-17 14:24:24 +0000 | [diff] [blame] | 68 | const bool Minimal; |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 69 | |
| 70 | public: |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 71 | HexagonPacketizerList(MachineFunction &MF, MachineLoopInfo &MLI, |
| 72 | AliasAnalysis *AA, |
Krzysztof Parzyszek | 39a979c | 2018-08-17 14:24:24 +0000 | [diff] [blame] | 73 | const MachineBranchProbabilityInfo *MBPI, |
| 74 | bool Minimal); |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 75 | |
| 76 | // initPacketizerState - initialize some internal flags. |
| 77 | void initPacketizerState() override; |
| 78 | |
| 79 | // ignorePseudoInstruction - Ignore bundling of pseudo instructions. |
Duncan P. N. Exon Smith | 5702287 | 2016-02-27 19:09:00 +0000 | [diff] [blame] | 80 | bool ignorePseudoInstruction(const MachineInstr &MI, |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 81 | const MachineBasicBlock *MBB) override; |
| 82 | |
| 83 | // isSoloInstruction - return true if instruction MI can not be packetized |
| 84 | // with any other instruction, which means that MI itself is a packet. |
Duncan P. N. Exon Smith | 5702287 | 2016-02-27 19:09:00 +0000 | [diff] [blame] | 85 | bool isSoloInstruction(const MachineInstr &MI) override; |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 86 | |
| 87 | // isLegalToPacketizeTogether - Is it legal to packetize SUI and SUJ |
| 88 | // together. |
| 89 | bool isLegalToPacketizeTogether(SUnit *SUI, SUnit *SUJ) override; |
| 90 | |
| 91 | // isLegalToPruneDependencies - Is it legal to prune dependece between SUI |
| 92 | // and SUJ. |
| 93 | bool isLegalToPruneDependencies(SUnit *SUI, SUnit *SUJ) override; |
| 94 | |
Krzysztof Parzyszek | a8ab1b7 | 2017-12-11 18:57:54 +0000 | [diff] [blame] | 95 | bool foundLSInPacket(); |
Duncan P. N. Exon Smith | 5702287 | 2016-02-27 19:09:00 +0000 | [diff] [blame] | 96 | MachineBasicBlock::iterator addToPacket(MachineInstr &MI) override; |
| 97 | void endPacket(MachineBasicBlock *MBB, |
| 98 | MachineBasicBlock::iterator MI) override; |
| 99 | bool shouldAddToPacket(const MachineInstr &MI) override; |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 100 | |
| 101 | void unpacketizeSoloInstrs(MachineFunction &MF); |
| 102 | |
| 103 | protected: |
Krzysztof Parzyszek | a8ab1b7 | 2017-12-11 18:57:54 +0000 | [diff] [blame] | 104 | bool getmemShufDisabled() { |
| 105 | return MemShufDisabled; |
| 106 | }; |
| 107 | void setmemShufDisabled(bool val) { |
| 108 | MemShufDisabled = val; |
| 109 | }; |
Krzysztof Parzyszek | f0b34a5 | 2016-07-29 21:49:42 +0000 | [diff] [blame] | 110 | bool isCallDependent(const MachineInstr &MI, SDep::Kind DepType, |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 111 | unsigned DepReg); |
Krzysztof Parzyszek | f0b34a5 | 2016-07-29 21:49:42 +0000 | [diff] [blame] | 112 | bool promoteToDotCur(MachineInstr &MI, SDep::Kind DepType, |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 113 | MachineBasicBlock::iterator &MII, |
Krzysztof Parzyszek | f0b34a5 | 2016-07-29 21:49:42 +0000 | [diff] [blame] | 114 | const TargetRegisterClass *RC); |
| 115 | bool canPromoteToDotCur(const MachineInstr &MI, const SUnit *PacketSU, |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 116 | unsigned DepReg, MachineBasicBlock::iterator &MII, |
Krzysztof Parzyszek | f0b34a5 | 2016-07-29 21:49:42 +0000 | [diff] [blame] | 117 | const TargetRegisterClass *RC); |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 118 | void cleanUpDotCur(); |
| 119 | |
Krzysztof Parzyszek | f0b34a5 | 2016-07-29 21:49:42 +0000 | [diff] [blame] | 120 | bool promoteToDotNew(MachineInstr &MI, SDep::Kind DepType, |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 121 | MachineBasicBlock::iterator &MII, |
Krzysztof Parzyszek | f0b34a5 | 2016-07-29 21:49:42 +0000 | [diff] [blame] | 122 | const TargetRegisterClass *RC); |
| 123 | bool canPromoteToDotNew(const MachineInstr &MI, const SUnit *PacketSU, |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 124 | unsigned DepReg, MachineBasicBlock::iterator &MII, |
Krzysztof Parzyszek | f0b34a5 | 2016-07-29 21:49:42 +0000 | [diff] [blame] | 125 | const TargetRegisterClass *RC); |
| 126 | bool canPromoteToNewValue(const MachineInstr &MI, const SUnit *PacketSU, |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 127 | unsigned DepReg, MachineBasicBlock::iterator &MII); |
Krzysztof Parzyszek | f0b34a5 | 2016-07-29 21:49:42 +0000 | [diff] [blame] | 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); |
Krzysztof Parzyszek | 8f174dd | 2017-10-11 15:51:44 +0000 | [diff] [blame] | 133 | bool updateOffset(SUnit *SUI, SUnit *SUJ); |
| 134 | void undoChangedOffset(MachineInstr &MI); |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 135 | bool arePredicatesComplements(MachineInstr &MI1, MachineInstr &MI2); |
Krzysztof Parzyszek | f0b34a5 | 2016-07-29 21:49:42 +0000 | [diff] [blame] | 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); |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 140 | |
| 141 | bool isPromotedToDotNew() const { |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 142 | return PromotedToDotNew; |
| 143 | } |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 144 | |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 145 | bool tryAllocateResourcesForConstExt(bool Reserve); |
| 146 | bool canReserveResourcesForConstExt(); |
| 147 | void reserveResourcesForConstExt(); |
Krzysztof Parzyszek | f0b34a5 | 2016-07-29 21:49:42 +0000 | [diff] [blame] | 148 | bool hasDeadDependence(const MachineInstr &I, const MachineInstr &J); |
| 149 | bool hasControlDependence(const MachineInstr &I, const MachineInstr &J); |
Krzysztof Parzyszek | 1aaf41a | 2017-02-17 22:14:51 +0000 | [diff] [blame] | 150 | bool hasRegMaskDependence(const MachineInstr &I, const MachineInstr &J); |
Krzysztof Parzyszek | 6bfc657 | 2018-10-19 17:31:11 +0000 | [diff] [blame] | 151 | bool hasDualStoreDependence(const MachineInstr &I, const MachineInstr &J); |
Krzysztof Parzyszek | f0b34a5 | 2016-07-29 21:49:42 +0000 | [diff] [blame] | 152 | bool producesStall(const MachineInstr &MI); |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 153 | }; |
Krzysztof Parzyszek | 56bbf54 | 2015-12-16 19:36:12 +0000 | [diff] [blame] | 154 | |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 155 | } // end namespace llvm |
| 156 | |
| 157 | #endif // LLVM_LIB_TARGET_HEXAGON_HEXAGONVLIWPACKETIZER_H |