X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=blobdiff_plain;f=include%2Fllvm%2FLinker%2FLinker.h;h=f09cf1029a4be123645d4d47882d6cf6fed9d5f2;hp=50922e3ebe225131900182083eba224e92ac4afc;hb=73ef481b528e1ab0bd943e178d384a926b4cbad9;hpb=0660f174cfea90586a2ef3cab733431e2365d018 diff --git a/include/llvm/Linker/Linker.h b/include/llvm/Linker/Linker.h index 50922e3ebe2..f09cf1029a4 100644 --- a/include/llvm/Linker/Linker.h +++ b/include/llvm/Linker/Linker.h @@ -10,60 +10,68 @@ #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 DiagnosticInfo; class Module; 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. - }; - - typedef std::function - DiagnosticHandlerFunction; + IRMover Mover; - Linker(Module *M, DiagnosticHandlerFunction DiagnosticHandler); - Linker(Module *M); - ~Linker(); +public: + enum Flags { + None = 0, + OverrideFromSrc = (1 << 0), + LinkOnlyNeeded = (1 << 1), + InternalizeLinkedSymbols = (1 << 2) + }; - Module *getModule() const { return Composite; } - void deleteModule(); + Linker(Module &M); - /// \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); - bool linkInModule(Module *Src) { - return linkInModule(Src, Linker::DestroySource); - } + /// \brief Link \p Src into the composite. + /// + /// 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. + /// The \p ValIDToTempMDMap is populated by the linker when function + /// importing is performed. + /// + /// Returns true on error. + bool linkInModule(std::unique_ptr Src, unsigned Flags = Flags::None, + const FunctionInfoIndex *Index = nullptr, + DenseSet *FunctionsToImport = nullptr, + DenseMap *ValIDToTempMDMap = nullptr); - static bool - LinkModules(Module *Dest, Module *Src, unsigned Mode, - DiagnosticHandlerFunction DiagnosticHandler); + /// This exists to implement the deprecated LLVMLinkModules C api. Don't use + /// for anything else. + bool linkInModuleForCAPI(Module &Src); - static bool - LinkModules(Module *Dest, Module *Src, unsigned Mode); + static bool linkModules(Module &Dest, std::unique_ptr Src, + unsigned Flags = Flags::None); - - private: - Module *Composite; - SmallPtrSet IdentifiedStructTypes; - DiagnosticHandlerFunction DiagnosticHandler; + /// \brief Link metadata from \p Src into the composite. The source is + /// destroyed. + /// + /// The \p ValIDToTempMDMap sound have been populated earlier during function + /// importing from \p Src. + bool linkInMetadata(Module &Src, + DenseMap *ValIDToTempMDMap); }; +/// Perform in-place global value handling on the given Module for +/// exported local functions renamed and promoted for ThinLTO. +std::unique_ptr renameModuleForThinLTO(std::unique_ptr M, + const FunctionInfoIndex *Index); + } // End llvm namespace #endif