Austin Eng | cc2516a | 2023-10-17 20:57:54 +0000 | [diff] [blame] | 1 | // Copyright 2020 The Dawn & Tint Authors |
dan sinclair | c1bf225 | 2023-07-26 17:38:29 +0000 | [diff] [blame] | 2 | // |
Austin Eng | cc2516a | 2023-10-17 20:57:54 +0000 | [diff] [blame] | 3 | // Redistribution and use in source and binary forms, with or without |
| 4 | // modification, are permitted provided that the following conditions are met: |
dan sinclair | c1bf225 | 2023-07-26 17:38:29 +0000 | [diff] [blame] | 5 | // |
Austin Eng | cc2516a | 2023-10-17 20:57:54 +0000 | [diff] [blame] | 6 | // 1. Redistributions of source code must retain the above copyright notice, this |
| 7 | // list of conditions and the following disclaimer. |
dan sinclair | c1bf225 | 2023-07-26 17:38:29 +0000 | [diff] [blame] | 8 | // |
Austin Eng | cc2516a | 2023-10-17 20:57:54 +0000 | [diff] [blame] | 9 | // 2. Redistributions in binary form must reproduce the above copyright notice, |
| 10 | // this list of conditions and the following disclaimer in the documentation |
| 11 | // and/or other materials provided with the distribution. |
| 12 | // |
| 13 | // 3. Neither the name of the copyright holder nor the names of its |
| 14 | // contributors may be used to endorse or promote products derived from |
| 15 | // this software without specific prior written permission. |
| 16 | // |
| 17 | // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 18 | // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 19 | // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 20 | // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
| 21 | // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 22 | // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 23 | // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 24 | // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 25 | // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
dan sinclair | c1bf225 | 2023-07-26 17:38:29 +0000 | [diff] [blame] | 27 | |
| 28 | #include "src/tint/lang/wgsl/writer/writer.h" |
| 29 | |
| 30 | #include <memory> |
| 31 | #include <utility> |
| 32 | |
| 33 | #include "src/tint/lang/wgsl/program/program.h" |
| 34 | #include "src/tint/lang/wgsl/writer/ast_printer/ast_printer.h" |
Ben Clayton | dfc815c | 2023-09-25 15:38:43 +0000 | [diff] [blame] | 35 | #include "src/tint/lang/wgsl/writer/ir_to_program/ir_to_program.h" |
| 36 | #include "src/tint/lang/wgsl/writer/raise/raise.h" |
dan sinclair | c1bf225 | 2023-07-26 17:38:29 +0000 | [diff] [blame] | 37 | |
| 38 | #if TINT_BUILD_SYNTAX_TREE_WRITER |
| 39 | #include "src/tint/lang/wgsl/writer/syntax_tree_printer/syntax_tree_printer.h" |
| 40 | #endif // TINT_BUILD_SYNTAX_TREE_WRITER |
| 41 | |
| 42 | namespace tint::wgsl::writer { |
| 43 | |
Ben Clayton | 16fb254 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 44 | Result<Output> Generate(const Program& program, const Options& options) { |
dan sinclair | c1bf225 | 2023-07-26 17:38:29 +0000 | [diff] [blame] | 45 | (void)options; |
| 46 | |
James Price | d3a56cb | 2023-08-02 19:46:00 +0000 | [diff] [blame] | 47 | Output output; |
dan sinclair | c1bf225 | 2023-07-26 17:38:29 +0000 | [diff] [blame] | 48 | #if TINT_BUILD_SYNTAX_TREE_WRITER |
| 49 | if (options.use_syntax_tree_writer) { |
| 50 | // Generate the WGSL code. |
| 51 | auto impl = std::make_unique<SyntaxTreePrinter>(program); |
James Price | d3a56cb | 2023-08-02 19:46:00 +0000 | [diff] [blame] | 52 | if (!impl->Generate()) { |
Ben Clayton | 16fb254 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 53 | return Failure{impl->Diagnostics()}; |
James Price | d3a56cb | 2023-08-02 19:46:00 +0000 | [diff] [blame] | 54 | } |
| 55 | output.wgsl = impl->Result(); |
dan sinclair | c1bf225 | 2023-07-26 17:38:29 +0000 | [diff] [blame] | 56 | } else // NOLINT(readability/braces) |
| 57 | #endif |
| 58 | { |
| 59 | // Generate the WGSL code. |
| 60 | auto impl = std::make_unique<ASTPrinter>(program); |
James Price | d3a56cb | 2023-08-02 19:46:00 +0000 | [diff] [blame] | 61 | if (!impl->Generate()) { |
Ben Clayton | 16fb254 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 62 | return Failure{impl->Diagnostics()}; |
James Price | d3a56cb | 2023-08-02 19:46:00 +0000 | [diff] [blame] | 63 | } |
| 64 | output.wgsl = impl->Result(); |
dan sinclair | c1bf225 | 2023-07-26 17:38:29 +0000 | [diff] [blame] | 65 | } |
| 66 | |
James Price | d3a56cb | 2023-08-02 19:46:00 +0000 | [diff] [blame] | 67 | return output; |
dan sinclair | c1bf225 | 2023-07-26 17:38:29 +0000 | [diff] [blame] | 68 | } |
| 69 | |
James Price | fb728a3 | 2023-12-12 01:07:35 +0000 | [diff] [blame] | 70 | Result<Output> WgslFromIR(core::ir::Module& module, const ProgramOptions& options) { |
dan sinclair | 700892d | 2024-05-09 23:52:45 +0000 | [diff] [blame] | 71 | auto res = ProgramFromIR(module, options); |
| 72 | if (res != Success) { |
| 73 | return res.Failure(); |
| 74 | } |
| 75 | return Generate(res.Move(), Options{}); |
| 76 | } |
| 77 | |
| 78 | Result<Program> ProgramFromIR(core::ir::Module& module, const ProgramOptions& options) { |
Ben Clayton | dfc815c | 2023-09-25 15:38:43 +0000 | [diff] [blame] | 79 | // core-dialect -> WGSL-dialect |
Ben Clayton | 89274f7 | 2024-01-03 10:53:42 +0000 | [diff] [blame] | 80 | if (auto res = Raise(module); res != Success) { |
Ben Clayton | dfc815c | 2023-09-25 15:38:43 +0000 | [diff] [blame] | 81 | return res.Failure(); |
| 82 | } |
| 83 | |
James Price | fb728a3 | 2023-12-12 01:07:35 +0000 | [diff] [blame] | 84 | auto program = IRToProgram(module, options); |
Ben Clayton | dfc815c | 2023-09-25 15:38:43 +0000 | [diff] [blame] | 85 | if (!program.IsValid()) { |
| 86 | return Failure{program.Diagnostics()}; |
| 87 | } |
| 88 | |
dan sinclair | 700892d | 2024-05-09 23:52:45 +0000 | [diff] [blame] | 89 | return program; |
Ben Clayton | dfc815c | 2023-09-25 15:38:43 +0000 | [diff] [blame] | 90 | } |
| 91 | |
dan sinclair | c1bf225 | 2023-07-26 17:38:29 +0000 | [diff] [blame] | 92 | } // namespace tint::wgsl::writer |