clover: Fix not setting build log if the build succeeds v2
[mesa.git] / src / gallium / state_trackers / clover / core / program.cpp
1 //
2 // Copyright 2012 Francisco Jerez
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining a
5 // copy of this software and associated documentation files (the "Software"),
6 // to deal in the Software without restriction, including without limitation
7 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 // and/or sell copies of the Software, and to permit persons to whom the
9 // Software is furnished to do so, subject to the following conditions:
10 //
11 // The above copyright notice and this permission notice shall be included in
12 // all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 // OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 // ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 // OTHER DEALINGS IN THE SOFTWARE.
21 //
22
23 #include "core/program.hpp"
24 #include "core/compiler.hpp"
25
26 using namespace clover;
27
28 program::program(clover::context &ctx, const std::string &source) :
29 has_source(true), context(ctx), _source(source) {
30 }
31
32 program::program(clover::context &ctx,
33 const ref_vector<device> &devs,
34 const std::vector<module> &binaries) :
35 has_source(false), context(ctx),
36 _devices(devs) {
37 for_each([&](device &dev, const module &bin) {
38 _binaries.insert({ &dev, bin });
39 },
40 devs, binaries);
41 }
42
43 void
44 program::build(const ref_vector<device> &devs, const char *opts) {
45 if (has_source) {
46 _devices = devs;
47
48 for (auto &dev : devs) {
49 _binaries.erase(&dev);
50 _logs.erase(&dev);
51 _opts.erase(&dev);
52
53 _opts.insert({ &dev, opts });
54
55 compat::string log;
56
57 try {
58 auto module = (dev.ir_format() == PIPE_SHADER_IR_TGSI ?
59 compile_program_tgsi(_source) :
60 compile_program_llvm(_source, dev.ir_format(),
61 dev.ir_target(), build_opts(dev),
62 log));
63 _binaries.insert({ &dev, module });
64 _logs.insert({ &dev, std::string(log.c_str()) });
65 } catch (const build_error &) {
66 _logs.insert({ &dev, std::string(log.c_str()) });
67 throw;
68 }
69 }
70 }
71 }
72
73 const std::string &
74 program::source() const {
75 return _source;
76 }
77
78 program::device_range
79 program::devices() const {
80 return map(evals(), _devices);
81 }
82
83 const module &
84 program::binary(const device &dev) const {
85 return _binaries.find(&dev)->second;
86 }
87
88 cl_build_status
89 program::build_status(const device &dev) const {
90 if (_binaries.count(&dev))
91 return CL_BUILD_SUCCESS;
92 else
93 return CL_BUILD_NONE;
94 }
95
96 std::string
97 program::build_opts(const device &dev) const {
98 return _opts.count(&dev) ? _opts.find(&dev)->second : "";
99 }
100
101 std::string
102 program::build_log(const device &dev) const {
103 return _logs.count(&dev) ? _logs.find(&dev)->second : "";
104 }
105
106 const compat::vector<module::symbol> &
107 program::symbols() const {
108 if (_binaries.empty())
109 throw error(CL_INVALID_PROGRAM_EXECUTABLE);
110
111 return _binaries.begin()->second.syms;
112 }