[hlsl-writer] Emit function decoration stage
This CL updates the hlsl writer to emit stage decorations. Change-Id: Ic9ae9fbd47537f141949e27c876d37e6d4dcd97d Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/28704 Reviewed-by: Ryan Harrison <rharrison@chromium.org> Commit-Queue: dan sinclair <dsinclair@chromium.org>
This commit is contained in:
parent
b5bb2d91af
commit
f91b9664e7
1
BUILD.gn
1
BUILD.gn
|
@ -1097,6 +1097,7 @@ source_set("tint_unittests_hlsl_writer_src") {
|
|||
"src/writer/hlsl/generator_impl_continue_test.cc",
|
||||
"src/writer/hlsl/generator_impl_discard_test.cc",
|
||||
"src/writer/hlsl/generator_impl_entry_point_test.cc",
|
||||
"src/writer/hlsl/generator_impl_function_entry_point_data_test.cc",
|
||||
"src/writer/hlsl/generator_impl_function_test.cc",
|
||||
"src/writer/hlsl/generator_impl_identifier_test.cc",
|
||||
"src/writer/hlsl/generator_impl_if_test.cc",
|
||||
|
|
|
@ -607,6 +607,7 @@ if (${TINT_BUILD_HLSL_WRITER})
|
|||
writer/hlsl/generator_impl_continue_test.cc
|
||||
writer/hlsl/generator_impl_discard_test.cc
|
||||
writer/hlsl/generator_impl_entry_point_test.cc
|
||||
writer/hlsl/generator_impl_function_entry_point_data_test.cc
|
||||
writer/hlsl/generator_impl_function_test.cc
|
||||
writer/hlsl/generator_impl_identifier_test.cc
|
||||
writer/hlsl/generator_impl_if_test.cc
|
||||
|
|
|
@ -139,6 +139,18 @@ bool GeneratorImpl::Generate(std::ostream& out) {
|
|||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// Make sure all entry point data is emitted before the entry point functions
|
||||
for (const auto& func : module_->functions()) {
|
||||
if (!func->IsEntryPoint()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!EmitEntryPointData(out, func.get())) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
for (const auto& func : module_->functions()) {
|
||||
if (!EmitFunction(out, func.get())) {
|
||||
return false;
|
||||
|
@ -151,6 +163,15 @@ bool GeneratorImpl::Generate(std::ostream& out) {
|
|||
out << std::endl;
|
||||
}
|
||||
|
||||
for (const auto& func : module_->functions()) {
|
||||
if (!func->IsEntryPoint()) {
|
||||
continue;
|
||||
}
|
||||
if (!EmitEntryPointFunction(out, func.get())) {
|
||||
return false;
|
||||
}
|
||||
out << std::endl;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -1085,7 +1106,7 @@ bool GeneratorImpl::EmitFunction(std::ostream& out, ast::Function* func) {
|
|||
make_indent(out);
|
||||
|
||||
// Entry points will be emitted later, skip for now.
|
||||
if (module_->IsFunctionEntryPoint(func->name())) {
|
||||
if (func->IsEntryPoint() || module_->IsFunctionEntryPoint(func->name())) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -1381,6 +1402,186 @@ bool GeneratorImpl::EmitEntryPointData(std::ostream& out, ast::EntryPoint* ep) {
|
|||
return true;
|
||||
}
|
||||
|
||||
bool GeneratorImpl::EmitEntryPointData(std::ostream& out, ast::Function* func) {
|
||||
std::vector<std::pair<ast::Variable*, ast::VariableDecoration*>> in_variables;
|
||||
std::vector<std::pair<ast::Variable*, ast::VariableDecoration*>> outvariables;
|
||||
for (auto data : func->referenced_location_variables()) {
|
||||
auto* var = data.first;
|
||||
auto* deco = data.second;
|
||||
|
||||
if (var->storage_class() == ast::StorageClass::kInput) {
|
||||
in_variables.push_back({var, deco});
|
||||
} else if (var->storage_class() == ast::StorageClass::kOutput) {
|
||||
outvariables.push_back({var, deco});
|
||||
}
|
||||
}
|
||||
|
||||
for (auto data : func->referenced_builtin_variables()) {
|
||||
auto* var = data.first;
|
||||
auto* deco = data.second;
|
||||
|
||||
if (var->storage_class() == ast::StorageClass::kInput) {
|
||||
in_variables.push_back({var, deco});
|
||||
} else if (var->storage_class() == ast::StorageClass::kOutput) {
|
||||
outvariables.push_back({var, deco});
|
||||
}
|
||||
}
|
||||
|
||||
bool emitted_uniform = false;
|
||||
for (auto data : func->referenced_uniform_variables()) {
|
||||
auto* var = data.first;
|
||||
// TODO(dsinclair): We're using the binding to make up the buffer number but
|
||||
// we should instead be using a provided mapping that uses both buffer and
|
||||
// set. https://bugs.chromium.org/p/tint/issues/detail?id=104
|
||||
auto* binding = data.second.binding;
|
||||
if (binding == nullptr) {
|
||||
error_ = "unable to find binding information for uniform: " + var->name();
|
||||
return false;
|
||||
}
|
||||
// auto* set = data.second.set;
|
||||
|
||||
auto* type = var->type()->UnwrapAliasesIfNeeded();
|
||||
if (type->IsStruct()) {
|
||||
auto* strct = type->AsStruct();
|
||||
|
||||
out << "ConstantBuffer<" << strct->name() << "> " << var->name()
|
||||
<< " : register(b" << binding->value() << ");" << std::endl;
|
||||
} else {
|
||||
// TODO(dsinclair): There is outstanding spec work to require all uniform
|
||||
// buffers to be [[block]] decorated, which means structs. This is
|
||||
// currently not the case, so this code handles the cases where the data
|
||||
// is not a block.
|
||||
// Relevant: https://github.com/gpuweb/gpuweb/issues/1004
|
||||
// https://github.com/gpuweb/gpuweb/issues/1008
|
||||
out << "cbuffer : register(b" << binding->value() << ") {" << std::endl;
|
||||
|
||||
increment_indent();
|
||||
make_indent(out);
|
||||
if (!EmitType(out, type, "")) {
|
||||
return false;
|
||||
}
|
||||
out << " " << var->name() << ";" << std::endl;
|
||||
decrement_indent();
|
||||
out << "};" << std::endl;
|
||||
}
|
||||
|
||||
emitted_uniform = true;
|
||||
}
|
||||
if (emitted_uniform) {
|
||||
out << std::endl;
|
||||
}
|
||||
|
||||
bool emitted_storagebuffer = false;
|
||||
for (auto data : func->referenced_storagebuffer_variables()) {
|
||||
auto* var = data.first;
|
||||
auto* binding = data.second.binding;
|
||||
|
||||
out << "RWByteAddressBuffer " << var->name() << " : register(u"
|
||||
<< binding->value() << ");" << std::endl;
|
||||
emitted_storagebuffer = true;
|
||||
}
|
||||
if (emitted_storagebuffer) {
|
||||
out << std::endl;
|
||||
}
|
||||
|
||||
if (!in_variables.empty()) {
|
||||
auto in_struct_name =
|
||||
generate_name(func->name() + "_" + kInStructNameSuffix);
|
||||
auto in_var_name = generate_name(kTintStructInVarPrefix);
|
||||
ep_name_to_in_data_[func->name()] = {in_struct_name, in_var_name};
|
||||
|
||||
make_indent(out);
|
||||
out << "struct " << in_struct_name << " {" << std::endl;
|
||||
|
||||
increment_indent();
|
||||
|
||||
for (auto& data : in_variables) {
|
||||
auto* var = data.first;
|
||||
auto* deco = data.second;
|
||||
|
||||
make_indent(out);
|
||||
if (!EmitType(out, var->type(), var->name())) {
|
||||
return false;
|
||||
}
|
||||
|
||||
out << " " << var->name() << " : ";
|
||||
if (deco->IsLocation()) {
|
||||
if (func->pipeline_stage() == ast::PipelineStage::kCompute) {
|
||||
error_ = "invalid location variable for pipeline stage";
|
||||
return false;
|
||||
}
|
||||
out << "TEXCOORD" << deco->AsLocation()->value();
|
||||
} else if (deco->IsBuiltin()) {
|
||||
auto attr = builtin_to_attribute(deco->AsBuiltin()->value());
|
||||
if (attr.empty()) {
|
||||
error_ = "unsupported builtin";
|
||||
return false;
|
||||
}
|
||||
out << attr;
|
||||
} else {
|
||||
error_ = "unsupported variable decoration for entry point output";
|
||||
return false;
|
||||
}
|
||||
out << ";" << std::endl;
|
||||
}
|
||||
decrement_indent();
|
||||
make_indent(out);
|
||||
|
||||
out << "};" << std::endl << std::endl;
|
||||
}
|
||||
|
||||
if (!outvariables.empty()) {
|
||||
auto outstruct_name =
|
||||
generate_name(func->name() + "_" + kOutStructNameSuffix);
|
||||
auto outvar_name = generate_name(kTintStructOutVarPrefix);
|
||||
ep_name_to_out_data_[func->name()] = {outstruct_name, outvar_name};
|
||||
|
||||
make_indent(out);
|
||||
out << "struct " << outstruct_name << " {" << std::endl;
|
||||
|
||||
increment_indent();
|
||||
for (auto& data : outvariables) {
|
||||
auto* var = data.first;
|
||||
auto* deco = data.second;
|
||||
|
||||
make_indent(out);
|
||||
if (!EmitType(out, var->type(), var->name())) {
|
||||
return false;
|
||||
}
|
||||
|
||||
out << " " << var->name() << " : ";
|
||||
|
||||
if (deco->IsLocation()) {
|
||||
auto loc = deco->AsLocation()->value();
|
||||
if (func->pipeline_stage() == ast::PipelineStage::kVertex) {
|
||||
out << "TEXCOORD" << loc;
|
||||
} else if (func->pipeline_stage() == ast::PipelineStage::kFragment) {
|
||||
out << "SV_Target" << loc << "";
|
||||
} else {
|
||||
error_ = "invalid location variable for pipeline stage";
|
||||
return false;
|
||||
}
|
||||
} else if (deco->IsBuiltin()) {
|
||||
auto attr = builtin_to_attribute(deco->AsBuiltin()->value());
|
||||
if (attr.empty()) {
|
||||
error_ = "unsupported builtin";
|
||||
return false;
|
||||
}
|
||||
out << attr;
|
||||
} else {
|
||||
error_ = "unsupported variable decoration for entry point output";
|
||||
return false;
|
||||
}
|
||||
out << ";" << std::endl;
|
||||
}
|
||||
decrement_indent();
|
||||
make_indent(out);
|
||||
out << "};" << std::endl << std::endl;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
std::string GeneratorImpl::builtin_to_attribute(ast::Builtin builtin) const {
|
||||
switch (builtin) {
|
||||
case ast::Builtin::kPosition:
|
||||
|
@ -1472,6 +1673,62 @@ bool GeneratorImpl::EmitEntryPointFunction(std::ostream& out,
|
|||
return true;
|
||||
}
|
||||
|
||||
bool GeneratorImpl::EmitEntryPointFunction(std::ostream& out,
|
||||
ast::Function* func) {
|
||||
make_indent(out);
|
||||
|
||||
current_ep_name_ = func->name();
|
||||
|
||||
if (func->pipeline_stage() == ast::PipelineStage::kCompute) {
|
||||
uint32_t x = 0;
|
||||
uint32_t y = 0;
|
||||
uint32_t z = 0;
|
||||
std::tie(x, y, z) = func->workgroup_size();
|
||||
out << "[numthreads(" << std::to_string(x) << ", " << std::to_string(y)
|
||||
<< ", " << std::to_string(z) << ")]" << std::endl;
|
||||
make_indent(out);
|
||||
}
|
||||
|
||||
auto outdata = ep_name_to_out_data_.find(current_ep_name_);
|
||||
bool has_outdata = outdata != ep_name_to_out_data_.end();
|
||||
if (has_outdata) {
|
||||
out << outdata->second.struct_name;
|
||||
} else {
|
||||
out << "void";
|
||||
}
|
||||
out << " " << namer_.NameFor(current_ep_name_) << "(";
|
||||
|
||||
auto in_data = ep_name_to_in_data_.find(current_ep_name_);
|
||||
if (in_data != ep_name_to_in_data_.end()) {
|
||||
out << in_data->second.struct_name << " " << in_data->second.var_name;
|
||||
}
|
||||
out << ") {" << std::endl;
|
||||
|
||||
increment_indent();
|
||||
|
||||
if (has_outdata) {
|
||||
make_indent(out);
|
||||
out << outdata->second.struct_name << " " << outdata->second.var_name << ";"
|
||||
<< std::endl;
|
||||
}
|
||||
|
||||
generating_entry_point_ = true;
|
||||
for (const auto& s : *(func->body())) {
|
||||
if (!EmitStatement(out, s.get())) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
generating_entry_point_ = false;
|
||||
|
||||
decrement_indent();
|
||||
make_indent(out);
|
||||
out << "}" << std::endl;
|
||||
|
||||
current_ep_name_ = "";
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool GeneratorImpl::EmitLiteral(std::ostream& out, ast::Literal* lit) {
|
||||
if (lit->IsBool()) {
|
||||
out << (lit->AsBool()->IsTrue() ? "true" : "false");
|
||||
|
|
|
@ -196,11 +196,21 @@ class GeneratorImpl {
|
|||
/// @param ep the entry point
|
||||
/// @returns true if the entry point data was emitted
|
||||
bool EmitEntryPointData(std::ostream& out, ast::EntryPoint* ep);
|
||||
/// Handles emitting information for an entry point
|
||||
/// @param out the output stream
|
||||
/// @param func the entry point
|
||||
/// @returns true if the entry point data was emitted
|
||||
bool EmitEntryPointData(std::ostream& out, ast::Function* func);
|
||||
/// Handles emitting the entry point function
|
||||
/// @param out the output stream
|
||||
/// @param ep the entry point
|
||||
/// @returns true if the entry point function was emitted
|
||||
bool EmitEntryPointFunction(std::ostream& out, ast::EntryPoint* ep);
|
||||
/// Handles emitting the entry point function
|
||||
/// @param out the output stream
|
||||
/// @param func the entry point
|
||||
/// @returns true if the entry point function was emitted
|
||||
bool EmitEntryPointFunction(std::ostream& out, ast::Function* func);
|
||||
/// Handles an if statement
|
||||
/// @param out the output stream
|
||||
/// @param stmt the statement to emit
|
||||
|
|
|
@ -0,0 +1,449 @@
|
|||
// Copyright 2020 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/ast/assignment_statement.h"
|
||||
#include "src/ast/decorated_variable.h"
|
||||
#include "src/ast/entry_point.h"
|
||||
#include "src/ast/identifier_expression.h"
|
||||
#include "src/ast/location_decoration.h"
|
||||
#include "src/ast/member_accessor_expression.h"
|
||||
#include "src/ast/module.h"
|
||||
#include "src/ast/pipeline_stage.h"
|
||||
#include "src/ast/return_statement.h"
|
||||
#include "src/ast/stage_decoration.h"
|
||||
#include "src/ast/type/f32_type.h"
|
||||
#include "src/ast/type/i32_type.h"
|
||||
#include "src/ast/type/vector_type.h"
|
||||
#include "src/ast/type/void_type.h"
|
||||
#include "src/ast/variable.h"
|
||||
#include "src/context.h"
|
||||
#include "src/type_determiner.h"
|
||||
#include "src/writer/hlsl/test_helper.h"
|
||||
|
||||
#include <memory>
|
||||
|
||||
namespace tint {
|
||||
namespace writer {
|
||||
namespace hlsl {
|
||||
namespace {
|
||||
|
||||
using HlslGeneratorImplTest_EntryPoint = TestHelper;
|
||||
|
||||
TEST_F(HlslGeneratorImplTest_EntryPoint,
|
||||
Emit_Function_EntryPointData_Vertex_Input) {
|
||||
// [[location 0]] var<in> foo : f32;
|
||||
// [[location 1]] var<in> bar : i32;
|
||||
//
|
||||
// struct vtx_main_in {
|
||||
// float foo : TEXCOORD0;
|
||||
// int bar : TEXCOORD1;
|
||||
// };
|
||||
|
||||
ast::type::F32Type f32;
|
||||
ast::type::I32Type i32;
|
||||
|
||||
auto foo_var = std::make_unique<ast::DecoratedVariable>(
|
||||
std::make_unique<ast::Variable>("foo", ast::StorageClass::kInput, &f32));
|
||||
|
||||
ast::VariableDecorationList decos;
|
||||
decos.push_back(std::make_unique<ast::LocationDecoration>(0));
|
||||
foo_var->set_decorations(std::move(decos));
|
||||
|
||||
auto bar_var = std::make_unique<ast::DecoratedVariable>(
|
||||
std::make_unique<ast::Variable>("bar", ast::StorageClass::kInput, &i32));
|
||||
decos.push_back(std::make_unique<ast::LocationDecoration>(1));
|
||||
bar_var->set_decorations(std::move(decos));
|
||||
|
||||
td().RegisterVariableForTesting(foo_var.get());
|
||||
td().RegisterVariableForTesting(bar_var.get());
|
||||
|
||||
mod()->AddGlobalVariable(std::move(foo_var));
|
||||
mod()->AddGlobalVariable(std::move(bar_var));
|
||||
|
||||
ast::VariableList params;
|
||||
auto func =
|
||||
std::make_unique<ast::Function>("vtx_main", std::move(params), &f32);
|
||||
func->add_decoration(
|
||||
std::make_unique<ast::StageDecoration>(ast::PipelineStage::kVertex));
|
||||
auto* func_ptr = func.get();
|
||||
|
||||
auto body = std::make_unique<ast::BlockStatement>();
|
||||
body->append(std::make_unique<ast::AssignmentStatement>(
|
||||
std::make_unique<ast::IdentifierExpression>("foo"),
|
||||
std::make_unique<ast::IdentifierExpression>("foo")));
|
||||
body->append(std::make_unique<ast::AssignmentStatement>(
|
||||
std::make_unique<ast::IdentifierExpression>("bar"),
|
||||
std::make_unique<ast::IdentifierExpression>("bar")));
|
||||
func->set_body(std::move(body));
|
||||
|
||||
mod()->AddFunction(std::move(func));
|
||||
|
||||
ASSERT_TRUE(td().Determine()) << td().error();
|
||||
ASSERT_TRUE(gen().EmitEntryPointData(out(), func_ptr)) << gen().error();
|
||||
EXPECT_EQ(result(), R"(struct vtx_main_in {
|
||||
float foo : TEXCOORD0;
|
||||
int bar : TEXCOORD1;
|
||||
};
|
||||
|
||||
)");
|
||||
}
|
||||
|
||||
TEST_F(HlslGeneratorImplTest_EntryPoint,
|
||||
Emit_Function_EntryPointData_Vertex_Output) {
|
||||
// [[location 0]] var<out> foo : f32;
|
||||
// [[location 1]] var<out> bar : i32;
|
||||
//
|
||||
// struct vtx_main_out {
|
||||
// float foo : TEXCOORD0;
|
||||
// int bar : TEXCOORD1;
|
||||
// };
|
||||
|
||||
ast::type::F32Type f32;
|
||||
ast::type::I32Type i32;
|
||||
|
||||
auto foo_var = std::make_unique<ast::DecoratedVariable>(
|
||||
std::make_unique<ast::Variable>("foo", ast::StorageClass::kOutput, &f32));
|
||||
|
||||
ast::VariableDecorationList decos;
|
||||
decos.push_back(std::make_unique<ast::LocationDecoration>(0));
|
||||
foo_var->set_decorations(std::move(decos));
|
||||
|
||||
auto bar_var = std::make_unique<ast::DecoratedVariable>(
|
||||
std::make_unique<ast::Variable>("bar", ast::StorageClass::kOutput, &i32));
|
||||
decos.push_back(std::make_unique<ast::LocationDecoration>(1));
|
||||
bar_var->set_decorations(std::move(decos));
|
||||
|
||||
td().RegisterVariableForTesting(foo_var.get());
|
||||
td().RegisterVariableForTesting(bar_var.get());
|
||||
|
||||
mod()->AddGlobalVariable(std::move(foo_var));
|
||||
mod()->AddGlobalVariable(std::move(bar_var));
|
||||
|
||||
ast::VariableList params;
|
||||
auto func =
|
||||
std::make_unique<ast::Function>("vtx_main", std::move(params), &f32);
|
||||
func->add_decoration(
|
||||
std::make_unique<ast::StageDecoration>(ast::PipelineStage::kVertex));
|
||||
auto* func_ptr = func.get();
|
||||
|
||||
auto body = std::make_unique<ast::BlockStatement>();
|
||||
body->append(std::make_unique<ast::AssignmentStatement>(
|
||||
std::make_unique<ast::IdentifierExpression>("foo"),
|
||||
std::make_unique<ast::IdentifierExpression>("foo")));
|
||||
body->append(std::make_unique<ast::AssignmentStatement>(
|
||||
std::make_unique<ast::IdentifierExpression>("bar"),
|
||||
std::make_unique<ast::IdentifierExpression>("bar")));
|
||||
func->set_body(std::move(body));
|
||||
|
||||
mod()->AddFunction(std::move(func));
|
||||
|
||||
ASSERT_TRUE(td().Determine()) << td().error();
|
||||
ASSERT_TRUE(gen().EmitEntryPointData(out(), func_ptr)) << gen().error();
|
||||
EXPECT_EQ(result(), R"(struct vtx_main_out {
|
||||
float foo : TEXCOORD0;
|
||||
int bar : TEXCOORD1;
|
||||
};
|
||||
|
||||
)");
|
||||
}
|
||||
|
||||
TEST_F(HlslGeneratorImplTest_EntryPoint,
|
||||
Emit_Function_EntryPointData_Fragment_Input) {
|
||||
// [[location 0]] var<in> foo : f32;
|
||||
// [[location 1]] var<in> bar : i32;
|
||||
//
|
||||
// struct frag_main_in {
|
||||
// float foo : TEXCOORD0;
|
||||
// int bar : TEXCOORD1;
|
||||
// };
|
||||
|
||||
ast::type::F32Type f32;
|
||||
ast::type::I32Type i32;
|
||||
|
||||
auto foo_var = std::make_unique<ast::DecoratedVariable>(
|
||||
std::make_unique<ast::Variable>("foo", ast::StorageClass::kInput, &f32));
|
||||
|
||||
ast::VariableDecorationList decos;
|
||||
decos.push_back(std::make_unique<ast::LocationDecoration>(0));
|
||||
foo_var->set_decorations(std::move(decos));
|
||||
|
||||
auto bar_var = std::make_unique<ast::DecoratedVariable>(
|
||||
std::make_unique<ast::Variable>("bar", ast::StorageClass::kInput, &i32));
|
||||
decos.push_back(std::make_unique<ast::LocationDecoration>(1));
|
||||
bar_var->set_decorations(std::move(decos));
|
||||
|
||||
td().RegisterVariableForTesting(foo_var.get());
|
||||
td().RegisterVariableForTesting(bar_var.get());
|
||||
|
||||
mod()->AddGlobalVariable(std::move(foo_var));
|
||||
mod()->AddGlobalVariable(std::move(bar_var));
|
||||
|
||||
ast::VariableList params;
|
||||
auto func = std::make_unique<ast::Function>("main", std::move(params), &f32);
|
||||
func->add_decoration(
|
||||
std::make_unique<ast::StageDecoration>(ast::PipelineStage::kVertex));
|
||||
auto* func_ptr = func.get();
|
||||
|
||||
auto body = std::make_unique<ast::BlockStatement>();
|
||||
body->append(std::make_unique<ast::AssignmentStatement>(
|
||||
std::make_unique<ast::IdentifierExpression>("foo"),
|
||||
std::make_unique<ast::IdentifierExpression>("foo")));
|
||||
body->append(std::make_unique<ast::AssignmentStatement>(
|
||||
std::make_unique<ast::IdentifierExpression>("bar"),
|
||||
std::make_unique<ast::IdentifierExpression>("bar")));
|
||||
func->set_body(std::move(body));
|
||||
|
||||
mod()->AddFunction(std::move(func));
|
||||
|
||||
ASSERT_TRUE(td().Determine()) << td().error();
|
||||
ASSERT_TRUE(gen().EmitEntryPointData(out(), func_ptr)) << gen().error();
|
||||
EXPECT_EQ(result(), R"(struct main_in {
|
||||
float foo : TEXCOORD0;
|
||||
int bar : TEXCOORD1;
|
||||
};
|
||||
|
||||
)");
|
||||
}
|
||||
|
||||
TEST_F(HlslGeneratorImplTest_EntryPoint,
|
||||
Emit_Function_EntryPointData_Fragment_Output) {
|
||||
// [[location 0]] var<out> foo : f32;
|
||||
// [[location 1]] var<out> bar : i32;
|
||||
//
|
||||
// struct frag_main_out {
|
||||
// float foo : SV_Target0;
|
||||
// int bar : SV_Target1;
|
||||
// };
|
||||
|
||||
ast::type::F32Type f32;
|
||||
ast::type::I32Type i32;
|
||||
|
||||
auto foo_var = std::make_unique<ast::DecoratedVariable>(
|
||||
std::make_unique<ast::Variable>("foo", ast::StorageClass::kOutput, &f32));
|
||||
|
||||
ast::VariableDecorationList decos;
|
||||
decos.push_back(std::make_unique<ast::LocationDecoration>(0));
|
||||
foo_var->set_decorations(std::move(decos));
|
||||
|
||||
auto bar_var = std::make_unique<ast::DecoratedVariable>(
|
||||
std::make_unique<ast::Variable>("bar", ast::StorageClass::kOutput, &i32));
|
||||
decos.push_back(std::make_unique<ast::LocationDecoration>(1));
|
||||
bar_var->set_decorations(std::move(decos));
|
||||
|
||||
td().RegisterVariableForTesting(foo_var.get());
|
||||
td().RegisterVariableForTesting(bar_var.get());
|
||||
|
||||
mod()->AddGlobalVariable(std::move(foo_var));
|
||||
mod()->AddGlobalVariable(std::move(bar_var));
|
||||
|
||||
ast::VariableList params;
|
||||
auto func = std::make_unique<ast::Function>("main", std::move(params), &f32);
|
||||
func->add_decoration(
|
||||
std::make_unique<ast::StageDecoration>(ast::PipelineStage::kFragment));
|
||||
auto* func_ptr = func.get();
|
||||
|
||||
auto body = std::make_unique<ast::BlockStatement>();
|
||||
body->append(std::make_unique<ast::AssignmentStatement>(
|
||||
std::make_unique<ast::IdentifierExpression>("foo"),
|
||||
std::make_unique<ast::IdentifierExpression>("foo")));
|
||||
body->append(std::make_unique<ast::AssignmentStatement>(
|
||||
std::make_unique<ast::IdentifierExpression>("bar"),
|
||||
std::make_unique<ast::IdentifierExpression>("bar")));
|
||||
func->set_body(std::move(body));
|
||||
|
||||
mod()->AddFunction(std::move(func));
|
||||
|
||||
ASSERT_TRUE(td().Determine()) << td().error();
|
||||
ASSERT_TRUE(gen().EmitEntryPointData(out(), func_ptr)) << gen().error();
|
||||
EXPECT_EQ(result(), R"(struct main_out {
|
||||
float foo : SV_Target0;
|
||||
int bar : SV_Target1;
|
||||
};
|
||||
|
||||
)");
|
||||
}
|
||||
|
||||
TEST_F(HlslGeneratorImplTest_EntryPoint,
|
||||
Emit_Function_EntryPointData_Compute_Input) {
|
||||
// [[location 0]] var<in> foo : f32;
|
||||
// [[location 1]] var<in> bar : i32;
|
||||
//
|
||||
// -> Error, not allowed
|
||||
|
||||
ast::type::F32Type f32;
|
||||
ast::type::I32Type i32;
|
||||
|
||||
auto foo_var = std::make_unique<ast::DecoratedVariable>(
|
||||
std::make_unique<ast::Variable>("foo", ast::StorageClass::kInput, &f32));
|
||||
|
||||
ast::VariableDecorationList decos;
|
||||
decos.push_back(std::make_unique<ast::LocationDecoration>(0));
|
||||
foo_var->set_decorations(std::move(decos));
|
||||
|
||||
auto bar_var = std::make_unique<ast::DecoratedVariable>(
|
||||
std::make_unique<ast::Variable>("bar", ast::StorageClass::kInput, &i32));
|
||||
decos.push_back(std::make_unique<ast::LocationDecoration>(1));
|
||||
bar_var->set_decorations(std::move(decos));
|
||||
|
||||
td().RegisterVariableForTesting(foo_var.get());
|
||||
td().RegisterVariableForTesting(bar_var.get());
|
||||
|
||||
mod()->AddGlobalVariable(std::move(foo_var));
|
||||
mod()->AddGlobalVariable(std::move(bar_var));
|
||||
|
||||
ast::VariableList params;
|
||||
auto func = std::make_unique<ast::Function>("main", std::move(params), &f32);
|
||||
func->add_decoration(
|
||||
std::make_unique<ast::StageDecoration>(ast::PipelineStage::kCompute));
|
||||
auto* func_ptr = func.get();
|
||||
|
||||
auto body = std::make_unique<ast::BlockStatement>();
|
||||
body->append(std::make_unique<ast::AssignmentStatement>(
|
||||
std::make_unique<ast::IdentifierExpression>("foo"),
|
||||
std::make_unique<ast::IdentifierExpression>("foo")));
|
||||
body->append(std::make_unique<ast::AssignmentStatement>(
|
||||
std::make_unique<ast::IdentifierExpression>("bar"),
|
||||
std::make_unique<ast::IdentifierExpression>("bar")));
|
||||
func->set_body(std::move(body));
|
||||
|
||||
mod()->AddFunction(std::move(func));
|
||||
|
||||
ASSERT_TRUE(td().Determine()) << td().error();
|
||||
ASSERT_FALSE(gen().EmitEntryPointData(out(), func_ptr)) << gen().error();
|
||||
EXPECT_EQ(gen().error(), R"(invalid location variable for pipeline stage)");
|
||||
}
|
||||
|
||||
TEST_F(HlslGeneratorImplTest_EntryPoint,
|
||||
Emit_Function_EntryPointData_Compute_Output) {
|
||||
// [[location 0]] var<out> foo : f32;
|
||||
// [[location 1]] var<out> bar : i32;
|
||||
//
|
||||
// -> Error not allowed
|
||||
|
||||
ast::type::F32Type f32;
|
||||
ast::type::I32Type i32;
|
||||
|
||||
auto foo_var = std::make_unique<ast::DecoratedVariable>(
|
||||
std::make_unique<ast::Variable>("foo", ast::StorageClass::kOutput, &f32));
|
||||
|
||||
ast::VariableDecorationList decos;
|
||||
decos.push_back(std::make_unique<ast::LocationDecoration>(0));
|
||||
foo_var->set_decorations(std::move(decos));
|
||||
|
||||
auto bar_var = std::make_unique<ast::DecoratedVariable>(
|
||||
std::make_unique<ast::Variable>("bar", ast::StorageClass::kOutput, &i32));
|
||||
decos.push_back(std::make_unique<ast::LocationDecoration>(1));
|
||||
bar_var->set_decorations(std::move(decos));
|
||||
|
||||
td().RegisterVariableForTesting(foo_var.get());
|
||||
td().RegisterVariableForTesting(bar_var.get());
|
||||
|
||||
mod()->AddGlobalVariable(std::move(foo_var));
|
||||
mod()->AddGlobalVariable(std::move(bar_var));
|
||||
|
||||
ast::VariableList params;
|
||||
auto func = std::make_unique<ast::Function>("main", std::move(params), &f32);
|
||||
func->add_decoration(
|
||||
std::make_unique<ast::StageDecoration>(ast::PipelineStage::kCompute));
|
||||
auto* func_ptr = func.get();
|
||||
|
||||
auto body = std::make_unique<ast::BlockStatement>();
|
||||
body->append(std::make_unique<ast::AssignmentStatement>(
|
||||
std::make_unique<ast::IdentifierExpression>("foo"),
|
||||
std::make_unique<ast::IdentifierExpression>("foo")));
|
||||
body->append(std::make_unique<ast::AssignmentStatement>(
|
||||
std::make_unique<ast::IdentifierExpression>("bar"),
|
||||
std::make_unique<ast::IdentifierExpression>("bar")));
|
||||
func->set_body(std::move(body));
|
||||
|
||||
mod()->AddFunction(std::move(func));
|
||||
|
||||
ASSERT_TRUE(td().Determine()) << td().error();
|
||||
ASSERT_FALSE(gen().EmitEntryPointData(out(), func_ptr)) << gen().error();
|
||||
EXPECT_EQ(gen().error(), R"(invalid location variable for pipeline stage)");
|
||||
}
|
||||
|
||||
TEST_F(HlslGeneratorImplTest_EntryPoint,
|
||||
Emit_Function_EntryPointData_Builtins) {
|
||||
// [[builtin frag_coord]] var<in> coord : vec4<f32>;
|
||||
// [[builtin frag_depth]] var<out> depth : f32;
|
||||
//
|
||||
// struct main_in {
|
||||
// vector<float, 4> coord : SV_Position;
|
||||
// };
|
||||
//
|
||||
// struct main_out {
|
||||
// float depth : SV_Depth;
|
||||
// };
|
||||
|
||||
ast::type::F32Type f32;
|
||||
ast::type::VoidType void_type;
|
||||
ast::type::VectorType vec4(&f32, 4);
|
||||
|
||||
auto coord_var =
|
||||
std::make_unique<ast::DecoratedVariable>(std::make_unique<ast::Variable>(
|
||||
"coord", ast::StorageClass::kInput, &vec4));
|
||||
|
||||
ast::VariableDecorationList decos;
|
||||
decos.push_back(
|
||||
std::make_unique<ast::BuiltinDecoration>(ast::Builtin::kFragCoord));
|
||||
coord_var->set_decorations(std::move(decos));
|
||||
|
||||
auto depth_var =
|
||||
std::make_unique<ast::DecoratedVariable>(std::make_unique<ast::Variable>(
|
||||
"depth", ast::StorageClass::kOutput, &f32));
|
||||
decos.push_back(
|
||||
std::make_unique<ast::BuiltinDecoration>(ast::Builtin::kFragDepth));
|
||||
depth_var->set_decorations(std::move(decos));
|
||||
|
||||
td().RegisterVariableForTesting(coord_var.get());
|
||||
td().RegisterVariableForTesting(depth_var.get());
|
||||
|
||||
mod()->AddGlobalVariable(std::move(coord_var));
|
||||
mod()->AddGlobalVariable(std::move(depth_var));
|
||||
|
||||
ast::VariableList params;
|
||||
auto func =
|
||||
std::make_unique<ast::Function>("main", std::move(params), &void_type);
|
||||
func->add_decoration(
|
||||
std::make_unique<ast::StageDecoration>(ast::PipelineStage::kFragment));
|
||||
auto* func_ptr = func.get();
|
||||
|
||||
auto body = std::make_unique<ast::BlockStatement>();
|
||||
body->append(std::make_unique<ast::AssignmentStatement>(
|
||||
std::make_unique<ast::IdentifierExpression>("depth"),
|
||||
std::make_unique<ast::MemberAccessorExpression>(
|
||||
std::make_unique<ast::IdentifierExpression>("coord"),
|
||||
std::make_unique<ast::IdentifierExpression>("x"))));
|
||||
func->set_body(std::move(body));
|
||||
|
||||
mod()->AddFunction(std::move(func));
|
||||
|
||||
ASSERT_TRUE(td().Determine()) << td().error();
|
||||
ASSERT_TRUE(gen().EmitEntryPointData(out(), func_ptr)) << gen().error();
|
||||
EXPECT_EQ(result(), R"(struct main_in {
|
||||
vector<float, 4> coord : SV_Position;
|
||||
};
|
||||
|
||||
struct main_out {
|
||||
float depth : SV_Depth;
|
||||
};
|
||||
|
||||
)");
|
||||
}
|
||||
|
||||
} // namespace
|
||||
} // namespace hlsl
|
||||
} // namespace writer
|
||||
} // namespace tint
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue