2016-01-07 18:44:22 +00:00
|
|
|
// Copyright (c) 2015-2016 The Khronos Group Inc.
|
2015-05-22 17:26:19 +00:00
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and/or associated documentation files (the
|
|
|
|
// "Materials"), to deal in the Materials without restriction, including
|
|
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
// distribute, sublicense, and/or sell copies of the Materials, and to
|
|
|
|
// permit persons to whom the Materials are furnished to do so, subject to
|
|
|
|
// the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included
|
|
|
|
// in all copies or substantial portions of the Materials.
|
|
|
|
//
|
|
|
|
// MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS
|
|
|
|
// KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS
|
|
|
|
// SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT
|
|
|
|
// https://www.khronos.org/registry/
|
|
|
|
//
|
|
|
|
// THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
|
|
// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
// MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
|
|
|
|
|
2016-04-04 19:55:05 +00:00
|
|
|
#include <sstream>
|
2016-02-22 20:25:50 +00:00
|
|
|
#include <string>
|
|
|
|
|
2016-04-04 19:55:05 +00:00
|
|
|
#include "TestFixture.h"
|
2015-05-22 17:26:19 +00:00
|
|
|
|
|
|
|
// NOTE: The tests in this file are ONLY testing ID usage, there for the input
|
|
|
|
// SPIR-V does not follow the logical layout rules from the spec in all cases in
|
|
|
|
// order to makes the tests smaller. Validation of the whole module is handled
|
|
|
|
// in stages, ID validation is only one of these stages. All validation stages
|
|
|
|
// are stand alone.
|
|
|
|
|
2015-08-31 19:24:32 +00:00
|
|
|
namespace {
|
|
|
|
|
2016-04-04 19:55:05 +00:00
|
|
|
using ::testing::ValuesIn;
|
2016-04-21 19:46:08 +00:00
|
|
|
using spvtest::ScopedContext;
|
2016-04-04 19:55:05 +00:00
|
|
|
using std::ostringstream;
|
|
|
|
using std::string;
|
|
|
|
using std::vector;
|
|
|
|
|
2015-05-22 17:26:19 +00:00
|
|
|
class ValidateID : public ::testing::Test {
|
|
|
|
public:
|
|
|
|
virtual void TearDown() { spvBinaryDestroy(binary); }
|
2015-11-11 16:33:26 +00:00
|
|
|
spv_const_binary get_const_binary() { return spv_const_binary(binary); }
|
2015-05-22 17:26:19 +00:00
|
|
|
spv_binary binary;
|
|
|
|
};
|
|
|
|
|
2016-02-22 20:25:50 +00:00
|
|
|
const char kGLSL450MemoryModel[] = R"(
|
|
|
|
OpCapability Shader
|
|
|
|
OpCapability Addresses
|
|
|
|
OpCapability Pipes
|
|
|
|
OpCapability LiteralSampler
|
|
|
|
OpCapability DeviceEnqueue
|
|
|
|
OpMemoryModel Logical GLSL450
|
|
|
|
)";
|
|
|
|
|
2016-03-01 18:56:14 +00:00
|
|
|
const char kOpenCLMemoryModel32[] = R"(
|
|
|
|
OpCapability Addresses
|
|
|
|
OpCapability Linkage
|
|
|
|
OpCapability Kernel
|
|
|
|
%1 = OpExtInstImport "OpenCL.std"
|
|
|
|
OpMemoryModel Physical32 OpenCL
|
|
|
|
)";
|
|
|
|
|
|
|
|
const char kOpenCLMemoryModel64[] = R"(
|
|
|
|
OpCapability Addresses
|
|
|
|
OpCapability Linkage
|
|
|
|
OpCapability Kernel
|
|
|
|
OpCapability Int64
|
|
|
|
%1 = OpExtInstImport "OpenCL.std"
|
|
|
|
OpMemoryModel Physical64 OpenCL
|
|
|
|
)";
|
|
|
|
|
2016-04-04 19:55:05 +00:00
|
|
|
// TODO(dekimir): this can be removed by adding a method to ValidateID akin to
|
|
|
|
// OpTypeArrayLengthTest::Val().
|
2016-02-22 20:25:50 +00:00
|
|
|
#define CHECK(str, expected) \
|
|
|
|
spv_diagnostic diagnostic; \
|
2016-03-31 16:16:51 +00:00
|
|
|
spv_context context = spvContextCreate(SPV_ENV_UNIVERSAL_1_0); \
|
2016-02-22 20:25:50 +00:00
|
|
|
std::string shader = std::string(kGLSL450MemoryModel) + str; \
|
|
|
|
spv_result_t error = spvTextToBinary(context, shader.c_str(), shader.size(), \
|
|
|
|
&binary, &diagnostic); \
|
|
|
|
if (error) { \
|
|
|
|
spvDiagnosticPrint(diagnostic); \
|
|
|
|
spvDiagnosticDestroy(diagnostic); \
|
2016-04-04 19:55:05 +00:00
|
|
|
ASSERT_EQ(SPV_SUCCESS, error) << shader; \
|
2016-02-22 20:25:50 +00:00
|
|
|
} \
|
|
|
|
spv_result_t result = spvValidate(context, get_const_binary(), &diagnostic); \
|
|
|
|
if (SPV_SUCCESS != result) { \
|
|
|
|
spvDiagnosticPrint(diagnostic); \
|
|
|
|
spvDiagnosticDestroy(diagnostic); \
|
|
|
|
} \
|
|
|
|
ASSERT_EQ(expected, result); \
|
2015-11-12 18:48:30 +00:00
|
|
|
spvContextDestroy(context);
|
2015-05-22 17:26:19 +00:00
|
|
|
|
2016-03-01 18:56:14 +00:00
|
|
|
#define CHECK_KERNEL(str, expected, bitness) \
|
|
|
|
ASSERT_TRUE(bitness == 32 || bitness == 64); \
|
|
|
|
spv_diagnostic diagnostic; \
|
2016-03-31 16:16:51 +00:00
|
|
|
spv_context context = spvContextCreate(SPV_ENV_UNIVERSAL_1_0); \
|
|
|
|
std::string kernel = std::string(bitness == 32 ? kOpenCLMemoryModel32 \
|
|
|
|
: kOpenCLMemoryModel64) + \
|
|
|
|
str; \
|
2016-03-01 18:56:14 +00:00
|
|
|
spv_result_t error = spvTextToBinary(context, kernel.c_str(), kernel.size(), \
|
|
|
|
&binary, &diagnostic); \
|
|
|
|
if (error) { \
|
|
|
|
spvDiagnosticPrint(diagnostic); \
|
|
|
|
spvDiagnosticDestroy(diagnostic); \
|
|
|
|
ASSERT_EQ(SPV_SUCCESS, error); \
|
|
|
|
} \
|
|
|
|
spv_result_t result = spvValidate(context, get_const_binary(), &diagnostic); \
|
|
|
|
if (SPV_SUCCESS != result) { \
|
|
|
|
spvDiagnosticPrint(diagnostic); \
|
|
|
|
spvDiagnosticDestroy(diagnostic); \
|
|
|
|
} \
|
|
|
|
ASSERT_EQ(expected, result); \
|
|
|
|
spvContextDestroy(context);
|
|
|
|
|
2015-05-22 17:26:19 +00:00
|
|
|
// TODO: OpUndef
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpName) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
OpName %2 "name"
|
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpTypePointer UniformConstant %1
|
|
|
|
%3 = OpVariable %2 UniformConstant)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpMemberNameGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
OpMemberName %2 0 "foo"
|
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpTypeStruct %1)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpMemberNameTypeBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
OpMemberName %1 0 "foo"
|
|
|
|
%1 = OpTypeInt 32 0)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpMemberNameMemberBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
OpMemberName %2 1 "foo"
|
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpTypeStruct %1)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpLineGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpString "/path/to/source.file"
|
2015-09-24 19:45:59 +00:00
|
|
|
OpLine %1 0 0
|
2015-08-21 15:52:29 +00:00
|
|
|
%2 = OpTypeInt 32 0
|
2016-02-22 20:25:50 +00:00
|
|
|
%3 = OpTypePointer Input %2
|
|
|
|
%4 = OpVariable %3 Input)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpLineFileBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-09-24 19:45:59 +00:00
|
|
|
OpLine %2 0 0
|
2015-08-21 15:52:29 +00:00
|
|
|
%2 = OpTypeInt 32 0
|
2016-02-22 20:25:50 +00:00
|
|
|
%3 = OpTypePointer Input %2
|
|
|
|
%4 = OpVariable %3 Input)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpDecorateGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
OpDecorate %2 GLSLShared
|
|
|
|
%1 = OpTypeInt 64 0
|
|
|
|
%2 = OpTypeStruct %1 %1)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpDecorateBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
OpDecorate %1 GLSLShared)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpMemberDecorateGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
OpMemberDecorate %2 0 Uniform
|
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpTypeStruct %1 %1)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpMemberDecorateBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
OpMemberDecorate %1 0 Uniform
|
|
|
|
%1 = OpTypeInt 32 0)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpMemberDecorateMemberBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
OpMemberDecorate %2 3 Uniform
|
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpTypeStruct %1 %1)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpGroupDecorateGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpDecorationGroup
|
|
|
|
OpDecorate %1 Uniform
|
|
|
|
OpDecorate %1 GLSLShared
|
|
|
|
OpGroupDecorate %1 %3 %4
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpConstant %2 42
|
|
|
|
%4 = OpConstant %2 23)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpGroupDecorateDecorationGroupBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
OpGroupDecorate %2 %3 %4
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpConstant %2 42
|
|
|
|
%4 = OpConstant %2 23)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpGroupDecorateTargetBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpDecorationGroup
|
|
|
|
OpDecorate %1 Uniform
|
|
|
|
OpDecorate %1 GLSLShared
|
|
|
|
OpGroupDecorate %1 %3
|
|
|
|
%2 = OpTypeInt 32 0)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: OpGroupMemberDecorate
|
|
|
|
// TODO: OpExtInst
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpEntryPointGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
Use opcode operand definitions from SPIR-V specification generator.
The assembler and disassembler now use a dynamically adjusted
sequence of expected operand types. (Internally, it is a deque,
for readability.) Both parsers repeatedly pull an expected operand
type from the left of this pattern list, and try to match the next
input token against it.
The expected pattern is adjusted during the parse to accommodate:
- an extended instruction's expected operands, depending on the
extended instruction's index.
- when an operand itself has operands
- to handle sequences of zero or more operands, or pairs of
operands. These are expanded lazily during the parse.
Adds spv::OperandClass from the SPIR-V specification generator.
Modifies spv_operand_desc_t:
- adds hasResult, hasType, and operandClass array to the opcode
description type.
- "wordCount" is replaced with "numTypes", which counts the number
of entries in operandTypes. And each of those describes a
*logical* operand, including the type id for the instruction,
and the result id for the instruction. A logical operand could be
variable-width, such as a literal string.
Adds opcode.inc, an automatically-generated table of operation
descriptions, with one line to describe each core instruction.
Externally, we have modified the SPIR-V spec doc generator to
emit this file.
(We have hacked this copy to use the old semantics for OpLine.)
Inside the assembler, parsing an operand may fail with new
error code SPV_FAIL_MATCH. For an optional operand, this is not
fatal, but should trigger backtracking at a higher level.
The spvTextIsStartOfNewInst checks the case of the third letter
of what might be an opcode. So now, "OpenCL" does not look like
an opcode name.
In assembly, the EntryPoint name field is mandatory, but can be
an empty string.
Adjust tests for changes to:
- OpSampedImage
- OpTypeSampler
2015-08-27 17:03:52 +00:00
|
|
|
OpEntryPoint GLCompute %3 ""
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeFunction %1
|
|
|
|
%3 = OpFunction %1 None %2
|
|
|
|
%4 = OpLabel
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd
|
2015-05-22 17:26:19 +00:00
|
|
|
)";
|
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpEntryPointFunctionBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
Use opcode operand definitions from SPIR-V specification generator.
The assembler and disassembler now use a dynamically adjusted
sequence of expected operand types. (Internally, it is a deque,
for readability.) Both parsers repeatedly pull an expected operand
type from the left of this pattern list, and try to match the next
input token against it.
The expected pattern is adjusted during the parse to accommodate:
- an extended instruction's expected operands, depending on the
extended instruction's index.
- when an operand itself has operands
- to handle sequences of zero or more operands, or pairs of
operands. These are expanded lazily during the parse.
Adds spv::OperandClass from the SPIR-V specification generator.
Modifies spv_operand_desc_t:
- adds hasResult, hasType, and operandClass array to the opcode
description type.
- "wordCount" is replaced with "numTypes", which counts the number
of entries in operandTypes. And each of those describes a
*logical* operand, including the type id for the instruction,
and the result id for the instruction. A logical operand could be
variable-width, such as a literal string.
Adds opcode.inc, an automatically-generated table of operation
descriptions, with one line to describe each core instruction.
Externally, we have modified the SPIR-V spec doc generator to
emit this file.
(We have hacked this copy to use the old semantics for OpLine.)
Inside the assembler, parsing an operand may fail with new
error code SPV_FAIL_MATCH. For an optional operand, this is not
fatal, but should trigger backtracking at a higher level.
The spvTextIsStartOfNewInst checks the case of the third letter
of what might be an opcode. So now, "OpenCL" does not look like
an opcode name.
In assembly, the EntryPoint name field is mandatory, but can be
an empty string.
Adjust tests for changes to:
- OpSampedImage
- OpTypeSampler
2015-08-27 17:03:52 +00:00
|
|
|
OpEntryPoint GLCompute %1 ""
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpEntryPointParameterCountBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
Use opcode operand definitions from SPIR-V specification generator.
The assembler and disassembler now use a dynamically adjusted
sequence of expected operand types. (Internally, it is a deque,
for readability.) Both parsers repeatedly pull an expected operand
type from the left of this pattern list, and try to match the next
input token against it.
The expected pattern is adjusted during the parse to accommodate:
- an extended instruction's expected operands, depending on the
extended instruction's index.
- when an operand itself has operands
- to handle sequences of zero or more operands, or pairs of
operands. These are expanded lazily during the parse.
Adds spv::OperandClass from the SPIR-V specification generator.
Modifies spv_operand_desc_t:
- adds hasResult, hasType, and operandClass array to the opcode
description type.
- "wordCount" is replaced with "numTypes", which counts the number
of entries in operandTypes. And each of those describes a
*logical* operand, including the type id for the instruction,
and the result id for the instruction. A logical operand could be
variable-width, such as a literal string.
Adds opcode.inc, an automatically-generated table of operation
descriptions, with one line to describe each core instruction.
Externally, we have modified the SPIR-V spec doc generator to
emit this file.
(We have hacked this copy to use the old semantics for OpLine.)
Inside the assembler, parsing an operand may fail with new
error code SPV_FAIL_MATCH. For an optional operand, this is not
fatal, but should trigger backtracking at a higher level.
The spvTextIsStartOfNewInst checks the case of the third letter
of what might be an opcode. So now, "OpenCL" does not look like
an opcode name.
In assembly, the EntryPoint name field is mandatory, but can be
an empty string.
Adjust tests for changes to:
- OpSampedImage
- OpTypeSampler
2015-08-27 17:03:52 +00:00
|
|
|
OpEntryPoint GLCompute %3 ""
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeFunction %1 %1
|
|
|
|
%3 = OpFunction %1 None %2
|
|
|
|
%4 = OpLabel
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpEntryPointReturnTypeBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
Use opcode operand definitions from SPIR-V specification generator.
The assembler and disassembler now use a dynamically adjusted
sequence of expected operand types. (Internally, it is a deque,
for readability.) Both parsers repeatedly pull an expected operand
type from the left of this pattern list, and try to match the next
input token against it.
The expected pattern is adjusted during the parse to accommodate:
- an extended instruction's expected operands, depending on the
extended instruction's index.
- when an operand itself has operands
- to handle sequences of zero or more operands, or pairs of
operands. These are expanded lazily during the parse.
Adds spv::OperandClass from the SPIR-V specification generator.
Modifies spv_operand_desc_t:
- adds hasResult, hasType, and operandClass array to the opcode
description type.
- "wordCount" is replaced with "numTypes", which counts the number
of entries in operandTypes. And each of those describes a
*logical* operand, including the type id for the instruction,
and the result id for the instruction. A logical operand could be
variable-width, such as a literal string.
Adds opcode.inc, an automatically-generated table of operation
descriptions, with one line to describe each core instruction.
Externally, we have modified the SPIR-V spec doc generator to
emit this file.
(We have hacked this copy to use the old semantics for OpLine.)
Inside the assembler, parsing an operand may fail with new
error code SPV_FAIL_MATCH. For an optional operand, this is not
fatal, but should trigger backtracking at a higher level.
The spvTextIsStartOfNewInst checks the case of the third letter
of what might be an opcode. So now, "OpenCL" does not look like
an opcode name.
In assembly, the EntryPoint name field is mandatory, but can be
an empty string.
Adjust tests for changes to:
- OpSampedImage
- OpTypeSampler
2015-08-27 17:03:52 +00:00
|
|
|
OpEntryPoint GLCompute %3 ""
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpTypeFunction %1
|
|
|
|
%3 = OpFunction %1 None %2
|
|
|
|
%4 = OpLabel
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpExecutionModeGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
Use opcode operand definitions from SPIR-V specification generator.
The assembler and disassembler now use a dynamically adjusted
sequence of expected operand types. (Internally, it is a deque,
for readability.) Both parsers repeatedly pull an expected operand
type from the left of this pattern list, and try to match the next
input token against it.
The expected pattern is adjusted during the parse to accommodate:
- an extended instruction's expected operands, depending on the
extended instruction's index.
- when an operand itself has operands
- to handle sequences of zero or more operands, or pairs of
operands. These are expanded lazily during the parse.
Adds spv::OperandClass from the SPIR-V specification generator.
Modifies spv_operand_desc_t:
- adds hasResult, hasType, and operandClass array to the opcode
description type.
- "wordCount" is replaced with "numTypes", which counts the number
of entries in operandTypes. And each of those describes a
*logical* operand, including the type id for the instruction,
and the result id for the instruction. A logical operand could be
variable-width, such as a literal string.
Adds opcode.inc, an automatically-generated table of operation
descriptions, with one line to describe each core instruction.
Externally, we have modified the SPIR-V spec doc generator to
emit this file.
(We have hacked this copy to use the old semantics for OpLine.)
Inside the assembler, parsing an operand may fail with new
error code SPV_FAIL_MATCH. For an optional operand, this is not
fatal, but should trigger backtracking at a higher level.
The spvTextIsStartOfNewInst checks the case of the third letter
of what might be an opcode. So now, "OpenCL" does not look like
an opcode name.
In assembly, the EntryPoint name field is mandatory, but can be
an empty string.
Adjust tests for changes to:
- OpSampedImage
- OpTypeSampler
2015-08-27 17:03:52 +00:00
|
|
|
OpEntryPoint GLCompute %3 ""
|
2015-08-21 15:52:29 +00:00
|
|
|
OpExecutionMode %3 LocalSize 1 1 1
|
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeFunction %1
|
|
|
|
%3 = OpFunction %1 None %2
|
|
|
|
%4 = OpLabel
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
2016-01-15 16:25:11 +00:00
|
|
|
|
|
|
|
TEST_F(ValidateID, OpExecutionModeEntryPointMissing) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
OpExecutionMode %3 LocalSize 1 1 1
|
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeFunction %1
|
|
|
|
%3 = OpFunction %1 None %2
|
|
|
|
%4 = OpLabel
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
2016-01-15 16:25:11 +00:00
|
|
|
TEST_F(ValidateID, OpExecutionModeEntryPointBad) {
|
|
|
|
const char* spirv = R"(
|
|
|
|
OpEntryPoint GLCompute %3 "" %a
|
|
|
|
OpExecutionMode %a LocalSize 1 1 1
|
|
|
|
%void = OpTypeVoid
|
|
|
|
%ptr = OpTypePointer Input %void
|
|
|
|
%a = OpVariable %ptr Input
|
|
|
|
%2 = OpTypeFunction %void
|
|
|
|
%3 = OpFunction %void None %2
|
|
|
|
%4 = OpLabel
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
2016-01-21 20:55:43 +00:00
|
|
|
TEST_F(ValidateID, OpTypeVectorFloat) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeFloat 32
|
|
|
|
%2 = OpTypeVector %1 4)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
2016-01-21 20:55:43 +00:00
|
|
|
|
|
|
|
TEST_F(ValidateID, OpTypeVectorInt) {
|
|
|
|
const char* spirv = R"(
|
|
|
|
%1 = OpTypeInt 32 1
|
|
|
|
%2 = OpTypeVector %1 4)";
|
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpTypeVectorUInt) {
|
|
|
|
const char* spirv = R"(
|
|
|
|
%1 = OpTypeInt 64 0
|
|
|
|
%2 = OpTypeVector %1 4)";
|
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpTypeVectorBool) {
|
|
|
|
const char* spirv = R"(
|
|
|
|
%1 = OpTypeBool
|
|
|
|
%2 = OpTypeVector %1 4)";
|
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
|
2015-05-22 17:26:19 +00:00
|
|
|
TEST_F(ValidateID, OpTypeVectorComponentTypeBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeFloat 32
|
|
|
|
%2 = OpTypePointer UniformConstant %1
|
|
|
|
%3 = OpTypeVector %2 4)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpTypeMatrixGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpTypeVector %1 2
|
|
|
|
%3 = OpTypeMatrix %2 3)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpTypeMatrixColumnTypeBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpTypeMatrix %1 3)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpTypeSamplerGood) {
|
Use opcode operand definitions from SPIR-V specification generator.
The assembler and disassembler now use a dynamically adjusted
sequence of expected operand types. (Internally, it is a deque,
for readability.) Both parsers repeatedly pull an expected operand
type from the left of this pattern list, and try to match the next
input token against it.
The expected pattern is adjusted during the parse to accommodate:
- an extended instruction's expected operands, depending on the
extended instruction's index.
- when an operand itself has operands
- to handle sequences of zero or more operands, or pairs of
operands. These are expanded lazily during the parse.
Adds spv::OperandClass from the SPIR-V specification generator.
Modifies spv_operand_desc_t:
- adds hasResult, hasType, and operandClass array to the opcode
description type.
- "wordCount" is replaced with "numTypes", which counts the number
of entries in operandTypes. And each of those describes a
*logical* operand, including the type id for the instruction,
and the result id for the instruction. A logical operand could be
variable-width, such as a literal string.
Adds opcode.inc, an automatically-generated table of operation
descriptions, with one line to describe each core instruction.
Externally, we have modified the SPIR-V spec doc generator to
emit this file.
(We have hacked this copy to use the old semantics for OpLine.)
Inside the assembler, parsing an operand may fail with new
error code SPV_FAIL_MATCH. For an optional operand, this is not
fatal, but should trigger backtracking at a higher level.
The spvTextIsStartOfNewInst checks the case of the third letter
of what might be an opcode. So now, "OpenCL" does not look like
an opcode name.
In assembly, the EntryPoint name field is mandatory, but can be
an empty string.
Adjust tests for changes to:
- OpSampedImage
- OpTypeSampler
2015-08-27 17:03:52 +00:00
|
|
|
// In Rev31, OpTypeSampler takes no arguments.
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
Use opcode operand definitions from SPIR-V specification generator.
The assembler and disassembler now use a dynamically adjusted
sequence of expected operand types. (Internally, it is a deque,
for readability.) Both parsers repeatedly pull an expected operand
type from the left of this pattern list, and try to match the next
input token against it.
The expected pattern is adjusted during the parse to accommodate:
- an extended instruction's expected operands, depending on the
extended instruction's index.
- when an operand itself has operands
- to handle sequences of zero or more operands, or pairs of
operands. These are expanded lazily during the parse.
Adds spv::OperandClass from the SPIR-V specification generator.
Modifies spv_operand_desc_t:
- adds hasResult, hasType, and operandClass array to the opcode
description type.
- "wordCount" is replaced with "numTypes", which counts the number
of entries in operandTypes. And each of those describes a
*logical* operand, including the type id for the instruction,
and the result id for the instruction. A logical operand could be
variable-width, such as a literal string.
Adds opcode.inc, an automatically-generated table of operation
descriptions, with one line to describe each core instruction.
Externally, we have modified the SPIR-V spec doc generator to
emit this file.
(We have hacked this copy to use the old semantics for OpLine.)
Inside the assembler, parsing an operand may fail with new
error code SPV_FAIL_MATCH. For an optional operand, this is not
fatal, but should trigger backtracking at a higher level.
The spvTextIsStartOfNewInst checks the case of the third letter
of what might be an opcode. So now, "OpenCL" does not look like
an opcode name.
In assembly, the EntryPoint name field is mandatory, but can be
an empty string.
Adjust tests for changes to:
- OpSampedImage
- OpTypeSampler
2015-08-27 17:03:52 +00:00
|
|
|
%s = OpTypeSampler)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpTypeArrayGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpConstant %1 1
|
|
|
|
%3 = OpTypeArray %1 %2)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
2016-04-04 19:55:05 +00:00
|
|
|
|
2015-05-22 17:26:19 +00:00
|
|
|
TEST_F(ValidateID, OpTypeArrayElementTypeBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpConstant %1 1
|
|
|
|
%3 = OpTypeArray %2 %2)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
2016-04-04 19:55:05 +00:00
|
|
|
|
|
|
|
// Signed or unsigned.
|
|
|
|
enum Signed { kSigned, kUnsigned };
|
|
|
|
|
|
|
|
// Creates an assembly snippet declaring OpTypeArray with the given length.
|
|
|
|
string MakeArrayLength(const string& len, Signed isSigned, int width) {
|
|
|
|
ostringstream ss;
|
|
|
|
ss << kGLSL450MemoryModel;
|
|
|
|
ss << " %t = OpTypeInt " << width << (isSigned == kSigned ? " 1" : " 0")
|
|
|
|
<< " %l = OpConstant %t " << len << " %a = OpTypeArray %t %l";
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tests OpTypeArray. Parameter is the width (in bits) of the array-length's
|
|
|
|
// type.
|
|
|
|
class OpTypeArrayLengthTest
|
|
|
|
: public spvtest::TextToBinaryTestBase<::testing::TestWithParam<int>> {
|
|
|
|
protected:
|
|
|
|
OpTypeArrayLengthTest()
|
2016-04-04 20:05:31 +00:00
|
|
|
: position_(spv_position_t{0, 0, 0}),
|
|
|
|
diagnostic_(spvDiagnosticCreate(&position_, "")) {}
|
2016-04-04 19:55:05 +00:00
|
|
|
|
|
|
|
~OpTypeArrayLengthTest() { spvDiagnosticDestroy(diagnostic_); }
|
|
|
|
|
|
|
|
// Runs spvValidate() on v, printing any errors via spvDiagnosticPrint().
|
|
|
|
spv_result_t Val(const SpirvVector& v) {
|
|
|
|
spv_const_binary_t cbinary{v.data(), v.size()};
|
2016-04-19 02:25:35 +00:00
|
|
|
const auto status =
|
|
|
|
spvValidate(ScopedContext().context, &cbinary, &diagnostic_);
|
2016-04-04 19:55:05 +00:00
|
|
|
if (status != SPV_SUCCESS) {
|
|
|
|
spvDiagnosticPrint(diagnostic_);
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
spv_position_t position_; // For creating diagnostic_.
|
|
|
|
spv_diagnostic diagnostic_;
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST_P(OpTypeArrayLengthTest, LengthPositive) {
|
|
|
|
const int width = GetParam();
|
|
|
|
EXPECT_EQ(SPV_SUCCESS,
|
|
|
|
Val(CompileSuccessfully(MakeArrayLength("1", kSigned, width))));
|
|
|
|
EXPECT_EQ(SPV_SUCCESS,
|
|
|
|
Val(CompileSuccessfully(MakeArrayLength("1", kUnsigned, width))));
|
|
|
|
EXPECT_EQ(SPV_SUCCESS,
|
|
|
|
Val(CompileSuccessfully(MakeArrayLength("2", kSigned, width))));
|
|
|
|
EXPECT_EQ(SPV_SUCCESS,
|
|
|
|
Val(CompileSuccessfully(MakeArrayLength("2", kUnsigned, width))));
|
|
|
|
EXPECT_EQ(SPV_SUCCESS,
|
|
|
|
Val(CompileSuccessfully(MakeArrayLength("55", kSigned, width))));
|
|
|
|
EXPECT_EQ(SPV_SUCCESS,
|
|
|
|
Val(CompileSuccessfully(MakeArrayLength("55", kUnsigned, width))));
|
|
|
|
const string fpad(width / 4 - 1, 'F');
|
|
|
|
EXPECT_EQ(
|
|
|
|
SPV_SUCCESS,
|
|
|
|
Val(CompileSuccessfully(MakeArrayLength("0x7" + fpad, kSigned, width))));
|
|
|
|
EXPECT_EQ(SPV_SUCCESS, Val(CompileSuccessfully(
|
|
|
|
MakeArrayLength("0xF" + fpad, kUnsigned, width))));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_P(OpTypeArrayLengthTest, LengthZero) {
|
|
|
|
const int width = GetParam();
|
|
|
|
EXPECT_EQ(SPV_ERROR_INVALID_ID,
|
|
|
|
Val(CompileSuccessfully(MakeArrayLength("0", kSigned, width))));
|
|
|
|
EXPECT_EQ(SPV_ERROR_INVALID_ID,
|
|
|
|
Val(CompileSuccessfully(MakeArrayLength("0", kUnsigned, width))));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_P(OpTypeArrayLengthTest, LengthNegative) {
|
|
|
|
const int width = GetParam();
|
|
|
|
EXPECT_EQ(SPV_ERROR_INVALID_ID,
|
|
|
|
Val(CompileSuccessfully(MakeArrayLength("-1", kSigned, width))));
|
|
|
|
EXPECT_EQ(SPV_ERROR_INVALID_ID,
|
|
|
|
Val(CompileSuccessfully(MakeArrayLength("-2", kSigned, width))));
|
|
|
|
EXPECT_EQ(SPV_ERROR_INVALID_ID,
|
|
|
|
Val(CompileSuccessfully(MakeArrayLength("-123", kSigned, width))));
|
|
|
|
const string neg_max = "0x8" + string(width / 4 - 1, '0');
|
|
|
|
EXPECT_EQ(SPV_ERROR_INVALID_ID,
|
|
|
|
Val(CompileSuccessfully(MakeArrayLength(neg_max, kSigned, width))));
|
|
|
|
}
|
|
|
|
|
|
|
|
INSTANTIATE_TEST_CASE_P(Widths, OpTypeArrayLengthTest,
|
|
|
|
ValuesIn(vector<int>{8, 16, 32, 48, 64}));
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpTypeArrayLengthNull) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2016-04-04 19:55:05 +00:00
|
|
|
%i32 = OpTypeInt 32 1
|
|
|
|
%len = OpConstantNull %i32
|
|
|
|
%ary = OpTypeArray %i32 %len)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
2016-04-04 19:55:05 +00:00
|
|
|
TEST_F(ValidateID, OpTypeArrayLengthSpecConst) {
|
|
|
|
const char* spirv = R"(
|
|
|
|
%i32 = OpTypeInt 32 1
|
|
|
|
%len = OpSpecConstant %i32 2
|
|
|
|
%ary = OpTypeArray %i32 %len)";
|
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpTypeArrayLengthSpecConstOp) {
|
|
|
|
const char* spirv = R"(
|
|
|
|
%i32 = OpTypeInt 32 1
|
|
|
|
%c1 = OpConstant %i32 1
|
|
|
|
%c2 = OpConstant %i32 2
|
|
|
|
%len = OpSpecConstantOp %i32 IAdd %c1 %c2
|
|
|
|
%ary = OpTypeArray %i32 %len)";
|
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
|
2015-05-22 17:26:19 +00:00
|
|
|
TEST_F(ValidateID, OpTypeRuntimeArrayGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpTypeRuntimeArray %1)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpTypeRuntimeArrayBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpConstant %1 0
|
|
|
|
%3 = OpTypeRuntimeArray %2)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
// TODO: Object of this type can only be created with OpVariable using the
|
|
|
|
// Unifrom Storage Class
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpTypeStructGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpTypeFloat 64
|
2016-02-22 20:25:50 +00:00
|
|
|
%3 = OpTypePointer Input %1
|
2015-08-21 15:52:29 +00:00
|
|
|
%4 = OpTypeStruct %1 %2 %3)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpTypeStructMemberTypeBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpTypeFloat 64
|
|
|
|
%3 = OpConstant %2 0.0
|
|
|
|
%4 = OpTypeStruct %1 %2 %3)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpTypePointerGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 0
|
2016-02-22 20:25:50 +00:00
|
|
|
%2 = OpTypePointer Input %1)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpTypePointerBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpConstant %1 0
|
2016-02-22 20:25:50 +00:00
|
|
|
%3 = OpTypePointer Input %2)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpTypeFunctionGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeFunction %1)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpTypeFunctionReturnTypeBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpConstant %1 0
|
|
|
|
%3 = OpTypeFunction %2)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpTypeFunctionParameterBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpConstant %2 0
|
|
|
|
%4 = OpTypeFunction %1 %2 %3)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpTypePipeGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeFloat 32
|
|
|
|
%2 = OpTypeVector %1 16
|
2015-09-24 19:45:59 +00:00
|
|
|
%3 = OpTypePipe ReadOnly)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpConstantTrueGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeBool
|
|
|
|
%2 = OpConstantTrue %1)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpConstantTrueBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpConstantTrue %1)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpConstantFalseGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-09-10 18:00:00 +00:00
|
|
|
%1 = OpTypeBool
|
2015-08-21 15:52:29 +00:00
|
|
|
%2 = OpConstantTrue %1)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpConstantFalseBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpConstantFalse %1)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpConstantGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpConstant %1 1)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
2016-01-21 20:55:43 +00:00
|
|
|
TEST_F(ValidateID, OpConstantBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
2015-09-29 15:28:34 +00:00
|
|
|
%2 = OpConstant !1 !0)";
|
2016-01-21 20:55:43 +00:00
|
|
|
// The expected failure code is implementation dependent (currently
|
|
|
|
// INVALID_BINARY because the binary parser catches these cases) and may
|
|
|
|
// change over time, but this must always fail.
|
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_BINARY);
|
2015-05-22 17:26:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpConstantCompositeVectorGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeFloat 32
|
|
|
|
%2 = OpTypeVector %1 4
|
|
|
|
%3 = OpConstant %1 3.14
|
|
|
|
%4 = OpConstantComposite %2 %3 %3 %3 %3)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpConstantCompositeVectorResultTypeBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeFloat 32
|
|
|
|
%2 = OpTypeVector %1 4
|
|
|
|
%3 = OpConstant %1 3.14
|
|
|
|
%4 = OpConstantComposite %1 %3 %3 %3 %3)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpConstantCompositeVectorConstituentBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeFloat 32
|
|
|
|
%2 = OpTypeVector %1 4
|
|
|
|
%4 = OpTypeInt 32 0
|
|
|
|
%3 = OpConstant %1 3.14
|
|
|
|
%5 = OpConstant %4 42
|
|
|
|
%6 = OpConstantComposite %2 %3 %5 %3 %3)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpConstantCompositeMatrixGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeFloat 32
|
|
|
|
%2 = OpTypeVector %1 4
|
|
|
|
%3 = OpTypeMatrix %2 4
|
|
|
|
%4 = OpConstant %1 1.0
|
2015-08-24 20:27:02 +00:00
|
|
|
%5 = OpConstant %1 0.0
|
2015-08-21 15:52:29 +00:00
|
|
|
%6 = OpConstantComposite %2 %4 %5 %5 %5
|
|
|
|
%7 = OpConstantComposite %2 %5 %4 %5 %5
|
|
|
|
%8 = OpConstantComposite %2 %5 %5 %4 %5
|
|
|
|
%9 = OpConstantComposite %2 %5 %5 %5 %4
|
|
|
|
%10 = OpConstantComposite %3 %6 %7 %8 %9)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpConstantCompositeMatrixConstituentBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeFloat 32
|
|
|
|
%2 = OpTypeVector %1 4
|
|
|
|
%11 = OpTypeVector %1 3
|
|
|
|
%3 = OpTypeMatrix %2 4
|
|
|
|
%4 = OpConstant %1 1.0
|
|
|
|
%5 = OpConstant %1 0.0
|
|
|
|
%6 = OpConstantComposite %2 %4 %5 %5 %5
|
|
|
|
%7 = OpConstantComposite %2 %5 %4 %5 %5
|
|
|
|
%8 = OpConstantComposite %2 %5 %5 %4 %5
|
|
|
|
%9 = OpConstantComposite %11 %5 %5 %5
|
|
|
|
%10 = OpConstantComposite %3 %6 %7 %8 %9)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpConstantCompositeMatrixColumnTypeBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpTypeFloat 32
|
|
|
|
%3 = OpTypeVector %1 2
|
|
|
|
%4 = OpTypeVector %3 2
|
|
|
|
%5 = OpTypeMatrix %2 2
|
|
|
|
%6 = OpConstant %1 42
|
|
|
|
%7 = OpConstant %2 3.14
|
|
|
|
%8 = OpConstantComposite %3 %6 %6
|
|
|
|
%9 = OpConstantComposite %4 %7 %7
|
|
|
|
%10 = OpConstantComposite %5 %8 %9)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpConstantCompositeArrayGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpConstant %1 4
|
|
|
|
%3 = OpTypeArray %1 %2
|
|
|
|
%4 = OpConstantComposite %3 %2 %2 %2 %2)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpConstantCompositeArrayConstConstituentBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpConstant %1 4
|
|
|
|
%3 = OpTypeArray %1 %2
|
|
|
|
%4 = OpConstantComposite %3 %2 %2 %2 %1)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpConstantCompositeArrayConstituentBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpConstant %1 4
|
|
|
|
%3 = OpTypeArray %1 %2
|
|
|
|
%5 = OpTypeFloat 32
|
|
|
|
%6 = OpConstant %5 3.14
|
|
|
|
%4 = OpConstantComposite %3 %2 %2 %2 %6)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpConstantCompositeStructGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpTypeInt 64 1
|
|
|
|
%3 = OpTypeStruct %1 %1 %2
|
|
|
|
%4 = OpConstant %1 42
|
|
|
|
%5 = OpConstant %2 4300000000
|
|
|
|
%6 = OpConstantComposite %3 %4 %4 %5)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpConstantCompositeStructMemberBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 0
|
|
|
|
%2 = OpTypeInt 64 1
|
|
|
|
%3 = OpTypeStruct %1 %1 %2
|
|
|
|
%4 = OpConstant %1 42
|
|
|
|
%5 = OpConstant %2 4300000000
|
|
|
|
%6 = OpConstantComposite %3 %4 %5 %4)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpConstantSamplerGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
Use opcode operand definitions from SPIR-V specification generator.
The assembler and disassembler now use a dynamically adjusted
sequence of expected operand types. (Internally, it is a deque,
for readability.) Both parsers repeatedly pull an expected operand
type from the left of this pattern list, and try to match the next
input token against it.
The expected pattern is adjusted during the parse to accommodate:
- an extended instruction's expected operands, depending on the
extended instruction's index.
- when an operand itself has operands
- to handle sequences of zero or more operands, or pairs of
operands. These are expanded lazily during the parse.
Adds spv::OperandClass from the SPIR-V specification generator.
Modifies spv_operand_desc_t:
- adds hasResult, hasType, and operandClass array to the opcode
description type.
- "wordCount" is replaced with "numTypes", which counts the number
of entries in operandTypes. And each of those describes a
*logical* operand, including the type id for the instruction,
and the result id for the instruction. A logical operand could be
variable-width, such as a literal string.
Adds opcode.inc, an automatically-generated table of operation
descriptions, with one line to describe each core instruction.
Externally, we have modified the SPIR-V spec doc generator to
emit this file.
(We have hacked this copy to use the old semantics for OpLine.)
Inside the assembler, parsing an operand may fail with new
error code SPV_FAIL_MATCH. For an optional operand, this is not
fatal, but should trigger backtracking at a higher level.
The spvTextIsStartOfNewInst checks the case of the third letter
of what might be an opcode. So now, "OpenCL" does not look like
an opcode name.
In assembly, the EntryPoint name field is mandatory, but can be
an empty string.
Adjust tests for changes to:
- OpSampedImage
- OpTypeSampler
2015-08-27 17:03:52 +00:00
|
|
|
%float = OpTypeFloat 32
|
|
|
|
%samplerType = OpTypeSampler
|
|
|
|
%3 = OpConstantSampler %samplerType ClampToEdge 0 Nearest)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpConstantSamplerResultTypeBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeFloat 32
|
|
|
|
%2 = OpConstantSampler %1 Clamp 0 Nearest)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpConstantNullGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeBool
|
|
|
|
%2 = OpConstantNull %1
|
|
|
|
%3 = OpTypeInt 32 0
|
|
|
|
%4 = OpConstantNull %3
|
|
|
|
%5 = OpTypeFloat 32
|
|
|
|
%6 = OpConstantNull %5
|
|
|
|
%7 = OpTypePointer UniformConstant %3
|
|
|
|
%8 = OpConstantNull %7
|
|
|
|
%9 = OpTypeEvent
|
|
|
|
%10 = OpConstantNull %9
|
|
|
|
%11 = OpTypeDeviceEvent
|
|
|
|
%12 = OpConstantNull %11
|
|
|
|
%13 = OpTypeReserveId
|
|
|
|
%14 = OpConstantNull %13
|
|
|
|
%15 = OpTypeQueue
|
|
|
|
%16 = OpConstantNull %15
|
|
|
|
%17 = OpTypeVector %3 2
|
|
|
|
%18 = OpConstantNull %17
|
|
|
|
%19 = OpTypeMatrix %17 2
|
|
|
|
%20 = OpConstantNull %19
|
|
|
|
%25 = OpConstant %3 8
|
|
|
|
%21 = OpTypeArray %3 %25
|
|
|
|
%22 = OpConstantNull %21
|
|
|
|
%23 = OpTypeStruct %3 %5 %1
|
|
|
|
%24 = OpConstantNull %23
|
2016-02-03 22:16:27 +00:00
|
|
|
%26 = OpTypeArray %17 %25
|
|
|
|
%27 = OpConstantNull %26
|
|
|
|
%28 = OpTypeStruct %7 %26 %26 %1
|
|
|
|
%29 = OpConstantNull %28
|
2015-05-22 17:26:19 +00:00
|
|
|
)";
|
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
2016-02-03 22:16:27 +00:00
|
|
|
|
2015-05-22 17:26:19 +00:00
|
|
|
TEST_F(ValidateID, OpConstantNullBasicBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpConstantNull %1)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
2016-02-03 22:16:27 +00:00
|
|
|
|
2015-05-22 17:26:19 +00:00
|
|
|
TEST_F(ValidateID, OpConstantNullArrayBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%2 = OpTypeInt 32 0
|
Use opcode operand definitions from SPIR-V specification generator.
The assembler and disassembler now use a dynamically adjusted
sequence of expected operand types. (Internally, it is a deque,
for readability.) Both parsers repeatedly pull an expected operand
type from the left of this pattern list, and try to match the next
input token against it.
The expected pattern is adjusted during the parse to accommodate:
- an extended instruction's expected operands, depending on the
extended instruction's index.
- when an operand itself has operands
- to handle sequences of zero or more operands, or pairs of
operands. These are expanded lazily during the parse.
Adds spv::OperandClass from the SPIR-V specification generator.
Modifies spv_operand_desc_t:
- adds hasResult, hasType, and operandClass array to the opcode
description type.
- "wordCount" is replaced with "numTypes", which counts the number
of entries in operandTypes. And each of those describes a
*logical* operand, including the type id for the instruction,
and the result id for the instruction. A logical operand could be
variable-width, such as a literal string.
Adds opcode.inc, an automatically-generated table of operation
descriptions, with one line to describe each core instruction.
Externally, we have modified the SPIR-V spec doc generator to
emit this file.
(We have hacked this copy to use the old semantics for OpLine.)
Inside the assembler, parsing an operand may fail with new
error code SPV_FAIL_MATCH. For an optional operand, this is not
fatal, but should trigger backtracking at a higher level.
The spvTextIsStartOfNewInst checks the case of the third letter
of what might be an opcode. So now, "OpenCL" does not look like
an opcode name.
In assembly, the EntryPoint name field is mandatory, but can be
an empty string.
Adjust tests for changes to:
- OpSampedImage
- OpTypeSampler
2015-08-27 17:03:52 +00:00
|
|
|
%3 = OpTypeSampler
|
2015-08-21 15:52:29 +00:00
|
|
|
%4 = OpConstant %2 4
|
|
|
|
%5 = OpTypeArray %3 %4
|
|
|
|
%6 = OpConstantNull %5)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
2016-02-03 22:16:27 +00:00
|
|
|
|
2015-05-22 17:26:19 +00:00
|
|
|
TEST_F(ValidateID, OpConstantNullStructBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
Use opcode operand definitions from SPIR-V specification generator.
The assembler and disassembler now use a dynamically adjusted
sequence of expected operand types. (Internally, it is a deque,
for readability.) Both parsers repeatedly pull an expected operand
type from the left of this pattern list, and try to match the next
input token against it.
The expected pattern is adjusted during the parse to accommodate:
- an extended instruction's expected operands, depending on the
extended instruction's index.
- when an operand itself has operands
- to handle sequences of zero or more operands, or pairs of
operands. These are expanded lazily during the parse.
Adds spv::OperandClass from the SPIR-V specification generator.
Modifies spv_operand_desc_t:
- adds hasResult, hasType, and operandClass array to the opcode
description type.
- "wordCount" is replaced with "numTypes", which counts the number
of entries in operandTypes. And each of those describes a
*logical* operand, including the type id for the instruction,
and the result id for the instruction. A logical operand could be
variable-width, such as a literal string.
Adds opcode.inc, an automatically-generated table of operation
descriptions, with one line to describe each core instruction.
Externally, we have modified the SPIR-V spec doc generator to
emit this file.
(We have hacked this copy to use the old semantics for OpLine.)
Inside the assembler, parsing an operand may fail with new
error code SPV_FAIL_MATCH. For an optional operand, this is not
fatal, but should trigger backtracking at a higher level.
The spvTextIsStartOfNewInst checks the case of the third letter
of what might be an opcode. So now, "OpenCL" does not look like
an opcode name.
In assembly, the EntryPoint name field is mandatory, but can be
an empty string.
Adjust tests for changes to:
- OpSampedImage
- OpTypeSampler
2015-08-27 17:03:52 +00:00
|
|
|
%2 = OpTypeSampler
|
2015-08-21 15:52:29 +00:00
|
|
|
%3 = OpTypeStruct %2 %2
|
|
|
|
%4 = OpConstantNull %3)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
2016-02-03 22:16:27 +00:00
|
|
|
TEST_F(ValidateID, OpConstantNullRuntimeArrayBad) {
|
|
|
|
const char* spirv = R"(
|
|
|
|
%bool = OpTypeBool
|
|
|
|
%array = OpTypeRuntimeArray %bool
|
|
|
|
%null = OpConstantNull %array)";
|
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
2015-05-22 17:26:19 +00:00
|
|
|
TEST_F(ValidateID, OpSpecConstantTrueGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeBool
|
|
|
|
%2 = OpSpecConstantTrue %1)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpSpecConstantTrueBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpSpecConstantTrue %1)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpSpecConstantFalseGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeBool
|
|
|
|
%2 = OpSpecConstantFalse %1)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpSpecConstantFalseBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpSpecConstantFalse %1)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpSpecConstantGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeFloat 32
|
|
|
|
%2 = OpSpecConstant %1 42)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
2016-01-21 20:55:43 +00:00
|
|
|
TEST_F(ValidateID, OpSpecConstantBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
2015-09-29 15:28:34 +00:00
|
|
|
%2 = OpSpecConstant !1 !4)";
|
2016-01-21 20:55:43 +00:00
|
|
|
// The expected failure code is implementation dependent (currently
|
|
|
|
// INVALID_BINARY because the binary parser catches these cases) and may
|
|
|
|
// change over time, but this must always fail.
|
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_BINARY);
|
2015-05-22 17:26:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: OpSpecConstantComposite
|
|
|
|
// TODO: OpSpecConstantOp
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpVariableGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 1
|
2016-02-22 20:25:50 +00:00
|
|
|
%2 = OpTypePointer Input %1
|
|
|
|
%3 = OpVariable %2 Input)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpVariableInitializerGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 1
|
2016-02-22 20:25:50 +00:00
|
|
|
%2 = OpTypePointer Input %1
|
2015-08-21 15:52:29 +00:00
|
|
|
%3 = OpConstant %1 42
|
2016-02-22 20:25:50 +00:00
|
|
|
%4 = OpVariable %2 Input %3)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
// TODO: Positive test OpVariable with OpConstantNull of OpTypePointer
|
|
|
|
TEST_F(ValidateID, OpVariableResultTypeBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 1
|
2016-02-22 20:25:50 +00:00
|
|
|
%2 = OpVariable %1 Input)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpVariableInitializerBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeInt 32 1
|
2016-02-22 20:25:50 +00:00
|
|
|
%2 = OpTypePointer Input %1
|
|
|
|
%3 = OpVariable %2 Input %2)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpLoadGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 1
|
|
|
|
%3 = OpTypePointer UniformConstant %2
|
|
|
|
%4 = OpTypeFunction %1
|
|
|
|
%5 = OpVariable %3 UniformConstant
|
|
|
|
%6 = OpFunction %1 None %4
|
|
|
|
%7 = OpLabel
|
2016-01-21 14:00:15 +00:00
|
|
|
%8 = OpLoad %2 %5
|
2015-08-21 15:52:29 +00:00
|
|
|
%9 = OpReturn
|
|
|
|
%10 = OpFunctionEnd
|
2015-05-22 17:26:19 +00:00
|
|
|
)";
|
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpLoadResultTypeBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 1
|
|
|
|
%3 = OpTypePointer UniformConstant %2
|
|
|
|
%4 = OpTypeFunction %1
|
|
|
|
%5 = OpVariable %3 UniformConstant
|
|
|
|
%6 = OpFunction %1 None %4
|
|
|
|
%7 = OpLabel
|
2016-01-21 14:00:15 +00:00
|
|
|
%8 = OpLoad %3 %5
|
2015-08-21 15:52:29 +00:00
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd
|
2015-05-22 17:26:19 +00:00
|
|
|
)";
|
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpLoadPointerBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 1
|
|
|
|
%9 = OpTypeFloat 32
|
|
|
|
%3 = OpTypePointer UniformConstant %2
|
|
|
|
%4 = OpTypeFunction %1
|
|
|
|
%6 = OpFunction %1 None %4
|
|
|
|
%7 = OpLabel
|
|
|
|
%8 = OpLoad %9 %3
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd
|
2015-05-22 17:26:19 +00:00
|
|
|
)";
|
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpStoreGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 1
|
|
|
|
%3 = OpTypePointer UniformConstant %2
|
|
|
|
%4 = OpTypeFunction %1
|
|
|
|
%5 = OpConstant %2 42
|
|
|
|
%6 = OpVariable %3 UniformConstant
|
|
|
|
%7 = OpFunction %1 None %4
|
|
|
|
%8 = OpLabel
|
|
|
|
OpStore %6 %5
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpStorePointerBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 1
|
|
|
|
%3 = OpTypePointer UniformConstant %2
|
|
|
|
%4 = OpTypeFunction %1
|
|
|
|
%5 = OpConstant %2 42
|
|
|
|
%6 = OpVariable %3 UniformConstant
|
|
|
|
%7 = OpFunction %1 None %4
|
|
|
|
%8 = OpLabel
|
|
|
|
OpStore %3 %5
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpStoreObjectGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 1
|
|
|
|
%3 = OpTypePointer UniformConstant %2
|
|
|
|
%4 = OpTypeFunction %1
|
|
|
|
%5 = OpConstant %2 42
|
|
|
|
%6 = OpVariable %3 UniformConstant
|
|
|
|
%7 = OpFunction %1 None %4
|
|
|
|
%8 = OpLabel
|
|
|
|
OpStore %6 %7
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpStoreTypeBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 1
|
|
|
|
%9 = OpTypeFloat 32
|
|
|
|
%3 = OpTypePointer UniformConstant %2
|
|
|
|
%4 = OpTypeFunction %1
|
|
|
|
%5 = OpConstant %9 3.14
|
|
|
|
%6 = OpVariable %3 UniformConstant
|
|
|
|
%7 = OpFunction %1 None %4
|
|
|
|
%8 = OpLabel
|
|
|
|
OpStore %6 %5
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
2016-01-22 19:27:00 +00:00
|
|
|
TEST_F(ValidateID, OpStoreVoid) {
|
|
|
|
const char* spirv = R"(
|
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 1
|
|
|
|
%3 = OpTypePointer UniformConstant %2
|
|
|
|
%4 = OpTypeFunction %1
|
|
|
|
%6 = OpVariable %3 UniformConstant
|
|
|
|
%7 = OpFunction %1 None %4
|
|
|
|
%8 = OpLabel
|
|
|
|
%9 = OpFunctionCall %1 %7
|
|
|
|
OpStore %6 %9
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpStoreLabel) {
|
|
|
|
const char* spirv = R"(
|
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 1
|
|
|
|
%3 = OpTypePointer UniformConstant %2
|
|
|
|
%4 = OpTypeFunction %1
|
|
|
|
%6 = OpVariable %3 UniformConstant
|
|
|
|
%7 = OpFunction %1 None %4
|
|
|
|
%8 = OpLabel
|
|
|
|
OpStore %6 %8
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
2016-02-22 20:25:50 +00:00
|
|
|
// TODO: enable when this bug is fixed:
|
|
|
|
// https://cvs.khronos.org/bugzilla/show_bug.cgi?id=15404
|
2016-01-22 19:27:00 +00:00
|
|
|
TEST_F(ValidateID, DISABLED_OpStoreFunction) {
|
|
|
|
const char* spirv = R"(
|
|
|
|
%2 = OpTypeInt 32 1
|
|
|
|
%3 = OpTypePointer UniformConstant %2
|
|
|
|
%4 = OpTypeFunction %2
|
|
|
|
%5 = OpConstant %2 123
|
|
|
|
%6 = OpVariable %3 UniformConstant
|
|
|
|
%7 = OpFunction %2 None %4
|
|
|
|
%8 = OpLabel
|
|
|
|
OpStore %6 %7
|
|
|
|
OpReturnValue %5
|
|
|
|
OpFunctionEnd)";
|
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
2015-05-22 17:26:19 +00:00
|
|
|
TEST_F(ValidateID, OpCopyMemoryGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpTypePointer UniformConstant %2
|
|
|
|
%4 = OpConstant %2 42
|
|
|
|
%5 = OpVariable %3 UniformConstant %4
|
|
|
|
%6 = OpTypePointer Function %2
|
|
|
|
%7 = OpTypeFunction %1
|
|
|
|
%8 = OpFunction %1 None %7
|
|
|
|
%9 = OpLabel
|
|
|
|
%10 = OpVariable %6 Function
|
|
|
|
OpCopyMemory %10 %5 None
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd
|
2015-05-22 17:26:19 +00:00
|
|
|
)";
|
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpCopyMemoryBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpTypePointer UniformConstant %2
|
|
|
|
%4 = OpConstant %2 42
|
|
|
|
%5 = OpVariable %3 UniformConstant %4
|
|
|
|
%11 = OpTypeFloat 32
|
|
|
|
%6 = OpTypePointer Function %11
|
|
|
|
%7 = OpTypeFunction %1
|
|
|
|
%8 = OpFunction %1 None %7
|
|
|
|
%9 = OpLabel
|
|
|
|
%10 = OpVariable %6 Function
|
|
|
|
OpCopyMemory %10 %5 None
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd
|
2015-05-22 17:26:19 +00:00
|
|
|
)";
|
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: OpCopyMemorySized
|
|
|
|
TEST_F(ValidateID, OpCopyMemorySizedGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpTypePointer UniformConstant %2
|
|
|
|
%4 = OpTypePointer Function %2
|
|
|
|
%5 = OpConstant %2 4
|
|
|
|
%6 = OpVariable %3 UniformConstant %5
|
|
|
|
%7 = OpTypeFunction %1
|
|
|
|
%8 = OpFunction %1 None %7
|
|
|
|
%9 = OpLabel
|
|
|
|
%10 = OpVariable %4 Function
|
|
|
|
OpCopyMemorySized %10 %6 %5 None
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpCopyMemorySizedTargetBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpTypePointer UniformConstant %2
|
|
|
|
%4 = OpTypePointer Function %2
|
|
|
|
%5 = OpConstant %2 4
|
|
|
|
%6 = OpVariable %3 UniformConstant %5
|
|
|
|
%7 = OpTypeFunction %1
|
|
|
|
%8 = OpFunction %1 None %7
|
|
|
|
%9 = OpLabel
|
|
|
|
OpCopyMemorySized %9 %6 %5 None
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpCopyMemorySizedSourceBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpTypePointer UniformConstant %2
|
|
|
|
%4 = OpTypePointer Function %2
|
|
|
|
%5 = OpConstant %2 4
|
|
|
|
%6 = OpTypeFunction %1
|
|
|
|
%7 = OpFunction %1 None %6
|
|
|
|
%8 = OpLabel
|
|
|
|
%9 = OpVariable %4 Function
|
|
|
|
OpCopyMemorySized %9 %6 %5 None
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpCopyMemorySizedSizeBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpTypePointer UniformConstant %2
|
|
|
|
%4 = OpTypePointer Function %2
|
|
|
|
%5 = OpConstant %2 4
|
|
|
|
%6 = OpVariable %3 UniformConstant %5
|
|
|
|
%7 = OpTypeFunction %1
|
|
|
|
%8 = OpFunction %1 None %7
|
|
|
|
%9 = OpLabel
|
|
|
|
%10 = OpVariable %4 Function
|
|
|
|
OpCopyMemorySized %10 %6 %6 None
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpCopyMemorySizedSizeTypeBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpTypePointer UniformConstant %2
|
|
|
|
%4 = OpTypePointer Function %2
|
|
|
|
%5 = OpConstant %2 4
|
|
|
|
%6 = OpVariable %3 UniformConstant %5
|
|
|
|
%7 = OpTypeFunction %1
|
|
|
|
%11 = OpTypeFloat 32
|
|
|
|
%12 = OpConstant %11 1.0
|
|
|
|
%8 = OpFunction %1 None %7
|
|
|
|
%9 = OpLabel
|
|
|
|
%10 = OpVariable %4 Function
|
|
|
|
OpCopyMemorySized %10 %6 %12 None
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: OpAccessChain
|
|
|
|
// TODO: OpInBoundsAccessChain
|
|
|
|
// TODO: OpArrayLength
|
|
|
|
// TODO: OpImagePointer
|
|
|
|
// TODO: OpGenericPtrMemSemantics
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpFunctionGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 1
|
|
|
|
%3 = OpTypeFunction %1 %2 %2
|
|
|
|
%4 = OpFunction %1 None %3
|
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpFunctionResultTypeBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 1
|
|
|
|
%5 = OpConstant %2 42
|
|
|
|
%3 = OpTypeFunction %1 %2 %2
|
|
|
|
%4 = OpFunction %2 None %3
|
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpFunctionFunctionTypeBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 1
|
|
|
|
%4 = OpFunction %1 None %2
|
2015-05-22 17:26:19 +00:00
|
|
|
OpFunctionEnd)";
|
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpFunctionParameterGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpTypeFunction %1 %2
|
|
|
|
%4 = OpFunction %1 None %3
|
|
|
|
%5 = OpFunctionParameter %2
|
|
|
|
%6 = OpLabel
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
2015-11-18 20:43:43 +00:00
|
|
|
TEST_F(ValidateID, OpFunctionParameterMultipleGood) {
|
|
|
|
const char* spirv = R"(
|
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpTypeFunction %1 %2 %2
|
|
|
|
%4 = OpFunction %1 None %3
|
|
|
|
%5 = OpFunctionParameter %2
|
|
|
|
%6 = OpFunctionParameter %2
|
|
|
|
%7 = OpLabel
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
2015-05-22 17:26:19 +00:00
|
|
|
TEST_F(ValidateID, OpFunctionParameterResultTypeBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpTypeFunction %1 %2
|
|
|
|
%4 = OpFunction %1 None %3
|
|
|
|
%5 = OpFunctionParameter %1
|
|
|
|
%6 = OpLabel
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpFunctionCallGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpTypeFunction %2 %2
|
|
|
|
%4 = OpTypeFunction %1
|
|
|
|
%5 = OpConstant %2 42 ;21
|
2015-05-22 17:26:19 +00:00
|
|
|
|
2015-08-21 15:52:29 +00:00
|
|
|
%6 = OpFunction %2 None %3
|
|
|
|
%7 = OpFunctionParameter %2
|
|
|
|
%8 = OpLabel
|
2016-01-21 14:00:15 +00:00
|
|
|
OpReturnValue %7
|
2015-08-21 15:52:29 +00:00
|
|
|
OpFunctionEnd
|
2015-05-22 17:26:19 +00:00
|
|
|
|
2015-08-21 15:52:29 +00:00
|
|
|
%10 = OpFunction %1 None %4
|
|
|
|
%11 = OpLabel
|
|
|
|
%12 = OpFunctionCall %2 %6 %5
|
2016-02-22 20:25:50 +00:00
|
|
|
OpReturn
|
2015-08-21 15:52:29 +00:00
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpFunctionCallResultTypeBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpTypeFunction %2 %2
|
|
|
|
%4 = OpTypeFunction %1
|
|
|
|
%5 = OpConstant %2 42 ;21
|
2015-05-22 17:26:19 +00:00
|
|
|
|
2015-08-21 15:52:29 +00:00
|
|
|
%6 = OpFunction %2 None %3
|
|
|
|
%7 = OpFunctionParameter %2
|
|
|
|
%8 = OpLabel
|
|
|
|
%9 = OpLoad %2 %7
|
|
|
|
OpReturnValue %9
|
|
|
|
OpFunctionEnd
|
2015-05-22 17:26:19 +00:00
|
|
|
|
2015-08-21 15:52:29 +00:00
|
|
|
%10 = OpFunction %1 None %4
|
|
|
|
%11 = OpLabel
|
|
|
|
%12 = OpFunctionCall %1 %6 %5
|
2016-02-22 20:25:50 +00:00
|
|
|
OpReturn
|
2015-08-21 15:52:29 +00:00
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpFunctionCallFunctionBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpTypeFunction %2 %2
|
|
|
|
%4 = OpTypeFunction %1
|
|
|
|
%5 = OpConstant %2 42 ;21
|
2015-05-22 17:26:19 +00:00
|
|
|
|
2015-08-21 15:52:29 +00:00
|
|
|
%10 = OpFunction %1 None %4
|
|
|
|
%11 = OpLabel
|
|
|
|
%12 = OpFunctionCall %2 %5 %5
|
2016-02-22 20:25:50 +00:00
|
|
|
OpReturn
|
2015-08-21 15:52:29 +00:00
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpFunctionCallArgumentTypeBad) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpTypeFunction %2 %2
|
|
|
|
%4 = OpTypeFunction %1
|
|
|
|
%5 = OpConstant %2 42
|
2015-05-22 17:26:19 +00:00
|
|
|
|
2015-08-21 15:52:29 +00:00
|
|
|
%13 = OpTypeFloat 32
|
|
|
|
%14 = OpConstant %13 3.14
|
2015-05-22 17:26:19 +00:00
|
|
|
|
2015-08-21 15:52:29 +00:00
|
|
|
%6 = OpFunction %2 None %3
|
|
|
|
%7 = OpFunctionParameter %2
|
|
|
|
%8 = OpLabel
|
|
|
|
%9 = OpLoad %2 %7
|
|
|
|
OpReturnValue %9
|
|
|
|
OpFunctionEnd
|
2015-05-22 17:26:19 +00:00
|
|
|
|
2015-08-21 15:52:29 +00:00
|
|
|
%10 = OpFunction %1 None %4
|
|
|
|
%11 = OpLabel
|
|
|
|
%12 = OpFunctionCall %2 %6 %14
|
2016-02-22 20:25:50 +00:00
|
|
|
OpReturn
|
2015-08-21 15:52:29 +00:00
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
#if 0
|
|
|
|
TEST_F(ValidateID, OpFunctionCallArgumentCountBar) {
|
|
|
|
const char *spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpTypeFunction %2 %2
|
|
|
|
%4 = OpTypeFunction %1
|
|
|
|
%5 = OpConstant %2 42 ;21
|
2015-05-22 17:26:19 +00:00
|
|
|
|
2015-08-21 15:52:29 +00:00
|
|
|
%6 = OpFunction %2 None %3
|
|
|
|
%7 = OpFunctionParameter %2
|
|
|
|
%8 = OpLabel
|
|
|
|
%9 = OpLoad %2 %7
|
|
|
|
OpReturnValue %9
|
|
|
|
OpFunctionEnd
|
2015-05-22 17:26:19 +00:00
|
|
|
|
2015-08-21 15:52:29 +00:00
|
|
|
%10 = OpFunction %1 None %4
|
|
|
|
%11 = OpLabel
|
|
|
|
OpReturn
|
|
|
|
%12 = OpFunctionCall %2 %6 %5
|
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
Use opcode operand definitions from SPIR-V specification generator.
The assembler and disassembler now use a dynamically adjusted
sequence of expected operand types. (Internally, it is a deque,
for readability.) Both parsers repeatedly pull an expected operand
type from the left of this pattern list, and try to match the next
input token against it.
The expected pattern is adjusted during the parse to accommodate:
- an extended instruction's expected operands, depending on the
extended instruction's index.
- when an operand itself has operands
- to handle sequences of zero or more operands, or pairs of
operands. These are expanded lazily during the parse.
Adds spv::OperandClass from the SPIR-V specification generator.
Modifies spv_operand_desc_t:
- adds hasResult, hasType, and operandClass array to the opcode
description type.
- "wordCount" is replaced with "numTypes", which counts the number
of entries in operandTypes. And each of those describes a
*logical* operand, including the type id for the instruction,
and the result id for the instruction. A logical operand could be
variable-width, such as a literal string.
Adds opcode.inc, an automatically-generated table of operation
descriptions, with one line to describe each core instruction.
Externally, we have modified the SPIR-V spec doc generator to
emit this file.
(We have hacked this copy to use the old semantics for OpLine.)
Inside the assembler, parsing an operand may fail with new
error code SPV_FAIL_MATCH. For an optional operand, this is not
fatal, but should trigger backtracking at a higher level.
The spvTextIsStartOfNewInst checks the case of the third letter
of what might be an opcode. So now, "OpenCL" does not look like
an opcode name.
In assembly, the EntryPoint name field is mandatory, but can be
an empty string.
Adjust tests for changes to:
- OpSampedImage
- OpTypeSampler
2015-08-27 17:03:52 +00:00
|
|
|
// TODO: OpSampledImage
|
|
|
|
// TODO: The many things that changed with how images are used.
|
2015-05-22 17:26:19 +00:00
|
|
|
// TODO: OpTextureSample
|
|
|
|
// TODO: OpTextureSampleDref
|
|
|
|
// TODO: OpTextureSampleLod
|
|
|
|
// TODO: OpTextureSampleProj
|
|
|
|
// TODO: OpTextureSampleGrad
|
|
|
|
// TODO: OpTextureSampleOffset
|
|
|
|
// TODO: OpTextureSampleProjLod
|
|
|
|
// TODO: OpTextureSampleProjGrad
|
|
|
|
// TODO: OpTextureSampleLodOffset
|
|
|
|
// TODO: OpTextureSampleProjOffset
|
|
|
|
// TODO: OpTextureSampleGradOffset
|
|
|
|
// TODO: OpTextureSampleProjLodOffset
|
|
|
|
// TODO: OpTextureSampleProjGradOffset
|
|
|
|
// TODO: OpTextureFetchTexelLod
|
|
|
|
// TODO: OpTextureFetchTexelOffset
|
|
|
|
// TODO: OpTextureFetchSample
|
|
|
|
// TODO: OpTextureFetchTexel
|
|
|
|
// TODO: OpTextureGather
|
|
|
|
// TODO: OpTextureGatherOffset
|
|
|
|
// TODO: OpTextureGatherOffsets
|
|
|
|
// TODO: OpTextureQuerySizeLod
|
|
|
|
// TODO: OpTextureQuerySize
|
|
|
|
// TODO: OpTextureQueryLevels
|
|
|
|
// TODO: OpTextureQuerySamples
|
|
|
|
// TODO: OpConvertUToF
|
|
|
|
// TODO: OpConvertFToS
|
|
|
|
// TODO: OpConvertSToF
|
|
|
|
// TODO: OpConvertUToF
|
|
|
|
// TODO: OpUConvert
|
|
|
|
// TODO: OpSConvert
|
|
|
|
// TODO: OpFConvert
|
|
|
|
// TODO: OpConvertPtrToU
|
|
|
|
// TODO: OpConvertUToPtr
|
|
|
|
// TODO: OpPtrCastToGeneric
|
|
|
|
// TODO: OpGenericCastToPtr
|
|
|
|
// TODO: OpBitcast
|
|
|
|
// TODO: OpGenericCastToPtrExplicit
|
|
|
|
// TODO: OpSatConvertSToU
|
|
|
|
// TODO: OpSatConvertUToS
|
|
|
|
// TODO: OpVectorExtractDynamic
|
|
|
|
// TODO: OpVectorInsertDynamic
|
|
|
|
// TODO: OpVectorShuffle
|
|
|
|
// TODO: OpCompositeConstruct
|
|
|
|
// TODO: OpCompositeExtract
|
|
|
|
// TODO: OpCompositeInsert
|
|
|
|
// TODO: OpCopyObject
|
|
|
|
// TODO: OpTranspose
|
|
|
|
// TODO: OpSNegate
|
|
|
|
// TODO: OpFNegate
|
|
|
|
// TODO: OpNot
|
|
|
|
// TODO: OpIAdd
|
|
|
|
// TODO: OpFAdd
|
|
|
|
// TODO: OpISub
|
|
|
|
// TODO: OpFSub
|
|
|
|
// TODO: OpIMul
|
|
|
|
// TODO: OpFMul
|
|
|
|
// TODO: OpUDiv
|
|
|
|
// TODO: OpSDiv
|
|
|
|
// TODO: OpFDiv
|
|
|
|
// TODO: OpUMod
|
|
|
|
// TODO: OpSRem
|
|
|
|
// TODO: OpSMod
|
|
|
|
// TODO: OpFRem
|
|
|
|
// TODO: OpFMod
|
|
|
|
// TODO: OpVectorTimesScalar
|
|
|
|
// TODO: OpMatrixTimesScalar
|
|
|
|
// TODO: OpVectorTimesMatrix
|
|
|
|
// TODO: OpMatrixTimesVector
|
|
|
|
// TODO: OpMatrixTimesMatrix
|
|
|
|
// TODO: OpOuterProduct
|
|
|
|
// TODO: OpDot
|
|
|
|
// TODO: OpShiftRightLogical
|
|
|
|
// TODO: OpShiftRightArithmetic
|
|
|
|
// TODO: OpShiftLeftLogical
|
|
|
|
// TODO: OpBitwiseOr
|
|
|
|
// TODO: OpBitwiseXor
|
|
|
|
// TODO: OpBitwiseAnd
|
|
|
|
// TODO: OpAny
|
|
|
|
// TODO: OpAll
|
|
|
|
// TODO: OpIsNan
|
|
|
|
// TODO: OpIsInf
|
|
|
|
// TODO: OpIsFinite
|
|
|
|
// TODO: OpIsNormal
|
|
|
|
// TODO: OpSignBitSet
|
|
|
|
// TODO: OpLessOrGreater
|
|
|
|
// TODO: OpOrdered
|
|
|
|
// TODO: OpUnordered
|
|
|
|
// TODO: OpLogicalOr
|
|
|
|
// TODO: OpLogicalXor
|
|
|
|
// TODO: OpLogicalAnd
|
|
|
|
// TODO: OpSelect
|
|
|
|
// TODO: OpIEqual
|
|
|
|
// TODO: OpFOrdEqual
|
|
|
|
// TODO: OpFUnordEqual
|
|
|
|
// TODO: OpINotEqual
|
|
|
|
// TODO: OpFOrdNotEqual
|
|
|
|
// TODO: OpFUnordNotEqual
|
|
|
|
// TODO: OpULessThan
|
|
|
|
// TODO: OpSLessThan
|
|
|
|
// TODO: OpFOrdLessThan
|
|
|
|
// TODO: OpFUnordLessThan
|
|
|
|
// TODO: OpUGreaterThan
|
|
|
|
// TODO: OpSGreaterThan
|
|
|
|
// TODO: OpFOrdGreaterThan
|
|
|
|
// TODO: OpFUnordGreaterThan
|
|
|
|
// TODO: OpULessThanEqual
|
|
|
|
// TODO: OpSLessThanEqual
|
|
|
|
// TODO: OpFOrdLessThanEqual
|
|
|
|
// TODO: OpFUnordLessThanEqual
|
|
|
|
// TODO: OpUGreaterThanEqual
|
|
|
|
// TODO: OpSGreaterThanEqual
|
|
|
|
// TODO: OpFOrdGreaterThanEqual
|
|
|
|
// TODO: OpFUnordGreaterThanEqual
|
|
|
|
// TODO: OpDPdx
|
|
|
|
// TODO: OpDPdy
|
|
|
|
// TODO: OpFWidth
|
|
|
|
// TODO: OpDPdxFine
|
|
|
|
// TODO: OpDPdyFine
|
|
|
|
// TODO: OpFwidthFine
|
|
|
|
// TODO: OpDPdxCoarse
|
|
|
|
// TODO: OpDPdyCoarse
|
|
|
|
// TODO: OpFwidthCoarse
|
|
|
|
// TODO: OpPhi
|
|
|
|
// TODO: OpLoopMerge
|
|
|
|
// TODO: OpSelectionMerge
|
|
|
|
// TODO: OpBranch
|
|
|
|
// TODO: OpBranchConditional
|
|
|
|
// TODO: OpSwitch
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpReturnValueConstantGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
2016-01-22 21:52:40 +00:00
|
|
|
%3 = OpTypeFunction %2
|
2015-08-21 15:52:29 +00:00
|
|
|
%4 = OpConstant %2 42
|
|
|
|
%5 = OpFunction %2 None %3
|
|
|
|
%6 = OpLabel
|
|
|
|
OpReturnValue %4
|
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
2016-01-22 21:52:40 +00:00
|
|
|
|
2015-05-22 17:26:19 +00:00
|
|
|
TEST_F(ValidateID, OpReturnValueVariableGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0 ;10
|
2016-01-22 21:52:40 +00:00
|
|
|
%3 = OpTypeFunction %2
|
2015-08-21 15:52:29 +00:00
|
|
|
%8 = OpTypePointer Function %2 ;18
|
|
|
|
%4 = OpConstant %2 42 ;22
|
|
|
|
%5 = OpFunction %2 None %3 ;27
|
|
|
|
%6 = OpLabel ;29
|
|
|
|
%7 = OpVariable %8 Function %4 ;34
|
2016-01-22 21:52:40 +00:00
|
|
|
%9 = OpLoad %2 %7
|
|
|
|
OpReturnValue %9 ;36
|
2015-08-21 15:52:29 +00:00
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
2016-01-22 21:52:40 +00:00
|
|
|
|
|
|
|
TEST_F(ValidateID, OpReturnValueExpressionGood) {
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* spirv = R"(
|
2015-08-21 15:52:29 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
2016-01-22 21:52:40 +00:00
|
|
|
%3 = OpTypeFunction %2
|
2015-08-21 15:52:29 +00:00
|
|
|
%4 = OpConstant %2 42
|
|
|
|
%5 = OpFunction %2 None %3
|
2016-01-22 21:52:40 +00:00
|
|
|
%6 = OpLabel
|
|
|
|
%7 = OpIAdd %2 %4 %4
|
|
|
|
OpReturnValue %7
|
|
|
|
OpFunctionEnd)";
|
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpReturnValueIsType) {
|
|
|
|
const char* spirv = R"(
|
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpTypeFunction %2
|
|
|
|
%5 = OpFunction %2 None %3
|
2015-08-21 15:52:29 +00:00
|
|
|
%6 = OpLabel
|
|
|
|
OpReturnValue %1
|
|
|
|
OpFunctionEnd)";
|
2015-05-22 17:26:19 +00:00
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
2016-01-22 21:52:40 +00:00
|
|
|
TEST_F(ValidateID, OpReturnValueIsLabel) {
|
|
|
|
const char* spirv = R"(
|
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpTypeFunction %2
|
|
|
|
%5 = OpFunction %2 None %3
|
|
|
|
%6 = OpLabel
|
|
|
|
OpReturnValue %6
|
|
|
|
OpFunctionEnd)";
|
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpReturnValueIsVoid) {
|
|
|
|
const char* spirv = R"(
|
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpTypeFunction %1
|
|
|
|
%5 = OpFunction %1 None %3
|
|
|
|
%6 = OpLabel
|
|
|
|
%7 = OpFunctionCall %1 %5
|
|
|
|
OpReturnValue %7
|
|
|
|
OpFunctionEnd)";
|
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
2016-06-13 21:26:09 +00:00
|
|
|
TEST_F(ValidateID, OpReturnValueIsVariableInPhysical) {
|
|
|
|
// It's valid to return a pointer in a physical addressing model.
|
2016-01-22 21:52:40 +00:00
|
|
|
const char* spirv = R"(
|
2016-06-13 21:26:09 +00:00
|
|
|
OpMemoryModel Physical32 OpenCL
|
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpTypePointer Private %2
|
|
|
|
%4 = OpTypeFunction %3
|
|
|
|
%5 = OpFunction %3 None %4
|
|
|
|
%6 = OpLabel
|
|
|
|
%7 = OpVariable %3 Function
|
|
|
|
OpReturnValue %7
|
|
|
|
OpFunctionEnd)";
|
|
|
|
CHECK(spirv, SPV_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpReturnValueIsVariableInLogical) {
|
|
|
|
// It's invalid to return a pointer in a physical addressing model.
|
|
|
|
const char* spirv = R"(
|
|
|
|
OpMemoryModel Logical GLSL450
|
2016-01-22 21:52:40 +00:00
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpTypePointer Private %2
|
|
|
|
%4 = OpTypeFunction %3
|
|
|
|
%5 = OpFunction %3 None %4
|
|
|
|
%6 = OpLabel
|
|
|
|
%7 = OpVariable %3 Function
|
|
|
|
OpReturnValue %7
|
|
|
|
OpFunctionEnd)";
|
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
2016-02-22 20:25:50 +00:00
|
|
|
// TODO: enable when this bug is fixed:
|
|
|
|
// https://cvs.khronos.org/bugzilla/show_bug.cgi?id=15404
|
2016-01-22 21:52:40 +00:00
|
|
|
TEST_F(ValidateID, DISABLED_OpReturnValueIsFunction) {
|
|
|
|
const char* spirv = R"(
|
|
|
|
%1 = OpTypeVoid
|
|
|
|
%2 = OpTypeInt 32 0
|
|
|
|
%3 = OpTypeFunction %2
|
|
|
|
%5 = OpFunction %2 None %3
|
|
|
|
%6 = OpLabel
|
|
|
|
OpReturnValue %5
|
|
|
|
OpFunctionEnd)";
|
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
2016-01-15 16:25:11 +00:00
|
|
|
TEST_F(ValidateID, UndefinedTypeId) {
|
|
|
|
const char* spirv = R"(
|
2016-02-22 20:25:50 +00:00
|
|
|
%s = OpTypeStruct %i32
|
2016-01-15 16:25:11 +00:00
|
|
|
)";
|
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, UndefinedIdScope) {
|
|
|
|
const char* spirv = R"(
|
2016-02-22 20:25:50 +00:00
|
|
|
%u32 = OpTypeInt 32 0
|
2016-01-15 16:25:11 +00:00
|
|
|
%memsem = OpConstant %u32 0
|
2016-02-22 20:25:50 +00:00
|
|
|
%void = OpTypeVoid
|
|
|
|
%void_f = OpTypeFunction %void
|
|
|
|
%f = OpFunction %void None %void_f
|
|
|
|
%l = OpLabel
|
|
|
|
OpMemoryBarrier %undef %memsem
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd
|
2016-01-15 16:25:11 +00:00
|
|
|
)";
|
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, UndefinedIdMemSem) {
|
|
|
|
const char* spirv = R"(
|
2016-02-22 20:25:50 +00:00
|
|
|
%u32 = OpTypeInt 32 0
|
|
|
|
%scope = OpConstant %u32 0
|
|
|
|
%void = OpTypeVoid
|
|
|
|
%void_f = OpTypeFunction %void
|
|
|
|
%f = OpFunction %void None %void_f
|
|
|
|
%l = OpLabel
|
|
|
|
OpMemoryBarrier %scope %undef
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd
|
2016-01-15 16:25:11 +00:00
|
|
|
)";
|
|
|
|
CHECK(spirv, SPV_ERROR_INVALID_ID);
|
|
|
|
}
|
|
|
|
|
2016-03-01 18:56:14 +00:00
|
|
|
TEST_F(ValidateID, KernelOpEntryPointAndOpInBoundsPtrAccessChainGood) {
|
|
|
|
const char* spirv = R"(
|
|
|
|
OpEntryPoint Kernel %2 "simple_kernel"
|
|
|
|
OpSource OpenCL_C 200000
|
|
|
|
OpDecorate %3 BuiltIn GlobalInvocationId
|
|
|
|
OpDecorate %3 Constant
|
|
|
|
OpDecorate %4 FuncParamAttr NoCapture
|
|
|
|
OpDecorate %3 LinkageAttributes "__spirv_GlobalInvocationId" Import
|
|
|
|
%5 = OpTypeInt 32 0
|
|
|
|
%6 = OpTypeVector %5 3
|
|
|
|
%7 = OpTypePointer UniformConstant %6
|
|
|
|
%3 = OpVariable %7 UniformConstant
|
|
|
|
%8 = OpTypeVoid
|
|
|
|
%9 = OpTypeStruct %5
|
|
|
|
%10 = OpTypePointer CrossWorkgroup %9
|
|
|
|
%11 = OpTypeFunction %8 %10
|
|
|
|
%12 = OpConstant %5 0
|
|
|
|
%13 = OpTypePointer CrossWorkgroup %5
|
|
|
|
%14 = OpConstant %5 42
|
|
|
|
%2 = OpFunction %8 None %11
|
|
|
|
%4 = OpFunctionParameter %10
|
|
|
|
%15 = OpLabel
|
|
|
|
%16 = OpLoad %6 %3 Aligned 0
|
|
|
|
%17 = OpCompositeExtract %5 %16 0
|
|
|
|
%18 = OpInBoundsPtrAccessChain %13 %4 %17 %12
|
|
|
|
OpStore %18 %14 Aligned 4
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
|
|
|
CHECK_KERNEL(spirv, SPV_SUCCESS, 32);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValidateID, OpPtrAccessChainGood) {
|
|
|
|
const char* spirv = R"(
|
|
|
|
OpEntryPoint Kernel %2 "another_kernel"
|
|
|
|
OpSource OpenCL_C 200000
|
|
|
|
OpDecorate %3 BuiltIn GlobalInvocationId
|
|
|
|
OpDecorate %3 Constant
|
|
|
|
OpDecorate %4 FuncParamAttr NoCapture
|
|
|
|
OpDecorate %3 LinkageAttributes "__spirv_GlobalInvocationId" Import
|
|
|
|
%5 = OpTypeInt 64 0
|
|
|
|
%6 = OpTypeVector %5 3
|
|
|
|
%7 = OpTypePointer UniformConstant %6
|
|
|
|
%3 = OpVariable %7 UniformConstant
|
|
|
|
%8 = OpTypeVoid
|
|
|
|
%9 = OpTypeInt 32 0
|
|
|
|
%10 = OpTypeStruct %9
|
|
|
|
%11 = OpTypePointer CrossWorkgroup %10
|
|
|
|
%12 = OpTypeFunction %8 %11
|
|
|
|
%13 = OpConstant %5 4294967295
|
|
|
|
%14 = OpConstant %9 0
|
|
|
|
%15 = OpTypePointer CrossWorkgroup %9
|
|
|
|
%16 = OpConstant %9 42
|
|
|
|
%2 = OpFunction %8 None %12
|
|
|
|
%4 = OpFunctionParameter %11
|
|
|
|
%17 = OpLabel
|
|
|
|
%18 = OpLoad %6 %3 Aligned 0
|
|
|
|
%19 = OpCompositeExtract %5 %18 0
|
|
|
|
%20 = OpBitwiseAnd %5 %19 %13
|
|
|
|
%21 = OpPtrAccessChain %15 %4 %20 %14
|
|
|
|
OpStore %21 %16 Aligned 4
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
|
|
|
CHECK_KERNEL(spirv, SPV_SUCCESS, 64);
|
|
|
|
}
|
|
|
|
|
2016-03-02 21:17:54 +00:00
|
|
|
TEST_F(ValidateID, OpLoadBitcastPointerGood) {
|
|
|
|
const char* spirv = R"(
|
|
|
|
%2 = OpTypeVoid
|
|
|
|
%3 = OpTypeInt 32 1
|
|
|
|
%4 = OpTypeFloat 32
|
|
|
|
%5 = OpTypePointer UniformConstant %3
|
|
|
|
%6 = OpTypePointer UniformConstant %4
|
|
|
|
%7 = OpVariable %5 UniformConstant
|
|
|
|
%8 = OpTypeFunction %2
|
|
|
|
%9 = OpFunction %2 None %8
|
|
|
|
%10 = OpLabel
|
|
|
|
%11 = OpBitcast %6 %7
|
|
|
|
%12 = OpLoad %4 %11
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
|
|
|
CHECK_KERNEL(spirv, SPV_SUCCESS, 64);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpLoadBitcastNonPointerBad) {
|
|
|
|
const char* spirv = R"(
|
|
|
|
%2 = OpTypeVoid
|
|
|
|
%3 = OpTypeInt 32 1
|
|
|
|
%4 = OpTypeFloat 32
|
|
|
|
%5 = OpTypePointer UniformConstant %3
|
|
|
|
%6 = OpTypeFunction %2
|
|
|
|
%7 = OpVariable %5 UniformConstant
|
|
|
|
%8 = OpFunction %2 None %6
|
|
|
|
%9 = OpLabel
|
|
|
|
%10 = OpLoad %3 %7
|
|
|
|
%11 = OpBitcast %4 %10
|
|
|
|
%12 = OpLoad %3 %11
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
|
|
|
CHECK_KERNEL(spirv, SPV_ERROR_INVALID_ID, 64);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpStoreBitcastPointerGood) {
|
|
|
|
const char* spirv = R"(
|
|
|
|
%2 = OpTypeVoid
|
|
|
|
%3 = OpTypeInt 32 1
|
|
|
|
%4 = OpTypeFloat 32
|
|
|
|
%5 = OpTypePointer Function %3
|
|
|
|
%6 = OpTypePointer Function %4
|
|
|
|
%7 = OpTypeFunction %2
|
|
|
|
%8 = OpConstant %3 42
|
|
|
|
%9 = OpFunction %2 None %7
|
|
|
|
%10 = OpLabel
|
|
|
|
%11 = OpVariable %6 Function
|
|
|
|
%12 = OpBitcast %5 %11
|
|
|
|
OpStore %12 %8
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
|
|
|
CHECK_KERNEL(spirv, SPV_SUCCESS, 64);
|
|
|
|
}
|
|
|
|
TEST_F(ValidateID, OpStoreBitcastNonPointerBad) {
|
|
|
|
const char* spirv = R"(
|
|
|
|
%2 = OpTypeVoid
|
|
|
|
%3 = OpTypeInt 32 1
|
|
|
|
%4 = OpTypeFloat 32
|
|
|
|
%5 = OpTypePointer Function %4
|
|
|
|
%6 = OpTypeFunction %2
|
|
|
|
%7 = OpConstant %4 42
|
|
|
|
%8 = OpFunction %2 None %6
|
|
|
|
%9 = OpLabel
|
|
|
|
%10 = OpVariable %5 Function
|
|
|
|
%11 = OpBitcast %3 %7
|
|
|
|
OpStore %11 %7
|
|
|
|
OpReturn
|
|
|
|
OpFunctionEnd)";
|
|
|
|
CHECK_KERNEL(spirv, SPV_ERROR_INVALID_ID, 64);
|
|
|
|
}
|
|
|
|
|
2015-05-22 17:26:19 +00:00
|
|
|
// TODO: OpLifetimeStart
|
|
|
|
// TODO: OpLifetimeStop
|
|
|
|
// TODO: OpAtomicInit
|
|
|
|
// TODO: OpAtomicLoad
|
|
|
|
// TODO: OpAtomicStore
|
|
|
|
// TODO: OpAtomicExchange
|
|
|
|
// TODO: OpAtomicCompareExchange
|
|
|
|
// TODO: OpAtomicCompareExchangeWeak
|
|
|
|
// TODO: OpAtomicIIncrement
|
|
|
|
// TODO: OpAtomicIDecrement
|
|
|
|
// TODO: OpAtomicIAdd
|
|
|
|
// TODO: OpAtomicISub
|
|
|
|
// TODO: OpAtomicUMin
|
|
|
|
// TODO: OpAtomicUMax
|
|
|
|
// TODO: OpAtomicAnd
|
|
|
|
// TODO: OpAtomicOr
|
|
|
|
// TODO: OpAtomicXor
|
|
|
|
// TODO: OpAtomicIMin
|
|
|
|
// TODO: OpAtomicIMax
|
|
|
|
// TODO: OpEmitStreamVertex
|
|
|
|
// TODO: OpEndStreamPrimitive
|
|
|
|
// TODO: OpAsyncGroupCopy
|
|
|
|
// TODO: OpWaitGroupEvents
|
|
|
|
// TODO: OpGroupAll
|
|
|
|
// TODO: OpGroupAny
|
|
|
|
// TODO: OpGroupBroadcast
|
|
|
|
// TODO: OpGroupIAdd
|
|
|
|
// TODO: OpGroupFAdd
|
|
|
|
// TODO: OpGroupFMin
|
|
|
|
// TODO: OpGroupUMin
|
|
|
|
// TODO: OpGroupSMin
|
|
|
|
// TODO: OpGroupFMax
|
|
|
|
// TODO: OpGroupUMax
|
|
|
|
// TODO: OpGroupSMax
|
|
|
|
// TODO: OpEnqueueMarker
|
|
|
|
// TODO: OpEnqueueKernel
|
|
|
|
// TODO: OpGetKernelNDrangeSubGroupCount
|
|
|
|
// TODO: OpGetKernelNDrangeMaxSubGroupSize
|
|
|
|
// TODO: OpGetKernelWorkGroupSize
|
|
|
|
// TODO: OpGetKernelPreferredWorkGroupSizeMultiple
|
|
|
|
// TODO: OpRetainEvent
|
|
|
|
// TODO: OpReleaseEvent
|
|
|
|
// TODO: OpCreateUserEvent
|
|
|
|
// TODO: OpIsValidEvent
|
|
|
|
// TODO: OpSetUserEventStatus
|
|
|
|
// TODO: OpCaptureEventProfilingInfo
|
|
|
|
// TODO: OpGetDefaultQueue
|
|
|
|
// TODO: OpBuildNDRange
|
|
|
|
// TODO: OpReadPipe
|
|
|
|
// TODO: OpWritePipe
|
|
|
|
// TODO: OpReservedReadPipe
|
|
|
|
// TODO: OpReservedWritePipe
|
|
|
|
// TODO: OpReserveReadPipePackets
|
|
|
|
// TODO: OpReserveWritePipePackets
|
|
|
|
// TODO: OpCommitReadPipe
|
|
|
|
// TODO: OpCommitWritePipe
|
|
|
|
// TODO: OpIsValidReserveId
|
|
|
|
// TODO: OpGetNumPipePackets
|
|
|
|
// TODO: OpGetMaxPipePackets
|
|
|
|
// TODO: OpGroupReserveReadPipePackets
|
|
|
|
// TODO: OpGroupReserveWritePipePackets
|
|
|
|
// TODO: OpGroupCommitReadPipe
|
|
|
|
// TODO: OpGroupCommitWritePipe
|
2015-08-31 19:24:32 +00:00
|
|
|
|
|
|
|
} // anonymous namespace
|