HomeSort by: relevance | last modified time | path
    Searched defs:Plugin (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
ValueProfileCollector.cpp 24 /// A plugin-based class that takes an arbitrary number of Plugin types.
25 /// Each plugin type must satisfy the following API:
26 /// 1) the constructor must take a `Function &f`. Typically, the plugin would
30 /// such that the plugin would append its result into the vector parameter.
47 PluginT Plugin;
52 : PluginChain<Ts...>(F, TLI), Plugin(F, TLI) {}
56 Plugin.run(Candidates);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
ObjectLinkingLayer.h 62 /// Plugin instances can be added to the ObjectLinkingLayer to receive
65 class Plugin {
70 virtual ~Plugin();
126 ObjectLinkingLayer &addPlugin(std::unique_ptr<Plugin> P) {
201 std::vector<std::unique_ptr<Plugin>> Plugins;
204 class EHFrameRegistrationPlugin : public ObjectLinkingLayer::Plugin {
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
ObjectLinkingLayer.cpp 564 ObjectLinkingLayer::Plugin::~Plugin() {}
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
CommonArgs.cpp 67 CmdArgs.push_back(Args.MakeArgString(Twine("--plugin-opt=-pass-remarks=") +
72 Twine("--plugin-opt=-pass-remarks-missed=") + A->getValue()));
76 Twine("--plugin-opt=-pass-remarks-analysis=") + A->getValue()));
97 Args.MakeArgString(Twine("--plugin-opt=opt-remarks-filename=") + F +
103 Twine("--plugin-opt=opt-remarks-passes=") + A->getValue()));
106 Twine("--plugin-opt=opt-remarks-format=") + Format.data()));
113 CmdArgs.push_back("--plugin-opt=opt-remarks-with-hotness");
118 Twine("--plugin-opt=opt-remarks-hotness-threshold=") + A->getValue()));
485 // Tell the linker to load the plugin. This has to come before
486 // AddLinkerInputs as gold requires -plugin to come before any -plugin-op
    [all...]

Completed in 32 milliseconds