// 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/parser_impl.h" #include #include #include #include #include #include #include #include #include "source/opt/basic_block.h" #include "source/opt/build_module.h" #include "source/opt/decoration_manager.h" #include "source/opt/function.h" #include "source/opt/instruction.h" #include "source/opt/module.h" #include "source/opt/type_manager.h" #include "source/opt/types.h" #include "spirv-tools/libspirv.hpp" #include "src/ast/builtin_decoration.h" #include "src/ast/decorated_variable.h" #include "src/ast/struct.h" #include "src/ast/struct_decoration.h" #include "src/ast/struct_member.h" #include "src/ast/struct_member_decoration.h" #include "src/ast/struct_member_offset_decoration.h" #include "src/ast/type/alias_type.h" #include "src/ast/type/array_type.h" #include "src/ast/type/bool_type.h" #include "src/ast/type/f32_type.h" #include "src/ast/type/i32_type.h" #include "src/ast/type/matrix_type.h" #include "src/ast/type/pointer_type.h" #include "src/ast/type/struct_type.h" #include "src/ast/type/type.h" #include "src/ast/type/u32_type.h" #include "src/ast/type/vector_type.h" #include "src/ast/type/void_type.h" #include "src/ast/variable.h" #include "src/ast/variable_decl_statement.h" #include "src/ast/variable_decoration.h" #include "src/reader/spirv/function.h" #include "src/type_manager.h" namespace tint { namespace reader { namespace spirv { namespace { const spv_target_env kTargetEnv = SPV_ENV_WEBGPU_0; // A FunctionTraverser is used to compute an ordering of functions in the // module such that callees precede callers. class FunctionTraverser { public: explicit FunctionTraverser(const spvtools::opt::Module& module) : module_(module) {} // @returns the functions in the modules such that callees precede callers. std::vector TopologicallyOrderedFunctions() { visited_.clear(); ordered_.clear(); id_to_func_.clear(); for (const auto& f : module_) { id_to_func_[f.result_id()] = &f; } for (const auto& f : module_) { Visit(f); } return ordered_; } private: void Visit(const spvtools::opt::Function& f) { if (visited_.count(&f)) { return; } visited_.insert(&f); for (const auto& bb : f) { for (const auto& inst : bb) { if (inst.opcode() != SpvOpFunctionCall) { continue; } const auto* callee = id_to_func_[inst.GetSingleWordInOperand(0)]; if (callee) { Visit(*callee); } } } ordered_.push_back(&f); } const spvtools::opt::Module& module_; std::unordered_set visited_; std::unordered_map id_to_func_; std::vector ordered_; }; } // namespace ParserImpl::ParserImpl(Context* ctx, const std::vector& spv_binary) : Reader(ctx), spv_binary_(spv_binary), fail_stream_(&success_, &errors_), namer_(fail_stream_), enum_converter_(fail_stream_), tools_context_(kTargetEnv), tools_(kTargetEnv) { // Create a message consumer to propagate error messages from SPIRV-Tools // out as our own failures. message_consumer_ = [this](spv_message_level_t level, const char* /*source*/, const spv_position_t& position, const char* message) { switch (level) { // Ignore info and warning message. case SPV_MSG_WARNING: case SPV_MSG_INFO: break; // Otherwise, propagate the error. default: // For binary validation errors, we only have the instruction // number. It's not text, so there is no column number. this->Fail() << "line:" << position.index << ": " << message; } }; } ParserImpl::~ParserImpl() = default; bool ParserImpl::Parse() { // Set up use of SPIRV-Tools utilities. spvtools::SpirvTools spv_tools(kTargetEnv); // Error messages from SPIRV-Tools are forwarded as failures, including // setting |success_| to false. spv_tools.SetMessageConsumer(message_consumer_); if (!success_) { return false; } // Only consider valid modules. On failure, the message consumer // will set the error status. if (!spv_tools.Validate(spv_binary_)) { return false; } if (!BuildInternalModule()) { return false; } if (!ParseInternalModule()) { return false; } return success_; } ast::Module ParserImpl::module() { // TODO(dneto): Should we clear out spv_binary_ here, to reduce // memory usage? return std::move(ast_module_); } ast::type::Type* ParserImpl::ConvertType(uint32_t type_id) { if (!success_) { return nullptr; } if (type_mgr_ == nullptr) { Fail() << "ConvertType called when the internal module has not been built"; return nullptr; } auto where = id_to_type_.find(type_id); if (where != id_to_type_.end()) { return where->second; } auto* spirv_type = type_mgr_->GetType(type_id); if (spirv_type == nullptr) { Fail() << "ID is not a SPIR-V type: " << type_id; return nullptr; } auto save = [this, type_id](ast::type::Type* type) { if (type != nullptr) { id_to_type_[type_id] = type; } return type; }; switch (spirv_type->kind()) { case spvtools::opt::analysis::Type::kVoid: return save(ctx_.type_mgr().Get(std::make_unique())); case spvtools::opt::analysis::Type::kBool: return save(ctx_.type_mgr().Get(std::make_unique())); case spvtools::opt::analysis::Type::kInteger: return save(ConvertType(spirv_type->AsInteger())); case spvtools::opt::analysis::Type::kFloat: return save(ConvertType(spirv_type->AsFloat())); case spvtools::opt::analysis::Type::kVector: return save(ConvertType(spirv_type->AsVector())); case spvtools::opt::analysis::Type::kMatrix: return save(ConvertType(spirv_type->AsMatrix())); case spvtools::opt::analysis::Type::kRuntimeArray: return save(ConvertType(spirv_type->AsRuntimeArray())); case spvtools::opt::analysis::Type::kArray: return save(ConvertType(spirv_type->AsArray())); case spvtools::opt::analysis::Type::kStruct: return save(ConvertType(spirv_type->AsStruct())); case spvtools::opt::analysis::Type::kPointer: return save(ConvertType(spirv_type->AsPointer())); case spvtools::opt::analysis::Type::kFunction: // Tint doesn't have a Function type. // We need to convert the result type and parameter types. // But the SPIR-V defines those before defining the function // type. No further work is required here. return nullptr; default: break; } Fail() << "unknown SPIR-V type: " << type_id; return nullptr; } DecorationList ParserImpl::GetDecorationsFor(uint32_t id) const { DecorationList result; const auto& decorations = deco_mgr_->GetDecorationsFor(id, true); for (const auto* inst : decorations) { if (inst->opcode() != SpvOpDecorate) { continue; } // Example: OpDecorate %struct_id Block // Example: OpDecorate %array_ty ArrayStride 16 std::vector inst_as_words; inst->ToBinaryWithoutAttachedDebugInsts(&inst_as_words); Decoration d(inst_as_words.begin() + 2, inst_as_words.end()); result.push_back(d); } return result; } DecorationList ParserImpl::GetDecorationsForMember( uint32_t id, uint32_t member_index) const { DecorationList result; const auto& decorations = deco_mgr_->GetDecorationsFor(id, true); for (const auto* inst : decorations) { if ((inst->opcode() != SpvOpMemberDecorate) || (inst->GetSingleWordInOperand(1) != member_index)) { continue; } // Example: OpMemberDecorate %struct_id 2 Offset 24 std::vector inst_as_words; inst->ToBinaryWithoutAttachedDebugInsts(&inst_as_words); Decoration d(inst_as_words.begin() + 3, inst_as_words.end()); result.push_back(d); } return result; } std::unique_ptr ParserImpl::ConvertMemberDecoration(const Decoration& decoration) { if (decoration.empty()) { Fail() << "malformed SPIR-V decoration: it's empty"; return nullptr; } switch (decoration[0]) { case SpvDecorationOffset: if (decoration.size() != 2) { Fail() << "malformed Offset decoration: expected 1 literal operand, has " << decoration.size() - 1; return nullptr; } return std::make_unique(decoration[1]); default: // TODO(dneto): Support the remaining member decorations. break; } Fail() << "unhandled member decoration: " << decoration[0]; return nullptr; } bool ParserImpl::BuildInternalModule() { if (!success_) { return false; } tools_.SetMessageConsumer(message_consumer_); const spv_context& context = tools_context_.CContext(); ir_context_ = spvtools::BuildModule(context->target_env, context->consumer, spv_binary_.data(), spv_binary_.size()); if (!ir_context_) { return Fail() << "internal error: couldn't build the internal " "representation of the module"; } module_ = ir_context_->module(); def_use_mgr_ = ir_context_->get_def_use_mgr(); constant_mgr_ = ir_context_->get_constant_mgr(); type_mgr_ = ir_context_->get_type_mgr(); deco_mgr_ = ir_context_->get_decoration_mgr(); return success_; } void ParserImpl::ResetInternalModule() { ir_context_.reset(nullptr); module_ = nullptr; def_use_mgr_ = nullptr; constant_mgr_ = nullptr; type_mgr_ = nullptr; deco_mgr_ = nullptr; import_map_.clear(); glsl_std_450_imports_.clear(); } bool ParserImpl::ParseInternalModule() { if (!success_) { return false; } if (!RegisterExtendedInstructionImports()) { return false; } if (!RegisterUserAndStructMemberNames()) { return false; } if (!EmitEntryPoints()) { return false; } if (!RegisterTypes()) { return false; } if (!EmitAliasTypes()) { return false; } if (!EmitModuleScopeVariables()) { return false; } if (!EmitFunctions()) { return false; } return success_; } bool ParserImpl::RegisterExtendedInstructionImports() { for (const spvtools::opt::Instruction& import : module_->ext_inst_imports()) { std::string name( reinterpret_cast(import.GetInOperand(0).words.data())); // TODO(dneto): Handle other extended instruction sets when needed. if (name == "GLSL.std.450") { // Only create the AST import once, so we can use import name 'std::glsl'. // This is a canonicalization. if (glsl_std_450_imports_.empty()) { auto ast_import = std::make_unique(name, "std::glsl"); import_map_[import.result_id()] = ast_import.get(); ast_module_.AddImport(std::move(ast_import)); } glsl_std_450_imports_.insert(import.result_id()); } else { return Fail() << "Unrecognized extended instruction set: " << name; } } return true; } bool ParserImpl::RegisterUserAndStructMemberNames() { if (!success_) { return false; } // Register entry point names. An entry point name is the point of contact // between the API and the shader. It has the highest priority for // preservation, so register it first. for (const spvtools::opt::Instruction& entry_point : module_->entry_points()) { const uint32_t function_id = entry_point.GetSingleWordInOperand(1); const std::string name = entry_point.GetInOperand(2).AsString(); namer_.SuggestSanitizedName(function_id, name); } // Register names from OpName and OpMemberName for (const auto& inst : module_->debugs2()) { switch (inst.opcode()) { case SpvOpName: namer_.SuggestSanitizedName(inst.GetSingleWordInOperand(0), inst.GetInOperand(1).AsString()); break; case SpvOpMemberName: namer_.SuggestSanitizedMemberName(inst.GetSingleWordInOperand(0), inst.GetSingleWordInOperand(1), inst.GetInOperand(2).AsString()); break; default: break; } } // Fill in struct member names, and disambiguate them. for (const auto* type_inst : module_->GetTypes()) { if (type_inst->opcode() == SpvOpTypeStruct) { namer_.ResolveMemberNamesForStruct(type_inst->result_id(), type_inst->NumInOperands()); } } return true; } bool ParserImpl::EmitEntryPoints() { for (const spvtools::opt::Instruction& entry_point : module_->entry_points()) { const auto stage = SpvExecutionModel(entry_point.GetSingleWordInOperand(0)); const uint32_t function_id = entry_point.GetSingleWordInOperand(1); const std::string name = namer_.GetName(function_id); ast_module_.AddEntryPoint(std::make_unique( enum_converter_.ToPipelineStage(stage), "", name)); } // The enum conversion could have failed, so return the existing status value. return success_; } ast::type::Type* ParserImpl::ConvertType( const spvtools::opt::analysis::Integer* int_ty) { if (int_ty->width() == 32) { if (int_ty->IsSigned()) { return ctx_.type_mgr().Get(std::make_unique()); } else { return ctx_.type_mgr().Get(std::make_unique()); } } Fail() << "unhandled integer width: " << int_ty->width(); return nullptr; } ast::type::Type* ParserImpl::ConvertType( const spvtools::opt::analysis::Float* float_ty) { if (float_ty->width() == 32) { return ctx_.type_mgr().Get(std::make_unique()); } Fail() << "unhandled float width: " << float_ty->width(); return nullptr; } ast::type::Type* ParserImpl::ConvertType( const spvtools::opt::analysis::Vector* vec_ty) { const auto num_elem = vec_ty->element_count(); auto* ast_elem_ty = ConvertType(type_mgr_->GetId(vec_ty->element_type())); if (ast_elem_ty == nullptr) { return nullptr; } return ctx_.type_mgr().Get( std::make_unique(ast_elem_ty, num_elem)); } ast::type::Type* ParserImpl::ConvertType( const spvtools::opt::analysis::Matrix* mat_ty) { const auto* vec_ty = mat_ty->element_type()->AsVector(); const auto* scalar_ty = vec_ty->element_type(); const auto num_rows = vec_ty->element_count(); const auto num_columns = mat_ty->element_count(); auto* ast_scalar_ty = ConvertType(type_mgr_->GetId(scalar_ty)); if (ast_scalar_ty == nullptr) { return nullptr; } return ctx_.type_mgr().Get(std::make_unique( ast_scalar_ty, num_rows, num_columns)); } ast::type::Type* ParserImpl::ConvertType( const spvtools::opt::analysis::RuntimeArray* rtarr_ty) { // TODO(dneto): Handle ArrayStride. Blocked by crbug.com/tint/30 auto* ast_elem_ty = ConvertType(type_mgr_->GetId(rtarr_ty->element_type())); if (ast_elem_ty == nullptr) { return nullptr; } return ctx_.type_mgr().Get( std::make_unique(ast_elem_ty)); } ast::type::Type* ParserImpl::ConvertType( const spvtools::opt::analysis::Array* arr_ty) { // TODO(dneto): Handle ArrayStride. Blocked by crbug.com/tint/30 auto* ast_elem_ty = ConvertType(type_mgr_->GetId(arr_ty->element_type())); if (ast_elem_ty == nullptr) { return nullptr; } const auto& length_info = arr_ty->length_info(); if (length_info.words.empty()) { // The internal representation is invalid. The discriminant vector // is mal-formed. Fail() << "internal error: Array length info is invalid"; return nullptr; } if (length_info.words[0] != spvtools::opt::analysis::Array::LengthInfo::kConstant) { Fail() << "Array type " << type_mgr_->GetId(arr_ty) << " length is a specialization constant"; return nullptr; } const auto* constant = constant_mgr_->FindDeclaredConstant(length_info.id); if (constant == nullptr) { Fail() << "Array type " << type_mgr_->GetId(arr_ty) << " length ID " << length_info.id << " does not name an OpConstant"; return nullptr; } const uint64_t num_elem = constant->GetZeroExtendedValue(); // For now, limit to only 32bits. if (num_elem > std::numeric_limits::max()) { Fail() << "Array type " << type_mgr_->GetId(arr_ty) << " has too many elements (more than can fit in 32 bits): " << num_elem; return nullptr; } return ctx_.type_mgr().Get(std::make_unique( ast_elem_ty, static_cast(num_elem))); } ast::type::Type* ParserImpl::ConvertType( const spvtools::opt::analysis::Struct* struct_ty) { const auto type_id = type_mgr_->GetId(struct_ty); // Compute the struct decoration. auto struct_decorations = this->GetDecorationsFor(type_id); auto ast_struct_decoration = ast::StructDecoration::kNone; if (struct_decorations.size() == 1 && struct_decorations[0][0] == SpvDecorationBlock) { ast_struct_decoration = ast::StructDecoration::kBlock; } else if (struct_decorations.size() > 1) { Fail() << "can't handle a struct with more than one decoration: struct " << type_id << " has " << struct_decorations.size(); return nullptr; } // Compute members ast::StructMemberList ast_members; const auto members = struct_ty->element_types(); for (uint32_t member_index = 0; member_index < members.size(); ++member_index) { auto* ast_member_ty = ConvertType(type_mgr_->GetId(members[member_index])); if (ast_member_ty == nullptr) { // Already emitted diagnostics. return nullptr; } ast::StructMemberDecorationList ast_member_decorations; for (auto& deco : GetDecorationsForMember(type_id, member_index)) { auto ast_member_decoration = ConvertMemberDecoration(deco); if (ast_member_decoration == nullptr) { // Already emitted diagnostics. return nullptr; } ast_member_decorations.push_back(std::move(ast_member_decoration)); } const auto member_name = namer_.GetMemberName(type_id, member_index); auto ast_struct_member = std::make_unique( member_name, ast_member_ty, std::move(ast_member_decorations)); ast_members.push_back(std::move(ast_struct_member)); } // Now make the struct. auto ast_struct = std::make_unique(ast_struct_decoration, std::move(ast_members)); // The struct type will be assigned a name during EmitAliasTypes. auto ast_struct_type = std::make_unique(std::move(ast_struct)); // Set the struct name before registering it. namer_.SuggestSanitizedName(type_id, "S"); ast_struct_type->set_name(namer_.GetName(type_id)); return ctx_.type_mgr().Get(std::move(ast_struct_type)); } ast::type::Type* ParserImpl::ConvertType( const spvtools::opt::analysis::Pointer* ptr_ty) { auto* ast_elem_ty = ConvertType(type_mgr_->GetId(ptr_ty->pointee_type())); if (ast_elem_ty == nullptr) { Fail() << "SPIR-V pointer type with ID " << type_mgr_->GetId(ptr_ty) << " has invalid pointee type " << type_mgr_->GetId(ptr_ty->pointee_type()); return nullptr; } auto ast_storage_class = enum_converter_.ToStorageClass(ptr_ty->storage_class()); if (ast_storage_class == ast::StorageClass::kNone) { Fail() << "SPIR-V pointer type with ID " << type_mgr_->GetId(ptr_ty) << " has invalid storage class " << static_cast(ptr_ty->storage_class()); return nullptr; } return ctx_.type_mgr().Get( std::make_unique(ast_elem_ty, ast_storage_class)); } bool ParserImpl::RegisterTypes() { if (!success_) { return false; } for (auto& type_or_const : module_->types_values()) { const auto* type = type_mgr_->GetType(type_or_const.result_id()); if (type == nullptr) { continue; } ConvertType(type_or_const.result_id()); } return success_; } bool ParserImpl::EmitAliasTypes() { if (!success_) { return false; } // The algorithm here emits type definitions in the order presented in // the SPIR-V module. This is valid because: // // - There are no back-references. OpTypeForwarddPointer is not supported // by the WebGPU shader programming model. // - Arrays are always sized by an OpConstant of scalar integral type. // WGSL currently doesn't have specialization constants. // crbug.com/32 tracks implementation in case they are added. for (auto& type_or_const : module_->types_values()) { const auto type_id = type_or_const.result_id(); // We only care about struct, arrays, and runtime arrays. switch (type_or_const.opcode()) { case SpvOpTypeStruct: // The struct already got a name when the type was first registered. break; case SpvOpTypeRuntimeArray: // Runtime arrays are always decorated with ArrayStride so always get a // type alias. namer_.SuggestSanitizedName(type_id, "RTArr"); break; case SpvOpTypeArray: // Only make a type aliase for arrays with decorations. if (GetDecorationsFor(type_id).empty()) { continue; } namer_.SuggestSanitizedName(type_id, "Arr"); break; default: // Ignore constants, and any other types. continue; } auto* ast_underlying_type = id_to_type_[type_id]; if (ast_underlying_type == nullptr) { Fail() << "internal error: no type registered for SPIR-V ID: " << type_id; return false; } const auto name = namer_.GetName(type_id); auto* ast_type = ctx_.type_mgr().Get( std::make_unique(name, ast_underlying_type)); ast_module_.AddAliasType(ast_type->AsAlias()); } return success_; } bool ParserImpl::EmitModuleScopeVariables() { if (!success_) { return false; } for (const auto& type_or_value : module_->types_values()) { if (type_or_value.opcode() != SpvOpVariable) { continue; } const auto& var = type_or_value; const auto spirv_storage_class = var.GetSingleWordInOperand(0); auto ast_storage_class = enum_converter_.ToStorageClass( static_cast(spirv_storage_class)); if (!success_) { return false; } auto* ast_type = id_to_type_[var.type_id()]; if (ast_type == nullptr) { return Fail() << "internal error: failed to register Tint AST type for " "SPIR-V type with ID: " << var.type_id(); } auto* ast_store_type = ast_type->AsPointer()->type(); auto ast_var = MakeVariable(var.result_id(), ast_storage_class, ast_store_type); // TODO(dneto): initializers (a.k.a. constructor expression) ast_module_.AddGlobalVariable(std::move(ast_var)); } return success_; } std::unique_ptr ParserImpl::MakeVariable(uint32_t id, ast::StorageClass sc, ast::type::Type* type) { if (type == nullptr) { Fail() << "internal error: can't make ast::Variable for null type"; return nullptr; } auto ast_var = std::make_unique(namer_.Name(id), sc, type); ast::VariableDecorationList ast_decorations; for (auto& deco : GetDecorationsFor(id)) { if (deco.empty()) { Fail() << "malformed decoration on ID " << id << ": it is empty"; return nullptr; } if (deco[0] == SpvDecorationBuiltIn) { if (deco.size() == 1) { Fail() << "malformed BuiltIn decoration on ID " << id << ": has no operand"; return nullptr; } auto ast_builtin = enum_converter_.ToBuiltin(static_cast(deco[1])); if (ast_builtin == ast::Builtin::kNone) { return nullptr; } ast_decorations.emplace_back( std::make_unique(ast_builtin)); } } if (!ast_decorations.empty()) { auto decorated_var = std::make_unique(std::move(ast_var)); decorated_var->set_decorations(std::move(ast_decorations)); ast_var = std::move(decorated_var); } return ast_var; } bool ParserImpl::EmitFunctions() { if (!success_) { return false; } for (const auto* f : FunctionTraverser(*module_).TopologicallyOrderedFunctions()) { if (!success_) { return false; } FunctionEmitter emitter(this, *f); success_ = emitter.Emit(); } return success_; } } // namespace spirv } // namespace reader } // namespace tint