| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Instrumentation/ |
| H A D | ValueProfileCollector.cpp | 44 PluginT Plugin; member in __anon42f4d7fd0111::PluginChain 49 : PluginChain<Ts...>(F, TLI), Plugin(F, TLI) {} in PluginChain() 53 Plugin.run(Candidates); in get()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | ObjectLinkingLayer.h | 60 class Plugin { 66 virtual ~Plugin(); 126 ObjectLinkingLayer &addPlugin(std::unique_ptr<Plugin> P) { in addPlugin() 202 std::vector<std::unique_ptr<Plugin>> Plugins; 205 class EHFrameRegistrationPlugin : public ObjectLinkingLayer::Plugin {
|
| H A D | DebuggerSupportPlugin.h | 28 class GDBJITDebugInfoRegistrationPlugin : public ObjectLinkingLayer::Plugin {
|
| H A D | DebugObjectManagerPlugin.h | 48 class DebugObjectManagerPlugin : public ObjectLinkingLayer::Plugin {
|
| H A D | COFFPlatform.h | 90 class COFFPlatformPlugin : public ObjectLinkingLayer::Plugin {
|
| H A D | MachOPlatform.h | 122 class MachOPlatformPlugin : public ObjectLinkingLayer::Plugin {
|
| H A D | ELFNixPlatform.h | 129 class ELFNixPlatformPlugin : public ObjectLinkingLayer::Plugin {
|
| /openbsd-src/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/ |
| H A D | Plugin.pm | 1 package CPAN::Plugin; 83 package CPAN::Plugin;
|
| /openbsd-src/gnu/llvm/clang/lib/FrontendTool/ |
| H A D | ExecuteCompilerInvocation.cpp | 80 for (const FrontendPluginRegistry::entry &Plugin : in CreateFrontendBaseAction() local 82 if (Plugin.getName() == CI.getFrontendOpts().ActionName) { in CreateFrontendBaseAction() 83 std::unique_ptr<PluginASTAction> P(Plugin.instantiate()); in CreateFrontendBaseAction() 88 CI.getFrontendOpts().PluginArgs[std::string(Plugin.getName())])) in CreateFrontendBaseAction()
|
| /openbsd-src/gnu/llvm/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()
|
| H A D | CompilationDatabase.cpp | 70 std::unique_ptr<CompilationDatabasePlugin> Plugin(Database.instantiate()); in loadFromDirectory() local 72 Plugin->loadFromDirectory(BuildDirectory, DatabaseErrorMessage)) in loadFromDirectory()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Test-Harness/t/lib/App/Prove/Plugin/ |
| H A D | Dummy.pm | 1 package App::Prove::Plugin::Dummy;
|
| H A D | Dummy2.pm | 1 package App::Prove::Plugin::Dummy2;
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Frontend/ |
| H A D | CheckerRegistry.cpp | 72 for (const std::string &Plugin : Plugins) { in CheckerRegistry() local 76 DynamicLibrary::getPermanentLibrary(Plugin.c_str(), &ErrorMsg); in CheckerRegistry() 78 Diags.Report(diag::err_fe_unable_to_load_plugin) << Plugin << ErrorMsg; in CheckerRegistry() 88 << llvm::sys::path::filename(Plugin); in CheckerRegistry()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/CPAN/t/ |
| H A D | 03pkgs.t | 15 Plugin
|
| /openbsd-src/gnu/llvm/llvm/tools/gold/ |
| H A D | README.txt | 1 The LLVM Gold LTO Plugin
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ |
| H A D | Plugins.def.in | 1 /*===- lldb/source/Plugin/Plugins.def ---------------------------*- C++ -*-===*\
|
| /openbsd-src/gnu/llvm/clang/lib/Frontend/ |
| H A D | FrontendAction.cpp | 168 for (const FrontendPluginRegistry::entry &Plugin : in CreateWrappedASTConsumer() local 170 if (Plugin.getName() == Arg) in CreateWrappedASTConsumer() 193 for (const FrontendPluginRegistry::entry &Plugin : in CreateWrappedASTConsumer() local 195 std::unique_ptr<PluginASTAction> P = Plugin.instantiate(); in CreateWrappedASTConsumer() 202 Plugin.getName())) { in CreateWrappedASTConsumer() 213 CI.getFrontendOpts().PluginArgs[std::string(Plugin.getName())])) { in CreateWrappedASTConsumer()
|
| /openbsd-src/gnu/llvm/llvm/tools/opt/ |
| H A D | opt.cpp | 471 auto Plugin = PassPlugin::Load(PluginPath); in main() local 472 if (!Plugin) { in main() 477 PluginList.emplace_back(Plugin.get()); in main()
|
| /openbsd-src/gnu/llvm/llvm/docs/ |
| H A D | WritingAnLLVMNewPMPass.rst | 285 auto Plugin = PassPlugin::Load(PathToPlugin); 286 if (!Plugin) 289 Plugin.registerPassBuilderCallbacks(PB);
|
| H A D | JITLink.rst | 51 ``ObjectLinkingLayer::Plugin``, which users can subclass in order to inspect and 59 The ``ObjectLinkingLayer::Plugin`` class provides the following methods: 111 Plugin authors are required to implement the ``notifyFailed``, 117 Plugin instances are added to an ``ObjectLinkingLayer`` by 122 // Plugin class to print the set of defined symbols in an object when that 124 class MyPlugin : public ObjectLinkingLayer::Plugin { 176 // Plugin triggers here when our lookup of main triggers linking of main.o 579 ``ObjectLinkingLayer::Plugin``. 961 linker rules are accomplished via an ``ObjectLinkingLayer::Plugin`` installed by
|
| /openbsd-src/gnu/usr.bin/clang/include/lldb/Plugins/ |
| H A D | Plugins.def | 1 /*===- lldb/source/Plugin/Plugins.def ---------------------------*- C++ -*-===*\
|
| /openbsd-src/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/Plugin/ |
| H A D | Specfile.pm | 54 package CPAN::Plugin::Specfile;
|
| /openbsd-src/gnu/llvm/llvm/examples/OrcV2Examples/LLJITWithObjectLinkingLayerPlugin/ |
| H A D | LLJITWithObjectLinkingLayerPlugin.cpp | 45 class MyPlugin : public ObjectLinkingLayer::Plugin {
|
| /openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/ |
| H A D | ObjectLinkingLayer.cpp | 600 ObjectLinkingLayer::Plugin::~Plugin() = default;
|