7410895c3afc6b86faf71b0a1ba50cdc47114dcc
[oota-llvm.git] / include / llvm / Support / PluginLoader.h
1 //===-- Support/PluginLoader.h - Provide -load option to tool ---*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // A tool can #include this file to get a -load option that allows the user to
11 // load arbitrary shared objects into the tool's address space.  Note that this
12 // header can only be included by a program ONCE, so it should never to used by
13 // library authors.
14 //
15 //===----------------------------------------------------------------------===//
16
17 #ifndef SUPPORT_PLUGINLOADER_H
18 #define SUPPORT_PLUGINLOADER_H
19
20 #include "Support/CommandLine.h"
21
22 namespace llvm {
23   struct PluginLoader {
24     void operator=(const std::string &Filename);
25   };
26
27 #ifndef DONT_GET_PLUGIN_LOADER_OPTION
28   // This causes operator= above to be invoked for every -load option.
29   static cl::opt<PluginLoader, false, cl::parser<std::string> >
30     LoadOpt("load", cl::ZeroOrMore, cl::value_desc("pluginfilename"),
31             cl::desc("Load the specified plugin"));
32 #endif
33 }
34
35 #endif