mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-17 17:31:47 +00:00
Variables can be declared in more than just BlockStatement. For example, for-loops can declare a variable. Change this to be a map instead of a vector. This helps with lookups. Change-Id: Ic9429425af70e9535c21cc0875b875f145724266 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/104040 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Antonio Maiorano <amaiorano@google.com> Commit-Queue: Ben Clayton <bclayton@google.com>
53 lines
1.8 KiB
C++
53 lines
1.8 KiB
C++
// Copyright 2021 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 <algorithm>
|
|
|
|
#include "src/tint/ast/block_statement.h"
|
|
#include "src/tint/ast/loop_statement.h"
|
|
#include "src/tint/ast/statement.h"
|
|
#include "src/tint/ast/variable.h"
|
|
#include "src/tint/sem/block_statement.h"
|
|
#include "src/tint/sem/statement.h"
|
|
#include "src/tint/sem/variable.h"
|
|
|
|
TINT_INSTANTIATE_TYPEINFO(tint::sem::Statement);
|
|
TINT_INSTANTIATE_TYPEINFO(tint::sem::CompoundStatement);
|
|
|
|
namespace tint::sem {
|
|
|
|
Statement::Statement(const ast::Statement* declaration,
|
|
const CompoundStatement* parent,
|
|
const sem::Function* function)
|
|
: declaration_(declaration), parent_(parent), function_(function) {}
|
|
|
|
Statement::~Statement() = default;
|
|
|
|
const BlockStatement* Statement::Block() const {
|
|
return FindFirstParent<BlockStatement>();
|
|
}
|
|
|
|
CompoundStatement::CompoundStatement(const ast::Statement* declaration,
|
|
const CompoundStatement* parent,
|
|
const sem::Function* function)
|
|
: Base(declaration, parent, function) {}
|
|
|
|
CompoundStatement::~CompoundStatement() = default;
|
|
|
|
void CompoundStatement::AddDecl(const sem::LocalVariable* var) {
|
|
decls_.Add(var->Declaration()->symbol, OrderedLocalVariable{decls_.Count(), var});
|
|
}
|
|
|
|
} // namespace tint::sem
|