blob: 401384894860f72aac42d2920bc1e00e2891d4cf [file] [log] [blame]
Austin Engcc2516a2023-10-17 20:57:54 +00001// Copyright 2020 The Dawn & Tint Authors
dan sinclairc1bf2252023-07-26 17:38:29 +00002//
Austin Engcc2516a2023-10-17 20:57:54 +00003// Redistribution and use in source and binary forms, with or without
4// modification, are permitted provided that the following conditions are met:
dan sinclairc1bf2252023-07-26 17:38:29 +00005//
Austin Engcc2516a2023-10-17 20:57:54 +00006// 1. Redistributions of source code must retain the above copyright notice, this
7// list of conditions and the following disclaimer.
dan sinclairc1bf2252023-07-26 17:38:29 +00008//
Austin Engcc2516a2023-10-17 20:57:54 +00009// 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 sinclairc1bf2252023-07-26 17:38:29 +000027
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 Claytondfc815c2023-09-25 15:38:43 +000035#include "src/tint/lang/wgsl/writer/ir_to_program/ir_to_program.h"
36#include "src/tint/lang/wgsl/writer/raise/raise.h"
dan sinclairc1bf2252023-07-26 17:38:29 +000037
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
42namespace tint::wgsl::writer {
43
Ben Clayton16fb2542023-09-25 11:43:19 +000044Result<Output> Generate(const Program& program, const Options& options) {
dan sinclairc1bf2252023-07-26 17:38:29 +000045 (void)options;
46
James Priced3a56cb2023-08-02 19:46:00 +000047 Output output;
dan sinclairc1bf2252023-07-26 17:38:29 +000048#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 Priced3a56cb2023-08-02 19:46:00 +000052 if (!impl->Generate()) {
Ben Clayton16fb2542023-09-25 11:43:19 +000053 return Failure{impl->Diagnostics()};
James Priced3a56cb2023-08-02 19:46:00 +000054 }
55 output.wgsl = impl->Result();
dan sinclairc1bf2252023-07-26 17:38:29 +000056 } else // NOLINT(readability/braces)
57#endif
58 {
59 // Generate the WGSL code.
60 auto impl = std::make_unique<ASTPrinter>(program);
James Priced3a56cb2023-08-02 19:46:00 +000061 if (!impl->Generate()) {
Ben Clayton16fb2542023-09-25 11:43:19 +000062 return Failure{impl->Diagnostics()};
James Priced3a56cb2023-08-02 19:46:00 +000063 }
64 output.wgsl = impl->Result();
dan sinclairc1bf2252023-07-26 17:38:29 +000065 }
66
James Priced3a56cb2023-08-02 19:46:00 +000067 return output;
dan sinclairc1bf2252023-07-26 17:38:29 +000068}
69
James Pricefb728a32023-12-12 01:07:35 +000070Result<Output> WgslFromIR(core::ir::Module& module, const ProgramOptions& options) {
dan sinclair700892d2024-05-09 23:52:45 +000071 auto res = ProgramFromIR(module, options);
72 if (res != Success) {
73 return res.Failure();
74 }
75 return Generate(res.Move(), Options{});
76}
77
78Result<Program> ProgramFromIR(core::ir::Module& module, const ProgramOptions& options) {
Ben Claytondfc815c2023-09-25 15:38:43 +000079 // core-dialect -> WGSL-dialect
Ben Clayton89274f72024-01-03 10:53:42 +000080 if (auto res = Raise(module); res != Success) {
Ben Claytondfc815c2023-09-25 15:38:43 +000081 return res.Failure();
82 }
83
James Pricefb728a32023-12-12 01:07:35 +000084 auto program = IRToProgram(module, options);
Ben Claytondfc815c2023-09-25 15:38:43 +000085 if (!program.IsValid()) {
86 return Failure{program.Diagnostics()};
87 }
88
dan sinclair700892d2024-05-09 23:52:45 +000089 return program;
Ben Claytondfc815c2023-09-25 15:38:43 +000090}
91
dan sinclairc1bf2252023-07-26 17:38:29 +000092} // namespace tint::wgsl::writer