2021-01-26 16:57:10 +00:00
|
|
|
// 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 "src/program_builder.h"
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
#include "src/clone_context.h"
|
2021-01-29 11:22:40 +00:00
|
|
|
#include "src/demangler.h"
|
2021-01-26 16:57:10 +00:00
|
|
|
#include "src/type/struct_type.h"
|
|
|
|
|
|
|
|
namespace tint {
|
|
|
|
|
|
|
|
ProgramBuilder::ProgramBuilder()
|
|
|
|
: ty(this), ast_(nodes_.Create<ast::Module>(Source{})) {}
|
|
|
|
|
|
|
|
ProgramBuilder::ProgramBuilder(ProgramBuilder&& rhs)
|
|
|
|
: ty(std::move(rhs.ty)),
|
|
|
|
types_(std::move(rhs.types_)),
|
|
|
|
nodes_(std::move(rhs.nodes_)),
|
|
|
|
ast_(rhs.ast_),
|
2021-01-29 10:55:40 +00:00
|
|
|
sem_(std::move(rhs.sem_)),
|
2021-01-26 16:57:10 +00:00
|
|
|
symbols_(std::move(rhs.symbols_)) {
|
|
|
|
rhs.MarkAsMoved();
|
|
|
|
}
|
|
|
|
|
|
|
|
ProgramBuilder::~ProgramBuilder() = default;
|
|
|
|
|
|
|
|
ProgramBuilder& ProgramBuilder::operator=(ProgramBuilder&& rhs) {
|
|
|
|
rhs.MarkAsMoved();
|
|
|
|
AssertNotMoved();
|
|
|
|
ty = std::move(rhs.ty);
|
|
|
|
types_ = std::move(rhs.types_);
|
|
|
|
nodes_ = std::move(rhs.nodes_);
|
|
|
|
ast_ = rhs.ast_;
|
2021-01-29 10:55:40 +00:00
|
|
|
sem_ = std::move(rhs.sem_);
|
2021-01-26 16:57:10 +00:00
|
|
|
symbols_ = std::move(rhs.symbols_);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ProgramBuilder::IsValid() const {
|
2021-01-27 18:49:05 +00:00
|
|
|
return !diagnostics_.contains_errors() && ast_->IsValid();
|
2021-01-26 16:57:10 +00:00
|
|
|
}
|
|
|
|
|
2021-01-29 11:22:40 +00:00
|
|
|
std::string ProgramBuilder::str(const ast::Node* node) const {
|
|
|
|
return Demangler().Demangle(Symbols(), node->str(Sem()));
|
|
|
|
}
|
|
|
|
|
2021-01-26 16:57:10 +00:00
|
|
|
void ProgramBuilder::MarkAsMoved() {
|
|
|
|
AssertNotMoved();
|
|
|
|
moved_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProgramBuilder::AssertNotMoved() const {
|
|
|
|
assert(!moved_);
|
|
|
|
}
|
|
|
|
|
|
|
|
ProgramBuilder::TypesBuilder::TypesBuilder(ProgramBuilder* pb) : builder(pb) {}
|
|
|
|
|
|
|
|
ast::Variable* ProgramBuilder::Var(const std::string& name,
|
|
|
|
ast::StorageClass storage,
|
|
|
|
type::Type* type) {
|
|
|
|
return Var(name, storage, type, nullptr, {});
|
|
|
|
}
|
|
|
|
|
|
|
|
ast::Variable* ProgramBuilder::Var(const std::string& name,
|
|
|
|
ast::StorageClass storage,
|
|
|
|
type::Type* type,
|
|
|
|
ast::Expression* constructor,
|
|
|
|
ast::VariableDecorationList decorations) {
|
|
|
|
auto* var = create<ast::Variable>(Symbols().Register(name), storage, type,
|
|
|
|
false, constructor, decorations);
|
|
|
|
OnVariableBuilt(var);
|
|
|
|
return var;
|
|
|
|
}
|
|
|
|
|
|
|
|
ast::Variable* ProgramBuilder::Var(const Source& source,
|
|
|
|
const std::string& name,
|
|
|
|
ast::StorageClass storage,
|
|
|
|
type::Type* type,
|
|
|
|
ast::Expression* constructor,
|
|
|
|
ast::VariableDecorationList decorations) {
|
|
|
|
auto* var = create<ast::Variable>(source, Symbols().Register(name), storage,
|
|
|
|
type, false, constructor, decorations);
|
|
|
|
OnVariableBuilt(var);
|
|
|
|
return var;
|
|
|
|
}
|
|
|
|
|
|
|
|
ast::Variable* ProgramBuilder::Const(const std::string& name,
|
|
|
|
ast::StorageClass storage,
|
|
|
|
type::Type* type) {
|
|
|
|
return Const(name, storage, type, nullptr, {});
|
|
|
|
}
|
|
|
|
|
|
|
|
ast::Variable* ProgramBuilder::Const(const std::string& name,
|
|
|
|
ast::StorageClass storage,
|
|
|
|
type::Type* type,
|
|
|
|
ast::Expression* constructor,
|
|
|
|
ast::VariableDecorationList decorations) {
|
|
|
|
auto* var = create<ast::Variable>(Symbols().Register(name), storage, type,
|
|
|
|
true, constructor, decorations);
|
|
|
|
OnVariableBuilt(var);
|
|
|
|
return var;
|
|
|
|
}
|
|
|
|
|
|
|
|
ast::Variable* ProgramBuilder::Const(const Source& source,
|
|
|
|
const std::string& name,
|
|
|
|
ast::StorageClass storage,
|
|
|
|
type::Type* type,
|
|
|
|
ast::Expression* constructor,
|
|
|
|
ast::VariableDecorationList decorations) {
|
|
|
|
auto* var = create<ast::Variable>(source, Symbols().Register(name), storage,
|
|
|
|
type, true, constructor, decorations);
|
|
|
|
OnVariableBuilt(var);
|
|
|
|
return var;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace tint
|