mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-26 01:20:22 +01:00
clover: Restore support for LLVM <= 3.9.
The commit 8e430ff8b0 broke support for
LLVM 3.9 and older versions in Clover. This patch restores it and
refactors the support using Clover compatibility layer for LLVM.
v2: merged #ifdef blocks
v3: added support for LLVM 3.6-3.8
v4: add missing #ifdef around <memory>
v5: simplify using templates and lambda
Signed-off-by: Vedran Miletić <vedran@miletic.net>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=98740
Tested-by[v4]: Pierre Moreau <pierre.morrow@free.fr>
Tested-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: Francisco Jerez <currojerez@riseup.net>
Reviewed-by: Jan Vesely <jan.vesely@rutgers.edu>
This commit is contained in:
parent
f07da5aa5e
commit
95ddb37708
2 changed files with 21 additions and 6 deletions
|
|
@ -32,6 +32,7 @@
|
|||
///
|
||||
|
||||
#include "llvm/codegen.hpp"
|
||||
#include "llvm/compat.hpp"
|
||||
#include "llvm/metadata.hpp"
|
||||
#include "core/error.hpp"
|
||||
#include "util/algorithm.hpp"
|
||||
|
|
@ -99,13 +100,9 @@ clover::llvm::parse_module_library(const module &m, ::llvm::LLVMContext &ctx,
|
|||
auto mod = ::llvm::parseBitcodeFile(::llvm::MemoryBufferRef(
|
||||
as_string(m.secs[0].data), " "), ctx);
|
||||
|
||||
if (::llvm::Error err = mod.takeError()) {
|
||||
std::string msg;
|
||||
::llvm::handleAllErrors(std::move(err), [&](::llvm::ErrorInfoBase &EIB) {
|
||||
msg = EIB.message();
|
||||
fail(r_log, error(CL_INVALID_PROGRAM), msg.c_str());
|
||||
compat::handle_module_error(mod, [&](const std::string &s) {
|
||||
fail(r_log, error(CL_INVALID_PROGRAM), s);
|
||||
});
|
||||
}
|
||||
|
||||
return std::unique_ptr<::llvm::Module>(std::move(*mod));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -39,6 +39,11 @@
|
|||
#include <llvm/Linker/Linker.h>
|
||||
#include <llvm/Transforms/IPO.h>
|
||||
#include <llvm/Target/TargetMachine.h>
|
||||
#if HAVE_LLVM >= 0x0400
|
||||
#include <llvm/Support/Error.h>
|
||||
#else
|
||||
#include <llvm/Support/ErrorOr.h>
|
||||
#endif
|
||||
|
||||
#if HAVE_LLVM >= 0x0307
|
||||
#include <llvm/IR/LegacyPassManager.h>
|
||||
|
|
@ -158,6 +163,19 @@ namespace clover {
|
|||
#else
|
||||
const auto default_reloc_model = ::llvm::Reloc::Default;
|
||||
#endif
|
||||
|
||||
template<typename M, typename F> void
|
||||
handle_module_error(M &mod, const F &f) {
|
||||
#if HAVE_LLVM >= 0x0400
|
||||
if (::llvm::Error err = mod.takeError())
|
||||
::llvm::handleAllErrors(std::move(err), [&](::llvm::ErrorInfoBase &eib) {
|
||||
f(eib.message());
|
||||
});
|
||||
#else
|
||||
if (!mod)
|
||||
f(mod.getError().message());
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue