mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-09-01 00:10:30 +00:00
This CL adds `while` statement support into the IR builder, converting them into loop flow nodes. Bug: tint:1718 Change-Id: I6dbaa24a0082463281dc933f02805169836fedd6 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/107803 Reviewed-by: Ben Clayton <bclayton@google.com> Commit-Queue: Dan Sinclair <dsinclair@chromium.org> Kokoro: Kokoro <noreply+kokoro@google.com>
48 lines
1.6 KiB
C++
48 lines
1.6 KiB
C++
// Copyright 2022 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.
|
|
|
|
#ifndef SRC_TINT_IR_LOOP_H_
|
|
#define SRC_TINT_IR_LOOP_H_
|
|
|
|
#include "src/tint/ast/statement.h"
|
|
#include "src/tint/ir/block.h"
|
|
#include "src/tint/ir/flow_node.h"
|
|
|
|
namespace tint::ir {
|
|
|
|
/// Flow node describing a loop.
|
|
class Loop : public Castable<Loop, FlowNode> {
|
|
public:
|
|
/// Constructor
|
|
/// @param stmt the loop, while or for statement.
|
|
explicit Loop(const ast::Statement* stmt);
|
|
~Loop() override;
|
|
|
|
/// The ast loop, while or for statement this ir loop is created from.
|
|
const ast::Statement* source;
|
|
|
|
/// The start block is the first block in a loop.
|
|
Block* start_target = nullptr;
|
|
/// The continue target of the block.
|
|
Block* continuing_target = nullptr;
|
|
/// The loop merge target. If the `loop` does a `return` then this block may not actually
|
|
/// end up in the control flow. We need it if the loop does a `break` we know where to break
|
|
/// too.
|
|
Block* merge_target = nullptr;
|
|
};
|
|
|
|
} // namespace tint::ir
|
|
|
|
#endif // SRC_TINT_IR_LOOP_H_
|