SPIRV-Tools/test/text_to_binary.reserved_sampling_test.cpp
Lei Zhang 1ef6b19260 Migrate to use unified grammar tables
Previously we keep a separate static grammar table for opcodes/
operands per SPIR-V version. This commit changes that to use a
single unified static grammar table for opcodes/operands.

This essentially changes how grammar facts are queried against
a certain target environment. There are only limited filtering
according to the desired target environment; a symbol is
considered as available as long as:

1. The target environment satisfies the minimal requirement of
   the symbol; or
2. There is at least one extension enabling this symbol.

Note that the second rule assumes the extension enabling the
symbol is indeed requested in the SPIR-V code; checking that
should be the validator's work.

Also fixed a few grammar related issues:
* Rounding mode capability requirements are moved to client APIs.
* Reserved symbols not available in any extension is no longer
  recognized by assembler.
2018-03-17 15:25:26 -04:00

58 lines
1.9 KiB
C++

// Copyright (c) 2017 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Validation tests for illegal instructions
#include "unit_spirv.h"
#include "gmock/gmock.h"
#include "test_fixture.h"
namespace {
using ::testing::Eq;
using ReservedSamplingInstTest = spvtest::TextToBinaryTest;
TEST_F(ReservedSamplingInstTest, OpImageSparseSampleProjImplicitLod) {
const std::string input = "OpImageSparseSampleProjImplicitLod %1 %2 %3\n";
EXPECT_THAT(CompileFailure(input),
Eq("Invalid Opcode name 'OpImageSparseSampleProjImplicitLod'"));
}
TEST_F(ReservedSamplingInstTest, OpImageSparseSampleProjExplicitLod) {
const std::string input =
"OpImageSparseSampleProjExplicitLod %1 %2 %3 Lod %4\n";
EXPECT_THAT(CompileFailure(input),
Eq("Invalid Opcode name 'OpImageSparseSampleProjExplicitLod'"));
}
TEST_F(ReservedSamplingInstTest, OpImageSparseSampleProjDrefImplicitLod) {
const std::string input =
"OpImageSparseSampleProjDrefImplicitLod %1 %2 %3 %4\n";
EXPECT_THAT(
CompileFailure(input),
Eq("Invalid Opcode name 'OpImageSparseSampleProjDrefImplicitLod'"));
}
TEST_F(ReservedSamplingInstTest, OpImageSparseSampleProjDrefExplicitLod) {
const std::string input =
"OpImageSparseSampleProjDrefExplicitLod %1 %2 %3 %4 Lod %5\n";
EXPECT_THAT(
CompileFailure(input),
Eq("Invalid Opcode name 'OpImageSparseSampleProjDrefExplicitLod'"));
}
} // namespace