1//===- MachineFunction.cpp ------------------------------------------------===//
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// Collect native machine code information for a function. This allows
10// target-specific information about the generated code to be stored with each
11// function.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/CodeGen/MachineFunction.h"
16#include "llvm/ADT/BitVector.h"
17#include "llvm/ADT/DenseMap.h"
18#include "llvm/ADT/DenseSet.h"
19#include "llvm/ADT/STLExtras.h"
20#include "llvm/ADT/SmallString.h"
21#include "llvm/ADT/SmallVector.h"
22#include "llvm/ADT/StringRef.h"
23#include "llvm/ADT/StringSwitch.h"
24#include "llvm/ADT/Twine.h"
25#include "llvm/Analysis/ConstantFolding.h"
26#include "llvm/Analysis/ProfileSummaryInfo.h"
27#include "llvm/CodeGen/MachineBasicBlock.h"
28#include "llvm/CodeGen/MachineConstantPool.h"
29#include "llvm/CodeGen/MachineFrameInfo.h"
30#include "llvm/CodeGen/MachineInstr.h"
31#include "llvm/CodeGen/MachineJumpTableInfo.h"
32#include "llvm/CodeGen/MachineMemOperand.h"
33#include "llvm/CodeGen/MachineModuleInfo.h"
34#include "llvm/CodeGen/MachineRegisterInfo.h"
35#include "llvm/CodeGen/PseudoSourceValue.h"
36#include "llvm/CodeGen/PseudoSourceValueManager.h"
37#include "llvm/CodeGen/TargetFrameLowering.h"
38#include "llvm/CodeGen/TargetInstrInfo.h"
39#include "llvm/CodeGen/TargetLowering.h"
40#include "llvm/CodeGen/TargetRegisterInfo.h"
41#include "llvm/CodeGen/TargetSubtargetInfo.h"
42#include "llvm/CodeGen/WinEHFuncInfo.h"
43#include "llvm/Config/llvm-config.h"
44#include "llvm/IR/Attributes.h"
45#include "llvm/IR/BasicBlock.h"
46#include "llvm/IR/Constant.h"
47#include "llvm/IR/DataLayout.h"
48#include "llvm/IR/DerivedTypes.h"
49#include "llvm/IR/EHPersonalities.h"
50#include "llvm/IR/Function.h"
51#include "llvm/IR/GlobalValue.h"
52#include "llvm/IR/Instruction.h"
53#include "llvm/IR/Instructions.h"
54#include "llvm/IR/Metadata.h"
55#include "llvm/IR/Module.h"
56#include "llvm/IR/ModuleSlotTracker.h"
57#include "llvm/IR/Value.h"
58#include "llvm/MC/MCContext.h"
59#include "llvm/MC/MCSymbol.h"
60#include "llvm/MC/SectionKind.h"
61#include "llvm/Support/Casting.h"
62#include "llvm/Support/CommandLine.h"
63#include "llvm/Support/Compiler.h"
64#include "llvm/Support/DOTGraphTraits.h"
65#include "llvm/Support/ErrorHandling.h"
66#include "llvm/Support/FormatVariadic.h"
67#include "llvm/Support/GraphWriter.h"
68#include "llvm/Support/raw_ostream.h"
69#include "llvm/Target/TargetMachine.h"
70#include <algorithm>
71#include <cassert>
72#include <cstddef>
73#include <cstdint>
74#include <iterator>
75#include <string>
76#include <utility>
77#include <vector>
78
79#include "LiveDebugValues/LiveDebugValues.h"
80
81using namespace llvm;
82
83#define DEBUG_TYPE "codegen"
84
85static cl::opt<unsigned> AlignAllFunctions(
86 "align-all-functions",
87 cl::desc("Force the alignment of all functions in log2 format (e.g. 4 "
88 "means align on 16B boundaries)."),
89 cl::init(Val: 0), cl::Hidden);
90
91static const char *getPropertyName(MachineFunctionProperties::Property Prop) {
92 using P = MachineFunctionProperties::Property;
93
94 // clang-format off
95 switch(Prop) {
96 case P::FailedISel: return "FailedISel";
97 case P::IsSSA: return "IsSSA";
98 case P::Legalized: return "Legalized";
99 case P::NoPHIs: return "NoPHIs";
100 case P::NoVRegs: return "NoVRegs";
101 case P::RegBankSelected: return "RegBankSelected";
102 case P::Selected: return "Selected";
103 case P::TracksLiveness: return "TracksLiveness";
104 case P::TiedOpsRewritten: return "TiedOpsRewritten";
105 case P::FailsVerification: return "FailsVerification";
106 case P::FailedRegAlloc: return "FailedRegAlloc";
107 case P::TracksDebugUserValues: return "TracksDebugUserValues";
108 }
109 // clang-format on
110 llvm_unreachable("Invalid machine function property");
111}
112
113void setUnsafeStackSize(const Function &F, MachineFrameInfo &FrameInfo) {
114 if (!F.hasFnAttribute(Kind: Attribute::SafeStack))
115 return;
116
117 auto *Existing =
118 dyn_cast_or_null<MDTuple>(Val: F.getMetadata(KindID: LLVMContext::MD_annotation));
119
120 if (!Existing || Existing->getNumOperands() != 2)
121 return;
122
123 auto *MetadataName = "unsafe-stack-size";
124 if (auto &N = Existing->getOperand(I: 0)) {
125 if (N.equalsStr(Str: MetadataName)) {
126 if (auto &Op = Existing->getOperand(I: 1)) {
127 auto Val = mdconst::extract<ConstantInt>(MD: Op)->getZExtValue();
128 FrameInfo.setUnsafeStackSize(Val);
129 }
130 }
131 }
132}
133
134// Pin the vtable to this file.
135void MachineFunction::Delegate::anchor() {}
136
137void MachineFunctionProperties::print(raw_ostream &OS) const {
138 const char *Separator = "";
139 for (BitVector::size_type I = 0; I < Properties.size(); ++I) {
140 if (!Properties[I])
141 continue;
142 OS << Separator << getPropertyName(Prop: static_cast<Property>(I));
143 Separator = ", ";
144 }
145}
146
147//===----------------------------------------------------------------------===//
148// MachineFunction implementation
149//===----------------------------------------------------------------------===//
150
151// Out-of-line virtual method.
152MachineFunctionInfo::~MachineFunctionInfo() = default;
153
154void ilist_alloc_traits<MachineBasicBlock>::deleteNode(MachineBasicBlock *MBB) {
155 MBB->getParent()->deleteMachineBasicBlock(MBB);
156}
157
158static inline Align getFnStackAlignment(const TargetSubtargetInfo &STI,
159 const Function &F) {
160 if (auto MA = F.getFnStackAlign())
161 return *MA;
162 return STI.getFrameLowering()->getStackAlign();
163}
164
165static FramePointerKind getFramePointerPolicy(const Function &F) {
166 Attribute FPAttr = F.getFnAttribute(Kind: "frame-pointer");
167 if (!FPAttr.isValid())
168 return FramePointerKind::None;
169
170 StringRef FP = FPAttr.getValueAsString();
171 return StringSwitch<FramePointerKind>(FP)
172 .Case(S: "all", Value: FramePointerKind::All)
173 .Case(S: "non-leaf", Value: FramePointerKind::NonLeaf)
174 .Case(S: "non-leaf-no-reserve", Value: FramePointerKind::NonLeafNoReserve)
175 .Case(S: "reserved", Value: FramePointerKind::Reserved)
176 .Case(S: "none", Value: FramePointerKind::None)
177 .Default(Value: FramePointerKind::None);
178}
179
180MachineFunction::MachineFunction(Function &F, const TargetMachine &Target,
181 const TargetSubtargetInfo &STI, MCContext &Ctx,
182 unsigned FunctionNum)
183 : F(F), Target(Target), STI(STI), Ctx(Ctx) {
184 FunctionNumber = FunctionNum;
185 init();
186}
187
188void MachineFunction::handleInsertion(MachineInstr &MI) {
189 if (TheDelegate)
190 TheDelegate->MF_HandleInsertion(MI);
191}
192
193void MachineFunction::handleRemoval(MachineInstr &MI) {
194 if (TheDelegate)
195 TheDelegate->MF_HandleRemoval(MI);
196}
197
198void MachineFunction::handleChangeDesc(MachineInstr &MI,
199 const MCInstrDesc &TID) {
200 if (TheDelegate)
201 TheDelegate->MF_HandleChangeDesc(MI, TID);
202}
203
204void MachineFunction::init() {
205 // Assume the function starts in SSA form with correct liveness.
206 Properties.setIsSSA();
207 Properties.setTracksLiveness();
208 RegInfo = new (Allocator) MachineRegisterInfo(this);
209
210 MFInfo = nullptr;
211
212 // We can realign the stack if the target supports it and the user hasn't
213 // explicitly asked us not to.
214 bool CanRealignSP = STI.getFrameLowering()->isStackRealignable() &&
215 !F.hasFnAttribute(Kind: "no-realign-stack");
216 bool ForceRealignSP = F.hasFnAttribute(Kind: Attribute::StackAlignment) ||
217 F.hasFnAttribute(Kind: "stackrealign");
218 FrameInfo = new (Allocator) MachineFrameInfo(
219 getFnStackAlignment(STI, F), /*StackRealignable=*/CanRealignSP,
220 /*ForcedRealign=*/ForceRealignSP && CanRealignSP);
221 FrameInfo->setFramePointerPolicy(getFramePointerPolicy(F));
222
223 setUnsafeStackSize(F, FrameInfo&: *FrameInfo);
224
225 if (F.hasFnAttribute(Kind: Attribute::StackAlignment))
226 FrameInfo->ensureMaxAlignment(Alignment: *F.getFnStackAlign());
227
228 ConstantPool = new (Allocator) MachineConstantPool(getDataLayout());
229 Alignment = STI.getTargetLowering()->getMinFunctionAlignment();
230
231 // -fsanitize=function and -fsanitize=kcfi instrument indirect function calls
232 // to load a type hash before the function label. Ensure functions are aligned
233 // by a least 4 to avoid unaligned access, which is especially important for
234 // -mno-unaligned-access.
235 if (F.hasMetadata(KindID: LLVMContext::MD_func_sanitize) ||
236 F.getMetadata(KindID: LLVMContext::MD_kcfi_type))
237 Alignment = std::max(a: Alignment, b: Align(4));
238
239 if (AlignAllFunctions)
240 Alignment = Align(1ULL << AlignAllFunctions);
241
242 JumpTableInfo = nullptr;
243
244 if (isFuncletEHPersonality(Pers: classifyEHPersonality(
245 Pers: F.hasPersonalityFn() ? F.getPersonalityFn() : nullptr))) {
246 WinEHInfo = new (Allocator) WinEHFuncInfo();
247 }
248
249 if (!Target.isCompatibleDataLayout(Candidate: getDataLayout())) {
250 report_fatal_error(
251 reason: formatv(Fmt: "Can't create a MachineFunction using a Module with a "
252 "Target-incompatible DataLayout attached\n Target "
253 "DataLayout: {0}\n Module DataLayout: {1}\n",
254 Vals: Target.createDataLayout().getStringRepresentation(),
255 Vals: getDataLayout().getStringRepresentation()));
256 }
257
258 PSVManager = std::make_unique<PseudoSourceValueManager>(args: getTarget());
259}
260
261void MachineFunction::initTargetMachineFunctionInfo(
262 const TargetSubtargetInfo &STI) {
263 assert(!MFInfo && "MachineFunctionInfo already set");
264 MFInfo = Target.createMachineFunctionInfo(Allocator, F, STI: &STI);
265}
266
267MachineFunctionInfo *MachineFunction::cloneInfoFrom(
268 const MachineFunction &OrigMF,
269 const DenseMap<MachineBasicBlock *, MachineBasicBlock *> &Src2DstMBB) {
270 assert(!MFInfo && "new function already has MachineFunctionInfo");
271 if (!OrigMF.MFInfo)
272 return nullptr;
273
274 MachineFunctionInfo *ClonedInfo =
275 OrigMF.MFInfo->clone(Allocator, DestMF&: *this, Src2DstMBB);
276 if (!ClonedInfo)
277 return nullptr;
278
279 RegInfo->copyPendingVirtRegMapEntriesFrom(Other: OrigMF.getRegInfo());
280 return ClonedInfo;
281}
282
283MachineFunction::~MachineFunction() {
284 clear();
285}
286
287void MachineFunction::clear() {
288 Properties.reset();
289
290 // Clear JumpTableInfo first. Otherwise, every MBB we delete would do a
291 // linear search over the jump table entries to find and erase itself.
292 if (JumpTableInfo) {
293 JumpTableInfo->~MachineJumpTableInfo();
294 Allocator.Deallocate(Ptr: JumpTableInfo);
295 JumpTableInfo = nullptr;
296 }
297
298 // Don't call destructors on MachineInstr and MachineOperand. All of their
299 // memory comes from the BumpPtrAllocator which is about to be purged.
300 //
301 // Do call MachineBasicBlock destructors, it contains std::vectors.
302 for (iterator I = begin(), E = end(); I != E; I = BasicBlocks.erase(where: I))
303 I->Insts.clearAndLeakNodesUnsafely();
304 MBBNumbering.clear();
305
306 InstructionRecycler.clear(Allocator);
307 OperandRecycler.clear(Allocator);
308 BasicBlockRecycler.clear(Allocator);
309 CodeViewAnnotations.clear();
310 VariableDbgInfos.clear();
311 if (RegInfo) {
312 RegInfo->~MachineRegisterInfo();
313 Allocator.Deallocate(Ptr: RegInfo);
314 }
315 if (MFInfo) {
316 MFInfo->~MachineFunctionInfo();
317 Allocator.Deallocate(Ptr: MFInfo);
318 }
319
320 FrameInfo->~MachineFrameInfo();
321 Allocator.Deallocate(Ptr: FrameInfo);
322
323 ConstantPool->~MachineConstantPool();
324 Allocator.Deallocate(Ptr: ConstantPool);
325
326 if (WinEHInfo) {
327 WinEHInfo->~WinEHFuncInfo();
328 Allocator.Deallocate(Ptr: WinEHInfo);
329 }
330}
331
332const DataLayout &MachineFunction::getDataLayout() const {
333 return F.getDataLayout();
334}
335
336/// Get the JumpTableInfo for this function.
337/// If it does not already exist, allocate one.
338MachineJumpTableInfo *MachineFunction::
339getOrCreateJumpTableInfo(unsigned EntryKind) {
340 if (JumpTableInfo) return JumpTableInfo;
341
342 JumpTableInfo = new (Allocator)
343 MachineJumpTableInfo((MachineJumpTableInfo::JTEntryKind)EntryKind);
344 return JumpTableInfo;
345}
346
347DenormalMode MachineFunction::getDenormalMode(const fltSemantics &FPType) const {
348 return F.getDenormalMode(FPType);
349}
350
351/// Should we be emitting segmented stack stuff for the function
352bool MachineFunction::shouldSplitStack() const {
353 return getFunction().hasFnAttribute(Kind: "split-stack");
354}
355
356Align MachineFunction::getPreferredAlignment() const {
357 Align PrefAlignment;
358
359 if (MaybeAlign A = F.getPreferredAlignment())
360 PrefAlignment = *A;
361 else if (!F.hasOptSize())
362 PrefAlignment = STI.getTargetLowering()->getPrefFunctionAlignment();
363 else
364 PrefAlignment = Align(1);
365
366 return std::max(a: PrefAlignment, b: getAlignment());
367}
368
369[[nodiscard]] unsigned
370MachineFunction::addFrameInst(const MCCFIInstruction &Inst) {
371 FrameInstructions.push_back(x: Inst);
372 return FrameInstructions.size() - 1;
373}
374
375void MachineFunction::replaceFrameInstRegister(MCRegister FromReg,
376 MCRegister ToReg) {
377 const MCRegisterInfo *MCRI = Ctx.getRegisterInfo();
378 unsigned DwarfFromReg = MCRI->getDwarfRegNum(Reg: FromReg, isEH: false);
379 unsigned DwarfToReg = MCRI->getDwarfRegNum(Reg: ToReg, isEH: false);
380
381 for (MCCFIInstruction &Inst : FrameInstructions)
382 Inst.replaceRegister(FromReg: DwarfFromReg, ToReg: DwarfToReg);
383}
384
385/// This discards all of the MachineBasicBlock numbers and recomputes them.
386/// This guarantees that the MBB numbers are sequential, dense, and match the
387/// ordering of the blocks within the function. If a specific MachineBasicBlock
388/// is specified, only that block and those after it are renumbered.
389void MachineFunction::RenumberBlocks(MachineBasicBlock *MBB) {
390 if (empty()) { MBBNumbering.clear(); return; }
391 MachineFunction::iterator MBBI, E = end();
392 if (MBB == nullptr)
393 MBBI = begin();
394 else
395 MBBI = MBB->getIterator();
396
397 // Figure out the block number this should have.
398 unsigned BlockNo = 0;
399 if (MBBI != begin())
400 BlockNo = std::prev(x: MBBI)->getNumber() + 1;
401
402 for (; MBBI != E; ++MBBI, ++BlockNo) {
403 if (MBBI->getNumber() != (int)BlockNo) {
404 // Remove use of the old number.
405 if (MBBI->getNumber() != -1) {
406 assert(MBBNumbering[MBBI->getNumber()] == &*MBBI &&
407 "MBB number mismatch!");
408 MBBNumbering[MBBI->getNumber()] = nullptr;
409 }
410
411 // If BlockNo is already taken, set that block's number to -1.
412 if (MBBNumbering[BlockNo])
413 MBBNumbering[BlockNo]->setNumber(-1);
414
415 MBBNumbering[BlockNo] = &*MBBI;
416 MBBI->setNumber(BlockNo);
417 }
418 }
419
420 // Okay, all the blocks are renumbered. If we have compactified the block
421 // numbering, shrink MBBNumbering now.
422 assert(BlockNo <= MBBNumbering.size() && "Mismatch!");
423 MBBNumbering.resize(new_size: BlockNo);
424}
425
426int64_t MachineFunction::estimateFunctionSizeInBytes() {
427 const TargetInstrInfo &TII = *getSubtarget().getInstrInfo();
428 const Align FunctionAlignment = getAlignment();
429 MachineFunction::iterator MBBI = begin(), E = end();
430 /// Offset - Distance from the beginning of the function to the end
431 /// of the basic block.
432 int64_t Offset = 0;
433
434 for (; MBBI != E; ++MBBI) {
435 const Align Alignment = MBBI->getAlignment();
436 int64_t BlockSize = 0;
437
438 for (auto &MI : *MBBI) {
439 BlockSize += TII.getInstSizeInBytes(MI);
440 }
441
442 int64_t OffsetBB;
443 if (Alignment <= FunctionAlignment) {
444 OffsetBB = alignTo(Size: Offset, A: Alignment);
445 } else {
446 // The alignment of this MBB is larger than the function's alignment, so
447 // we can't tell whether or not it will insert nops. Assume that it will.
448 OffsetBB = alignTo(Size: Offset, A: Alignment) + Alignment.value() -
449 FunctionAlignment.value();
450 }
451 Offset = OffsetBB + BlockSize;
452 }
453
454 return Offset;
455}
456
457/// This method iterates over the basic blocks and assigns their IsBeginSection
458/// and IsEndSection fields. This must be called after MBB layout is finalized
459/// and the SectionID's are assigned to MBBs.
460void MachineFunction::assignBeginEndSections() {
461 front().setIsBeginSection();
462 auto CurrentSectionID = front().getSectionID();
463 for (auto MBBI = std::next(x: begin()), E = end(); MBBI != E; ++MBBI) {
464 if (MBBI->getSectionID() == CurrentSectionID)
465 continue;
466 MBBI->setIsBeginSection();
467 std::prev(x: MBBI)->setIsEndSection();
468 CurrentSectionID = MBBI->getSectionID();
469 }
470 back().setIsEndSection();
471}
472
473/// Allocate a new MachineInstr. Use this instead of `new MachineInstr'.
474MachineInstr *MachineFunction::CreateMachineInstr(const MCInstrDesc &MCID,
475 DebugLoc DL,
476 bool NoImplicit) {
477 return new (InstructionRecycler.Allocate<MachineInstr>(Allocator))
478 MachineInstr(*this, MCID, std::move(DL), NoImplicit);
479}
480
481/// Create a new MachineInstr which is a copy of the 'Orig' instruction,
482/// identical in all ways except the instruction has no parent, prev, or next.
483MachineInstr *
484MachineFunction::CloneMachineInstr(const MachineInstr *Orig) {
485 return new (InstructionRecycler.Allocate<MachineInstr>(Allocator))
486 MachineInstr(*this, *Orig);
487}
488
489MachineInstr &MachineFunction::cloneMachineInstrBundle(
490 MachineBasicBlock &MBB, MachineBasicBlock::iterator InsertBefore,
491 const MachineInstr &Orig) {
492 MachineInstr *FirstClone = nullptr;
493 MachineBasicBlock::const_instr_iterator I = Orig.getIterator();
494 while (true) {
495 MachineInstr *Cloned = CloneMachineInstr(Orig: &*I);
496 MBB.insert(I: InsertBefore, MI: Cloned);
497 if (FirstClone == nullptr) {
498 FirstClone = Cloned;
499 } else {
500 Cloned->bundleWithPred();
501 }
502
503 if (!I->isBundledWithSucc())
504 break;
505 ++I;
506 }
507 // Copy over call info to the cloned instruction if needed. If Orig is in
508 // a bundle, copyAdditionalCallInfo takes care of finding the call instruction
509 // in the bundle.
510 if (Orig.shouldUpdateAdditionalCallInfo())
511 copyAdditionalCallInfo(Old: &Orig, New: FirstClone);
512 return *FirstClone;
513}
514
515/// Delete the given MachineInstr.
516///
517/// This function also serves as the MachineInstr destructor - the real
518/// ~MachineInstr() destructor must be empty.
519void MachineFunction::deleteMachineInstr(MachineInstr *MI) {
520 // Verify that a call site info is at valid state. This assertion should
521 // be triggered during the implementation of support for the
522 // call site info of a new architecture. If the assertion is triggered,
523 // back trace will tell where to insert a call to updateCallSiteInfo().
524 assert((!MI->isCandidateForAdditionalCallInfo() ||
525 !CallSitesInfo.contains(MI)) &&
526 "Call site info was not updated!");
527 // Verify that the "called globals" info is in a valid state.
528 assert((!MI->isCandidateForAdditionalCallInfo() ||
529 !CalledGlobalsInfo.contains(MI)) &&
530 "Called globals info was not updated!");
531 // Strip it for parts. The operand array and the MI object itself are
532 // independently recyclable.
533 if (MI->Operands)
534 deallocateOperandArray(Cap: MI->CapOperands, Array: MI->Operands);
535 // Don't call ~MachineInstr() which must be trivial anyway because
536 // ~MachineFunction drops whole lists of MachineInstrs wihout calling their
537 // destructors.
538 InstructionRecycler.Deallocate(Allocator, Element: MI);
539}
540
541/// Allocate a new MachineBasicBlock. Use this instead of
542/// `new MachineBasicBlock'.
543MachineBasicBlock *
544MachineFunction::CreateMachineBasicBlock(const BasicBlock *BB,
545 std::optional<UniqueBBID> BBID) {
546 MachineBasicBlock *MBB =
547 new (BasicBlockRecycler.Allocate<MachineBasicBlock>(Allocator))
548 MachineBasicBlock(*this, BB);
549 // Set BBID for `-basic-block-sections=list` and `-basic-block-address-map` to
550 // allow robust mapping of profiles to basic blocks.
551 if (Target.Options.BBAddrMap ||
552 Target.getBBSectionsType() == BasicBlockSection::List)
553 MBB->setBBID(BBID.has_value() ? *BBID : UniqueBBID{.BaseID: NextBBID++, .CloneID: 0});
554 return MBB;
555}
556
557/// Delete the given MachineBasicBlock.
558void MachineFunction::deleteMachineBasicBlock(MachineBasicBlock *MBB) {
559 assert(MBB->getParent() == this && "MBB parent mismatch!");
560 // Clean up any references to MBB in jump tables before deleting it.
561 if (JumpTableInfo)
562 JumpTableInfo->RemoveMBBFromJumpTables(MBB);
563 MBB->~MachineBasicBlock();
564 BasicBlockRecycler.Deallocate(Allocator, Element: MBB);
565}
566
567MachineMemOperand *MachineFunction::getMachineMemOperand(
568 MachinePointerInfo PtrInfo, MachineMemOperand::Flags F, LocationSize Size,
569 Align BaseAlignment, const AAMDNodes &AAInfo, const MDNode *Ranges,
570 SyncScope::ID SSID, AtomicOrdering Ordering,
571 AtomicOrdering FailureOrdering) {
572 assert((!Size.hasValue() ||
573 Size.getValue().getKnownMinValue() != ~UINT64_C(0)) &&
574 "Unexpected an unknown size to be represented using "
575 "LocationSize::beforeOrAfter()");
576 return new (Allocator)
577 MachineMemOperand(PtrInfo, F, Size, BaseAlignment, AAInfo, Ranges, SSID,
578 Ordering, FailureOrdering);
579}
580
581MachineMemOperand *MachineFunction::getMachineMemOperand(
582 MachinePointerInfo PtrInfo, MachineMemOperand::Flags f, LLT MemTy,
583 Align base_alignment, const AAMDNodes &AAInfo, const MDNode *Ranges,
584 SyncScope::ID SSID, AtomicOrdering Ordering,
585 AtomicOrdering FailureOrdering) {
586 return new (Allocator)
587 MachineMemOperand(PtrInfo, f, MemTy, base_alignment, AAInfo, Ranges, SSID,
588 Ordering, FailureOrdering);
589}
590
591MachineMemOperand *
592MachineFunction::getMachineMemOperand(const MachineMemOperand *MMO,
593 const MachinePointerInfo &PtrInfo,
594 LocationSize Size) {
595 assert((!Size.hasValue() ||
596 Size.getValue().getKnownMinValue() != ~UINT64_C(0)) &&
597 "Unexpected an unknown size to be represented using "
598 "LocationSize::beforeOrAfter()");
599 return new (Allocator)
600 MachineMemOperand(PtrInfo, MMO->getFlags(), Size, MMO->getBaseAlign(),
601 AAMDNodes(), nullptr, MMO->getSyncScopeID(),
602 MMO->getSuccessOrdering(), MMO->getFailureOrdering());
603}
604
605MachineMemOperand *MachineFunction::getMachineMemOperand(
606 const MachineMemOperand *MMO, const MachinePointerInfo &PtrInfo, LLT Ty) {
607 return new (Allocator)
608 MachineMemOperand(PtrInfo, MMO->getFlags(), Ty, MMO->getBaseAlign(),
609 AAMDNodes(), nullptr, MMO->getSyncScopeID(),
610 MMO->getSuccessOrdering(), MMO->getFailureOrdering());
611}
612
613MachineMemOperand *
614MachineFunction::getMachineMemOperand(const MachineMemOperand *MMO,
615 int64_t Offset, LLT Ty) {
616 const MachinePointerInfo &PtrInfo = MMO->getPointerInfo();
617
618 // If there is no pointer value, the offset isn't tracked so we need to adjust
619 // the base alignment.
620 Align Alignment = PtrInfo.V.isNull()
621 ? commonAlignment(A: MMO->getBaseAlign(), Offset)
622 : MMO->getBaseAlign();
623
624 // Do not preserve ranges, since we don't necessarily know what the high bits
625 // are anymore.
626 return new (Allocator) MachineMemOperand(
627 PtrInfo.getWithOffset(O: Offset), MMO->getFlags(), Ty, Alignment,
628 MMO->getAAInfo(), nullptr, MMO->getSyncScopeID(),
629 MMO->getSuccessOrdering(), MMO->getFailureOrdering());
630}
631
632MachineMemOperand *
633MachineFunction::getMachineMemOperand(const MachineMemOperand *MMO,
634 const AAMDNodes &AAInfo) {
635 MachinePointerInfo MPI = MMO->getValue() ?
636 MachinePointerInfo(MMO->getValue(), MMO->getOffset()) :
637 MachinePointerInfo(MMO->getPseudoValue(), MMO->getOffset());
638
639 return new (Allocator) MachineMemOperand(
640 MPI, MMO->getFlags(), MMO->getSize(), MMO->getBaseAlign(), AAInfo,
641 MMO->getRanges(), MMO->getSyncScopeID(), MMO->getSuccessOrdering(),
642 MMO->getFailureOrdering());
643}
644
645MachineMemOperand *
646MachineFunction::getMachineMemOperand(const MachineMemOperand *MMO,
647 MachineMemOperand::Flags Flags) {
648 return new (Allocator) MachineMemOperand(
649 MMO->getPointerInfo(), Flags, MMO->getSize(), MMO->getBaseAlign(),
650 MMO->getAAInfo(), MMO->getRanges(), MMO->getSyncScopeID(),
651 MMO->getSuccessOrdering(), MMO->getFailureOrdering());
652}
653
654MachineInstr::ExtraInfo *MachineFunction::createMIExtraInfo(
655 ArrayRef<MachineMemOperand *> MMOs, MCSymbol *PreInstrSymbol,
656 MCSymbol *PostInstrSymbol, MDNode *HeapAllocMarker, MDNode *PCSections,
657 uint32_t CFIType, MDNode *MMRAs, Value *DS) {
658 return MachineInstr::ExtraInfo::create(Allocator, MMOs, PreInstrSymbol,
659 PostInstrSymbol, HeapAllocMarker,
660 PCSections, CFIType, MMRAs, DS);
661}
662
663const char *MachineFunction::createExternalSymbolName(StringRef Name) {
664 char *Dest = Allocator.Allocate<char>(Num: Name.size() + 1);
665 llvm::copy(Range&: Name, Out: Dest);
666 Dest[Name.size()] = 0;
667 return Dest;
668}
669
670uint32_t *MachineFunction::allocateRegMask() {
671 unsigned NumRegs = getSubtarget().getRegisterInfo()->getNumRegs();
672 unsigned Size = MachineOperand::getRegMaskSize(NumRegs);
673 uint32_t *Mask = Allocator.Allocate<uint32_t>(Num: Size);
674 memset(s: Mask, c: 0, n: Size * sizeof(Mask[0]));
675 return Mask;
676}
677
678ArrayRef<int> MachineFunction::allocateShuffleMask(ArrayRef<int> Mask) {
679 int* AllocMask = Allocator.Allocate<int>(Num: Mask.size());
680 copy(Range&: Mask, Out: AllocMask);
681 return {AllocMask, Mask.size()};
682}
683
684#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
685LLVM_DUMP_METHOD void MachineFunction::dump() const {
686 print(dbgs());
687}
688#endif
689
690StringRef MachineFunction::getName() const {
691 return getFunction().getName();
692}
693
694void MachineFunction::print(raw_ostream &OS, const SlotIndexes *Indexes) const {
695 OS << "# Machine code for function " << getName() << ": ";
696 getProperties().print(OS);
697 OS << '\n';
698
699 // Print Frame Information
700 FrameInfo->print(MF: *this, OS);
701
702 // Print JumpTable Information
703 if (JumpTableInfo)
704 JumpTableInfo->print(OS);
705
706 // Print Constant Pool
707 ConstantPool->print(OS);
708
709 const TargetRegisterInfo *TRI = getSubtarget().getRegisterInfo();
710
711 if (RegInfo && !RegInfo->livein_empty()) {
712 OS << "Function Live Ins: ";
713 for (MachineRegisterInfo::livein_iterator
714 I = RegInfo->livein_begin(), E = RegInfo->livein_end(); I != E; ++I) {
715 OS << printReg(Reg: I->first, TRI);
716 if (I->second)
717 OS << " in " << printReg(Reg: I->second, TRI);
718 if (std::next(x: I) != E)
719 OS << ", ";
720 }
721 OS << '\n';
722 }
723
724 ModuleSlotTracker MST(getFunction().getParent());
725 MST.incorporateFunction(F: getFunction());
726 for (const auto &BB : *this) {
727 OS << '\n';
728 // If we print the whole function, print it at its most verbose level.
729 BB.print(OS, MST, Indexes, /*IsStandalone=*/true);
730 }
731
732 OS << "\n# End machine code for function " << getName() << ".\n\n";
733}
734
735/// True if this function needs frame moves for debug or exceptions.
736bool MachineFunction::needsFrameMoves() const {
737 // TODO: Ideally, what we'd like is to have a switch that allows emitting
738 // synchronous (precise at call-sites only) CFA into .eh_frame. However, even
739 // under this switch, we'd like .debug_frame to be precise when using -g. At
740 // this moment, there's no way to specify that some CFI directives go into
741 // .eh_frame only, while others go into .debug_frame only.
742 return getTarget().Options.ForceDwarfFrameSection ||
743 F.needsUnwindTableEntry() ||
744 !F.getParent()->debug_compile_units().empty();
745}
746
747MachineFunction::CallSiteInfo::CallSiteInfo(const CallBase &CB) {
748 if (MDNode *Node = CB.getMetadata(KindID: llvm::LLVMContext::MD_call_target))
749 CallTarget = Node;
750
751 // Numeric callee_type ids are only for indirect calls.
752 if (!CB.isIndirectCall())
753 return;
754
755 MDNode *CalleeTypeList = CB.getMetadata(KindID: LLVMContext::MD_callee_type);
756 if (!CalleeTypeList)
757 return;
758
759 for (const MDOperand &Op : CalleeTypeList->operands()) {
760 MDNode *TypeMD = cast<MDNode>(Val: Op);
761 MDString *TypeIdStr = cast<MDString>(Val: TypeMD->getOperand(I: 1));
762 // Compute numeric type id from generalized type id string
763 uint64_t TypeIdVal = MD5Hash(Str: TypeIdStr->getString());
764 IntegerType *Int64Ty = Type::getInt64Ty(C&: CB.getContext());
765 CalleeTypeIds.push_back(
766 Elt: ConstantInt::get(Ty: Int64Ty, V: TypeIdVal, /*IsSigned=*/false));
767 }
768}
769
770template <>
771struct llvm::DOTGraphTraits<const MachineFunction *>
772 : public DefaultDOTGraphTraits {
773 DOTGraphTraits(bool isSimple = false) : DefaultDOTGraphTraits(isSimple) {}
774
775 static std::string getGraphName(const MachineFunction *F) {
776 return ("CFG for '" + F->getName() + "' function").str();
777 }
778
779 std::string getNodeLabel(const MachineBasicBlock *Node,
780 const MachineFunction *Graph) {
781 std::string OutStr;
782 {
783 raw_string_ostream OSS(OutStr);
784
785 if (isSimple()) {
786 OSS << printMBBReference(MBB: *Node);
787 if (const BasicBlock *BB = Node->getBasicBlock())
788 OSS << ": " << BB->getName();
789 } else
790 Node->print(OS&: OSS);
791 }
792
793 if (OutStr[0] == '\n')
794 OutStr.erase(position: OutStr.begin());
795
796 // Process string output to make it nicer...
797 for (unsigned i = 0; i != OutStr.length(); ++i)
798 if (OutStr[i] == '\n') { // Left justify
799 OutStr[i] = '\\';
800 OutStr.insert(p: OutStr.begin() + i + 1, c: 'l');
801 }
802 return OutStr;
803 }
804};
805
806void MachineFunction::viewCFG() const
807{
808#ifndef NDEBUG
809 ViewGraph(this, "mf" + getName());
810#else
811 errs() << "MachineFunction::viewCFG is only available in debug builds on "
812 << "systems with Graphviz or gv!\n";
813#endif // NDEBUG
814}
815
816void MachineFunction::viewCFGOnly() const
817{
818#ifndef NDEBUG
819 ViewGraph(this, "mf" + getName(), true);
820#else
821 errs() << "MachineFunction::viewCFGOnly is only available in debug builds on "
822 << "systems with Graphviz or gv!\n";
823#endif // NDEBUG
824}
825
826/// Add the specified physical register as a live-in value and
827/// create a corresponding virtual register for it.
828Register MachineFunction::addLiveIn(MCRegister PReg,
829 const TargetRegisterClass *RC) {
830 MachineRegisterInfo &MRI = getRegInfo();
831 Register VReg = MRI.getLiveInVirtReg(PReg);
832 if (VReg) {
833 const TargetRegisterClass *VRegRC = MRI.getRegClass(Reg: VReg);
834 (void)VRegRC;
835 // A physical register can be added several times.
836 // Between two calls, the register class of the related virtual register
837 // may have been constrained to match some operation constraints.
838 // In that case, check that the current register class includes the
839 // physical register and is a sub class of the specified RC.
840 assert((VRegRC == RC || (VRegRC->contains(PReg) &&
841 RC->hasSubClassEq(VRegRC))) &&
842 "Register class mismatch!");
843 return VReg;
844 }
845 VReg = MRI.createVirtualRegister(RegClass: RC);
846 MRI.addLiveIn(Reg: PReg, vreg: VReg);
847 return VReg;
848}
849
850/// Return the MCSymbol for the specified non-empty jump table.
851/// If isLinkerPrivate is specified, an 'l' label is returned, otherwise a
852/// normal 'L' label is returned.
853MCSymbol *MachineFunction::getJTISymbol(unsigned JTI, MCContext &Ctx,
854 bool isLinkerPrivate) const {
855 const DataLayout &DL = getDataLayout();
856 assert(JumpTableInfo && "No jump tables");
857 assert(JTI < JumpTableInfo->getJumpTables().size() && "Invalid JTI!");
858
859 StringRef Prefix = isLinkerPrivate ? DL.getLinkerPrivateGlobalPrefix()
860 : DL.getInternalSymbolPrefix();
861 SmallString<60> Name;
862 raw_svector_ostream(Name)
863 << Prefix << "JTI" << getFunctionNumber() << '_' << JTI;
864 return Ctx.getOrCreateSymbol(Name);
865}
866
867/// Return a function-local symbol to represent the PIC base.
868MCSymbol *MachineFunction::getPICBaseSymbol() const {
869 const DataLayout &DL = getDataLayout();
870 return Ctx.getOrCreateSymbol(Name: Twine(DL.getInternalSymbolPrefix()) +
871 Twine(getFunctionNumber()) + "$pb");
872}
873
874/// \name Exception Handling
875/// \{
876
877LandingPadInfo &
878MachineFunction::getOrCreateLandingPadInfo(MachineBasicBlock *LandingPad) {
879 unsigned N = LandingPads.size();
880 for (unsigned i = 0; i < N; ++i) {
881 LandingPadInfo &LP = LandingPads[i];
882 if (LP.LandingPadBlock == LandingPad)
883 return LP;
884 }
885
886 LandingPads.push_back(x: LandingPadInfo(LandingPad));
887 return LandingPads[N];
888}
889
890void MachineFunction::addInvoke(MachineBasicBlock *LandingPad,
891 MCSymbol *BeginLabel, MCSymbol *EndLabel) {
892 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
893 LP.BeginLabels.push_back(Elt: BeginLabel);
894 LP.EndLabels.push_back(Elt: EndLabel);
895}
896
897MCSymbol *MachineFunction::addLandingPad(MachineBasicBlock *LandingPad) {
898 MCSymbol *LandingPadLabel = Ctx.createTempSymbol();
899 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
900 LP.LandingPadLabel = LandingPadLabel;
901
902 BasicBlock::const_iterator FirstI =
903 LandingPad->getBasicBlock()->getFirstNonPHIIt();
904 if (const auto *LPI = dyn_cast<LandingPadInst>(Val&: FirstI)) {
905 // If there's no typeid list specified, then "cleanup" is implicit.
906 // Otherwise, id 0 is reserved for the cleanup action.
907 if (LPI->isCleanup() && LPI->getNumClauses() != 0)
908 LP.TypeIds.push_back(x: 0);
909
910 // FIXME: New EH - Add the clauses in reverse order. This isn't 100%
911 // correct, but we need to do it this way because of how the DWARF EH
912 // emitter processes the clauses.
913 for (unsigned I = LPI->getNumClauses(); I != 0; --I) {
914 Value *Val = LPI->getClause(Idx: I - 1);
915 if (LPI->isCatch(Idx: I - 1)) {
916 LP.TypeIds.push_back(
917 x: getTypeIDFor(TI: dyn_cast<GlobalValue>(Val: Val->stripPointerCasts())));
918 } else {
919 // Add filters in a list.
920 auto *CVal = cast<Constant>(Val);
921 SmallVector<unsigned, 4> FilterList;
922 for (const Use &U : CVal->operands())
923 FilterList.push_back(
924 Elt: getTypeIDFor(TI: cast<GlobalValue>(Val: U->stripPointerCasts())));
925
926 LP.TypeIds.push_back(x: getFilterIDFor(TyIds: FilterList));
927 }
928 }
929
930 } else if (const auto *CPI = dyn_cast<CatchPadInst>(Val&: FirstI)) {
931 for (unsigned I = CPI->arg_size(); I != 0; --I) {
932 auto *TypeInfo =
933 dyn_cast<GlobalValue>(Val: CPI->getArgOperand(i: I - 1)->stripPointerCasts());
934 LP.TypeIds.push_back(x: getTypeIDFor(TI: TypeInfo));
935 }
936
937 } else {
938 assert(isa<CleanupPadInst>(FirstI) && "Invalid landingpad!");
939 }
940
941 return LandingPadLabel;
942}
943
944void MachineFunction::setCallSiteLandingPad(MCSymbol *Sym,
945 ArrayRef<unsigned> Sites) {
946 LPadToCallSiteMap[Sym].append(in_start: Sites.begin(), in_end: Sites.end());
947}
948
949unsigned MachineFunction::getTypeIDFor(const GlobalValue *TI) {
950 for (unsigned i = 0, N = TypeInfos.size(); i != N; ++i)
951 if (TypeInfos[i] == TI) return i + 1;
952
953 TypeInfos.push_back(x: TI);
954 return TypeInfos.size();
955}
956
957int MachineFunction::getFilterIDFor(ArrayRef<unsigned> TyIds) {
958 // If the new filter coincides with the tail of an existing filter, then
959 // re-use the existing filter. Folding filters more than this requires
960 // re-ordering filters and/or their elements - probably not worth it.
961 for (unsigned i : FilterEnds) {
962 unsigned j = TyIds.size();
963
964 while (i && j)
965 if (FilterIds[--i] != TyIds[--j])
966 goto try_next;
967
968 if (!j)
969 // The new filter coincides with range [i, end) of the existing filter.
970 return -(1 + i);
971
972try_next:;
973 }
974
975 // Add the new filter.
976 int FilterID = -(1 + FilterIds.size());
977 FilterIds.reserve(n: FilterIds.size() + TyIds.size() + 1);
978 llvm::append_range(C&: FilterIds, R&: TyIds);
979 FilterEnds.push_back(x: FilterIds.size());
980 FilterIds.push_back(x: 0); // terminator
981 return FilterID;
982}
983
984MachineFunction::CallSiteInfoMap::iterator
985MachineFunction::getCallSiteInfo(const MachineInstr *MI) {
986 assert(MI->isCandidateForAdditionalCallInfo() &&
987 "Call site info refers only to call (MI) candidates");
988
989 if (!Target.Options.EmitCallSiteInfo && !Target.Options.EmitCallGraphSection)
990 return CallSitesInfo.end();
991 return CallSitesInfo.find(Val: MI);
992}
993
994/// Return the call machine instruction or find a call within bundle.
995static const MachineInstr *getCallInstr(const MachineInstr *MI) {
996 if (!MI->isBundle())
997 return MI;
998
999 for (const auto &BMI : make_range(x: getBundleStart(I: MI->getIterator()),
1000 y: getBundleEnd(I: MI->getIterator())))
1001 if (BMI.isCandidateForAdditionalCallInfo())
1002 return &BMI;
1003
1004 llvm_unreachable("Unexpected bundle without a call site candidate");
1005}
1006
1007void MachineFunction::eraseAdditionalCallInfo(const MachineInstr *MI) {
1008 assert(MI->shouldUpdateAdditionalCallInfo() &&
1009 "Call info refers only to call (MI) candidates or "
1010 "candidates inside bundles");
1011
1012 const MachineInstr *CallMI = getCallInstr(MI);
1013
1014 CallSiteInfoMap::iterator CSIt = getCallSiteInfo(MI: CallMI);
1015 if (CSIt != CallSitesInfo.end())
1016 CallSitesInfo.erase(I: CSIt);
1017
1018 CalledGlobalsInfo.erase(Val: CallMI);
1019}
1020
1021void MachineFunction::copyAdditionalCallInfo(const MachineInstr *Old,
1022 const MachineInstr *New) {
1023 assert(Old->shouldUpdateAdditionalCallInfo() &&
1024 "Call info refers only to call (MI) candidates or "
1025 "candidates inside bundles");
1026
1027 if (!New->isCandidateForAdditionalCallInfo())
1028 return eraseAdditionalCallInfo(MI: Old);
1029
1030 const MachineInstr *OldCallMI = getCallInstr(MI: Old);
1031 CallSiteInfoMap::iterator CSIt = getCallSiteInfo(MI: OldCallMI);
1032 if (CSIt != CallSitesInfo.end()) {
1033 CallSiteInfo CSInfo = CSIt->second;
1034 CallSitesInfo[New] = std::move(CSInfo);
1035 }
1036
1037 CalledGlobalsMap::iterator CGIt = CalledGlobalsInfo.find(Val: OldCallMI);
1038 if (CGIt != CalledGlobalsInfo.end()) {
1039 CalledGlobalInfo CGInfo = CGIt->second;
1040 CalledGlobalsInfo[New] = std::move(CGInfo);
1041 }
1042}
1043
1044void MachineFunction::moveAdditionalCallInfo(const MachineInstr *Old,
1045 const MachineInstr *New) {
1046 assert(Old->shouldUpdateAdditionalCallInfo() &&
1047 "Call info refers only to call (MI) candidates or "
1048 "candidates inside bundles");
1049
1050 if (!New->isCandidateForAdditionalCallInfo())
1051 return eraseAdditionalCallInfo(MI: Old);
1052
1053 const MachineInstr *OldCallMI = getCallInstr(MI: Old);
1054 CallSiteInfoMap::iterator CSIt = getCallSiteInfo(MI: OldCallMI);
1055 if (CSIt != CallSitesInfo.end()) {
1056 CallSiteInfo CSInfo = std::move(CSIt->second);
1057 CallSitesInfo.erase(I: CSIt);
1058 CallSitesInfo[New] = std::move(CSInfo);
1059 }
1060
1061 CalledGlobalsMap::iterator CGIt = CalledGlobalsInfo.find(Val: OldCallMI);
1062 if (CGIt != CalledGlobalsInfo.end()) {
1063 CalledGlobalInfo CGInfo = std::move(CGIt->second);
1064 CalledGlobalsInfo.erase(I: CGIt);
1065 CalledGlobalsInfo[New] = std::move(CGInfo);
1066 }
1067}
1068
1069void MachineFunction::setDebugInstrNumberingCount(unsigned Num) {
1070 DebugInstrNumberingCount = Num;
1071}
1072
1073void MachineFunction::makeDebugValueSubstitution(DebugInstrOperandPair A,
1074 DebugInstrOperandPair B,
1075 unsigned Subreg) {
1076 // Catch any accidental self-loops.
1077 assert(A.first != B.first);
1078 // Don't allow any substitutions _from_ the memory operand number.
1079 assert(A.second != DebugOperandMemNumber);
1080
1081 DebugValueSubstitutions.push_back(Elt: {A, B, Subreg});
1082}
1083
1084void MachineFunction::substituteDebugValuesForInst(const MachineInstr &Old,
1085 MachineInstr &New,
1086 unsigned MaxOperand) {
1087 // If the Old instruction wasn't tracked at all, there is no work to do.
1088 unsigned OldInstrNum = Old.peekDebugInstrNum();
1089 if (!OldInstrNum)
1090 return;
1091
1092 // Iterate over all operands looking for defs to create substitutions for.
1093 // Avoid creating new instr numbers unless we create a new substitution.
1094 // While this has no functional effect, it risks confusing someone reading
1095 // MIR output.
1096 // Examine all the operands, or the first N specified by the caller.
1097 MaxOperand = std::min(a: MaxOperand, b: Old.getNumOperands());
1098 for (unsigned int I = 0; I < MaxOperand; ++I) {
1099 const auto &OldMO = Old.getOperand(i: I);
1100 auto &NewMO = New.getOperand(i: I);
1101 (void)NewMO;
1102
1103 if (!OldMO.isReg() || !OldMO.isDef())
1104 continue;
1105 assert(NewMO.isDef());
1106
1107 unsigned NewInstrNum = New.getDebugInstrNum();
1108 makeDebugValueSubstitution(A: std::make_pair(x&: OldInstrNum, y&: I),
1109 B: std::make_pair(x&: NewInstrNum, y&: I));
1110 }
1111}
1112
1113auto MachineFunction::salvageCopySSA(
1114 MachineInstr &MI, DenseMap<Register, DebugInstrOperandPair> &DbgPHICache)
1115 -> DebugInstrOperandPair {
1116 const TargetInstrInfo &TII = *getSubtarget().getInstrInfo();
1117
1118 // Check whether this copy-like instruction has already been salvaged into
1119 // an operand pair.
1120 Register Dest;
1121 if (auto CopyDstSrc = TII.isCopyLikeInstr(MI)) {
1122 Dest = CopyDstSrc->Destination->getReg();
1123 } else {
1124 assert(MI.isSubregToReg());
1125 Dest = MI.getOperand(i: 0).getReg();
1126 }
1127
1128 auto CacheIt = DbgPHICache.find(Val: Dest);
1129 if (CacheIt != DbgPHICache.end())
1130 return CacheIt->second;
1131
1132 // Calculate the instruction number to use, or install a DBG_PHI.
1133 auto OperandPair = salvageCopySSAImpl(MI);
1134 DbgPHICache.insert(KV: {Dest, OperandPair});
1135 return OperandPair;
1136}
1137
1138auto MachineFunction::salvageCopySSAImpl(MachineInstr &MI)
1139 -> DebugInstrOperandPair {
1140 MachineRegisterInfo &MRI = getRegInfo();
1141 const TargetRegisterInfo &TRI = *MRI.getTargetRegisterInfo();
1142 const TargetInstrInfo &TII = *getSubtarget().getInstrInfo();
1143
1144 // Chase the value read by a copy-like instruction back to the instruction
1145 // that ultimately _defines_ that value. This may pass:
1146 // * Through multiple intermediate copies, including subregister moves /
1147 // copies,
1148 // * Copies from physical registers that must then be traced back to the
1149 // defining instruction,
1150 // * Or, physical registers may be live-in to (only) the entry block, which
1151 // requires a DBG_PHI to be created.
1152 // We can pursue this problem in that order: trace back through copies,
1153 // optionally through a physical register, to a defining instruction. We
1154 // should never move from physreg to vreg. As we're still in SSA form, no need
1155 // to worry about partial definitions of registers.
1156
1157 // Helper lambda to interpret a copy-like instruction. Takes instruction,
1158 // returns the register read and any subregister identifying which part is
1159 // read.
1160 auto GetRegAndSubreg =
1161 [&](const MachineInstr &Cpy) -> std::pair<Register, unsigned> {
1162 Register NewReg, OldReg;
1163 unsigned SubReg;
1164 if (Cpy.isCopy()) {
1165 OldReg = Cpy.getOperand(i: 0).getReg();
1166 NewReg = Cpy.getOperand(i: 1).getReg();
1167 SubReg = Cpy.getOperand(i: 1).getSubReg();
1168 } else if (Cpy.isSubregToReg()) {
1169 OldReg = Cpy.getOperand(i: 0).getReg();
1170 NewReg = Cpy.getOperand(i: 1).getReg();
1171 SubReg = Cpy.getOperand(i: 2).getImm();
1172 } else {
1173 auto CopyDetails = *TII.isCopyInstr(MI: Cpy);
1174 const MachineOperand &Src = *CopyDetails.Source;
1175 const MachineOperand &Dest = *CopyDetails.Destination;
1176 OldReg = Dest.getReg();
1177 NewReg = Src.getReg();
1178 SubReg = Src.getSubReg();
1179 }
1180
1181 return {NewReg, SubReg};
1182 };
1183
1184 // First seek either the defining instruction, or a copy from a physreg.
1185 // During search, the current state is the current copy instruction, and which
1186 // register we've read. Accumulate qualifying subregisters into SubregsSeen;
1187 // deal with those later.
1188 auto State = GetRegAndSubreg(MI);
1189 auto CurInst = MI.getIterator();
1190 SmallVector<unsigned, 4> SubregsSeen;
1191 while (true) {
1192 // If we've found a copy from a physreg, first portion of search is over.
1193 if (!State.first.isVirtual())
1194 break;
1195
1196 // Record any subregister qualifier.
1197 if (State.second)
1198 SubregsSeen.push_back(Elt: State.second);
1199
1200 assert(MRI.hasOneDef(State.first));
1201 MachineInstr &Inst = *MRI.def_begin(RegNo: State.first)->getParent();
1202 CurInst = Inst.getIterator();
1203
1204 // Any non-copy instruction is the defining instruction we're seeking.
1205 if (!Inst.isCopyLike() && !TII.isCopyLikeInstr(MI: Inst))
1206 break;
1207 State = GetRegAndSubreg(Inst);
1208 };
1209
1210 // Helper lambda to apply additional subregister substitutions to a known
1211 // instruction/operand pair. Adds new (fake) substitutions so that we can
1212 // record the subregister. FIXME: this isn't very space efficient if multiple
1213 // values are tracked back through the same copies; cache something later.
1214 auto ApplySubregisters =
1215 [&](DebugInstrOperandPair P) -> DebugInstrOperandPair {
1216 for (unsigned Subreg : reverse(C&: SubregsSeen)) {
1217 // Fetch a new instruction number, not attached to an actual instruction.
1218 unsigned NewInstrNumber = getNewDebugInstrNum();
1219 // Add a substitution from the "new" number to the known one, with a
1220 // qualifying subreg.
1221 makeDebugValueSubstitution(A: {NewInstrNumber, 0}, B: P, Subreg);
1222 // Return the new number; to find the underlying value, consumers need to
1223 // deal with the qualifying subreg.
1224 P = {NewInstrNumber, 0};
1225 }
1226 return P;
1227 };
1228
1229 // If we managed to find the defining instruction after COPYs, return an
1230 // instruction / operand pair after adding subregister qualifiers.
1231 if (State.first.isVirtual()) {
1232 // Virtual register def -- we can just look up where this happens.
1233 MachineInstr *Inst = MRI.def_begin(RegNo: State.first)->getParent();
1234 for (auto &MO : Inst->all_defs()) {
1235 if (MO.getReg() != State.first)
1236 continue;
1237 return ApplySubregisters({Inst->getDebugInstrNum(), MO.getOperandNo()});
1238 }
1239
1240 llvm_unreachable("Vreg def with no corresponding operand?");
1241 }
1242
1243 // Our search ended in a copy from a physreg: walk back up the function
1244 // looking for whatever defines the physreg.
1245 assert(CurInst->isCopyLike() || TII.isCopyInstr(*CurInst));
1246 State = GetRegAndSubreg(*CurInst);
1247 Register RegToSeek = State.first;
1248
1249 auto RMII = CurInst->getReverseIterator();
1250 auto PrevInstrs = make_range(x: RMII, y: CurInst->getParent()->instr_rend());
1251 for (auto &ToExamine : PrevInstrs) {
1252 for (auto &MO : ToExamine.all_defs()) {
1253 // Test for operand that defines something aliasing RegToSeek.
1254 if (!TRI.regsOverlap(RegA: RegToSeek, RegB: MO.getReg()))
1255 continue;
1256
1257 return ApplySubregisters(
1258 {ToExamine.getDebugInstrNum(), MO.getOperandNo()});
1259 }
1260 }
1261
1262 MachineBasicBlock &InsertBB = *CurInst->getParent();
1263
1264 // We reached the start of the block before finding a defining instruction.
1265 // There are numerous scenarios where this can happen:
1266 // * Constant physical registers,
1267 // * Several intrinsics that allow LLVM-IR to read arbitary registers,
1268 // * Arguments in the entry block,
1269 // * Exception handling landing pads.
1270 // Validating all of them is too difficult, so just insert a DBG_PHI reading
1271 // the variable value at this position, rather than checking it makes sense.
1272
1273 // Create DBG_PHI for specified physreg.
1274 auto Builder = BuildMI(BB&: InsertBB, I: InsertBB.getFirstNonPHI(), MIMD: DebugLoc(),
1275 MCID: TII.get(Opcode: TargetOpcode::DBG_PHI));
1276 Builder.addReg(RegNo: State.first);
1277 unsigned NewNum = getNewDebugInstrNum();
1278 Builder.addImm(Val: NewNum);
1279 return ApplySubregisters({NewNum, 0u});
1280}
1281
1282void MachineFunction::finalizeDebugInstrRefs() {
1283 auto *TII = getSubtarget().getInstrInfo();
1284
1285 auto MakeUndefDbgValue = [&](MachineInstr &MI) {
1286 const MCInstrDesc &RefII = TII->get(Opcode: TargetOpcode::DBG_VALUE_LIST);
1287 MI.setDesc(RefII);
1288 MI.setDebugValueUndef();
1289 };
1290
1291 DenseMap<Register, DebugInstrOperandPair> ArgDbgPHIs;
1292 for (auto &MBB : *this) {
1293 for (auto &MI : MBB) {
1294 if (!MI.isDebugRef())
1295 continue;
1296
1297 bool IsValidRef = true;
1298
1299 for (MachineOperand &MO : MI.debug_operands()) {
1300 if (!MO.isReg())
1301 continue;
1302
1303 Register Reg = MO.getReg();
1304
1305 // Some vregs can be deleted as redundant in the meantime. Mark those
1306 // as DBG_VALUE $noreg. Additionally, some normal instructions are
1307 // quickly deleted, leaving dangling references to vregs with no def.
1308 if (Reg == 0 || !RegInfo->hasOneDef(RegNo: Reg)) {
1309 IsValidRef = false;
1310 break;
1311 }
1312
1313 assert(Reg.isVirtual());
1314 MachineInstr &DefMI = *RegInfo->def_instr_begin(RegNo: Reg);
1315
1316 // If we've found a copy-like instruction, follow it back to the
1317 // instruction that defines the source value, see salvageCopySSA docs
1318 // for why this is important.
1319 if (DefMI.isCopyLike() || TII->isCopyInstr(MI: DefMI)) {
1320 auto Result = salvageCopySSA(MI&: DefMI, DbgPHICache&: ArgDbgPHIs);
1321 MO.ChangeToDbgInstrRef(InstrIdx: Result.first, OpIdx: Result.second);
1322 } else {
1323 // Otherwise, identify the operand number that the VReg refers to.
1324 unsigned OperandIdx = 0;
1325 for (const auto &DefMO : DefMI.operands()) {
1326 if (DefMO.isReg() && DefMO.isDef() && DefMO.getReg() == Reg)
1327 break;
1328 ++OperandIdx;
1329 }
1330 assert(OperandIdx < DefMI.getNumOperands());
1331
1332 // Morph this instr ref to point at the given instruction and operand.
1333 unsigned ID = DefMI.getDebugInstrNum();
1334 MO.ChangeToDbgInstrRef(InstrIdx: ID, OpIdx: OperandIdx);
1335 }
1336 }
1337
1338 if (!IsValidRef)
1339 MakeUndefDbgValue(MI);
1340 }
1341 }
1342}
1343
1344bool MachineFunction::shouldUseDebugInstrRef() const {
1345 // Disable instr-ref at -O0: it's very slow (in compile time). We can still
1346 // have optimized code inlined into this unoptimized code, however with
1347 // fewer and less aggressive optimizations happening, coverage and accuracy
1348 // should not suffer.
1349 if (getTarget().getOptLevel() == CodeGenOptLevel::None)
1350 return false;
1351
1352 // Don't use instr-ref if this function is marked optnone.
1353 if (F.hasFnAttribute(Kind: Attribute::OptimizeNone))
1354 return false;
1355
1356 if (llvm::debuginfoShouldUseDebugInstrRef(T: getTarget().getTargetTriple()))
1357 return true;
1358
1359 return false;
1360}
1361
1362bool MachineFunction::useDebugInstrRef() const {
1363 return UseDebugInstrRef;
1364}
1365
1366void MachineFunction::setUseDebugInstrRef(bool Use) {
1367 UseDebugInstrRef = Use;
1368}
1369
1370// Use one million as a high / reserved number.
1371const unsigned MachineFunction::DebugOperandMemNumber = 1000000;
1372
1373/// \}
1374
1375//===----------------------------------------------------------------------===//
1376// MachineJumpTableInfo implementation
1377//===----------------------------------------------------------------------===//
1378
1379MachineJumpTableEntry::MachineJumpTableEntry(
1380 const std::vector<MachineBasicBlock *> &MBBs)
1381 : MBBs(MBBs), Hotness(MachineFunctionDataHotness::Unknown) {}
1382
1383/// Return the size of each entry in the jump table.
1384unsigned MachineJumpTableInfo::getEntrySize(const DataLayout &TD) const {
1385 // The size of a jump table entry is 4 bytes unless the entry is just the
1386 // address of a block, in which case it is the pointer size.
1387 switch (getEntryKind()) {
1388 case MachineJumpTableInfo::EK_BlockAddress:
1389 return TD.getPointerSize();
1390 case MachineJumpTableInfo::EK_GPRel64BlockAddress:
1391 case MachineJumpTableInfo::EK_LabelDifference64:
1392 return 8;
1393 case MachineJumpTableInfo::EK_GPRel32BlockAddress:
1394 case MachineJumpTableInfo::EK_LabelDifference32:
1395 case MachineJumpTableInfo::EK_Custom32:
1396 return 4;
1397 case MachineJumpTableInfo::EK_Inline:
1398 return 0;
1399 }
1400 llvm_unreachable("Unknown jump table encoding!");
1401}
1402
1403/// Return the alignment of each entry in the jump table.
1404unsigned MachineJumpTableInfo::getEntryAlignment(const DataLayout &TD) const {
1405 // The alignment of a jump table entry is the alignment of int32 unless the
1406 // entry is just the address of a block, in which case it is the pointer
1407 // alignment.
1408 switch (getEntryKind()) {
1409 case MachineJumpTableInfo::EK_BlockAddress:
1410 return TD.getPointerABIAlignment(AS: 0).value();
1411 case MachineJumpTableInfo::EK_GPRel64BlockAddress:
1412 case MachineJumpTableInfo::EK_LabelDifference64:
1413 return TD.getABIIntegerTypeAlignment(BitWidth: 64).value();
1414 case MachineJumpTableInfo::EK_GPRel32BlockAddress:
1415 case MachineJumpTableInfo::EK_LabelDifference32:
1416 case MachineJumpTableInfo::EK_Custom32:
1417 return TD.getABIIntegerTypeAlignment(BitWidth: 32).value();
1418 case MachineJumpTableInfo::EK_Inline:
1419 return 1;
1420 }
1421 llvm_unreachable("Unknown jump table encoding!");
1422}
1423
1424/// Create a new jump table entry in the jump table info.
1425unsigned MachineJumpTableInfo::createJumpTableIndex(
1426 const std::vector<MachineBasicBlock*> &DestBBs) {
1427 assert(!DestBBs.empty() && "Cannot create an empty jump table!");
1428 JumpTables.push_back(x: MachineJumpTableEntry(DestBBs));
1429 return JumpTables.size()-1;
1430}
1431
1432bool MachineJumpTableInfo::updateJumpTableEntryHotness(
1433 size_t JTI, MachineFunctionDataHotness Hotness) {
1434 assert(JTI < JumpTables.size() && "Invalid JTI!");
1435 // Record the largest hotness value.
1436 if (Hotness <= JumpTables[JTI].Hotness)
1437 return false;
1438
1439 JumpTables[JTI].Hotness = Hotness;
1440 return true;
1441}
1442
1443/// If Old is the target of any jump tables, update the jump tables to branch
1444/// to New instead.
1445bool MachineJumpTableInfo::ReplaceMBBInJumpTables(MachineBasicBlock *Old,
1446 MachineBasicBlock *New) {
1447 assert(Old != New && "Not making a change?");
1448 bool MadeChange = false;
1449 for (size_t i = 0, e = JumpTables.size(); i != e; ++i)
1450 ReplaceMBBInJumpTable(Idx: i, Old, New);
1451 return MadeChange;
1452}
1453
1454/// If MBB is present in any jump tables, remove it.
1455bool MachineJumpTableInfo::RemoveMBBFromJumpTables(MachineBasicBlock *MBB) {
1456 bool MadeChange = false;
1457 for (MachineJumpTableEntry &JTE : JumpTables) {
1458 auto removeBeginItr = std::remove(first: JTE.MBBs.begin(), last: JTE.MBBs.end(), value: MBB);
1459 MadeChange |= (removeBeginItr != JTE.MBBs.end());
1460 JTE.MBBs.erase(first: removeBeginItr, last: JTE.MBBs.end());
1461 }
1462 return MadeChange;
1463}
1464
1465/// If Old is a target of the jump tables, update the jump table to branch to
1466/// New instead.
1467bool MachineJumpTableInfo::ReplaceMBBInJumpTable(unsigned Idx,
1468 MachineBasicBlock *Old,
1469 MachineBasicBlock *New) {
1470 assert(Old != New && "Not making a change?");
1471 bool MadeChange = false;
1472 MachineJumpTableEntry &JTE = JumpTables[Idx];
1473 for (MachineBasicBlock *&MBB : JTE.MBBs)
1474 if (MBB == Old) {
1475 MBB = New;
1476 MadeChange = true;
1477 }
1478 return MadeChange;
1479}
1480
1481void MachineJumpTableInfo::print(raw_ostream &OS) const {
1482 if (JumpTables.empty()) return;
1483
1484 OS << "Jump Tables:\n";
1485
1486 for (unsigned i = 0, e = JumpTables.size(); i != e; ++i) {
1487 OS << printJumpTableEntryReference(Idx: i) << ':';
1488 for (const MachineBasicBlock *MBB : JumpTables[i].MBBs)
1489 OS << ' ' << printMBBReference(MBB: *MBB);
1490 OS << '\n';
1491 }
1492
1493 OS << '\n';
1494}
1495
1496#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1497LLVM_DUMP_METHOD void MachineJumpTableInfo::dump() const { print(dbgs()); }
1498#endif
1499
1500Printable llvm::printJumpTableEntryReference(unsigned Idx) {
1501 return Printable([Idx](raw_ostream &OS) { OS << "%jump-table." << Idx; });
1502}
1503
1504//===----------------------------------------------------------------------===//
1505// MachineConstantPool implementation
1506//===----------------------------------------------------------------------===//
1507
1508void MachineConstantPoolValue::anchor() {}
1509
1510unsigned MachineConstantPoolValue::getSizeInBytes(const DataLayout &DL) const {
1511 return DL.getTypeAllocSize(Ty);
1512}
1513
1514unsigned MachineConstantPoolEntry::getSizeInBytes(const DataLayout &DL) const {
1515 if (isMachineConstantPoolEntry())
1516 return Val.MachineCPVal->getSizeInBytes(DL);
1517 return DL.getTypeAllocSize(Ty: Val.ConstVal->getType());
1518}
1519
1520bool MachineConstantPoolEntry::needsRelocation() const {
1521 if (isMachineConstantPoolEntry())
1522 return true;
1523 return Val.ConstVal->needsDynamicRelocation();
1524}
1525
1526SectionKind
1527MachineConstantPoolEntry::getSectionKind(const DataLayout *DL) const {
1528 if (needsRelocation())
1529 return SectionKind::getReadOnlyWithRel();
1530 switch (getSizeInBytes(DL: *DL)) {
1531 case 4:
1532 return SectionKind::getMergeableConst4();
1533 case 8:
1534 return SectionKind::getMergeableConst8();
1535 case 16:
1536 return SectionKind::getMergeableConst16();
1537 case 32:
1538 return SectionKind::getMergeableConst32();
1539 default:
1540 return SectionKind::getReadOnly();
1541 }
1542}
1543
1544MachineConstantPool::~MachineConstantPool() {
1545 // A constant may be a member of both Constants and MachineCPVsSharingEntries,
1546 // so keep track of which we've deleted to avoid double deletions.
1547 DenseSet<MachineConstantPoolValue*> Deleted;
1548 for (const MachineConstantPoolEntry &C : Constants)
1549 if (C.isMachineConstantPoolEntry()) {
1550 Deleted.insert(V: C.Val.MachineCPVal);
1551 delete C.Val.MachineCPVal;
1552 }
1553 for (MachineConstantPoolValue *CPV : MachineCPVsSharingEntries) {
1554 if (Deleted.count(V: CPV) == 0)
1555 delete CPV;
1556 }
1557}
1558
1559/// Test whether the given two constants can be allocated the same constant pool
1560/// entry referenced by \param A.
1561static bool CanShareConstantPoolEntry(const Constant *A, const Constant *B,
1562 const DataLayout &DL) {
1563 // Handle the trivial case quickly.
1564 if (A == B) return true;
1565
1566 // If they have the same type but weren't the same constant, quickly
1567 // reject them.
1568 if (A->getType() == B->getType()) return false;
1569
1570 // We can't handle structs or arrays.
1571 if (isa<StructType>(Val: A->getType()) || isa<ArrayType>(Val: A->getType()) ||
1572 isa<StructType>(Val: B->getType()) || isa<ArrayType>(Val: B->getType()))
1573 return false;
1574
1575 // For now, only support constants with the same size.
1576 uint64_t StoreSize = DL.getTypeStoreSize(Ty: A->getType());
1577 if (StoreSize != DL.getTypeStoreSize(Ty: B->getType()) || StoreSize > 128)
1578 return false;
1579
1580 bool ContainsUndefOrPoisonA = A->containsUndefOrPoisonElement();
1581
1582 Type *IntTy = IntegerType::get(C&: A->getContext(), NumBits: StoreSize*8);
1583
1584 // Try constant folding a bitcast of both instructions to an integer. If we
1585 // get two identical ConstantInt's, then we are good to share them. We use
1586 // the constant folding APIs to do this so that we get the benefit of
1587 // DataLayout.
1588 if (isa<PointerType>(Val: A->getType()))
1589 A = ConstantFoldCastOperand(Opcode: Instruction::PtrToInt,
1590 C: const_cast<Constant *>(A), DestTy: IntTy, DL);
1591 else if (A->getType() != IntTy)
1592 A = ConstantFoldCastOperand(Opcode: Instruction::BitCast, C: const_cast<Constant *>(A),
1593 DestTy: IntTy, DL);
1594 if (isa<PointerType>(Val: B->getType()))
1595 B = ConstantFoldCastOperand(Opcode: Instruction::PtrToInt,
1596 C: const_cast<Constant *>(B), DestTy: IntTy, DL);
1597 else if (B->getType() != IntTy)
1598 B = ConstantFoldCastOperand(Opcode: Instruction::BitCast, C: const_cast<Constant *>(B),
1599 DestTy: IntTy, DL);
1600
1601 if (A != B)
1602 return false;
1603
1604 // Constants only safely match if A doesn't contain undef/poison.
1605 // As we'll be reusing A, it doesn't matter if B contain undef/poison.
1606 // TODO: Handle cases where A and B have the same undef/poison elements.
1607 // TODO: Merge A and B with mismatching undef/poison elements.
1608 return !ContainsUndefOrPoisonA;
1609}
1610
1611/// Create a new entry in the constant pool or return an existing one.
1612/// User must specify the log2 of the minimum required alignment for the object.
1613unsigned MachineConstantPool::getConstantPoolIndex(const Constant *C,
1614 Align Alignment) {
1615 if (Alignment > PoolAlignment) PoolAlignment = Alignment;
1616
1617 // Check to see if we already have this constant.
1618 //
1619 // FIXME, this could be made much more efficient for large constant pools.
1620 for (unsigned i = 0, e = Constants.size(); i != e; ++i)
1621 if (!Constants[i].isMachineConstantPoolEntry() &&
1622 CanShareConstantPoolEntry(A: Constants[i].Val.ConstVal, B: C, DL)) {
1623 if (Constants[i].getAlign() < Alignment)
1624 Constants[i].Alignment = Alignment;
1625 return i;
1626 }
1627
1628 Constants.push_back(x: MachineConstantPoolEntry(C, Alignment));
1629 return Constants.size()-1;
1630}
1631
1632unsigned MachineConstantPool::getConstantPoolIndex(MachineConstantPoolValue *V,
1633 Align Alignment) {
1634 if (Alignment > PoolAlignment) PoolAlignment = Alignment;
1635
1636 // Check to see if we already have this constant.
1637 //
1638 // FIXME, this could be made much more efficient for large constant pools.
1639 int Idx = V->getExistingMachineCPValue(CP: this, Alignment);
1640 if (Idx != -1) {
1641 MachineCPVsSharingEntries.insert(V);
1642 return (unsigned)Idx;
1643 }
1644
1645 Constants.push_back(x: MachineConstantPoolEntry(V, Alignment));
1646 return Constants.size()-1;
1647}
1648
1649void MachineConstantPool::print(raw_ostream &OS) const {
1650 if (Constants.empty()) return;
1651
1652 OS << "Constant Pool:\n";
1653 for (unsigned i = 0, e = Constants.size(); i != e; ++i) {
1654 OS << " cp#" << i << ": ";
1655 if (Constants[i].isMachineConstantPoolEntry())
1656 Constants[i].Val.MachineCPVal->print(O&: OS);
1657 else
1658 Constants[i].Val.ConstVal->printAsOperand(O&: OS, /*PrintType=*/false);
1659 OS << ", align=" << Constants[i].getAlign().value();
1660 OS << "\n";
1661 }
1662}
1663
1664//===----------------------------------------------------------------------===//
1665// Template specialization for MachineFunction implementation of
1666// ProfileSummaryInfo::getEntryCount().
1667//===----------------------------------------------------------------------===//
1668template <>
1669std::optional<uint64_t>
1670ProfileSummaryInfo::getEntryCount<llvm::MachineFunction>(
1671 const llvm::MachineFunction *F) const {
1672 return F->getFunction().getEntryCount();
1673}
1674
1675#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1676LLVM_DUMP_METHOD void MachineConstantPool::dump() const { print(dbgs()); }
1677#endif
1678