X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FLinker%2FLinker.h;h=38fa5562f300c6e2997d34c204a2379233536c61;hb=76c60c37de0a6250ce3be524e121d95ba7035c2e;hp=610b1ddf9893b888a7aa98ff784b288cea86d0a8;hpb=6fc1509fb784bc587bba4d62e14671e8e69f723c;p=oota-llvm.git diff --git a/include/llvm/Linker/Linker.h b/include/llvm/Linker/Linker.h index 610b1ddf989..38fa5562f30 100644 --- a/include/llvm/Linker/Linker.h +++ b/include/llvm/Linker/Linker.h @@ -68,11 +68,10 @@ public: InternalizeLinkedSymbols = (1 << 2) }; - Linker(Module *M, DiagnosticHandlerFunction DiagnosticHandler); - Linker(Module *M); + Linker(Module &M, DiagnosticHandlerFunction DiagnosticHandler); + Linker(Module &M); - Module *getModule() const { return Composite; } - void deleteModule(); + Module &getModule() const { return Composite; } /// \brief Link \p Src into the composite. The source is destroyed. /// Passing OverrideSymbols as true will have symbols from Src @@ -81,23 +80,19 @@ public: /// is passed. If a \p FuncToImport is provided, only that single /// function is imported from the source module. /// Returns true on error. - bool linkInModule(Module *Src, unsigned Flags = Flags::None, + bool linkInModule(Module &Src, unsigned Flags = Flags::None, const FunctionInfoIndex *Index = nullptr, Function *FuncToImport = nullptr); - /// \brief Set the composite to the passed-in module. - void setModule(Module *Dst); - - static bool LinkModules(Module *Dest, Module *Src, + static bool linkModules(Module &Dest, Module &Src, DiagnosticHandlerFunction DiagnosticHandler, unsigned Flags = Flags::None); - static bool LinkModules(Module *Dest, Module *Src, + static bool linkModules(Module &Dest, Module &Src, unsigned Flags = Flags::None); private: - void init(Module *M, DiagnosticHandlerFunction DiagnosticHandler); - Module *Composite; + Module &Composite; IdentifiedStructTypeSet IdentifiedStructTypes;