X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FSupport%2FPluginLoader.cpp;h=2924cfa38897225d257100c1763de32822c42d5b;hb=b78e2ae4caabc67bcacd1e2921e6d9f8ca3a79ad;hp=1e67b94f69dc9bec4e7a477921939ffb600865f7;hpb=7f7d16b62f9789c378a489a65ad51d50687c4c36;p=oota-llvm.git diff --git a/lib/Support/PluginLoader.cpp b/lib/Support/PluginLoader.cpp index 1e67b94f69d..2924cfa3889 100644 --- a/lib/Support/PluginLoader.cpp +++ b/lib/Support/PluginLoader.cpp @@ -1,41 +1,47 @@ //===-- PluginLoader.cpp - Implement -load command line option ------------===// -// +// // The LLVM Compiler Infrastructure // -// 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. -// -//===----------------------------------------------------------------------===// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. // -// 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. +//===----------------------------------------------------------------------===// // -// 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" -#include +#define DONT_GET_PLUGIN_LOADER_OPTION +#include "llvm/Support/ManagedStatic.h" +#include "llvm/Support/PluginLoader.h" +#include "llvm/Support/raw_ostream.h" +#include "llvm/Support/DynamicLibrary.h" +#include "llvm/Support/Mutex.h" +#include using namespace llvm; -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"; - } - }; +static ManagedStatic > Plugins; +static ManagedStatic > PluginsLock; + +void PluginLoader::operator=(const std::string &Filename) { + sys::SmartScopedLock Lock(*PluginsLock); + std::string Error; + if (sys::DynamicLibrary::LoadLibraryPermanently(Filename.c_str(), &Error)) { + errs() << "Error opening '" << Filename << "': " << Error + << "\n -load request ignored.\n"; + } else { + Plugins->push_back(Filename); + } } -// This causes operator= above to be invoked for every -load option. -static cl::opt > -LoadOpt("load", cl::ZeroOrMore, cl::value_desc("plugin" SHLIBEXT), - cl::desc("Load the specified plugin")); +unsigned PluginLoader::getNumPlugins() { + sys::SmartScopedLock Lock(*PluginsLock); + return Plugins.isConstructed() ? Plugins->size() : 0; +} + +std::string &PluginLoader::getPlugin(unsigned num) { + sys::SmartScopedLock Lock(*PluginsLock); + assert(Plugins.isConstructed() && num < Plugins->size() && + "Asking for an out of bounds plugin"); + return (*Plugins)[num]; +}