/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | ObjectLinkingLayer.h | 59 class Plugin { 65 virtual ~Plugin(); 125 ObjectLinkingLayer &addPlugin(std::shared_ptr<Plugin> P) { in addPlugin() 135 void removePlugin(Plugin &P) { in removePlugin() 137 auto I = llvm::find_if(Plugins, [&](const std::shared_ptr<Plugin> &Elem) { in removePlugin() 211 std::vector<std::shared_ptr<Plugin>> Plugins; 214 class EHFrameRegistrationPlugin : public ObjectLinkingLayer::Plugin {
|
H A D | DebuggerSupportPlugin.h |
|
H A D | DebugObjectManagerPlugin.h | 48 class DebugObjectManagerPlugin : public ObjectLinkingLayer::Plugin {
|
H A D | COFFPlatform.h | 94 class COFFPlatformPlugin : public ObjectLinkingLayer::Plugin {
|
H A D | ELFNixPlatform.h | 132 class ELFNixPlatformPlugin : public ObjectLinkingLayer::Plugin {
|
H A D | MachOPlatform.h | 197 class MachOPlatformPlugin : public ObjectLinkingLayer::Plugin {
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | ValueProfileCollector.cpp | 44 PluginT Plugin; member in __anoncb397ce60111::PluginChain 49 : PluginChain<Ts...>(F, TLI), Plugin(F, TLI) {} in PluginChain() 53 Plugin.run(Candidates); in get()
|
/freebsd/contrib/llvm-project/clang/lib/FrontendTool/ |
H A D | ExecuteCompilerInvocation.cpp | 84 for (const FrontendPluginRegistry::entry &Plugin : in CreateFrontendBaseAction() local 86 if (Plugin.getName() == CI.getFrontendOpts().ActionName) { in CreateFrontendBaseAction() 87 std::unique_ptr<PluginASTAction> P(Plugin.instantiate()); in CreateFrontendBaseAction() 92 CI.getFrontendOpts().PluginArgs[std::string(Plugin.getName())])) in CreateFrontendBaseAction()
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/ |
H A D | Execution.cpp | 70 std::unique_ptr<ToolExecutorPlugin> Plugin(TEPlugin.instantiate()); in createExecutorFromCommandLineArgsImpl() local 72 Plugin->create(*OptionsParser); in createExecutorFromCommandLineArgsImpl()
|
/freebsd/contrib/llvm-project/llvm/tools/opt/ |
H A D | optdriver.cpp | 454 auto Plugin = PassPlugin::Load(PluginPath); in optMain() local 455 if (!Plugin) in optMain() 456 report_fatal_error(Plugin.takeError(), /*gen_crash_diag=*/false); in optMain() 457 PluginList.emplace_back(Plugin.get()); in optMain()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Debugging/ |
H A D | VTuneSupportPlugin.h | 27 class VTuneSupportPlugin : public ObjectLinkingLayer::Plugin {
|
/freebsd/sys/contrib/device-tree/Bindings/phy/ |
H A D | bcm-ns-usb3-phy.txt | 7 - usb3-dmp-syscon: phandle to syscon with DMP (Device Management Plugin)
|
/freebsd/crypto/openssl/external/perl/Text-Template-1.56/ |
H A D | MANIFEST | 1 # This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.012.
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | FrontendAction.cpp | 174 for (const FrontendPluginRegistry::entry &Plugin : in CreateWrappedASTConsumer() local 176 if (Plugin.getName() == Arg) in CreateWrappedASTConsumer() 199 for (const FrontendPluginRegistry::entry &Plugin : in CreateWrappedASTConsumer() local 201 std::unique_ptr<PluginASTAction> P = Plugin.instantiate(); in CreateWrappedASTConsumer() 208 Plugin.getName())) { in CreateWrappedASTConsumer() 219 CI.getFrontendOpts().PluginArgs[std::string(Plugin.getName())])) { in CreateWrappedASTConsumer()
|
H A D | CompilerInstance.cpp | 1136 for (const FrontendPluginRegistry::entry &Plugin : in LoadRequestedPlugins() local 1138 std::unique_ptr<PluginASTAction> P(Plugin.instantiate()); in LoadRequestedPlugins() 1141 getFrontendOpts().ActionName = Plugin.getName().str(); in LoadRequestedPlugins()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ |
H A D | Plugins.def.in | 1 /*===- lldb/source/Plugin/Plugins.def ---------------------------*- C++ -*-===*\
|
/freebsd/lib/clang/include/Plugins/ |
H A D | Plugins.def | 1 /*===- lldb/source/Plugin/Plugins.def ---------------------------*- C++ -*-===*\
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | ObjectLinkingLayer.cpp | 668 std::vector<std::shared_ptr<ObjectLinkingLayer::Plugin>> Plugins; 677 ObjectLinkingLayer::Plugin::~Plugin() = default;
|
H A D | ELFNixPlatform.cpp | 619 ObjectLinkingLayer::Plugin::SyntheticSymbolDependenciesMap in addInitializerSupportPasses()
|
H A D | COFFPlatform.cpp | 789 ObjectLinkingLayer::Plugin::SyntheticSymbolDependenciesMap
|
H A D | MachOPlatform.cpp | 863 ObjectLinkingLayer::Plugin::SyntheticSymbolDependenciesMap
|
/freebsd/contrib/unbound/contrib/ |
H A D | unbound.spec_fedora | 55 Summary: Plugin for the munin / munin-node monitoring package 61 Plugin for the munin / munin-node monitoring package
|
/freebsd/crypto/heimdal/lib/krb5/ |
H A D | krb5_err.et | 272 error_code KRB5_PLUGIN_OP_NOTSUPP, "Plugin does not support the operaton"
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | Options.td | 321 def disassemble_options_plugin : Option<"plugin", "P">, Arg<"Plugin">, 663 def platform_process_attach_plugin : Option<"plugin", "P">, Arg<"Plugin">, 691 def process_launch_plugin : Option<"plugin", "P">, Arg<"Plugin">, 720 def process_attach_plugin : Option<"plugin", "P">, Arg<"Plugin">, 749 def process_connect_plugin : Option<"plugin", "p">, Arg<"Plugin">, 787 OptionalArg<"Plugin">, Desc<"Specify a plugin name to create the core file. "
|
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
H A D | CommonArgs.cpp | 838 SmallString<1024> Plugin; in addLTOOptions() local 842 Plugin); in addLTOOptions() 843 CmdArgs.push_back(Args.MakeArgString(Twine(PluginPrefix) + Plugin)); in addLTOOptions()
|