1//===- HexagonFrameLowering.cpp - Define frame lowering -------------------===//
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
10#include "HexagonFrameLowering.h"
11#include "HexagonBlockRanges.h"
12#include "HexagonISelLowering.h"
13#include "HexagonInstrInfo.h"
14#include "HexagonMachineFunctionInfo.h"
15#include "HexagonRegisterInfo.h"
16#include "HexagonSubtarget.h"
17#include "HexagonTargetMachine.h"
18#include "MCTargetDesc/HexagonBaseInfo.h"
19#include "llvm/ADT/BitVector.h"
20#include "llvm/ADT/DenseMap.h"
21#include "llvm/ADT/PostOrderIterator.h"
22#include "llvm/ADT/SetVector.h"
23#include "llvm/ADT/SmallSet.h"
24#include "llvm/ADT/SmallVector.h"
25#include "llvm/BinaryFormat/Dwarf.h"
26#include "llvm/CodeGen/CFIInstBuilder.h"
27#include "llvm/CodeGen/LivePhysRegs.h"
28#include "llvm/CodeGen/MachineBasicBlock.h"
29#include "llvm/CodeGen/MachineDominators.h"
30#include "llvm/CodeGen/MachineFrameInfo.h"
31#include "llvm/CodeGen/MachineFunction.h"
32#include "llvm/CodeGen/MachineFunctionPass.h"
33#include "llvm/CodeGen/MachineInstr.h"
34#include "llvm/CodeGen/MachineInstrBuilder.h"
35#include "llvm/CodeGen/MachineMemOperand.h"
36#include "llvm/CodeGen/MachineModuleInfo.h"
37#include "llvm/CodeGen/MachineOperand.h"
38#include "llvm/CodeGen/MachinePostDominators.h"
39#include "llvm/CodeGen/MachineRegisterInfo.h"
40#include "llvm/CodeGen/PseudoSourceValue.h"
41#include "llvm/CodeGen/RegisterScavenging.h"
42#include "llvm/CodeGen/TargetRegisterInfo.h"
43#include "llvm/IR/Attributes.h"
44#include "llvm/IR/DebugLoc.h"
45#include "llvm/IR/Function.h"
46#include "llvm/MC/MCDwarf.h"
47#include "llvm/MC/MCRegisterInfo.h"
48#include "llvm/Pass.h"
49#include "llvm/Support/CodeGen.h"
50#include "llvm/Support/CommandLine.h"
51#include "llvm/Support/Compiler.h"
52#include "llvm/Support/Debug.h"
53#include "llvm/Support/ErrorHandling.h"
54#include "llvm/Support/MathExtras.h"
55#include "llvm/Support/raw_ostream.h"
56#include "llvm/Target/TargetMachine.h"
57#include <algorithm>
58#include <cassert>
59#include <cstdint>
60#include <iterator>
61#include <limits>
62#include <map>
63#include <optional>
64#include <utility>
65#include <vector>
66
67#define DEBUG_TYPE "hexagon-pei"
68
69// Hexagon stack frame layout as defined by the ABI:
70//
71// Incoming arguments
72// passed via stack
73// |
74// |
75// SP during function's FP during function's |
76// +-- runtime (top of stack) runtime (bottom) --+ |
77// | | |
78// --++---------------------+------------------+-----------------++-+-------
79// | parameter area for | variable-size | fixed-size |LR| arg
80// | called functions | local objects | local objects |FP|
81// --+----------------------+------------------+-----------------+--+-------
82// <- size known -> <- size unknown -> <- size known ->
83//
84// Low address High address
85//
86// <--- stack growth
87//
88//
89// - In any circumstances, the outgoing function arguments are always accessi-
90// ble using the SP, and the incoming arguments are accessible using the FP.
91// - If the local objects are not aligned, they can always be accessed using
92// the FP.
93// - If there are no variable-sized objects, the local objects can always be
94// accessed using the SP, regardless whether they are aligned or not. (The
95// alignment padding will be at the bottom of the stack (highest address),
96// and so the offset with respect to the SP will be known at the compile-
97// -time.)
98//
99// The only complication occurs if there are both, local aligned objects, and
100// dynamically allocated (variable-sized) objects. The alignment pad will be
101// placed between the FP and the local objects, thus preventing the use of the
102// FP to access the local objects. At the same time, the variable-sized objects
103// will be between the SP and the local objects, thus introducing an unknown
104// distance from the SP to the locals.
105//
106// To avoid this problem, a new register is created that holds the aligned
107// address of the bottom of the stack, referred in the sources as AP (aligned
108// pointer). The AP will be equal to "FP-p", where "p" is the smallest pad
109// that aligns AP to the required boundary (a maximum of the alignments of
110// all stack objects, fixed- and variable-sized). All local objects[1] will
111// then use AP as the base pointer.
112// [1] The exception is with "fixed" stack objects. "Fixed" stack objects get
113// their name from being allocated at fixed locations on the stack, relative
114// to the FP. In the presence of dynamic allocation and local alignment, such
115// objects can only be accessed through the FP.
116//
117// Illustration of the AP:
118// FP --+
119// |
120// ---------------+---------------------+-----+-----------------------++-+--
121// Rest of the | Local stack objects | Pad | Fixed stack objects |LR|
122// stack frame | (aligned) | | (CSR, spills, etc.) |FP|
123// ---------------+---------------------+-----+-----------------+-----+--+--
124// |<-- Multiple of the -->|
125// stack alignment +-- AP
126//
127// The AP is set up at the beginning of the function. Since it is not a dedi-
128// cated (reserved) register, it needs to be kept live throughout the function
129// to be available as the base register for local object accesses.
130// Normally, an address of a stack objects is obtained by a pseudo-instruction
131// PS_fi. To access local objects with the AP register present, a different
132// pseudo-instruction needs to be used: PS_fia. The PS_fia takes one extra
133// argument compared to PS_fi: the first input register is the AP register.
134// This keeps the register live between its definition and its uses.
135
136// The AP register is originally set up using pseudo-instruction PS_aligna:
137// AP = PS_aligna A
138// where
139// A - required stack alignment
140// The alignment value must be the maximum of all alignments required by
141// any stack object.
142
143// The dynamic allocation uses a pseudo-instruction PS_alloca:
144// Rd = PS_alloca Rs, A
145// where
146// Rd - address of the allocated space
147// Rs - minimum size (the actual allocated can be larger to accommodate
148// alignment)
149// A - required alignment
150
151using namespace llvm;
152
153static void emitSCSPrologue(MachineFunction &MF, MachineBasicBlock &MBB,
154 MachineBasicBlock::iterator MI,
155 const DebugLoc &DL) {
156 if (!MF.getFunction().hasFnAttribute(Kind: Attribute::ShadowCallStack))
157 return;
158
159 const auto &HST = MF.getSubtarget<HexagonSubtarget>();
160 // Hexagon saves LR (R31) via allocframe. If there is no frame, LR is
161 // not on the regular stack and does not need shadow-stack protection.
162 if (!HST.getFrameLowering()->hasFP(MF))
163 return;
164
165 // The shadow call stack pointer has to survive arbitrary calls, so it is
166 // always one of the callee-saved registers R16-R27 (Hexagon ABI, "Register
167 // usage across calls"). It must also be reserved: besides keeping the
168 // register allocator away from it, reserving it keeps it out of the
169 // callee-saved set, so it is never spilled and restored as an ordinary
170 // callee-saved register - which would leave the epilogue below reading the
171 // *caller's* shadow-stack slot. The spill stubs are handled separately in
172 // useSpillFunction()/useRestoreFunction().
173 Register SCSPReg = HST.getSCSPReg();
174 const auto &HRI = *HST.getRegisterInfo();
175 if (!HST.isRegisterReservedByUser(i: SCSPReg))
176 // Lower-cased to match the spelling of the -ffixed-<reg> flag the user
177 // needs to pass; TRI names the register "R18".
178 report_fatal_error(reason: Twine("Must reserve ") +
179 StringRef(HRI.getName(RegNo: SCSPReg)).lower() +
180 " to use shadow call stack on Hexagon");
181
182 const auto &HII = *HST.getInstrInfo();
183
184 // SCSPReg = add(SCSPReg, #4)
185 BuildMI(BB&: MBB, I: MI, MIMD: DL, MCID: HII.get(Opcode: Hexagon::A2_addi), DestReg: SCSPReg)
186 .addReg(RegNo: SCSPReg)
187 .addImm(Val: 4)
188 .setMIFlag(MachineInstr::FrameSetup);
189 // memw(SCSPReg + #-4) = r31
190 BuildMI(BB&: MBB, I: MI, MIMD: DL, MCID: HII.get(Opcode: Hexagon::S2_storeri_io))
191 .addReg(RegNo: SCSPReg)
192 .addImm(Val: -4)
193 .addReg(RegNo: Hexagon::R31)
194 .setMIFlag(MachineInstr::FrameSetup);
195
196 MBB.addLiveIn(PhysReg: SCSPReg);
197
198 if (!MF.needsFrameMoves())
199 return;
200
201 // CFI: DW_CFA_val_expression for the SCS register, DW_OP_bregN -4
202 // Tells the unwinder that the SCS register at entry = current value - 4.
203 unsigned DwarfSCSReg = HRI.getDwarfRegNum(Reg: SCSPReg, /*IsEH=*/isEH: true);
204 // DW_OP_breg0..DW_OP_breg31 (0x70..0x8f) are 32 opcodes indexed by
205 // register number, so the register number must fit in [0, 31].
206 assert(DwarfSCSReg < 32 && "SCS register should be < 32");
207 const char CFIInst[] = {
208 (char)dwarf::DW_CFA_val_expression,
209 (char)DwarfSCSReg,
210 2, // expression length
211 (char)(unsigned)(dwarf::DW_OP_breg0 + DwarfSCSReg),
212 (char)(-4 & 0x7f), // SLEB128 -4
213 };
214 CFIInstBuilder(MBB, MI, MachineInstr::FrameSetup)
215 .buildEscape(Bytes: StringRef(CFIInst, sizeof(CFIInst)));
216}
217
218static void emitSCSEpilogue(MachineFunction &MF, MachineBasicBlock &MBB,
219 MachineBasicBlock::iterator MI,
220 const DebugLoc &DL) {
221 if (!MF.getFunction().hasFnAttribute(Kind: Attribute::ShadowCallStack))
222 return;
223
224 // hasFP() is true at both call sites: the non-vararg path in
225 // insertEpilogueInBlock returns early when !hasFP(), and the vararg+musl
226 // path is inside the hasFP() branch. Check defensively.
227 if (!MF.getSubtarget<HexagonSubtarget>().getFrameLowering()->hasFP(MF))
228 report_fatal_error(reason: "SCS epilogue requires a frame");
229
230 const auto &HST = MF.getSubtarget<HexagonSubtarget>();
231 Register SCSPReg = HST.getSCSPReg();
232 const auto &HII = *HST.getInstrInfo();
233
234 // r31 = memw(SCSPReg + #-4)
235 BuildMI(BB&: MBB, I: MI, MIMD: DL, MCID: HII.get(Opcode: Hexagon::L2_loadri_io), DestReg: Hexagon::R31)
236 .addReg(RegNo: SCSPReg)
237 .addImm(Val: -4)
238 .setMIFlag(MachineInstr::FrameDestroy);
239 // SCSPReg = add(SCSPReg, #-4)
240 BuildMI(BB&: MBB, I: MI, MIMD: DL, MCID: HII.get(Opcode: Hexagon::A2_addi), DestReg: SCSPReg)
241 .addReg(RegNo: SCSPReg)
242 .addImm(Val: -4)
243 .setMIFlag(MachineInstr::FrameDestroy);
244
245 if (MF.needsFrameMoves())
246 CFIInstBuilder(MBB, MI, MachineInstr::FrameDestroy).buildRestore(Reg: SCSPReg);
247}
248
249static cl::opt<bool> DisableDeallocRet("disable-hexagon-dealloc-ret",
250 cl::Hidden, cl::desc("Disable Dealloc Return for Hexagon target"));
251
252static cl::opt<unsigned>
253 NumberScavengerSlots("number-scavenger-slots", cl::Hidden,
254 cl::desc("Set the number of scavenger slots"),
255 cl::init(Val: 2));
256
257static cl::opt<int>
258 SpillFuncThreshold("spill-func-threshold", cl::Hidden,
259 cl::desc("Specify O2(not Os) spill func threshold"),
260 cl::init(Val: 6));
261
262static cl::opt<int>
263 SpillFuncThresholdOs("spill-func-threshold-Os", cl::Hidden,
264 cl::desc("Specify Os spill func threshold"),
265 cl::init(Val: 1));
266
267static cl::opt<bool> EnableStackOVFSanitizer(
268 "enable-stackovf-sanitizer", cl::Hidden,
269 cl::desc("Enable runtime checks for stack overflow."), cl::init(Val: false));
270
271static cl::opt<bool>
272 EnableShrinkWrapping("hexagon-shrink-frame", cl::init(Val: true), cl::Hidden,
273 cl::desc("Enable stack frame shrink wrapping"));
274
275static cl::opt<unsigned>
276 ShrinkLimit("shrink-frame-limit",
277 cl::init(Val: std::numeric_limits<unsigned>::max()), cl::Hidden,
278 cl::desc("Max count of stack frame shrink-wraps"));
279
280static cl::opt<bool>
281 EnableSaveRestoreLong("enable-save-restore-long", cl::Hidden,
282 cl::desc("Enable long calls for save-restore stubs."),
283 cl::init(Val: false));
284
285static cl::opt<bool> EliminateFramePointer("hexagon-fp-elim", cl::init(Val: true),
286 cl::Hidden, cl::desc("Refrain from using FP whenever possible"));
287
288static cl::opt<bool> OptimizeSpillSlots("hexagon-opt-spill", cl::Hidden,
289 cl::init(Val: true), cl::desc("Optimize spill slots"));
290
291#ifndef NDEBUG
292static cl::opt<unsigned> SpillOptMax("spill-opt-max", cl::Hidden,
293 cl::init(std::numeric_limits<unsigned>::max()));
294static unsigned SpillOptCount = 0;
295#endif
296
297namespace {
298
299 class HexagonCallFrameInformation : public MachineFunctionPass {
300 public:
301 static char ID;
302
303 HexagonCallFrameInformation() : MachineFunctionPass(ID) {}
304
305 bool runOnMachineFunction(MachineFunction &MF) override;
306
307 MachineFunctionProperties getRequiredProperties() const override {
308 return MachineFunctionProperties().setNoVRegs();
309 }
310 };
311
312 char HexagonCallFrameInformation::ID = 0;
313
314} // end anonymous namespace
315
316bool HexagonCallFrameInformation::runOnMachineFunction(MachineFunction &MF) {
317 auto &HFI = *MF.getSubtarget<HexagonSubtarget>().getFrameLowering();
318 bool NeedCFI = MF.needsFrameMoves();
319
320 if (!NeedCFI)
321 return false;
322 HFI.insertCFIInstructions(MF);
323 return true;
324}
325
326INITIALIZE_PASS(HexagonCallFrameInformation, "hexagon-cfi",
327 "Hexagon call frame information", false, false)
328
329FunctionPass *llvm::createHexagonCallFrameInformation() {
330 return new HexagonCallFrameInformation();
331}
332
333/// Map a register pair Reg to the subregister that has the greater "number",
334/// i.e. D3 (aka R7:6) will be mapped to R7, etc.
335static Register getMax32BitSubRegister(Register Reg,
336 const TargetRegisterInfo &TRI,
337 bool hireg = true) {
338 if (Reg < Hexagon::D0 || Reg > Hexagon::D15)
339 return Reg;
340
341 Register RegNo = 0;
342 for (MCPhysReg SubReg : TRI.subregs(Reg)) {
343 if (hireg) {
344 if (SubReg > RegNo)
345 RegNo = SubReg;
346 } else {
347 if (!RegNo || SubReg < RegNo)
348 RegNo = SubReg;
349 }
350 }
351 return RegNo;
352}
353
354/// Returns the callee saved register with the largest id in the vector.
355static Register getMaxCalleeSavedReg(ArrayRef<CalleeSavedInfo> CSI,
356 const TargetRegisterInfo &TRI) {
357 static_assert(Hexagon::R1 > 0,
358 "Assume physical registers are encoded as positive integers");
359 if (CSI.empty())
360 return 0;
361
362 Register Max = getMax32BitSubRegister(Reg: CSI[0].getReg(), TRI);
363 for (unsigned I = 1, E = CSI.size(); I < E; ++I) {
364 Register Reg = getMax32BitSubRegister(Reg: CSI[I].getReg(), TRI);
365 if (Reg > Max)
366 Max = Reg;
367 }
368 return Max;
369}
370
371/// Checks if the basic block contains any instruction that needs a stack
372/// frame to be already in place.
373static bool needsStackFrame(const MachineBasicBlock &MBB, const BitVector &CSR,
374 const HexagonRegisterInfo &HRI) {
375 const MachineFunction *MF = MBB.getParent();
376 if (&MBB == &MF->front() && MF->getInfo<HexagonMachineFunctionInfo>()
377 ->getStackAlignBaseReg()
378 .isValid())
379 return true;
380
381 for (const MachineInstr &MI : MBB) {
382 if (MI.isCall())
383 return true;
384 unsigned Opc = MI.getOpcode();
385 switch (Opc) {
386 case Hexagon::PS_alloca:
387 return true;
388 default:
389 break;
390 }
391 // Check individual operands.
392 for (const MachineOperand &MO : MI.operands()) {
393 // While the presence of a frame index does not prove that a stack
394 // frame will be required, all frame indexes should be within alloc-
395 // frame/deallocframe. Otherwise, the code that translates a frame
396 // index into an offset would have to be aware of the placement of
397 // the frame creation/destruction instructions.
398 if (MO.isFI())
399 return true;
400 if (MO.isReg()) {
401 Register R = MO.getReg();
402 // Debug instructions may refer to $noreg.
403 if (!R)
404 continue;
405 // Virtual registers will need scavenging, which then may require
406 // a stack slot.
407 if (R.isVirtual())
408 return true;
409 for (MCPhysReg S : HRI.subregs_inclusive(Reg: R))
410 if (CSR[S])
411 return true;
412 continue;
413 }
414 if (MO.isRegMask()) {
415 // A regmask would normally have all callee-saved registers marked
416 // as preserved, so this check would not be needed, but in case of
417 // ever having other regmasks (for other calling conventions),
418 // make sure they would be processed correctly.
419 const uint32_t *BM = MO.getRegMask();
420 for (int x = CSR.find_first(); x >= 0; x = CSR.find_next(Prev: x)) {
421 unsigned R = x;
422 // If this regmask does not preserve a CSR, a frame will be needed.
423 if (!(BM[R / 32] & (1u << (R % 32))))
424 return true;
425 }
426 }
427 }
428 }
429 return false;
430}
431
432/// Returns true if MBB has a machine instructions that indicates a tail call
433/// in the block.
434static bool hasTailCall(const MachineBasicBlock &MBB) {
435 MachineBasicBlock::const_iterator I = MBB.getLastNonDebugInstr();
436 if (I == MBB.end())
437 return false;
438 unsigned RetOpc = I->getOpcode();
439 return RetOpc == Hexagon::PS_tailcall_i || RetOpc == Hexagon::PS_tailcall_r;
440}
441
442/// Returns true if MBB contains an instruction that returns.
443static bool hasReturn(const MachineBasicBlock &MBB) {
444 for (const MachineInstr &MI : MBB.terminators())
445 if (MI.isReturn())
446 return true;
447 return false;
448}
449
450/// Returns the "return" instruction from this block, or nullptr if there
451/// isn't any.
452static MachineInstr *getReturn(MachineBasicBlock &MBB) {
453 for (auto &I : MBB)
454 if (I.isReturn())
455 return &I;
456 return nullptr;
457}
458
459static bool isRestoreCall(unsigned Opc) {
460 switch (Opc) {
461 case Hexagon::RESTORE_DEALLOC_RET_JMP_V4:
462 case Hexagon::RESTORE_DEALLOC_RET_JMP_V4_PIC:
463 case Hexagon::RESTORE_DEALLOC_RET_JMP_V4_EXT:
464 case Hexagon::RESTORE_DEALLOC_RET_JMP_V4_EXT_PIC:
465 case Hexagon::RESTORE_DEALLOC_BEFORE_TAILCALL_V4_EXT:
466 case Hexagon::RESTORE_DEALLOC_BEFORE_TAILCALL_V4_EXT_PIC:
467 case Hexagon::RESTORE_DEALLOC_BEFORE_TAILCALL_V4:
468 case Hexagon::RESTORE_DEALLOC_BEFORE_TAILCALL_V4_PIC:
469 return true;
470 }
471 return false;
472}
473
474static inline bool isOptNone(const MachineFunction &MF) {
475 return MF.getFunction().hasOptNone() ||
476 MF.getTarget().getOptLevel() == CodeGenOptLevel::None;
477}
478
479static inline bool isOptSize(const MachineFunction &MF) {
480 const Function &F = MF.getFunction();
481 return F.hasOptSize() && !F.hasMinSize();
482}
483
484static inline bool isMinSize(const MachineFunction &MF) {
485 return MF.getFunction().hasMinSize();
486}
487
488/// Implements shrink-wrapping of the stack frame. By default, stack frame
489/// is created in the function entry block, and is cleaned up in every block
490/// that returns. This function finds alternate blocks: one for the frame
491/// setup (prolog) and one for the cleanup (epilog).
492void HexagonFrameLowering::findShrunkPrologEpilog(MachineFunction &MF,
493 MachineBasicBlock *&PrologB, MachineBasicBlock *&EpilogB) const {
494 static unsigned ShrinkCounter = 0;
495
496 if (MF.getSubtarget<HexagonSubtarget>().isEnvironmentMusl() &&
497 MF.getFunction().isVarArg())
498 return;
499 if (ShrinkLimit.getPosition()) {
500 if (ShrinkCounter >= ShrinkLimit)
501 return;
502 ShrinkCounter++;
503 }
504
505 auto &HRI = *MF.getSubtarget<HexagonSubtarget>().getRegisterInfo();
506
507 MachineDominatorTree MDT;
508 MDT.recalculate(Func&: MF);
509 MachinePostDominatorTree MPT;
510 MPT.recalculate(Func&: MF);
511
512 using UnsignedMap = DenseMap<unsigned, unsigned>;
513 using RPOTType = ReversePostOrderTraversal<const MachineFunction *>;
514
515 UnsignedMap RPO;
516 RPOTType RPOT(&MF);
517 unsigned RPON = 0;
518 for (auto &I : RPOT)
519 RPO[I->getNumber()] = RPON++;
520
521 // Don't process functions that have loops, at least for now. Placement
522 // of prolog and epilog must take loop structure into account. For simpli-
523 // city don't do it right now.
524 for (auto &I : MF) {
525 unsigned BN = RPO[I.getNumber()];
526 for (MachineBasicBlock *Succ : I.successors())
527 // If found a back-edge, return.
528 if (RPO[Succ->getNumber()] <= BN)
529 return;
530 }
531
532 // Collect the set of blocks that need a stack frame to execute. Scan
533 // each block for uses/defs of callee-saved registers, calls, etc.
534 SmallVector<MachineBasicBlock*,16> SFBlocks;
535 BitVector CSR(Hexagon::NUM_TARGET_REGS);
536 for (const MCPhysReg *P = HRI.getCalleeSavedRegs(MF: &MF); *P; ++P)
537 for (MCPhysReg S : HRI.subregs_inclusive(Reg: *P))
538 CSR[S] = true;
539
540 for (auto &I : MF)
541 if (needsStackFrame(MBB: I, CSR, HRI))
542 SFBlocks.push_back(Elt: &I);
543
544 LLVM_DEBUG({
545 dbgs() << "Blocks needing SF: {";
546 for (auto &B : SFBlocks)
547 dbgs() << " " << printMBBReference(*B);
548 dbgs() << " }\n";
549 });
550 // No frame needed?
551 if (SFBlocks.empty())
552 return;
553
554 // Pick a common dominator and a common post-dominator.
555 MachineBasicBlock *DomB = SFBlocks[0];
556 for (unsigned i = 1, n = SFBlocks.size(); i < n; ++i) {
557 DomB = MDT.findNearestCommonDominator(A: DomB, B: SFBlocks[i]);
558 if (!DomB)
559 break;
560 }
561 MachineBasicBlock *PDomB = SFBlocks[0];
562 for (unsigned i = 1, n = SFBlocks.size(); i < n; ++i) {
563 PDomB = MPT.findNearestCommonDominator(A: PDomB, B: SFBlocks[i]);
564 if (!PDomB)
565 break;
566 }
567 LLVM_DEBUG({
568 dbgs() << "Computed dom block: ";
569 if (DomB)
570 dbgs() << printMBBReference(*DomB);
571 else
572 dbgs() << "<null>";
573 dbgs() << ", computed pdom block: ";
574 if (PDomB)
575 dbgs() << printMBBReference(*PDomB);
576 else
577 dbgs() << "<null>";
578 dbgs() << "\n";
579 });
580 if (!DomB || !PDomB)
581 return;
582
583 // Make sure that DomB dominates PDomB and PDomB post-dominates DomB.
584 if (!MDT.dominates(A: DomB, B: PDomB)) {
585 LLVM_DEBUG(dbgs() << "Dom block does not dominate pdom block\n");
586 return;
587 }
588 if (!MPT.dominates(A: PDomB, B: DomB)) {
589 LLVM_DEBUG(dbgs() << "PDom block does not post-dominate dom block\n");
590 return;
591 }
592
593 // Finally, everything seems right.
594 PrologB = DomB;
595 EpilogB = PDomB;
596}
597
598/// Perform most of the PEI work here:
599/// - saving/restoring of the callee-saved registers,
600/// - stack frame creation and destruction.
601/// Normally, this work is distributed among various functions, but doing it
602/// in one place allows shrink-wrapping of the stack frame.
603void HexagonFrameLowering::emitPrologue(MachineFunction &MF,
604 MachineBasicBlock &MBB) const {
605 auto &HRI = *MF.getSubtarget<HexagonSubtarget>().getRegisterInfo();
606
607 MachineFrameInfo &MFI = MF.getFrameInfo();
608 const std::vector<CalleeSavedInfo> &CSI = MFI.getCalleeSavedInfo();
609
610 MachineBasicBlock *PrologB = &MF.front(), *EpilogB = nullptr;
611 if (EnableShrinkWrapping)
612 findShrunkPrologEpilog(MF, PrologB, EpilogB);
613
614 bool PrologueStubs = false;
615 MachineBasicBlock::iterator AfterCSR =
616 insertCSRSpillsInBlock(MBB&: *PrologB, CSI, HRI, PrologueStubs);
617 // Insert PS_aligna after all CSR spills.
618 // PS_aligna initializes the AP register with an aligned
619 // value derived from FP. Since AP is a callee-saved register, its original
620 // value must be saved before it is overwritten, and it must be defined
621 // before any AP-relative stack accesses.
622 insertAlignaInBlock(MBB&: *PrologB, InsertPt: AfterCSR);
623 insertPrologueInBlock(MBB&: *PrologB, PrologueStubs);
624 // Insert the SCS prologue after all FrameSetup instructions so that it
625 // follows allocframe and any CSR spills in the instruction stream. The
626 // packetizer may still fuse the SCS store with the first call in the
627 // function, but because Hexagon packets use old-value reads the original
628 // R31 is always what is stored.
629 {
630 MachineBasicBlock::iterator AfterProlog = PrologB->begin();
631 while (AfterProlog != PrologB->end() &&
632 AfterProlog->getFlag(Flag: MachineInstr::FrameSetup))
633 ++AfterProlog;
634 DebugLoc PrologDL = PrologB->findDebugLoc(MBBI: AfterProlog);
635 emitSCSPrologue(MF, MBB&: *PrologB, MI: AfterProlog, DL: PrologDL);
636 }
637 updateEntryPaths(MF, SaveB&: *PrologB);
638
639 if (EpilogB) {
640 insertCSRRestoresInBlock(MBB&: *EpilogB, CSI, HRI);
641 insertEpilogueInBlock(MBB&: *EpilogB);
642 } else {
643 for (auto &B : MF)
644 if (B.isReturnBlock())
645 insertCSRRestoresInBlock(MBB&: B, CSI, HRI);
646
647 for (auto &B : MF)
648 if (B.isReturnBlock())
649 insertEpilogueInBlock(MBB&: B);
650
651 for (auto &B : MF) {
652 if (B.empty())
653 continue;
654 MachineInstr *RetI = getReturn(MBB&: B);
655 if (!RetI || isRestoreCall(Opc: RetI->getOpcode()))
656 continue;
657 for (auto &R : CSI)
658 RetI->addOperand(Op: MachineOperand::CreateReg(Reg: R.getReg(), isDef: false, isImp: true));
659 }
660 }
661
662 if (EpilogB) {
663 // If there is an epilog block, it may not have a return instruction.
664 // In such case, we need to add the callee-saved registers as live-ins
665 // in all blocks on all paths from the epilog to any return block.
666 unsigned MaxBN = MF.getNumBlockIDs();
667 BitVector DoneT(MaxBN+1), DoneF(MaxBN+1), Path(MaxBN+1);
668 updateExitPaths(MBB&: *EpilogB, RestoreB&: *EpilogB, DoneT, DoneF, Path);
669 }
670}
671
672/// Returns true if the target can safely skip saving callee-saved registers
673/// for noreturn nounwind functions.
674bool HexagonFrameLowering::enableCalleeSaveSkip(
675 const MachineFunction &MF) const {
676 const auto &F = MF.getFunction();
677 assert(F.hasFnAttribute(Attribute::NoReturn) &&
678 F.getFunction().hasFnAttribute(Attribute::NoUnwind) &&
679 !F.getFunction().hasFnAttribute(Attribute::UWTable));
680 (void)F;
681
682 // No need to save callee saved registers if the function does not return.
683 return MF.getSubtarget<HexagonSubtarget>().noreturnStackElim();
684}
685
686// Helper function used to determine when to eliminate the stack frame for
687// functions marked as noreturn and when the noreturn-stack-elim options are
688// specified. When both these conditions are true, then a FP may not be needed
689// if the function makes a call. It is very similar to enableCalleeSaveSkip,
690// but it used to check if the allocframe can be eliminated as well.
691static bool enableAllocFrameElim(const MachineFunction &MF) {
692 const auto &F = MF.getFunction();
693 const auto &MFI = MF.getFrameInfo();
694 const auto &HST = MF.getSubtarget<HexagonSubtarget>();
695 assert(!MFI.hasVarSizedObjects() &&
696 !HST.getRegisterInfo()->hasStackRealignment(MF));
697 return F.hasFnAttribute(Kind: Attribute::NoReturn) &&
698 F.hasFnAttribute(Kind: Attribute::NoUnwind) &&
699 !F.hasFnAttribute(Kind: Attribute::UWTable) && HST.noreturnStackElim() &&
700 MFI.getStackSize() == 0;
701}
702
703void HexagonFrameLowering::insertPrologueInBlock(MachineBasicBlock &MBB,
704 bool PrologueStubs) const {
705 MachineFunction &MF = *MBB.getParent();
706 MachineFrameInfo &MFI = MF.getFrameInfo();
707 auto &HST = MF.getSubtarget<HexagonSubtarget>();
708 auto &HII = *HST.getInstrInfo();
709 auto &HRI = *HST.getRegisterInfo();
710
711 Align MaxAlign = std::max(a: MFI.getMaxAlign(), b: getStackAlign());
712
713 // Calculate the total stack frame size.
714 // Get the number of bytes to allocate from the FrameInfo.
715 unsigned FrameSize = MFI.getStackSize();
716 // Round up the max call frame size to the max alignment on the stack.
717 unsigned MaxCFA = alignTo(Size: MFI.getMaxCallFrameSize(), A: MaxAlign);
718 MFI.setMaxCallFrameSize(MaxCFA);
719
720 FrameSize = MaxCFA + alignTo(Size: FrameSize, A: MaxAlign);
721 MFI.setStackSize(FrameSize);
722
723 bool AlignStack = (MaxAlign > getStackAlign());
724
725 // Get the number of bytes to allocate from the FrameInfo.
726 unsigned NumBytes = MFI.getStackSize();
727 Register SP = HRI.getStackRegister();
728 unsigned MaxCF = MFI.getMaxCallFrameSize();
729 MachineBasicBlock::iterator InsertPt = MBB.begin();
730
731 SmallVector<MachineInstr *, 4> AdjustRegs;
732 for (auto &MBB : MF)
733 for (auto &MI : MBB)
734 if (MI.getOpcode() == Hexagon::PS_alloca)
735 AdjustRegs.push_back(Elt: &MI);
736
737 for (auto *MI : AdjustRegs) {
738 assert((MI->getOpcode() == Hexagon::PS_alloca) && "Expected alloca");
739 expandAlloca(AI: MI, MF, TII: HII, SP, CF: MaxCF);
740 MI->eraseFromParent();
741 }
742
743 DebugLoc dl = MBB.findDebugLoc(MBBI: InsertPt);
744
745 if (MF.getFunction().isVarArg() &&
746 MF.getSubtarget<HexagonSubtarget>().isEnvironmentMusl()) {
747 // Calculate the size of register saved area.
748 int NumVarArgRegs = 6 - FirstVarArgSavedReg;
749 int RegisterSavedAreaSizePlusPadding = (NumVarArgRegs % 2 == 0)
750 ? NumVarArgRegs * 4
751 : NumVarArgRegs * 4 + 4;
752 if (RegisterSavedAreaSizePlusPadding > 0) {
753 // Decrement the stack pointer by size of register saved area plus
754 // padding if any.
755 BuildMI(BB&: MBB, I: InsertPt, MIMD: dl, MCID: HII.get(Opcode: Hexagon::A2_addi), DestReg: SP)
756 .addReg(RegNo: SP)
757 .addImm(Val: -RegisterSavedAreaSizePlusPadding)
758 .setMIFlag(MachineInstr::FrameSetup);
759
760 int NumBytes = 0;
761 // Copy all the named arguments below register saved area.
762 auto &HMFI = *MF.getInfo<HexagonMachineFunctionInfo>();
763 for (int i = HMFI.getFirstNamedArgFrameIndex(),
764 e = HMFI.getLastNamedArgFrameIndex(); i >= e; --i) {
765 uint64_t ObjSize = MFI.getObjectSize(ObjectIdx: i);
766 Align ObjAlign = MFI.getObjectAlign(ObjectIdx: i);
767
768 // Determine the kind of load/store that should be used.
769 unsigned LDOpc, STOpc;
770 uint64_t OpcodeChecker = ObjAlign.value();
771
772 // Handle cases where alignment of an object is > its size.
773 if (ObjAlign > ObjSize) {
774 if (ObjSize <= 1)
775 OpcodeChecker = 1;
776 else if (ObjSize <= 2)
777 OpcodeChecker = 2;
778 else if (ObjSize <= 4)
779 OpcodeChecker = 4;
780 else if (ObjSize > 4)
781 OpcodeChecker = 8;
782 }
783
784 switch (OpcodeChecker) {
785 case 1:
786 LDOpc = Hexagon::L2_loadrb_io;
787 STOpc = Hexagon::S2_storerb_io;
788 break;
789 case 2:
790 LDOpc = Hexagon::L2_loadrh_io;
791 STOpc = Hexagon::S2_storerh_io;
792 break;
793 case 4:
794 LDOpc = Hexagon::L2_loadri_io;
795 STOpc = Hexagon::S2_storeri_io;
796 break;
797 case 8:
798 default:
799 LDOpc = Hexagon::L2_loadrd_io;
800 STOpc = Hexagon::S2_storerd_io;
801 break;
802 }
803
804 Register RegUsed = LDOpc == Hexagon::L2_loadrd_io ? Hexagon::D3
805 : Hexagon::R6;
806 int LoadStoreCount = ObjSize / OpcodeChecker;
807
808 if (ObjSize % OpcodeChecker)
809 ++LoadStoreCount;
810
811 // Get the start location of the load. NumBytes is basically the
812 // offset from the stack pointer of previous function, which would be
813 // the caller in this case, as this function has variable argument
814 // list.
815 if (NumBytes != 0)
816 NumBytes = alignTo(Size: NumBytes, A: ObjAlign);
817
818 int Count = 0;
819 while (Count < LoadStoreCount) {
820 // Load the value of the named argument on stack.
821 BuildMI(BB&: MBB, I: InsertPt, MIMD: dl, MCID: HII.get(Opcode: LDOpc), DestReg: RegUsed)
822 .addReg(RegNo: SP)
823 .addImm(Val: RegisterSavedAreaSizePlusPadding +
824 ObjAlign.value() * Count + NumBytes)
825 .setMIFlag(MachineInstr::FrameSetup);
826
827 // Store it below the register saved area plus padding.
828 BuildMI(BB&: MBB, I: InsertPt, MIMD: dl, MCID: HII.get(Opcode: STOpc))
829 .addReg(RegNo: SP)
830 .addImm(Val: ObjAlign.value() * Count + NumBytes)
831 .addReg(RegNo: RegUsed)
832 .setMIFlag(MachineInstr::FrameSetup);
833
834 Count++;
835 }
836 NumBytes += MFI.getObjectSize(ObjectIdx: i);
837 }
838
839 // Make NumBytes 8 byte aligned
840 NumBytes = alignTo(Value: NumBytes, Align: 8);
841
842 // If the number of registers having variable arguments is odd,
843 // leave 4 bytes of padding to get to the location where first
844 // variable argument which was passed through register was copied.
845 NumBytes = (NumVarArgRegs % 2 == 0) ? NumBytes : NumBytes + 4;
846
847 for (int j = FirstVarArgSavedReg, i = 0; j < 6; ++j, ++i) {
848 BuildMI(BB&: MBB, I: InsertPt, MIMD: dl, MCID: HII.get(Opcode: Hexagon::S2_storeri_io))
849 .addReg(RegNo: SP)
850 .addImm(Val: NumBytes + 4 * i)
851 .addReg(RegNo: Hexagon::R0 + j)
852 .setMIFlag(MachineInstr::FrameSetup);
853 }
854 }
855 }
856
857 if (hasFP(MF)) {
858 insertAllocframe(MBB, InsertPt, NumBytes);
859 if (AlignStack) {
860 BuildMI(BB&: MBB, I: InsertPt, MIMD: dl, MCID: HII.get(Opcode: Hexagon::A2_andir), DestReg: SP)
861 .addReg(RegNo: SP)
862 .addImm(Val: -int64_t(MaxAlign.value()));
863 }
864 // If the stack-checking is enabled, and we spilled the callee-saved
865 // registers inline (i.e. did not use a spill function), then call
866 // the stack checker directly.
867 if (EnableStackOVFSanitizer && !PrologueStubs)
868 BuildMI(BB&: MBB, I: InsertPt, MIMD: dl, MCID: HII.get(Opcode: Hexagon::PS_call_stk))
869 .addExternalSymbol(FnName: "__runtime_stack_check");
870 } else if (NumBytes > 0) {
871 assert(alignTo(NumBytes, 8) == NumBytes);
872 auto *TLI = HST.getTargetLowering();
873 bool NeedsProbing = TLI->hasInlineStackProbe(MF);
874 unsigned ProbeSize = 0;
875 if (NeedsProbing) {
876 Align StackAlign = getStackAlign();
877 ProbeSize = TLI->getStackProbeSize(MF, StackAlign);
878 }
879 if (NeedsProbing && NumBytes > ProbeSize) {
880 // Compute target SP in R28 (caller-saved scratch).
881 BuildMI(BB&: MBB, I: InsertPt, MIMD: dl, MCID: HII.get(Opcode: Hexagon::A2_addi), DestReg: Hexagon::R28)
882 .addReg(RegNo: SP)
883 .addImm(Val: -int(NumBytes))
884 .setMIFlag(MachineInstr::FrameSetup);
885 // Emit pseudo to be expanded by inlineStackProbe().
886 BuildMI(BB&: MBB, I: InsertPt, MIMD: dl, MCID: HII.get(Opcode: Hexagon::PS_probed_stackalloc))
887 .addReg(RegNo: Hexagon::R28)
888 .setMIFlag(MachineInstr::FrameSetup);
889 } else {
890 BuildMI(BB&: MBB, I: InsertPt, MIMD: dl, MCID: HII.get(Opcode: Hexagon::A2_addi), DestReg: SP)
891 .addReg(RegNo: SP)
892 .addImm(Val: -int(NumBytes))
893 .setMIFlag(MachineInstr::FrameSetup);
894 }
895 }
896}
897
898void HexagonFrameLowering::insertEpilogueInBlock(MachineBasicBlock &MBB) const {
899 MachineFunction &MF = *MBB.getParent();
900 auto &HST = MF.getSubtarget<HexagonSubtarget>();
901 auto &HII = *HST.getInstrInfo();
902 auto &HRI = *HST.getRegisterInfo();
903 Register SP = HRI.getStackRegister();
904
905 MachineBasicBlock::iterator InsertPt = MBB.getFirstTerminator();
906 DebugLoc dl = MBB.findDebugLoc(MBBI: InsertPt);
907
908 if (!hasFP(MF)) {
909 MachineFrameInfo &MFI = MF.getFrameInfo();
910 unsigned NumBytes = MFI.getStackSize();
911 if (MF.getFunction().isVarArg() &&
912 MF.getSubtarget<HexagonSubtarget>().isEnvironmentMusl()) {
913 // On Hexagon Linux, deallocate the stack for the register saved area.
914 int NumVarArgRegs = 6 - FirstVarArgSavedReg;
915 int RegisterSavedAreaSizePlusPadding = (NumVarArgRegs % 2 == 0) ?
916 (NumVarArgRegs * 4) : (NumVarArgRegs * 4 + 4);
917 NumBytes += RegisterSavedAreaSizePlusPadding;
918 }
919 if (NumBytes) {
920 BuildMI(BB&: MBB, I: InsertPt, MIMD: dl, MCID: HII.get(Opcode: Hexagon::A2_addi), DestReg: SP)
921 .addReg(RegNo: SP)
922 .addImm(Val: NumBytes);
923 }
924 return;
925 }
926
927 MachineInstr *RetI = getReturn(MBB);
928 unsigned RetOpc = RetI ? RetI->getOpcode() : 0;
929
930 // Handle EH_RETURN.
931 if (RetOpc == Hexagon::EH_RETURN_JMPR) {
932 // EH paths overwrite R31 with a handler address; the shadow stack is
933 // not read on this path, so no SCS epilogue is needed.
934 BuildMI(BB&: MBB, I: InsertPt, MIMD: dl, MCID: HII.get(Opcode: Hexagon::L2_deallocframe))
935 .addDef(RegNo: Hexagon::D15)
936 .addReg(RegNo: Hexagon::R30);
937 BuildMI(BB&: MBB, I: InsertPt, MIMD: dl, MCID: HII.get(Opcode: Hexagon::A2_add), DestReg: SP)
938 .addReg(RegNo: SP)
939 .addReg(RegNo: Hexagon::R28);
940 return;
941 }
942
943 // Check for RESTORE_DEALLOC_RET* tail call. Don't emit an extra dealloc-
944 // frame instruction if we encounter it.
945 // These are restore stubs, which useRestoreFunction() never selects when SCS
946 // is active (they do deallocframe+jumpr, bypassing the SCS epilogue), so no
947 // SCS epilogue is needed here.
948 if (RetOpc == Hexagon::RESTORE_DEALLOC_RET_JMP_V4 ||
949 RetOpc == Hexagon::RESTORE_DEALLOC_RET_JMP_V4_PIC ||
950 RetOpc == Hexagon::RESTORE_DEALLOC_RET_JMP_V4_EXT ||
951 RetOpc == Hexagon::RESTORE_DEALLOC_RET_JMP_V4_EXT_PIC) {
952 MachineBasicBlock::iterator It = RetI;
953 ++It;
954 // Delete all instructions after the RESTORE (except labels).
955 while (It != MBB.end()) {
956 if (!It->isLabel())
957 It = MBB.erase(I: It);
958 else
959 ++It;
960 }
961 return;
962 }
963
964 // It is possible that the restoring code is a call to a library function.
965 // All of the restore* functions include "deallocframe", so we need to make
966 // sure that we don't add an extra one.
967 bool NeedsSCS = MF.getFunction().hasFnAttribute(Kind: Attribute::ShadowCallStack);
968 bool NeedsDeallocframe = true;
969 unsigned PrevOpc = 0;
970 if (!MBB.empty() && InsertPt != MBB.begin()) {
971 MachineBasicBlock::iterator PrevIt = std::prev(x: InsertPt);
972 PrevOpc = PrevIt->getOpcode();
973 if (PrevOpc == Hexagon::RESTORE_DEALLOC_BEFORE_TAILCALL_V4 ||
974 PrevOpc == Hexagon::RESTORE_DEALLOC_BEFORE_TAILCALL_V4_PIC ||
975 PrevOpc == Hexagon::RESTORE_DEALLOC_BEFORE_TAILCALL_V4_EXT ||
976 PrevOpc == Hexagon::RESTORE_DEALLOC_BEFORE_TAILCALL_V4_EXT_PIC ||
977 PrevOpc == Hexagon::PS_call_nr || PrevOpc == Hexagon::PS_callr_nr)
978 NeedsDeallocframe = false;
979 }
980
981 if (!MF.getSubtarget<HexagonSubtarget>().isEnvironmentMusl() ||
982 !MF.getFunction().isVarArg()) {
983 if (!NeedsDeallocframe) {
984 // RESTORE_DEALLOC_BEFORE_TAILCALL is a restore stub, which
985 // useRestoreFunction() never selects when SCS is active.
986 // PS_call_nr/PS_callr_nr are noreturn calls so the shadow stack entry
987 // is never read - no SCS epilogue is needed on either path.
988 if (NeedsSCS && PrevOpc != Hexagon::PS_call_nr &&
989 PrevOpc != Hexagon::PS_callr_nr)
990 report_fatal_error(reason: "SCS with RESTORE_DEALLOC stub: "
991 "useRestoreFunction() should have prevented this");
992 return;
993 }
994 // If the returning instruction is PS_jmpret, replace it with
995 // dealloc_return, otherwise just add deallocframe. The function
996 // could be returning via a tail call.
997 if (RetOpc != Hexagon::PS_jmpret || DisableDeallocRet || NeedsSCS) {
998 BuildMI(BB&: MBB, I: InsertPt, MIMD: dl, MCID: HII.get(Opcode: Hexagon::L2_deallocframe))
999 .addDef(RegNo: Hexagon::D15)
1000 .addReg(RegNo: Hexagon::R30);
1001 // When shadow call stack is active, overwrite R31 restored by
1002 // deallocframe with the shadow-stack copy, then retract the pointer.
1003 if (NeedsSCS)
1004 emitSCSEpilogue(MF, MBB, MI: InsertPt, DL: dl);
1005 return;
1006 }
1007 unsigned NewOpc = Hexagon::L4_return;
1008 MachineInstr *NewI = BuildMI(BB&: MBB, I: RetI, MIMD: dl, MCID: HII.get(Opcode: NewOpc))
1009 .addDef(RegNo: Hexagon::D15)
1010 .addReg(RegNo: Hexagon::R30);
1011 // Transfer the function live-out registers.
1012 NewI->copyImplicitOps(MF, MI: *RetI);
1013 MBB.erase(I: RetI);
1014 } else {
1015 // L2_deallocframe instruction after it.
1016 // Calculate the size of register saved area.
1017 int NumVarArgRegs = 6 - FirstVarArgSavedReg;
1018 int RegisterSavedAreaSizePlusPadding = (NumVarArgRegs % 2 == 0) ?
1019 (NumVarArgRegs * 4) : (NumVarArgRegs * 4 + 4);
1020
1021 MachineBasicBlock::iterator Term = MBB.getFirstTerminator();
1022 MachineBasicBlock::iterator I = (Term == MBB.begin()) ? MBB.end()
1023 : std::prev(x: Term);
1024 bool HasRestoreStub =
1025 I != MBB.end() &&
1026 (I->getOpcode() == Hexagon::RESTORE_DEALLOC_BEFORE_TAILCALL_V4_EXT ||
1027 I->getOpcode() ==
1028 Hexagon::RESTORE_DEALLOC_BEFORE_TAILCALL_V4_EXT_PIC ||
1029 I->getOpcode() == Hexagon::RESTORE_DEALLOC_BEFORE_TAILCALL_V4 ||
1030 I->getOpcode() == Hexagon::RESTORE_DEALLOC_BEFORE_TAILCALL_V4_PIC);
1031 if (!HasRestoreStub)
1032 BuildMI(BB&: MBB, I: InsertPt, MIMD: dl, MCID: HII.get(Opcode: Hexagon::L2_deallocframe))
1033 .addDef(RegNo: Hexagon::D15)
1034 .addReg(RegNo: Hexagon::R30);
1035 if (RegisterSavedAreaSizePlusPadding != 0)
1036 BuildMI(BB&: MBB, I: InsertPt, MIMD: dl, MCID: HII.get(Opcode: Hexagon::A2_addi), DestReg: SP)
1037 .addReg(RegNo: SP)
1038 .addImm(Val: RegisterSavedAreaSizePlusPadding);
1039 // RESTORE_DEALLOC stubs are never selected when SCS is active (see
1040 // useRestoreFunction()), so only emit the SCS epilogue when we emitted
1041 // our own deallocframe above.
1042 if (NeedsSCS && !HasRestoreStub)
1043 emitSCSEpilogue(MF, MBB, MI: InsertPt, DL: dl);
1044 }
1045}
1046
1047void HexagonFrameLowering::insertAllocframe(MachineBasicBlock &MBB,
1048 MachineBasicBlock::iterator InsertPt, unsigned NumBytes) const {
1049 MachineFunction &MF = *MBB.getParent();
1050 auto &HST = MF.getSubtarget<HexagonSubtarget>();
1051 auto &HII = *HST.getInstrInfo();
1052 auto &HRI = *HST.getRegisterInfo();
1053
1054 // Check for overflow.
1055 // Hexagon_TODO: Ugh! hardcoding. Is there an API that can be used?
1056 const unsigned int ALLOCFRAME_MAX = 16384;
1057
1058 // Create a dummy memory operand to avoid allocframe from being treated as
1059 // a volatile memory reference.
1060 auto *MMO = MF.getMachineMemOperand(PtrInfo: MachinePointerInfo::getStack(MF, Offset: 0),
1061 F: MachineMemOperand::MOStore, Size: 4, BaseAlignment: Align(4));
1062
1063 DebugLoc dl = MBB.findDebugLoc(MBBI: InsertPt);
1064 Register SP = HRI.getStackRegister();
1065
1066 auto *TLI = HST.getTargetLowering();
1067 bool NeedsProbing = TLI->hasInlineStackProbe(MF) && NumBytes > 0;
1068 unsigned ProbeSize = 0;
1069 if (NeedsProbing) {
1070 Align StackAlign = getStackAlign();
1071 ProbeSize = TLI->getStackProbeSize(MF, StackAlign);
1072 }
1073
1074 if (NeedsProbing && NumBytes > ProbeSize) {
1075 // Emit allocframe(#0) to save FP/LR only.
1076 BuildMI(BB&: MBB, I: InsertPt, MIMD: dl, MCID: HII.get(Opcode: Hexagon::S2_allocframe))
1077 .addDef(RegNo: SP)
1078 .addReg(RegNo: SP)
1079 .addImm(Val: 0)
1080 .addMemOperand(MMO)
1081 .setMIFlag(MachineInstr::FrameSetup);
1082
1083 // Compute target SP in R28 (caller-saved scratch).
1084 BuildMI(BB&: MBB, I: InsertPt, MIMD: dl, MCID: HII.get(Opcode: Hexagon::A2_addi), DestReg: Hexagon::R28)
1085 .addReg(RegNo: SP)
1086 .addImm(Val: -int(NumBytes))
1087 .setMIFlag(MachineInstr::FrameSetup);
1088
1089 // Emit pseudo to be expanded by inlineStackProbe().
1090 BuildMI(BB&: MBB, I: InsertPt, MIMD: dl, MCID: HII.get(Opcode: Hexagon::PS_probed_stackalloc))
1091 .addReg(RegNo: Hexagon::R28)
1092 .setMIFlag(MachineInstr::FrameSetup);
1093 } else if (NumBytes >= ALLOCFRAME_MAX) {
1094 // Emit allocframe(#0).
1095 BuildMI(BB&: MBB, I: InsertPt, MIMD: dl, MCID: HII.get(Opcode: Hexagon::S2_allocframe))
1096 .addDef(RegNo: SP)
1097 .addReg(RegNo: SP)
1098 .addImm(Val: 0)
1099 .addMemOperand(MMO)
1100 .setMIFlag(MachineInstr::FrameSetup);
1101
1102 // Subtract the size from the stack pointer.
1103 Register SP = HRI.getStackRegister();
1104 BuildMI(BB&: MBB, I: InsertPt, MIMD: dl, MCID: HII.get(Opcode: Hexagon::A2_addi), DestReg: SP)
1105 .addReg(RegNo: SP)
1106 .addImm(Val: -int(NumBytes))
1107 .setMIFlag(MachineInstr::FrameSetup);
1108 } else {
1109 BuildMI(BB&: MBB, I: InsertPt, MIMD: dl, MCID: HII.get(Opcode: Hexagon::S2_allocframe))
1110 .addDef(RegNo: SP)
1111 .addReg(RegNo: SP)
1112 .addImm(Val: NumBytes)
1113 .addMemOperand(MMO)
1114 .setMIFlag(MachineInstr::FrameSetup);
1115 }
1116}
1117
1118void HexagonFrameLowering::inlineStackProbe(
1119 MachineFunction &MF, MachineBasicBlock &PrologueMBB) const {
1120 // Collect PS_probed_stackalloc pseudos to expand. Collecting first avoids
1121 // issues with modifying the block while iterating.
1122 SmallVector<MachineInstr *, 2> ToReplace;
1123 for (MachineInstr &MI : PrologueMBB)
1124 if (MI.getOpcode() == Hexagon::PS_probed_stackalloc)
1125 ToReplace.push_back(Elt: &MI);
1126
1127 auto &HST = MF.getSubtarget<HexagonSubtarget>();
1128 auto &HII = *HST.getInstrInfo();
1129 auto *TLI = HST.getTargetLowering();
1130 Align StackAlign = getStackAlign();
1131 unsigned ProbeSize = TLI->getStackProbeSize(MF, StackAlign);
1132 MachineInstr::MIFlag Flags = MachineInstr::FrameSetup;
1133
1134 for (MachineInstr *MI : ToReplace) {
1135 MachineBasicBlock::iterator MBBI = MI->getIterator();
1136 DebugLoc DL = PrologueMBB.findDebugLoc(MBBI);
1137 Register TargetReg = MI->getOperand(i: 0).getReg();
1138
1139 // Split the block: everything after the pseudo goes into ExitMBB.
1140 MachineBasicBlock *MBB = MI->getParent();
1141 MachineFunction::iterator InsertPt = std::next(x: MBB->getIterator());
1142 MachineBasicBlock *LoopMBB =
1143 MF.CreateMachineBasicBlock(BB: MBB->getBasicBlock());
1144 MF.insert(MBBI: InsertPt, MBB: LoopMBB);
1145 MachineBasicBlock *ExitMBB =
1146 MF.CreateMachineBasicBlock(BB: MBB->getBasicBlock());
1147 MF.insert(MBBI: InsertPt, MBB: ExitMBB);
1148
1149 // Move everything after the pseudo into ExitMBB.
1150 ExitMBB->splice(Where: ExitMBB->end(), Other: MBB, From: std::next(x: MBBI), To: MBB->end());
1151 ExitMBB->transferSuccessorsAndUpdatePHIs(FromMBB: MBB);
1152
1153 // LoopMBB: probe each page by decrementing SP and storing zero.
1154 // When NumBytes is not an exact multiple of ProbeSize the loop
1155 // will overshoot by up to ProbeSize-1 bytes; the final r29 = r28
1156 // in ExitMBB corrects SP to the true target.
1157 //
1158 // The store is placed before the compare+branch so that the
1159 // packetizer can bundle them into a single VLIW packet. All
1160 // non-predicated instructions in a packet commit unconditionally,
1161 // so the probe store executes on every iteration including the
1162 // last (when the branch falls through).
1163 //
1164 // r29 = add(r29, #-ProbeSize)
1165 // memw(r29+#0) = #0
1166 // p0 = cmp.gtu(r29, r28)
1167 // if (p0) jump LoopMBB
1168 BuildMI(BB&: *LoopMBB, I: LoopMBB->end(), MIMD: DL, MCID: HII.get(Opcode: Hexagon::A2_addi),
1169 DestReg: Hexagon::R29)
1170 .addReg(RegNo: Hexagon::R29)
1171 .addImm(Val: -int(ProbeSize))
1172 .setMIFlags(Flags);
1173
1174 BuildMI(BB&: *LoopMBB, I: LoopMBB->end(), MIMD: DL, MCID: HII.get(Opcode: Hexagon::S4_storeiri_io))
1175 .addReg(RegNo: Hexagon::R29)
1176 .addImm(Val: 0)
1177 .addImm(Val: 0)
1178 .setMIFlags(Flags);
1179
1180 BuildMI(BB&: *LoopMBB, I: LoopMBB->end(), MIMD: DL, MCID: HII.get(Opcode: Hexagon::C2_cmpgtu),
1181 DestReg: Hexagon::P0)
1182 .addReg(RegNo: Hexagon::R29)
1183 .addReg(RegNo: TargetReg)
1184 .setMIFlags(Flags);
1185
1186 BuildMI(BB&: *LoopMBB, I: LoopMBB->end(), MIMD: DL, MCID: HII.get(Opcode: Hexagon::J2_jumpt))
1187 .addReg(RegNo: Hexagon::P0)
1188 .addMBB(MBB: LoopMBB)
1189 .setMIFlags(Flags);
1190
1191 // ExitMBB: set final SP.
1192 BuildMI(BB&: *ExitMBB, I: ExitMBB->begin(), MIMD: DL, MCID: HII.get(Opcode: Hexagon::A2_tfr),
1193 DestReg: Hexagon::R29)
1194 .addReg(RegNo: TargetReg)
1195 .setMIFlags(Flags);
1196
1197 // Set up CFG edges.
1198 MBB->addSuccessor(Succ: LoopMBB);
1199 LoopMBB->addSuccessor(Succ: LoopMBB);
1200 LoopMBB->addSuccessor(Succ: ExitMBB);
1201
1202 // Remove the pseudo.
1203 MI->eraseFromParent();
1204
1205 // Recompute live-ins for the new blocks.
1206 fullyRecomputeLiveIns(MBBs: {ExitMBB, LoopMBB});
1207 }
1208}
1209
1210void HexagonFrameLowering::insertAlignaInBlock(
1211 MachineBasicBlock &MBB, MachineBasicBlock::iterator InsertPt) const {
1212 MachineFunction &MF = *MBB.getParent();
1213 Register AP =
1214 MF.getInfo<HexagonMachineFunctionInfo>()->getStackAlignBaseReg();
1215 if (!AP.isValid())
1216 return;
1217
1218 assert(needsAligna(MF) && "Unexpected stack align base register");
1219
1220 auto &HII = *MF.getSubtarget<HexagonSubtarget>().getInstrInfo();
1221 Align MaxAlign = std::max(a: MF.getFrameInfo().getMaxAlign(), b: getStackAlign());
1222 DebugLoc DL = MBB.findDebugLoc(MBBI: InsertPt);
1223 BuildMI(BB&: MBB, I: InsertPt, MIMD: DL, MCID: HII.get(Opcode: Hexagon::PS_aligna), DestReg: AP)
1224 .addImm(Val: MaxAlign.value());
1225}
1226
1227void HexagonFrameLowering::updateEntryPaths(MachineFunction &MF,
1228 MachineBasicBlock &SaveB) const {
1229 SetVector<unsigned> Worklist;
1230
1231 MachineBasicBlock &EntryB = MF.front();
1232 Worklist.insert(X: EntryB.getNumber());
1233
1234 unsigned SaveN = SaveB.getNumber();
1235 auto &CSI = MF.getFrameInfo().getCalleeSavedInfo();
1236
1237 for (unsigned i = 0; i < Worklist.size(); ++i) {
1238 unsigned BN = Worklist[i];
1239 MachineBasicBlock &MBB = *MF.getBlockNumbered(N: BN);
1240 for (auto &R : CSI)
1241 if (!MBB.isLiveIn(Reg: R.getReg()))
1242 MBB.addLiveIn(PhysReg: R.getReg());
1243 if (BN != SaveN)
1244 for (auto &SB : MBB.successors())
1245 Worklist.insert(X: SB->getNumber());
1246 }
1247}
1248
1249bool HexagonFrameLowering::updateExitPaths(MachineBasicBlock &MBB,
1250 MachineBasicBlock &RestoreB, BitVector &DoneT, BitVector &DoneF,
1251 BitVector &Path) const {
1252 assert(MBB.getNumber() >= 0);
1253 unsigned BN = MBB.getNumber();
1254 if (Path[BN] || DoneF[BN])
1255 return false;
1256 if (DoneT[BN])
1257 return true;
1258
1259 auto &CSI = MBB.getParent()->getFrameInfo().getCalleeSavedInfo();
1260
1261 Path[BN] = true;
1262 bool ReachedExit = false;
1263 for (auto &SB : MBB.successors())
1264 ReachedExit |= updateExitPaths(MBB&: *SB, RestoreB, DoneT, DoneF, Path);
1265
1266 if (!MBB.empty() && MBB.back().isReturn()) {
1267 // Add implicit uses of all callee-saved registers to the reached
1268 // return instructions. This is to prevent the anti-dependency breaker
1269 // from renaming these registers.
1270 MachineInstr &RetI = MBB.back();
1271 if (!isRestoreCall(Opc: RetI.getOpcode()))
1272 for (auto &R : CSI)
1273 RetI.addOperand(Op: MachineOperand::CreateReg(Reg: R.getReg(), isDef: false, isImp: true));
1274 ReachedExit = true;
1275 }
1276
1277 // We don't want to add unnecessary live-ins to the restore block: since
1278 // the callee-saved registers are being defined in it, the entry of the
1279 // restore block cannot be on the path from the definitions to any exit.
1280 if (ReachedExit && &MBB != &RestoreB) {
1281 for (auto &R : CSI)
1282 if (!MBB.isLiveIn(Reg: R.getReg()))
1283 MBB.addLiveIn(PhysReg: R.getReg());
1284 DoneT[BN] = true;
1285 }
1286 if (!ReachedExit)
1287 DoneF[BN] = true;
1288
1289 Path[BN] = false;
1290 return ReachedExit;
1291}
1292
1293static std::optional<MachineBasicBlock::iterator>
1294findCFILocation(MachineBasicBlock &B) {
1295 // The CFI instructions need to be inserted right after allocframe.
1296 // An exception to this is a situation where allocframe is bundled
1297 // with a call: then the CFI instructions need to be inserted before
1298 // the packet with the allocframe+call (in case the call throws an
1299 // exception).
1300 auto End = B.instr_end();
1301
1302 for (MachineInstr &I : B) {
1303 MachineBasicBlock::iterator It = I.getIterator();
1304 if (!I.isBundle()) {
1305 if (I.getOpcode() == Hexagon::S2_allocframe)
1306 return std::next(x: It);
1307 continue;
1308 }
1309 // I is a bundle.
1310 bool HasCall = false, HasAllocFrame = false;
1311 auto T = It.getInstrIterator();
1312 while (++T != End && T->isBundled()) {
1313 if (T->getOpcode() == Hexagon::S2_allocframe)
1314 HasAllocFrame = true;
1315 else if (T->isCall())
1316 HasCall = true;
1317 }
1318 if (HasAllocFrame)
1319 return HasCall ? It : std::next(x: It);
1320 }
1321 return std::nullopt;
1322}
1323
1324void HexagonFrameLowering::insertCFIInstructions(MachineFunction &MF) const {
1325 for (auto &B : MF)
1326 if (auto At = findCFILocation(B))
1327 insertCFIInstructionsAt(MBB&: B, At: *At);
1328}
1329
1330void HexagonFrameLowering::insertCFIInstructionsAt(MachineBasicBlock &MBB,
1331 MachineBasicBlock::iterator At) const {
1332 MachineFunction &MF = *MBB.getParent();
1333 MachineFrameInfo &MFI = MF.getFrameInfo();
1334 auto &HST = MF.getSubtarget<HexagonSubtarget>();
1335 auto &HII = *HST.getInstrInfo();
1336 auto &HRI = *HST.getRegisterInfo();
1337
1338 // If CFI instructions have debug information attached, something goes
1339 // wrong with the final assembly generation: the prolog_end is placed
1340 // in a wrong location.
1341 DebugLoc DL;
1342 const MCInstrDesc &CFID = HII.get(Opcode: TargetOpcode::CFI_INSTRUCTION);
1343
1344 MCSymbol *FrameLabel = MF.getContext().createTempSymbol();
1345 bool HasFP = hasFP(MF);
1346
1347 if (HasFP) {
1348 unsigned DwFPReg = HRI.getDwarfRegNum(Reg: HRI.getFrameRegister(), isEH: true);
1349 unsigned DwRAReg = HRI.getDwarfRegNum(Reg: HRI.getRARegister(), isEH: true);
1350
1351 // Define CFA via an offset from the value of FP.
1352 //
1353 // -8 -4 0 (SP)
1354 // --+----+----+---------------------
1355 // | FP | LR | increasing addresses -->
1356 // --+----+----+---------------------
1357 // | +-- Old SP (before allocframe)
1358 // +-- New FP (after allocframe)
1359 //
1360 // MCCFIInstruction::cfiDefCfa adds the offset from the register.
1361 // MCCFIInstruction::createOffset takes the offset without sign change.
1362 auto DefCfa = MCCFIInstruction::cfiDefCfa(L: FrameLabel, Register: DwFPReg, Offset: 8);
1363 BuildMI(BB&: MBB, I: At, MIMD: DL, MCID: CFID)
1364 .addCFIIndex(CFIIndex: MF.addFrameInst(Inst: DefCfa));
1365 // R31 (return addr) = CFA - 4
1366 auto OffR31 = MCCFIInstruction::createOffset(L: FrameLabel, Register: DwRAReg, Offset: -4);
1367 BuildMI(BB&: MBB, I: At, MIMD: DL, MCID: CFID)
1368 .addCFIIndex(CFIIndex: MF.addFrameInst(Inst: OffR31));
1369 // R30 (frame ptr) = CFA - 8
1370 auto OffR30 = MCCFIInstruction::createOffset(L: FrameLabel, Register: DwFPReg, Offset: -8);
1371 BuildMI(BB&: MBB, I: At, MIMD: DL, MCID: CFID)
1372 .addCFIIndex(CFIIndex: MF.addFrameInst(Inst: OffR30));
1373 }
1374
1375 static const MCPhysReg RegsToMove[] = {
1376 Hexagon::R1, Hexagon::R0, Hexagon::R3, Hexagon::R2,
1377 Hexagon::R17, Hexagon::R16, Hexagon::R19, Hexagon::R18,
1378 Hexagon::R21, Hexagon::R20, Hexagon::R23, Hexagon::R22,
1379 Hexagon::R25, Hexagon::R24, Hexagon::R27, Hexagon::R26,
1380 Hexagon::D0, Hexagon::D1, Hexagon::D8, Hexagon::D9,
1381 Hexagon::D10, Hexagon::D11, Hexagon::D12, Hexagon::D13
1382 };
1383
1384 const std::vector<CalleeSavedInfo> &CSI = MFI.getCalleeSavedInfo();
1385
1386 for (MCPhysReg Reg : RegsToMove) {
1387 auto IfR = [Reg] (const CalleeSavedInfo &C) -> bool {
1388 return C.getReg() == Reg;
1389 };
1390 auto F = find_if(Range: CSI, P: IfR);
1391 if (F == CSI.end())
1392 continue;
1393
1394 int64_t Offset;
1395 if (HasFP) {
1396 // If the function has a frame pointer (i.e. has an allocframe),
1397 // then the CFA has been defined in terms of FP. Any offsets in
1398 // the following CFI instructions have to be defined relative
1399 // to FP, which points to the bottom of the stack frame.
1400 // The function getFrameIndexReference can still choose to use SP
1401 // for the offset calculation, so we cannot simply call it here.
1402 // Instead, get the offset (relative to the FP) directly.
1403 Offset = MFI.getObjectOffset(ObjectIdx: F->getFrameIdx());
1404 } else {
1405 Register FrameReg;
1406 Offset =
1407 getFrameIndexReference(MF, FI: F->getFrameIdx(), FrameReg).getFixed();
1408 }
1409 // Subtract 8 to make room for R30 and R31, which are added above.
1410 Offset -= 8;
1411
1412 if (Reg < Hexagon::D0 || Reg > Hexagon::D15) {
1413 unsigned DwarfReg = HRI.getDwarfRegNum(Reg, isEH: true);
1414 auto OffReg = MCCFIInstruction::createOffset(L: FrameLabel, Register: DwarfReg,
1415 Offset);
1416 BuildMI(BB&: MBB, I: At, MIMD: DL, MCID: CFID)
1417 .addCFIIndex(CFIIndex: MF.addFrameInst(Inst: OffReg));
1418 } else {
1419 // Split the double regs into subregs, and generate appropriate
1420 // cfi_offsets.
1421 // The only reason, we are split double regs is, llvm-mc does not
1422 // understand paired registers for cfi_offset.
1423 // Eg .cfi_offset r1:0, -64
1424
1425 Register HiReg = HRI.getSubReg(Reg, Idx: Hexagon::isub_hi);
1426 Register LoReg = HRI.getSubReg(Reg, Idx: Hexagon::isub_lo);
1427 unsigned HiDwarfReg = HRI.getDwarfRegNum(Reg: HiReg, isEH: true);
1428 unsigned LoDwarfReg = HRI.getDwarfRegNum(Reg: LoReg, isEH: true);
1429 auto OffHi = MCCFIInstruction::createOffset(L: FrameLabel, Register: HiDwarfReg,
1430 Offset: Offset+4);
1431 BuildMI(BB&: MBB, I: At, MIMD: DL, MCID: CFID)
1432 .addCFIIndex(CFIIndex: MF.addFrameInst(Inst: OffHi));
1433 auto OffLo = MCCFIInstruction::createOffset(L: FrameLabel, Register: LoDwarfReg,
1434 Offset);
1435 BuildMI(BB&: MBB, I: At, MIMD: DL, MCID: CFID)
1436 .addCFIIndex(CFIIndex: MF.addFrameInst(Inst: OffLo));
1437 }
1438 }
1439}
1440
1441bool HexagonFrameLowering::hasFPImpl(const MachineFunction &MF) const {
1442 auto &MFI = MF.getFrameInfo();
1443 auto &HRI = *MF.getSubtarget<HexagonSubtarget>().getRegisterInfo();
1444 bool HasExtraAlign = HRI.hasStackRealignment(MF);
1445 bool HasAlloca = MFI.hasVarSizedObjects();
1446
1447 // Insert ALLOCFRAME if we need to or at -O0 for the debugger. Think
1448 // that this shouldn't be required, but doing so now because gcc does and
1449 // gdb can't break at the start of the function without it. Will remove if
1450 // this turns out to be a gdb bug.
1451 //
1452 if (MF.getTarget().getOptLevel() == CodeGenOptLevel::None)
1453 return true;
1454
1455 // By default we want to use SP (since it's always there). FP requires
1456 // some setup (i.e. ALLOCFRAME).
1457 // Both, alloca and stack alignment modify the stack pointer by an
1458 // undetermined value, so we need to save it at the entry to the function
1459 // (i.e. use allocframe).
1460 if (HasAlloca || HasExtraAlign)
1461 return true;
1462
1463 // If FP-elimination is disabled, we have to use FP. This must not be
1464 // gated on stack size: the user/ABI-requested frame pointer is needed
1465 // regardless of whether the function currently has a stack frame.
1466 // Every other target checks DisableFramePointerElim unconditionally.
1467 if (MF.disableFramePointerElim() || !EliminateFramePointer)
1468 return true;
1469
1470 if (MFI.getStackSize() > 0) {
1471 if (EnableStackOVFSanitizer)
1472 return true;
1473 }
1474
1475 const auto &HMFI = *MF.getInfo<HexagonMachineFunctionInfo>();
1476 if ((MFI.hasCalls() && !enableAllocFrameElim(MF)) || HMFI.hasClobberLR())
1477 return true;
1478
1479 return false;
1480}
1481
1482enum SpillKind {
1483 SK_ToMem,
1484 SK_FromMem,
1485 SK_FromMemTailcall
1486};
1487
1488static const char *getSpillFunctionFor(Register MaxReg, SpillKind SpillType,
1489 bool Stkchk = false) {
1490 const char * V4SpillToMemoryFunctions[] = {
1491 "__save_r16_through_r17",
1492 "__save_r16_through_r19",
1493 "__save_r16_through_r21",
1494 "__save_r16_through_r23",
1495 "__save_r16_through_r25",
1496 "__save_r16_through_r27" };
1497
1498 const char * V4SpillToMemoryStkchkFunctions[] = {
1499 "__save_r16_through_r17_stkchk",
1500 "__save_r16_through_r19_stkchk",
1501 "__save_r16_through_r21_stkchk",
1502 "__save_r16_through_r23_stkchk",
1503 "__save_r16_through_r25_stkchk",
1504 "__save_r16_through_r27_stkchk" };
1505
1506 const char * V4SpillFromMemoryFunctions[] = {
1507 "__restore_r16_through_r17_and_deallocframe",
1508 "__restore_r16_through_r19_and_deallocframe",
1509 "__restore_r16_through_r21_and_deallocframe",
1510 "__restore_r16_through_r23_and_deallocframe",
1511 "__restore_r16_through_r25_and_deallocframe",
1512 "__restore_r16_through_r27_and_deallocframe" };
1513
1514 const char * V4SpillFromMemoryTailcallFunctions[] = {
1515 "__restore_r16_through_r17_and_deallocframe_before_tailcall",
1516 "__restore_r16_through_r19_and_deallocframe_before_tailcall",
1517 "__restore_r16_through_r21_and_deallocframe_before_tailcall",
1518 "__restore_r16_through_r23_and_deallocframe_before_tailcall",
1519 "__restore_r16_through_r25_and_deallocframe_before_tailcall",
1520 "__restore_r16_through_r27_and_deallocframe_before_tailcall"
1521 };
1522
1523 const char **SpillFunc = nullptr;
1524
1525 switch(SpillType) {
1526 case SK_ToMem:
1527 SpillFunc = Stkchk ? V4SpillToMemoryStkchkFunctions
1528 : V4SpillToMemoryFunctions;
1529 break;
1530 case SK_FromMem:
1531 SpillFunc = V4SpillFromMemoryFunctions;
1532 break;
1533 case SK_FromMemTailcall:
1534 SpillFunc = V4SpillFromMemoryTailcallFunctions;
1535 break;
1536 }
1537 assert(SpillFunc && "Unknown spill kind");
1538
1539 // Spill all callee-saved registers up to the highest register used.
1540 switch (MaxReg) {
1541 case Hexagon::R17:
1542 return SpillFunc[0];
1543 case Hexagon::R19:
1544 return SpillFunc[1];
1545 case Hexagon::R21:
1546 return SpillFunc[2];
1547 case Hexagon::R23:
1548 return SpillFunc[3];
1549 case Hexagon::R25:
1550 return SpillFunc[4];
1551 case Hexagon::R27:
1552 return SpillFunc[5];
1553 default:
1554 llvm_unreachable("Unhandled maximum callee save register");
1555 }
1556 return nullptr;
1557}
1558
1559StackOffset
1560HexagonFrameLowering::getFrameIndexReference(const MachineFunction &MF, int FI,
1561 Register &FrameReg) const {
1562 auto &MFI = MF.getFrameInfo();
1563 auto &HRI = *MF.getSubtarget<HexagonSubtarget>().getRegisterInfo();
1564
1565 int Offset = MFI.getObjectOffset(ObjectIdx: FI);
1566 bool HasAlloca = MFI.hasVarSizedObjects();
1567 bool HasExtraAlign = HRI.hasStackRealignment(MF);
1568 bool NoOpt = MF.getTarget().getOptLevel() == CodeGenOptLevel::None;
1569
1570 auto &HMFI = *MF.getInfo<HexagonMachineFunctionInfo>();
1571 unsigned FrameSize = MFI.getStackSize();
1572 Register SP = HRI.getStackRegister();
1573 Register FP = HRI.getFrameRegister();
1574 Register AP = HMFI.getStackAlignBaseReg();
1575 // It may happen that AP will be absent even HasAlloca && HasExtraAlign
1576 // is true. HasExtraAlign may be set because of vector spills, without
1577 // aligned locals or aligned outgoing function arguments. Since vector
1578 // spills will ultimately be "unaligned", it is safe to use FP as the
1579 // base register.
1580 // In fact, in such a scenario the stack is actually not required to be
1581 // aligned, although it may end up being aligned anyway, since this
1582 // particular case is not easily detectable. The alignment will be
1583 // unnecessary, but not incorrect.
1584 // Unfortunately there is no quick way to verify that the above is
1585 // indeed the case (and that it's not a result of an error), so just
1586 // assume that missing AP will be replaced by FP.
1587 // (A better fix would be to rematerialize AP from FP and always align
1588 // vector spills.)
1589 bool UseFP = false, UseAP = false; // Default: use SP (except at -O0).
1590 // Use FP at -O0, except when there are objects with extra alignment.
1591 // That additional alignment requirement may cause a pad to be inserted,
1592 // which will make it impossible to use FP to access objects located
1593 // past the pad.
1594 if (NoOpt && !HasExtraAlign)
1595 UseFP = true;
1596 if (MFI.isFixedObjectIndex(ObjectIdx: FI) || MFI.isObjectPreAllocated(ObjectIdx: FI)) {
1597 // Fixed and preallocated objects will be located before any padding
1598 // so FP must be used to access them.
1599 UseFP |= (HasAlloca || HasExtraAlign);
1600 } else {
1601 if (HasAlloca) {
1602 if (HasExtraAlign)
1603 UseAP = true;
1604 else
1605 UseFP = true;
1606 }
1607 }
1608
1609 // If FP was picked, then there had better be FP.
1610 bool HasFP = hasFP(MF);
1611 assert((HasFP || !UseFP) && "This function must have frame pointer");
1612
1613 // Having FP implies allocframe. Allocframe will store extra 8 bytes:
1614 // FP/LR. If the base register is used to access an object across these
1615 // 8 bytes, then the offset will need to be adjusted by 8.
1616 //
1617 // After allocframe:
1618 // HexagonISelLowering adds 8 to ---+
1619 // the offsets of all stack-based |
1620 // arguments (*) |
1621 // |
1622 // getObjectOffset < 0 0 8 getObjectOffset >= 8
1623 // ------------------------+-----+------------------------> increasing
1624 // <local objects> |FP/LR| <input arguments> addresses
1625 // -----------------+------+-----+------------------------>
1626 // | |
1627 // SP/AP point --+ +-- FP points here (**)
1628 // somewhere on
1629 // this side of FP/LR
1630 //
1631 // (*) See LowerFormalArguments. The FP/LR is assumed to be present.
1632 // (**) *FP == old-FP. FP+0..7 are the bytes of FP/LR.
1633
1634 // The lowering assumes that FP/LR is present, and so the offsets of
1635 // the formal arguments start at 8. If FP/LR is not there we need to
1636 // reduce the offset by 8.
1637 if (Offset > 0 && !HasFP)
1638 Offset -= 8;
1639
1640 if (UseFP)
1641 FrameReg = FP;
1642 else if (UseAP)
1643 FrameReg = AP;
1644 else
1645 FrameReg = SP;
1646
1647 // Calculate the actual offset in the instruction. If there is no FP
1648 // (in other words, no allocframe), then SP will not be adjusted (i.e.
1649 // there will be no SP -= FrameSize), so the frame size should not be
1650 // added to the calculated offset.
1651 int RealOffset = Offset;
1652 if (!UseFP && !UseAP)
1653 RealOffset = FrameSize+Offset;
1654 return StackOffset::getFixed(Fixed: RealOffset);
1655}
1656
1657MachineBasicBlock::iterator HexagonFrameLowering::insertCSRSpillsInBlock(
1658 MachineBasicBlock &MBB, const CSIVect &CSI, const HexagonRegisterInfo &HRI,
1659 bool &PrologueStubs) const {
1660 MachineBasicBlock::iterator MI = MBB.begin();
1661 if (CSI.empty())
1662 return MI;
1663
1664 PrologueStubs = false;
1665 MachineFunction &MF = *MBB.getParent();
1666 auto &HST = MF.getSubtarget<HexagonSubtarget>();
1667 auto &HII = *HST.getInstrInfo();
1668
1669 if (useSpillFunction(MF, CSI)) {
1670 PrologueStubs = true;
1671 Register MaxReg = getMaxCalleeSavedReg(CSI, TRI: HRI);
1672 bool StkOvrFlowEnabled = EnableStackOVFSanitizer;
1673 const char *SpillFun = getSpillFunctionFor(MaxReg, SpillType: SK_ToMem,
1674 Stkchk: StkOvrFlowEnabled);
1675 auto &HTM = static_cast<const HexagonTargetMachine&>(MF.getTarget());
1676 bool IsPIC = HTM.isPositionIndependent();
1677 bool LongCalls = HST.useLongCalls() || EnableSaveRestoreLong;
1678
1679 // Call spill function.
1680 DebugLoc DL = MI != MBB.end() ? MI->getDebugLoc() : DebugLoc();
1681 unsigned SpillOpc;
1682 if (StkOvrFlowEnabled) {
1683 if (LongCalls)
1684 SpillOpc = IsPIC ? Hexagon::SAVE_REGISTERS_CALL_V4STK_EXT_PIC
1685 : Hexagon::SAVE_REGISTERS_CALL_V4STK_EXT;
1686 else
1687 SpillOpc = IsPIC ? Hexagon::SAVE_REGISTERS_CALL_V4STK_PIC
1688 : Hexagon::SAVE_REGISTERS_CALL_V4STK;
1689 } else {
1690 if (LongCalls)
1691 SpillOpc = IsPIC ? Hexagon::SAVE_REGISTERS_CALL_V4_EXT_PIC
1692 : Hexagon::SAVE_REGISTERS_CALL_V4_EXT;
1693 else
1694 SpillOpc = IsPIC ? Hexagon::SAVE_REGISTERS_CALL_V4_PIC
1695 : Hexagon::SAVE_REGISTERS_CALL_V4;
1696 }
1697
1698 MachineInstr *SaveRegsCall =
1699 BuildMI(BB&: MBB, I: MI, MIMD: DL, MCID: HII.get(Opcode: SpillOpc))
1700 .addExternalSymbol(FnName: SpillFun);
1701
1702 // Add callee-saved registers as use.
1703 addCalleeSaveRegistersAsImpOperand(MI: SaveRegsCall, CSI, IsDef: false, IsKill: true);
1704 // Add live in registers.
1705 for (const CalleeSavedInfo &I : CSI)
1706 MBB.addLiveIn(PhysReg: I.getReg());
1707 } else {
1708 for (const CalleeSavedInfo &I : CSI) {
1709 MCRegister Reg = I.getReg();
1710 // Add live in registers. We treat eh_return callee saved register r0 - r3
1711 // specially. They are not really callee saved registers as they are not
1712 // supposed to be killed.
1713 bool IsKill = !HRI.isEHReturnCalleeSaveReg(Reg);
1714 int FI = I.getFrameIdx();
1715 const TargetRegisterClass *RC = HRI.getMinimalPhysRegClass(Reg);
1716 HII.storeRegToStackSlot(MBB, MBBI: MI, SrcReg: Reg, isKill: IsKill, FrameIndex: FI, RC, VReg: Register());
1717 if (IsKill)
1718 MBB.addLiveIn(PhysReg: Reg);
1719 }
1720 }
1721
1722 return MI;
1723}
1724
1725bool HexagonFrameLowering::insertCSRRestoresInBlock(MachineBasicBlock &MBB,
1726 const CSIVect &CSI, const HexagonRegisterInfo &HRI) const {
1727 if (CSI.empty())
1728 return false;
1729
1730 MachineBasicBlock::iterator MI = MBB.getFirstTerminator();
1731 MachineFunction &MF = *MBB.getParent();
1732 auto &HST = MF.getSubtarget<HexagonSubtarget>();
1733 auto &HII = *HST.getInstrInfo();
1734
1735 if (useRestoreFunction(MF, CSI)) {
1736 bool HasTC = hasTailCall(MBB) || !hasReturn(MBB);
1737 Register MaxR = getMaxCalleeSavedReg(CSI, TRI: HRI);
1738 SpillKind Kind = HasTC ? SK_FromMemTailcall : SK_FromMem;
1739 const char *RestoreFn = getSpillFunctionFor(MaxReg: MaxR, SpillType: Kind);
1740 auto &HTM = static_cast<const HexagonTargetMachine&>(MF.getTarget());
1741 bool IsPIC = HTM.isPositionIndependent();
1742 bool LongCalls = HST.useLongCalls() || EnableSaveRestoreLong;
1743
1744 // Call spill function.
1745 DebugLoc DL = MI != MBB.end() ? MI->getDebugLoc()
1746 : MBB.findDebugLoc(MBBI: MBB.end());
1747 MachineInstr *DeallocCall = nullptr;
1748
1749 if (HasTC) {
1750 unsigned RetOpc;
1751 if (LongCalls)
1752 RetOpc = IsPIC ? Hexagon::RESTORE_DEALLOC_BEFORE_TAILCALL_V4_EXT_PIC
1753 : Hexagon::RESTORE_DEALLOC_BEFORE_TAILCALL_V4_EXT;
1754 else
1755 RetOpc = IsPIC ? Hexagon::RESTORE_DEALLOC_BEFORE_TAILCALL_V4_PIC
1756 : Hexagon::RESTORE_DEALLOC_BEFORE_TAILCALL_V4;
1757 DeallocCall = BuildMI(BB&: MBB, I: MI, MIMD: DL, MCID: HII.get(Opcode: RetOpc))
1758 .addExternalSymbol(FnName: RestoreFn);
1759 } else {
1760 // The block has a return.
1761 MachineBasicBlock::iterator It = MBB.getFirstTerminator();
1762 assert(It->isReturn() && std::next(It) == MBB.end());
1763 unsigned RetOpc;
1764 if (LongCalls)
1765 RetOpc = IsPIC ? Hexagon::RESTORE_DEALLOC_RET_JMP_V4_EXT_PIC
1766 : Hexagon::RESTORE_DEALLOC_RET_JMP_V4_EXT;
1767 else
1768 RetOpc = IsPIC ? Hexagon::RESTORE_DEALLOC_RET_JMP_V4_PIC
1769 : Hexagon::RESTORE_DEALLOC_RET_JMP_V4;
1770 DeallocCall = BuildMI(BB&: MBB, I: It, MIMD: DL, MCID: HII.get(Opcode: RetOpc))
1771 .addExternalSymbol(FnName: RestoreFn);
1772 // Transfer the function live-out registers.
1773 DeallocCall->copyImplicitOps(MF, MI: *It);
1774 }
1775 addCalleeSaveRegistersAsImpOperand(MI: DeallocCall, CSI, IsDef: true, IsKill: false);
1776 return true;
1777 }
1778
1779 for (const CalleeSavedInfo &I : CSI) {
1780 MCRegister Reg = I.getReg();
1781 const TargetRegisterClass *RC = HRI.getMinimalPhysRegClass(Reg);
1782 int FI = I.getFrameIdx();
1783 HII.loadRegFromStackSlot(MBB, MBBI: MI, DestReg: Reg, FrameIndex: FI, RC, VReg: Register());
1784 }
1785
1786 return true;
1787}
1788
1789MachineBasicBlock::iterator HexagonFrameLowering::eliminateCallFramePseudoInstr(
1790 MachineFunction &MF, MachineBasicBlock &MBB,
1791 MachineBasicBlock::iterator I) const {
1792 MachineInstr &MI = *I;
1793 unsigned Opc = MI.getOpcode();
1794 (void)Opc; // Silence compiler warning.
1795 assert((Opc == Hexagon::ADJCALLSTACKDOWN || Opc == Hexagon::ADJCALLSTACKUP) &&
1796 "Cannot handle this call frame pseudo instruction");
1797 return MBB.erase(I);
1798}
1799
1800/// Returns true if there are no caller-saved registers available in class RC.
1801static bool needToReserveScavengingSpillSlots(MachineFunction &MF,
1802 const HexagonRegisterInfo &HRI, const TargetRegisterClass *RC) {
1803 MachineRegisterInfo &MRI = MF.getRegInfo();
1804
1805 auto IsUsed = [&HRI,&MRI] (Register Reg) -> bool {
1806 for (MCRegAliasIterator AI(Reg, &HRI, true); AI.isValid(); ++AI)
1807 if (MRI.isPhysRegUsed(PhysReg: *AI))
1808 return true;
1809 return false;
1810 };
1811
1812 // Check for an unused caller-saved register. Callee-saved registers
1813 // have become pristine by now.
1814 for (const MCPhysReg *P = HRI.getCallerSavedRegs(MF: &MF, RC); *P; ++P)
1815 if (!IsUsed(*P))
1816 return false;
1817
1818 // All caller-saved registers are used.
1819 return true;
1820}
1821
1822#ifndef NDEBUG
1823static void dump_registers(BitVector &Regs, const TargetRegisterInfo &TRI) {
1824 dbgs() << '{';
1825 for (int x = Regs.find_first(); x >= 0; x = Regs.find_next(x)) {
1826 Register R = x;
1827 dbgs() << ' ' << printReg(R, &TRI);
1828 }
1829 dbgs() << " }";
1830}
1831#endif
1832
1833bool HexagonFrameLowering::assignCalleeSavedSpillSlots(MachineFunction &MF,
1834 const TargetRegisterInfo *TRI, std::vector<CalleeSavedInfo> &CSI) const {
1835 LLVM_DEBUG(dbgs() << __func__ << " on " << MF.getName() << '\n');
1836 MachineFrameInfo &MFI = MF.getFrameInfo();
1837 BitVector SRegs(Hexagon::NUM_TARGET_REGS);
1838
1839 // Generate a set of unique, callee-saved registers (SRegs), where each
1840 // register in the set is maximal in terms of sub-/super-register relation,
1841 // i.e. for each R in SRegs, no proper super-register of R is also in SRegs.
1842
1843 // (1) For each callee-saved register, add that register and all of its
1844 // sub-registers to SRegs.
1845 LLVM_DEBUG(dbgs() << "Initial CS registers: {");
1846 for (const CalleeSavedInfo &I : CSI) {
1847 Register R = I.getReg();
1848 LLVM_DEBUG(dbgs() << ' ' << printReg(R, TRI));
1849 for (MCPhysReg SR : TRI->subregs_inclusive(Reg: R))
1850 SRegs[SR] = true;
1851 }
1852 LLVM_DEBUG(dbgs() << " }\n");
1853 LLVM_DEBUG(dbgs() << "SRegs.1: "; dump_registers(SRegs, *TRI);
1854 dbgs() << "\n");
1855
1856 // (2) For each reserved register, remove that register and all of its
1857 // sub- and super-registers from SRegs.
1858 BitVector Reserved = TRI->getReservedRegs(MF);
1859 // Unreserve the stack align register: it is reserved for this function
1860 // only, it still needs to be saved/restored.
1861 Register AP =
1862 MF.getInfo<HexagonMachineFunctionInfo>()->getStackAlignBaseReg();
1863 assert((!needsAligna(MF) || AP.isValid()) &&
1864 "AP must be assigned before register allocation");
1865 if (AP.isValid()) {
1866 Reserved[AP] = false;
1867 // Unreserve super-regs if no other subregisters are reserved.
1868 for (MCPhysReg SP : TRI->superregs(Reg: AP)) {
1869 bool HasResSub = false;
1870 for (MCPhysReg SB : TRI->subregs(Reg: SP)) {
1871 if (!Reserved[SB])
1872 continue;
1873 HasResSub = true;
1874 break;
1875 }
1876 if (!HasResSub)
1877 Reserved[SP] = false;
1878 }
1879 }
1880
1881 for (int x = Reserved.find_first(); x >= 0; x = Reserved.find_next(Prev: x)) {
1882 Register R = x;
1883 for (MCPhysReg SR : TRI->superregs_inclusive(Reg: R))
1884 SRegs[SR] = false;
1885 }
1886 LLVM_DEBUG(dbgs() << "Res: "; dump_registers(Reserved, *TRI);
1887 dbgs() << "\n");
1888 LLVM_DEBUG(dbgs() << "SRegs.2: "; dump_registers(SRegs, *TRI);
1889 dbgs() << "\n");
1890
1891 // (3) Collect all registers that have at least one sub-register in SRegs,
1892 // and also have no sub-registers that are reserved. These will be the can-
1893 // didates for saving as a whole instead of their individual sub-registers.
1894 // (Saving R17:16 instead of R16 is fine, but only if R17 was not reserved.)
1895 BitVector TmpSup(Hexagon::NUM_TARGET_REGS);
1896 for (int x = SRegs.find_first(); x >= 0; x = SRegs.find_next(Prev: x)) {
1897 Register R = x;
1898 for (MCPhysReg SR : TRI->superregs(Reg: R))
1899 TmpSup[SR] = true;
1900 }
1901 for (int x = TmpSup.find_first(); x >= 0; x = TmpSup.find_next(Prev: x)) {
1902 Register R = x;
1903 for (MCPhysReg SR : TRI->subregs_inclusive(Reg: R)) {
1904 if (!Reserved[SR])
1905 continue;
1906 TmpSup[R] = false;
1907 break;
1908 }
1909 }
1910 LLVM_DEBUG(dbgs() << "TmpSup: "; dump_registers(TmpSup, *TRI);
1911 dbgs() << "\n");
1912
1913 // (4) Include all super-registers found in (3) into SRegs.
1914 SRegs |= TmpSup;
1915 LLVM_DEBUG(dbgs() << "SRegs.4: "; dump_registers(SRegs, *TRI);
1916 dbgs() << "\n");
1917
1918 // (5) For each register R in SRegs, if any super-register of R is in SRegs,
1919 // remove R from SRegs.
1920 for (int x = SRegs.find_first(); x >= 0; x = SRegs.find_next(Prev: x)) {
1921 Register R = x;
1922 for (MCPhysReg SR : TRI->superregs(Reg: R)) {
1923 if (!SRegs[SR])
1924 continue;
1925 SRegs[R] = false;
1926 break;
1927 }
1928 }
1929 LLVM_DEBUG(dbgs() << "SRegs.5: "; dump_registers(SRegs, *TRI);
1930 dbgs() << "\n");
1931
1932 // Now, for each register that has a fixed stack slot, create the stack
1933 // object for it.
1934 CSI.clear();
1935
1936 using SpillSlot = TargetFrameLowering::SpillSlot;
1937
1938 unsigned NumFixed;
1939 int64_t MinOffset = 0; // CS offsets are negative.
1940 const SpillSlot *FixedSlots = getCalleeSavedSpillSlots(NumEntries&: NumFixed);
1941 for (const SpillSlot *S = FixedSlots; S != FixedSlots+NumFixed; ++S) {
1942 if (!SRegs[S->Reg])
1943 continue;
1944 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg: S->Reg);
1945 int FI = MFI.CreateFixedSpillStackObject(Size: TRI->getSpillSize(RC: *RC), SPOffset: S->Offset);
1946 MinOffset = std::min(a: MinOffset, b: S->Offset);
1947 CSI.push_back(x: CalleeSavedInfo(S->Reg, FI));
1948 SRegs[S->Reg] = false;
1949 }
1950
1951 // There can be some registers that don't have fixed slots. For example,
1952 // we need to store R0-R3 in functions with exception handling. For each
1953 // such register, create a non-fixed stack object.
1954 for (int x = SRegs.find_first(); x >= 0; x = SRegs.find_next(Prev: x)) {
1955 Register R = x;
1956 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg: R);
1957 unsigned Size = TRI->getSpillSize(RC: *RC);
1958 int64_t Off = MinOffset - Size;
1959 Align Alignment = std::min(a: TRI->getSpillAlign(RC: *RC), b: getStackAlign());
1960 Off &= -Alignment.value();
1961 int FI = MFI.CreateFixedSpillStackObject(Size, SPOffset: Off);
1962 MinOffset = std::min(a: MinOffset, b: Off);
1963 CSI.push_back(x: CalleeSavedInfo(R, FI));
1964 SRegs[R] = false;
1965 }
1966
1967 LLVM_DEBUG({
1968 dbgs() << "CS information: {";
1969 for (const CalleeSavedInfo &I : CSI) {
1970 int FI = I.getFrameIdx();
1971 int Off = MFI.getObjectOffset(FI);
1972 dbgs() << ' ' << printReg(I.getReg(), TRI) << ":fi#" << FI << ":sp";
1973 if (Off >= 0)
1974 dbgs() << '+';
1975 dbgs() << Off;
1976 }
1977 dbgs() << " }\n";
1978 });
1979
1980#ifndef NDEBUG
1981 // Verify that all registers were handled.
1982 bool MissedReg = false;
1983 for (int x = SRegs.find_first(); x >= 0; x = SRegs.find_next(x)) {
1984 Register R = x;
1985 dbgs() << printReg(R, TRI) << ' ';
1986 MissedReg = true;
1987 }
1988 if (MissedReg)
1989 llvm_unreachable("...there are unhandled callee-saved registers!");
1990#endif
1991
1992 return true;
1993}
1994
1995bool HexagonFrameLowering::expandCopy(MachineBasicBlock &B,
1996 MachineBasicBlock::iterator It, MachineRegisterInfo &MRI,
1997 const HexagonInstrInfo &HII, SmallVectorImpl<Register> &NewRegs) const {
1998 MachineInstr *MI = &*It;
1999 DebugLoc DL = MI->getDebugLoc();
2000 Register DstR = MI->getOperand(i: 0).getReg();
2001 Register SrcR = MI->getOperand(i: 1).getReg();
2002 if (!Hexagon::ModRegsRegClass.contains(Reg: DstR) ||
2003 !Hexagon::ModRegsRegClass.contains(Reg: SrcR))
2004 return false;
2005
2006 Register TmpR = MRI.createVirtualRegister(RegClass: &Hexagon::IntRegsRegClass);
2007 BuildMI(BB&: B, I: It, MIMD: DL, MCID: HII.get(Opcode: TargetOpcode::COPY), DestReg: TmpR).add(MO: MI->getOperand(i: 1));
2008 BuildMI(BB&: B, I: It, MIMD: DL, MCID: HII.get(Opcode: TargetOpcode::COPY), DestReg: DstR)
2009 .addReg(RegNo: TmpR, Flags: RegState::Kill);
2010
2011 NewRegs.push_back(Elt: TmpR);
2012 B.erase(I: It);
2013 return true;
2014}
2015
2016bool HexagonFrameLowering::expandStoreInt(MachineBasicBlock &B,
2017 MachineBasicBlock::iterator It, MachineRegisterInfo &MRI,
2018 const HexagonInstrInfo &HII, SmallVectorImpl<Register> &NewRegs) const {
2019 MachineInstr *MI = &*It;
2020 if (!MI->getOperand(i: 0).isFI())
2021 return false;
2022
2023 DebugLoc DL = MI->getDebugLoc();
2024 unsigned Opc = MI->getOpcode();
2025 Register SrcR = MI->getOperand(i: 2).getReg();
2026 bool IsKill = MI->getOperand(i: 2).isKill();
2027 int FI = MI->getOperand(i: 0).getIndex();
2028
2029 // TmpR = C2_tfrpr SrcR if SrcR is a predicate register
2030 // TmpR = A2_tfrcrr SrcR if SrcR is a modifier register
2031 Register TmpR = MRI.createVirtualRegister(RegClass: &Hexagon::IntRegsRegClass);
2032 unsigned TfrOpc = (Opc == Hexagon::STriw_pred) ? Hexagon::C2_tfrpr
2033 : Hexagon::A2_tfrcrr;
2034 BuildMI(BB&: B, I: It, MIMD: DL, MCID: HII.get(Opcode: TfrOpc), DestReg: TmpR)
2035 .addReg(RegNo: SrcR, Flags: getKillRegState(B: IsKill));
2036
2037 // S2_storeri_io FI, 0, TmpR
2038 BuildMI(BB&: B, I: It, MIMD: DL, MCID: HII.get(Opcode: Hexagon::S2_storeri_io))
2039 .addFrameIndex(Idx: FI)
2040 .addImm(Val: 0)
2041 .addReg(RegNo: TmpR, Flags: RegState::Kill)
2042 .cloneMemRefs(OtherMI: *MI);
2043
2044 NewRegs.push_back(Elt: TmpR);
2045 B.erase(I: It);
2046 return true;
2047}
2048
2049bool HexagonFrameLowering::expandLoadInt(MachineBasicBlock &B,
2050 MachineBasicBlock::iterator It, MachineRegisterInfo &MRI,
2051 const HexagonInstrInfo &HII, SmallVectorImpl<Register> &NewRegs) const {
2052 MachineInstr *MI = &*It;
2053 if (!MI->getOperand(i: 1).isFI())
2054 return false;
2055
2056 DebugLoc DL = MI->getDebugLoc();
2057 unsigned Opc = MI->getOpcode();
2058 Register DstR = MI->getOperand(i: 0).getReg();
2059 int FI = MI->getOperand(i: 1).getIndex();
2060
2061 // TmpR = L2_loadri_io FI, 0
2062 Register TmpR = MRI.createVirtualRegister(RegClass: &Hexagon::IntRegsRegClass);
2063 BuildMI(BB&: B, I: It, MIMD: DL, MCID: HII.get(Opcode: Hexagon::L2_loadri_io), DestReg: TmpR)
2064 .addFrameIndex(Idx: FI)
2065 .addImm(Val: 0)
2066 .cloneMemRefs(OtherMI: *MI);
2067
2068 // DstR = C2_tfrrp TmpR if DstR is a predicate register
2069 // DstR = A2_tfrrcr TmpR if DstR is a modifier register
2070 unsigned TfrOpc = (Opc == Hexagon::LDriw_pred) ? Hexagon::C2_tfrrp
2071 : Hexagon::A2_tfrrcr;
2072 BuildMI(BB&: B, I: It, MIMD: DL, MCID: HII.get(Opcode: TfrOpc), DestReg: DstR)
2073 .addReg(RegNo: TmpR, Flags: RegState::Kill);
2074
2075 NewRegs.push_back(Elt: TmpR);
2076 B.erase(I: It);
2077 return true;
2078}
2079
2080bool HexagonFrameLowering::expandStoreVecPred(MachineBasicBlock &B,
2081 MachineBasicBlock::iterator It, MachineRegisterInfo &MRI,
2082 const HexagonInstrInfo &HII, SmallVectorImpl<Register> &NewRegs) const {
2083 MachineInstr *MI = &*It;
2084 if (!MI->getOperand(i: 0).isFI())
2085 return false;
2086
2087 DebugLoc DL = MI->getDebugLoc();
2088 Register SrcR = MI->getOperand(i: 2).getReg();
2089 bool IsKill = MI->getOperand(i: 2).isKill();
2090 int FI = MI->getOperand(i: 0).getIndex();
2091 auto *RC = &Hexagon::HvxVRRegClass;
2092
2093 // Insert transfer to general vector register.
2094 // TmpR0 = A2_tfrsi 0x01010101
2095 // TmpR1 = V6_vandqrt Qx, TmpR0
2096 // store FI, 0, TmpR1
2097 Register TmpR0 = MRI.createVirtualRegister(RegClass: &Hexagon::IntRegsRegClass);
2098 Register TmpR1 = MRI.createVirtualRegister(RegClass: RC);
2099
2100 BuildMI(BB&: B, I: It, MIMD: DL, MCID: HII.get(Opcode: Hexagon::A2_tfrsi), DestReg: TmpR0)
2101 .addImm(Val: 0x01010101);
2102
2103 BuildMI(BB&: B, I: It, MIMD: DL, MCID: HII.get(Opcode: Hexagon::V6_vandqrt), DestReg: TmpR1)
2104 .addReg(RegNo: SrcR, Flags: getKillRegState(B: IsKill))
2105 .addReg(RegNo: TmpR0, Flags: RegState::Kill);
2106
2107 HII.storeRegToStackSlot(MBB&: B, MBBI: It, SrcReg: TmpR1, isKill: true, FrameIndex: FI, RC, VReg: Register());
2108 expandStoreVec(B, It: std::prev(x: It), MRI, HII, NewRegs);
2109
2110 NewRegs.push_back(Elt: TmpR0);
2111 NewRegs.push_back(Elt: TmpR1);
2112 B.erase(I: It);
2113 return true;
2114}
2115
2116bool HexagonFrameLowering::expandLoadVecPred(MachineBasicBlock &B,
2117 MachineBasicBlock::iterator It, MachineRegisterInfo &MRI,
2118 const HexagonInstrInfo &HII, SmallVectorImpl<Register> &NewRegs) const {
2119 MachineInstr *MI = &*It;
2120 if (!MI->getOperand(i: 1).isFI())
2121 return false;
2122
2123 DebugLoc DL = MI->getDebugLoc();
2124 Register DstR = MI->getOperand(i: 0).getReg();
2125 int FI = MI->getOperand(i: 1).getIndex();
2126 auto *RC = &Hexagon::HvxVRRegClass;
2127
2128 // TmpR0 = A2_tfrsi 0x01010101
2129 // TmpR1 = load FI, 0
2130 // DstR = V6_vandvrt TmpR1, TmpR0
2131 Register TmpR0 = MRI.createVirtualRegister(RegClass: &Hexagon::IntRegsRegClass);
2132 Register TmpR1 = MRI.createVirtualRegister(RegClass: RC);
2133
2134 BuildMI(BB&: B, I: It, MIMD: DL, MCID: HII.get(Opcode: Hexagon::A2_tfrsi), DestReg: TmpR0)
2135 .addImm(Val: 0x01010101);
2136 HII.loadRegFromStackSlot(MBB&: B, MBBI: It, DestReg: TmpR1, FrameIndex: FI, RC, VReg: Register());
2137 expandLoadVec(B, It: std::prev(x: It), MRI, HII, NewRegs);
2138
2139 BuildMI(BB&: B, I: It, MIMD: DL, MCID: HII.get(Opcode: Hexagon::V6_vandvrt), DestReg: DstR)
2140 .addReg(RegNo: TmpR1, Flags: RegState::Kill)
2141 .addReg(RegNo: TmpR0, Flags: RegState::Kill);
2142
2143 NewRegs.push_back(Elt: TmpR0);
2144 NewRegs.push_back(Elt: TmpR1);
2145 B.erase(I: It);
2146 return true;
2147}
2148
2149bool HexagonFrameLowering::expandStoreVec2(MachineBasicBlock &B,
2150 MachineBasicBlock::iterator It, MachineRegisterInfo &MRI,
2151 const HexagonInstrInfo &HII, SmallVectorImpl<Register> &NewRegs) const {
2152 MachineFunction &MF = *B.getParent();
2153 auto &MFI = MF.getFrameInfo();
2154 auto &HRI = *MF.getSubtarget<HexagonSubtarget>().getRegisterInfo();
2155 MachineInstr *MI = &*It;
2156 if (!MI->getOperand(i: 0).isFI())
2157 return false;
2158
2159 // It is possible that the double vector being stored is only partially
2160 // defined. From the point of view of the liveness tracking, it is ok to
2161 // store it as a whole, but if we break it up we may end up storing a
2162 // register that is entirely undefined.
2163 LivePhysRegs LPR(HRI);
2164 LPR.addLiveIns(MBB: B);
2165 SmallVector<std::pair<MCPhysReg, const MachineOperand*>,2> Clobbers;
2166 for (auto R = B.begin(); R != It; ++R) {
2167 Clobbers.clear();
2168 LPR.stepForward(MI: *R, Clobbers);
2169 }
2170
2171 DebugLoc DL = MI->getDebugLoc();
2172 Register SrcR = MI->getOperand(i: 2).getReg();
2173 Register SrcLo = HRI.getSubReg(Reg: SrcR, Idx: Hexagon::vsub_lo);
2174 Register SrcHi = HRI.getSubReg(Reg: SrcR, Idx: Hexagon::vsub_hi);
2175 bool IsKill = MI->getOperand(i: 2).isKill();
2176 int FI = MI->getOperand(i: 0).getIndex();
2177
2178 unsigned Size = HRI.getSpillSize(RC: Hexagon::HvxVRRegClass);
2179 Align NeedAlign = HRI.getSpillAlign(RC: Hexagon::HvxVRRegClass);
2180 Align HasAlign = MFI.getObjectAlign(ObjectIdx: FI);
2181 unsigned StoreOpc;
2182
2183 // Store low part.
2184 if (LPR.contains(Reg: SrcLo)) {
2185 StoreOpc = NeedAlign <= HasAlign ? Hexagon::V6_vS32b_ai
2186 : Hexagon::V6_vS32Ub_ai;
2187 BuildMI(BB&: B, I: It, MIMD: DL, MCID: HII.get(Opcode: StoreOpc))
2188 .addFrameIndex(Idx: FI)
2189 .addImm(Val: 0)
2190 .addReg(RegNo: SrcLo, Flags: getKillRegState(B: IsKill))
2191 .cloneMemRefs(OtherMI: *MI);
2192 }
2193
2194 // Store high part.
2195 if (LPR.contains(Reg: SrcHi)) {
2196 StoreOpc = NeedAlign <= HasAlign ? Hexagon::V6_vS32b_ai
2197 : Hexagon::V6_vS32Ub_ai;
2198 BuildMI(BB&: B, I: It, MIMD: DL, MCID: HII.get(Opcode: StoreOpc))
2199 .addFrameIndex(Idx: FI)
2200 .addImm(Val: Size)
2201 .addReg(RegNo: SrcHi, Flags: getKillRegState(B: IsKill))
2202 .cloneMemRefs(OtherMI: *MI);
2203 }
2204
2205 B.erase(I: It);
2206 return true;
2207}
2208
2209bool HexagonFrameLowering::expandLoadVec2(MachineBasicBlock &B,
2210 MachineBasicBlock::iterator It, MachineRegisterInfo &MRI,
2211 const HexagonInstrInfo &HII, SmallVectorImpl<Register> &NewRegs) const {
2212 MachineFunction &MF = *B.getParent();
2213 auto &MFI = MF.getFrameInfo();
2214 auto &HRI = *MF.getSubtarget<HexagonSubtarget>().getRegisterInfo();
2215 MachineInstr *MI = &*It;
2216 if (!MI->getOperand(i: 1).isFI())
2217 return false;
2218
2219 DebugLoc DL = MI->getDebugLoc();
2220 Register DstR = MI->getOperand(i: 0).getReg();
2221 Register DstHi = HRI.getSubReg(Reg: DstR, Idx: Hexagon::vsub_hi);
2222 Register DstLo = HRI.getSubReg(Reg: DstR, Idx: Hexagon::vsub_lo);
2223 int FI = MI->getOperand(i: 1).getIndex();
2224
2225 unsigned Size = HRI.getSpillSize(RC: Hexagon::HvxVRRegClass);
2226 Align NeedAlign = HRI.getSpillAlign(RC: Hexagon::HvxVRRegClass);
2227 Align HasAlign = MFI.getObjectAlign(ObjectIdx: FI);
2228 unsigned LoadOpc;
2229
2230 // Load low part.
2231 LoadOpc = NeedAlign <= HasAlign ? Hexagon::V6_vL32b_ai
2232 : Hexagon::V6_vL32Ub_ai;
2233 BuildMI(BB&: B, I: It, MIMD: DL, MCID: HII.get(Opcode: LoadOpc), DestReg: DstLo)
2234 .addFrameIndex(Idx: FI)
2235 .addImm(Val: 0)
2236 .cloneMemRefs(OtherMI: *MI);
2237
2238 // Load high part.
2239 LoadOpc = NeedAlign <= HasAlign ? Hexagon::V6_vL32b_ai
2240 : Hexagon::V6_vL32Ub_ai;
2241 BuildMI(BB&: B, I: It, MIMD: DL, MCID: HII.get(Opcode: LoadOpc), DestReg: DstHi)
2242 .addFrameIndex(Idx: FI)
2243 .addImm(Val: Size)
2244 .cloneMemRefs(OtherMI: *MI);
2245
2246 B.erase(I: It);
2247 return true;
2248}
2249
2250bool HexagonFrameLowering::expandStoreVec(MachineBasicBlock &B,
2251 MachineBasicBlock::iterator It, MachineRegisterInfo &MRI,
2252 const HexagonInstrInfo &HII, SmallVectorImpl<Register> &NewRegs) const {
2253 MachineFunction &MF = *B.getParent();
2254 auto &MFI = MF.getFrameInfo();
2255 MachineInstr *MI = &*It;
2256 if (!MI->getOperand(i: 0).isFI())
2257 return false;
2258
2259 auto &HRI = *MF.getSubtarget<HexagonSubtarget>().getRegisterInfo();
2260 DebugLoc DL = MI->getDebugLoc();
2261 Register SrcR = MI->getOperand(i: 2).getReg();
2262 bool IsKill = MI->getOperand(i: 2).isKill();
2263 int FI = MI->getOperand(i: 0).getIndex();
2264
2265 Align NeedAlign = HRI.getSpillAlign(RC: Hexagon::HvxVRRegClass);
2266 Align HasAlign = MFI.getObjectAlign(ObjectIdx: FI);
2267 unsigned StoreOpc = NeedAlign <= HasAlign ? Hexagon::V6_vS32b_ai
2268 : Hexagon::V6_vS32Ub_ai;
2269 BuildMI(BB&: B, I: It, MIMD: DL, MCID: HII.get(Opcode: StoreOpc))
2270 .addFrameIndex(Idx: FI)
2271 .addImm(Val: 0)
2272 .addReg(RegNo: SrcR, Flags: getKillRegState(B: IsKill))
2273 .cloneMemRefs(OtherMI: *MI);
2274
2275 B.erase(I: It);
2276 return true;
2277}
2278
2279bool HexagonFrameLowering::expandLoadVec(MachineBasicBlock &B,
2280 MachineBasicBlock::iterator It, MachineRegisterInfo &MRI,
2281 const HexagonInstrInfo &HII, SmallVectorImpl<Register> &NewRegs) const {
2282 MachineFunction &MF = *B.getParent();
2283 auto &MFI = MF.getFrameInfo();
2284 MachineInstr *MI = &*It;
2285 if (!MI->getOperand(i: 1).isFI())
2286 return false;
2287
2288 auto &HRI = *MF.getSubtarget<HexagonSubtarget>().getRegisterInfo();
2289 DebugLoc DL = MI->getDebugLoc();
2290 Register DstR = MI->getOperand(i: 0).getReg();
2291 int FI = MI->getOperand(i: 1).getIndex();
2292
2293 Align NeedAlign = HRI.getSpillAlign(RC: Hexagon::HvxVRRegClass);
2294 Align HasAlign = MFI.getObjectAlign(ObjectIdx: FI);
2295 unsigned LoadOpc = NeedAlign <= HasAlign ? Hexagon::V6_vL32b_ai
2296 : Hexagon::V6_vL32Ub_ai;
2297 BuildMI(BB&: B, I: It, MIMD: DL, MCID: HII.get(Opcode: LoadOpc), DestReg: DstR)
2298 .addFrameIndex(Idx: FI)
2299 .addImm(Val: 0)
2300 .cloneMemRefs(OtherMI: *MI);
2301
2302 B.erase(I: It);
2303 return true;
2304}
2305
2306bool HexagonFrameLowering::expandSpillMacros(MachineFunction &MF,
2307 SmallVectorImpl<Register> &NewRegs) const {
2308 auto &HII = *MF.getSubtarget<HexagonSubtarget>().getInstrInfo();
2309 MachineRegisterInfo &MRI = MF.getRegInfo();
2310 bool Changed = false;
2311
2312 for (auto &B : MF) {
2313 // Traverse the basic block.
2314 MachineBasicBlock::iterator NextI;
2315 for (auto I = B.begin(), E = B.end(); I != E; I = NextI) {
2316 MachineInstr *MI = &*I;
2317 NextI = std::next(x: I);
2318 unsigned Opc = MI->getOpcode();
2319
2320 switch (Opc) {
2321 case TargetOpcode::COPY:
2322 Changed |= expandCopy(B, It: I, MRI, HII, NewRegs);
2323 break;
2324 case Hexagon::STriw_pred:
2325 case Hexagon::STriw_ctr:
2326 Changed |= expandStoreInt(B, It: I, MRI, HII, NewRegs);
2327 break;
2328 case Hexagon::LDriw_pred:
2329 case Hexagon::LDriw_ctr:
2330 Changed |= expandLoadInt(B, It: I, MRI, HII, NewRegs);
2331 break;
2332 case Hexagon::PS_vstorerq_ai:
2333 Changed |= expandStoreVecPred(B, It: I, MRI, HII, NewRegs);
2334 break;
2335 case Hexagon::PS_vloadrq_ai:
2336 Changed |= expandLoadVecPred(B, It: I, MRI, HII, NewRegs);
2337 break;
2338 case Hexagon::PS_vloadrw_ai:
2339 Changed |= expandLoadVec2(B, It: I, MRI, HII, NewRegs);
2340 break;
2341 case Hexagon::PS_vstorerw_ai:
2342 Changed |= expandStoreVec2(B, It: I, MRI, HII, NewRegs);
2343 break;
2344 }
2345 }
2346 }
2347
2348 return Changed;
2349}
2350
2351void HexagonFrameLowering::determineCalleeSaves(MachineFunction &MF,
2352 BitVector &SavedRegs,
2353 RegScavenger *RS) const {
2354 auto &HRI = *MF.getSubtarget<HexagonSubtarget>().getRegisterInfo();
2355
2356 SavedRegs.resize(N: HRI.getNumRegs());
2357
2358 // If we have a function containing __builtin_eh_return we want to spill and
2359 // restore all callee saved registers. Pretend that they are used.
2360 if (MF.getInfo<HexagonMachineFunctionInfo>()->hasEHReturn())
2361 for (const MCPhysReg *R = HRI.getCalleeSavedRegs(MF: &MF); *R; ++R)
2362 SavedRegs.set(*R);
2363
2364 // If the function needs dynamic stack realignment, AP is a callee-saved
2365 // register that gets overwritten by the PS_aligna emitted in the prologue
2366 // but PS_aligna is created during emitPrologue, which runs after this hook.
2367 if (needsAligna(MF)) {
2368 Register AP =
2369 MF.getInfo<HexagonMachineFunctionInfo>()->getStackAlignBaseReg();
2370 assert(AP.isValid() && "AP must be assigned before register allocation");
2371 SavedRegs.set(AP);
2372 }
2373
2374 // Replace predicate register pseudo spill code.
2375 SmallVector<Register,8> NewRegs;
2376 expandSpillMacros(MF, NewRegs);
2377 if (OptimizeSpillSlots && !isOptNone(MF))
2378 optimizeSpillSlots(MF, VRegs&: NewRegs);
2379
2380 // We need to reserve a spill slot if scavenging could potentially require
2381 // spilling a scavenged register.
2382 if (!NewRegs.empty() || mayOverflowFrameOffset(MF)) {
2383 MachineFrameInfo &MFI = MF.getFrameInfo();
2384 MachineRegisterInfo &MRI = MF.getRegInfo();
2385 SetVector<const TargetRegisterClass*> SpillRCs;
2386 // Reserve an int register in any case, because it could be used to hold
2387 // the stack offset in case it does not fit into a spill instruction.
2388 SpillRCs.insert(X: &Hexagon::IntRegsRegClass);
2389
2390 for (Register VR : NewRegs)
2391 SpillRCs.insert(X: MRI.getRegClass(Reg: VR));
2392
2393 for (const auto *RC : SpillRCs) {
2394 if (!needToReserveScavengingSpillSlots(MF, HRI, RC))
2395 continue;
2396 unsigned Num = 1;
2397 switch (RC->getID()) {
2398 case Hexagon::IntRegsRegClassID:
2399 Num = NumberScavengerSlots;
2400 break;
2401 case Hexagon::HvxQRRegClassID:
2402 Num = 2; // Vector predicate spills also need a vector register.
2403 break;
2404 }
2405 unsigned S = HRI.getSpillSize(RC: *RC);
2406 Align A = HRI.getSpillAlign(RC: *RC);
2407 for (unsigned i = 0; i < Num; i++) {
2408 int NewFI = MFI.CreateSpillStackObject(Size: S, Alignment: A);
2409 RS->addScavengingFrameIndex(FI: NewFI);
2410 }
2411 }
2412 }
2413
2414 TargetFrameLowering::determineCalleeSaves(MF, SavedRegs, RS);
2415}
2416
2417Register HexagonFrameLowering::findPhysReg(MachineFunction &MF,
2418 HexagonBlockRanges::IndexRange &FIR,
2419 HexagonBlockRanges::InstrIndexMap &IndexMap,
2420 HexagonBlockRanges::RegToRangeMap &DeadMap,
2421 const TargetRegisterClass *RC) const {
2422 auto &HRI = *MF.getSubtarget<HexagonSubtarget>().getRegisterInfo();
2423 auto &MRI = MF.getRegInfo();
2424
2425 auto isDead = [&FIR,&DeadMap] (Register Reg) -> bool {
2426 auto F = DeadMap.find(x: {.Reg: Reg,.Sub: 0});
2427 if (F == DeadMap.end())
2428 return false;
2429 for (auto &DR : F->second)
2430 if (DR.contains(A: FIR))
2431 return true;
2432 return false;
2433 };
2434
2435 for (Register Reg : HRI.getRawAllocationOrder(RC: *RC, MF)) {
2436 bool Dead = true;
2437 for (auto R : HexagonBlockRanges::expandToSubRegs(R: {.Reg: Reg,.Sub: 0}, MRI, TRI: HRI)) {
2438 if (isDead(R.Reg))
2439 continue;
2440 Dead = false;
2441 break;
2442 }
2443 if (Dead)
2444 return Reg;
2445 }
2446 return 0;
2447}
2448
2449void HexagonFrameLowering::optimizeSpillSlots(MachineFunction &MF,
2450 SmallVectorImpl<Register> &VRegs) const {
2451 auto &HST = MF.getSubtarget<HexagonSubtarget>();
2452 auto &HII = *HST.getInstrInfo();
2453 auto &HRI = *HST.getRegisterInfo();
2454 auto &MRI = MF.getRegInfo();
2455 HexagonBlockRanges HBR(MF);
2456
2457 using BlockIndexMap =
2458 std::map<MachineBasicBlock *, HexagonBlockRanges::InstrIndexMap>;
2459 using BlockRangeMap =
2460 std::map<MachineBasicBlock *, HexagonBlockRanges::RangeList>;
2461 using IndexType = HexagonBlockRanges::IndexType;
2462
2463 struct SlotInfo {
2464 BlockRangeMap Map;
2465 unsigned Size = 0;
2466 const TargetRegisterClass *RC = nullptr;
2467
2468 SlotInfo() = default;
2469 };
2470
2471 BlockIndexMap BlockIndexes;
2472 SmallSet<int,4> BadFIs;
2473 std::map<int,SlotInfo> FIRangeMap;
2474
2475 // Accumulate register classes: get a common class for a pre-existing
2476 // class HaveRC and a new class NewRC. Return nullptr if a common class
2477 // cannot be found, otherwise return the resulting class. If HaveRC is
2478 // nullptr, assume that it is still unset.
2479 auto getCommonRC =
2480 [](const TargetRegisterClass *HaveRC,
2481 const TargetRegisterClass *NewRC) -> const TargetRegisterClass * {
2482 if (HaveRC == nullptr || HaveRC == NewRC)
2483 return NewRC;
2484 // Different classes, both non-null. Pick the more general one.
2485 if (HaveRC->hasSubClassEq(RC: NewRC))
2486 return HaveRC;
2487 if (NewRC->hasSubClassEq(RC: HaveRC))
2488 return NewRC;
2489 return nullptr;
2490 };
2491
2492 // Scan all blocks in the function. Check all occurrences of frame indexes,
2493 // and collect relevant information.
2494 for (auto &B : MF) {
2495 std::map<int,IndexType> LastStore, LastLoad;
2496 auto P = BlockIndexes.emplace(args: &B, args: HexagonBlockRanges::InstrIndexMap(B));
2497 auto &IndexMap = P.first->second;
2498 LLVM_DEBUG(dbgs() << "Index map for " << printMBBReference(B) << "\n"
2499 << IndexMap << '\n');
2500
2501 for (auto &In : B) {
2502 // Debug instructions do not generate any code, and their operands
2503 // (including frame index operands) must not affect the decisions made
2504 // by this optimization.
2505 if (In.isDebugInstr())
2506 continue;
2507 int LFI, SFI;
2508 bool Load = HII.isLoadFromStackSlot(MI: In, FrameIndex&: LFI) && !HII.isPredicated(MI: In);
2509 bool Store = HII.isStoreToStackSlot(MI: In, FrameIndex&: SFI) && !HII.isPredicated(MI: In);
2510 if (Load && Store) {
2511 // If it's both a load and a store, then we won't handle it.
2512 BadFIs.insert(V: LFI);
2513 BadFIs.insert(V: SFI);
2514 continue;
2515 }
2516 // Check for register classes of the register used as the source for
2517 // the store, and the register used as the destination for the load.
2518 // Also, only accept base+imm_offset addressing modes. Other addressing
2519 // modes can have side-effects (post-increments, etc.). For stack
2520 // slots they are very unlikely, so there is not much loss due to
2521 // this restriction.
2522 if (Load || Store) {
2523 int TFI = Load ? LFI : SFI;
2524 unsigned AM = HII.getAddrMode(MI: In);
2525 SlotInfo &SI = FIRangeMap[TFI];
2526 bool Bad = (AM != HexagonII::BaseImmOffset);
2527 if (!Bad) {
2528 // If the addressing mode is ok, check the register class.
2529 unsigned OpNum = Load ? 0 : 2;
2530 auto *RC = HII.getRegClass(MCID: In.getDesc(), OpNum);
2531 RC = getCommonRC(SI.RC, RC);
2532 if (RC == nullptr)
2533 Bad = true;
2534 else
2535 SI.RC = RC;
2536 }
2537 if (!Bad) {
2538 // Check sizes.
2539 unsigned S = HII.getMemAccessSize(MI: In);
2540 if (SI.Size != 0 && SI.Size != S)
2541 Bad = true;
2542 else
2543 SI.Size = S;
2544 }
2545 if (!Bad) {
2546 for (auto *Mo : In.memoperands()) {
2547 if (!Mo->isVolatile() && !Mo->isAtomic())
2548 continue;
2549 Bad = true;
2550 break;
2551 }
2552 }
2553 if (Bad)
2554 BadFIs.insert(V: TFI);
2555 }
2556
2557 // Locate uses of frame indices.
2558 for (unsigned i = 0, n = In.getNumOperands(); i < n; ++i) {
2559 const MachineOperand &Op = In.getOperand(i);
2560 if (!Op.isFI())
2561 continue;
2562 int FI = Op.getIndex();
2563 // Make sure that the following operand is an immediate and that
2564 // it is 0. This is the offset in the stack object.
2565 if (i+1 >= n || !In.getOperand(i: i+1).isImm() ||
2566 In.getOperand(i: i+1).getImm() != 0)
2567 BadFIs.insert(V: FI);
2568 if (BadFIs.count(V: FI))
2569 continue;
2570
2571 IndexType Index = IndexMap.getIndex(MI: &In);
2572 auto &LS = LastStore[FI];
2573 auto &LL = LastLoad[FI];
2574 if (Load) {
2575 if (LS == IndexType::None)
2576 LS = IndexType::Entry;
2577 LL = Index;
2578 } else if (Store) {
2579 HexagonBlockRanges::RangeList &RL = FIRangeMap[FI].Map[&B];
2580 if (LS != IndexType::None)
2581 RL.add(Start: LS, End: LL, Fixed: false, TiedEnd: false);
2582 else if (LL != IndexType::None)
2583 RL.add(Start: IndexType::Entry, End: LL, Fixed: false, TiedEnd: false);
2584 LL = IndexType::None;
2585 LS = Index;
2586 } else {
2587 BadFIs.insert(V: FI);
2588 }
2589 }
2590 }
2591
2592 for (auto &I : LastLoad) {
2593 IndexType LL = I.second;
2594 if (LL == IndexType::None)
2595 continue;
2596 auto &RL = FIRangeMap[I.first].Map[&B];
2597 IndexType &LS = LastStore[I.first];
2598 if (LS != IndexType::None)
2599 RL.add(Start: LS, End: LL, Fixed: false, TiedEnd: false);
2600 else
2601 RL.add(Start: IndexType::Entry, End: LL, Fixed: false, TiedEnd: false);
2602 LS = IndexType::None;
2603 }
2604 for (auto &I : LastStore) {
2605 IndexType LS = I.second;
2606 if (LS == IndexType::None)
2607 continue;
2608 auto &RL = FIRangeMap[I.first].Map[&B];
2609 RL.add(Start: LS, End: IndexType::None, Fixed: false, TiedEnd: false);
2610 }
2611 }
2612
2613 LLVM_DEBUG({
2614 for (auto &P : FIRangeMap) {
2615 dbgs() << "fi#" << P.first;
2616 if (BadFIs.count(P.first))
2617 dbgs() << " (bad)";
2618 dbgs() << " RC: ";
2619 if (P.second.RC != nullptr)
2620 dbgs() << HRI.getRegClassName(P.second.RC) << '\n';
2621 else
2622 dbgs() << "<null>\n";
2623 for (auto &R : P.second.Map)
2624 dbgs() << " " << printMBBReference(*R.first) << " { " << R.second
2625 << "}\n";
2626 }
2627 });
2628
2629 // When a slot is loaded from in a block without being stored to in the
2630 // same block, it is live-on-entry to this block. To avoid CFG analysis,
2631 // consider this slot to be live-on-exit from all blocks.
2632 SmallSet<int,4> LoxFIs;
2633
2634 std::map<MachineBasicBlock*,std::vector<int>> BlockFIMap;
2635
2636 for (auto &P : FIRangeMap) {
2637 // P = pair(FI, map: BB->RangeList)
2638 if (BadFIs.count(V: P.first))
2639 continue;
2640 for (auto &B : MF) {
2641 auto F = P.second.Map.find(x: &B);
2642 // F = pair(BB, RangeList)
2643 if (F == P.second.Map.end() || F->second.empty())
2644 continue;
2645 HexagonBlockRanges::IndexRange &IR = F->second.front();
2646 if (IR.start() == IndexType::Entry)
2647 LoxFIs.insert(V: P.first);
2648 BlockFIMap[&B].push_back(x: P.first);
2649 }
2650 }
2651
2652 LLVM_DEBUG({
2653 dbgs() << "Block-to-FI map (* -- live-on-exit):\n";
2654 for (auto &P : BlockFIMap) {
2655 auto &FIs = P.second;
2656 if (FIs.empty())
2657 continue;
2658 dbgs() << " " << printMBBReference(*P.first) << ": {";
2659 for (auto I : FIs) {
2660 dbgs() << " fi#" << I;
2661 if (LoxFIs.count(I))
2662 dbgs() << '*';
2663 }
2664 dbgs() << " }\n";
2665 }
2666 });
2667
2668#ifndef NDEBUG
2669 bool HasOptLimit = SpillOptMax.getPosition();
2670#endif
2671
2672 // eliminate loads, when all loads eliminated, eliminate all stores.
2673 for (auto &B : MF) {
2674 auto F = BlockIndexes.find(x: &B);
2675 assert(F != BlockIndexes.end());
2676 HexagonBlockRanges::InstrIndexMap &IM = F->second;
2677 HexagonBlockRanges::RegToRangeMap LM = HBR.computeLiveMap(IndexMap&: IM);
2678 HexagonBlockRanges::RegToRangeMap DM = HBR.computeDeadMap(IndexMap&: IM, LiveMap&: LM);
2679 LLVM_DEBUG(dbgs() << printMBBReference(B) << " dead map\n"
2680 << HexagonBlockRanges::PrintRangeMap(DM, HRI));
2681
2682 for (auto FI : BlockFIMap[&B]) {
2683 if (BadFIs.count(V: FI))
2684 continue;
2685 LLVM_DEBUG(dbgs() << "Working on fi#" << FI << '\n');
2686 HexagonBlockRanges::RangeList &RL = FIRangeMap[FI].Map[&B];
2687 for (auto &Range : RL) {
2688 LLVM_DEBUG(dbgs() << "--Examining range:" << RL << '\n');
2689 if (!IndexType::isInstr(X: Range.start()) ||
2690 !IndexType::isInstr(X: Range.end()))
2691 continue;
2692 MachineInstr &SI = *IM.getInstr(Idx: Range.start());
2693 MachineInstr &EI = *IM.getInstr(Idx: Range.end());
2694 assert(SI.mayStore() && "Unexpected start instruction");
2695 assert(EI.mayLoad() && "Unexpected end instruction");
2696 MachineOperand &SrcOp = SI.getOperand(i: 2);
2697
2698 HexagonBlockRanges::RegisterRef SrcRR = { .Reg: SrcOp.getReg(),
2699 .Sub: SrcOp.getSubReg() };
2700 auto *RC = HII.getRegClass(MCID: SI.getDesc(), OpNum: 2);
2701 // The this-> is needed to unconfuse MSVC.
2702 Register FoundR = this->findPhysReg(MF, FIR&: Range, IndexMap&: IM, DeadMap&: DM, RC);
2703 LLVM_DEBUG(dbgs() << "Replacement reg:" << printReg(FoundR, &HRI)
2704 << '\n');
2705 if (FoundR == 0)
2706 continue;
2707#ifndef NDEBUG
2708 if (HasOptLimit) {
2709 if (SpillOptCount >= SpillOptMax)
2710 return;
2711 SpillOptCount++;
2712 }
2713#endif
2714
2715 // Generate the copy-in: "FoundR = COPY SrcR" at the store location.
2716 MachineBasicBlock::iterator StartIt = SI.getIterator(), NextIt;
2717 MachineInstr *CopyIn = nullptr;
2718 if (SrcRR.Reg != FoundR || SrcRR.Sub != 0) {
2719 const DebugLoc &DL = SI.getDebugLoc();
2720 CopyIn = BuildMI(BB&: B, I: StartIt, MIMD: DL, MCID: HII.get(Opcode: TargetOpcode::COPY), DestReg: FoundR)
2721 .add(MO: SrcOp);
2722 }
2723
2724 ++StartIt;
2725 // Check if this is a last store and the FI is live-on-exit.
2726 if (LoxFIs.count(V: FI) && (&Range == &RL.back())) {
2727 // Update store's source register.
2728 if (unsigned SR = SrcOp.getSubReg())
2729 SrcOp.setReg(HRI.getSubReg(Reg: FoundR, Idx: SR));
2730 else
2731 SrcOp.setReg(FoundR);
2732 SrcOp.setSubReg(0);
2733 // We are keeping this register live.
2734 SrcOp.setIsKill(false);
2735 } else {
2736 B.erase(I: &SI);
2737 IM.replaceInstr(OldMI: &SI, NewMI: CopyIn);
2738 }
2739
2740 auto EndIt = std::next(x: EI.getIterator());
2741 for (auto It = StartIt; It != EndIt; It = NextIt) {
2742 MachineInstr &MI = *It;
2743 NextIt = std::next(x: It);
2744 int TFI;
2745 if (!HII.isLoadFromStackSlot(MI, FrameIndex&: TFI) || TFI != FI)
2746 continue;
2747 Register DstR = MI.getOperand(i: 0).getReg();
2748 assert(MI.getOperand(0).getSubReg() == 0);
2749 MachineInstr *CopyOut = nullptr;
2750 if (DstR != FoundR) {
2751 DebugLoc DL = MI.getDebugLoc();
2752 unsigned MemSize = HII.getMemAccessSize(MI);
2753 assert(HII.getAddrMode(MI) == HexagonII::BaseImmOffset);
2754 unsigned CopyOpc = TargetOpcode::COPY;
2755 if (HII.isSignExtendingLoad(MI))
2756 CopyOpc = (MemSize == 1) ? Hexagon::A2_sxtb : Hexagon::A2_sxth;
2757 else if (HII.isZeroExtendingLoad(MI))
2758 CopyOpc = (MemSize == 1) ? Hexagon::A2_zxtb : Hexagon::A2_zxth;
2759 CopyOut = BuildMI(BB&: B, I: It, MIMD: DL, MCID: HII.get(Opcode: CopyOpc), DestReg: DstR)
2760 .addReg(RegNo: FoundR, Flags: getKillRegState(B: &MI == &EI));
2761 }
2762 IM.replaceInstr(OldMI: &MI, NewMI: CopyOut);
2763 B.erase(I: It);
2764 }
2765
2766 // Update the dead map.
2767 HexagonBlockRanges::RegisterRef FoundRR = { .Reg: FoundR, .Sub: 0 };
2768 for (auto RR : HexagonBlockRanges::expandToSubRegs(R: FoundRR, MRI, TRI: HRI))
2769 DM[RR].subtract(Range);
2770 } // for Range in range list
2771 }
2772 }
2773}
2774
2775void HexagonFrameLowering::expandAlloca(MachineInstr *AI, MachineFunction &MF,
2776 const HexagonInstrInfo &HII,
2777 Register SP, unsigned CF) const {
2778 MachineBasicBlock &MB = *AI->getParent();
2779 DebugLoc DL = AI->getDebugLoc();
2780 unsigned A = AI->getOperand(i: 2).getImm();
2781
2782 MachineOperand &RdOp = AI->getOperand(i: 0);
2783 MachineOperand &RsOp = AI->getOperand(i: 1);
2784 Register Rd = RdOp.getReg(), Rs = RsOp.getReg();
2785
2786 auto &HST = MF.getSubtarget<HexagonSubtarget>();
2787 auto *TLI = HST.getTargetLowering();
2788 bool NeedsProbing = TLI->hasInlineStackProbe(MF);
2789
2790 if (!NeedsProbing) {
2791 // Have
2792 // Rd = alloca Rs, #A
2793 //
2794 // If Rs and Rd are different registers, use this sequence:
2795 // Rd = sub(r29, Rs)
2796 // r29 = sub(r29, Rs)
2797 // Rd = and(Rd, #-A) ; if necessary
2798 // r29 = and(r29, #-A) ; if necessary
2799 // Rd = add(Rd, #CF) ; CF size aligned to at most A
2800 // otherwise, do
2801 // Rd = sub(r29, Rs)
2802 // Rd = and(Rd, #-A) ; if necessary
2803 // r29 = Rd
2804 // Rd = add(Rd, #CF) ; CF size aligned to at most A
2805
2806 // Rd = sub(r29, Rs)
2807 BuildMI(BB&: MB, I: AI, MIMD: DL, MCID: HII.get(Opcode: Hexagon::A2_sub), DestReg: Rd).addReg(RegNo: SP).addReg(RegNo: Rs);
2808 if (Rs != Rd) {
2809 // r29 = sub(r29, Rs)
2810 BuildMI(BB&: MB, I: AI, MIMD: DL, MCID: HII.get(Opcode: Hexagon::A2_sub), DestReg: SP).addReg(RegNo: SP).addReg(RegNo: Rs);
2811 }
2812 if (A > 8) {
2813 // Rd = and(Rd, #-A)
2814 BuildMI(BB&: MB, I: AI, MIMD: DL, MCID: HII.get(Opcode: Hexagon::A2_andir), DestReg: Rd)
2815 .addReg(RegNo: Rd)
2816 .addImm(Val: -int64_t(A));
2817 if (Rs != Rd)
2818 BuildMI(BB&: MB, I: AI, MIMD: DL, MCID: HII.get(Opcode: Hexagon::A2_andir), DestReg: SP)
2819 .addReg(RegNo: SP)
2820 .addImm(Val: -int64_t(A));
2821 }
2822 if (Rs == Rd) {
2823 // r29 = Rd
2824 BuildMI(BB&: MB, I: AI, MIMD: DL, MCID: HII.get(Opcode: TargetOpcode::COPY), DestReg: SP).addReg(RegNo: Rd);
2825 }
2826 if (CF > 0) {
2827 // Rd = add(Rd, #CF)
2828 BuildMI(BB&: MB, I: AI, MIMD: DL, MCID: HII.get(Opcode: Hexagon::A2_addi), DestReg: Rd).addReg(RegNo: Rd).addImm(Val: CF);
2829 }
2830 return;
2831 }
2832
2833 // Stack probing for dynamic allocation. The size Rs is a runtime value
2834 // so the probe loop is always emitted; it is a no-op when Rs is small.
2835 //
2836 // Compute the target SP into Rd (with optional alignment), then probe
2837 // each page on the way down:
2838 //
2839 // Rd = sub(r29, Rs)
2840 // [Rd = and(Rd, #-A)] ; if alignment > 8
2841 // LoopMBB:
2842 // r29 = add(r29, #-ProbeSize)
2843 // memw(r29+#0) = #0
2844 // p0 = cmp.gtu(r29, Rd)
2845 // if (p0.new) jump:t LoopMBB
2846 // ExitMBB:
2847 // r29 = Rd
2848 // [Rd = add(Rd, #CF)] ; if CF > 0
2849 // <rest of original block>
2850 //
2851 // Rd holds the exact (aligned) target SP throughout the loop, so the
2852 // final "r29 = Rd" snaps SP to the correct value even when Rs is not
2853 // a multiple of ProbeSize.
2854
2855 Align StackAlign = getStackAlign();
2856 unsigned ProbeSize = TLI->getStackProbeSize(MF, StackAlign);
2857 MachineInstr::MIFlag Flags = MachineInstr::FrameSetup;
2858
2859 // Emit target-SP computation into Rd before splitting the block.
2860 // Rd = sub(r29, Rs)
2861 BuildMI(BB&: MB, I: AI, MIMD: DL, MCID: HII.get(Opcode: Hexagon::A2_sub), DestReg: Rd)
2862 .addReg(RegNo: SP)
2863 .addReg(RegNo: Rs)
2864 .setMIFlags(Flags);
2865 if (A > 8) {
2866 // Rd = and(Rd, #-A)
2867 BuildMI(BB&: MB, I: AI, MIMD: DL, MCID: HII.get(Opcode: Hexagon::A2_andir), DestReg: Rd)
2868 .addReg(RegNo: Rd)
2869 .addImm(Val: -int64_t(A))
2870 .setMIFlags(Flags);
2871 }
2872
2873 // Split the block: everything after AI goes into ExitMBB.
2874 MachineFunction::iterator InsertPt = std::next(x: MB.getIterator());
2875 MachineBasicBlock *LoopMBB = MF.CreateMachineBasicBlock(BB: MB.getBasicBlock());
2876 MF.insert(MBBI: InsertPt, MBB: LoopMBB);
2877 MachineBasicBlock *ExitMBB = MF.CreateMachineBasicBlock(BB: MB.getBasicBlock());
2878 MF.insert(MBBI: InsertPt, MBB: ExitMBB);
2879
2880 // Move instructions after AI (exclusive) into ExitMBB.
2881 ExitMBB->splice(Where: ExitMBB->end(), Other: &MB, From: std::next(x: AI->getIterator()), To: MB.end());
2882 ExitMBB->transferSuccessorsAndUpdatePHIs(FromMBB: &MB);
2883
2884 // LoopMBB: probe each page.
2885 // r29 = add(r29, #-ProbeSize)
2886 // memw(r29+#0) = #0
2887 // p0 = cmp.gtu(r29, Rd)
2888 // if (p0.new) jump:t LoopMBB
2889 BuildMI(BB&: *LoopMBB, I: LoopMBB->end(), MIMD: DL, MCID: HII.get(Opcode: Hexagon::A2_addi), DestReg: Hexagon::R29)
2890 .addReg(RegNo: Hexagon::R29)
2891 .addImm(Val: -int(ProbeSize))
2892 .setMIFlags(Flags);
2893
2894 BuildMI(BB&: *LoopMBB, I: LoopMBB->end(), MIMD: DL, MCID: HII.get(Opcode: Hexagon::S4_storeiri_io))
2895 .addReg(RegNo: Hexagon::R29)
2896 .addImm(Val: 0)
2897 .addImm(Val: 0)
2898 .setMIFlags(Flags);
2899
2900 BuildMI(BB&: *LoopMBB, I: LoopMBB->end(), MIMD: DL, MCID: HII.get(Opcode: Hexagon::C2_cmpgtu),
2901 DestReg: Hexagon::P0)
2902 .addReg(RegNo: Hexagon::R29)
2903 .addReg(RegNo: Rd)
2904 .setMIFlags(Flags);
2905
2906 BuildMI(BB&: *LoopMBB, I: LoopMBB->end(), MIMD: DL, MCID: HII.get(Opcode: Hexagon::J2_jumpt))
2907 .addReg(RegNo: Hexagon::P0)
2908 .addMBB(MBB: LoopMBB)
2909 .setMIFlags(Flags);
2910
2911 // ExitMBB: snap SP to exact target, then apply CF offset to Rd.
2912 // r29 = Rd
2913 // [Rd = add(Rd, #CF)]
2914 MachineBasicBlock::iterator ExitIt = ExitMBB->begin();
2915 BuildMI(BB&: *ExitMBB, I: ExitIt, MIMD: DL, MCID: HII.get(Opcode: Hexagon::A2_tfr), DestReg: Hexagon::R29)
2916 .addReg(RegNo: Rd)
2917 .setMIFlags(Flags);
2918 if (CF > 0) {
2919 BuildMI(BB&: *ExitMBB, I: ExitIt, MIMD: DL, MCID: HII.get(Opcode: Hexagon::A2_addi), DestReg: Rd)
2920 .addReg(RegNo: Rd)
2921 .addImm(Val: CF)
2922 .setMIFlags(Flags);
2923 }
2924
2925 // Wire up CFG edges.
2926 MB.addSuccessor(Succ: LoopMBB);
2927 LoopMBB->addSuccessor(Succ: LoopMBB);
2928 LoopMBB->addSuccessor(Succ: ExitMBB);
2929
2930 // Recompute live-ins for the new blocks. AI is still in MB at this
2931 // point; the caller erases it after expandAlloca returns.
2932 fullyRecomputeLiveIns(MBBs: {ExitMBB, LoopMBB});
2933}
2934
2935bool HexagonFrameLowering::needsAligna(const MachineFunction &MF) const {
2936 const MachineFrameInfo &MFI = MF.getFrameInfo();
2937 if (!MFI.hasVarSizedObjects())
2938 return false;
2939 // Do not check for max stack object alignment here, because the stack
2940 // may not be complete yet. Assume that we will need PS_aligna if there
2941 // are variable-sized objects.
2942 return true;
2943}
2944
2945/// Adds all callee-saved registers as implicit uses or defs to the
2946/// instruction.
2947void HexagonFrameLowering::addCalleeSaveRegistersAsImpOperand(MachineInstr *MI,
2948 const CSIVect &CSI, bool IsDef, bool IsKill) const {
2949 // Add the callee-saved registers as implicit uses.
2950 for (auto &R : CSI)
2951 MI->addOperand(Op: MachineOperand::CreateReg(Reg: R.getReg(), isDef: IsDef, isImp: true, isKill: IsKill));
2952}
2953
2954/// Determine whether the callee-saved register saves and restores should
2955/// be generated via inline code. If this function returns "true", inline
2956/// code will be generated. If this function returns "false", additional
2957/// checks are performed, which may still lead to the inline code.
2958bool HexagonFrameLowering::shouldInlineCSR(const MachineFunction &MF,
2959 const CSIVect &CSI) const {
2960 if (MF.getSubtarget<HexagonSubtarget>().isEnvironmentMusl())
2961 return true;
2962 if (MF.getInfo<HexagonMachineFunctionInfo>()->hasEHReturn())
2963 return true;
2964 if (!hasFP(MF))
2965 return true;
2966 if (!isOptSize(MF) && !isMinSize(MF))
2967 if (MF.getTarget().getOptLevel() > CodeGenOptLevel::Default)
2968 return true;
2969
2970 // Check if CSI only has double registers, and if the registers form
2971 // a contiguous block starting from D8.
2972 BitVector Regs(Hexagon::NUM_TARGET_REGS);
2973 for (const CalleeSavedInfo &I : CSI) {
2974 MCRegister R = I.getReg();
2975 if (!Hexagon::DoubleRegsRegClass.contains(Reg: R))
2976 return true;
2977 Regs[R] = true;
2978 }
2979 int F = Regs.find_first();
2980 if (F != Hexagon::D8)
2981 return true;
2982 while (F >= 0) {
2983 int N = Regs.find_next(Prev: F);
2984 if (N >= 0 && N != F+1)
2985 return true;
2986 F = N;
2987 }
2988
2989 return false;
2990}
2991
2992bool HexagonFrameLowering::useSpillFunction(const MachineFunction &MF,
2993 const CSIVect &CSI) const {
2994 if (shouldInlineCSR(MF, CSI))
2995 return false;
2996 unsigned NumCSI = CSI.size();
2997 if (NumCSI <= 1)
2998 return false;
2999
3000 // Every spill stub saves the whole range starting at R16
3001 // (__save_r16_through_rNN), so a stub whose range reached the shadow call
3002 // stack pointer register would spill it along with the real callee-saved
3003 // registers - and since the SCS register is reserved it is absent from CSI,
3004 // so the stub's fixed frame layout would not match the one the compiler
3005 // assigned.
3006 //
3007 // shouldInlineCSR() above already makes this unreachable: it only lets a
3008 // stub through when CSI is a contiguous run of double registers starting at
3009 // D8, and reserving the SCS register always breaks the double it belongs
3010 // to, leaving its partner in CSI as a lone single register. This is a
3011 // cheap safety net so the guarantee does not rest on that reasoning alone.
3012 if (MF.getFunction().hasFnAttribute(Kind: Attribute::ShadowCallStack)) {
3013 const auto &HST = MF.getSubtarget<HexagonSubtarget>();
3014 Register MaxReg = getMaxCalleeSavedReg(CSI, TRI: *HST.getRegisterInfo());
3015 if (HST.getSCSPReg().id() <= MaxReg.id())
3016 return false;
3017 }
3018
3019 unsigned Threshold = isOptSize(MF) ? SpillFuncThresholdOs
3020 : SpillFuncThreshold;
3021 return Threshold < NumCSI;
3022}
3023
3024bool HexagonFrameLowering::useRestoreFunction(const MachineFunction &MF,
3025 const CSIVect &CSI) const {
3026 if (shouldInlineCSR(MF, CSI))
3027 return false;
3028 // The returning restore stubs do jumpr r31, this breaks ShadowCallStack:
3029 if (MF.getFunction().hasFnAttribute(Kind: Attribute::ShadowCallStack))
3030 return false;
3031 // The restore functions do a bit more than just restoring registers.
3032 // The non-returning versions will go back directly to the caller's
3033 // caller, others will clean up the stack frame in preparation for
3034 // a tail call. Using them can still save code size even if only one
3035 // register is getting restores. Make the decision based on -Oz:
3036 // using -Os will use inline restore for a single register.
3037 if (isMinSize(MF))
3038 return true;
3039 unsigned NumCSI = CSI.size();
3040 if (NumCSI <= 1)
3041 return false;
3042
3043 unsigned Threshold = isOptSize(MF) ? SpillFuncThresholdOs-1
3044 : SpillFuncThreshold;
3045 return Threshold < NumCSI;
3046}
3047
3048bool HexagonFrameLowering::mayOverflowFrameOffset(MachineFunction &MF) const {
3049 unsigned StackSize = MF.getFrameInfo().estimateStackSize(MF);
3050 auto &HST = MF.getSubtarget<HexagonSubtarget>();
3051 // A fairly simplistic guess as to whether a potential load/store to a
3052 // stack location could require an extra register.
3053 if (HST.useHVXOps() && StackSize > 256)
3054 return true;
3055
3056 // Check if the function has store-immediate instructions that access
3057 // the stack. Since the offset field is not extendable, if the stack
3058 // size exceeds the offset limit (6 bits, shifted), the stores will
3059 // require a new base register.
3060 bool HasImmStack = false;
3061 unsigned MinLS = ~0u; // Log_2 of the memory access size.
3062
3063 for (const MachineBasicBlock &B : MF) {
3064 for (const MachineInstr &MI : B) {
3065 unsigned LS = 0;
3066 switch (MI.getOpcode()) {
3067 case Hexagon::S4_storeirit_io:
3068 case Hexagon::S4_storeirif_io:
3069 case Hexagon::S4_storeiri_io:
3070 ++LS;
3071 [[fallthrough]];
3072 case Hexagon::S4_storeirht_io:
3073 case Hexagon::S4_storeirhf_io:
3074 case Hexagon::S4_storeirh_io:
3075 ++LS;
3076 [[fallthrough]];
3077 case Hexagon::S4_storeirbt_io:
3078 case Hexagon::S4_storeirbf_io:
3079 case Hexagon::S4_storeirb_io:
3080 if (MI.getOperand(i: 0).isFI())
3081 HasImmStack = true;
3082 MinLS = std::min(a: MinLS, b: LS);
3083 break;
3084 }
3085 }
3086 }
3087
3088 if (HasImmStack)
3089 return !isUInt<6>(x: StackSize >> MinLS);
3090
3091 return false;
3092}
3093
3094namespace {
3095// Struct used by orderFrameObjects to help sort the stack objects.
3096struct HexagonFrameSortingObject {
3097 bool IsValid = false;
3098 unsigned Index = 0; // Index of Object into MFI list.
3099 unsigned Size = 0;
3100 Align ObjectAlignment = Align(1); // Alignment of Object in bytes.
3101};
3102
3103struct HexagonFrameSortingComparator {
3104 inline bool operator()(const HexagonFrameSortingObject &A,
3105 const HexagonFrameSortingObject &B) const {
3106 return std::make_tuple(args: !A.IsValid, args: A.ObjectAlignment, args: A.Size) <
3107 std::make_tuple(args: !B.IsValid, args: B.ObjectAlignment, args: B.Size);
3108 }
3109};
3110} // namespace
3111
3112// Sort objects on the stack by alignment value and then by size to minimize
3113// padding.
3114void HexagonFrameLowering::orderFrameObjects(
3115 const MachineFunction &MF, SmallVectorImpl<int> &ObjectsToAllocate) const {
3116
3117 if (ObjectsToAllocate.empty())
3118 return;
3119
3120 const MachineFrameInfo &MFI = MF.getFrameInfo();
3121 int NObjects = ObjectsToAllocate.size();
3122
3123 // Create an array of all MFI objects.
3124 SmallVector<HexagonFrameSortingObject> SortingObjects(
3125 MFI.getObjectIndexEnd());
3126
3127 for (int i = 0, j = 0, e = MFI.getObjectIndexEnd(); i < e && j != NObjects;
3128 ++i) {
3129 if (i != ObjectsToAllocate[j])
3130 continue;
3131 j++;
3132
3133 // A variable size object has size equal to 0. Since Hexagon sets
3134 // getUseLocalStackAllocationBlock() to true, a local block is allocated
3135 // earlier. This case is not handled here for now.
3136 int Size = MFI.getObjectSize(ObjectIdx: i);
3137 if (Size == 0)
3138 return;
3139
3140 SortingObjects[i].IsValid = true;
3141 SortingObjects[i].Index = i;
3142 SortingObjects[i].Size = Size;
3143 SortingObjects[i].ObjectAlignment = MFI.getObjectAlign(ObjectIdx: i);
3144 }
3145
3146 // Sort objects by alignment and then by size.
3147 llvm::stable_sort(Range&: SortingObjects, C: HexagonFrameSortingComparator());
3148
3149 // Modify the original list to represent the final order.
3150 int i = NObjects;
3151 for (auto &Obj : SortingObjects) {
3152 if (i == 0)
3153 break;
3154 ObjectsToAllocate[--i] = Obj.Index;
3155 }
3156}
3157