mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-06 21:25:58 +00:00
This CL updates the `UserCall` to hold a `Function` value instead of the functions name symbol. The name symbol is also removed from the function itself and stored into the module like all other values. Bug: tint:1718 Change-Id: I6c94ce435a6a260f9fe953a04278129b35b3bd39 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/134303 Reviewed-by: James Price <jrprice@google.com> Reviewed-by: Ben Clayton <bclayton@google.com> Commit-Queue: Dan Sinclair <dsinclair@chromium.org> Kokoro: Kokoro <noreply+kokoro@google.com>
62 lines
1.6 KiB
C++
62 lines
1.6 KiB
C++
// Copyright 2023 The Tint Authors.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include "src/tint/ir/transform/add_empty_entry_point.h"
|
|
|
|
#include <utility>
|
|
|
|
#include "src/tint/ir/transform/test_helper.h"
|
|
|
|
namespace tint::ir::transform {
|
|
namespace {
|
|
|
|
using IR_AddEmptyEntryPointTest = TransformTest;
|
|
|
|
TEST_F(IR_AddEmptyEntryPointTest, EmptyModule) {
|
|
auto* expect = R"(
|
|
%unused_entry_point = func():void [@compute @workgroup_size(1, 1, 1)] -> %fn1 {
|
|
%fn1 = block {
|
|
br %fn2 # return
|
|
}
|
|
%fn2 = func_terminator
|
|
}
|
|
)";
|
|
|
|
Run<AddEmptyEntryPoint>();
|
|
|
|
EXPECT_EQ(expect, str());
|
|
}
|
|
|
|
TEST_F(IR_AddEmptyEntryPointTest, ExistingEntryPoint) {
|
|
auto* ep = b.CreateFunction("main", mod.Types().void_(), Function::PipelineStage::kFragment);
|
|
ep->StartTarget()->SetInstructions(utils::Vector{b.Branch(ep->EndTarget())});
|
|
mod.functions.Push(ep);
|
|
|
|
auto* expect = R"(
|
|
%main = func():void [@fragment] -> %fn1 {
|
|
%fn1 = block {
|
|
br %fn2 # return
|
|
}
|
|
%fn2 = func_terminator
|
|
}
|
|
)";
|
|
|
|
Run<AddEmptyEntryPoint>();
|
|
|
|
EXPECT_EQ(expect, str());
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace tint::ir::transform
|