Index: cmake/modules/HandleLLVMOptions.cmake =================================================================== --- cmake/modules/HandleLLVMOptions.cmake +++ cmake/modules/HandleLLVMOptions.cmake @@ -658,7 +658,7 @@ # Plugin support # FIXME: Make this configurable. -if(WIN32 OR CYGWIN) +if(CYGWIN) if(BUILD_SHARED_LIBS) set(LLVM_ENABLE_PLUGINS ON) else() Index: include/llvm/Support/Registry.h =================================================================== --- include/llvm/Support/Registry.h +++ include/llvm/Support/Registry.h @@ -14,9 +14,10 @@ #ifndef LLVM_SUPPORT_REGISTRY_H #define LLVM_SUPPORT_REGISTRY_H -#include "llvm/ADT/iterator_range.h" #include "llvm/ADT/STLExtras.h" +#include "llvm/ADT/iterator_range.h" #include "llvm/Support/Compiler.h" +#include "llvm/Support/DynamicLibrary.h" #include namespace llvm { @@ -59,20 +60,23 @@ /// class node { friend class iterator; + friend Registry; node *Next; const entry& Val; public: - node(const entry& V) : Next(nullptr), Val(V) { - if (Tail) - Tail->Next = this; - else - Head = this; - Tail = this; - } + node(const entry &V) : Next(nullptr), Val(V) {} }; + static void add_node(node *N) { + if (Tail) + Tail->Next = N; + else + Head = N; + Tail = N; + } + /// Iterators for registry entries. /// class iterator { @@ -112,8 +116,38 @@ public: Add(const char *Name, const char *Desc) - : Entry(Name, Desc, CtorFn), Node(Entry) {} + : Entry(Name, Desc, CtorFn), Node(Entry) { + add_node(&Node); + } }; + + /// A dynamic import facility. This is used on Windows to + /// import the entries added in the plugin. + static void import(sys::DynamicLibrary &DL, const char *RegistryName) { + typedef void *(*GetRegistry)(); + std::string Name("LLVMGetRegistry_"); + Name.append(RegistryName); + GetRegistry Getter = + reinterpret_cast(DL.getAddressOfSymbol(Name.c_str())); + if (Getter) { + typedef std::pair Info; + Info *I = static_cast(Getter()); + iterator begin(I->first); + iterator end(I->second); + for (++end; begin != end; ++begin) { + // This Node object needs to remain alive for the + // duration of the program. + add_node(new node(*begin)); + } + } + } + + /// Retrieve the data to be passed across DLL boundaries when + /// importing registries from another DLL on Windows. + static void *exportRegistry() { + static std::pair Info(Head, Tail); + return &Info; + } }; @@ -126,4 +160,15 @@ typename Registry::node *Registry::Tail; } // end namespace llvm +#ifdef _MSC_VER +#define LLVM_EXPORT_REGISTRY(REGISTRY_CLASS) \ + extern "C" { \ + __declspec(dllexport) void *__cdecl LLVMGetRegistry_##REGISTRY_CLASS() { \ + return REGISTRY_CLASS::exportRegistry(); \ + } \ + } +#define LLVM_IMPORT_REGISTRY(REGISTRY_CLASS, DL) \ + REGISTRY_CLASS::import(DL, #REGISTRY_CLASS) +#endif + #endif // LLVM_SUPPORT_REGISTRY_H