diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2008-10-03 21:26:27 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2008-10-03 21:26:27 +0000 |
commit | 8517dfad9ddeba2c14d58a263c779d94e0935a93 (patch) | |
tree | 57edc5b4298a4f6e05ef9dc944016ae9384e314d /llvm/tools/llvmc2/driver/Plugin.cpp | |
parent | 4b928f655007678e77ca0b52bb4ef51b17e58d3d (diff) | |
download | bcm5719-llvm-8517dfad9ddeba2c14d58a263c779d94e0935a93.tar.gz bcm5719-llvm-8517dfad9ddeba2c14d58a263c779d94e0935a93.zip |
Rename llvmc2/core to llvmc2/driver.
Makefiles try to remove 'core' by default, so it wasn't a very good name.
llvm-svn: 57031
Diffstat (limited to 'llvm/tools/llvmc2/driver/Plugin.cpp')
-rw-r--r-- | llvm/tools/llvmc2/driver/Plugin.cpp | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/llvm/tools/llvmc2/driver/Plugin.cpp b/llvm/tools/llvmc2/driver/Plugin.cpp new file mode 100644 index 00000000000..c9b3960c1e7 --- /dev/null +++ b/llvm/tools/llvmc2/driver/Plugin.cpp @@ -0,0 +1,64 @@ +//===--- Plugin.cpp - The LLVM Compiler Driver ------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open +// Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// Plugin support for llvmc2. +// +//===----------------------------------------------------------------------===// + +#include "llvm/CompilerDriver/Plugin.h" + +#include <vector> + +namespace { + + // Registry::Add<> does not do lifetime management (probably issues + // with static constructor/destructor ordering), so we have to + // implement it here. + // + // All this static registration/life-before-main model seems + // unnecessary convoluted to me. + + static bool pluginListInitialized = false; + typedef std::vector<const llvmc::BasePlugin*> PluginList; + static PluginList Plugins; +} + +namespace llvmc { + + PluginLoader::PluginLoader() { + if (!pluginListInitialized) { + for (PluginRegistry::iterator B = PluginRegistry::begin(), + E = PluginRegistry::end(); B != E; ++B) + Plugins.push_back(B->instantiate()); + } + pluginListInitialized = true; + } + + PluginLoader::~PluginLoader() { + if (pluginListInitialized) { + for (PluginList::iterator B = Plugins.begin(), E = Plugins.end(); + B != E; ++B) + delete (*B); + } + pluginListInitialized = false; + } + + void PluginLoader::PopulateLanguageMap(LanguageMap& langMap) { + for (PluginList::iterator B = Plugins.begin(), E = Plugins.end(); + B != E; ++B) + (*B)->PopulateLanguageMap(langMap); + } + + void PluginLoader::PopulateCompilationGraph(CompilationGraph& graph) { + for (PluginList::iterator B = Plugins.begin(), E = Plugins.end(); + B != E; ++B) + (*B)->PopulateCompilationGraph(graph); + } + +} |