[Mesa-dev] [PATCH 6/8] clover/llvm: Pass device down to compile

Aaron Watry awatry at gmail.com
Mon Jul 31 01:26:10 UTC 2017


We'll need to be able to detect device version to define the appropriate
__OPENCL_VERSION__ header.

Signed-off-by: Aaron Watry <awatry at gmail.com>
---
 src/gallium/state_trackers/clover/llvm/invocation.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/gallium/state_trackers/clover/llvm/invocation.cpp b/src/gallium/state_trackers/clover/llvm/invocation.cpp
index e761ca188d..16966bedb3 100644
--- a/src/gallium/state_trackers/clover/llvm/invocation.cpp
+++ b/src/gallium/state_trackers/clover/llvm/invocation.cpp
@@ -203,7 +203,7 @@ namespace {
    std::unique_ptr<Module>
    compile(LLVMContext &ctx, clang::CompilerInstance &c,
            const std::string &name, const std::string &source,
-           const header_map &headers, const std::string &target,
+           const header_map &headers, const device &dev,
            const std::string &opts, std::string &r_log) {
       c.getFrontendOpts().ProgramAction = clang::frontend::EmitLLVMOnly;
       c.getHeaderSearchOpts().UseBuiltinIncludes = true;
@@ -247,7 +247,7 @@ namespace {
       // barrier() (e.g. Moving barrier() inside a conditional that is
       // no executed by all threads) during its optimizaton passes.
       compat::add_link_bitcode_file(c.getCodeGenOpts(),
-                                    LIBCLC_LIBEXECDIR + target + ".bc");
+                                    LIBCLC_LIBEXECDIR + dev.ir_target() + ".bc");
 
       // Compile the code
       clang::EmitLLVMOnlyAction act(&ctx);
@@ -270,7 +270,7 @@ clover::llvm::compile_program(const std::string &source,
    auto ctx = create_context(r_log);
    auto c = create_compiler_instance(dev.ir_target(), tokenize(opts + " input.cl"),
                                      dev.device_clc_version(), r_log);
-   auto mod = compile(*ctx, *c, "input.cl", source, headers, dev.ir_target(), opts,
+   auto mod = compile(*ctx, *c, "input.cl", source, headers, dev, opts,
                       r_log);
 
    if (has_flag(debug::llvm))
-- 
2.11.0



More information about the mesa-dev mailing list