2018-05-31 13:07:09 +00:00
|
|
|
// Copyright (c) 2018 Google LLC.
|
|
|
|
//
|
|
|
|
// 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>
|
2018-08-03 19:06:09 +00:00
|
|
|
#include <vector>
|
2018-05-31 13:07:09 +00:00
|
|
|
|
2018-07-11 14:27:34 +00:00
|
|
|
#include "source/diagnostic.h"
|
2019-05-07 16:27:18 +00:00
|
|
|
#include "source/spirv_constant.h"
|
|
|
|
#include "source/spirv_target_env.h"
|
2018-07-11 14:27:34 +00:00
|
|
|
#include "source/val/function.h"
|
|
|
|
#include "source/val/instruction.h"
|
2019-05-07 16:27:18 +00:00
|
|
|
#include "source/val/validate.h"
|
2018-07-11 14:27:34 +00:00
|
|
|
#include "source/val/validation_state.h"
|
2018-05-31 13:07:09 +00:00
|
|
|
|
2018-07-07 13:38:00 +00:00
|
|
|
namespace spvtools {
|
2018-07-10 03:18:44 +00:00
|
|
|
namespace val {
|
2018-05-31 13:07:09 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
// Returns true if \c inst is an input or output variable.
|
2019-05-07 16:27:18 +00:00
|
|
|
bool is_interface_variable(const Instruction* inst, bool is_spv_1_4) {
|
|
|
|
if (is_spv_1_4) {
|
|
|
|
// Starting in SPIR-V 1.4, all global variables are interface variables.
|
|
|
|
return inst->opcode() == SpvOpVariable &&
|
|
|
|
inst->word(3u) != SpvStorageClassFunction;
|
|
|
|
} else {
|
|
|
|
return inst->opcode() == SpvOpVariable &&
|
|
|
|
(inst->word(3u) == SpvStorageClassInput ||
|
|
|
|
inst->word(3u) == SpvStorageClassOutput);
|
|
|
|
}
|
2018-05-31 13:07:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Checks that \c var is listed as an interface in all the entry points that use
|
|
|
|
// it.
|
2018-08-23 17:56:41 +00:00
|
|
|
spv_result_t check_interface_variable(ValidationState_t& _,
|
|
|
|
const Instruction* var) {
|
2018-05-31 13:07:09 +00:00
|
|
|
std::vector<const Function*> functions;
|
|
|
|
std::vector<const Instruction*> uses;
|
|
|
|
for (auto use : var->uses()) {
|
|
|
|
uses.push_back(use.first);
|
|
|
|
}
|
|
|
|
for (uint32_t i = 0; i < uses.size(); ++i) {
|
|
|
|
const auto user = uses[i];
|
|
|
|
if (const Function* func = user->function()) {
|
|
|
|
functions.push_back(func);
|
|
|
|
} else {
|
|
|
|
// In the rare case that the variable is used by another instruction in
|
|
|
|
// the global scope, continue searching for an instruction used in a
|
|
|
|
// function.
|
|
|
|
for (auto use : user->uses()) {
|
|
|
|
uses.push_back(use.first);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::sort(functions.begin(), functions.end(),
|
|
|
|
[](const Function* lhs, const Function* rhs) {
|
|
|
|
return lhs->id() < rhs->id();
|
|
|
|
});
|
|
|
|
functions.erase(std::unique(functions.begin(), functions.end()),
|
|
|
|
functions.end());
|
|
|
|
|
|
|
|
std::vector<uint32_t> entry_points;
|
|
|
|
for (const auto func : functions) {
|
|
|
|
for (auto id : _.FunctionEntryPoints(func->id())) {
|
|
|
|
entry_points.push_back(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::sort(entry_points.begin(), entry_points.end());
|
|
|
|
entry_points.erase(std::unique(entry_points.begin(), entry_points.end()),
|
|
|
|
entry_points.end());
|
|
|
|
|
|
|
|
for (auto id : entry_points) {
|
|
|
|
for (const auto& desc : _.entry_point_descriptions(id)) {
|
|
|
|
bool found = false;
|
|
|
|
for (auto interface : desc.interfaces) {
|
|
|
|
if (var->id() == interface) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found) {
|
2018-08-01 15:58:37 +00:00
|
|
|
return _.diag(SPV_ERROR_INVALID_ID, var)
|
2019-05-07 16:27:18 +00:00
|
|
|
<< "Interface variable id <" << var->id()
|
|
|
|
<< "> is used by entry point '" << desc.name << "' id <" << id
|
2018-05-31 13:07:09 +00:00
|
|
|
<< ">, but is not listed as an interface";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return SPV_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
spv_result_t ValidateInterfaces(ValidationState_t& _) {
|
2019-05-07 16:27:18 +00:00
|
|
|
bool is_spv_1_4 = _.version() >= SPV_SPIRV_VERSION_WORD(1, 4);
|
2018-08-23 17:56:41 +00:00
|
|
|
for (auto& inst : _.ordered_instructions()) {
|
2019-05-07 16:27:18 +00:00
|
|
|
if (is_interface_variable(&inst, is_spv_1_4)) {
|
2018-08-23 17:56:41 +00:00
|
|
|
if (auto error = check_interface_variable(_, &inst)) {
|
2018-05-31 13:07:09 +00:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return SPV_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2018-07-10 03:18:44 +00:00
|
|
|
} // namespace val
|
2018-07-07 13:38:00 +00:00
|
|
|
} // namespace spvtools
|