blob: b1ef7de8ab5d63b9982703554695d473cb2a4bc7 [file] [log] [blame]
// 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/reader/spirv/construct.h"
namespace tint {
namespace reader {
namespace spirv {
Construct::Construct(const Construct* the_parent,
int the_depth,
Kind the_kind,
uint32_t the_begin_id,
uint32_t the_end_id,
uint32_t the_begin_pos,
uint32_t the_end_pos)
: parent(the_parent),
enclosing_continue(
// Compute the enclosing continue construct. Doing this in the
// constructor member list lets us make the member const.
the_kind == kContinue
? this
: (parent ? parent->enclosing_continue : nullptr)),
enclosing_loop_or_continue(
// Compute the enclosing loop or continue construct. Doing this
// in the constructor member list lets us make the member const.
(the_kind == kLoop || the_kind == kContinue)
? this
: (parent ? parent->enclosing_loop_or_continue : nullptr)),
depth(the_depth),
kind(the_kind),
begin_id(the_begin_id),
end_id(the_end_id),
begin_pos(the_begin_pos),
end_pos(the_end_pos) {}
} // namespace spirv
} // namespace reader
} // namespace tint