LLVM 24.0.0git
MachineOutliner.cpp
Go to the documentation of this file.
1//===---- MachineOutliner.cpp - Outline instructions -----------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8///
9/// \file
10/// Replaces repeated sequences of instructions with function calls.
11///
12/// This works by placing every instruction from every basic block in a
13/// suffix tree, and repeatedly querying that tree for repeated sequences of
14/// instructions. If a sequence of instructions appears often, then it ought
15/// to be beneficial to pull out into a function.
16///
17/// The MachineOutliner communicates with a given target using hooks defined in
18/// TargetInstrInfo.h. The target supplies the outliner with information on how
19/// a specific sequence of instructions should be outlined. This information
20/// is used to deduce the number of instructions necessary to
21///
22/// * Create an outlined function
23/// * Call that outlined function
24///
25/// Targets must implement
26/// * getOutliningCandidateInfo
27/// * buildOutlinedFrame
28/// * insertOutlinedCall
29/// * isFunctionSafeToOutlineFrom
30///
31/// in order to make use of the MachineOutliner.
32///
33/// This was originally presented at the 2016 LLVM Developers' Meeting in the
34/// talk "Reducing Code Size Using Outlining". For a high-level overview of
35/// how this pass works, the talk is available on YouTube at
36///
37/// https://www.youtube.com/watch?v=yorld-WSOeU
38///
39/// The slides for the talk are available at
40///
41/// http://www.llvm.org/devmtg/2016-11/Slides/Paquette-Outliner.pdf
42///
43/// The talk provides an overview of how the outliner finds candidates and
44/// ultimately outlines them. It describes how the main data structure for this
45/// pass, the suffix tree, is queried and purged for candidates. It also gives
46/// a simplified suffix tree construction algorithm for suffix trees based off
47/// of the algorithm actually used here, Ukkonen's algorithm.
48///
49/// For the original RFC for this pass, please see
50///
51/// http://lists.llvm.org/pipermail/llvm-dev/2016-August/104170.html
52///
53/// For more information on the suffix tree data structure, please see
54/// https://www.cs.helsinki.fi/u/ukkonen/SuffixT1withFigs.pdf
55///
56//===----------------------------------------------------------------------===//
58#include "llvm/ADT/DenseMap.h"
59#include "llvm/ADT/SmallSet.h"
60#include "llvm/ADT/Statistic.h"
61#include "llvm/ADT/Twine.h"
71#include "llvm/CodeGen/Passes.h"
75#include "llvm/IR/DIBuilder.h"
76#include "llvm/IR/IRBuilder.h"
77#include "llvm/IR/Mangler.h"
78#include "llvm/IR/Module.h"
81#include "llvm/Support/Debug.h"
86#include <tuple>
87#include <vector>
88
89#define DEBUG_TYPE "machine-outliner"
90
91using namespace llvm;
92using namespace ore;
93using namespace outliner;
94
95// Statistics for outlined functions.
96STATISTIC(NumOutlined, "Number of candidates outlined");
97STATISTIC(FunctionsCreated, "Number of functions created");
98
99// Statistics for instruction mapping.
100STATISTIC(NumLegalInUnsignedVec, "Outlinable instructions mapped");
101STATISTIC(NumIllegalInUnsignedVec,
102 "Unoutlinable instructions mapped + number of sentinel values");
103STATISTIC(NumSentinels, "Sentinel values inserted during mapping");
104STATISTIC(NumInvisible,
105 "Non-debug invisible instructions skipped during mapping");
106STATISTIC(UnsignedVecSize,
107 "Total number of instructions mapped and saved to mapping vector");
108STATISTIC(StableHashAttempts,
109 "Count of hashing attempts made for outlined functions");
110STATISTIC(StableHashDropped,
111 "Count of unsuccessful hashing attempts for outlined functions");
112STATISTIC(NumRemovedLOHs, "Total number of Linker Optimization Hints removed");
113STATISTIC(NumPGOBlockedOutlined,
114 "Number of times outlining was blocked by PGO");
115STATISTIC(NumPGOAllowedCold,
116 "Number of times outlining was allowed from cold functions");
117STATISTIC(NumPGOConservativeBlockedOutlined,
118 "Number of times outlining was blocked conservatively when profile "
119 "counts were missing");
120STATISTIC(NumPGOOptimisticOutlined,
121 "Number of times outlining was allowed optimistically when profile "
122 "counts were missing");
123
124// Set to true if the user wants the outliner to run on linkonceodr linkage
125// functions. This is false by default because the linker can dedupe linkonceodr
126// functions. Since the outliner is confined to a single module (modulo LTO),
127// this is off by default. It should, however, be the default behaviour in
128// LTO.
130 "enable-linkonceodr-outlining", cl::Hidden,
131 cl::desc("Enable the machine outliner on linkonceodr functions"),
132 cl::init(false));
133
134/// Number of times to re-run the outliner. This is not the total number of runs
135/// as the outliner will run at least one time. The default value is set to 0,
136/// meaning the outliner will run one time and rerun zero times after that.
138 "machine-outliner-reruns", cl::init(0), cl::Hidden,
139 cl::desc(
140 "Number of times to rerun the outliner after the initial outline"));
141
143 "outliner-benefit-threshold", cl::init(1), cl::Hidden,
144 cl::desc(
145 "The minimum size in bytes before an outlining candidate is accepted"));
146
148 "outliner-leaf-descendants", cl::init(true), cl::Hidden,
149 cl::desc("Consider all leaf descendants of internal nodes of the suffix "
150 "tree as candidates for outlining (if false, only leaf children "
151 "are considered)"));
152
153static cl::opt<bool>
154 DisableGlobalOutlining("disable-global-outlining", cl::Hidden,
155 cl::desc("Disable global outlining only by ignoring "
156 "the codegen data generation or use"),
157 cl::init(false));
158
160 "append-content-hash-outlined-name", cl::Hidden,
161 cl::desc("This appends the content hash to the globally outlined function "
162 "name. It's beneficial for enhancing the precision of the stable "
163 "hash and for ordering the outlined functions."),
164 cl::init(true));
165
166namespace {
167
168/// Maps \p MachineInstrs to unsigned integers and stores the mappings.
169struct InstructionMapper {
170 const MachineModuleInfo &MMI;
171
172 /// The next available integer to assign to a \p MachineInstr that
173 /// cannot be outlined.
174 ///
175 /// Set to -3 for compatability with \p DenseMapInfo<unsigned>.
176 unsigned IllegalInstrNumber = -3;
177
178 /// The next available integer to assign to a \p MachineInstr that can
179 /// be outlined.
180 unsigned LegalInstrNumber = 0;
181
182 /// Correspondence from \p MachineInstrs to unsigned integers.
184 InstructionIntegerMap;
185
186 /// Correspondence between \p MachineBasicBlocks and target-defined flags.
188
189 /// The vector of unsigned integers that the module is mapped to.
190 SmallVector<unsigned> UnsignedVec;
191
192 /// Stores the location of the instruction associated with the integer
193 /// at index i in \p UnsignedVec for each index i.
195
196 // Set if we added an illegal number in the previous step.
197 // Since each illegal number is unique, we only need one of them between
198 // each range of legal numbers. This lets us make sure we don't add more
199 // than one illegal number per range.
200 bool AddedIllegalLastTime = false;
201
202 /// Maps \p *It to a legal integer.
203 ///
204 /// Updates \p CanOutlineWithPrevInstr, \p HaveLegalRange, \p InstrListForMBB,
205 /// \p UnsignedVecForMBB, \p InstructionIntegerMap, and \p LegalInstrNumber.
206 ///
207 /// \returns The integer that \p *It was mapped to.
208 unsigned mapToLegalUnsigned(
209 MachineBasicBlock::iterator &It, bool &CanOutlineWithPrevInstr,
210 bool &HaveLegalRange, unsigned &NumLegalInBlock,
211 SmallVector<unsigned> &UnsignedVecForMBB,
213 // We added something legal, so we should unset the AddedLegalLastTime
214 // flag.
215 AddedIllegalLastTime = false;
216
217 // If we have at least two adjacent legal instructions (which may have
218 // invisible instructions in between), remember that.
219 if (CanOutlineWithPrevInstr)
220 HaveLegalRange = true;
221 CanOutlineWithPrevInstr = true;
222
223 // Keep track of the number of legal instructions we insert.
224 NumLegalInBlock++;
225
226 // Get the integer for this instruction or give it the current
227 // LegalInstrNumber.
228 InstrListForMBB.push_back(It);
229 MachineInstr &MI = *It;
230 bool WasInserted;
232 ResultIt;
233 std::tie(ResultIt, WasInserted) =
234 InstructionIntegerMap.insert(std::make_pair(&MI, LegalInstrNumber));
235 unsigned MINumber = ResultIt->second;
236
237 // There was an insertion.
238 if (WasInserted)
239 LegalInstrNumber++;
240
241 UnsignedVecForMBB.push_back(MINumber);
242
243 // Make sure we don't overflow or use any integers reserved by the DenseMap.
244 if (LegalInstrNumber >= IllegalInstrNumber)
245 report_fatal_error("Instruction mapping overflow!");
246
247 // Statistics.
248 ++NumLegalInUnsignedVec;
249 return MINumber;
250 }
251
252 /// Maps \p *It to an illegal integer.
253 ///
254 /// Updates \p InstrListForMBB, \p UnsignedVecForMBB, and \p
255 /// IllegalInstrNumber.
256 ///
257 /// \returns The integer that \p *It was mapped to.
258 unsigned mapToIllegalUnsigned(
259 MachineBasicBlock::iterator &It, bool &CanOutlineWithPrevInstr,
260 SmallVector<unsigned> &UnsignedVecForMBB,
262 // Can't outline an illegal instruction. Set the flag.
263 CanOutlineWithPrevInstr = false;
264
265 // Only add one illegal number per range of legal numbers.
266 if (AddedIllegalLastTime)
267 return IllegalInstrNumber;
268
269 // Remember that we added an illegal number last time.
270 AddedIllegalLastTime = true;
271 unsigned MINumber = IllegalInstrNumber;
272
273 InstrListForMBB.push_back(It);
274 UnsignedVecForMBB.push_back(IllegalInstrNumber);
275 IllegalInstrNumber--;
276 // Statistics.
277 ++NumIllegalInUnsignedVec;
278
279 assert(LegalInstrNumber < IllegalInstrNumber &&
280 "Instruction mapping overflow!");
281
282 return MINumber;
283 }
284
285 /// Transforms a \p MachineBasicBlock into a \p vector of \p unsigneds
286 /// and appends it to \p UnsignedVec and \p InstrList.
287 ///
288 /// Two instructions are assigned the same integer if they are identical.
289 /// If an instruction is deemed unsafe to outline, then it will be assigned an
290 /// unique integer. The resulting mapping is placed into a suffix tree and
291 /// queried for candidates.
292 ///
293 /// \param MBB The \p MachineBasicBlock to be translated into integers.
294 /// \param TII \p TargetInstrInfo for the function.
295 void convertToUnsignedVec(MachineBasicBlock &MBB,
296 const TargetInstrInfo &TII) {
297 LLVM_DEBUG(dbgs() << "*** Converting MBB '" << MBB.getName()
298 << "' to unsigned vector ***\n");
299 unsigned Flags = 0;
300
301 // Don't even map in this case.
302 if (!TII.isMBBSafeToOutlineFrom(MBB, Flags))
303 return;
304
305 auto OutlinableRanges = TII.getOutlinableRanges(MBB, Flags);
306 LLVM_DEBUG(dbgs() << MBB.getName() << ": " << OutlinableRanges.size()
307 << " outlinable range(s)\n");
308 if (OutlinableRanges.empty())
309 return;
310
311 // Store info for the MBB for later outlining.
312 MBBFlagsMap[&MBB] = Flags;
313
315
316 // The number of instructions in this block that will be considered for
317 // outlining.
318 unsigned NumLegalInBlock = 0;
319
320 // True if we have at least two legal instructions which aren't separated
321 // by an illegal instruction.
322 bool HaveLegalRange = false;
323
324 // True if we can perform outlining given the last mapped (non-invisible)
325 // instruction. This lets us know if we have a legal range.
326 bool CanOutlineWithPrevInstr = false;
327
328 // FIXME: Should this all just be handled in the target, rather than using
329 // repeated calls to getOutliningType?
330 SmallVector<unsigned> UnsignedVecForMBB;
332
333 LLVM_DEBUG(dbgs() << "*** Mapping outlinable ranges ***\n");
334 for (auto &OutlinableRange : OutlinableRanges) {
335 auto OutlinableRangeBegin = OutlinableRange.first;
336 auto OutlinableRangeEnd = OutlinableRange.second;
337#ifndef NDEBUG
339 dbgs() << "Mapping "
340 << std::distance(OutlinableRangeBegin, OutlinableRangeEnd)
341 << " instruction range\n");
342 // Everything outside of an outlinable range is illegal.
343 unsigned NumSkippedInRange = 0;
344#endif
345 for (; It != OutlinableRangeBegin; ++It) {
346 if (It->isDebugInstr())
347 continue;
348#ifndef NDEBUG
349 ++NumSkippedInRange;
350#endif
351 mapToIllegalUnsigned(It, CanOutlineWithPrevInstr, UnsignedVecForMBB,
352 InstrListForMBB);
353 }
354#ifndef NDEBUG
355 LLVM_DEBUG(dbgs() << "Skipped " << NumSkippedInRange
356 << " instructions outside outlinable range\n");
357#endif
358 assert(It != MBB.end() && "Should still have instructions?");
359 // `It` is now positioned at the beginning of a range of instructions
360 // which may be outlinable. Check if each instruction is known to be safe.
361 for (; It != OutlinableRangeEnd; ++It) {
362 if (It->isDebugInstr())
363 continue;
364 // Keep track of where this instruction is in the module.
365 switch (TII.getOutliningType(MMI, It, Flags)) {
366 case InstrType::Illegal:
367 mapToIllegalUnsigned(It, CanOutlineWithPrevInstr, UnsignedVecForMBB,
368 InstrListForMBB);
369 break;
370
371 case InstrType::Legal:
372 mapToLegalUnsigned(It, CanOutlineWithPrevInstr, HaveLegalRange,
373 NumLegalInBlock, UnsignedVecForMBB,
374 InstrListForMBB);
375 break;
376
377 case InstrType::LegalTerminator:
378 mapToLegalUnsigned(It, CanOutlineWithPrevInstr, HaveLegalRange,
379 NumLegalInBlock, UnsignedVecForMBB,
380 InstrListForMBB);
381 // The instruction also acts as a terminator, so we have to record
382 // that in the string.
383 mapToIllegalUnsigned(It, CanOutlineWithPrevInstr, UnsignedVecForMBB,
384 InstrListForMBB);
385 break;
386
387 case InstrType::Invisible:
388 // Normally this is set by mapTo(Blah)Unsigned, but we just want to
389 // skip this instruction. So, unset the flag here.
390 ++NumInvisible;
391 AddedIllegalLastTime = false;
392 break;
393 }
394 }
395 }
396
397 LLVM_DEBUG(dbgs() << "HaveLegalRange = " << HaveLegalRange << "\n");
398
399 // Are there enough legal instructions in the block for outlining to be
400 // possible?
401 if (HaveLegalRange) {
402 // After we're done every insertion, uniquely terminate this part of the
403 // "string". This makes sure we won't match across basic block or function
404 // boundaries since the "end" is encoded uniquely and thus appears in no
405 // repeated substring.
406 mapToIllegalUnsigned(It, CanOutlineWithPrevInstr, UnsignedVecForMBB,
407 InstrListForMBB);
408 ++NumSentinels;
409 append_range(InstrList, InstrListForMBB);
410 append_range(UnsignedVec, UnsignedVecForMBB);
411 }
412 }
413
414 InstructionMapper(const MachineModuleInfo &MMI_) : MMI(MMI_) {}
415};
416
417/// An interprocedural pass which finds repeated sequences of
418/// instructions and replaces them with calls to functions.
419///
420/// Each instruction is mapped to an unsigned integer and placed in a string.
421/// The resulting mapping is then placed in a \p SuffixTree. The \p SuffixTree
422/// is then repeatedly queried for repeated sequences of instructions. Each
423/// non-overlapping repeated sequence is then placed in its own
424/// \p MachineFunction and each instance is then replaced with a call to that
425/// function.
426struct MachineOutliner : public ModulePass {
427
428 static char ID;
429
430 MachineModuleInfo *MMI = nullptr;
431 const TargetMachine *TM = nullptr;
432
433 /// Set to true if the outliner should consider functions with
434 /// linkonceodr linkage.
435 bool OutlineFromLinkOnceODRs = false;
436
437 /// The current repeat number of machine outlining.
438 unsigned OutlineRepeatedNum = 0;
439
440 /// The mode for whether to run the outliner
441 /// Set to always-outline by default for compatibility with llc's -run-pass
442 /// option.
443 RunOutliner RunOutlinerMode = RunOutliner::AlwaysOutline;
444
445 /// This is a compact representation of hash sequences of outlined functions.
446 /// It is used when OutlinerMode = CGDataMode::Write.
447 /// The resulting hash tree will be emitted into __llvm_outlined section
448 /// which will be dead-stripped not going to the final binary.
449 /// A post-process using llvm-cgdata, lld, or ThinLTO can merge them into
450 /// a global oulined hash tree for the subsequent codegen.
451 std::unique_ptr<OutlinedHashTree> LocalHashTree;
452
453 /// The mode of the outliner.
454 /// When is's CGDataMode::None, candidates are populated with the suffix tree
455 /// within a module and outlined.
456 /// When it's CGDataMode::Write, in addition to CGDataMode::None, the hash
457 /// sequences of outlined functions are published into LocalHashTree.
458 /// When it's CGDataMode::Read, candidates are populated with the global
459 /// outlined hash tree that has been built by the previous codegen.
460 CGDataMode OutlinerMode = CGDataMode::None;
461
462 StringRef getPassName() const override { return "Machine Outliner"; }
463
464 void getAnalysisUsage(AnalysisUsage &AU) const override {
465 AU.addRequired<MachineModuleInfoWrapperPass>();
466 AU.addRequired<TargetPassConfig>();
467 AU.addPreserved<MachineModuleInfoWrapperPass>();
468 AU.addUsedIfAvailable<ImmutableModuleSummaryIndexWrapperPass>();
469 if (RunOutlinerMode == RunOutliner::OptimisticPGO ||
470 RunOutlinerMode == RunOutliner::ConservativePGO) {
471 AU.addRequired<BlockFrequencyInfoWrapperPass>();
472 AU.addRequired<ProfileSummaryInfoWrapperPass>();
473 }
474 AU.setPreservesAll();
475 ModulePass::getAnalysisUsage(AU);
476 }
477
478 MachineOutliner() : ModulePass(ID) {}
479
480 /// Remark output explaining that not outlining a set of candidates would be
481 /// better than outlining that set.
482 void emitNotOutliningCheaperRemark(
483 unsigned StringLen, std::vector<Candidate> &CandidatesForRepeatedSeq,
484 OutlinedFunction &OF);
485
486 /// Remark output explaining that a function was outlined.
487 void emitOutlinedFunctionRemark(OutlinedFunction &OF);
488
489 /// Find all repeated substrings that satisfy the outlining cost model by
490 /// constructing a suffix tree.
491 ///
492 /// If a substring appears at least twice, then it must be represented by
493 /// an internal node which appears in at least two suffixes. Each suffix
494 /// is represented by a leaf node. To do this, we visit each internal node
495 /// in the tree, using the leaf children of each internal node. If an
496 /// internal node represents a beneficial substring, then we use each of
497 /// its leaf children to find the locations of its substring.
498 ///
499 /// \param Mapper Contains outlining mapping information.
500 /// \param[out] FunctionList Filled with a list of \p OutlinedFunctions
501 /// each type of candidate.
502 void
503 findCandidates(InstructionMapper &Mapper,
504 std::vector<std::unique_ptr<OutlinedFunction>> &FunctionList);
505
506 /// Find all repeated substrings that match in the global outlined hash
507 /// tree built from the previous codegen.
508 ///
509 /// \param Mapper Contains outlining mapping information.
510 /// \param[out] FunctionList Filled with a list of \p OutlinedFunctions
511 /// each type of candidate.
512 void findGlobalCandidates(
513 InstructionMapper &Mapper,
514 std::vector<std::unique_ptr<OutlinedFunction>> &FunctionList);
515
516 /// Replace the sequences of instructions represented by \p OutlinedFunctions
517 /// with calls to functions.
518 ///
519 /// \param M The module we are outlining from.
520 /// \param FunctionList A list of functions to be inserted into the module.
521 /// \param Mapper Contains the instruction mappings for the module.
522 /// \param[out] OutlinedFunctionNum The outlined function number.
523 bool outline(Module &M,
524 std::vector<std::unique_ptr<OutlinedFunction>> &FunctionList,
525 InstructionMapper &Mapper, unsigned &OutlinedFunctionNum);
526
527 /// Creates a function for \p OF and inserts it into the module.
528 MachineFunction *createOutlinedFunction(Module &M, OutlinedFunction &OF,
529 InstructionMapper &Mapper,
530 unsigned Name);
531
532 /// Compute and publish the stable hash sequence of instructions in the
533 /// outlined function, \p MF. The parameter \p CandSize represents the number
534 /// of candidates that have identical instruction sequences to \p MF.
535 void computeAndPublishHashSequence(MachineFunction &MF, unsigned CandSize);
536
537 /// Initialize the outliner mode.
538 void initializeOutlinerMode(const Module &M);
539
540 /// Emit the outlined hash tree into __llvm_outline section.
541 void emitOutlinedHashTree(Module &M);
542
543 /// Calls 'doOutline()' 1 + OutlinerReruns times.
544 bool runOnModule(Module &M) override;
545
546 /// Construct a suffix tree on the instructions in \p M and outline repeated
547 /// strings from that tree.
548 bool doOutline(Module &M, unsigned &OutlinedFunctionNum);
549
550 /// Return a DISubprogram for OF if one exists, and null otherwise. Helper
551 /// function for remark emission.
552 DISubprogram *getSubprogramOrNull(const OutlinedFunction &OF) {
553 for (const Candidate &C : OF.Candidates)
554 if (MachineFunction *MF = C.getMF())
555 if (DISubprogram *SP = MF->getFunction().getSubprogram())
556 return SP;
557 return nullptr;
558 }
559
560 /// Populate and \p InstructionMapper with instruction-to-integer mappings.
561 /// These are used to construct a suffix tree.
562 void populateMapper(InstructionMapper &Mapper, Module &M);
563
564 /// Initialize information necessary to output a size remark.
565 /// FIXME: This should be handled by the pass manager, not the outliner.
566 /// FIXME: This is nearly identical to the initSizeRemarkInfo in the legacy
567 /// pass manager.
568 void initSizeRemarkInfo(const Module &M,
569 StringMap<unsigned> &FunctionToInstrCount);
570
571 /// Emit the remark.
572 // FIXME: This should be handled by the pass manager, not the outliner.
573 void
574 emitInstrCountChangedRemark(const Module &M,
575 const StringMap<unsigned> &FunctionToInstrCount);
576};
577} // Anonymous namespace.
578
579char MachineOutliner::ID = 0;
580
582 MachineOutliner *OL = new MachineOutliner();
583 OL->RunOutlinerMode = RunOutlinerMode;
584 return OL;
585}
586
587INITIALIZE_PASS(MachineOutliner, DEBUG_TYPE, "Machine Function Outliner", false,
588 false)
589
590void MachineOutliner::emitNotOutliningCheaperRemark(
591 unsigned StringLen, std::vector<Candidate> &CandidatesForRepeatedSeq,
592 OutlinedFunction &OF) {
593 // FIXME: Right now, we arbitrarily choose some Candidate from the
594 // OutlinedFunction. This isn't necessarily fixed, nor does it have to be.
595 // We should probably sort these by function name or something to make sure
596 // the remarks are stable.
597 Candidate &C = CandidatesForRepeatedSeq.front();
598 MachineOptimizationRemarkEmitter MORE(*(C.getMF()), nullptr);
599 MORE.emit([&]() {
600 MachineOptimizationRemarkMissed R(DEBUG_TYPE, "NotOutliningCheaper",
601 C.front().getDebugLoc(), C.getMBB());
602 R << "Did not outline " << NV("Length", StringLen) << " instructions"
603 << " from " << NV("NumOccurrences", CandidatesForRepeatedSeq.size())
604 << " locations."
605 << " Bytes from outlining all occurrences ("
606 << NV("OutliningCost", OF.getOutliningCost()) << ")"
607 << " >= Unoutlined instruction bytes ("
608 << NV("NotOutliningCost", OF.getNotOutlinedCost()) << ")"
609 << " (Also found at: ";
610
611 // Tell the user the other places the candidate was found.
612 for (unsigned i = 1, e = CandidatesForRepeatedSeq.size(); i < e; i++) {
613 R << NV((Twine("OtherStartLoc") + Twine(i)).str(),
614 CandidatesForRepeatedSeq[i].front().getDebugLoc());
615 if (i != e - 1)
616 R << ", ";
617 }
618
619 R << ")";
620 return R;
621 });
622}
623
624void MachineOutliner::emitOutlinedFunctionRemark(OutlinedFunction &OF) {
625 MachineBasicBlock *MBB = &*OF.MF->begin();
626 MachineOptimizationRemarkEmitter MORE(*OF.MF, nullptr);
627 MachineOptimizationRemark R(DEBUG_TYPE, "OutlinedFunction",
629 R << "Saved " << NV("OutliningBenefit", OF.getBenefit()) << " bytes by "
630 << "outlining " << NV("Length", OF.getNumInstrs()) << " instructions "
631 << "from " << NV("NumOccurrences", OF.getOccurrenceCount())
632 << " locations. "
633 << "(Found at: ";
634
635 // Tell the user the other places the candidate was found.
636 for (size_t i = 0, e = OF.Candidates.size(); i < e; i++) {
637
638 R << NV((Twine("StartLoc") + Twine(i)).str(),
639 OF.Candidates[i].front().getDebugLoc());
640 if (i != e - 1)
641 R << ", ";
642 }
643
644 R << ")";
645
646 MORE.emit(R);
647}
648
650 unsigned StartIdx;
651 unsigned EndIdx;
652 unsigned Count;
653 MatchedEntry(unsigned StartIdx, unsigned EndIdx, unsigned Count)
655 MatchedEntry() = delete;
656};
657
658// Find all matches in the global outlined hash tree.
659// It's quadratic complexity in theory, but it's nearly linear in practice
660// since the length of outlined sequences are small within a block.
661static SmallVector<MatchedEntry> getMatchedEntries(InstructionMapper &Mapper) {
662 auto &InstrList = Mapper.InstrList;
663 auto &UnsignedVec = Mapper.UnsignedVec;
664
665 SmallVector<MatchedEntry> MatchedEntries;
666 auto Size = UnsignedVec.size();
667
668 // Get the global outlined hash tree built from the previous run.
670 const auto *RootNode = cgdata::getOutlinedHashTree()->getRoot();
671
672 auto getValidInstr = [&](unsigned Index) -> const MachineInstr * {
673 if (UnsignedVec[Index] >= Mapper.LegalInstrNumber)
674 return nullptr;
675 return &(*InstrList[Index]);
676 };
677
678 auto getStableHashAndFollow =
679 [](const MachineInstr &MI, const HashNode *CurrNode) -> const HashNode * {
680 stable_hash StableHash = stableHashValue(MI);
681 if (!StableHash)
682 return nullptr;
683 auto It = CurrNode->Successors.find(StableHash);
684 return (It == CurrNode->Successors.end()) ? nullptr : It->second.get();
685 };
686
687 for (unsigned I = 0; I < Size; ++I) {
688 const MachineInstr *MI = getValidInstr(I);
689 if (!MI || MI->isDebugInstr())
690 continue;
691 const HashNode *CurrNode = getStableHashAndFollow(*MI, RootNode);
692 if (!CurrNode)
693 continue;
694
695 for (unsigned J = I + 1; J < Size; ++J) {
696 const MachineInstr *MJ = getValidInstr(J);
697 if (!MJ)
698 break;
699 // Skip debug instructions as we did for the outlined function.
700 if (MJ->isDebugInstr())
701 continue;
702 CurrNode = getStableHashAndFollow(*MJ, CurrNode);
703 if (!CurrNode)
704 break;
705 // Even with a match ending with a terminal, we continue finding
706 // matches to populate all candidates.
707 if (auto Count = CurrNode->Terminals)
708 MatchedEntries.emplace_back(I, J, *Count);
709 }
710 }
711
712 return MatchedEntries;
713}
714
715void MachineOutliner::findGlobalCandidates(
716 InstructionMapper &Mapper,
717 std::vector<std::unique_ptr<OutlinedFunction>> &FunctionList) {
718 FunctionList.clear();
719 auto &InstrList = Mapper.InstrList;
720 auto &MBBFlagsMap = Mapper.MBBFlagsMap;
721
722 std::vector<Candidate> CandidatesForRepeatedSeq;
723 for (auto &ME : getMatchedEntries(Mapper)) {
724 CandidatesForRepeatedSeq.clear();
725 MachineBasicBlock::iterator StartIt = InstrList[ME.StartIdx];
726 MachineBasicBlock::iterator EndIt = InstrList[ME.EndIdx];
727 auto Length = ME.EndIdx - ME.StartIdx + 1;
728 MachineBasicBlock *MBB = StartIt->getParent();
729 CandidatesForRepeatedSeq.emplace_back(ME.StartIdx, Length, StartIt, EndIt,
730 MBB, FunctionList.size(),
731 MBBFlagsMap[MBB]);
732 const TargetInstrInfo *TII =
734 unsigned MinRepeats = 1;
735 std::optional<std::unique_ptr<OutlinedFunction>> OF =
736 TII->getOutliningCandidateInfo(*MMI, CandidatesForRepeatedSeq,
737 MinRepeats);
738 if (!OF.has_value() || OF.value()->Candidates.empty())
739 continue;
740 // We create a global candidate for each match.
741 assert(OF.value()->Candidates.size() == MinRepeats);
742 FunctionList.emplace_back(std::make_unique<GlobalOutlinedFunction>(
743 std::move(OF.value()), ME.Count));
744 }
745}
746
747void MachineOutliner::findCandidates(
748 InstructionMapper &Mapper,
749 std::vector<std::unique_ptr<OutlinedFunction>> &FunctionList) {
750 FunctionList.clear();
751 SuffixTree ST(Mapper.UnsignedVec, OutlinerLeafDescendants);
752
753 // First, find all of the repeated substrings in the tree of minimum length
754 // 2.
755 std::vector<Candidate> CandidatesForRepeatedSeq;
756 LLVM_DEBUG(dbgs() << "*** Discarding overlapping candidates *** \n");
758 dbgs() << "Searching for overlaps in all repeated sequences...\n");
759 for (SuffixTree::RepeatedSubstring &RS : ST) {
760 CandidatesForRepeatedSeq.clear();
761 unsigned StringLen = RS.Length;
762 LLVM_DEBUG(dbgs() << " Sequence length: " << StringLen << "\n");
763 // Debug code to keep track of how many candidates we removed.
764#ifndef NDEBUG
765 unsigned NumDiscarded = 0;
766 unsigned NumKept = 0;
767#endif
768 // Sort the start indices so that we can efficiently check if candidates
769 // overlap with the ones we've already found for this sequence.
770 llvm::sort(RS.StartIndices);
771 for (const unsigned &StartIdx : RS.StartIndices) {
772 // Trick: Discard some candidates that would be incompatible with the
773 // ones we've already found for this sequence. This will save us some
774 // work in candidate selection.
775 //
776 // If two candidates overlap, then we can't outline them both. This
777 // happens when we have candidates that look like, say
778 //
779 // AA (where each "A" is an instruction).
780 //
781 // We might have some portion of the module that looks like this:
782 // AAAAAA (6 A's)
783 //
784 // In this case, there are 5 different copies of "AA" in this range, but
785 // at most 3 can be outlined. If only outlining 3 of these is going to
786 // be unbeneficial, then we ought to not bother.
787 //
788 // Note that two things DON'T overlap when they look like this:
789 // start1...end1 .... start2...end2
790 // That is, one must either
791 // * End before the other starts
792 // * Start after the other ends
793 unsigned EndIdx = StartIdx + StringLen - 1;
794 if (!CandidatesForRepeatedSeq.empty() &&
795 StartIdx <= CandidatesForRepeatedSeq.back().getEndIdx()) {
796#ifndef NDEBUG
797 ++NumDiscarded;
798 LLVM_DEBUG(dbgs() << " .. DISCARD candidate @ [" << StartIdx << ", "
799 << EndIdx << "]; overlaps with candidate @ ["
800 << CandidatesForRepeatedSeq.back().getStartIdx()
801 << ", " << CandidatesForRepeatedSeq.back().getEndIdx()
802 << "]\n");
803#endif
804 continue;
805 }
806 // It doesn't overlap with anything, so we can outline it.
807 // Each sequence is over [StartIt, EndIt].
808 // Save the candidate and its location.
809#ifndef NDEBUG
810 ++NumKept;
811#endif
812 MachineBasicBlock::iterator StartIt = Mapper.InstrList[StartIdx];
813 MachineBasicBlock::iterator EndIt = Mapper.InstrList[EndIdx];
814 MachineBasicBlock *MBB = StartIt->getParent();
815 CandidatesForRepeatedSeq.emplace_back(StartIdx, StringLen, StartIt, EndIt,
816 MBB, FunctionList.size(),
817 Mapper.MBBFlagsMap[MBB]);
818 }
819#ifndef NDEBUG
820 LLVM_DEBUG(dbgs() << " Candidates discarded: " << NumDiscarded
821 << "\n");
822 LLVM_DEBUG(dbgs() << " Candidates kept: " << NumKept << "\n\n");
823#endif
824 unsigned MinRepeats = 2;
825
826 // We've found something we might want to outline.
827 // Create an OutlinedFunction to store it and check if it'd be beneficial
828 // to outline.
829 if (CandidatesForRepeatedSeq.size() < MinRepeats)
830 continue;
831
832 // Arbitrarily choose a TII from the first candidate.
833 // FIXME: Should getOutliningCandidateInfo move to TargetMachine?
834 const TargetInstrInfo *TII =
835 CandidatesForRepeatedSeq[0].getMF()->getSubtarget().getInstrInfo();
836
837 std::optional<std::unique_ptr<OutlinedFunction>> OF =
838 TII->getOutliningCandidateInfo(*MMI, CandidatesForRepeatedSeq,
839 MinRepeats);
840
841 // If we deleted too many candidates, then there's nothing worth outlining.
842 // FIXME: This should take target-specified instruction sizes into account.
843 if (!OF.has_value() || OF.value()->Candidates.size() < MinRepeats)
844 continue;
845
846 // Is it better to outline this candidate than not?
847 if (OF.value()->getBenefit() < OutlinerBenefitThreshold) {
848 emitNotOutliningCheaperRemark(StringLen, CandidatesForRepeatedSeq,
849 *OF.value());
850 continue;
851 }
852
853 FunctionList.emplace_back(std::move(OF.value()));
854 }
855}
856
857void MachineOutliner::computeAndPublishHashSequence(MachineFunction &MF,
858 unsigned CandSize) {
859 // Compute the hash sequence for the outlined function.
860 SmallVector<stable_hash> OutlinedHashSequence;
861 for (auto &MBB : MF) {
862 for (auto &NewMI : MBB) {
863 stable_hash Hash = stableHashValue(NewMI);
864 if (!Hash) {
865 OutlinedHashSequence.clear();
866 break;
867 }
868 OutlinedHashSequence.push_back(Hash);
869 }
870 }
871
872 // Append a unique name based on the non-empty hash sequence.
873 if (AppendContentHashToOutlinedName && !OutlinedHashSequence.empty()) {
874 auto CombinedHash = stable_hash_combine(OutlinedHashSequence);
875 auto NewName =
876 MF.getName().str() + ".content." + std::to_string(CombinedHash);
877 MF.getFunction().setName(NewName);
878 }
879
880 // Publish the non-empty hash sequence to the local hash tree.
881 if (OutlinerMode == CGDataMode::Write) {
882 StableHashAttempts++;
883 if (!OutlinedHashSequence.empty())
884 LocalHashTree->insert({OutlinedHashSequence, CandSize});
885 else
886 StableHashDropped++;
887 }
888}
889
890MachineFunction *MachineOutliner::createOutlinedFunction(
891 Module &M, OutlinedFunction &OF, InstructionMapper &Mapper, unsigned Name) {
892
893 // Create the function name. This should be unique.
894 // FIXME: We should have a better naming scheme. This should be stable,
895 // regardless of changes to the outliner's cost model/traversal order.
896 std::string FunctionName = "OUTLINED_FUNCTION_";
897 if (OutlineRepeatedNum > 0)
898 FunctionName += std::to_string(OutlineRepeatedNum + 1) + "_";
899 FunctionName += std::to_string(Name);
900 LLVM_DEBUG(dbgs() << "NEW FUNCTION: " << FunctionName << "\n");
901
902 // Create the function using an IR-level function.
903 LLVMContext &C = M.getContext();
904 Function *F = Function::Create(FunctionType::get(Type::getVoidTy(C), false),
905 Function::ExternalLinkage, FunctionName, M);
906
907 // NOTE: If this is linkonceodr, then we can take advantage of linker deduping
908 // which gives us better results when we outline from linkonceodr functions.
909 F->setLinkage(GlobalValue::InternalLinkage);
910 F->setUnnamedAddr(GlobalValue::UnnamedAddr::Global);
911
912 // Set optsize/minsize, so we don't insert padding between outlined
913 // functions.
914 F->addFnAttr(Attribute::OptimizeForSize);
915 F->addFnAttr(Attribute::MinSize);
916
917 Candidate &FirstCand = OF.Candidates.front();
918 const TargetInstrInfo &TII =
919 *FirstCand.getMF()->getSubtarget().getInstrInfo();
920
921 TII.mergeOutliningCandidateAttributes(*F, OF.Candidates);
922
923 // Set uwtable, so we generate eh_frame.
924 UWTableKind UW = std::accumulate(
925 OF.Candidates.cbegin(), OF.Candidates.cend(), UWTableKind::None,
926 [](UWTableKind K, const outliner::Candidate &C) {
927 return std::max(K, C.getMF()->getFunction().getUWTableKind());
928 });
929 F->setUWTableKind(UW);
930
931 BasicBlock *EntryBB = BasicBlock::Create(C, "entry", F);
932 IRBuilder<> Builder(EntryBB);
933 Builder.CreateRetVoid();
934
935 MachineModuleInfo &MMI = getAnalysis<MachineModuleInfoWrapperPass>().getMMI();
937 MF.setIsOutlined(true);
938 MachineBasicBlock &MBB = *MF.CreateMachineBasicBlock();
939
940 // Insert the new function into the module.
941 MF.insert(MF.begin(), &MBB);
942
943 MachineFunction *OriginalMF = FirstCand.front().getMF();
944 const std::vector<MCCFIInstruction> &Instrs =
945 OriginalMF->getFrameInstructions();
946 for (auto &MI : FirstCand) {
947 if (MI.isDebugInstr())
948 continue;
949
950 // Don't keep debug information for outlined instructions.
951 auto DL = DebugLoc();
952 if (MI.isCFIInstruction()) {
953 unsigned CFIIndex = MI.getOperand(0).getCFIIndex();
954 MCCFIInstruction CFI = Instrs[CFIIndex];
955 BuildMI(MBB, MBB.end(), DL, TII.get(TargetOpcode::CFI_INSTRUCTION))
956 .addCFIIndex(MF.addFrameInst(CFI));
957 } else {
958 MachineInstr &NewMI = TII.duplicate(MBB, MBB.end(), MI);
959 NewMI.dropMemRefs(MF);
960 NewMI.setDebugLoc(DL);
961 // Also clear debug locations on any bundled instructions.
962 if (NewMI.isBundledWithSucc()) {
963 auto BundleEnd = getBundleEnd(NewMI.getIterator());
964 for (auto I = std::next(NewMI.getIterator()); I != BundleEnd; ++I)
965 I->setDebugLoc(DL);
966 }
967 }
968 }
969
970 if (OutlinerMode != CGDataMode::None)
971 computeAndPublishHashSequence(MF, OF.Candidates.size());
972
973 // Set normal properties for a late MachineFunction.
974 MF.getProperties().resetIsSSA();
975 MF.getProperties().setNoPHIs();
976 MF.getProperties().setNoVRegs();
977 MF.getProperties().setTracksLiveness();
979
980 // Compute live-in set for outlined fn
981 const MachineRegisterInfo &MRI = MF.getRegInfo();
982 const TargetRegisterInfo &TRI = *MRI.getTargetRegisterInfo();
983 LivePhysRegs LiveIns(TRI);
984 for (auto &Cand : OF.Candidates) {
985 // Figure out live-ins at the first instruction.
986 MachineBasicBlock &OutlineBB = *Cand.front().getParent();
987 LivePhysRegs CandLiveIns(TRI);
988 CandLiveIns.addLiveOuts(OutlineBB);
989 for (const MachineInstr &MI :
990 reverse(make_range(Cand.begin(), OutlineBB.end())))
991 CandLiveIns.stepBackward(MI);
992
993 // The live-in set for the outlined function is the union of the live-ins
994 // from all the outlining points.
995 for (MCPhysReg Reg : CandLiveIns)
996 LiveIns.addReg(Reg);
997 }
998 addLiveIns(MBB, LiveIns);
999
1000 TII.buildOutlinedFrame(MBB, MF, OF);
1001
1002 // If there's a DISubprogram associated with this outlined function, then
1003 // emit debug info for the outlined function.
1004 if (DISubprogram *SP = getSubprogramOrNull(OF)) {
1005 // We have a DISubprogram. Get its DICompileUnit.
1006 DICompileUnit *CU = SP->getUnit();
1007 DIBuilder DB(M, true, CU);
1008 DIFile *Unit = SP->getFile();
1009 Mangler Mg;
1010 // Get the mangled name of the function for the linkage name.
1011 std::string Dummy;
1012 raw_string_ostream MangledNameStream(Dummy);
1013 Mg.getNameWithPrefix(MangledNameStream, F, false);
1014
1015 DISubprogram *OutlinedSP = DB.createFunction(
1016 Unit /* Context */, F->getName(), StringRef(Dummy), Unit /* File */,
1017 0 /* Line 0 is reserved for compiler-generated code. */,
1018 DB.createSubroutineType(DB.getOrCreateTypeArray({})), /* void type */
1019 0, /* Line 0 is reserved for compiler-generated code. */
1020 DINode::DIFlags::FlagArtificial /* Compiler-generated code. */,
1021 /* Outlined code is optimized code by definition. */
1022 DISubprogram::SPFlagDefinition | DISubprogram::SPFlagOptimized);
1023
1024 // Attach subprogram to the function.
1025 F->setSubprogram(OutlinedSP);
1026 // We're done with the DIBuilder.
1027 DB.finalize();
1028 }
1029
1030 return &MF;
1031}
1032
1033bool MachineOutliner::outline(
1034 Module &M, std::vector<std::unique_ptr<OutlinedFunction>> &FunctionList,
1035 InstructionMapper &Mapper, unsigned &OutlinedFunctionNum) {
1036 LLVM_DEBUG(dbgs() << "*** Outlining ***\n");
1037 LLVM_DEBUG(dbgs() << "NUMBER OF POTENTIAL FUNCTIONS: " << FunctionList.size()
1038 << "\n");
1039 bool OutlinedSomething = false;
1040
1041 // Sort by priority where priority := getNotOutlinedCost / getOutliningCost.
1042 // The function with highest priority should be outlined first.
1043 stable_sort(FunctionList, [](const std::unique_ptr<OutlinedFunction> &LHS,
1044 const std::unique_ptr<OutlinedFunction> &RHS) {
1045 return LHS->getNotOutlinedCost() * RHS->getOutliningCost() >
1046 RHS->getNotOutlinedCost() * LHS->getOutliningCost();
1047 });
1048
1049 // Walk over each function, outlining them as we go along. Functions are
1050 // outlined greedily, based off the sort above.
1051 auto *UnsignedVecBegin = Mapper.UnsignedVec.begin();
1052 LLVM_DEBUG(dbgs() << "WALKING FUNCTION LIST\n");
1053 for (auto &OF : FunctionList) {
1054#ifndef NDEBUG
1055 auto NumCandidatesBefore = OF->Candidates.size();
1056#endif
1057 // If we outlined something that overlapped with a candidate in a previous
1058 // step, then we can't outline from it.
1059 erase_if(OF->Candidates, [&UnsignedVecBegin](Candidate &C) {
1060 return std::any_of(UnsignedVecBegin + C.getStartIdx(),
1061 UnsignedVecBegin + C.getEndIdx() + 1, [](unsigned I) {
1062 return I == static_cast<unsigned>(-1);
1063 });
1064 });
1065
1066#ifndef NDEBUG
1067 auto NumCandidatesAfter = OF->Candidates.size();
1068 LLVM_DEBUG(dbgs() << "PRUNED: " << NumCandidatesBefore - NumCandidatesAfter
1069 << "/" << NumCandidatesBefore << " candidates\n");
1070#endif
1071
1072 // If we made it unbeneficial to outline this function, skip it.
1073 if (OF->getBenefit() < OutlinerBenefitThreshold) {
1074 LLVM_DEBUG(dbgs() << "SKIP: Expected benefit (" << OF->getBenefit()
1075 << " B) < threshold (" << OutlinerBenefitThreshold
1076 << " B)\n");
1077 continue;
1078 }
1079
1080 LLVM_DEBUG(dbgs() << "OUTLINE: Expected benefit (" << OF->getBenefit()
1081 << " B) > threshold (" << OutlinerBenefitThreshold
1082 << " B)\n");
1083
1084 // Remove all Linker Optimization Hints from the candidates.
1085 // TODO: The intersection of the LOHs from all candidates should be legal in
1086 // the outlined function.
1087 SmallPtrSet<MachineInstr *, 2> MIs;
1088 for (Candidate &C : OF->Candidates) {
1089 for (MachineInstr &MI : C)
1090 MIs.insert(&MI);
1091 NumRemovedLOHs += TM->clearLinkerOptimizationHints(MIs);
1092 MIs.clear();
1093 }
1094
1095 // It's beneficial. Create the function and outline its sequence's
1096 // occurrences.
1097 OF->MF = createOutlinedFunction(M, *OF, Mapper, OutlinedFunctionNum);
1098 emitOutlinedFunctionRemark(*OF);
1099 FunctionsCreated++;
1100 OutlinedFunctionNum++; // Created a function, move to the next name.
1101 MachineFunction *MF = OF->MF;
1102 const TargetSubtargetInfo &STI = MF->getSubtarget();
1103 const TargetInstrInfo &TII = *STI.getInstrInfo();
1104
1105 // Replace occurrences of the sequence with calls to the new function.
1106 LLVM_DEBUG(dbgs() << "CREATE OUTLINED CALLS\n");
1107 for (Candidate &C : OF->Candidates) {
1108 MachineBasicBlock &MBB = *C.getMBB();
1109 MachineBasicBlock::iterator StartIt = C.begin();
1110 MachineBasicBlock::iterator EndIt = std::prev(C.end());
1111
1112 // Use the first non-debug instruction with a non-zero source line as the
1113 // location for the replacement call sequence.
1114 DebugLoc CallLoc;
1115 for (MachineInstr &MI : C) {
1116 const DebugLoc &DL = MI.getDebugLoc();
1117 if (!MI.isDebugInstr() && DL && DL.getLine()) {
1118 CallLoc = DL;
1119 break;
1120 }
1121 }
1122
1123 // Remember the instruction the call sequence will be inserted after, so
1124 // we can find every instruction the target inserts below.
1126 StartIt == MBB.begin() ? MBB.end() : std::prev(StartIt);
1127
1128 // Insert the call.
1129 auto CallInst = TII.insertOutlinedCall(M, MBB, StartIt, *MF, C);
1130
1131 // insertOutlinedCall may emit link register save/restore instructions
1132 // around the call, and leaves StartIt on the last instruction it
1133 // inserted. Give the whole sequence the candidate's location. Otherwise,
1134 // a locationless save or restore can introduce a line 0 row, including
1135 // at the return address immediately after the call.
1137 PrevIt == MBB.end() ? MBB.begin() : std::next(PrevIt);
1138 for (MachineInstr &MI : make_range(SeqBegin, std::next(StartIt)))
1139 MI.setDebugLoc(CallLoc);
1140
1141#ifndef NDEBUG
1142 auto MBBBeingOutlinedFromName =
1143 MBB.getName().empty() ? "<unknown>" : MBB.getName().str();
1144 auto MFBeingOutlinedFromName = MBB.getParent()->getName().empty()
1145 ? "<unknown>"
1146 : MBB.getParent()->getName().str();
1147 LLVM_DEBUG(dbgs() << " CALL: " << MF->getName() << " in "
1148 << MFBeingOutlinedFromName << ":"
1149 << MBBBeingOutlinedFromName << "\n");
1150 LLVM_DEBUG(dbgs() << " .. " << *CallInst);
1151#endif
1152
1153 // If the caller tracks liveness, then we need to make sure that
1154 // anything we outline doesn't break liveness assumptions. The outlined
1155 // functions themselves currently don't track liveness, but we should
1156 // make sure that the ranges we yank things out of aren't wrong.
1157 if (MBB.getParent()->getProperties().hasTracksLiveness()) {
1158 // The following code is to add implicit def operands to the call
1159 // instruction. It also updates call site information for moved
1160 // code.
1161 SmallSet<Register, 2> UseRegs, DefRegs;
1162 // Copy over the defs in the outlined range.
1163 // First inst in outlined range <-- Anything that's defined in this
1164 // ... .. range has to be added as an
1165 // implicit Last inst in outlined range <-- def to the call
1166 // instruction. Also remove call site information for outlined block
1167 // of code. The exposed uses need to be copied in the outlined range.
1169 Iter = EndIt.getReverse(),
1170 Last = std::next(CallInst.getReverse());
1171 Iter != Last; Iter++) {
1172 MachineInstr *MI = &*Iter;
1173 if (MI->isDebugInstr())
1174 continue;
1175 SmallSet<Register, 2> InstrUseRegs;
1176 for (MachineOperand &MOP : MI->operands()) {
1177 // Skip over anything that isn't a register.
1178 if (!MOP.isReg())
1179 continue;
1180
1181 if (MOP.isDef()) {
1182 // Introduce DefRegs set to skip the redundant register.
1183 DefRegs.insert(MOP.getReg());
1184 if (UseRegs.count(MOP.getReg()) &&
1185 !InstrUseRegs.count(MOP.getReg()))
1186 // Since the regiester is modeled as defined,
1187 // it is not necessary to be put in use register set.
1188 UseRegs.erase(MOP.getReg());
1189 } else if (!MOP.isUndef()) {
1190 // Any register which is not undefined should
1191 // be put in the use register set.
1192 UseRegs.insert(MOP.getReg());
1193 InstrUseRegs.insert(MOP.getReg());
1194 }
1195 }
1196 if (MI->isCandidateForAdditionalCallInfo())
1197 MI->getMF()->eraseAdditionalCallInfo(MI);
1198 }
1199
1200 for (const Register &I : DefRegs)
1201 // If it's a def, add it to the call instruction.
1202 CallInst->addOperand(
1203 MachineOperand::CreateReg(I, true, /* isDef = true */
1204 true /* isImp = true */));
1205
1206 for (const Register &I : UseRegs)
1207 // If it's a exposed use, add it to the call instruction.
1208 CallInst->addOperand(
1209 MachineOperand::CreateReg(I, false, /* isDef = false */
1210 true /* isImp = true */));
1211 }
1212
1213 // Erase from the point after where the call was inserted up to, and
1214 // including, the final instruction in the sequence.
1215 // Erase needs one past the end, so we need std::next there too.
1216 MBB.erase(std::next(StartIt), std::next(EndIt));
1217
1218 // Keep track of what we removed by marking them all as -1.
1219 for (unsigned &I : make_range(UnsignedVecBegin + C.getStartIdx(),
1220 UnsignedVecBegin + C.getEndIdx() + 1))
1221 I = static_cast<unsigned>(-1);
1222 OutlinedSomething = true;
1223
1224 // Statistics.
1225 NumOutlined++;
1226 }
1227 }
1228
1229 LLVM_DEBUG(dbgs() << "OutlinedSomething = " << OutlinedSomething << "\n");
1230 return OutlinedSomething;
1231}
1232
1233static bool allowPGOOutlining(RunOutliner RunOutlinerMode,
1234 const ProfileSummaryInfo *PSI,
1235 const BlockFrequencyInfo *BFI,
1237 if (RunOutlinerMode != RunOutliner::OptimisticPGO &&
1238 RunOutlinerMode != RunOutliner::ConservativePGO)
1239 return true;
1240 auto *MF = MBB.getParent();
1241 if (MF->getFunction().hasFnAttribute(Attribute::Cold)) {
1242 ++NumPGOAllowedCold;
1243 return true;
1244 }
1245
1246 auto *BB = MBB.getBasicBlock();
1247 if (BB && PSI && BFI)
1248 if (auto Count = BFI->getBlockProfileCount(BB))
1249 return *Count <= PSI->getOrCompColdCountThreshold();
1250
1251 if (RunOutlinerMode == RunOutliner::OptimisticPGO) {
1252 auto *TII = MF->getSubtarget().getInstrInfo();
1253 if (TII->shouldOutlineFromFunctionByDefault(*MF)) {
1254 // Profile data is unavailable, but we optimistically allow outlining
1255 ++NumPGOOptimisticOutlined;
1256 return true;
1257 }
1258 return false;
1259 }
1260 assert(RunOutlinerMode == RunOutliner::ConservativePGO);
1261 // Profile data is unavailable, so we conservatively block outlining
1262 ++NumPGOConservativeBlockedOutlined;
1263 return false;
1264}
1265
1266void MachineOutliner::populateMapper(InstructionMapper &Mapper, Module &M) {
1267 // Build instruction mappings for each function in the module. Start by
1268 // iterating over each Function in M.
1269 LLVM_DEBUG(dbgs() << "*** Populating mapper ***\n");
1270 bool EnableProfileGuidedOutlining =
1271 RunOutlinerMode == RunOutliner::OptimisticPGO ||
1272 RunOutlinerMode == RunOutliner::ConservativePGO;
1273 ProfileSummaryInfo *PSI = nullptr;
1274 if (EnableProfileGuidedOutlining)
1275 PSI = &getAnalysis<ProfileSummaryInfoWrapperPass>().getPSI();
1276 for (Function &F : M) {
1277 LLVM_DEBUG(dbgs() << "MAPPING FUNCTION: " << F.getName() << "\n");
1278
1279 if (F.hasFnAttribute(Attribute::NoOutline)) {
1280 LLVM_DEBUG(dbgs() << "SKIP: Function has nooutline attribute\n");
1281 continue;
1282 }
1283
1284 // There's something in F. Check if it has a MachineFunction associated with
1285 // it.
1287
1288 // If it doesn't, then there's nothing to outline from. Move to the next
1289 // Function.
1290 if (!MF) {
1291 LLVM_DEBUG(dbgs() << "SKIP: Function does not have a MachineFunction\n");
1292 continue;
1293 }
1294
1295 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
1296 BlockFrequencyInfo *BFI = nullptr;
1297 if (EnableProfileGuidedOutlining && F.hasProfileData())
1298 BFI = &getAnalysis<BlockFrequencyInfoWrapperPass>(F).getBFI();
1299 if (RunOutlinerMode == RunOutliner::TargetDefault &&
1300 !TII->shouldOutlineFromFunctionByDefault(*MF)) {
1301 LLVM_DEBUG(dbgs() << "SKIP: Target does not want to outline from "
1302 "function by default\n");
1303 continue;
1304 }
1305
1306 // We have a MachineFunction. Ask the target if it's suitable for outlining.
1307 // If it isn't, then move on to the next Function in the module.
1308 if (!TII->isFunctionSafeToOutlineFrom(*MF, OutlineFromLinkOnceODRs)) {
1309 LLVM_DEBUG(dbgs() << "SKIP: " << MF->getName()
1310 << ": unsafe to outline from\n");
1311 continue;
1312 }
1313
1314 // We have a function suitable for outlining. Iterate over every
1315 // MachineBasicBlock in MF and try to map its instructions to a list of
1316 // unsigned integers.
1317 const unsigned MinMBBSize = 2;
1318
1319 for (MachineBasicBlock &MBB : *MF) {
1320 LLVM_DEBUG(dbgs() << " MAPPING MBB: '" << MBB.getName() << "'\n");
1321 // If there isn't anything in MBB, then there's no point in outlining from
1322 // it.
1323 // If there are fewer than 2 non-debug instructions in the MBB, then it
1324 // can't ever contain something worth outlining. Count raw instructions,
1325 // including bundle interiors, to preserve MBB.size() behavior. Pseudo
1326 // probes also retain their historical treatment as ordinary
1327 // instructions.
1328 // FIXME: This should be based off of the maximum size in B of an outlined
1329 // call versus the size in B of the MBB.
1331 MBB.instr_end(),
1332 /* SkipPseudoOp */ false),
1333 MinMBBSize)) {
1334 LLVM_DEBUG(dbgs() << " SKIP: MBB size less than minimum size of "
1335 << MinMBBSize << "\n");
1336 continue;
1337 }
1338
1339 // Check if MBB could be the target of an indirect branch. If it is, then
1340 // we don't want to outline from it.
1341 if (MBB.hasAddressTaken()) {
1342 LLVM_DEBUG(dbgs() << " SKIP: MBB's address is taken\n");
1343 continue;
1344 }
1345
1346 if (!allowPGOOutlining(RunOutlinerMode, PSI, BFI, MBB)) {
1347 ++NumPGOBlockedOutlined;
1348 continue;
1349 }
1350
1351 // MBB is suitable for outlining. Map it to a list of unsigneds.
1352 Mapper.convertToUnsignedVec(MBB, *TII);
1353 }
1354 }
1355 // Statistics.
1356 UnsignedVecSize = Mapper.UnsignedVec.size();
1357}
1358
1359void MachineOutliner::initSizeRemarkInfo(
1360 const Module &M, StringMap<unsigned> &FunctionToInstrCount) {
1361 // Collect instruction counts for every function. We'll use this to emit
1362 // per-function size remarks later.
1363 for (const Function &F : M) {
1365
1366 // We only care about MI counts here. If there's no MachineFunction at this
1367 // point, then there won't be after the outliner runs, so let's move on.
1368 if (!MF)
1369 continue;
1370 FunctionToInstrCount[F.getName().str()] = MF->getInstructionCount();
1371 }
1372}
1373
1374void MachineOutliner::emitInstrCountChangedRemark(
1375 const Module &M, const StringMap<unsigned> &FunctionToInstrCount) {
1376 // Iterate over each function in the module and emit remarks.
1377 // Note that we won't miss anything by doing this, because the outliner never
1378 // deletes functions.
1379 for (const Function &F : M) {
1381
1382 // The outliner never deletes functions. If we don't have a MF here, then we
1383 // didn't have one prior to outlining either.
1384 if (!MF)
1385 continue;
1386
1387 std::string Fname = std::string(F.getName());
1388 unsigned FnCountAfter = MF->getInstructionCount();
1389 unsigned FnCountBefore = 0;
1390
1391 // Check if the function was recorded before.
1392 auto It = FunctionToInstrCount.find(Fname);
1393
1394 // Did we have a previously-recorded size? If yes, then set FnCountBefore
1395 // to that.
1396 if (It != FunctionToInstrCount.end())
1397 FnCountBefore = It->second;
1398
1399 // Compute the delta and emit a remark if there was a change.
1400 int64_t FnDelta = static_cast<int64_t>(FnCountAfter) -
1401 static_cast<int64_t>(FnCountBefore);
1402 if (FnDelta == 0)
1403 continue;
1404
1405 MachineOptimizationRemarkEmitter MORE(*MF, nullptr);
1406 MORE.emit([&]() {
1407 MachineOptimizationRemarkAnalysis R("size-info", "FunctionMISizeChange",
1408 DiagnosticLocation(), &MF->front());
1409 R << DiagnosticInfoOptimizationBase::Argument("Pass", "Machine Outliner")
1410 << ": Function: "
1411 << DiagnosticInfoOptimizationBase::Argument("Function", F.getName())
1412 << ": MI instruction count changed from "
1413 << DiagnosticInfoOptimizationBase::Argument("MIInstrsBefore",
1414 FnCountBefore)
1415 << " to "
1416 << DiagnosticInfoOptimizationBase::Argument("MIInstrsAfter",
1417 FnCountAfter)
1418 << "; Delta: "
1419 << DiagnosticInfoOptimizationBase::Argument("Delta", FnDelta);
1420 return R;
1421 });
1422 }
1423}
1424
1425void MachineOutliner::initializeOutlinerMode(const Module &M) {
1427 return;
1428
1429 if (auto *IndexWrapperPass =
1430 getAnalysisIfAvailable<ImmutableModuleSummaryIndexWrapperPass>()) {
1431 auto *TheIndex = IndexWrapperPass->getIndex();
1432 // (Full)LTO module does not have functions added to the index.
1433 // In this case, we run the outliner without using codegen data as usual.
1434 if (TheIndex && !TheIndex->hasExportedFunctions(M))
1435 return;
1436 }
1437
1438 // When codegen data write is enabled, we want to write the local outlined
1439 // hash tree to the custom section, `__llvm_outline`.
1440 // When the outlined hash tree is available from the previous codegen data,
1441 // we want to read it to optimistically create global outlining candidates.
1442 if (cgdata::emitCGData()) {
1443 OutlinerMode = CGDataMode::Write;
1444 // Create a local outlined hash tree to be published.
1445 LocalHashTree = std::make_unique<OutlinedHashTree>();
1446 // We don't need to read the outlined hash tree from the previous codegen
1447 } else if (cgdata::hasOutlinedHashTree())
1448 OutlinerMode = CGDataMode::Read;
1449}
1450
1451void MachineOutliner::emitOutlinedHashTree(Module &M) {
1452 assert(LocalHashTree);
1453 if (!LocalHashTree->empty()) {
1454 LLVM_DEBUG({
1455 dbgs() << "Emit outlined hash tree. Size: " << LocalHashTree->size()
1456 << "\n";
1457 });
1458 SmallVector<char> Buf;
1459 raw_svector_ostream OS(Buf);
1460
1461 OutlinedHashTreeRecord HTR(std::move(LocalHashTree));
1462 HTR.serialize(OS);
1463
1464 llvm::StringRef Data(Buf.data(), Buf.size());
1465 std::unique_ptr<MemoryBuffer> Buffer =
1466 MemoryBuffer::getMemBuffer(Data, "in-memory outlined hash tree", false);
1467
1468 Triple TT(M.getTargetTriple());
1470 M, *Buffer,
1471 getCodeGenDataSectionName(CG_outline, TT.getObjectFormat()));
1472 }
1473}
1474
1475bool MachineOutliner::runOnModule(Module &M) {
1476 if (skipModule(M))
1477 return false;
1478
1479 // Check if there's anything in the module. If it's empty, then there's
1480 // nothing to outline.
1481 if (M.empty())
1482 return false;
1483
1484 // Initialize the outliner mode.
1485 initializeOutlinerMode(M);
1486
1487 MMI = &getAnalysis<MachineModuleInfoWrapperPass>().getMMI();
1488 TM = &getAnalysis<TargetPassConfig>().getTM<TargetMachine>();
1489
1490 // Number to append to the current outlined function.
1491 unsigned OutlinedFunctionNum = 0;
1492
1493 OutlineRepeatedNum = 0;
1494 if (!doOutline(M, OutlinedFunctionNum))
1495 return false;
1496
1497 for (unsigned I = 0; I < OutlinerReruns; ++I) {
1498 OutlinedFunctionNum = 0;
1499 OutlineRepeatedNum++;
1500 if (!doOutline(M, OutlinedFunctionNum)) {
1501 LLVM_DEBUG({
1502 dbgs() << "Did not outline on iteration " << I + 2 << " out of "
1503 << OutlinerReruns + 1 << "\n";
1504 });
1505 break;
1506 }
1507 }
1508
1509 if (OutlinerMode == CGDataMode::Write)
1510 emitOutlinedHashTree(M);
1511
1512 return true;
1513}
1514
1515bool MachineOutliner::doOutline(Module &M, unsigned &OutlinedFunctionNum) {
1516 // If the user passed -enable-machine-outliner=always or
1517 // -enable-machine-outliner, the pass will run on all functions in the module.
1518 // Otherwise, if the target supports default outlining, it will run on all
1519 // functions deemed by the target to be worth outlining from by default. Tell
1520 // the user how the outliner is running.
1521 LLVM_DEBUG({
1522 dbgs() << "Machine Outliner: Running on ";
1523 switch (RunOutlinerMode) {
1524 case RunOutliner::AlwaysOutline:
1525 dbgs() << "all functions";
1526 break;
1527 case RunOutliner::OptimisticPGO:
1528 dbgs() << "optimistically cold functions";
1529 break;
1530 case RunOutliner::ConservativePGO:
1531 dbgs() << "conservatively cold functions";
1532 break;
1533 case RunOutliner::TargetDefault:
1534 dbgs() << "target-default functions";
1535 break;
1536 case RunOutliner::NeverOutline:
1537 llvm_unreachable("should not outline");
1538 }
1539 dbgs() << "\n";
1540 });
1541
1542 // If the user specifies that they want to outline from linkonceodrs, set
1543 // it here.
1544 OutlineFromLinkOnceODRs = EnableLinkOnceODROutlining;
1545 InstructionMapper Mapper(*MMI);
1546
1547 // Prepare instruction mappings for the suffix tree.
1548 populateMapper(Mapper, M);
1549 std::vector<std::unique_ptr<OutlinedFunction>> FunctionList;
1550
1551 // Find all of the outlining candidates.
1552 if (OutlinerMode == CGDataMode::Read)
1553 findGlobalCandidates(Mapper, FunctionList);
1554 else
1555 findCandidates(Mapper, FunctionList);
1556
1557 // If we've requested size remarks, then collect the MI counts of every
1558 // function before outlining, and the MI counts after outlining.
1559 // FIXME: This shouldn't be in the outliner at all; it should ultimately be
1560 // the pass manager's responsibility.
1561 // This could pretty easily be placed in outline instead, but because we
1562 // really ultimately *don't* want this here, it's done like this for now
1563 // instead.
1564
1565 // Check if we want size remarks.
1566 bool ShouldEmitSizeRemarks = M.shouldEmitInstrCountChangedRemark();
1567 StringMap<unsigned> FunctionToInstrCount;
1568 if (ShouldEmitSizeRemarks)
1569 initSizeRemarkInfo(M, FunctionToInstrCount);
1570
1571 // Outline each of the candidates and return true if something was outlined.
1572 bool OutlinedSomething =
1573 outline(M, FunctionList, Mapper, OutlinedFunctionNum);
1574
1575 // If we outlined something, we definitely changed the MI count of the
1576 // module. If we've asked for size remarks, then output them.
1577 // FIXME: This should be in the pass manager.
1578 if (ShouldEmitSizeRemarks && OutlinedSomething)
1579 emitInstrCountChangedRemark(M, FunctionToInstrCount);
1580
1581 LLVM_DEBUG({
1582 if (!OutlinedSomething)
1583 dbgs() << "Stopped outlining at iteration " << OutlineRepeatedNum
1584 << " because no changes were found.\n";
1585 });
1586
1587 return OutlinedSomething;
1588}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
This file defines the DenseMap class.
#define DEBUG_TYPE
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
Module.h This file contains the declarations for the Module class.
This file implements the LivePhysRegs utility for tracking liveness of physical registers.
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
Machine Check Debug Module
===- MachineOptimizationRemarkEmitter.h - Opt Diagnostics -*- C++ -*-—===//
static cl::opt< bool > DisableGlobalOutlining("disable-global-outlining", cl::Hidden, cl::desc("Disable global outlining only by ignoring " "the codegen data generation or use"), cl::init(false))
static bool allowPGOOutlining(RunOutliner RunOutlinerMode, const ProfileSummaryInfo *PSI, const BlockFrequencyInfo *BFI, MachineBasicBlock &MBB)
static cl::opt< unsigned > OutlinerBenefitThreshold("outliner-benefit-threshold", cl::init(1), cl::Hidden, cl::desc("The minimum size in bytes before an outlining candidate is accepted"))
static cl::opt< bool > OutlinerLeafDescendants("outliner-leaf-descendants", cl::init(true), cl::Hidden, cl::desc("Consider all leaf descendants of internal nodes of the suffix " "tree as candidates for outlining (if false, only leaf children " "are considered)"))
static cl::opt< bool > AppendContentHashToOutlinedName("append-content-hash-outlined-name", cl::Hidden, cl::desc("This appends the content hash to the globally outlined function " "name. It's beneficial for enhancing the precision of the stable " "hash and for ordering the outlined functions."), cl::init(true))
static cl::opt< unsigned > OutlinerReruns("machine-outliner-reruns", cl::init(0), cl::Hidden, cl::desc("Number of times to rerun the outliner after the initial outline"))
Number of times to re-run the outliner.
static cl::opt< bool > EnableLinkOnceODROutlining("enable-linkonceodr-outlining", cl::Hidden, cl::desc("Enable the machine outliner on linkonceodr functions"), cl::init(false))
static SmallVector< MatchedEntry > getMatchedEntries(InstructionMapper &Mapper)
Contains all data structures shared between the outliner implemented in MachineOutliner....
Register Reg
Register const TargetRegisterInfo * TRI
Promote Memory to Register
Definition Mem2Reg.cpp:110
This is the interface to build a ModuleSummaryIndex for a module.
static Expected< Function * > createOutlinedFunction(OpenMPIRBuilder &OMPBuilder, IRBuilderBase &Builder, const OpenMPIRBuilder::TargetKernelDefaultAttrs &DefaultAttrs, StringRef FuncName, SmallVectorImpl< Value * > &Inputs, OpenMPIRBuilder::TargetBodyGenCallbackTy &CBFunc, OpenMPIRBuilder::TargetGenArgAccessorsCallbackTy &ArgAccessorFuncCB, DebugLoc OutlinedFnLoc)
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition PassSupport.h:56
Func MI getDebugLoc()))
This file defines the SmallSet class.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
Definition Statistic.h:171
#define LLVM_DEBUG(...)
Definition Debug.h:119
Target-Independent Code Generator Pass Configuration Options pass.
Value * RHS
Value * LHS
AnalysisUsage & addUsedIfAvailable()
Add the specified Pass class to the set of analyses used by this pass.
AnalysisUsage & addRequired()
AnalysisUsage & addPreserved()
Add the specified Pass class to the set of analyses preserved by this pass.
void setPreservesAll()
Set by analyses that do not transform their input at all.
static BasicBlock * Create(LLVMContext &Context, const Twine &Name="", Function *Parent=nullptr, BasicBlock *InsertBefore=nullptr)
Creates a new BasicBlock.
Definition BasicBlock.h:206
BlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate IR basic block frequen...
LLVM_ABI std::optional< uint64_t > getBlockProfileCount(const BasicBlock *BB, bool AllowSynthetic=false) const
Returns the estimated profile count of BB.
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
Definition DenseMap.h:319
static Function * Create(FunctionType *Ty, LinkageTypes Linkage, unsigned AddrSpace, const Twine &N="", Module *M=nullptr)
Definition Function.h:169
bool hasFnAttribute(Attribute::AttrKind Kind) const
Return true if the function has the attribute.
Definition Function.cpp:730
@ InternalLinkage
Rename collisions when linking (static functions).
Definition GlobalValue.h:60
bool hasAddressTaken() const
Test whether this block is used as something other than the target of a terminator,...
LLVM_ABI DebugLoc findDebugLoc(instr_iterator MBBI)
Find the next valid DebugLoc starting at MBBI, skipping any debug instructions.
MachineInstrBundleIterator< MachineInstr, true > reverse_iterator
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
LLVM_ABI instr_iterator erase(instr_iterator I)
Remove an instruction from the instruction list and delete it.
MachineInstrBundleIterator< MachineInstr > iterator
LLVM_ABI StringRef getName() const
Return the name of the corresponding LLVM basic block, or an empty string.
unsigned getInstructionCount() const
Return the number of MachineInstrs in this MachineFunction.
unsigned addFrameInst(const MCCFIInstruction &Inst)
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
const std::vector< MCCFIInstruction > & getFrameInstructions() const
Returns a reference to a list of cfi instructions in the function's prologue.
StringRef getName() const
getName - Return the name of the corresponding LLVM function.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Function & getFunction()
Return the LLVM function that this machine code represents.
const MachineFunctionProperties & getProperties() const
Get the function properties.
const MachineBasicBlock & front() const
MachineBasicBlock * CreateMachineBasicBlock(const BasicBlock *BB=nullptr, std::optional< UniqueBBID > BBID=std::nullopt)
CreateMachineInstr - Allocate a new MachineInstr.
void insert(iterator MBBI, MachineBasicBlock *MBB)
const MachineInstrBuilder & addCFIIndex(unsigned CFIIndex) const
reverse_iterator getReverse() const
Get a reverse iterator to the same node.
Representation of each machine instruction.
bool isDebugInstr() const
LLVM_ABI void dropMemRefs(MachineFunction &MF)
Clear this MachineInstr's memory reference descriptor list.
LLVM_ABI const MachineFunction * getMF() const
Return the function that contains the basic block that this instruction belongs to.
bool isBundledWithSucc() const
Return true if this instruction is part of a bundle, and it is not the last instruction in the bundle...
void setDebugLoc(DebugLoc DL)
Replace current source information with new such.
This class contains meta information specific to a module.
LLVM_ABI MachineFunction & getOrCreateMachineFunction(Function &F)
Returns the MachineFunction constructed for the IR function F.
LLVM_ABI MachineFunction * getMachineFunction(const Function &F) const
Returns the MachineFunction associated to IR function F if there is one, otherwise nullptr.
static MachineOperand CreateReg(Register Reg, bool isDef, bool isImp=false, bool isKill=false, bool isDead=false, bool isUndef=false, bool isEarlyClobber=false, unsigned SubReg=0, bool isDebug=false, bool isInternalRead=false, bool isRenamable=false)
Diagnostic information for missed-optimization remarks.
LLVM_ABI void freezeReservedRegs()
freezeReservedRegs - Called by the register allocator to freeze the set of reserved registers before ...
const TargetRegisterInfo * getTargetRegisterInfo() const
LLVM_ABI void getNameWithPrefix(raw_ostream &OS, const GlobalValue *GV, bool CannotUsePrivateLabel) const
Print the appropriate prefix and the specified global variable's name.
Definition Mangler.cpp:121
static std::unique_ptr< MemoryBuffer > getMemBuffer(StringRef InputData, StringRef BufferName="", bool RequiresNullTerminator=true)
Open the specified memory range as a MemoryBuffer.
ModulePass class - This class is used to implement unstructured interprocedural optimizations and ana...
Definition Pass.h:255
const HashNode * getRoot() const
Analysis providing profile information.
LLVM_ABI uint64_t getOrCompColdCountThreshold() const
Returns ColdCountThreshold if set.
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
size_type count(const T &V) const
count - Return 1 if the element is in the set, 0 otherwise.
Definition SmallSet.h:176
bool erase(const T &V)
Definition SmallSet.h:200
std::pair< const_iterator, bool > insert(const T &V)
insert - Insert an element into the set if it isn't already there.
Definition SmallSet.h:184
reference emplace_back(ArgTypes &&... Args)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
iterator end()
Definition StringMap.h:214
iterator find(StringRef Key)
Definition StringMap.h:227
std::string str() const
Get the contents as an std::string.
Definition StringRef.h:222
constexpr bool empty() const
Check if the string is empty.
Definition StringRef.h:141
constexpr size_t size() const
Get the string size.
Definition StringRef.h:144
virtual size_t clearLinkerOptimizationHints(const SmallPtrSetImpl< MachineInstr * > &MIs) const
Remove all Linker Optimization Hints (LOH) associated with instructions in MIs and.
virtual const TargetInstrInfo * getInstrInfo() const
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
self_iterator getIterator()
Definition ilist_node.h:123
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ BasicBlock
Various leaf nodes.
Definition ISDOpcodes.h:81
SmallVector< const MachineInstr * > InstrList
bool hasOutlinedHashTree()
const OutlinedHashTree * getOutlinedHashTree()
bool emitCGData()
initializer< Ty > init(const Ty &Val)
Add a small namespace to avoid name clashes with the classes used in the streaming interface.
DiagnosticInfoOptimizationBase::Argument NV
This is an optimization pass for GlobalISel generic memory operations.
@ Length
Definition DWP.cpp:577
void stable_sort(R &&Range)
Definition STLExtras.h:2132
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
Definition STLExtras.h:2224
uint64_t stable_hash
An opaque object representing a stable hash code.
bool hasNItemsOrMore(IterTy &&Begin, IterTy &&End, unsigned N, Pred &&ShouldBeCounted=[](const decltype(*std::declval< IterTy >()) &) { return true;}, std::enable_if_t< !std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< std::remove_reference_t< decltype(Begin)> >::iterator_category >::value, void > *=nullptr)
Return true if the sequence [Begin, End) has N or more items.
Definition STLExtras.h:2654
auto reverse(ContainerTy &&C)
Definition STLExtras.h:408
UWTableKind
Definition CodeGen.h:299
void sort(IteratorTy Start, IteratorTy End)
Definition STLExtras.h:1652
LLVM_ABI stable_hash stableHashValue(const MachineOperand &MO)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:209
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
Definition Error.cpp:163
MachineBasicBlock::instr_iterator getBundleEnd(MachineBasicBlock::instr_iterator I)
Returns an iterator pointing beyond the bundle containing I.
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
auto instructionsWithoutDebug(IterT It, IterT End, bool SkipPseudoOp=true)
Construct a range iterator which begins at It and moves forwards until End is reached,...
LLVM_ABI ModulePass * createMachineOutlinerPass(RunOutliner RunOutlinerMode)
This pass performs outlining on machine instructions directly before printing assembly.
IRBuilder(LLVMContext &, FolderTy, InserterTy, MDNode *, ArrayRef< OperandBundleDef >) -> IRBuilder< FolderTy, InserterTy >
uint16_t MCPhysReg
An unsigned integer type large enough to represent all physical registers, but not necessarily virtua...
Definition MCRegister.h:21
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Count
Definition InstrProf.h:145
void erase_if(Container &C, UnaryPredicate P)
Provide a container algorithm similar to C++ Library Fundamentals v2's erase_if which is equivalent t...
Definition STLExtras.h:2208
stable_hash stable_hash_combine(ArrayRef< stable_hash > Buffer)
LLVM_ABI GlobalVariable * embedBufferInModule(Module &M, MemoryBufferRef Buf, StringRef SectionName, Align Alignment=Align(1), bool SectionExclude=true)
Embed the memory buffer Buf into the module M as a global using the specified section name.
LLVM_ABI void addLiveIns(MachineBasicBlock &MBB, const LivePhysRegs &LiveRegs)
Adds registers contained in LiveRegs to the block live-in list of MBB.
LLVM_ABI std::string getCodeGenDataSectionName(CGDataSectKind CGSK, Triple::ObjectFormatType OF, bool AddSegmentInfo=true)
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:878
#define MORE()
Definition regcomp.c:247
MatchedEntry()=delete
MatchedEntry(unsigned StartIdx, unsigned EndIdx, unsigned Count)
A HashNode is an entry in an OutlinedHashTree, holding a hash value and a collection of Successors (o...
std::optional< unsigned > Terminals
The number of terminals in the sequence ending at this node.
An individual sequence of instructions to be replaced with a call to an outlined function.
MachineFunction * getMF() const
The information necessary to create an outlined function for some class of candidate.