X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FSupport%2FPluginLoader.cpp;h=36caecffeede769e1d5012b51101f6bcddee61ac;hb=21aa347c2816aa8fc635ad05c5ab786234b32c7e;hp=cbec6fa7d4d611544d15996c2f4effe6eeec9223;hpb=13a253aae77594bb3fd804417e4aa3d4ffe0229b;p=oota-llvm.git diff --git a/lib/Support/PluginLoader.cpp b/lib/Support/PluginLoader.cpp index cbec6fa7d4d..36caecffeed 100644 --- a/lib/Support/PluginLoader.cpp +++ b/lib/Support/PluginLoader.cpp @@ -1,10 +1,10 @@ //===-- 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 handler. @@ -12,14 +12,36 @@ //===----------------------------------------------------------------------===// #define DONT_GET_PLUGIN_LOADER_OPTION -#include "Support/PluginLoader.h" -#include "Support/DynamicLinker.h" -#include +#include "llvm/Support/ManagedStatic.h" +#include "llvm/Support/PluginLoader.h" +#include "llvm/Support/raw_ostream.h" +#include "llvm/System/DynamicLibrary.h" +#include "llvm/System/Mutex.h" +#include using namespace llvm; +static ManagedStatic > Plugins; +static ManagedStatic > PluginsLock; + void PluginLoader::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"; + 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); + } +} + +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]; }