[Codegen] Alter the default promotion for saturating adds and subs
[llvm-complete.git] / lib / Target / Hexagon / HexagonSubtarget.h
blob31157a0065d9b0b55aa93023f40d2ecff0d4b54a
1 //===- HexagonSubtarget.h - Define Subtarget for the Hexagon ----*- 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 declares the Hexagon specific subclass of TargetSubtarget.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_LIB_TARGET_HEXAGON_HEXAGONSUBTARGET_H
14 #define LLVM_LIB_TARGET_HEXAGON_HEXAGONSUBTARGET_H
16 #include "HexagonDepArch.h"
17 #include "HexagonFrameLowering.h"
18 #include "HexagonISelLowering.h"
19 #include "HexagonInstrInfo.h"
20 #include "HexagonRegisterInfo.h"
21 #include "HexagonSelectionDAGInfo.h"
22 #include "llvm/ADT/SmallSet.h"
23 #include "llvm/ADT/StringRef.h"
24 #include "llvm/CodeGen/ScheduleDAGMutation.h"
25 #include "llvm/CodeGen/TargetSubtargetInfo.h"
26 #include "llvm/MC/MCInstrItineraries.h"
27 #include <memory>
28 #include <string>
29 #include <vector>
31 #define GET_SUBTARGETINFO_HEADER
32 #include "HexagonGenSubtargetInfo.inc"
34 namespace llvm {
36 class MachineInstr;
37 class SDep;
38 class SUnit;
39 class TargetMachine;
40 class Triple;
42 class HexagonSubtarget : public HexagonGenSubtargetInfo {
43 virtual void anchor();
45 bool UseHVX64BOps = false;
46 bool UseHVX128BOps = false;
48 bool UseLongCalls = false;
49 bool UseMemops = false;
50 bool UsePackets = false;
51 bool UseNewValueJumps = false;
52 bool UseNewValueStores = false;
53 bool UseSmallData = false;
54 bool UseZRegOps = false;
56 bool HasMemNoShuf = false;
57 bool EnableDuplex = false;
58 bool ReservedR19 = false;
59 bool NoreturnStackElim = false;
61 public:
62 Hexagon::ArchEnum HexagonArchVersion;
63 Hexagon::ArchEnum HexagonHVXVersion = Hexagon::ArchEnum::NoArch;
64 CodeGenOpt::Level OptLevel;
65 /// True if the target should use Back-Skip-Back scheduling. This is the
66 /// default for V60.
67 bool UseBSBScheduling;
69 struct UsrOverflowMutation : public ScheduleDAGMutation {
70 void apply(ScheduleDAGInstrs *DAG) override;
72 struct HVXMemLatencyMutation : public ScheduleDAGMutation {
73 void apply(ScheduleDAGInstrs *DAG) override;
75 struct CallMutation : public ScheduleDAGMutation {
76 void apply(ScheduleDAGInstrs *DAG) override;
77 private:
78 bool shouldTFRICallBind(const HexagonInstrInfo &HII,
79 const SUnit &Inst1, const SUnit &Inst2) const;
81 struct BankConflictMutation : public ScheduleDAGMutation {
82 void apply(ScheduleDAGInstrs *DAG) override;
85 private:
86 std::string CPUString;
87 HexagonInstrInfo InstrInfo;
88 HexagonRegisterInfo RegInfo;
89 HexagonTargetLowering TLInfo;
90 HexagonSelectionDAGInfo TSInfo;
91 HexagonFrameLowering FrameLowering;
92 InstrItineraryData InstrItins;
94 public:
95 HexagonSubtarget(const Triple &TT, StringRef CPU, StringRef FS,
96 const TargetMachine &TM);
98 /// getInstrItins - Return the instruction itineraries based on subtarget
99 /// selection.
100 const InstrItineraryData *getInstrItineraryData() const override {
101 return &InstrItins;
103 const HexagonInstrInfo *getInstrInfo() const override { return &InstrInfo; }
104 const HexagonRegisterInfo *getRegisterInfo() const override {
105 return &RegInfo;
107 const HexagonTargetLowering *getTargetLowering() const override {
108 return &TLInfo;
110 const HexagonFrameLowering *getFrameLowering() const override {
111 return &FrameLowering;
113 const HexagonSelectionDAGInfo *getSelectionDAGInfo() const override {
114 return &TSInfo;
117 HexagonSubtarget &initializeSubtargetDependencies(StringRef CPU,
118 StringRef FS);
120 /// ParseSubtargetFeatures - Parses features string setting specified
121 /// subtarget options. Definition of function is auto generated by tblgen.
122 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
124 bool hasV5Ops() const {
125 return getHexagonArchVersion() >= Hexagon::ArchEnum::V5;
127 bool hasV5OpsOnly() const {
128 return getHexagonArchVersion() == Hexagon::ArchEnum::V5;
130 bool hasV55Ops() const {
131 return getHexagonArchVersion() >= Hexagon::ArchEnum::V55;
133 bool hasV55OpsOnly() const {
134 return getHexagonArchVersion() == Hexagon::ArchEnum::V55;
136 bool hasV60Ops() const {
137 return getHexagonArchVersion() >= Hexagon::ArchEnum::V60;
139 bool hasV60OpsOnly() const {
140 return getHexagonArchVersion() == Hexagon::ArchEnum::V60;
142 bool hasV62Ops() const {
143 return getHexagonArchVersion() >= Hexagon::ArchEnum::V62;
145 bool hasV62OpsOnly() const {
146 return getHexagonArchVersion() == Hexagon::ArchEnum::V62;
148 bool hasV65Ops() const {
149 return getHexagonArchVersion() >= Hexagon::ArchEnum::V65;
151 bool hasV65OpsOnly() const {
152 return getHexagonArchVersion() == Hexagon::ArchEnum::V65;
154 bool hasV66Ops() const {
155 return getHexagonArchVersion() >= Hexagon::ArchEnum::V66;
157 bool hasV66OpsOnly() const {
158 return getHexagonArchVersion() == Hexagon::ArchEnum::V66;
161 bool useLongCalls() const { return UseLongCalls; }
162 bool useMemops() const { return UseMemops; }
163 bool usePackets() const { return UsePackets; }
164 bool useNewValueJumps() const { return UseNewValueJumps; }
165 bool useNewValueStores() const { return UseNewValueStores; }
166 bool useSmallData() const { return UseSmallData; }
167 bool useZRegOps() const { return UseZRegOps; }
169 bool useHVXOps() const {
170 return HexagonHVXVersion > Hexagon::ArchEnum::NoArch;
172 bool useHVX128BOps() const { return useHVXOps() && UseHVX128BOps; }
173 bool useHVX64BOps() const { return useHVXOps() && UseHVX64BOps; }
175 bool hasMemNoShuf() const { return HasMemNoShuf; }
176 bool hasReservedR19() const { return ReservedR19; }
177 bool usePredicatedCalls() const;
179 bool noreturnStackElim() const { return NoreturnStackElim; }
181 bool useBSBScheduling() const { return UseBSBScheduling; }
182 bool enableMachineScheduler() const override;
184 // Always use the TargetLowering default scheduler.
185 // FIXME: This will use the vliw scheduler which is probably just hurting
186 // compiler time and will be removed eventually anyway.
187 bool enableMachineSchedDefaultSched() const override { return false; }
189 AntiDepBreakMode getAntiDepBreakMode() const override { return ANTIDEP_ALL; }
190 bool enablePostRAScheduler() const override { return true; }
192 bool enableSubRegLiveness() const override;
194 const std::string &getCPUString () const { return CPUString; }
196 const Hexagon::ArchEnum &getHexagonArchVersion() const {
197 return HexagonArchVersion;
200 void getPostRAMutations(
201 std::vector<std::unique_ptr<ScheduleDAGMutation>> &Mutations)
202 const override;
204 void getSMSMutations(
205 std::vector<std::unique_ptr<ScheduleDAGMutation>> &Mutations)
206 const override;
208 /// Enable use of alias analysis during code generation (during MI
209 /// scheduling, DAGCombine, etc.).
210 bool useAA() const override;
212 /// Perform target specific adjustments to the latency of a schedule
213 /// dependency.
214 void adjustSchedDependency(SUnit *def, SUnit *use, SDep& dep) const override;
216 unsigned getVectorLength() const {
217 assert(useHVXOps());
218 if (useHVX64BOps())
219 return 64;
220 if (useHVX128BOps())
221 return 128;
222 llvm_unreachable("Invalid HVX vector length settings");
225 ArrayRef<MVT> getHVXElementTypes() const {
226 static MVT Types[] = { MVT::i8, MVT::i16, MVT::i32 };
227 return makeArrayRef(Types);
230 bool isHVXVectorType(MVT VecTy, bool IncludeBool = false) const {
231 if (!VecTy.isVector() || !useHVXOps() || VecTy.isScalableVector())
232 return false;
233 MVT ElemTy = VecTy.getVectorElementType();
234 if (!IncludeBool && ElemTy == MVT::i1)
235 return false;
237 unsigned HwLen = getVectorLength();
238 unsigned NumElems = VecTy.getVectorNumElements();
239 ArrayRef<MVT> ElemTypes = getHVXElementTypes();
241 if (IncludeBool && ElemTy == MVT::i1) {
242 // Special case for the v512i1, etc.
243 if (8*HwLen == NumElems)
244 return true;
245 // Boolean HVX vector types are formed from regular HVX vector types
246 // by replacing the element type with i1.
247 for (MVT T : ElemTypes)
248 if (NumElems * T.getSizeInBits() == 8*HwLen)
249 return true;
250 return false;
253 unsigned VecWidth = VecTy.getSizeInBits();
254 if (VecWidth != 8*HwLen && VecWidth != 16*HwLen)
255 return false;
256 return llvm::any_of(ElemTypes, [ElemTy] (MVT T) { return ElemTy == T; });
259 unsigned getTypeAlignment(MVT Ty) const {
260 if (isHVXVectorType(Ty, true))
261 return getVectorLength();
262 return Ty.getSizeInBits() / 8;
265 unsigned getL1CacheLineSize() const;
266 unsigned getL1PrefetchDistance() const;
268 private:
269 // Helper function responsible for increasing the latency only.
270 void updateLatency(MachineInstr &SrcInst, MachineInstr &DstInst, SDep &Dep)
271 const;
272 void restoreLatency(SUnit *Src, SUnit *Dst) const;
273 void changeLatency(SUnit *Src, SUnit *Dst, unsigned Lat) const;
274 bool isBestZeroLatency(SUnit *Src, SUnit *Dst, const HexagonInstrInfo *TII,
275 SmallSet<SUnit*, 4> &ExclSrc, SmallSet<SUnit*, 4> &ExclDst) const;
278 } // end namespace llvm
280 #endif // LLVM_LIB_TARGET_HEXAGON_HEXAGONSUBTARGET_H