LLVM 19.0.0git
ReplayInlineAdvisor.h
Go to the documentation of this file.
1//===- ReplayInlineAdvisor.h - Replay Inline Advisor interface -*- 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#ifndef LLVM_ANALYSIS_REPLAYINLINEADVISOR_H
10#define LLVM_ANALYSIS_REPLAYINLINEADVISOR_H
11
12#include "llvm/ADT/StringSet.h"
14
15namespace llvm {
16class CallBase;
17class Function;
18class LLVMContext;
19class Module;
20
22 enum class Format : int {
23 Line,
27 };
28
29 bool outputColumn() const {
32 }
33
34 bool outputDiscriminator() const {
37 }
38
40};
41
42/// Replay Inliner Setup
44 enum class Scope : int { Function, Module };
45 enum class Fallback : int { Original, AlwaysInline, NeverInline };
46
51};
52
53/// Get call site location as a string with the given format
55
56std::unique_ptr<InlineAdvisor>
58 LLVMContext &Context,
59 std::unique_ptr<InlineAdvisor> OriginalAdvisor,
60 const ReplayInlinerSettings &ReplaySettings,
61 bool EmitRemarks, InlineContext IC);
62
63/// Replay inline advisor that uses optimization remarks from inlining of
64/// previous build to guide current inlining. This is useful for inliner tuning.
66public:
69 std::unique_ptr<InlineAdvisor> OriginalAdvisor,
70 const ReplayInlinerSettings &ReplaySettings,
71 bool EmitRemarks, InlineContext IC);
72 std::unique_ptr<InlineAdvice> getAdviceImpl(CallBase &CB) override;
73 bool areReplayRemarksLoaded() const { return HasReplayRemarks; }
74
75private:
76 bool hasInlineAdvice(Function &F) const {
77 return (ReplaySettings.ReplayScope ==
79 CallersToReplay.contains(F.getName());
80 }
81 std::unique_ptr<InlineAdvisor> OriginalAdvisor;
82 bool HasReplayRemarks = false;
83 const ReplayInlinerSettings ReplaySettings;
84 bool EmitRemarks = false;
85
86 StringMap<bool> InlineSitesFromRemarks;
87 StringSet<> CallersToReplay;
88};
89} // namespace llvm
90#endif // LLVM_ANALYSIS_REPLAYINLINEADVISOR_H
#define F(x, y, z)
Definition: MD5.cpp:55
Machine Check Debug Module
LLVMContext & Context
FunctionAnalysisManager FAM
StringSet - A set-like wrapper for the StringMap.
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:321
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
Definition: InstrTypes.h:1494
A debug info location.
Definition: DebugLoc.h:33
Interface for deciding whether to inline a call site or not.
const std::optional< InlineContext > IC
FunctionAnalysisManager & FAM
This is an important class for using LLVM in a threaded context.
Definition: LLVMContext.h:67
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
Replay inline advisor that uses optimization remarks from inlining of previous build to guide current...
std::unique_ptr< InlineAdvice > getAdviceImpl(CallBase &CB) override
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
bool contains(StringRef key) const
Check if the set contains the given key.
Definition: StringSet.h:55
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
std::unique_ptr< InlineAdvisor > getReplayInlineAdvisor(Module &M, FunctionAnalysisManager &FAM, LLVMContext &Context, std::unique_ptr< InlineAdvisor > OriginalAdvisor, const ReplayInlinerSettings &ReplaySettings, bool EmitRemarks, InlineContext IC)
std::string formatCallSiteLocation(DebugLoc DLoc, const CallSiteFormat &Format)
Get call site location as a string with the given format.
bool outputDiscriminator() const
Provides context on when an inline advisor is constructed in the pipeline (e.g., link phase,...
Definition: InlineAdvisor.h:59