blob: 40c4f796a41c3d45cb72cb93b8cd8db28e03da9c [file] [log] [blame]
Austin Engcc2516a2023-10-17 20:57:54 +00001// Copyright 2020 The Dawn & Tint Authors
Ryan Harrisondbc13af2022-02-21 15:19:07 +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:
Ryan Harrisondbc13af2022-02-21 15:19:07 +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.
Ryan Harrisondbc13af2022-02-21 15:19:07 +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.
Ryan Harrisondbc13af2022-02-21 15:19:07 +000027
dan sinclair61190452023-07-26 20:47:54 +000028#include "src/tint/lang/wgsl/reader/reader.h"
Ryan Harrisondbc13af2022-02-21 15:19:07 +000029
Ben Claytoncc636962024-01-30 16:55:59 +000030#include <limits>
Ryan Harrisondbc13af2022-02-21 15:19:07 +000031#include <utility>
32
Ben Claytondfc815c2023-09-25 15:38:43 +000033#include "src/tint/lang/wgsl/reader/lower/lower.h"
dan sinclair61190452023-07-26 20:47:54 +000034#include "src/tint/lang/wgsl/reader/parser/parser.h"
Ben Claytondfc815c2023-09-25 15:38:43 +000035#include "src/tint/lang/wgsl/reader/program_to_ir/program_to_ir.h"
Ben Clayton915ceca2023-07-29 13:12:58 +000036#include "src/tint/lang/wgsl/resolver/resolve.h"
Ryan Harrisondbc13af2022-02-21 15:19:07 +000037
dan sinclair61190452023-07-26 20:47:54 +000038namespace tint::wgsl::reader {
Ryan Harrisondbc13af2022-02-21 15:19:07 +000039
James Price78da6642023-11-06 18:42:21 +000040Program Parse(const Source::File* file, const Options& options) {
Ben Claytoncc636962024-01-30 16:55:59 +000041 if (TINT_UNLIKELY(file->content.data.size() >
42 static_cast<size_t>(std::numeric_limits<uint32_t>::max()))) {
43 ProgramBuilder b;
Ben Clayton1e1f4882024-02-05 17:35:59 +000044 b.Diagnostics().AddError(tint::diag::System::Reader,
45 "WGSL source must be 0xffffffff bytes or fewer");
Ben Claytoncc636962024-01-30 16:55:59 +000046 return Program(std::move(b));
47 }
dan sinclair61190452023-07-26 20:47:54 +000048 Parser parser(file);
dan sinclair41e4d9a2022-05-01 14:40:55 +000049 parser.Parse();
James Price78da6642023-11-06 18:42:21 +000050 return resolver::Resolve(parser.builder(), options.allowed_features);
Ryan Harrisondbc13af2022-02-21 15:19:07 +000051}
52
James Price78da6642023-11-06 18:42:21 +000053Result<core::ir::Module> WgslToIR(const Source::File* file, const Options& options) {
54 Program program = Parse(file, options);
Ben Claytondfc815c2023-09-25 15:38:43 +000055 auto module = ProgramToIR(program);
Ben Clayton89274f72024-01-03 10:53:42 +000056 if (module != Success) {
Ben Claytondfc815c2023-09-25 15:38:43 +000057 return module.Failure();
58 }
59 // WGSL-dialect -> core-dialect
Ben Clayton89274f72024-01-03 10:53:42 +000060 if (auto res = Lower(module.Get()); res != Success) {
Ben Claytondfc815c2023-09-25 15:38:43 +000061 return res.Failure();
62 }
63 return module;
64}
65
dan sinclair24b81092023-11-21 16:02:47 +000066tint::Result<core::ir::Module> ProgramToLoweredIR(const Program& program) {
67 auto ir = tint::wgsl::reader::ProgramToIR(program);
Ben Clayton89274f72024-01-03 10:53:42 +000068 if (ir != Success) {
dan sinclair24b81092023-11-21 16:02:47 +000069 return ir.Failure();
70 }
71
72 // Lower from WGSL-dialect to core-dialect
73 auto res = tint::wgsl::reader::Lower(ir.Get());
Ben Clayton89274f72024-01-03 10:53:42 +000074 if (res != Success) {
dan sinclair24b81092023-11-21 16:02:47 +000075 return res.Failure();
76 }
77
78 return ir;
79}
80
dan sinclair61190452023-07-26 20:47:54 +000081} // namespace tint::wgsl::reader