LLVM 20.0.0git
StandardInstrumentations.h
Go to the documentation of this file.
1//===- StandardInstrumentations.h ------------------------------*- 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/// \file
9///
10/// This header defines a class that provides bookkeeping for all standard
11/// (i.e in-tree) pass instrumentations.
12///
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_PASSES_STANDARDINSTRUMENTATIONS_H
16#define LLVM_PASSES_STANDARDINSTRUMENTATIONS_H
17
18#include "llvm/ADT/STLExtras.h"
20#include "llvm/ADT/StringRef.h"
21#include "llvm/ADT/StringSet.h"
23#include "llvm/IR/BasicBlock.h"
24#include "llvm/IR/OptBisect.h"
26#include "llvm/IR/ValueHandle.h"
30
31#include <string>
32#include <utility>
33
34namespace llvm {
35
36class Module;
37class Function;
38class MachineFunction;
39class PassInstrumentationCallbacks;
40
41/// Instrumentation to print IR before/after passes.
42///
43/// Needs state to be able to print module after pass that invalidates IR unit
44/// (typically Loop or SCC).
46public:
48
50
51private:
52 struct PassRunDescriptor {
53 const Module *M;
54 const std::string DumpIRFilename;
55 const std::string IRName;
56 const StringRef PassID;
57
58 PassRunDescriptor(const Module *M, std::string DumpIRFilename,
59 std::string IRName, const StringRef PassID)
60 : M{M}, DumpIRFilename{DumpIRFilename}, IRName{IRName}, PassID(PassID) {
61 }
62 };
63
64 void printBeforePass(StringRef PassID, Any IR);
65 void printAfterPass(StringRef PassID, Any IR);
66 void printAfterPassInvalidated(StringRef PassID);
67
68 bool shouldPrintBeforePass(StringRef PassID);
69 bool shouldPrintAfterPass(StringRef PassID);
70 bool shouldPrintBeforeCurrentPassNumber();
71 bool shouldPrintAfterCurrentPassNumber();
72 bool shouldPrintPassNumbers();
73 bool shouldPrintBeforeSomePassNumber();
74 bool shouldPrintAfterSomePassNumber();
75
76 void pushPassRunDescriptor(StringRef PassID, Any IR,
77 std::string &DumpIRFilename);
78 PassRunDescriptor popPassRunDescriptor(StringRef PassID);
79 std::string fetchDumpFilename(StringRef PassId, Any IR);
80
82 /// Stack of Pass Run descriptions, enough to print the IR unit after a given
83 /// pass.
84 SmallVector<PassRunDescriptor, 2> PassRunDescriptorStack;
85
86 /// Used for print-at-pass-number
87 unsigned CurrentPassNumber = 0;
88};
89
91public:
92 OptNoneInstrumentation(bool DebugLogging) : DebugLogging(DebugLogging) {}
94
95private:
96 bool DebugLogging;
97 bool shouldRun(StringRef PassID, Any IR);
98};
99
101 LLVMContext &Context;
102 bool HasWrittenIR = false;
103public:
104 OptPassGateInstrumentation(LLVMContext &Context) : Context(Context) {}
107};
108
110 /// Print adaptors and pass managers.
111 bool Verbose = false;
112 /// Don't print information for analyses.
113 bool SkipAnalyses = false;
114 /// Indent based on hierarchy.
115 bool Indent = false;
116};
117
118// Debug logging for transformation and analysis passes.
120 raw_ostream &print();
121
122public:
124 : Enabled(Enabled), Opts(Opts) {}
126
127private:
128 bool Enabled;
129 PrintPassOptions Opts;
130 int Indent = 0;
131};
132
134public:
135 // Keeps sticky poisoned flag for the given basic block once it has been
136 // deleted or RAUWed.
137 struct BBGuard final : public CallbackVH {
138 BBGuard(const BasicBlock *BB) : CallbackVH(BB) {}
139 void deleted() override { CallbackVH::deleted(); }
141 bool isPoisoned() const { return !getValPtr(); }
142 };
143
144 // CFG is a map BB -> {(Succ, Multiplicity)}, where BB is a non-leaf basic
145 // block, {(Succ, Multiplicity)} set of all pairs of the block's successors
146 // and the multiplicity of the edge (BB->Succ). As the mapped sets are
147 // unordered the order of successors is not tracked by the CFG. In other words
148 // this allows basic block successors to be swapped by a pass without
149 // reporting a CFG change. CFG can be guarded by basic block tracking pointers
150 // in the Graph (BBGuard). That is if any of the block is deleted or RAUWed
151 // then the CFG is treated poisoned and no block pointer of the Graph is used.
152 struct CFG {
153 std::optional<DenseMap<intptr_t, BBGuard>> BBGuards;
155
156 CFG(const Function *F, bool TrackBBLifetime);
157
158 bool operator==(const CFG &G) const {
159 return !isPoisoned() && !G.isPoisoned() && Graph == G.Graph;
160 }
161
162 bool isPoisoned() const {
163 return BBGuards && llvm::any_of(*BBGuards, [](const auto &BB) {
164 return BB.second.isPoisoned();
165 });
166 }
167
168 static void printDiff(raw_ostream &out, const CFG &Before,
169 const CFG &After);
170 bool invalidate(Function &F, const PreservedAnalyses &PA,
172 };
173
174#ifdef LLVM_ENABLE_ABI_BREAKING_CHECKS
176#endif
177
180};
181
182// Base class for classes that report changes to the IR.
183// It presents an interface for such classes and provides calls
184// on various events as the new pass manager transforms the IR.
185// It also provides filtering of information based on hidden options
186// specifying which functions are interesting.
187// Calls are made for the following events/queries:
188// 1. The initial IR processed.
189// 2. To get the representation of the IR (of type \p T).
190// 3. When a pass does not change the IR.
191// 4. When a pass changes the IR (given both before and after representations
192// of type \p T).
193// 5. When an IR is invalidated.
194// 6. When a pass is run on an IR that is not interesting (based on options).
195// 7. When a pass is ignored (pass manager or adapter pass).
196// 8. To compare two IR representations (of type \p T).
197template <typename IRUnitT> class ChangeReporter {
198protected:
199 ChangeReporter(bool RunInVerboseMode) : VerboseMode(RunInVerboseMode) {}
200
201public:
202 virtual ~ChangeReporter();
203
204 // Determine if this pass/IR is interesting and if so, save the IR
205 // otherwise it is left on the stack without data.
207 // Compare the IR from before the pass after the pass.
209 // Handle the situation where a pass is invalidated.
210 void handleInvalidatedPass(StringRef PassID);
211
212protected:
213 // Register required callbacks.
215
216 // Called on the first IR processed.
217 virtual void handleInitialIR(Any IR) = 0;
218 // Called before and after a pass to get the representation of the IR.
220 IRUnitT &Output) = 0;
221 // Called when the pass is not iteresting.
222 virtual void omitAfter(StringRef PassID, std::string &Name) = 0;
223 // Called when an interesting IR has changed.
224 virtual void handleAfter(StringRef PassID, std::string &Name,
225 const IRUnitT &Before, const IRUnitT &After,
226 Any) = 0;
227 // Called when an interesting pass is invalidated.
228 virtual void handleInvalidated(StringRef PassID) = 0;
229 // Called when the IR or pass is not interesting.
230 virtual void handleFiltered(StringRef PassID, std::string &Name) = 0;
231 // Called when an ignored pass is encountered.
232 virtual void handleIgnored(StringRef PassID, std::string &Name) = 0;
233
234 // Stack of IRs before passes.
235 std::vector<IRUnitT> BeforeStack;
236 // Is this the first IR seen?
237 bool InitialIR = true;
238
239 // Run in verbose mode, printing everything?
240 const bool VerboseMode;
241};
242
243// An abstract template base class that handles printing banners and
244// reporting when things have not changed or are filtered out.
245template <typename IRUnitT>
246class TextChangeReporter : public ChangeReporter<IRUnitT> {
247protected:
249
250 // Print a module dump of the first IR that is changed.
251 void handleInitialIR(Any IR) override;
252 // Report that the IR was omitted because it did not change.
253 void omitAfter(StringRef PassID, std::string &Name) override;
254 // Report that the pass was invalidated.
255 void handleInvalidated(StringRef PassID) override;
256 // Report that the IR was filtered out.
257 void handleFiltered(StringRef PassID, std::string &Name) override;
258 // Report that the pass was ignored.
259 void handleIgnored(StringRef PassID, std::string &Name) override;
260 // Make substitutions in \p S suitable for reporting changes
261 // after the pass and then print it.
262
264};
265
266// A change printer based on the string representation of the IR as created
267// by unwrapAndPrint. The string representation is stored in a std::string
268// to preserve it as the IR changes in each pass. Note that the banner is
269// included in this representation but it is massaged before reporting.
270class IRChangedPrinter : public TextChangeReporter<std::string> {
271public:
276
277protected:
278 // Called before and after a pass to get the representation of the IR.
280 std::string &Output) override;
281 // Called when an interesting IR has changed.
282 void handleAfter(StringRef PassID, std::string &Name,
283 const std::string &Before, const std::string &After,
284 Any) override;
285};
286
288public:
290 ~IRChangedTester() override;
292
293protected:
294 void handleIR(const std::string &IR, StringRef PassID);
295
296 // Check initial IR
297 void handleInitialIR(Any IR) override;
298 // Do nothing.
299 void omitAfter(StringRef PassID, std::string &Name) override;
300 // Do nothing.
301 void handleInvalidated(StringRef PassID) override;
302 // Do nothing.
303 void handleFiltered(StringRef PassID, std::string &Name) override;
304 // Do nothing.
305 void handleIgnored(StringRef PassID, std::string &Name) override;
306
307 // Call test as interesting IR has changed.
308 void handleAfter(StringRef PassID, std::string &Name,
309 const std::string &Before, const std::string &After,
310 Any) override;
311};
312
313// Information that needs to be saved for a basic block in order to compare
314// before and after the pass to determine if it was changed by a pass.
315template <typename T> class BlockDataT {
316public:
317 BlockDataT(const BasicBlock &B) : Label(B.getName().str()), Data(B) {
319 B.print(SS, nullptr, true, true);
320 }
321
324 B.print(SS);
325 }
326
327 bool operator==(const BlockDataT &That) const { return Body == That.Body; }
328 bool operator!=(const BlockDataT &That) const { return Body != That.Body; }
329
330 // Return the label of the represented basic block.
331 StringRef getLabel() const { return Label; }
332 // Return the string representation of the basic block.
333 StringRef getBody() const { return Body; }
334
335 // Return the associated data
336 const T &getData() const { return Data; }
337
338protected:
339 std::string Label;
340 std::string Body;
341
342 // Extra data associated with a basic block
344};
345
346template <typename T> class OrderedChangedData {
347public:
348 // Return the names in the order they were saved
349 std::vector<std::string> &getOrder() { return Order; }
350 const std::vector<std::string> &getOrder() const { return Order; }
351
352 // Return a map of names to saved representations
353 StringMap<T> &getData() { return Data; }
354 const StringMap<T> &getData() const { return Data; }
355
356 bool operator==(const OrderedChangedData<T> &That) const {
357 return Data == That.getData();
358 }
359
360 // Call the lambda \p HandlePair on each corresponding pair of data from
361 // \p Before and \p After. The order is based on the order in \p After
362 // with ones that are only in \p Before interspersed based on where they
363 // occur in \p Before. This is used to present the output in an order
364 // based on how the data is ordered in LLVM.
365 static void report(const OrderedChangedData &Before,
367 function_ref<void(const T *, const T *)> HandlePair);
368
369protected:
370 std::vector<std::string> Order;
372};
373
374// Do not need extra information for patch-style change reporter.
376public:
379};
380
381// The data saved for comparing functions.
382template <typename T>
383class FuncDataT : public OrderedChangedData<BlockDataT<T>> {
384public:
385 FuncDataT(std::string S) : EntryBlockName(S) {}
386
387 // Return the name of the entry block
388 std::string getEntryBlockName() const { return EntryBlockName; }
389
390protected:
391 std::string EntryBlockName;
392};
393
394// The data saved for comparing IRs.
395template <typename T>
396class IRDataT : public OrderedChangedData<FuncDataT<T>> {};
397
398// Abstract template base class for a class that compares two IRs. The
399// class is created with the 2 IRs to compare and then compare is called.
400// The static function analyzeIR is used to build up the IR representation.
401template <typename T> class IRComparer {
402public:
404 : Before(Before), After(After) {}
405
406 // Compare the 2 IRs. \p handleFunctionCompare is called to handle the
407 // compare of a function. When \p InModule is set,
408 // this function is being handled as part of comparing a module.
409 void compare(
410 bool CompareModule,
411 std::function<void(bool InModule, unsigned Minor,
412 const FuncDataT<T> &Before, const FuncDataT<T> &After)>
413 CompareFunc);
414
415 // Analyze \p IR and build the IR representation in \p Data.
416 static void analyzeIR(Any IR, IRDataT<T> &Data);
417
418protected:
419 // Generate the data for \p F into \p Data.
420 template <typename FunctionT>
421 static bool generateFunctionData(IRDataT<T> &Data, const FunctionT &F);
422
425};
426
427// A change printer that prints out in-line differences in the basic
428// blocks. It uses an InlineComparer to do the comparison so it shows
429// the differences prefixed with '-' and '+' for code that is removed
430// and added, respectively. Changes to the IR that do not affect basic
431// blocks are not reported as having changed the IR. The option
432// -print-module-scope does not affect this change reporter.
433class InLineChangePrinter : public TextChangeReporter<IRDataT<EmptyData>> {
434public:
435 InLineChangePrinter(bool VerboseMode, bool ColourMode)
437 UseColour(ColourMode) {}
440
441protected:
442 // Create a representation of the IR.
444 IRDataT<EmptyData> &Output) override;
445
446 // Called when an interesting IR has changed.
447 void handleAfter(StringRef PassID, std::string &Name,
449 const IRDataT<EmptyData> &After, Any) override;
450
452 StringRef Divider, bool InModule, unsigned Minor,
455
457};
458
460 bool DebugLogging;
461
462public:
463 VerifyInstrumentation(bool DebugLogging) : DebugLogging(DebugLogging) {}
466};
467
468/// This class implements --time-trace functionality for new pass manager.
469/// It provides the pass-instrumentation callbacks that measure the pass
470/// execution time. They collect time tracing info by TimeProfiler.
472public:
474 // We intend this to be unique per-compilation, thus no copies.
476 void operator=(const TimeProfilingPassesHandler &) = delete;
477
479
480private:
481 // Implementation of pass instrumentation callbacks.
482 void runBeforePass(StringRef PassID, Any IR);
483 void runAfterPass();
484};
485
486// Class that holds transitions between basic blocks. The transitions
487// are contained in a map of values to names of basic blocks.
488class DCData {
489public:
490 // Fill the map with the transitions from basic block \p B.
491 DCData(const BasicBlock &B);
492 DCData(const MachineBasicBlock &B);
493
494 // Return an iterator to the names of the successor blocks.
496 return Successors.begin();
497 }
499 return Successors.end();
500 }
501
502 // Return the label of the basic block reached on a transition on \p S.
504 assert(Successors.count(S) == 1 && "Expected to find successor.");
505 return Successors.find(S)->getValue();
506 }
507
508protected:
509 // Add a transition to \p Succ on \p Label
511 std::pair<std::string, std::string> SS{Succ.str(), Label.str()};
512 Successors.insert(SS);
513 }
514
516};
517
518// A change reporter that builds a website with links to pdf files showing
519// dot control flow graphs with changed instructions shown in colour.
520class DotCfgChangeReporter : public ChangeReporter<IRDataT<DCData>> {
521public:
523 ~DotCfgChangeReporter() override;
525
526protected:
527 // Initialize the HTML file and output the header.
528 bool initializeHTML();
529
530 // Called on the first IR processed.
531 void handleInitialIR(Any IR) override;
532 // Called before and after a pass to get the representation of the IR.
534 IRDataT<DCData> &Output) override;
535 // Called when the pass is not iteresting.
536 void omitAfter(StringRef PassID, std::string &Name) override;
537 // Called when an interesting IR has changed.
538 void handleAfter(StringRef PassID, std::string &Name,
540 Any) override;
541 // Called when an interesting pass is invalidated.
542 void handleInvalidated(StringRef PassID) override;
543 // Called when the IR or pass is not interesting.
544 void handleFiltered(StringRef PassID, std::string &Name) override;
545 // Called when an ignored pass is encountered.
546 void handleIgnored(StringRef PassID, std::string &Name) override;
547
548 // Generate the pdf file into \p Dir / \p PDFFileName using \p DotFile as
549 // input and return the html <a> tag with \Text as the content.
550 static std::string genHTML(StringRef Text, StringRef DotFile,
551 StringRef PDFFileName);
552
554 StringRef Divider, bool InModule, unsigned Minor,
556 const FuncDataT<DCData> &After);
557
558 unsigned N = 0;
559 std::unique_ptr<raw_fd_ostream> HTML;
560};
561
562// Print IR on crash.
564public:
566 : SavedIR("*** Dump of IR Before Last Pass Unknown ***") {}
569 void reportCrashIR();
570
571protected:
572 std::string SavedIR;
573
574private:
575 // The crash reporter that will report on a crash.
576 static PrintCrashIRInstrumentation *CrashReporter;
577 // Crash handler registered when print-on-crash is specified.
578 static void SignalHandler(void *);
579};
580
581/// This class provides an interface to register all the standard pass
582/// instrumentations and manages their state (if any).
585 PrintPassInstrumentation PrintPass;
586 TimePassesHandler TimePasses;
587 TimeProfilingPassesHandler TimeProfilingPasses;
590 PreservedCFGCheckerInstrumentation PreservedCFGChecker;
591 IRChangedPrinter PrintChangedIR;
592 PseudoProbeVerifier PseudoProbeVerification;
593 InLineChangePrinter PrintChangedDiff;
594 DotCfgChangeReporter WebsiteChangeReporter;
595 PrintCrashIRInstrumentation PrintCrashIR;
596 IRChangedTester ChangeTester;
598
599 bool VerifyEach;
600
601public:
602 StandardInstrumentations(LLVMContext &Context, bool DebugLogging,
603 bool VerifyEach = false,
604 PrintPassOptions PrintPassOpts = PrintPassOptions());
605
606 // Register all the standard instrumentation callbacks. If \p FAM is nullptr
607 // then PreservedCFGChecker is not enabled.
609 ModuleAnalysisManager *MAM = nullptr);
610
611 TimePassesHandler &getTimePasses() { return TimePasses; }
612};
613
614extern template class ChangeReporter<std::string>;
615extern template class TextChangeReporter<std::string>;
616
617extern template class BlockDataT<EmptyData>;
618extern template class FuncDataT<EmptyData>;
619extern template class IRDataT<EmptyData>;
620extern template class ChangeReporter<IRDataT<EmptyData>>;
621extern template class TextChangeReporter<IRDataT<EmptyData>>;
622extern template class IRComparer<EmptyData>;
623
624} // namespace llvm
625
626#endif
basic Basic Alias true
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
std::string Name
Legalize the Machine IR a function s Machine IR
Definition: Legalizer.cpp:81
#define F(x, y, z)
Definition: MD5.cpp:55
#define G(x, y, z)
Definition: MD5.cpp:56
Machine Check Debug Module
This file declares the interface for bisecting optimizations.
ModuleAnalysisManager MAM
bool VerifyEach
PassInstrumentationCallbacks PIC
This header defines classes/functions to handle pass execution timing information with interfaces for...
static StringRef getName(Value *V)
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file contains some templates that are useful if you are working with the STL at all.
This file provides the interface for the pseudo probe implementation for AutoFDO.
This file defines the SmallVector class.
StringSet - A set-like wrapper for the StringMap.
static const char PassName[]
API to communicate dependencies between analyses during invalidation.
Definition: PassManager.h:292
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:253
Definition: Any.h:28
LLVM Basic Block Representation.
Definition: BasicBlock.h:61
bool operator!=(const BlockDataT &That) const
bool operator==(const BlockDataT &That) const
StringRef getLabel() const
BlockDataT(const MachineBasicBlock &B)
BlockDataT(const BasicBlock &B)
const T & getData() const
StringRef getBody() const
Value handle with callbacks on RAUW and destruction.
Definition: ValueHandle.h:383
virtual void deleted()
Callback for Value destruction.
Definition: ValueHandle.h:414
void saveIRBeforePass(Any IR, StringRef PassID, StringRef PassName)
virtual void handleFiltered(StringRef PassID, std::string &Name)=0
virtual void handleAfter(StringRef PassID, std::string &Name, const IRUnitT &Before, const IRUnitT &After, Any)=0
virtual void handleIgnored(StringRef PassID, std::string &Name)=0
virtual void generateIRRepresentation(Any IR, StringRef PassID, IRUnitT &Output)=0
virtual void handleInitialIR(Any IR)=0
void handleIRAfterPass(Any IR, StringRef PassID, StringRef PassName)
virtual void handleInvalidated(StringRef PassID)=0
void registerRequiredCallbacks(PassInstrumentationCallbacks &PIC)
std::vector< IRUnitT > BeforeStack
virtual void omitAfter(StringRef PassID, std::string &Name)=0
void handleInvalidatedPass(StringRef PassID)
ChangeReporter(bool RunInVerboseMode)
void addSuccessorLabel(StringRef Succ, StringRef Label)
StringRef getSuccessorLabel(StringRef S) const
StringMap< std::string > Successors
StringMap< std::string >::const_iterator end() const
StringMap< std::string >::const_iterator begin() const
std::unique_ptr< raw_fd_ostream > HTML
void handleInvalidated(StringRef PassID) override
void generateIRRepresentation(Any IR, StringRef PassID, IRDataT< DCData > &Output) override
static std::string genHTML(StringRef Text, StringRef DotFile, StringRef PDFFileName)
void handleFunctionCompare(StringRef Name, StringRef Prefix, StringRef PassID, StringRef Divider, bool InModule, unsigned Minor, const FuncDataT< DCData > &Before, const FuncDataT< DCData > &After)
void registerCallbacks(PassInstrumentationCallbacks &PIC)
void handleIgnored(StringRef PassID, std::string &Name) override
void handleAfter(StringRef PassID, std::string &Name, const IRDataT< DCData > &Before, const IRDataT< DCData > &After, Any) override
void handleFiltered(StringRef PassID, std::string &Name) override
void omitAfter(StringRef PassID, std::string &Name) override
EmptyData(const MachineBasicBlock &)
EmptyData(const BasicBlock &)
std::string getEntryBlockName() const
~IRChangedPrinter() override
void handleAfter(StringRef PassID, std::string &Name, const std::string &Before, const std::string &After, Any) override
void registerCallbacks(PassInstrumentationCallbacks &PIC)
void generateIRRepresentation(Any IR, StringRef PassID, std::string &Output) override
void handleIgnored(StringRef PassID, std::string &Name) override
void handleAfter(StringRef PassID, std::string &Name, const std::string &Before, const std::string &After, Any) override
void omitAfter(StringRef PassID, std::string &Name) override
void handleInvalidated(StringRef PassID) override
void handleIR(const std::string &IR, StringRef PassID)
void handleInitialIR(Any IR) override
void registerCallbacks(PassInstrumentationCallbacks &PIC)
void handleFiltered(StringRef PassID, std::string &Name) override
const IRDataT< T > & Before
static bool generateFunctionData(IRDataT< T > &Data, const FunctionT &F)
const IRDataT< T > & After
IRComparer(const IRDataT< T > &Before, const IRDataT< T > &After)
static void analyzeIR(Any IR, IRDataT< T > &Data)
void compare(bool CompareModule, std::function< void(bool InModule, unsigned Minor, const FuncDataT< T > &Before, const FuncDataT< T > &After)> CompareFunc)
void registerCallbacks(PassInstrumentationCallbacks &PIC)
InLineChangePrinter(bool VerboseMode, bool ColourMode)
void handleAfter(StringRef PassID, std::string &Name, const IRDataT< EmptyData > &Before, const IRDataT< EmptyData > &After, Any) override
void generateIRRepresentation(Any IR, StringRef PassID, IRDataT< EmptyData > &Output) override
void handleFunctionCompare(StringRef Name, StringRef Prefix, StringRef PassID, StringRef Divider, bool InModule, unsigned Minor, const FuncDataT< EmptyData > &Before, const FuncDataT< EmptyData > &After)
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
void registerCallbacks(PassInstrumentationCallbacks &PIC)
OptPassGateInstrumentation(LLVMContext &Context)
void registerCallbacks(PassInstrumentationCallbacks &PIC)
bool shouldRun(StringRef PassName, Any IR)
Extensions to this class implement mechanisms to disable passes and individual optimizations at compi...
Definition: OptBisect.h:24
bool operator==(const OrderedChangedData< T > &That) const
static void report(const OrderedChangedData &Before, const OrderedChangedData &After, function_ref< void(const T *, const T *)> HandlePair)
const std::vector< std::string > & getOrder() const
std::vector< std::string > Order
const StringMap< T > & getData() const
std::vector< std::string > & getOrder()
This class manages callbacks registration, as well as provides a way for PassInstrumentation to pass ...
A set of analyses that are preserved following a run of a transformation pass.
Definition: Analysis.h:111
void registerCallbacks(PassInstrumentationCallbacks &PIC, ModuleAnalysisManager &MAM)
void registerCallbacks(PassInstrumentationCallbacks &PIC)
Instrumentation to print IR before/after passes.
void registerCallbacks(PassInstrumentationCallbacks &PIC)
void registerCallbacks(PassInstrumentationCallbacks &PIC)
PrintPassInstrumentation(bool Enabled, PrintPassOptions Opts)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1209
This class provides an interface to register all the standard pass instrumentations and manages their...
void registerCallbacks(PassInstrumentationCallbacks &PIC, ModuleAnalysisManager *MAM=nullptr)
StringMap - This is an unconventional map that is specialized for handling keys that are "strings",...
Definition: StringMap.h:128
iterator end()
Definition: StringMap.h:220
iterator begin()
Definition: StringMap.h:219
iterator find(StringRef Key)
Definition: StringMap.h:233
size_type count(StringRef Key) const
count - Return 1 if the element is in the map, 0 otherwise.
Definition: StringMap.h:276
bool insert(MapEntryTy *KeyValue)
insert - Insert the specified key/value pair into the map.
Definition: StringMap.h:308
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
std::string str() const
str - Get the contents as an std::string.
Definition: StringRef.h:215
void handleInitialIR(Any IR) override
void handleInvalidated(StringRef PassID) override
void omitAfter(StringRef PassID, std::string &Name) override
void handleIgnored(StringRef PassID, std::string &Name) override
void handleFiltered(StringRef PassID, std::string &Name) override
This class implements -time-passes functionality for new pass manager.
This class implements –time-trace functionality for new pass manager.
void registerCallbacks(PassInstrumentationCallbacks &PIC)
void operator=(const TimeProfilingPassesHandler &)=delete
TimeProfilingPassesHandler(const TimeProfilingPassesHandler &)=delete
Value * getValPtr() const
Definition: ValueHandle.h:99
LLVM Value Representation.
Definition: Value.h:74
void registerCallbacks(PassInstrumentationCallbacks &PIC, ModuleAnalysisManager *MAM)
An efficient, type-erasing, non-owning reference to a callable.
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
A raw_ostream that writes to an std::string.
Definition: raw_ostream.h:661
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
Definition: STLExtras.h:1729
Implement std::hash so that hash_code can be used in STL containers.
Definition: BitVector.h:858
void deleted() override
Callback for Value destruction.
void allUsesReplacedWith(Value *) override
Callback for Value RAUW.
std::optional< DenseMap< intptr_t, BBGuard > > BBGuards
static void printDiff(raw_ostream &out, const CFG &Before, const CFG &After)
bool invalidate(Function &F, const PreservedAnalyses &PA, FunctionAnalysisManager::Invalidator &)
DenseMap< const BasicBlock *, DenseMap< const BasicBlock *, unsigned > > Graph
bool SkipAnalyses
Don't print information for analyses.
bool Verbose
Print adaptors and pass managers.
bool Indent
Indent based on hierarchy.