bgfx/3rdparty/spirv-tools/source/val/validate_layout.cpp

203 lines
7.4 KiB
C++
Raw Normal View History

2018-04-11 05:44:28 +03:00
// Copyright (c) 2015-2016 The Khronos Group Inc.
//
// 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.
// Source code for logical layout validation as described in section 2.4
2018-09-03 07:14:20 +03:00
#include "source/val/validate.h"
2018-04-11 05:44:28 +03:00
#include <cassert>
2018-09-03 07:14:20 +03:00
#include "source/diagnostic.h"
#include "source/opcode.h"
#include "source/operand.h"
#include "source/val/function.h"
#include "source/val/instruction.h"
#include "source/val/validation_state.h"
2018-04-11 05:44:28 +03:00
2018-09-03 07:14:20 +03:00
namespace spvtools {
namespace val {
2018-04-11 05:44:28 +03:00
namespace {
2018-09-03 07:14:20 +03:00
2018-04-11 05:44:28 +03:00
// Module scoped instructions are processed by determining if the opcode
// is part of the current layout section. If it is not then the next sections is
// checked.
spv_result_t ModuleScopedInstructions(ValidationState_t& _,
2018-09-03 07:14:20 +03:00
const Instruction* inst, SpvOp opcode) {
2018-04-11 05:44:28 +03:00
while (_.IsOpcodeInCurrentLayoutSection(opcode) == false) {
_.ProgressToNextLayoutSectionOrder();
switch (_.current_layout_section()) {
case kLayoutMemoryModel:
if (opcode != SpvOpMemoryModel) {
2018-09-03 07:14:20 +03:00
return _.diag(SPV_ERROR_INVALID_LAYOUT, inst)
2018-04-11 05:44:28 +03:00
<< spvOpcodeString(opcode)
<< " cannot appear before the memory model instruction";
}
break;
case kLayoutFunctionDeclarations:
// All module sections have been processed. Recursively call
// ModuleLayoutPass to process the next section of the module
2018-09-03 07:14:20 +03:00
return ModuleLayoutPass(_, inst);
2018-04-11 05:44:28 +03:00
default:
break;
}
}
return SPV_SUCCESS;
}
// Function declaration validation is performed by making sure that the
// FunctionParameter and FunctionEnd instructions only appear inside of
// functions. It also ensures that the Function instruction does not appear
// inside of another function. This stage ends when the first label is
// encountered inside of a function.
spv_result_t FunctionScopedInstructions(ValidationState_t& _,
2018-09-03 07:14:20 +03:00
const Instruction* inst, SpvOp opcode) {
2018-04-11 05:44:28 +03:00
if (_.IsOpcodeInCurrentLayoutSection(opcode)) {
switch (opcode) {
case SpvOpFunction: {
if (_.in_function_body()) {
2018-09-03 07:14:20 +03:00
return _.diag(SPV_ERROR_INVALID_LAYOUT, inst)
2018-04-11 05:44:28 +03:00
<< "Cannot declare a function in a function body";
}
2018-09-03 07:14:20 +03:00
auto control_mask = inst->GetOperandAs<SpvFunctionControlMask>(2);
2018-04-11 05:44:28 +03:00
if (auto error =
2018-09-03 07:14:20 +03:00
_.RegisterFunction(inst->id(), inst->type_id(), control_mask,
inst->GetOperandAs<uint32_t>(3)))
2018-04-11 05:44:28 +03:00
return error;
if (_.current_layout_section() == kLayoutFunctionDefinitions) {
if (auto error = _.current_function().RegisterSetFunctionDeclType(
FunctionDecl::kFunctionDeclDefinition))
return error;
}
} break;
case SpvOpFunctionParameter:
if (_.in_function_body() == false) {
2018-09-03 07:14:20 +03:00
return _.diag(SPV_ERROR_INVALID_LAYOUT, inst)
<< "Function parameter instructions must be in a "
"function body";
2018-04-11 05:44:28 +03:00
}
if (_.current_function().block_count() != 0) {
2018-09-03 07:14:20 +03:00
return _.diag(SPV_ERROR_INVALID_LAYOUT, inst)
2018-04-11 05:44:28 +03:00
<< "Function parameters must only appear immediately after "
"the function definition";
}
if (auto error = _.current_function().RegisterFunctionParameter(
2018-09-03 07:14:20 +03:00
inst->id(), inst->type_id()))
2018-04-11 05:44:28 +03:00
return error;
break;
case SpvOpFunctionEnd:
if (_.in_function_body() == false) {
2018-09-03 07:14:20 +03:00
return _.diag(SPV_ERROR_INVALID_LAYOUT, inst)
2018-04-11 05:44:28 +03:00
<< "Function end instructions must be in a function body";
}
if (_.in_block()) {
2018-09-03 07:14:20 +03:00
return _.diag(SPV_ERROR_INVALID_LAYOUT, inst)
2018-04-11 05:44:28 +03:00
<< "Function end cannot be called in blocks";
}
if (_.current_function().block_count() == 0 &&
_.current_layout_section() == kLayoutFunctionDefinitions) {
2018-09-03 07:14:20 +03:00
return _.diag(SPV_ERROR_INVALID_LAYOUT, inst)
<< "Function declarations must appear before "
"function definitions.";
2018-04-11 05:44:28 +03:00
}
if (_.current_layout_section() == kLayoutFunctionDeclarations) {
if (auto error = _.current_function().RegisterSetFunctionDeclType(
FunctionDecl::kFunctionDeclDeclaration))
return error;
}
if (auto error = _.RegisterFunctionEnd()) return error;
break;
case SpvOpLine:
case SpvOpNoLine:
break;
case SpvOpLabel:
// If the label is encountered then the current function is a
// definition so set the function to a declaration and update the
// module section
if (_.in_function_body() == false) {
2018-09-03 07:14:20 +03:00
return _.diag(SPV_ERROR_INVALID_LAYOUT, inst)
2018-04-11 05:44:28 +03:00
<< "Label instructions must be in a function body";
}
if (_.in_block()) {
2018-09-03 07:14:20 +03:00
return _.diag(SPV_ERROR_INVALID_LAYOUT, inst)
2018-04-11 05:44:28 +03:00
<< "A block must end with a branch instruction.";
}
if (_.current_layout_section() == kLayoutFunctionDeclarations) {
_.ProgressToNextLayoutSectionOrder();
if (auto error = _.current_function().RegisterSetFunctionDeclType(
FunctionDecl::kFunctionDeclDefinition))
return error;
}
break;
default:
if (_.current_layout_section() == kLayoutFunctionDeclarations &&
_.in_function_body()) {
2018-09-03 07:14:20 +03:00
return _.diag(SPV_ERROR_INVALID_LAYOUT, inst)
2018-04-11 05:44:28 +03:00
<< "A function must begin with a label";
} else {
if (_.in_block() == false) {
2018-09-03 07:14:20 +03:00
return _.diag(SPV_ERROR_INVALID_LAYOUT, inst)
2018-04-11 05:44:28 +03:00
<< spvOpcodeString(opcode) << " must appear in a block";
}
}
break;
}
} else {
2018-09-03 07:14:20 +03:00
return _.diag(SPV_ERROR_INVALID_LAYOUT, inst)
2018-04-11 05:44:28 +03:00
<< spvOpcodeString(opcode)
<< " cannot appear in a function declaration";
}
return SPV_SUCCESS;
}
2018-09-03 07:14:20 +03:00
2018-04-11 05:44:28 +03:00
} // namespace
// TODO(umar): Check linkage capabilities for function declarations
// TODO(umar): Better error messages
// NOTE: This function does not handle CFG related validation
// Performs logical layout validation. See Section 2.4
2018-09-03 07:14:20 +03:00
spv_result_t ModuleLayoutPass(ValidationState_t& _, const Instruction* inst) {
const SpvOp opcode = inst->opcode();
2018-04-11 05:44:28 +03:00
switch (_.current_layout_section()) {
case kLayoutCapabilities:
case kLayoutExtensions:
case kLayoutExtInstImport:
case kLayoutMemoryModel:
case kLayoutEntryPoint:
case kLayoutExecutionMode:
case kLayoutDebug1:
case kLayoutDebug2:
case kLayoutDebug3:
case kLayoutAnnotations:
case kLayoutTypes:
if (auto error = ModuleScopedInstructions(_, inst, opcode)) return error;
break;
case kLayoutFunctionDeclarations:
case kLayoutFunctionDefinitions:
if (auto error = FunctionScopedInstructions(_, inst, opcode)) {
return error;
}
break;
}
return SPV_SUCCESS;
}
2018-09-03 07:14:20 +03:00
} // namespace val
} // namespace spvtools