LLVM 24.0.0git
HexagonSubtarget.cpp
Go to the documentation of this file.
1//===- HexagonSubtarget.cpp - Hexagon Subtarget Information ---------------===//
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 implements the Hexagon specific subclass of TargetSubtarget.
10//
11//===----------------------------------------------------------------------===//
12
13#include "HexagonSubtarget.h"
14#include "HexagonInstrInfo.h"
15#include "HexagonRegisterInfo.h"
17#include "llvm/ADT/STLExtras.h"
19#include "llvm/ADT/StringRef.h"
26#include "llvm/IR/IntrinsicsHexagon.h"
30#include <algorithm>
31#include <cassert>
32#include <optional>
33
34using namespace llvm;
35
36#define DEBUG_TYPE "hexagon-subtarget"
37
38#define GET_SUBTARGETINFO_CTOR
39#define GET_SUBTARGETINFO_TARGET_DESC
40#include "HexagonGenSubtargetInfo.inc"
41
42static cl::opt<bool> EnableBSBSched("enable-bsb-sched", cl::Hidden,
43 cl::init(true));
44
45static cl::opt<bool> EnableTCLatencySched("enable-tc-latency-sched", cl::Hidden,
46 cl::init(false));
47
48static cl::opt<bool>
49 EnableDotCurSched("enable-cur-sched", cl::Hidden, cl::init(true),
50 cl::desc("Enable the scheduler to generate .cur"));
51
52static cl::opt<bool>
53 DisableHexagonMISched("disable-hexagon-misched", cl::Hidden,
54 cl::desc("Disable Hexagon MI Scheduling"));
55
57 "hexagon-long-calls", cl::Hidden,
58 cl::desc("If present, forces/disables the use of long calls"));
59
60static cl::opt<bool>
61 EnablePredicatedCalls("hexagon-pred-calls", cl::Hidden,
62 cl::desc("Consider calls to be predicable"));
63
64static cl::opt<bool> SchedPredsCloser("sched-preds-closer", cl::Hidden,
65 cl::init(true));
66
67static cl::opt<bool> SchedRetvalOptimization("sched-retval-optimization",
68 cl::Hidden, cl::init(true));
69
71 "hexagon-check-bank-conflict", cl::Hidden, cl::init(true),
72 cl::desc("Enable checking for cache bank conflicts"));
73
75 StringRef FS, const TargetMachine &TM)
76 : HexagonGenSubtargetInfo(TT, CPU, /*TuneCPU*/ CPU, FS),
77 OptLevel(TM.getOptLevel()),
78 CPUString(std::string(Hexagon_MC::selectHexagonCPU(CPU))),
79 TargetTriple(TT), InstrInfo(initializeSubtargetDependencies(CPU, FS)),
80 TLInfo(TM, *this), InstrItins(getInstrItineraryForCPU(CPUString)) {
82 // Beware of the default constructor of InstrItineraryData: it will
83 // reset all members to 0.
84 assert(InstrItins.Itineraries != nullptr && "InstrItins not initialized");
85}
86
89 std::optional<Hexagon::ArchEnum> ArchVer = Hexagon::getCpu(CPUString);
90 if (ArchVer)
91 HexagonArchVersion = *ArchVer;
92 else
93 llvm_unreachable("Unrecognized Hexagon processor version");
94
95 UseHVX128BOps = false;
96 UseHVX64BOps = false;
97 UseAudioOps = false;
98 UseLongCalls = false;
99
100 SubtargetFeatures Features(FS);
101
102 // Turn on QFloat if the HVX version is v68+.
103 // The function ParseSubtargetFeatures will set feature bits and initialize
104 // subtarget's variables all in one, so there isn't a good way to preprocess
105 // the feature string, other than by tinkering with it directly.
106 auto IsQFloatFS = [](StringRef F) {
107 return F == "+hvx-qfloat" || F == "-hvx-qfloat";
108 };
109 if (!llvm::count_if(Features.getFeatures(), IsQFloatFS)) {
110 auto getHvxVersion = [&Features](StringRef FS) -> StringRef {
111 for (StringRef F : llvm::reverse(Features.getFeatures())) {
112 if (F.starts_with("+hvxv"))
113 return F;
114 }
115 for (StringRef F : llvm::reverse(Features.getFeatures())) {
116 if (F == "-hvx")
117 return StringRef();
118 if (F.starts_with("+hvx") || F == "-hvx")
119 return F.take_front(4); // Return "+hvx" or "-hvx".
120 }
121 return StringRef();
122 };
123
124 bool AddQFloat = false;
125 StringRef HvxVer = getHvxVersion(FS);
126 if (HvxVer.starts_with("+hvxv")) {
127 int Ver = 0;
128 if (!HvxVer.drop_front(5).consumeInteger(10, Ver) && Ver >= 68)
129 AddQFloat = true;
130 } else if (HvxVer == "+hvx") {
131 if (hasV68Ops())
132 AddQFloat = true;
133 }
134
135 if (AddQFloat)
136 Features.AddFeature("+hvx-qfloat");
137 }
138
139 std::string FeatureString = Features.getString();
140 ParseSubtargetFeatures(CPUString, /*TuneCPU*/ CPUString, FeatureString);
141
142 // Resolve the shadow call stack pointer register. At most one "scs-reg-rN"
143 // feature may be given; R18 is the default. R18 is chosen because it is the
144 // lowest callee-saved register that neither the Hexagon Linux kernel (which
145 // reserves R19 for the thread-info pointer) nor code that reserves the upper
146 // callee-saved range already claims.
147 static_assert(Hexagon::R27 - Hexagon::R16 == 11,
148 "Callee-saved R16-R27 are assumed to be consecutive");
149 SCSPReg = Hexagon::R18;
150 bool SCSRegSelected = false;
151 for (unsigned Reg = Hexagon::R16; Reg <= Hexagon::R27; ++Reg) {
152 if (!SCSPointerRegister[Reg])
153 continue;
154 if (SCSRegSelected)
156 "Only one shadow call stack pointer register may be selected");
157 SCSPReg = Reg;
158 SCSRegSelected = true;
159 }
160
161 if (useHVXV68Ops())
162 UseHVXFloatingPoint = UseHVXIEEEFPOps || UseHVXQFloatOps;
163
164 if (UseHVXQFloatOps && UseHVXIEEEFPOps && UseHVXFloatingPoint)
166 dbgs() << "Behavior is undefined for simultaneous qfloat and ieee hvx codegen...");
167
168 if (OverrideLongCalls.getPosition())
169 UseLongCalls = OverrideLongCalls;
170
172
173 if (isTinyCore()) {
174 // Tiny core has a single thread, so back-to-back scheduling is enabled by
175 // default.
176 if (!EnableBSBSched.getPosition())
177 UseBSBScheduling = false;
178 }
179
180 FeatureBitset FeatureBits = getFeatureBits();
182 setFeatureBits(FeatureBits.reset(Hexagon::FeatureDuplex));
183 setFeatureBits(Hexagon_MC::completeHVXFeatures(FeatureBits));
184
185 return *this;
186}
187
189 LibcallLoweringInfo &Info) const {
190 // The generic arithmetic/division helper routines (__adddf3, __divsi3, ...)
191 // exist in Hexagon's compiler-rt alongside the preferred __hexagon_*
192 // variants, so both are available. The __hexagon_* variant is the one that
193 // must be used; select it explicitly here.
194 static const struct {
195 const RTLIB::Libcall Op;
196 const RTLIB::LibcallImpl Impl;
197 } LibraryCalls[] = {
198 {RTLIB::SDIV_I32, RTLIB::impl___hexagon_divsi3},
199 {RTLIB::SDIV_I64, RTLIB::impl___hexagon_divdi3},
200 {RTLIB::UDIV_I32, RTLIB::impl___hexagon_udivsi3},
201 {RTLIB::UDIV_I64, RTLIB::impl___hexagon_udivdi3},
202 {RTLIB::SREM_I32, RTLIB::impl___hexagon_modsi3},
203 {RTLIB::SREM_I64, RTLIB::impl___hexagon_moddi3},
204 {RTLIB::UREM_I32, RTLIB::impl___hexagon_umodsi3},
205 {RTLIB::UREM_I64, RTLIB::impl___hexagon_umoddi3},
206 {RTLIB::ADD_F64, RTLIB::impl___hexagon_adddf3},
207 {RTLIB::SUB_F64, RTLIB::impl___hexagon_subdf3},
208 {RTLIB::MUL_F64, RTLIB::impl___hexagon_muldf3},
209 {RTLIB::DIV_F64, RTLIB::impl___hexagon_divdf3},
210 {RTLIB::DIV_F32, RTLIB::impl___hexagon_divsf3},
211 };
212 for (const auto &LC : LibraryCalls)
213 Info.setLibcallImpl(LC.Op, LC.Impl);
214}
215
216bool HexagonSubtarget::isHVXElementType(MVT Ty, bool IncludeBool) const {
217 if (!useHVXOps())
218 return false;
219 if (Ty.isVector())
220 Ty = Ty.getVectorElementType();
221 if (IncludeBool && Ty == MVT::i1)
222 return true;
223 ArrayRef<MVT> ElemTypes = getHVXElementTypes();
224 return llvm::is_contained(ElemTypes, Ty);
225}
226
227bool HexagonSubtarget::isHVXVectorType(EVT VecTy, bool IncludeBool) const {
228 if (!VecTy.isSimple())
229 return false;
230 if (!VecTy.isVector() || !useHVXOps() || VecTy.isScalableVector())
231 return false;
232 MVT ElemTy = VecTy.getSimpleVT().getVectorElementType();
233 if (!IncludeBool && ElemTy == MVT::i1)
234 return false;
235
236 unsigned HwLen = getVectorLength();
237 unsigned NumElems = VecTy.getVectorNumElements();
238 ArrayRef<MVT> ElemTypes = getHVXElementTypes();
239
240 if (IncludeBool && ElemTy == MVT::i1) {
241 // Boolean HVX vector types are formed from regular HVX vector types
242 // by replacing the element type with i1.
243 for (MVT T : ElemTypes)
244 if (NumElems * T.getSizeInBits() == 8 * HwLen)
245 return true;
246 return false;
247 }
248
249 unsigned VecWidth = VecTy.getSizeInBits();
250 if (VecWidth != 8 * HwLen && VecWidth != 16 * HwLen)
251 return false;
252 return llvm::is_contained(ElemTypes, ElemTy);
253}
254
255bool HexagonSubtarget::isTypeForHVX(Type *VecTy, bool IncludeBool) const {
256 if (!VecTy->isVectorTy() || isa<ScalableVectorType>(VecTy))
257 return false;
258 // Avoid types like <2 x i32*>.
259 Type *ScalTy = VecTy->getScalarType();
260 if (!ScalTy->isIntegerTy() &&
261 !(ScalTy->isFloatingPointTy() && useHVXFloatingPoint()))
262 return false;
263 // The given type may be something like <17 x i32>, which is not MVT,
264 // but can be represented as (non-simple) EVT.
265 EVT Ty = EVT::getEVT(VecTy, /*HandleUnknown*/false);
266 if (!Ty.getVectorElementType().isSimple())
267 return false;
268
269 auto isHvxTy = [this, IncludeBool](MVT SimpleTy) {
270 if (isHVXVectorType(SimpleTy, IncludeBool))
271 return true;
272 auto Action = getTargetLowering()->getPreferredVectorAction(SimpleTy);
274 };
275
276 // Round up EVT to have power-of-2 elements, and keep checking if it
277 // qualifies for HVX, dividing it in half after each step.
278 MVT ElemTy = Ty.getVectorElementType().getSimpleVT();
279 unsigned VecLen = PowerOf2Ceil(Ty.getVectorNumElements());
280 while (VecLen > 1) {
281 MVT SimpleTy = MVT::getVectorVT(ElemTy, VecLen);
282 if (SimpleTy.isValid() && isHvxTy(SimpleTy))
283 return true;
284 VecLen /= 2;
285 }
286
287 return false;
288}
289
291 for (SUnit &SU : DAG->SUnits) {
292 if (!SU.isInstr())
293 continue;
295 for (auto &D : SU.Preds)
296 if (D.getKind() == SDep::Output && D.getReg() == Hexagon::USR_OVF)
297 Erase.push_back(D);
298 for (auto &E : Erase)
299 SU.removePred(E);
300 }
301}
302
304 for (SUnit &SU : DAG->SUnits) {
305 // Update the latency of chain edges between v60 vector load or store
306 // instructions to be 1. These instruction cannot be scheduled in the
307 // same packet.
308 MachineInstr &MI1 = *SU.getInstr();
309 auto *QII = static_cast<const HexagonInstrInfo*>(DAG->TII);
310 bool IsStoreMI1 = MI1.mayStore();
311 bool IsLoadMI1 = MI1.mayLoad();
312 if (!QII->isHVXVec(MI1) || !(IsStoreMI1 || IsLoadMI1))
313 continue;
314 for (SDep &SI : SU.Succs) {
315 if (SI.getKind() != SDep::Order || SI.getLatency() != 0)
316 continue;
317 MachineInstr &MI2 = *SI.getSUnit()->getInstr();
318 if (!QII->isHVXVec(MI2))
319 continue;
320 if ((IsStoreMI1 && MI2.mayStore()) || (IsLoadMI1 && MI2.mayLoad())) {
321 SI.setLatency(1);
322 SU.setHeightDirty();
323 // Change the dependence in the opposite direction too.
324 for (SDep &PI : SI.getSUnit()->Preds) {
325 if (PI.getSUnit() != &SU || PI.getKind() != SDep::Order)
326 continue;
327 PI.setLatency(1);
328 SI.getSUnit()->setDepthDirty();
329 }
330 }
331 }
332 }
333}
334
335// Check if a call and subsequent A2_tfrpi instructions should maintain
336// scheduling affinity. We are looking for the TFRI to be consumed in
337// the next instruction. This should help reduce the instances of
338// double register pairs being allocated and scheduled before a call
339// when not used until after the call. This situation is exacerbated
340// by the fact that we allocate the pair from the callee saves list,
341// leading to excess spills and restores.
342bool HexagonSubtarget::CallMutation::shouldTFRICallBind(
343 const HexagonInstrInfo &HII, const SUnit &Inst1,
344 const SUnit &Inst2) const {
345 if (Inst1.getInstr()->getOpcode() != Hexagon::A2_tfrpi)
346 return false;
347
348 // TypeXTYPE are 64 bit operations.
349 unsigned Type = HII.getType(*Inst2.getInstr());
352}
353
355 ScheduleDAGMI *DAG = static_cast<ScheduleDAGMI*>(DAGInstrs);
356 SUnit* LastSequentialCall = nullptr;
357 // Map from virtual register to physical register from the copy.
358 DenseMap<unsigned, unsigned> VRegHoldingReg;
359 // Map from the physical register to the instruction that uses virtual
360 // register. This is used to create the barrier edge.
361 DenseMap<unsigned, SUnit *> LastVRegUse;
362 auto &TRI = *DAG->MF.getSubtarget().getRegisterInfo();
363 auto &HII = *DAG->MF.getSubtarget<HexagonSubtarget>().getInstrInfo();
364
365 // Currently we only catch the situation when compare gets scheduled
366 // before preceding call.
367 for (unsigned su = 0, e = DAG->SUnits.size(); su != e; ++su) {
368 // Remember the call.
369 if (DAG->SUnits[su].getInstr()->isCall())
370 LastSequentialCall = &DAG->SUnits[su];
371 // Look for a compare that defines a predicate.
372 else if (DAG->SUnits[su].getInstr()->isCompare() && LastSequentialCall)
373 DAG->addEdge(&DAG->SUnits[su], SDep(LastSequentialCall, SDep::Barrier));
374 // Look for call and tfri* instructions.
375 else if (SchedPredsCloser && LastSequentialCall && su > 1 && su < e-1 &&
376 shouldTFRICallBind(HII, DAG->SUnits[su], DAG->SUnits[su+1]))
377 DAG->addEdge(&DAG->SUnits[su], SDep(&DAG->SUnits[su-1], SDep::Barrier));
378 // Prevent redundant register copies due to reads and writes of physical
379 // registers. The original motivation for this was the code generated
380 // between two calls, which are caused both the return value and the
381 // argument for the next call being in %r0.
382 // Example:
383 // 1: <call1>
384 // 2: %vreg = COPY %r0
385 // 3: <use of %vreg>
386 // 4: %r0 = ...
387 // 5: <call2>
388 // The scheduler would often swap 3 and 4, so an additional register is
389 // needed. This code inserts a Barrier dependence between 3 & 4 to prevent
390 // this.
391 // The code below checks for all the physical registers, not just R0/D0/V0.
392 else if (SchedRetvalOptimization) {
393 const MachineInstr *MI = DAG->SUnits[su].getInstr();
394 if (MI->isCopy() && MI->getOperand(1).getReg().isPhysical()) {
395 // %vregX = COPY %r0
396 VRegHoldingReg[MI->getOperand(0).getReg()] = MI->getOperand(1).getReg();
397 LastVRegUse.erase(MI->getOperand(1).getReg());
398 } else {
399 for (const MachineOperand &MO : MI->operands()) {
400 if (!MO.isReg())
401 continue;
402 if (MO.isUse() && !MI->isCopy() &&
403 VRegHoldingReg.count(MO.getReg())) {
404 // <use of %vregX>
405 LastVRegUse[VRegHoldingReg[MO.getReg()]] = &DAG->SUnits[su];
406 } else if (MO.isDef() && MO.getReg().isPhysical()) {
407 for (MCRegAliasIterator AI(MO.getReg(), &TRI, true); AI.isValid();
408 ++AI) {
409 if (auto It = LastVRegUse.find(*AI); It != LastVRegUse.end()) {
410 if (It->second != &DAG->SUnits[su])
411 // %r0 = ...
412 DAG->addEdge(&DAG->SUnits[su],
413 SDep(It->second, SDep::Barrier));
414 LastVRegUse.erase(It);
415 }
416 }
417 }
418 }
419 }
420 }
421 }
422}
423
426 return;
427
428 const auto &HII = static_cast<const HexagonInstrInfo&>(*DAG->TII);
429
430 // Create artificial edges between loads that could likely cause a bank
431 // conflict. Since such loads would normally not have any dependency
432 // between them, we cannot rely on existing edges.
433 for (unsigned i = 0, e = DAG->SUnits.size(); i != e; ++i) {
434 SUnit &S0 = DAG->SUnits[i];
435 MachineInstr &L0 = *S0.getInstr();
436 if (!L0.mayLoad() || L0.mayStore() ||
438 continue;
439 int64_t Offset0;
441 MachineOperand *BaseOp0 = HII.getBaseAndOffset(L0, Offset0, Size0);
442 // Is the access size is longer than the L1 cache line, skip the check.
443 if (BaseOp0 == nullptr || !BaseOp0->isReg() || !Size0.hasValue() ||
444 Size0.getValue() >= 32)
445 continue;
446 // Scan only up to 32 instructions ahead (to avoid n^2 complexity).
447 for (unsigned j = i+1, m = std::min(i+32, e); j != m; ++j) {
448 SUnit &S1 = DAG->SUnits[j];
449 MachineInstr &L1 = *S1.getInstr();
450 if (!L1.mayLoad() || L1.mayStore() ||
452 continue;
453 int64_t Offset1;
455 MachineOperand *BaseOp1 = HII.getBaseAndOffset(L1, Offset1, Size1);
456 if (BaseOp1 == nullptr || !BaseOp1->isReg() || !Size0.hasValue() ||
457 Size1.getValue() >= 32 || BaseOp0->getReg() != BaseOp1->getReg())
458 continue;
459 // Check bits 3 and 4 of the offset: if they differ, a bank conflict
460 // is unlikely.
461 if (((Offset0 ^ Offset1) & 0x18) != 0)
462 continue;
463 // Bits 3 and 4 are the same, add an artificial edge and set extra
464 // latency.
465 SDep A(&S0, SDep::Artificial);
466 A.setLatency(1);
467 S1.addPred(A, true);
468 }
469 }
470}
471
472/// Enable use of alias analysis during code generation (during MI
473/// scheduling, DAGCombine, etc.).
476 return true;
477 return false;
478}
479
480/// Perform target specific adjustments to the latency of a schedule
481/// dependency.
483 SUnit *Src, int SrcOpIdx, SUnit *Dst, int DstOpIdx, SDep &Dep,
484 const TargetSchedModel *SchedModel) const {
485 if (!Src->isInstr() || !Dst->isInstr())
486 return;
487
488 MachineInstr *SrcInst = Src->getInstr();
489 MachineInstr *DstInst = Dst->getInstr();
490 const HexagonInstrInfo *QII = getInstrInfo();
491
492 // Instructions with .new operands have zero latency.
495 if (QII->canExecuteInBundle(*SrcInst, *DstInst) &&
496 isBestZeroLatency(Src, Dst, QII, ExclSrc, ExclDst)) {
497 Dep.setLatency(0);
498 return;
499 }
500
501 // Set the latency for a copy to zero since we hope that is will get
502 // removed.
503 if (DstInst->isCopy())
504 Dep.setLatency(0);
505
506 // If it's a REG_SEQUENCE/COPY, use its destination instruction to determine
507 // the correct latency.
508 // If there are multiple uses of the def of COPY/REG_SEQUENCE, set the latency
509 // only if the latencies on all the uses are equal, otherwise set it to
510 // default.
511 if ((DstInst->isRegSequence() || DstInst->isCopy())) {
512 Register DReg = DstInst->getOperand(0).getReg();
513 std::optional<unsigned> DLatency;
514 for (const auto &DDep : Dst->Succs) {
515 MachineInstr *DDst = DDep.getSUnit()->getInstr();
516 int UseIdx = -1;
517 for (unsigned OpNum = 0; OpNum < DDst->getNumOperands(); OpNum++) {
518 const MachineOperand &MO = DDst->getOperand(OpNum);
519 if (MO.isReg() && MO.getReg() && MO.isUse() && MO.getReg() == DReg) {
520 UseIdx = OpNum;
521 break;
522 }
523 }
524
525 if (UseIdx == -1)
526 continue;
527
528 std::optional<unsigned> Latency =
529 InstrInfo.getOperandLatency(&InstrItins, *SrcInst, 0, *DDst, UseIdx);
530
531 // Set DLatency for the first time.
532 if (!DLatency)
533 DLatency = Latency;
534
535 // For multiple uses, if the Latency is different across uses, reset
536 // DLatency.
537 if (DLatency != Latency) {
538 DLatency = std::nullopt;
539 break;
540 }
541 }
542 Dep.setLatency(DLatency.value_or(0));
543 }
544
545 // Try to schedule uses near definitions to generate .cur.
546 ExclSrc.clear();
547 ExclDst.clear();
548 if (EnableDotCurSched && QII->isToBeScheduledASAP(*SrcInst, *DstInst) &&
549 isBestZeroLatency(Src, Dst, QII, ExclSrc, ExclDst)) {
550 Dep.setLatency(0);
551 return;
552 }
553 int Latency = Dep.getLatency();
554 bool IsArtificial = Dep.isArtificial();
555 Latency = updateLatency(*SrcInst, *DstInst, IsArtificial, Latency);
556 Dep.setLatency(Latency);
557}
558
560 std::vector<std::unique_ptr<ScheduleDAGMutation>> &Mutations) const {
561 Mutations.push_back(std::make_unique<UsrOverflowMutation>());
562 Mutations.push_back(std::make_unique<HVXMemLatencyMutation>());
563 Mutations.push_back(std::make_unique<BankConflictMutation>());
564}
565
567 std::vector<std::unique_ptr<ScheduleDAGMutation>> &Mutations) const {
568 Mutations.push_back(std::make_unique<UsrOverflowMutation>());
569 Mutations.push_back(std::make_unique<HVXMemLatencyMutation>());
570}
571
572// Pin the vtable to this file.
573void HexagonSubtarget::anchor() {}
574
576 if (DisableHexagonMISched.getNumOccurrences())
577 return !DisableHexagonMISched;
578 return true;
579}
580
584
585int HexagonSubtarget::updateLatency(MachineInstr &SrcInst,
586 MachineInstr &DstInst, bool IsArtificial,
587 int Latency) const {
588 if (IsArtificial)
589 return 1;
590 if (!hasV60Ops())
591 return Latency;
592
593 const HexagonInstrInfo &QII = *getInstrInfo();
594 // BSB scheduling.
595 if (QII.isHVXVec(SrcInst) || useBSBScheduling())
596 Latency = (Latency + 1) >> 1;
597 return Latency;
598}
599
600void HexagonSubtarget::restoreLatency(SUnit *Src, SUnit *Dst) const {
601 MachineInstr *SrcI = Src->getInstr();
602 for (auto &I : Src->Succs) {
603 if (!I.isAssignedRegDep() || I.getSUnit() != Dst)
604 continue;
605 Register DepR = I.getReg();
606 int DefIdx = -1;
607 for (unsigned OpNum = 0; OpNum < SrcI->getNumOperands(); OpNum++) {
608 const MachineOperand &MO = SrcI->getOperand(OpNum);
609 bool IsSameOrSubReg = false;
610 if (MO.isReg()) {
611 Register MOReg = MO.getReg();
612 if (DepR.isVirtual()) {
613 IsSameOrSubReg = (MOReg == DepR);
614 } else {
615 IsSameOrSubReg = getRegisterInfo()->isSubRegisterEq(DepR, MOReg);
616 }
617 if (MO.isDef() && IsSameOrSubReg)
618 DefIdx = OpNum;
619 }
620 }
621 assert(DefIdx >= 0 && "Def Reg not found in Src MI");
622 MachineInstr *DstI = Dst->getInstr();
623 SDep T = I;
624 for (unsigned OpNum = 0; OpNum < DstI->getNumOperands(); OpNum++) {
625 const MachineOperand &MO = DstI->getOperand(OpNum);
626 if (MO.isReg() && MO.isUse() && MO.getReg() == DepR) {
627 std::optional<unsigned> Latency = InstrInfo.getOperandLatency(
628 &InstrItins, *SrcI, DefIdx, *DstI, OpNum);
629
630 // For some instructions (ex: COPY), we might end up with < 0 latency
631 // as they don't have any Itinerary class associated with them.
632 if (!Latency)
633 Latency = 0;
634 bool IsArtificial = I.isArtificial();
635 Latency = updateLatency(*SrcI, *DstI, IsArtificial, *Latency);
636 I.setLatency(*Latency);
637 }
638 }
639
640 // Update the latency of opposite edge too.
641 T.setSUnit(Src);
642 auto F = find(Dst->Preds, T);
643 assert(F != Dst->Preds.end());
644 F->setLatency(I.getLatency());
645 }
646}
647
648/// Change the latency between the two SUnits.
649void HexagonSubtarget::changeLatency(SUnit *Src, SUnit *Dst, unsigned Lat)
650 const {
651 for (auto &I : Src->Succs) {
652 if (!I.isAssignedRegDep() || I.getSUnit() != Dst)
653 continue;
654 SDep T = I;
655 I.setLatency(Lat);
656
657 // Update the latency of opposite edge too.
658 T.setSUnit(Src);
659 auto F = find(Dst->Preds, T);
660 assert(F != Dst->Preds.end());
661 F->setLatency(Lat);
662 }
663}
664
665/// If the SUnit has a zero latency edge, return the other SUnit.
667 for (auto &I : Deps)
668 if (I.isAssignedRegDep() && I.getLatency() == 0 &&
669 !I.getSUnit()->getInstr()->isPseudo())
670 return I.getSUnit();
671 return nullptr;
672}
673
674// Return true if these are the best two instructions to schedule
675// together with a zero latency. Only one dependence should have a zero
676// latency. If there are multiple choices, choose the best, and change
677// the others, if needed.
678bool HexagonSubtarget::isBestZeroLatency(
679 SUnit *Src, SUnit *Dst, const HexagonInstrInfo *TII,
680 SmallPtrSet<SUnit *, 4> &ExclSrc, SmallPtrSet<SUnit *, 4> &ExclDst) const {
681 MachineInstr &SrcInst = *Src->getInstr();
682 MachineInstr &DstInst = *Dst->getInstr();
683
684 // Ignore Boundary SU nodes as these have null instructions.
685 if (Dst->isBoundaryNode())
686 return false;
687
688 if (SrcInst.isPHI() || DstInst.isPHI())
689 return false;
690
691 if (!TII->isToBeScheduledASAP(SrcInst, DstInst) &&
692 !TII->canExecuteInBundle(SrcInst, DstInst))
693 return false;
694
695 // The architecture doesn't allow three dependent instructions in the same
696 // packet. So, if the destination has a zero latency successor, then it's
697 // not a candidate for a zero latency predecessor.
698 if (getZeroLatency(Dst, Dst->Succs) != nullptr)
699 return false;
700
701 // Check if the Dst instruction is the best candidate first.
702 SUnit *Best = nullptr;
703 SUnit *DstBest = nullptr;
704 SUnit *SrcBest = getZeroLatency(Dst, Dst->Preds);
705 if (SrcBest == nullptr || Src->NodeNum >= SrcBest->NodeNum) {
706 // Check that Src doesn't have a better candidate.
707 DstBest = getZeroLatency(Src, Src->Succs);
708 if (DstBest == nullptr || Dst->NodeNum <= DstBest->NodeNum)
709 Best = Dst;
710 }
711 if (Best != Dst)
712 return false;
713
714 // The caller frequently adds the same dependence twice. If so, then
715 // return true for this case too.
716 if ((Src == SrcBest && Dst == DstBest ) ||
717 (SrcBest == nullptr && Dst == DstBest) ||
718 (Src == SrcBest && Dst == nullptr))
719 return true;
720
721 // Reassign the latency for the previous bests, which requires setting
722 // the dependence edge in both directions.
723 if (SrcBest != nullptr) {
724 if (!hasV60Ops())
725 changeLatency(SrcBest, Dst, 1);
726 else
727 restoreLatency(SrcBest, Dst);
728 }
729 if (DstBest != nullptr) {
730 if (!hasV60Ops())
731 changeLatency(Src, DstBest, 1);
732 else
733 restoreLatency(Src, DstBest);
734 }
735
736 // Attempt to find another opportunity for zero latency in a different
737 // dependence.
738 if (SrcBest && DstBest)
739 // If there is an edge from SrcBest to DstBst, then try to change that
740 // to 0 now.
741 changeLatency(SrcBest, DstBest, 0);
742 else if (DstBest) {
743 // Check if the previous best destination instruction has a new zero
744 // latency dependence opportunity.
745 ExclSrc.insert(Src);
746 for (auto &I : DstBest->Preds)
747 if (ExclSrc.count(I.getSUnit()) == 0 &&
748 isBestZeroLatency(I.getSUnit(), DstBest, TII, ExclSrc, ExclDst))
749 changeLatency(I.getSUnit(), DstBest, 0);
750 } else if (SrcBest) {
751 // Check if previous best source instruction has a new zero latency
752 // dependence opportunity.
753 ExclDst.insert(Dst);
754 for (auto &I : SrcBest->Succs)
755 if (ExclDst.count(I.getSUnit()) == 0 &&
756 isBestZeroLatency(SrcBest, I.getSUnit(), TII, ExclSrc, ExclDst))
757 changeLatency(SrcBest, I.getSUnit(), 0);
758 }
759
760 return true;
761}
762
764 return 32;
765}
766
768 return 32;
769}
770
771bool HexagonSubtarget::enableSubRegLiveness() const { return true; }
772
774 struct Scalar {
775 unsigned Opcode;
776 Intrinsic::ID IntId;
777 };
778 struct Hvx {
779 unsigned Opcode;
780 Intrinsic::ID Int64Id, Int128Id;
781 };
782
783 static Scalar ScalarInts[] = {
784#define GET_SCALAR_INTRINSICS
786#undef GET_SCALAR_INTRINSICS
787 };
788
789 static Hvx HvxInts[] = {
790#define GET_HVX_INTRINSICS
792#undef GET_HVX_INTRINSICS
793 };
794
795 const auto CmpOpcode = [](auto A, auto B) { return A.Opcode < B.Opcode; };
796 [[maybe_unused]] static bool SortedScalar =
797 (llvm::sort(ScalarInts, CmpOpcode), true);
798 [[maybe_unused]] static bool SortedHvx =
799 (llvm::sort(HvxInts, CmpOpcode), true);
800
801 auto [BS, ES] = std::make_pair(std::begin(ScalarInts), std::end(ScalarInts));
802 auto [BH, EH] = std::make_pair(std::begin(HvxInts), std::end(HvxInts));
803
804 auto FoundScalar = std::lower_bound(BS, ES, Scalar{Opc, 0}, CmpOpcode);
805 if (FoundScalar != ES && FoundScalar->Opcode == Opc)
806 return FoundScalar->IntId;
807
808 auto FoundHvx = std::lower_bound(BH, EH, Hvx{Opc, 0, 0}, CmpOpcode);
809 if (FoundHvx != EH && FoundHvx->Opcode == Opc) {
810 unsigned HwLen = getVectorLength();
811 if (HwLen == 64)
812 return FoundHvx->Int64Id;
813 if (HwLen == 128)
814 return FoundHvx->Int128Id;
815 }
816
817 std::string error = "Invalid opcode (" + std::to_string(Opc) + ")";
818 llvm_unreachable(error.c_str());
819 return 0;
820}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
constexpr LLT S1
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
const HexagonInstrInfo * TII
static cl::opt< bool > DisableHexagonMISched("disable-hexagon-misched", cl::Hidden, cl::desc("Disable Hexagon MI Scheduling"))
static cl::opt< bool > EnableDotCurSched("enable-cur-sched", cl::Hidden, cl::init(true), cl::desc("Enable the scheduler to generate .cur"))
static cl::opt< bool > EnableCheckBankConflict("hexagon-check-bank-conflict", cl::Hidden, cl::init(true), cl::desc("Enable checking for cache bank conflicts"))
static cl::opt< bool > OverrideLongCalls("hexagon-long-calls", cl::Hidden, cl::desc("If present, forces/disables the use of long calls"))
static cl::opt< bool > SchedPredsCloser("sched-preds-closer", cl::Hidden, cl::init(true))
static cl::opt< bool > SchedRetvalOptimization("sched-retval-optimization", cl::Hidden, cl::init(true))
static cl::opt< bool > EnableTCLatencySched("enable-tc-latency-sched", cl::Hidden, cl::init(false))
static cl::opt< bool > EnableBSBSched("enable-bsb-sched", cl::Hidden, cl::init(true))
static SUnit * getZeroLatency(SUnit *N, SmallVector< SDep, 4 > &Deps)
If the SUnit has a zero latency edge, return the other SUnit.
static cl::opt< bool > EnablePredicatedCalls("hexagon-pred-calls", cl::Hidden, cl::desc("Consider calls to be predicable"))
IRTranslator LLVM IR MI
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
Register const TargetRegisterInfo * TRI
#define T
This file contains some templates that are useful if you are working with the STL at all.
This file defines the SmallVector class.
#define LLVM_DEBUG(...)
Definition Debug.h:119
#define error(X)
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
iterator find(const_arg_type_t< KeyT > Val)
Definition DenseMap.h:223
bool erase(const KeyT &Val)
Definition DenseMap.h:377
size_type count(const_arg_type_t< KeyT > Val) const
Return 1 if the specified key is in the map, 0 otherwise.
Definition DenseMap.h:219
iterator end()
Definition DenseMap.h:141
Container class for subtarget features.
constexpr FeatureBitset & reset(unsigned I)
unsigned getAddrMode(const MachineInstr &MI) const
bool canExecuteInBundle(const MachineInstr &First, const MachineInstr &Second) const
Can these instructions execute at the same time in a bundle.
bool isHVXVec(const MachineInstr &MI) const
bool isToBeScheduledASAP(const MachineInstr &MI1, const MachineInstr &MI2) const
MachineOperand * getBaseAndOffset(const MachineInstr &MI, int64_t &Offset, LocationSize &AccessSize) const
uint64_t getType(const MachineInstr &MI) const
Hexagon::ArchEnum HexagonArchVersion
void adjustSchedDependency(SUnit *Def, int DefOpIdx, SUnit *Use, int UseOpIdx, SDep &Dep, const TargetSchedModel *SchedModel) const override
Perform target specific adjustments to the latency of a schedule dependency.
const HexagonInstrInfo * getInstrInfo() const override
const HexagonRegisterInfo * getRegisterInfo() const override
void getSMSMutations(std::vector< std::unique_ptr< ScheduleDAGMutation > > &Mutations) const override
HexagonSubtarget(const Triple &TT, StringRef CPU, StringRef FS, const TargetMachine &TM)
bool isHVXVectorType(EVT VecTy, bool IncludeBool=false) const
void getPostRAMutations(std::vector< std::unique_ptr< ScheduleDAGMutation > > &Mutations) const override
const HexagonTargetLowering * getTargetLowering() const override
bool UseBSBScheduling
True if the target should use Back-Skip-Back scheduling.
unsigned getL1PrefetchDistance() const
ArrayRef< MVT > getHVXElementTypes() const
bool enableSubRegLiveness() const override
unsigned getVectorLength() const
void initLibcallLoweringInfo(LibcallLoweringInfo &Info) const override
void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS)
ParseSubtargetFeatures - Parses features string setting specified subtarget options.
unsigned getL1CacheLineSize() const
bool isTypeForHVX(Type *VecTy, bool IncludeBool=false) const
Intrinsic::ID getIntrinsicId(unsigned Opc) const
HexagonSubtarget & initializeSubtargetDependencies(StringRef CPU, StringRef FS)
bool enableMachineScheduler() const override
bool isHVXElementType(MVT Ty, bool IncludeBool=false) const
bool useAA() const override
Enable use of alias analysis during code generation (during MI scheduling, DAGCombine,...
LegalizeTypeAction getPreferredVectorAction(MVT VT) const override
Return the preferred vector type legalization action.
Tracks which library functions to use for a particular subtarget.
bool hasValue() const
static LocationSize precise(uint64_t Value)
TypeSize getValue() const
MCRegAliasIterator enumerates all registers aliasing Reg.
Machine Value Type.
static MVT getVectorVT(MVT VT, unsigned NumElements)
MVT getVectorElementType() const
bool isValid() const
Return true if this is a valid simple valuetype.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
Representation of each machine instruction.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
bool isCopy() const
unsigned getNumOperands() const
Retuns the total number of operands.
bool mayLoad(QueryType Type=AnyInBundle) const
Return true if this instruction could possibly read memory.
bool isRegSequence() const
bool mayStore(QueryType Type=AnyInBundle) const
Return true if this instruction could possibly modify memory.
const MachineOperand & getOperand(unsigned i) const
MachineOperand class - Representation of each machine instruction operand.
bool isReg() const
isReg - Tests if this is a MO_Register operand.
Register getReg() const
getReg - Returns the register number.
Wrapper class representing virtual and physical registers.
Definition Register.h:20
constexpr bool isVirtual() const
Return true if the specified register number is in the virtual register namespace.
Definition Register.h:79
Scheduling dependency.
Definition ScheduleDAG.h:52
@ Output
A register output-dependence (aka WAW).
Definition ScheduleDAG.h:58
@ Order
Any other ordering dependency.
Definition ScheduleDAG.h:59
void setLatency(unsigned Lat)
Sets the latency for this edge.
@ Barrier
An unknown scheduling barrier.
Definition ScheduleDAG.h:72
@ Artificial
Arbitrary strong DAG edge (no real dependence).
Definition ScheduleDAG.h:75
unsigned getLatency() const
Returns the latency value for this edge, which roughly means the minimum number of cycles that must e...
bool isArtificial() const
Tests if this is an Order dependence that is marked as "artificial", meaning it isn't necessary for c...
Scheduling unit. This is a node in the scheduling DAG.
bool isInstr() const
Returns true if this SUnit refers to a machine instruction as opposed to an SDNode.
unsigned NodeNum
Entry # of node in the node vector.
LLVM_ABI void setHeightDirty()
Sets a flag in this node to indicate that its stored Height value will require recomputation the next...
LLVM_ABI void removePred(const SDep &D)
Removes the specified edge as a pred of the current node if it exists.
SmallVector< SDep, 4 > Succs
All sunit successors.
SmallVector< SDep, 4 > Preds
All sunit predecessors.
MachineInstr * getInstr() const
Returns the representative MachineInstr for this SUnit.
A ScheduleDAG for scheduling lists of MachineInstr.
bool addEdge(SUnit *SuccSU, const SDep &PredDep)
Add a DAG edge to the given SU with the given predecessor dependence data.
ScheduleDAGMI is an implementation of ScheduleDAGInstrs that simply schedules machine instructions ac...
const TargetInstrInfo * TII
Target instruction information.
std::vector< SUnit > SUnits
The scheduling units.
MachineFunction & MF
Machine function.
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
bool consumeInteger(unsigned Radix, T &Result)
Parse the current string as an integer of the specified radix.
Definition StringRef.h:519
bool starts_with(StringRef Prefix) const
Check if this string starts with the given Prefix.
Definition StringRef.h:258
StringRef drop_front(size_t N=1) const
Return a StringRef equal to 'this' but with the first N elements dropped.
Definition StringRef.h:635
Manages the enabling and disabling of subtarget specific features.
const std::vector< std::string > & getFeatures() const
Returns the vector of individual subtarget features.
LLVM_ABI std::string getString() const
Returns features as a string.
LLVM_ABI void AddFeature(StringRef String, bool Enable=true)
Adds Features.
Primary interface to the complete machine description for the target machine.
Provide an instruction scheduling machine model to CodeGen passes.
virtual const TargetRegisterInfo * getRegisterInfo() const =0
Return the target's register information.
Triple - Helper class for working with autoconf configuration names.
Definition Triple.h:48
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
bool isVectorTy() const
True if this is an instance of VectorType.
Definition Type.h:288
Type * getScalarType() const
If this is a vector type, return the element type, otherwise return 'this'.
Definition Type.h:368
bool isFloatingPointTy() const
Return true if this is one of the floating-point types.
Definition Type.h:186
bool isIntegerTy() const
True if this is an instance of IntegerType.
Definition Type.h:257
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
void addArchSubtarget(MCSubtargetInfo const *STI, StringRef FS)
FeatureBitset completeHVXFeatures(const FeatureBitset &FB)
std::optional< Hexagon::ArchEnum > getCpu(StringRef CPU)
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
auto find(R &&Range, const T &Val)
Provide wrappers to std::find which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1765
uint64_t PowerOf2Ceil(uint64_t A)
Returns the power of two which is greater than or equal to the given value.
Definition MathExtras.h:386
auto reverse(ContainerTy &&C)
Definition STLExtras.h:407
void sort(IteratorTy Start, IteratorTy End)
Definition STLExtras.h:1636
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:209
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
Definition Error.cpp:163
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
Definition Casting.h:547
DWARFExpression::Operation Op
auto count_if(R &&Range, UnaryPredicate P)
Wrapper function around std::count_if to count the number of times an element satisfying a given pred...
Definition STLExtras.h:2019
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
Definition STLExtras.h:1947
cl::opt< bool > HexagonDisableDuplex
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:878
#define N
Extended Value Type.
Definition ValueTypes.h:35
bool isSimple() const
Test if the given EVT is simple (as opposed to being extended).
Definition ValueTypes.h:145
TypeSize getSizeInBits() const
Return the size of the specified value type in bits.
Definition ValueTypes.h:396
static LLVM_ABI EVT getEVT(Type *Ty, bool HandleUnknown=false)
Return the value type corresponding to the specified type.
MVT getSimpleVT() const
Return the SimpleValueType held in the specified simple EVT.
Definition ValueTypes.h:339
bool isVector() const
Return true if this is a vector value type.
Definition ValueTypes.h:176
bool isScalableVector() const
Return true if this is a vector type where the runtime length is machine dependent.
Definition ValueTypes.h:187
unsigned getVectorNumElements() const
Given a vector type, return the number of elements it contains.
Definition ValueTypes.h:359
void apply(ScheduleDAGInstrs *DAG) override
void apply(ScheduleDAGInstrs *DAG) override
void apply(ScheduleDAGInstrs *DAG) override
void apply(ScheduleDAGInstrs *DAG) override