dawn-cmake/src/writer/spirv/function.cc
dan sinclair baaf989452 [spirv-writer] Add function variables
This Cl adds function variables to the SPIR-V output. This requires some
refactoring to split function instructions and variables apart in the
builder.

Bug: tint:5
Change-Id: I4d0045f5a02311cf9a2803929c66c648278e3734
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/18600
Reviewed-by: David Neto <dneto@google.com>
2020-04-01 23:40:53 +00:00

54 lines
1.5 KiB
C++

// 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/writer/spirv/function.h"
namespace tint {
namespace writer {
namespace spirv {
Function::Function()
: declaration_(Instruction{spv::Op::OpNop, {}}),
label_op_(Operand::Int(0)) {}
Function::Function(const Instruction& declaration,
const Operand& label_op,
const std::vector<Instruction>& params)
: declaration_(declaration), label_op_(label_op), params_(params) {}
Function::~Function() = default;
void Function::iterate(std::function<void(const Instruction&)> cb) const {
cb(declaration_);
for (const auto& param : params_) {
cb(param);
}
cb(Instruction{spv::Op::OpLabel, {label_op_}});
for (const auto& var : vars_) {
cb(var);
}
for (const auto& inst : instructions_) {
cb(inst);
}
cb(Instruction{spv::Op::OpFunctionEnd, {}});
}
} // namespace spirv
} // namespace writer
} // namespace tint