2016-05-16 16:50:30 +00:00
|
|
|
//
|
|
|
|
// Copyright (C) 2016 Google, Inc.
|
2016-05-26 16:10:16 +00:00
|
|
|
// Copyright (C) 2016 LunarG, Inc.
|
2016-05-16 16:50:30 +00:00
|
|
|
//
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions
|
|
|
|
// are met:
|
|
|
|
//
|
|
|
|
// Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
//
|
|
|
|
// Redistributions in binary form must reproduce the above
|
|
|
|
// copyright notice, this list of conditions and the following
|
|
|
|
// disclaimer in the documentation and/or other materials provided
|
|
|
|
// with the distribution.
|
|
|
|
//
|
|
|
|
// Neither the name of Google Inc. nor the names of its
|
|
|
|
// contributors may be used to endorse or promote products derived
|
|
|
|
// from this software without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
// COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
|
|
|
#include "TestFixture.h"
|
|
|
|
|
|
|
|
namespace glslangtest {
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
struct FileNameEntryPointPair {
|
|
|
|
const char* fileName;
|
|
|
|
const char* entryPoint;
|
|
|
|
};
|
|
|
|
|
|
|
|
// We are using FileNameEntryPointPair objects as parameters for instantiating
|
|
|
|
// the template, so the global FileNameAsCustomTestSuffix() won't work since
|
|
|
|
// it assumes std::string as parameters. Thus, an overriding one here.
|
|
|
|
std::string FileNameAsCustomTestSuffix(
|
|
|
|
const ::testing::TestParamInfo<FileNameEntryPointPair>& info) {
|
|
|
|
std::string name = info.param.fileName;
|
|
|
|
// A valid test case suffix cannot have '.' and '-' inside.
|
|
|
|
std::replace(name.begin(), name.end(), '.', '_');
|
|
|
|
std::replace(name.begin(), name.end(), '-', '_');
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
using HlslCompileTest = GlslangTest<::testing::TestWithParam<FileNameEntryPointPair>>;
|
2016-09-16 19:26:37 +00:00
|
|
|
using HlslCompileAndFlattenTest = GlslangTest<::testing::TestWithParam<FileNameEntryPointPair>>;
|
2016-05-16 16:50:30 +00:00
|
|
|
|
|
|
|
// Compiling HLSL to SPIR-V under Vulkan semantics. Expected to successfully
|
2016-05-17 20:43:05 +00:00
|
|
|
// generate both AST and SPIR-V.
|
2016-05-16 16:50:30 +00:00
|
|
|
TEST_P(HlslCompileTest, FromFile)
|
|
|
|
{
|
2016-10-05 14:25:09 +00:00
|
|
|
loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam().fileName,
|
2016-05-16 16:50:30 +00:00
|
|
|
Source::HLSL, Semantics::Vulkan,
|
|
|
|
Target::BothASTAndSpv, GetParam().entryPoint);
|
|
|
|
}
|
|
|
|
|
2016-09-16 19:26:37 +00:00
|
|
|
TEST_P(HlslCompileAndFlattenTest, FromFile)
|
|
|
|
{
|
2016-10-05 14:25:09 +00:00
|
|
|
loadFileCompileFlattenUniformsAndCheck(GlobalTestSettings.testRoot, GetParam().fileName,
|
2016-09-16 19:26:37 +00:00
|
|
|
Source::HLSL, Semantics::Vulkan,
|
|
|
|
Target::BothASTAndSpv, GetParam().entryPoint);
|
|
|
|
}
|
|
|
|
|
2016-05-16 16:50:30 +00:00
|
|
|
// clang-format off
|
|
|
|
INSTANTIATE_TEST_CASE_P(
|
|
|
|
ToSpirv, HlslCompileTest,
|
|
|
|
::testing::ValuesIn(std::vector<FileNameEntryPointPair>{
|
2016-09-30 05:58:30 +00:00
|
|
|
{"hlsl.amend.frag", "f1"},
|
2016-06-19 17:50:34 +00:00
|
|
|
{"hlsl.array.frag", "PixelShaderFunction"},
|
2016-09-27 16:57:35 +00:00
|
|
|
{"hlsl.array.implicit-size.frag", "PixelShaderFunction"},
|
2016-10-13 18:26:18 +00:00
|
|
|
{"hlsl.array.multidim.frag", "main"},
|
2016-05-16 23:39:50 +00:00
|
|
|
{"hlsl.assoc.frag", "PixelShaderFunction"},
|
2016-06-05 17:23:11 +00:00
|
|
|
{"hlsl.attribute.frag", "PixelShaderFunction"},
|
2016-11-11 15:17:44 +00:00
|
|
|
{"hlsl.attribute.expression.comp", "main"},
|
2016-10-16 18:12:11 +00:00
|
|
|
{"hlsl.basic.comp", "main"},
|
2016-11-17 22:04:20 +00:00
|
|
|
{"hlsl.basic.geom", "main"},
|
2016-07-25 22:05:33 +00:00
|
|
|
{"hlsl.buffer.frag", "PixelShaderFunction"},
|
2016-07-26 14:57:53 +00:00
|
|
|
{"hlsl.calculatelod.dx10.frag", "main"},
|
|
|
|
{"hlsl.calculatelodunclamped.dx10.frag", "main"},
|
2016-06-03 22:55:49 +00:00
|
|
|
{"hlsl.cast.frag", "PixelShaderFunction"},
|
HLSL: Enable component-wise vector comparisons from operators
This PR only changes a few lines of code, but is subtle.
In HLSL, comparison operators (<,>,<=,>=,==,!=) operate component-wise
when given a vector operand. If a whole vector equality or inequality is
desired, then all() or any() can be used on the resulting bool vector.
This PR enables this change. Existing shape conversion is used when
one of the two arguments is a vector and one is a scalar.
Some existing HLSL tests had assumed == and != meant vector-wise
instead of component-wise comparisons. These tests have been changed
to add an explicit any() or all() to the test source. This verifably
does not change the final SPIR-V binary relative to the old behavior
for == and !=. The AST does change for the (now explicit, formerly
implicit) any() and all(). Also, a few tests changes where they
previously had the return type wrong, e.g, from a vec < vec comparison
in hlsl.shapeConv.frag.
Promotion of comparison opcodes to vector forms
(EOpEqual->EOpVectorEqual) is handled in promoteBinary(), as is setting
the proper vector type of the result.
EOpVectorEqual and EOpVectorNotEqual are now accepted as either
aggregate or binary nodes, similar to how the other operators are
handled. Partial support already existed for this: it has been
fleshed out in the printing functions in intermOut.cpp.
There is an existing defect around shape conversion with 1-vectors, but
that is orthogonal to this PR and not addressed by it.
2016-10-21 22:43:38 +00:00
|
|
|
{"hlsl.comparison.vec.frag", "main"},
|
2016-07-27 16:39:57 +00:00
|
|
|
{"hlsl.conditional.frag", "PixelShaderFunction"},
|
2016-07-30 13:38:55 +00:00
|
|
|
{"hlsl.constructexpr.frag", "main"},
|
2016-09-03 02:05:19 +00:00
|
|
|
{"hlsl.depthGreater.frag", "PixelShaderFunction"},
|
|
|
|
{"hlsl.depthLess.frag", "PixelShaderFunction"},
|
2016-06-20 07:22:38 +00:00
|
|
|
{"hlsl.discard.frag", "PixelShaderFunction"},
|
2016-06-05 21:44:07 +00:00
|
|
|
{"hlsl.doLoop.frag", "PixelShaderFunction"},
|
2016-09-17 01:44:00 +00:00
|
|
|
{"hlsl.entry-in.frag", "PixelShaderFunction"},
|
2016-08-28 21:00:23 +00:00
|
|
|
{"hlsl.entry-out.frag", "PixelShaderFunction"},
|
2016-05-20 18:06:03 +00:00
|
|
|
{"hlsl.float1.frag", "PixelShaderFunction"},
|
2016-05-16 23:39:50 +00:00
|
|
|
{"hlsl.float4.frag", "PixelShaderFunction"},
|
2016-10-03 04:13:22 +00:00
|
|
|
{"hlsl.flatten.return.frag", "main"},
|
2016-06-05 21:44:07 +00:00
|
|
|
{"hlsl.forLoop.frag", "PixelShaderFunction"},
|
2016-07-22 14:28:11 +00:00
|
|
|
{"hlsl.gather.array.dx10.frag", "main"},
|
|
|
|
{"hlsl.gather.basic.dx10.frag", "main"},
|
|
|
|
{"hlsl.gather.basic.dx10.vert", "main"},
|
|
|
|
{"hlsl.gather.offset.dx10.frag", "main"},
|
|
|
|
{"hlsl.gather.offsetarray.dx10.frag", "main"},
|
2016-07-31 16:37:02 +00:00
|
|
|
{"hlsl.gatherRGBA.array.dx10.frag", "main"},
|
|
|
|
{"hlsl.gatherRGBA.basic.dx10.frag", "main"},
|
|
|
|
{"hlsl.gatherRGBA.offset.dx10.frag", "main"},
|
|
|
|
{"hlsl.gatherRGBA.offsetarray.dx10.frag", "main"},
|
2016-07-15 17:22:24 +00:00
|
|
|
{"hlsl.getdimensions.dx10.frag", "main"},
|
2016-10-04 22:58:14 +00:00
|
|
|
{"hlsl.getdimensions.rw.dx10.frag", "main"},
|
2016-07-15 17:22:24 +00:00
|
|
|
{"hlsl.getdimensions.dx10.vert", "main"},
|
2016-07-26 14:57:53 +00:00
|
|
|
{"hlsl.getsampleposition.dx10.frag", "main"},
|
2016-11-16 20:22:11 +00:00
|
|
|
{"hlsl.identifier.sample.frag", "main"},
|
2016-06-05 17:23:11 +00:00
|
|
|
{"hlsl.if.frag", "PixelShaderFunction"},
|
2016-07-13 02:44:32 +00:00
|
|
|
{"hlsl.inoutquals.frag", "main"},
|
2016-07-02 01:06:44 +00:00
|
|
|
{"hlsl.init.frag", "ShaderFunction"},
|
2016-07-30 16:36:09 +00:00
|
|
|
{"hlsl.init2.frag", "main"},
|
2016-06-15 15:50:24 +00:00
|
|
|
{"hlsl.intrinsics.barriers.comp", "ComputeShaderFunction"},
|
2016-06-13 15:22:28 +00:00
|
|
|
{"hlsl.intrinsics.comp", "ComputeShaderFunction"},
|
2016-06-15 15:50:24 +00:00
|
|
|
{"hlsl.intrinsics.evalfns.frag", "main"},
|
2016-06-22 21:20:14 +00:00
|
|
|
{"hlsl.intrinsics.double.frag", "PixelShaderFunction"},
|
2016-06-15 15:50:24 +00:00
|
|
|
{"hlsl.intrinsics.f1632.frag", "PixelShaderFunction"},
|
2016-08-24 20:36:13 +00:00
|
|
|
{"hlsl.intrinsics.frag", "main"},
|
2016-06-15 15:50:24 +00:00
|
|
|
{"hlsl.intrinsics.lit.frag", "PixelShaderFunction"},
|
2016-06-13 15:22:28 +00:00
|
|
|
{"hlsl.intrinsics.negative.comp", "ComputeShaderFunction"},
|
2016-06-03 16:53:28 +00:00
|
|
|
{"hlsl.intrinsics.negative.frag", "PixelShaderFunction"},
|
|
|
|
{"hlsl.intrinsics.negative.vert", "VertexShaderFunction"},
|
2016-08-17 16:22:08 +00:00
|
|
|
{"hlsl.layout.frag", "main"},
|
2016-07-26 21:19:28 +00:00
|
|
|
{"hlsl.load.2dms.dx10.frag", "main"},
|
2016-07-20 22:34:44 +00:00
|
|
|
{"hlsl.load.array.dx10.frag", "main"},
|
|
|
|
{"hlsl.load.basic.dx10.frag", "main"},
|
2016-07-26 21:19:28 +00:00
|
|
|
{"hlsl.load.basic.dx10.vert", "main"},
|
2016-07-27 21:46:48 +00:00
|
|
|
{"hlsl.load.buffer.dx10.frag", "main"},
|
2016-10-10 21:24:57 +00:00
|
|
|
{"hlsl.load.buffer.float.dx10.frag", "main"},
|
2016-10-04 22:58:14 +00:00
|
|
|
{"hlsl.load.rwbuffer.dx10.frag", "main"},
|
|
|
|
{"hlsl.load.rwtexture.dx10.frag", "main"},
|
|
|
|
{"hlsl.load.rwtexture.array.dx10.frag", "main"},
|
2016-07-20 22:34:44 +00:00
|
|
|
{"hlsl.load.offset.dx10.frag", "main"},
|
|
|
|
{"hlsl.load.offsetarray.dx10.frag", "main"},
|
2016-10-15 16:29:58 +00:00
|
|
|
{"hlsl.logical.unary.frag", "main"},
|
|
|
|
{"hlsl.logical.binary.frag", "main"},
|
2016-10-26 18:42:49 +00:00
|
|
|
{"hlsl.logical.binary.vec.frag", "main"},
|
2016-11-15 17:11:04 +00:00
|
|
|
{"hlsl.matNx1.frag", "main"},
|
2016-10-27 01:18:55 +00:00
|
|
|
{"hlsl.mintypes.frag", "main"},
|
2016-09-03 02:23:27 +00:00
|
|
|
{"hlsl.multiEntry.vert", "RealEntrypoint"},
|
2016-10-06 18:59:51 +00:00
|
|
|
{"hlsl.multiReturn.frag", "main"},
|
2016-08-24 20:36:13 +00:00
|
|
|
{"hlsl.matrixindex.frag", "main"},
|
2016-07-28 20:49:48 +00:00
|
|
|
{"hlsl.numericsuffixes.frag", "main"},
|
2016-10-20 19:07:10 +00:00
|
|
|
{"hlsl.numthreads.comp", "main_aux1"},
|
2016-08-25 00:34:43 +00:00
|
|
|
{"hlsl.overload.frag", "PixelShaderFunction"},
|
2016-07-23 02:46:03 +00:00
|
|
|
{"hlsl.pp.line.frag", "main"},
|
2016-08-25 05:49:36 +00:00
|
|
|
{"hlsl.precise.frag", "main"},
|
2016-10-15 16:29:58 +00:00
|
|
|
{"hlsl.promote.binary.frag", "main"},
|
2016-11-11 22:37:10 +00:00
|
|
|
{"hlsl.promote.vec1.frag", "main"},
|
2016-08-09 17:28:03 +00:00
|
|
|
{"hlsl.promotions.frag", "main"},
|
2016-10-19 16:15:25 +00:00
|
|
|
{"hlsl.rw.atomics.frag", "main"},
|
2016-10-07 02:12:24 +00:00
|
|
|
{"hlsl.rw.bracket.frag", "main"},
|
2016-11-01 16:31:42 +00:00
|
|
|
{"hlsl.rw.register.frag", "main"},
|
2016-10-10 21:24:57 +00:00
|
|
|
{"hlsl.rw.scalar.bracket.frag", "main"},
|
|
|
|
{"hlsl.rw.vec2.bracket.frag", "main"},
|
2016-07-14 20:45:14 +00:00
|
|
|
{"hlsl.sample.array.dx10.frag", "main"},
|
|
|
|
{"hlsl.sample.basic.dx10.frag", "main"},
|
|
|
|
{"hlsl.sample.offset.dx10.frag", "main"},
|
|
|
|
{"hlsl.sample.offsetarray.dx10.frag", "main"},
|
|
|
|
{"hlsl.samplebias.array.dx10.frag", "main"},
|
|
|
|
{"hlsl.samplebias.basic.dx10.frag", "main"},
|
|
|
|
{"hlsl.samplebias.offset.dx10.frag", "main"},
|
|
|
|
{"hlsl.samplebias.offsetarray.dx10.frag", "main"},
|
2016-07-19 20:28:05 +00:00
|
|
|
{"hlsl.samplecmp.array.dx10.frag", "main"},
|
|
|
|
{"hlsl.samplecmp.basic.dx10.frag", "main"},
|
|
|
|
{"hlsl.samplecmp.offset.dx10.frag", "main"},
|
|
|
|
{"hlsl.samplecmp.offsetarray.dx10.frag", "main"},
|
|
|
|
{"hlsl.samplecmplevelzero.array.dx10.frag", "main"},
|
|
|
|
{"hlsl.samplecmplevelzero.basic.dx10.frag", "main"},
|
|
|
|
{"hlsl.samplecmplevelzero.offset.dx10.frag", "main"},
|
|
|
|
{"hlsl.samplecmplevelzero.offsetarray.dx10.frag", "main"},
|
2016-07-14 20:45:14 +00:00
|
|
|
{"hlsl.samplegrad.array.dx10.frag", "main"},
|
|
|
|
{"hlsl.samplegrad.basic.dx10.frag", "main"},
|
|
|
|
{"hlsl.samplegrad.basic.dx10.vert", "main"},
|
|
|
|
{"hlsl.samplegrad.offset.dx10.frag", "main"},
|
|
|
|
{"hlsl.samplegrad.offsetarray.dx10.frag", "main"},
|
2016-07-21 21:02:16 +00:00
|
|
|
{"hlsl.samplelevel.array.dx10.frag", "main"},
|
|
|
|
{"hlsl.samplelevel.basic.dx10.frag", "main"},
|
|
|
|
{"hlsl.samplelevel.basic.dx10.vert", "main"},
|
|
|
|
{"hlsl.samplelevel.offset.dx10.frag", "main"},
|
|
|
|
{"hlsl.samplelevel.offsetarray.dx10.frag", "main"},
|
2016-10-15 16:29:58 +00:00
|
|
|
{"hlsl.sample.sub-vec4.dx10.frag", "main"},
|
2016-08-03 13:04:18 +00:00
|
|
|
{"hlsl.semicolons.frag", "main"},
|
2016-07-28 23:53:56 +00:00
|
|
|
{"hlsl.shapeConv.frag", "main"},
|
2016-10-06 22:56:54 +00:00
|
|
|
{"hlsl.shapeConvRet.frag", "main"},
|
2016-08-22 22:13:47 +00:00
|
|
|
{"hlsl.stringtoken.frag", "main"},
|
2016-09-20 02:23:18 +00:00
|
|
|
{"hlsl.string.frag", "main"},
|
2016-09-09 22:32:09 +00:00
|
|
|
{"hlsl.structin.vert", "main"},
|
2016-06-03 16:53:28 +00:00
|
|
|
{"hlsl.intrinsics.vert", "VertexShaderFunction"},
|
2016-05-20 18:17:26 +00:00
|
|
|
{"hlsl.matType.frag", "PixelShaderFunction"},
|
2016-11-15 17:11:04 +00:00
|
|
|
{"hlsl.matType.bool.frag", "main"},
|
|
|
|
{"hlsl.matType.int.frag", "main"},
|
2016-05-16 23:39:50 +00:00
|
|
|
{"hlsl.max.frag", "PixelShaderFunction"},
|
|
|
|
{"hlsl.precedence.frag", "PixelShaderFunction"},
|
|
|
|
{"hlsl.precedence2.frag", "PixelShaderFunction"},
|
2016-06-09 08:02:17 +00:00
|
|
|
{"hlsl.scope.frag", "PixelShaderFunction"},
|
2016-05-16 23:39:50 +00:00
|
|
|
{"hlsl.sin.frag", "PixelShaderFunction"},
|
2016-06-11 22:43:14 +00:00
|
|
|
{"hlsl.struct.frag", "PixelShaderFunction"},
|
2016-07-01 06:04:11 +00:00
|
|
|
{"hlsl.switch.frag", "PixelShaderFunction"},
|
2016-06-17 23:16:27 +00:00
|
|
|
{"hlsl.swizzle.frag", "PixelShaderFunction"},
|
2016-06-24 01:13:48 +00:00
|
|
|
{"hlsl.templatetypes.frag", "PixelShaderFunction"},
|
2016-10-10 16:00:14 +00:00
|
|
|
{"hlsl.tx.bracket.frag", "main"},
|
2016-07-05 06:02:40 +00:00
|
|
|
{"hlsl.typedef.frag", "PixelShaderFunction"},
|
2016-06-05 21:44:07 +00:00
|
|
|
{"hlsl.whileLoop.frag", "PixelShaderFunction"},
|
2016-06-08 18:50:56 +00:00
|
|
|
{"hlsl.void.frag", "PixelShaderFunction"},
|
2016-05-16 16:50:30 +00:00
|
|
|
}),
|
|
|
|
FileNameAsCustomTestSuffix
|
|
|
|
);
|
|
|
|
// clang-format on
|
|
|
|
|
2016-09-16 19:26:37 +00:00
|
|
|
// clang-format off
|
|
|
|
INSTANTIATE_TEST_CASE_P(
|
|
|
|
ToSpirv, HlslCompileAndFlattenTest,
|
|
|
|
::testing::ValuesIn(std::vector<FileNameEntryPointPair>{
|
|
|
|
{"hlsl.array.flatten.frag", "main"},
|
|
|
|
}),
|
|
|
|
FileNameAsCustomTestSuffix
|
|
|
|
);
|
|
|
|
|
|
|
|
// clang-format on
|
2016-05-16 16:50:30 +00:00
|
|
|
} // anonymous namespace
|
|
|
|
} // namespace glslangtest
|