Home
last modified time | relevance | path

Searched refs:PluginName (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DPluginManager.h25 #define LLDB_PLUGIN_DEFINE_ADV(ClassName, PluginName) \ argument
27 void lldb_initialize_##PluginName() { ClassName::Initialize(); } \
28 void lldb_terminate_##PluginName() { ClassName::Terminate(); } \
31 #define LLDB_PLUGIN_DEFINE(PluginName) \ argument
32 LLDB_PLUGIN_DEFINE_ADV(PluginName, PluginName)
35 #define LLDB_PLUGIN_DECLARE(PluginName) \ argument
37 extern void lldb_initialize_##PluginName(); \
38 extern void lldb_terminate_##PluginName(); \
41 #define LLDB_PLUGIN_INITIALIZE(PluginName) lldb_initialize_##PluginName() argument
42 #define LLDB_PLUGIN_TERMINATE(PluginName) lldb_terminate_##PluginName() argument
/freebsd/contrib/llvm-project/llvm/include/llvm/Passes/
H A DPassPlugin.h46 const char *PluginName; member
73 StringRef getPluginName() const { return Info.PluginName; } in getPluginName()
/freebsd/contrib/llvm-project/lldb/source/Plugins/
H A DPlugins.def.in25 # error Please define the macro LLDB_PLUGIN(PluginName)
/freebsd/lib/clang/include/Plugins/
H A DPlugins.def25 # error Please define the macro LLDB_PLUGIN(PluginName)
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DCommonArgs.cpp825 const char *PluginName = IsOSAIX ? "/libLTO" : "/LLVMgold"; in addLTOOptions() local
841 PluginName + Suffix, in addLTOOptions()
H A DClang.cpp7529 StringRef PluginName = ArgValue.substr(0, FirstDashIndex); in ConstructJob() local
7534 if (PluginName.empty()) { in ConstructJob()
7538 << PluginName << A->getAsString(Args); in ConstructJob()
7543 CmdArgs.push_back(Args.MakeArgString(Twine("-plugin-arg-") + PluginName)); in ConstructJob()