mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-12-25 01:01:04 +00:00
d02f68ae79
Updated readme. Note: The header advertises itself as Rev 1, but contains many (all?) the updates intended for Rev 2. We might need to update one more time before SPIR-V 1.0 Rev2 is published. Regenerated syntax tables for 1.0. Changed names: InputTriangles -> Triangles InputQuads -> Quads InputIsolines -> Isolines WorkgroupLocal -> Workgroup WorkgroupGlobal -> CrossWorkgroup PrivateGlobal -> Private (Dim) InputTarget -> SubpassData WorkgroupLocalMemoryMask -> WorkgroupMemoryMask WorkgroupGlobalMemoryMask -> CrossWorkgroupMemoryMask AsyncGroupCopy -> GroupAsyncCopy WaitGroupEvents -> GroupWaitEvents Remove: IndependentForwardProgress capability Smooth decoration FragColor BuiltIn WorkgroupLinearId in favour of LocalInvocationId ImageSRGBWrite capability Special OpenCL image instructions Add: image channel data type UnormInt101010_2 AcquireReleaseMask InputTargetIndex updates: InputTargetIndex -> InputAttachmentIndex InputAttachmentIndex depends on InputAttachment capability, and it takes a literal number argument. Capability StorageImageExtendedFormats updates: Enum value changed from 26 to 49. (Changes position in tables). Replaces AdvancedImageFormat capability. OpenCL source language -> OpenCL_C, OpenCL_CPP
90 lines
3.1 KiB
C++
90 lines
3.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.
|
|
|
|
// Assembler tests for instructions in the "Barrier Instructions" section
|
|
// of the SPIR-V spec.
|
|
|
|
#include "UnitSPIRV.h"
|
|
|
|
#include "gmock/gmock.h"
|
|
#include "TestFixture.h"
|
|
|
|
namespace {
|
|
|
|
using spvtest::MakeInstruction;
|
|
using spvtest::TextToBinaryTest;
|
|
using ::testing::Eq;
|
|
|
|
// Test OpMemoryBarrier
|
|
|
|
using OpMemoryBarrier = spvtest::TextToBinaryTest;
|
|
|
|
TEST_F(OpMemoryBarrier, Good) {
|
|
const std::string input = "OpMemoryBarrier %1 %2\n";
|
|
EXPECT_THAT(CompiledInstructions(input),
|
|
Eq(MakeInstruction(SpvOpMemoryBarrier, {1, 2})));
|
|
EXPECT_THAT(EncodeAndDecodeSuccessfully(input), Eq(input));
|
|
}
|
|
|
|
TEST_F(OpMemoryBarrier, BadMissingScopeId) {
|
|
const std::string input = "OpMemoryBarrier\n";
|
|
EXPECT_THAT(CompileFailure(input),
|
|
Eq("Expected operand, found end of stream."));
|
|
}
|
|
|
|
TEST_F(OpMemoryBarrier, BadInvalidScopeId) {
|
|
const std::string input = "OpMemoryBarrier 99\n";
|
|
EXPECT_THAT(CompileFailure(input), Eq("Expected id to start with %."));
|
|
}
|
|
|
|
TEST_F(OpMemoryBarrier, BadMissingMemorySemanticsId) {
|
|
const std::string input = "OpMemoryBarrier %scope\n";
|
|
EXPECT_THAT(CompileFailure(input),
|
|
Eq("Expected operand, found end of stream."));
|
|
}
|
|
|
|
TEST_F(OpMemoryBarrier, BadInvalidMemorySemanticsId) {
|
|
const std::string input = "OpMemoryBarrier %scope 14\n";
|
|
EXPECT_THAT(CompileFailure(input), Eq("Expected id to start with %."));
|
|
}
|
|
|
|
// TODO(dneto): OpControlBarrier
|
|
// TODO(dneto): OpGroupAsyncCopy
|
|
// TODO(dneto): OpGroupWaitEvents
|
|
// TODO(dneto): OpGroupAll
|
|
// TODO(dneto): OpGroupAny
|
|
// TODO(dneto): OpGroupBroadcast
|
|
// TODO(dneto): OpGroupIAdd
|
|
// TODO(dneto): OpGroupFAdd
|
|
// TODO(dneto): OpGroupFMin
|
|
// TODO(dneto): OpGroupUMin
|
|
// TODO(dneto): OpGroupSMin
|
|
// TODO(dneto): OpGroupFMax
|
|
// TODO(dneto): OpGroupUMax
|
|
// TODO(dneto): OpGroupSMax
|
|
|
|
} // anonymous namespace
|