X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FLinker%2FLinker.h;h=26c27c3aae8f933105d9e7a1b3311c98a1f89046;hb=d0b2625563b73c10a5163db3337e75315e26ca8e;hp=6254bbb6d6d534cf0aa0f7a70f9dd78e334c9e68;hpb=c8a1169c935ad9d3dfbdd4f72d80abf8f5acb03c;p=oota-llvm.git diff --git a/include/llvm/Linker/Linker.h b/include/llvm/Linker/Linker.h index 6254bbb6d6d..26c27c3aae8 100644 --- a/include/llvm/Linker/Linker.h +++ b/include/llvm/Linker/Linker.h @@ -10,54 +10,54 @@ #ifndef LLVM_LINKER_LINKER_H #define LLVM_LINKER_LINKER_H -#include "llvm/ADT/SmallPtrSet.h" -#include +#include "llvm/IR/FunctionInfo.h" +#include "llvm/Linker/IRMover.h" namespace llvm { - -class Comdat; -class GlobalValue; class Module; -class StringRef; class StructType; +class Type; /// This class provides the core functionality of linking in LLVM. It keeps a /// pointer to the merged module so far. It doesn't take ownership of the /// module since it is assumed that the user of this class will want to do /// something with it after the linking. class Linker { - public: - enum LinkerMode { - DestroySource = 0, // Allow source module to be destroyed. - PreserveSource = 1 // Preserve the source module. - }; - - Linker(Module *M, bool SuppressWarnings=false); - ~Linker(); - - Module *getModule() const { return Composite; } - void deleteModule(); - - /// \brief Link \p Src into the composite. The source is destroyed if - /// \p Mode is DestroySource and preserved if it is PreserveSource. - /// If \p ErrorMsg is not null, information about any error is written - /// to it. - /// Returns true on error. - bool linkInModule(Module *Src, unsigned Mode, std::string *ErrorMsg); - bool linkInModule(Module *Src, std::string *ErrorMsg) { - return linkInModule(Src, Linker::DestroySource, ErrorMsg); - } - - static bool LinkModules(Module *Dest, Module *Src, unsigned Mode, - std::string *ErrorMsg); - - private: - Module *Composite; - SmallPtrSet IdentifiedStructTypes; - - bool SuppressWarnings; + IRMover Mover; + +public: + enum Flags { + None = 0, + OverrideFromSrc = (1 << 0), + LinkOnlyNeeded = (1 << 1), + InternalizeLinkedSymbols = (1 << 2) + }; + + Linker(Module &M); + + /// \brief Link \p Src into the composite. The source is destroyed. + /// + /// Passing OverrideSymbols as true will have symbols from Src + /// shadow those in the Dest. + /// For ThinLTO function importing/exporting the \p FunctionInfoIndex + /// is passed. If \p FunctionsToImport is provided, only the functions that + /// are part of the set will be imported from the source module. + /// + /// Returns true on error. + bool linkInModule(Module &Src, unsigned Flags = Flags::None, + const FunctionInfoIndex *Index = nullptr, + DenseSet *FunctionsToImport = nullptr); + + static bool linkModules(Module &Dest, Module &Src, + unsigned Flags = Flags::None); + }; +/// Create a new module with exported local functions renamed and promoted +/// for ThinLTO. +std::unique_ptr renameModuleForThinLTO(std::unique_ptr &M, + const FunctionInfoIndex *Index); + } // End llvm namespace #endif