1 //===- PassRegistry.cpp - Pass Registration Implementation ----------------===//
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
7 //===----------------------------------------------------------------------===//
9 // This file implements the PassRegistry, with which passes are registered on
10 // initialization, and supports the PassManager in dependency resolution.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/PassRegistry.h"
15 #include "llvm/ADT/STLExtras.h"
16 #include "llvm/Pass.h"
17 #include "llvm/PassInfo.h"
18 #include "llvm/Support/ManagedStatic.h"
25 // FIXME: We use ManagedStatic to erase the pass registrar on shutdown.
26 // Unfortunately, passes are registered with static ctors, and having
27 // llvm_shutdown clear this map prevents successful resurrection after
28 // llvm_shutdown is run. Ideally we should find a solution so that we don't
29 // leak the map, AND can still resurrect after shutdown.
30 static ManagedStatic
<PassRegistry
> PassRegistryObj
;
31 PassRegistry
*PassRegistry::getPassRegistry() {
32 return &*PassRegistryObj
;
35 //===----------------------------------------------------------------------===//
39 PassRegistry::~PassRegistry() = default;
41 const PassInfo
*PassRegistry::getPassInfo(const void *TI
) const {
42 sys::SmartScopedReader
<true> Guard(Lock
);
43 return PassInfoMap
.lookup(TI
);
46 const PassInfo
*PassRegistry::getPassInfo(StringRef Arg
) const {
47 sys::SmartScopedReader
<true> Guard(Lock
);
48 return PassInfoStringMap
.lookup(Arg
);
51 //===----------------------------------------------------------------------===//
52 // Pass Registration mechanism
55 void PassRegistry::registerPass(const PassInfo
&PI
, bool ShouldFree
) {
56 sys::SmartScopedWriter
<true> Guard(Lock
);
58 PassInfoMap
.insert(std::make_pair(PI
.getTypeInfo(), &PI
)).second
;
59 assert(Inserted
&& "Pass registered multiple times!");
61 PassInfoStringMap
[PI
.getPassArgument()] = &PI
;
63 // Notify any listeners.
64 for (auto *Listener
: Listeners
)
65 Listener
->passRegistered(&PI
);
68 ToFree
.push_back(std::unique_ptr
<const PassInfo
>(&PI
));
71 void PassRegistry::enumerateWith(PassRegistrationListener
*L
) {
72 sys::SmartScopedReader
<true> Guard(Lock
);
73 for (auto PassInfoPair
: PassInfoMap
)
74 L
->passEnumerate(PassInfoPair
.second
);
77 /// Analysis Group Mechanisms.
78 void PassRegistry::registerAnalysisGroup(const void *InterfaceID
,
80 PassInfo
&Registeree
, bool isDefault
,
82 PassInfo
*InterfaceInfo
= const_cast<PassInfo
*>(getPassInfo(InterfaceID
));
84 // First reference to Interface, register it now.
85 registerPass(Registeree
);
86 InterfaceInfo
= &Registeree
;
88 assert(Registeree
.isAnalysisGroup() &&
89 "Trying to join an analysis group that is a normal pass!");
92 PassInfo
*ImplementationInfo
= const_cast<PassInfo
*>(getPassInfo(PassID
));
93 assert(ImplementationInfo
&&
94 "Must register pass before adding to AnalysisGroup!");
96 sys::SmartScopedWriter
<true> Guard(Lock
);
98 // Make sure we keep track of the fact that the implementation implements
100 ImplementationInfo
->addInterfaceImplemented(InterfaceInfo
);
103 assert(InterfaceInfo
->getNormalCtor() == nullptr &&
104 "Default implementation for analysis group already specified!");
106 ImplementationInfo
->getNormalCtor() &&
107 "Cannot specify pass as default if it does not have a default ctor");
108 InterfaceInfo
->setNormalCtor(ImplementationInfo
->getNormalCtor());
113 ToFree
.push_back(std::unique_ptr
<const PassInfo
>(&Registeree
));
116 void PassRegistry::addRegistrationListener(PassRegistrationListener
*L
) {
117 sys::SmartScopedWriter
<true> Guard(Lock
);
118 Listeners
.push_back(L
);
121 void PassRegistry::removeRegistrationListener(PassRegistrationListener
*L
) {
122 sys::SmartScopedWriter
<true> Guard(Lock
);
124 auto I
= llvm::find(Listeners
, L
);