Run formatter

TBR=dneto@google.com

Change-Id: Idccbc5eeec6d763cdacd8d050bb396a0c897c7ca
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/19400
Reviewed-by: dan sinclair <dsinclair@google.com>
This commit is contained in:
dan sinclair 2020-04-12 19:47:16 +00:00 committed by dan sinclair
parent fa3944c3dd
commit b39dabd0cd
3 changed files with 40 additions and 54 deletions

View File

@ -12,12 +12,11 @@
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
#include "src/reader/spirv/function.h"
#include <string> #include <string>
#include <vector> #include <vector>
#include "gmock/gmock.h" #include "gmock/gmock.h"
#include "src/reader/spirv/function.h"
#include "src/reader/spirv/parser_impl.h" #include "src/reader/spirv/parser_impl.h"
#include "src/reader/spirv/parser_impl_test_helper.h" #include "src/reader/spirv/parser_impl_test_helper.h"
#include "src/reader/spirv/spirv_tools_helpers_test.h" #include "src/reader/spirv/spirv_tools_helpers_test.h"
@ -137,50 +136,38 @@ TEST_P(SpvBinaryTest, EmitExpression) {
<< "\n " << GetParam().ast_rhs; << "\n " << GetParam().ast_rhs;
EXPECT_THAT(ToString(fe.ast_body()), HasSubstr(ss.str())) << assembly; EXPECT_THAT(ToString(fe.ast_body()), HasSubstr(ss.str())) << assembly;
} }
INSTANTIATE_TEST_SUITE_P(SpvParserTest, INSTANTIATE_TEST_SUITE_P(
SpvParserTest,
SpvBinaryTest, SpvBinaryTest,
::testing::Values( ::testing::Values(
// Both uint // Both uint
BinaryData{ BinaryData{"uint", "uint_10", "OpIAdd", "uint_20", "__u32",
"uint", "uint_10", "OpIAdd", "uint_20", "__u32", "ScalarConstructor{10}", "add", "ScalarConstructor{20}"},
"ScalarConstructor{10}", "add",
"ScalarConstructor{20}"},
// Both int // Both int
BinaryData{ BinaryData{"int", "int_30", "OpIAdd", "int_40", "__i32",
"int", "int_30", "OpIAdd", "int_40", "__i32", "ScalarConstructor{30}", "add", "ScalarConstructor{40}"},
"ScalarConstructor{30}", "add",
"ScalarConstructor{40}"},
// Mixed, returning uint // Mixed, returning uint
BinaryData{ BinaryData{"uint", "int_30", "OpIAdd", "uint_10", "__u32",
"uint", "int_30", "OpIAdd", "uint_10", "__u32", "ScalarConstructor{30}", "add", "ScalarConstructor{10}"},
"ScalarConstructor{30}", "add",
"ScalarConstructor{10}"},
// Mixed, returning int // Mixed, returning int
BinaryData{ BinaryData{"int", "int_30", "OpIAdd", "uint_10", "__i32",
"int", "int_30", "OpIAdd", "uint_10", "__i32", "ScalarConstructor{30}", "add", "ScalarConstructor{10}"},
"ScalarConstructor{30}", "add",
"ScalarConstructor{10}"},
// Both v2uint // Both v2uint
BinaryData{ BinaryData{"v2uint", "v2uint_10_20", "OpIAdd", "v2uint_20_10",
"v2uint", "v2uint_10_20", "OpIAdd", "v2uint_20_10", "__vec_2__u32", "__vec_2__u32", AstFor("v2uint_10_20"), "add",
AstFor("v2uint_10_20"), "add",
AstFor("v2uint_20_10")}, AstFor("v2uint_20_10")},
// Both v2int // Both v2int
BinaryData{ BinaryData{"v2int", "v2int_30_40", "OpIAdd", "v2int_40_30",
"v2int", "v2int_30_40", "OpIAdd", "v2int_40_30", "__vec_2__i32", "__vec_2__i32", AstFor("v2int_30_40"), "add",
AstFor("v2int_30_40"), "add",
AstFor("v2int_40_30")}, AstFor("v2int_40_30")},
// Mixed, returning v2uint // Mixed, returning v2uint
BinaryData{ BinaryData{"v2uint", "v2int_30_40", "OpIAdd", "v2uint_10_20",
"v2uint", "v2int_30_40", "OpIAdd", "v2uint_10_20", "__vec_2__u32", "__vec_2__u32", AstFor("v2int_30_40"), "add",
AstFor("v2int_30_40"), "add",
AstFor("v2uint_10_20")}, AstFor("v2uint_10_20")},
// Mixed, returning v2int // Mixed, returning v2int
BinaryData{ BinaryData{"v2int", "v2int_40_30", "OpIAdd", "v2uint_20_10",
"v2int", "v2int_40_30", "OpIAdd", "v2uint_20_10", "__vec_2__i32", "__vec_2__i32", AstFor("v2int_40_30"), "add",
AstFor("v2int_40_30"), "add", AstFor("v2uint_20_10")}));
AstFor("v2uint_20_10")}
));
} // namespace } // namespace
} // namespace spirv } // namespace spirv

View File

@ -12,12 +12,11 @@
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
#include "src/reader/spirv/function.h"
#include <string> #include <string>
#include <vector> #include <vector>
#include "gmock/gmock.h" #include "gmock/gmock.h"
#include "src/reader/spirv/function.h"
#include "src/reader/spirv/parser_impl.h" #include "src/reader/spirv/parser_impl.h"
#include "src/reader/spirv/parser_impl_test_helper.h" #include "src/reader/spirv/parser_impl_test_helper.h"
#include "src/reader/spirv/spirv_tools_helpers_test.h" #include "src/reader/spirv/spirv_tools_helpers_test.h"

View File

@ -15,20 +15,20 @@
#include <memory> #include <memory>
#include "gtest/gtest.h" #include "gtest/gtest.h"
#include "src/ast/binary_expression.h"
#include "src/ast/float_literal.h" #include "src/ast/float_literal.h"
#include "src/ast/identifier_expression.h" #include "src/ast/identifier_expression.h"
#include "src/ast/int_literal.h"
#include "src/ast/scalar_constructor_expression.h" #include "src/ast/scalar_constructor_expression.h"
#include "src/ast/type/i32_type.h"
#include "src/ast/type/f32_type.h" #include "src/ast/type/f32_type.h"
#include "src/context.h" #include "src/ast/type/i32_type.h"
#include "src/type_determiner.h"
#include "src/ast/type/vector_type.h" #include "src/ast/type/vector_type.h"
#include "src/ast/type_constructor_expression.h" #include "src/ast/type_constructor_expression.h"
#include "src/ast/variable.h" #include "src/ast/variable.h"
#include "src/ast/int_literal.h" #include "src/context.h"
#include "src/type_determiner.h"
#include "src/writer/spirv/builder.h" #include "src/writer/spirv/builder.h"
#include "src/writer/spirv/spv_dump.h" #include "src/writer/spirv/spv_dump.h"
#include "src/ast/binary_expression.h"
namespace tint { namespace tint {
namespace writer { namespace writer {