[msl-writer] Fix leak in HandleEntryPointIOTypes

Avoid cloning parameters until we know we are going to rewrite the
function.

Change-Id: I0b0e2513d8652a0f2e561419848f77875d67591b
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/44600
Commit-Queue: James Price <jrprice@google.com>
Reviewed-by: Ben Clayton <bclayton@google.com>
This commit is contained in:
James Price 2021-03-15 16:47:11 +00:00 committed by Commit Bot service account
parent cf79a16fef
commit 20a438a5c3
3 changed files with 58 additions and 37 deletions

View File

@ -14,6 +14,7 @@
#include "src/transform/msl.h" #include "src/transform/msl.h"
#include <unordered_set>
#include <utility> #include <utility>
#include <vector> #include <vector>
@ -309,12 +310,9 @@ void Msl::HandleEntryPointIOTypes(CloneContext& ctx) const {
continue; continue;
} }
std::vector<ast::Variable*> worklist; // Find location-decorated parameters and build a struct to hold them.
ast::StructMemberList struct_members; ast::StructMemberList struct_members;
ast::VariableList new_parameters; std::unordered_set<ast::Variable*> builtins;
ast::StatementList new_body;
// Find location-decorated parameters.
for (auto* param : func->params()) { for (auto* param : func->params()) {
// TODO(jrprice): Handle structs (collate members into a single struct). // TODO(jrprice): Handle structs (collate members into a single struct).
if (param->decorations().size() != 1) { if (param->decorations().size() != 1) {
@ -324,24 +322,27 @@ void Msl::HandleEntryPointIOTypes(CloneContext& ctx) const {
auto* deco = param->decorations()[0]; auto* deco = param->decorations()[0];
if (auto* builtin = deco->As<ast::BuiltinDecoration>()) { if (auto* builtin = deco->As<ast::BuiltinDecoration>()) {
// Keep any builtin-decorated parameters unchanged. // Keep any builtin-decorated parameters unchanged.
new_parameters.push_back(ctx.Clone(param)); builtins.insert(param);
continue;
} else if (auto* loc = deco->As<ast::LocationDecoration>()) { } else if (auto* loc = deco->As<ast::LocationDecoration>()) {
// Create a struct member with the location decoration. // Create a struct member with the location decoration.
struct_members.push_back( struct_members.push_back(ctx.dst->Member(
ctx.dst->Member(param->symbol().to_str(), ctx.Clone(param->type()), ctx.src->Symbols().NameFor(param->symbol()),
ast::DecorationList{ctx.Clone(loc)})); ctx.Clone(param->type()), ast::DecorationList{ctx.Clone(loc)}));
worklist.push_back(param);
} else { } else {
TINT_ICE(ctx.dst->Diagnostics()) TINT_ICE(ctx.dst->Diagnostics())
<< "Unsupported entry point parameter decoration"; << "Unsupported entry point parameter decoration";
} }
} }
if (worklist.empty()) { if (struct_members.empty()) {
// Nothing to do. // Nothing to do.
continue; continue;
} }
ast::VariableList new_parameters;
ast::StatementList new_body;
// Create a struct type to hold all of the user-defined input parameters. // Create a struct type to hold all of the user-defined input parameters.
auto* in_struct = ctx.dst->create<type::Struct>( auto* in_struct = ctx.dst->create<type::Struct>(
ctx.dst->Symbols().New(), ctx.dst->Symbols().New(),
@ -355,14 +356,21 @@ void Msl::HandleEntryPointIOTypes(CloneContext& ctx) const {
new_parameters.push_back(struct_param); new_parameters.push_back(struct_param);
// Replace the original parameters with function-scope constants. // Replace the original parameters with function-scope constants.
for (auto* param : worklist) { for (auto* param : func->params()) {
if (builtins.count(param)) {
// Keep any builtin-decorated parameters unchanged.
new_parameters.push_back(ctx.Clone(param));
continue;
}
auto name = ctx.src->Symbols().NameFor(param->symbol());
// Create a function-scope const to replace the parameter. // Create a function-scope const to replace the parameter.
// Initialize it with the value extracted from the struct parameter. // Initialize it with the value extracted from the struct parameter.
auto func_const_symbol = ctx.dst->Symbols().New(); auto func_const_symbol = ctx.dst->Symbols().Register(name);
auto* func_const = auto* func_const =
ctx.dst->Const(func_const_symbol, ctx.Clone(param->type()), ctx.dst->Const(func_const_symbol, ctx.Clone(param->type()),
ctx.dst->MemberAccessor(struct_param_symbol, ctx.dst->MemberAccessor(struct_param_symbol, name));
param->symbol().to_str()));
new_body.push_back(ctx.dst->WrapInStatement(func_const)); new_body.push_back(ctx.dst->WrapInStatement(func_const));

View File

@ -339,18 +339,18 @@ fn frag_main([[builtin(frag_coord)]] coord : vec4<f32>,
)"; )";
auto* expect = R"( auto* expect = R"(
struct tint_symbol_4 { struct tint_symbol_3 {
[[location(1)]] [[location(1)]]
tint_symbol_2 : f32; loc1 : f32;
[[location(2)]] [[location(2)]]
tint_symbol_3 : vec4<u32>; loc2 : vec4<u32>;
}; };
[[stage(fragment)]] [[stage(fragment)]]
fn frag_main([[builtin(frag_coord)]] coord : vec4<f32>, tint_symbol_5 : tint_symbol_4) -> void { fn frag_main(tint_symbol_4 : tint_symbol_3, [[builtin(frag_coord)]] coord : vec4<f32>) -> void {
const tint_symbol_6 : f32 = tint_symbol_5.tint_symbol_2; const loc1 : f32 = tint_symbol_4.loc1;
const tint_symbol_7 : vec4<u32> = tint_symbol_5.tint_symbol_3; const loc2 : vec4<u32> = tint_symbol_4.loc2;
var col : f32 = (coord.x * tint_symbol_6); var col : f32 = (coord.x * loc1);
} }
)"; )";
@ -359,6 +359,19 @@ fn frag_main([[builtin(frag_coord)]] coord : vec4<f32>, tint_symbol_5 : tint_sym
EXPECT_EQ(expect, str(got)); EXPECT_EQ(expect, str(got));
} }
TEST_F(MslEntryPointIOTest, HandleEntryPointIOTypes_OnlyBuiltinParameters) {
// Expect no change.
auto* src = R"(
[[stage(fragment)]]
fn frag_main([[builtin(frag_coord)]] coord : vec4<f32>) -> void {
}
)";
auto got = Transform<Msl>(src);
EXPECT_EQ(src, str(got));
}
TEST_F(MslEntryPointIOTest, HandleEntryPointIOTypes_Parameters_EmptyBody) { TEST_F(MslEntryPointIOTest, HandleEntryPointIOTypes_Parameters_EmptyBody) {
auto* src = R"( auto* src = R"(
[[stage(fragment)]] [[stage(fragment)]]
@ -369,17 +382,17 @@ fn frag_main([[builtin(frag_coord)]] coord : vec4<f32>,
)"; )";
auto* expect = R"( auto* expect = R"(
struct tint_symbol_4 { struct tint_symbol_3 {
[[location(1)]] [[location(1)]]
tint_symbol_2 : f32; loc1 : f32;
[[location(2)]] [[location(2)]]
tint_symbol_3 : vec4<u32>; loc2 : vec4<u32>;
}; };
[[stage(fragment)]] [[stage(fragment)]]
fn frag_main([[builtin(frag_coord)]] coord : vec4<f32>, tint_symbol_5 : tint_symbol_4) -> void { fn frag_main(tint_symbol_4 : tint_symbol_3, [[builtin(frag_coord)]] coord : vec4<f32>) -> void {
const tint_symbol_6 : f32 = tint_symbol_5.tint_symbol_2; const loc1 : f32 = tint_symbol_4.loc1;
const tint_symbol_7 : vec4<u32> = tint_symbol_5.tint_symbol_3; const loc2 : vec4<u32> = tint_symbol_4.loc2;
} }
)"; )";

View File

@ -114,7 +114,7 @@ TEST_F(MslGeneratorImplTest, Emit_Decoration_EntryPoint_NoReturn_InOut) {
using namespace metal; using namespace metal;
struct tint_symbol_2 { struct tint_symbol_2 {
float tint_symbol_1 [[user(locn0)]]; float foo [[user(locn0)]];
}; };
struct _tint_main_out { struct _tint_main_out {
@ -123,8 +123,8 @@ struct _tint_main_out {
fragment _tint_main_out _tint_main(tint_symbol_2 tint_symbol_3 [[stage_in]]) { fragment _tint_main_out _tint_main(tint_symbol_2 tint_symbol_3 [[stage_in]]) {
_tint_main_out _tint_out = {}; _tint_main_out _tint_out = {};
const float tint_symbol_4 = tint_symbol_3.tint_symbol_1; const float foo = tint_symbol_3.foo;
_tint_out.bar = tint_symbol_4; _tint_out.bar = foo;
return _tint_out; return _tint_out;
} }
@ -154,7 +154,7 @@ TEST_F(MslGeneratorImplTest, Emit_Decoration_EntryPoint_WithInOutVars) {
using namespace metal; using namespace metal;
struct tint_symbol_2 { struct tint_symbol_2 {
float tint_symbol_1 [[user(locn0)]]; float foo [[user(locn0)]];
}; };
struct frag_main_out { struct frag_main_out {
@ -163,8 +163,8 @@ struct frag_main_out {
fragment frag_main_out frag_main(tint_symbol_2 tint_symbol_3 [[stage_in]]) { fragment frag_main_out frag_main(tint_symbol_2 tint_symbol_3 [[stage_in]]) {
frag_main_out _tint_out = {}; frag_main_out _tint_out = {};
const float tint_symbol_4 = tint_symbol_3.tint_symbol_1; const float foo = tint_symbol_3.foo;
_tint_out.bar = tint_symbol_4; _tint_out.bar = foo;
return _tint_out; return _tint_out;
} }
@ -372,7 +372,7 @@ TEST_F(
using namespace metal; using namespace metal;
struct tint_symbol_2 { struct tint_symbol_2 {
float tint_symbol_1 [[user(locn0)]]; float foo [[user(locn0)]];
}; };
struct ep_1_out { struct ep_1_out {
@ -388,8 +388,8 @@ float sub_func_ep_1(thread ep_1_out& _tint_out, float param, float foo) {
fragment ep_1_out ep_1(tint_symbol_2 tint_symbol_3 [[stage_in]]) { fragment ep_1_out ep_1(tint_symbol_2 tint_symbol_3 [[stage_in]]) {
ep_1_out _tint_out = {}; ep_1_out _tint_out = {};
const float tint_symbol_4 = tint_symbol_3.tint_symbol_1; const float foo = tint_symbol_3.foo;
_tint_out.bar = sub_func_ep_1(_tint_out, 1.0f, tint_symbol_4); _tint_out.bar = sub_func_ep_1(_tint_out, 1.0f, foo);
return _tint_out; return _tint_out;
} }