mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-27 13:50:07 +00:00
537e77663d
We need to know how to generate correct SPIRV for cases like OpConstant %int64 42 since the current parser will encode the 42 as a 32-bit value incorrectly. This change is the first of a pair. This one tracks types, and makes sure that OpConstant and OpSpecConstant are only ever called with Integer or Float types, and OpSwitch is only called with integer generating values.
195 lines
8.1 KiB
C++
195 lines
8.1 KiB
C++
// Copyright (c) 2015 The Khronos Group Inc.
|
|
//
|
|
// 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.
|
|
|
|
#include "TestFixture.h"
|
|
|
|
namespace {
|
|
|
|
using spvtest::TextToBinaryTest;
|
|
|
|
TEST_F(TextToBinaryTest, EncodeAAFTextAsAAF) {
|
|
SetText("%2 = OpTypeMatrix %1 1000");
|
|
EXPECT_EQ(SPV_SUCCESS,
|
|
spvTextWithFormatToBinary(
|
|
text.str, text.length, SPV_ASSEMBLY_SYNTAX_FORMAT_ASSIGNMENT,
|
|
opcodeTable, operandTable, extInstTable, &binary, &diagnostic));
|
|
if (diagnostic) {
|
|
spvDiagnosticPrint(diagnostic);
|
|
}
|
|
}
|
|
|
|
TEST_F(TextToBinaryTest, EncodeAAFTextAsCAF) {
|
|
SetText("%2 = OpTypeMatrix %1 1000");
|
|
EXPECT_EQ(SPV_ERROR_INVALID_TEXT,
|
|
spvTextWithFormatToBinary(
|
|
text.str, text.length, SPV_ASSEMBLY_SYNTAX_FORMAT_CANONICAL,
|
|
opcodeTable, operandTable, extInstTable, &binary, &diagnostic));
|
|
ASSERT_NE(nullptr, diagnostic);
|
|
EXPECT_STREQ(
|
|
"Expected <opcode> at the beginning of an instruction, found '%2'.",
|
|
diagnostic->error);
|
|
EXPECT_EQ(0, diagnostic->position.line);
|
|
}
|
|
|
|
TEST_F(TextToBinaryTest, EncodeCAFTextAsCAF) {
|
|
SetText("OpTypeMatrix %1 %2 1000");
|
|
EXPECT_EQ(SPV_SUCCESS,
|
|
spvTextWithFormatToBinary(
|
|
text.str, text.length, SPV_ASSEMBLY_SYNTAX_FORMAT_CANONICAL,
|
|
opcodeTable, operandTable, extInstTable, &binary, &diagnostic));
|
|
if (diagnostic) {
|
|
spvDiagnosticPrint(diagnostic);
|
|
}
|
|
}
|
|
|
|
TEST_F(TextToBinaryTest, EncodeCAFTextAsAAF) {
|
|
SetText("OpTypeMatrix %1 %2 1000");
|
|
EXPECT_EQ(SPV_ERROR_INVALID_TEXT,
|
|
spvTextWithFormatToBinary(
|
|
text.str, text.length, SPV_ASSEMBLY_SYNTAX_FORMAT_ASSIGNMENT,
|
|
opcodeTable, operandTable, extInstTable, &binary, &diagnostic));
|
|
ASSERT_NE(nullptr, diagnostic);
|
|
EXPECT_STREQ(
|
|
"Expected <result-id> at the beginning of an instruction, found "
|
|
"'OpTypeMatrix'.",
|
|
diagnostic->error);
|
|
EXPECT_EQ(0, diagnostic->position.line);
|
|
}
|
|
|
|
TEST_F(TextToBinaryTest, EncodeMixedTextAsAAF) {
|
|
SetText("OpTypeMatrix %1 %2 1000\n%3 = OpTypeMatrix %1 2000");
|
|
EXPECT_EQ(SPV_ERROR_INVALID_TEXT,
|
|
spvTextWithFormatToBinary(
|
|
text.str, text.length, SPV_ASSEMBLY_SYNTAX_FORMAT_ASSIGNMENT,
|
|
opcodeTable, operandTable, extInstTable, &binary, &diagnostic));
|
|
ASSERT_NE(nullptr, diagnostic);
|
|
EXPECT_STREQ(
|
|
"Expected <result-id> at the beginning of an instruction, found "
|
|
"'OpTypeMatrix'.",
|
|
diagnostic->error);
|
|
EXPECT_EQ(0, diagnostic->position.line);
|
|
}
|
|
|
|
TEST_F(TextToBinaryTest, EncodeMixedTextAsCAF) {
|
|
SetText("OpTypeMatrix %1 %2 1000\n%3 = OpTypeMatrix %1 2000");
|
|
EXPECT_EQ(SPV_ERROR_INVALID_TEXT,
|
|
spvTextWithFormatToBinary(
|
|
text.str, text.length, SPV_ASSEMBLY_SYNTAX_FORMAT_CANONICAL,
|
|
opcodeTable, operandTable, extInstTable, &binary, &diagnostic));
|
|
ASSERT_NE(nullptr, diagnostic);
|
|
EXPECT_STREQ(
|
|
"Expected <opcode> at the beginning of an instruction, found '%3'.",
|
|
diagnostic->error);
|
|
EXPECT_EQ(1, diagnostic->position.line);
|
|
}
|
|
|
|
const char* kBound4Preamble =
|
|
"; SPIR-V\n; Version: 99\n; Generator: Khronos\n; Bound: 4\n; Schema: 0\n";
|
|
|
|
TEST_F(TextToBinaryTest, DecodeAAFAsAAF) {
|
|
const std::string assembly =
|
|
"%1 = OpTypeMatrix %2 1000\n%3 = OpTypeMatrix %2 2000\n";
|
|
SetText(assembly);
|
|
EXPECT_EQ(SPV_SUCCESS,
|
|
spvTextWithFormatToBinary(
|
|
text.str, text.length, SPV_ASSEMBLY_SYNTAX_FORMAT_ASSIGNMENT,
|
|
opcodeTable, operandTable, extInstTable, &binary, &diagnostic));
|
|
spv_text decoded_text;
|
|
EXPECT_EQ(SPV_SUCCESS,
|
|
spvBinaryToTextWithFormat(binary->code, binary->wordCount,
|
|
SPV_BINARY_TO_TEXT_OPTION_NONE,
|
|
opcodeTable, operandTable, extInstTable,
|
|
SPV_ASSEMBLY_SYNTAX_FORMAT_ASSIGNMENT,
|
|
&decoded_text, &diagnostic));
|
|
EXPECT_EQ(kBound4Preamble + assembly, decoded_text->str);
|
|
spvTextDestroy(decoded_text);
|
|
}
|
|
|
|
TEST_F(TextToBinaryTest, DecodeAAFAsCAF) {
|
|
const std::string assembly =
|
|
"%1 = OpTypeMatrix %2 1000\n%3 = OpTypeMatrix %2 2000\n";
|
|
SetText(assembly);
|
|
EXPECT_EQ(SPV_SUCCESS,
|
|
spvTextWithFormatToBinary(
|
|
text.str, text.length, SPV_ASSEMBLY_SYNTAX_FORMAT_ASSIGNMENT,
|
|
opcodeTable, operandTable, extInstTable, &binary, &diagnostic));
|
|
spv_text decoded_text;
|
|
EXPECT_EQ(SPV_SUCCESS,
|
|
spvBinaryToTextWithFormat(binary->code, binary->wordCount,
|
|
SPV_BINARY_TO_TEXT_OPTION_NONE,
|
|
opcodeTable, operandTable, extInstTable,
|
|
SPV_ASSEMBLY_SYNTAX_FORMAT_CANONICAL,
|
|
&decoded_text, &diagnostic));
|
|
EXPECT_EQ(std::string(kBound4Preamble) +
|
|
"OpTypeMatrix %1 %2 1000\nOpTypeMatrix %3 %2 2000\n",
|
|
decoded_text->str);
|
|
spvTextDestroy(decoded_text);
|
|
}
|
|
|
|
TEST_F(TextToBinaryTest, DecodeCAFAsAAF) {
|
|
const std::string assembly =
|
|
"OpTypeMatrix %1 %2 1000\nOpTypeMatrix %3 %2 2000\n";
|
|
SetText(assembly);
|
|
EXPECT_EQ(SPV_SUCCESS,
|
|
spvTextWithFormatToBinary(
|
|
text.str, text.length, SPV_ASSEMBLY_SYNTAX_FORMAT_CANONICAL,
|
|
opcodeTable, operandTable, extInstTable, &binary, &diagnostic));
|
|
spv_text decoded_text;
|
|
EXPECT_EQ(SPV_SUCCESS,
|
|
spvBinaryToTextWithFormat(binary->code, binary->wordCount,
|
|
SPV_BINARY_TO_TEXT_OPTION_NONE,
|
|
opcodeTable, operandTable, extInstTable,
|
|
SPV_ASSEMBLY_SYNTAX_FORMAT_ASSIGNMENT,
|
|
&decoded_text, &diagnostic));
|
|
EXPECT_EQ(std::string(kBound4Preamble) +
|
|
"%1 = OpTypeMatrix %2 1000\n%3 = OpTypeMatrix %2 2000\n",
|
|
decoded_text->str);
|
|
spvTextDestroy(decoded_text);
|
|
}
|
|
|
|
TEST_F(TextToBinaryTest, DecodeCAFAsCAF) {
|
|
const std::string assembly =
|
|
"OpTypeMatrix %1 %2 1000\nOpTypeMatrix %3 %2 2000\n";
|
|
SetText(assembly);
|
|
EXPECT_EQ(SPV_SUCCESS,
|
|
spvTextWithFormatToBinary(
|
|
text.str, text.length, SPV_ASSEMBLY_SYNTAX_FORMAT_CANONICAL,
|
|
opcodeTable, operandTable, extInstTable, &binary, &diagnostic));
|
|
spv_text decoded_text;
|
|
EXPECT_EQ(SPV_SUCCESS,
|
|
spvBinaryToTextWithFormat(binary->code, binary->wordCount,
|
|
SPV_BINARY_TO_TEXT_OPTION_NONE,
|
|
opcodeTable, operandTable, extInstTable,
|
|
SPV_ASSEMBLY_SYNTAX_FORMAT_CANONICAL,
|
|
&decoded_text, &diagnostic));
|
|
EXPECT_EQ(std::string(kBound4Preamble) +
|
|
"OpTypeMatrix %1 %2 1000\nOpTypeMatrix %3 %2 2000\n",
|
|
decoded_text->str);
|
|
spvTextDestroy(decoded_text);
|
|
}
|
|
|
|
} // anonymous namespace
|