X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FSupport%2FPluginLoader.cpp;h=39e3c0afa538216fa139ac0525497823f437cc87;hb=ef9531efedd2233269f670227fb0e6aae7480d53;hp=4cacd01613368a7e82f4126c20379ff4739f56a0;hpb=56d86168720849e94cb39809a29e7c391300460d;p=oota-llvm.git diff --git a/lib/Support/PluginLoader.cpp b/lib/Support/PluginLoader.cpp index 4cacd016133..39e3c0afa53 100644 --- a/lib/Support/PluginLoader.cpp +++ b/lib/Support/PluginLoader.cpp @@ -1,33 +1,35 @@ //===-- PluginLoader.cpp - Implement -load command line option ------------===// +// +// The LLVM Compiler Infrastructure // -// This file implements the -load 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. +// This file was developed by the LLVM research group and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// // -// 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. +// This file implements the -load command line option handler. // //===----------------------------------------------------------------------===// -#include "Support/DynamicLinker.h" -#include "Support/CommandLine.h" -#include "Config/dlfcn.h" -#include "Config/link.h" +#define DONT_GET_PLUGIN_LOADER_OPTION +#include "llvm/Support/PluginLoader.h" +#include "llvm/System/DynamicLibrary.h" #include -namespace { - struct PluginLoader { - void operator=(const std::string &Filename) { - std::string ErrorMessage; - if (LinkDynamicObject (Filename.c_str (), &ErrorMessage)) - std::cerr << "Error opening '" << Filename << "': " << ErrorMessage - << "\n -load request ignored.\n"; +using namespace llvm; + +void PluginLoader::operator=(const std::string &Filename) { + std::string ErrorMessage; + try { + sys::DynamicLibrary::LoadLibraryPermanently(Filename.c_str()); + } catch (const std::string& errmsg) { + if (errmsg.empty()) { + ErrorMessage = "Unknown"; + } else { + ErrorMessage = errmsg; } - }; + } + if (!ErrorMessage.empty()) + std::cerr << "Error opening '" << Filename << "': " << ErrorMessage + << "\n -load request ignored.\n"; } - -// This causes operator= above to be invoked for every -load option. -static cl::opt > -LoadOpt("load", cl::ZeroOrMore, cl::value_desc("plugin.so"), - cl::desc("Load the specified plugin"));