summaryrefslogtreecommitdiff
path: root/lib/Support/PluginLoader.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-23 17:56:53 +0000
committerChris Lattner <sabre@nondot.org>2002-07-23 17:56:53 +0000
commitc1b5d092a0f89db5356ae79d8cc4213118f230dd (patch)
tree4b0c9531f31baf1a2c974fa95a94d504d093cc2e /lib/Support/PluginLoader.cpp
parent6dc0193e68dfd35588c5f3c7a941c1ca505d5629 (diff)
downloadllvm-c1b5d092a0f89db5356ae79d8cc4213118f230dd.tar.gz
llvm-c1b5d092a0f89db5356ae79d8cc4213118f230dd.tar.bz2
llvm-c1b5d092a0f89db5356ae79d8cc4213118f230dd.tar.xz
Initial checkin
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3005 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/PluginLoader.cpp')
-rw-r--r--lib/Support/PluginLoader.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/Support/PluginLoader.cpp b/lib/Support/PluginLoader.cpp
new file mode 100644
index 0000000000..c2e4e89813
--- /dev/null
+++ b/lib/Support/PluginLoader.cpp
@@ -0,0 +1,30 @@
+//===-- PluginLoader.cpp - Implement -load command line option ------------===//
+//
+// This file implements the -load <plugin> command line option processor. When
+// linked into a program, this new command line option is available that allows
+// users to load shared objects into the running program.
+//
+// Note that there are no symbols exported by the .o file generated for this
+// .cpp file. Because of this, a program must link against support.o instead of
+// support.a: otherwise this translation unit will not be included.
+//
+//===----------------------------------------------------------------------===//
+
+#include "Support/CommandLine.h"
+#include <dlfcn.h>
+#include <link.h>
+
+namespace {
+ struct PluginLoader {
+ void operator=(const std::string &Filename) {
+ if (dlopen(Filename.c_str(), RTLD_NOW) == 0)
+ std::cerr << "Error opening '" << Filename << "': " << dlerror()
+ << "\n -load request ignored.\n";
+ }
+ };
+}
+
+// This causes operator= above to be invoked for every -load option.
+static cl::opt<PluginLoader, false, cl::parser<string> >
+LoadOpt("load", cl::ZeroOrMore, cl::value_desc("plugin.so"),
+ cl::desc("Load the specified plugin"));