xref: /aosp_15_r20/external/mesa3d/src/gallium/frontends/clover/llvm/codegen/bitcode.cpp (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1 //
2 // Copyright 2012-2016 Francisco Jerez
3 // Copyright 2012-2016 Advanced Micro Devices, Inc.
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining a
6 // copy of this software and associated documentation files (the "Software"),
7 // to deal in the Software without restriction, including without limitation
8 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 // and/or sell copies of the Software, and to permit persons to whom the
10 // Software is furnished to do so, subject to the following conditions:
11 //
12 // The above copyright notice and this permission notice shall be included in
13 // all copies or substantial portions of the Software.
14 //
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
19 // OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 // ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21 // OTHER DEALINGS IN THE SOFTWARE.
22 //
23 
24 ///
25 /// \file
26 /// Trivial codegen back-end that simply passes through the existing LLVM IR
27 /// and either formats it so it can be consumed by pipe drivers (if
28 /// build_module_bitcode() is used) or serializes so it can be deserialized at
29 /// a later point and passed to the actual codegen back-end (if
30 /// build_module_library() / parse_module_library() is used), potentially
31 /// after linking against other bitcode object files.
32 ///
33 
34 #include <llvm/Support/Allocator.h>
35 
36 #include "llvm/codegen.hpp"
37 #include "llvm/compat.hpp"
38 #include "llvm/metadata.hpp"
39 #include "core/error.hpp"
40 #include "util/algorithm.hpp"
41 
42 #include <map>
43 #include <llvm/Config/llvm-config.h>
44 #include <llvm/Bitcode/BitcodeReader.h>
45 #include <llvm/Bitcode/BitcodeWriter.h>
46 #include <llvm/Support/raw_ostream.h>
47 
48 using clover::binary;
49 using namespace clover::llvm;
50 
51 namespace {
52    std::vector<char>
emit_code(const::llvm::Module & mod)53    emit_code(const ::llvm::Module &mod) {
54       ::llvm::SmallVector<char, 1024> data;
55       ::llvm::raw_svector_ostream os { data };
56       ::llvm::WriteBitcodeToFile(mod, os);
57       return { os.str().begin(), os.str().end() };
58    }
59 }
60 
61 std::string
print_module_bitcode(const::llvm::Module & mod)62 clover::llvm::print_module_bitcode(const ::llvm::Module &mod) {
63    std::string s;
64    ::llvm::raw_string_ostream os { s };
65    mod.print(os, NULL);
66    return os.str();
67 }
68 
69 binary
build_module_library(const::llvm::Module & mod,enum binary::section::type section_type)70 clover::llvm::build_module_library(const ::llvm::Module &mod,
71                                    enum binary::section::type section_type) {
72    binary b;
73    const auto code = emit_code(mod);
74    b.secs.emplace_back(0, section_type, code.size(), code);
75    return b;
76 }
77 
78 std::unique_ptr< ::llvm::Module>
parse_module_library(const binary & b,::llvm::LLVMContext & ctx,std::string & r_log)79 clover::llvm::parse_module_library(const binary &b, ::llvm::LLVMContext &ctx,
80                                    std::string &r_log) {
81    auto mod = ::llvm::parseBitcodeFile(::llvm::MemoryBufferRef(
82                                         as_string(b.secs[0].data), " "), ctx);
83 
84    if (::llvm::Error err = mod.takeError()) {
85       ::llvm::handleAllErrors(std::move(err), [&](::llvm::ErrorInfoBase &eib) {
86          fail(r_log, error(CL_INVALID_PROGRAM), eib.message());
87       });
88    }
89 
90    return std::unique_ptr< ::llvm::Module>(std::move(*mod));
91 }
92