[llvm] r220608 - Update the error handling of lib/Linker.

Alexander Kornienko alexfh at google.com
Mon Oct 27 12:52:47 PDT 2014


This change makes the users of the relevant interfaces add a ton of
boilerplate code in order to get an error. Can we add an adapter to make
the transition easier? E.g. a diagnostic handler method that would get a
pointer to a raw_ostream as the context which could then be used with
either errs() or raw_string_ostream?

On Fri, Oct 24, 2014 at 9:06 PM, Rafael Espindola <
rafael.espindola at gmail.com> wrote:

> Author: rafael
> Date: Fri Oct 24 23:06:10 2014
> New Revision: 220608
>
> URL: http://llvm.org/viewvc/llvm-project?rev=220608&view=rev
> Log:
> Update the error handling of lib/Linker.
>
> Instead of passing a std::string&, use the new diagnostic infrastructure.
>
> Modified:
>     llvm/trunk/include/llvm/IR/DiagnosticInfo.h
>     llvm/trunk/include/llvm/LTO/LTOCodeGenerator.h
>     llvm/trunk/include/llvm/Linker/Linker.h
>     llvm/trunk/lib/LTO/LTOCodeGenerator.cpp
>     llvm/trunk/lib/Linker/LinkModules.cpp
>     llvm/trunk/tools/bugpoint/BugDriver.cpp
>     llvm/trunk/tools/bugpoint/Miscompilation.cpp
>     llvm/trunk/tools/gold/gold-plugin.cpp
>     llvm/trunk/tools/llvm-link/llvm-link.cpp
>     llvm/trunk/tools/llvm-lto/llvm-lto.cpp
>     llvm/trunk/tools/lto/lto.cpp
>     llvm/trunk/unittests/Linker/LinkModulesTest.cpp
>
> Modified: llvm/trunk/include/llvm/IR/DiagnosticInfo.h
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/DiagnosticInfo.h?rev=220608&r1=220607&r2=220608&view=diff
>
> ==============================================================================
> --- llvm/trunk/include/llvm/IR/DiagnosticInfo.h (original)
> +++ llvm/trunk/include/llvm/IR/DiagnosticInfo.h Fri Oct 24 23:06:10 2014
> @@ -47,6 +47,7 @@ enum DiagnosticSeverity {
>  enum DiagnosticKind {
>    DK_InlineAsm,
>    DK_StackSize,
> +  DK_Linker,
>    DK_DebugMetadataVersion,
>    DK_SampleProfile,
>    DK_OptimizationRemark,
>
> Modified: llvm/trunk/include/llvm/LTO/LTOCodeGenerator.h
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/LTO/LTOCodeGenerator.h?rev=220608&r1=220607&r2=220608&view=diff
>
> ==============================================================================
> --- llvm/trunk/include/llvm/LTO/LTOCodeGenerator.h (original)
> +++ llvm/trunk/include/llvm/LTO/LTOCodeGenerator.h Fri Oct 24 23:06:10 2014
> @@ -64,7 +64,7 @@ struct LTOCodeGenerator {
>    ~LTOCodeGenerator();
>
>    // Merge given module, return true on success.
> -  bool addModule(struct LTOModule*, std::string &errMsg);
> +  bool addModule(struct LTOModule *);
>
>    void setTargetOptions(TargetOptions options);
>    void setDebugInfo(lto_debug_model);
>
> Modified: llvm/trunk/include/llvm/Linker/Linker.h
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Linker/Linker.h?rev=220608&r1=220607&r2=220608&view=diff
>
> ==============================================================================
> --- llvm/trunk/include/llvm/Linker/Linker.h (original)
> +++ llvm/trunk/include/llvm/Linker/Linker.h Fri Oct 24 23:06:10 2014
> @@ -11,14 +11,10 @@
>  #define LLVM_LINKER_LINKER_H
>
>  #include "llvm/ADT/SmallPtrSet.h"
> -#include <string>
>
>  namespace llvm {
>
> -class Comdat;
> -class GlobalValue;
>  class Module;
> -class StringRef;
>  class StructType;
>
>  /// This class provides the core functionality of linking in LLVM. It
> keeps a
> @@ -32,7 +28,7 @@ class Linker {
>        PreserveSource = 1 // Preserve the source module.
>      };
>
> -    Linker(Module *M, bool SuppressWarnings=false);
> +    Linker(Module *M);
>      ~Linker();
>
>      Module *getModule() const { return Composite; }
> @@ -43,19 +39,16 @@ class Linker {
>      /// 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);
> +    bool linkInModule(Module *Src, unsigned Mode);
> +    bool linkInModule(Module *Src) {
> +      return linkInModule(Src, Linker::DestroySource);
>      }
>
> -    static bool LinkModules(Module *Dest, Module *Src, unsigned Mode,
> -                            std::string *ErrorMsg);
> +    static bool LinkModules(Module *Dest, Module *Src, unsigned Mode);
>
>    private:
>      Module *Composite;
>      SmallPtrSet<StructType*, 32> IdentifiedStructTypes;
> -
> -    bool SuppressWarnings;
>  };
>
>  } // End llvm namespace
>
> Modified: llvm/trunk/lib/LTO/LTOCodeGenerator.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/LTO/LTOCodeGenerator.cpp?rev=220608&r1=220607&r2=220608&view=diff
>
> ==============================================================================
> --- llvm/trunk/lib/LTO/LTOCodeGenerator.cpp (original)
> +++ llvm/trunk/lib/LTO/LTOCodeGenerator.cpp Fri Oct 24 23:06:10 2014
> @@ -113,8 +113,8 @@ void LTOCodeGenerator::initializeLTOPass
>    initializeCFGSimplifyPassPass(R);
>  }
>
> -bool LTOCodeGenerator::addModule(LTOModule* mod, std::string& errMsg) {
> -  bool ret = IRLinker.linkInModule(&mod->getModule(), &errMsg);
> +bool LTOCodeGenerator::addModule(LTOModule *mod) {
> +  bool ret = IRLinker.linkInModule(&mod->getModule());
>
>    const std::vector<const char*> &undefs = mod->getAsmUndefinedRefs();
>    for (int i = 0, e = undefs.size(); i != e; ++i)
>
> Modified: llvm/trunk/lib/Linker/LinkModules.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Linker/LinkModules.cpp?rev=220608&r1=220607&r2=220608&view=diff
>
> ==============================================================================
> --- llvm/trunk/lib/Linker/LinkModules.cpp (original)
> +++ llvm/trunk/lib/Linker/LinkModules.cpp Fri Oct 24 23:06:10 2014
> @@ -17,6 +17,9 @@
>  #include "llvm/ADT/SetVector.h"
>  #include "llvm/ADT/SmallString.h"
>  #include "llvm/IR/Constants.h"
> +#include "llvm/IR/DiagnosticInfo.h"
> +#include "llvm/IR/DiagnosticPrinter.h"
> +#include "llvm/IR/LLVMContext.h"
>  #include "llvm/IR/Module.h"
>  #include "llvm/IR/TypeFinder.h"
>  #include "llvm/Support/CommandLine.h"
> @@ -376,6 +379,20 @@ namespace {
>      Value *materializeValueFor(Value *V) override;
>    };
>
> +  namespace {
> +  class LinkDiagnosticInfo : public DiagnosticInfo {
> +    const Twine &Msg;
> +
> +  public:
> +    LinkDiagnosticInfo(DiagnosticSeverity Severity, const Twine &Msg);
> +    void print(DiagnosticPrinter &DP) const override;
> +  };
> +  LinkDiagnosticInfo::LinkDiagnosticInfo(DiagnosticSeverity Severity,
> +                                         const Twine &Msg)
> +      : DiagnosticInfo(DK_Linker, Severity), Msg(Msg) {}
> +  void LinkDiagnosticInfo::print(DiagnosticPrinter &DP) const { DP <<
> Msg; }
> +  }
> +
>    /// ModuleLinker - This is an implementation class for the LinkModules
>    /// function, which is the entrypoint for this file.
>    class ModuleLinker {
> @@ -406,29 +423,27 @@ namespace {
>      // Vector of functions to lazily link in.
>      std::vector<Function*> LazilyLinkFunctions;
>
> -    bool SuppressWarnings;
> -
>    public:
> -    std::string ErrorMsg;
> -
> -    ModuleLinker(Module *dstM, TypeSet &Set, Module *srcM, unsigned mode,
> -                 bool SuppressWarnings=false)
> +    ModuleLinker(Module *dstM, TypeSet &Set, Module *srcM, unsigned mode)
>          : DstM(dstM), SrcM(srcM), TypeMap(Set),
> -          ValMaterializer(TypeMap, DstM, LazilyLinkFunctions), Mode(mode),
> -          SuppressWarnings(SuppressWarnings) {}
> +          ValMaterializer(TypeMap, DstM, LazilyLinkFunctions), Mode(mode)
> {}
>
>      bool run();
>
>    private:
> -    bool shouldLinkFromSource(const GlobalValue &Dest, const GlobalValue
> &Src);
> +    bool shouldLinkFromSource(bool &LinkFromSrc, const GlobalValue &Dest,
> +                              const GlobalValue &Src);
>
> -    /// emitError - Helper method for setting a message and returning an
> error
> -    /// code.
> +    /// Helper method for setting a message and returning an error code.
>      bool emitError(const Twine &Message) {
> -      ErrorMsg = Message.str();
> +      DstM->getContext().diagnose(LinkDiagnosticInfo(DS_Error, Message));
>        return true;
>      }
>
> +    void emitWarning(const Twine &Message) {
> +      DstM->getContext().diagnose(LinkDiagnosticInfo(DS_Warning,
> Message));
> +    }
> +
>      bool getComdatLeader(Module *M, StringRef ComdatName,
>                           const GlobalVariable *&GVar);
>      bool computeResultingSelectionKind(StringRef ComdatName,
> @@ -672,7 +687,8 @@ bool ModuleLinker::getComdatResult(const
>                                         LinkFromSrc);
>  }
>
> -bool ModuleLinker::shouldLinkFromSource(const GlobalValue &Dest,
> +bool ModuleLinker::shouldLinkFromSource(bool &LinkFromSrc,
> +                                        const GlobalValue &Dest,
>                                          const GlobalValue &Src) {
>    bool SrcIsDeclaration = Src.isDeclarationForLinker();
>    bool DestIsDeclaration = Dest.isDeclarationForLinker();
> @@ -683,42 +699,56 @@ bool ModuleLinker::shouldLinkFromSource(
>    if (SrcIsDeclaration) {
>      // If Src is external or if both Src & Dest are external..  Just link
> the
>      // external globals, we aren't adding anything.
> -    if (Src.hasDLLImportStorageClass())
> +    if (Src.hasDLLImportStorageClass()) {
>        // If one of GVs is marked as DLLImport, result should be
> dllimport'ed.
> -      return DestIsDeclaration;
> +      LinkFromSrc = DestIsDeclaration;
> +      return false;
> +    }
>      // If the Dest is weak, use the source linkage.
> -    return Dest.hasExternalWeakLinkage();
> +    LinkFromSrc = Dest.hasExternalWeakLinkage();
> +    return false;
>    }
>
> -  if (DestIsDeclaration)
> +  if (DestIsDeclaration) {
>      // If Dest is external but Src is not:
> -    return true;
> +    LinkFromSrc = true;
> +    return false;
> +  }
>
>    if (Src.hasCommonLinkage()) {
> -    if (Dest.hasLinkOnceLinkage() || Dest.hasWeakLinkage())
> -      return true;
> +    if (Dest.hasLinkOnceLinkage() || Dest.hasWeakLinkage()) {
> +      LinkFromSrc = true;
> +      return false;
> +    }
>
> -    if (!Dest.hasCommonLinkage())
> +    if (!Dest.hasCommonLinkage()) {
> +      LinkFromSrc = false;
>        return false;
> +    }
>
>      uint64_t DestSize =
> DL.getTypeAllocSize(Dest.getType()->getElementType());
>      uint64_t SrcSize =
> DL.getTypeAllocSize(Src.getType()->getElementType());
> -    return SrcSize > DestSize;
> +    LinkFromSrc = SrcSize > DestSize;
> +    return false;
>    }
>
>    if (Src.isWeakForLinker()) {
>      assert(!Dest.hasExternalWeakLinkage());
>      assert(!Dest.hasAvailableExternallyLinkage());
>
> -    if (Dest.hasLinkOnceLinkage() && Src.hasWeakLinkage())
> -      return true;
> +    if (Dest.hasLinkOnceLinkage() && Src.hasWeakLinkage()) {
> +      LinkFromSrc = true;
> +      return false;
> +    }
>
> +    LinkFromSrc = false;
>      return false;
>    }
>
>    if (Dest.isWeakForLinker()) {
>      assert(Src.hasExternalLinkage());
> -    return true;
> +    LinkFromSrc = true;
> +    return false;
>    }
>
>    assert(!Src.hasExternalWeakLinkage());
> @@ -742,9 +772,7 @@ bool ModuleLinker::getLinkageResult(Glob
>    assert(!Src->hasLocalLinkage() &&
>           "If Src has internal linkage, Dest shouldn't be set!");
>
> -  assert(ErrorMsg.empty());
> -  LinkFromSrc = shouldLinkFromSource(*Dest, *Src);
> -  if (!ErrorMsg.empty())
> +  if (shouldLinkFromSource(LinkFromSrc, *Dest, *Src))
>      return true;
>
>    if (LinkFromSrc)
> @@ -1470,10 +1498,8 @@ bool ModuleLinker::linkModuleFlagsMetada
>      case Module::Warning: {
>        // Emit a warning if the values differ.
>        if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
> -        if (!SuppressWarnings) {
> -          errs() << "WARNING: linking module flags '" << ID->getString()
> -                 << "': IDs have conflicting values";
> -        }
> +        emitWarning("linking module flags '" + ID->getString() +
> +                    "': IDs have conflicting values");
>        }
>        continue;
>      }
> @@ -1540,23 +1566,19 @@ bool ModuleLinker::run() {
>
>    if (SrcM->getDataLayout() && DstM->getDataLayout() &&
>        *SrcM->getDataLayout() != *DstM->getDataLayout()) {
> -    if (!SuppressWarnings) {
> -      errs() << "WARNING: Linking two modules of different data layouts:
> '"
> -             << SrcM->getModuleIdentifier() << "' is '"
> -             << SrcM->getDataLayoutStr() << "' whereas '"
> -             << DstM->getModuleIdentifier() << "' is '"
> -             << DstM->getDataLayoutStr() << "'\n";
> -    }
> +    emitWarning("Linking two modules of different data layouts: '" +
> +                SrcM->getModuleIdentifier() + "' is '" +
> +                SrcM->getDataLayoutStr() + "' whereas '" +
> +                DstM->getModuleIdentifier() + "' is '" +
> +                DstM->getDataLayoutStr() + "'\n");
>    }
>    if (!SrcM->getTargetTriple().empty() &&
>        DstM->getTargetTriple() != SrcM->getTargetTriple()) {
> -    if (!SuppressWarnings) {
> -      errs() << "WARNING: Linking two modules of different target
> triples: "
> -             << SrcM->getModuleIdentifier() << "' is '"
> -             << SrcM->getTargetTriple() << "' whereas '"
> -             << DstM->getModuleIdentifier() << "' is '"
> -             << DstM->getTargetTriple() << "'\n";
> -    }
> +    emitWarning("Linking two modules of different target triples: " +
> +                SrcM->getModuleIdentifier() + "' is '" +
> +                SrcM->getTargetTriple() + "' whereas '" +
> +                DstM->getModuleIdentifier() + "' is '" +
> +                DstM->getTargetTriple() + "'\n");
>    }
>
>    // Append the module inline asm string.
> @@ -1626,10 +1648,8 @@ bool ModuleLinker::run() {
>
>      // Materialize if needed.
>      if (SF->isMaterializable()) {
> -      if (std::error_code EC = SF->materialize()) {
> -        ErrorMsg = EC.message();
> -        return true;
> -      }
> +      if (std::error_code EC = SF->materialize())
> +        return emitError(EC.message());
>      }
>
>      // Skip if no body (function is external).
> @@ -1679,10 +1699,8 @@ bool ModuleLinker::run() {
>
>        // Materialize if needed.
>        if (SF->isMaterializable()) {
> -        if (std::error_code EC = SF->materialize()) {
> -          ErrorMsg = EC.message();
> -          return true;
> -        }
> +        if (std::error_code EC = SF->materialize())
> +          return emitError(EC.message());
>        }
>
>        // Skip if no body (function is external).
> @@ -1711,8 +1729,7 @@ bool ModuleLinker::run() {
>    return false;
>  }
>
> -Linker::Linker(Module *M, bool SuppressWarnings)
> -    : Composite(M), SuppressWarnings(SuppressWarnings) {
> +Linker::Linker(Module *M) : Composite(M) {
>    TypeFinder StructTypes;
>    StructTypes.run(*M, true);
>    IdentifiedStructTypes.insert(StructTypes.begin(), StructTypes.end());
> @@ -1726,15 +1743,9 @@ void Linker::deleteModule() {
>    Composite = nullptr;
>  }
>
> -bool Linker::linkInModule(Module *Src, unsigned Mode, std::string
> *ErrorMsg) {
> -  ModuleLinker TheLinker(Composite, IdentifiedStructTypes, Src, Mode,
> -                         SuppressWarnings);
> -  if (TheLinker.run()) {
> -    if (ErrorMsg)
> -      *ErrorMsg = TheLinker.ErrorMsg;
> -    return true;
> -  }
> -  return false;
> +bool Linker::linkInModule(Module *Src, unsigned Mode) {
> +  ModuleLinker TheLinker(Composite, IdentifiedStructTypes, Src, Mode);
> +  return TheLinker.run();
>  }
>
>
>  //===----------------------------------------------------------------------===//
> @@ -1746,10 +1757,9 @@ bool Linker::linkInModule(Module *Src, u
>  /// error occurs, true is returned and ErrorMsg (if not null) is set to
> indicate
>  /// the problem.  Upon failure, the Dest module could be in a modified
> state,
>  /// and shouldn't be relied on to be consistent.
> -bool Linker::LinkModules(Module *Dest, Module *Src, unsigned Mode,
> -                         std::string *ErrorMsg) {
> +bool Linker::LinkModules(Module *Dest, Module *Src, unsigned Mode) {
>    Linker L(Dest);
> -  return L.linkInModule(Src, Mode, ErrorMsg);
> +  return L.linkInModule(Src, Mode);
>  }
>
>
>  //===----------------------------------------------------------------------===//
> @@ -1758,10 +1768,6 @@ bool Linker::LinkModules(Module *Dest, M
>
>  LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src,
>                           LLVMLinkerMode Mode, char **OutMessages) {
> -  std::string Messages;
> -  LLVMBool Result = Linker::LinkModules(unwrap(Dest), unwrap(Src),
> -                                        Mode, OutMessages? &Messages :
> nullptr);
> -  if (OutMessages)
> -    *OutMessages = strdup(Messages.c_str());
> +  LLVMBool Result = Linker::LinkModules(unwrap(Dest), unwrap(Src), Mode);
>    return Result;
>  }
>
> Modified: llvm/trunk/tools/bugpoint/BugDriver.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/bugpoint/BugDriver.cpp?rev=220608&r1=220607&r2=220608&view=diff
>
> ==============================================================================
> --- llvm/trunk/tools/bugpoint/BugDriver.cpp (original)
> +++ llvm/trunk/tools/bugpoint/BugDriver.cpp Fri Oct 24 23:06:10 2014
> @@ -126,13 +126,8 @@ bool BugDriver::addSources(const std::ve
>      if (!M.get()) return true;
>
>      outs() << "Linking in input file: '" << Filenames[i] << "'\n";
> -    std::string ErrorMessage;
> -    if (Linker::LinkModules(Program, M.get(), Linker::DestroySource,
> -                            &ErrorMessage)) {
> -      errs() << ToolName << ": error linking in '" << Filenames[i] << "':
> "
> -             << ErrorMessage << '\n';
> +    if (Linker::LinkModules(Program, M.get(), Linker::DestroySource))
>        return true;
> -    }
>    }
>
>    outs() << "*** All input ok\n";
>
> Modified: llvm/trunk/tools/bugpoint/Miscompilation.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/bugpoint/Miscompilation.cpp?rev=220608&r1=220607&r2=220608&view=diff
>
> ==============================================================================
> --- llvm/trunk/tools/bugpoint/Miscompilation.cpp (original)
> +++ llvm/trunk/tools/bugpoint/Miscompilation.cpp Fri Oct 24 23:06:10 2014
> @@ -218,16 +218,12 @@ static Module *TestMergedProgram(const B
>                                   bool DeleteInputs, std::string &Error,
>                                   bool &Broken) {
>    // Link the two portions of the program back to together.
> -  std::string ErrorMsg;
>    if (!DeleteInputs) {
>      M1 = CloneModule(M1);
>      M2 = CloneModule(M2);
>    }
> -  if (Linker::LinkModules(M1, M2, Linker::DestroySource, &ErrorMsg)) {
> -    errs() << BD.getToolName() << ": Error linking modules together:"
> -           << ErrorMsg << '\n';
> +  if (Linker::LinkModules(M1, M2, Linker::DestroySource))
>      exit(1);
> -  }
>    delete M2;   // We are done with this module.
>
>    // Execute the program.
> @@ -396,13 +392,9 @@ static bool ExtractLoops(BugDriver &BD,
>                                                    F->getFunctionType()));
>        }
>
> -      std::string ErrorMsg;
> -      if (Linker::LinkModules(ToNotOptimize, ToOptimizeLoopExtracted,
> -                              Linker::DestroySource, &ErrorMsg)){
> -        errs() << BD.getToolName() << ": Error linking modules together:"
> -               << ErrorMsg << '\n';
> +      if (Linker::LinkModules(ToNotOptimize, ToOptimizeLoopExtracted,
> +                              Linker::DestroySource))
>          exit(1);
> -      }
>
>        MiscompiledFunctions.clear();
>        for (unsigned i = 0, e = MisCompFunctions.size(); i != e; ++i) {
> @@ -430,13 +422,10 @@ static bool ExtractLoops(BugDriver &BD,
>      // extraction both didn't break the program, and didn't mask the
> problem.
>      // Replace the current program with the loop extracted version, and
> try to
>      // extract another loop.
> -    std::string ErrorMsg;
> -    if (Linker::LinkModules(ToNotOptimize, ToOptimizeLoopExtracted,
> -                            Linker::DestroySource, &ErrorMsg)){
> -      errs() << BD.getToolName() << ": Error linking modules together:"
> -             << ErrorMsg << '\n';
> +    if (Linker::LinkModules(ToNotOptimize, ToOptimizeLoopExtracted,
> +                            Linker::DestroySource))
>        exit(1);
> -    }
> +
>      delete ToOptimizeLoopExtracted;
>
>      // All of the Function*'s in the MiscompiledFunctions list are in the
> old
> @@ -612,13 +601,8 @@ static bool ExtractBlocks(BugDriver &BD,
>        MisCompFunctions.push_back(std::make_pair(I->getName(),
>                                                  I->getFunctionType()));
>
> -  std::string ErrorMsg;
> -  if (Linker::LinkModules(ProgClone, Extracted.get(),
> Linker::DestroySource,
> -                          &ErrorMsg)) {
> -    errs() << BD.getToolName() << ": Error linking modules together:"
> -           << ErrorMsg << '\n';
> +  if (Linker::LinkModules(ProgClone, Extracted.get(),
> Linker::DestroySource))
>      exit(1);
> -  }
>
>    // Set the new program and delete the old one.
>    BD.setNewProgram(ProgClone);
>
> Modified: llvm/trunk/tools/gold/gold-plugin.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/gold/gold-plugin.cpp?rev=220608&r1=220607&r2=220608&view=diff
>
> ==============================================================================
> --- llvm/trunk/tools/gold/gold-plugin.cpp (original)
> +++ llvm/trunk/tools/gold/gold-plugin.cpp Fri Oct 24 23:06:10 2014
> @@ -777,9 +777,8 @@ static ld_plugin_status allSymbolsReadHo
>        M->setTargetTriple(DefaultTriple);
>      }
>
> -    std::string ErrMsg;
> -    if (L.linkInModule(M.get(), &ErrMsg))
> -      message(LDPL_FATAL, "Failed to link module: %s", ErrMsg.c_str());
> +    if (L.linkInModule(M.get()))
> +      message(LDPL_FATAL, "Failed to link module");
>    }
>
>    for (const auto &Name : Internalize) {
>
> Modified: llvm/trunk/tools/llvm-link/llvm-link.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-link/llvm-link.cpp?rev=220608&r1=220607&r2=220608&view=diff
>
> ==============================================================================
> --- llvm/trunk/tools/llvm-link/llvm-link.cpp (original)
> +++ llvm/trunk/tools/llvm-link/llvm-link.cpp Fri Oct 24 23:06:10 2014
> @@ -14,6 +14,8 @@
>
>  #include "llvm/Linker/Linker.h"
>  #include "llvm/Bitcode/ReaderWriter.h"
> +#include "llvm/IR/DiagnosticInfo.h"
> +#include "llvm/IR/DiagnosticPrinter.h"
>  #include "llvm/IR/LLVMContext.h"
>  #include "llvm/IR/Module.h"
>  #include "llvm/IR/Verifier.h"
> @@ -69,6 +71,25 @@ loadFile(const char *argv0, const std::s
>    return Result;
>  }
>
> +static void diagnosticHandler(const DiagnosticInfo &DI, void *Context) {
> +  unsigned Severity = DI.getSeverity();
> +  switch (Severity) {
> +  case DS_Error:
> +    errs() << "ERROR: ";
> +  case DS_Warning:
> +    if (SuppressWarnings)
> +      return;
> +    errs() << "WARNING: ";
> +    break;
> +  case DS_Remark:
> +  case DS_Note:
> +    llvm_unreachable("Only expecting warnings and errors");
> +  }
> +
> +  DiagnosticPrinterRawOStream DP(errs());
> +  DI.print(DP);
> +}
> +
>  int main(int argc, char **argv) {
>    // Print a stack trace if we signal out.
>    sys::PrintStackTraceOnErrorSignal();
> @@ -79,9 +100,9 @@ int main(int argc, char **argv) {
>    cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
>
>    auto Composite = make_unique<Module>("llvm-link", Context);
> -  Linker L(Composite.get(), SuppressWarnings);
> +  Linker L(Composite.get());
>
> -  std::string ErrorMessage;
> +  Context.setDiagnosticHandler(diagnosticHandler);
>    for (unsigned i = 0; i < InputFilenames.size(); ++i) {
>      std::unique_ptr<Module> M = loadFile(argv[0], InputFilenames[i],
> Context);
>      if (!M.get()) {
> @@ -91,11 +112,8 @@ int main(int argc, char **argv) {
>
>      if (Verbose) errs() << "Linking in '" << InputFilenames[i] << "'\n";
>
> -    if (L.linkInModule(M.get(), &ErrorMessage)) {
> -      errs() << argv[0] << ": link error in '" << InputFilenames[i]
> -             << "': " << ErrorMessage << "\n";
> +    if (L.linkInModule(M.get()))
>        return 1;
> -    }
>    }
>
>    if (DumpAsm) errs() << "Here's the assembly:\n" << *Composite;
>
> Modified: llvm/trunk/tools/llvm-lto/llvm-lto.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-lto/llvm-lto.cpp?rev=220608&r1=220607&r2=220608&view=diff
>
> ==============================================================================
> --- llvm/trunk/tools/llvm-lto/llvm-lto.cpp (original)
> +++ llvm/trunk/tools/llvm-lto/llvm-lto.cpp Fri Oct 24 23:06:10 2014
> @@ -143,12 +143,8 @@ int main(int argc, char **argv) {
>        return 1;
>      }
>
> -
> -    if (!CodeGen.addModule(Module.get(), error)) {
> -      errs() << argv[0] << ": error adding file '" << InputFilenames[i]
> -             << "': " << error << "\n";
> +    if (!CodeGen.addModule(Module.get()))
>        return 1;
> -    }
>
>      unsigned NumSyms = Module->getSymbolCount();
>      for (unsigned I = 0; I < NumSyms; ++I) {
>
> Modified: llvm/trunk/tools/lto/lto.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/lto/lto.cpp?rev=220608&r1=220607&r2=220608&view=diff
>
> ==============================================================================
> --- llvm/trunk/tools/lto/lto.cpp (original)
> +++ llvm/trunk/tools/lto/lto.cpp Fri Oct 24 23:06:10 2014
> @@ -205,7 +205,7 @@ lto_code_gen_t lto_codegen_create(void)
>  void lto_codegen_dispose(lto_code_gen_t cg) { delete unwrap(cg); }
>
>  bool lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod) {
> -  return !unwrap(cg)->addModule(unwrap(mod), sLastErrorString);
> +  return !unwrap(cg)->addModule(unwrap(mod));
>  }
>
>  bool lto_codegen_set_debug_model(lto_code_gen_t cg, lto_debug_model
> debug) {
>
> Modified: llvm/trunk/unittests/Linker/LinkModulesTest.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/Linker/LinkModulesTest.cpp?rev=220608&r1=220607&r2=220608&view=diff
>
> ==============================================================================
> --- llvm/trunk/unittests/Linker/LinkModulesTest.cpp (original)
> +++ llvm/trunk/unittests/Linker/LinkModulesTest.cpp Fri Oct 24 23:06:10
> 2014
> @@ -88,7 +88,7 @@ TEST_F(LinkModuleTest, BlockAddress) {
>    Builder.CreateRet(ConstantPointerNull::get(Type::getInt8PtrTy(Ctx)));
>
>    Module *LinkedModule = new Module("MyModuleLinked", Ctx);
> -  Linker::LinkModules(LinkedModule, M.get(), Linker::PreserveSource,
> nullptr);
> +  Linker::LinkModules(LinkedModule, M.get(), Linker::PreserveSource);
>
>    // Delete the original module.
>    M.reset();
> @@ -143,11 +143,11 @@ TEST_F(LinkModuleTest, EmptyModule) {
>    GV->setInitializer(ConstantStruct::get(STy, F));
>
>    Module *EmptyM = new Module("EmptyModule1", Ctx);
> -  Linker::LinkModules(EmptyM, InternalM, Linker::PreserveSource, nullptr);
> +  Linker::LinkModules(EmptyM, InternalM, Linker::PreserveSource);
>
>    delete EmptyM;
>    EmptyM = new Module("EmptyModule2", Ctx);
> -  Linker::LinkModules(InternalM, EmptyM, Linker::PreserveSource, nullptr);
> +  Linker::LinkModules(InternalM, EmptyM, Linker::PreserveSource);
>
>    delete EmptyM;
>    delete InternalM;
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20141027/c89c0c73/attachment.html>


More information about the llvm-commits mailing list