Add support for SPIRV reading to BUILD.gn

BUG=dawn:16

Change-Id: I1da30fed82a310007674801e3b1e853b25d5b573
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/19640
Reviewed-by: dan sinclair <dsinclair@google.com>
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
This commit is contained in:
Ryan Harrison 2020-04-15 20:35:38 +00:00
parent ac3213b4ad
commit d1cf8a8ba5
4 changed files with 111 additions and 7 deletions

View File

@ -13,16 +13,30 @@
# limitations under the License. # limitations under the License.
import("//build_overrides/build.gni") import("//build_overrides/build.gni")
import("//build_overrides/tint.gni") import("tint_overrides_with_defaults.gni")
config("tint_common_config") { config("tint_common_config") {
cflags = [] cflags = []
ldflags = [] ldflags = []
include_dirs = [] include_dirs = []
defines = [] defines = []
if (tint_build_spv_reader) {
defines += [ "TINT_BUILD_SPV_READER=1" ]
} else {
defines += [ "TINT_BUILD_SPV_READER=0" ]
}
} }
source_set("libtint") { # libtint source sets are divided into a non-optional core in :libtint_core and
# optional :libtint_* subsets, because ninja does not like having multiple source
# files with the same name, like function.cc, in the same source set target.
#
# Targets that want to use tint as a library should depend on ":libtint" and use
# the build flags to control what is included, instead of trying to specify the
# subsets that they want.
source_set("libtint_core") {
sources = [ sources = [
"src/ast/array_accessor_expression.cc", "src/ast/array_accessor_expression.cc",
"src/ast/array_accessor_expression.h", "src/ast/array_accessor_expression.h",
@ -192,6 +206,58 @@ source_set("libtint") {
} }
} }
config("tint_spv_reader_config") {
include_dirs = [
"${tint_spirv_tools_dir}/",
"${tint_spirv_tools_dir}/include",
"${target_gen_dir}/${tint_spirv_tools_gen}",
]
}
source_set("libtint_spv_reader") {
sources = [
"src/reader/spirv/enum_converter.cc",
"src/reader/spirv/enum_converter.h",
"src/reader/spirv/fail_stream.h",
"src/reader/spirv/function.cc",
"src/reader/spirv/function.h",
"src/reader/spirv/namer.cc",
"src/reader/spirv/namer.h",
"src/reader/spirv/parser.cc",
"src/reader/spirv/parser.h",
"src/reader/spirv/parser_impl.cc",
"src/reader/spirv/parser_impl.h",
]
deps = [
"${tint_spirv_headers_dir}/:spv_headers",
"${tint_spirv_tools_dir}/:spvtools_opt",
"${tint_spirv_tools_dir}/:spvtools_val",
]
configs += [ ":tint_common_config" ]
configs += [ ":tint_spv_reader_config" ]
if (build_with_chromium) {
configs -= [ "//build/config/compiler:chromium_code" ]
configs += [ "//build/config/compiler:no_chromium_code" ]
}
}
source_set("libtint") {
deps = [ ":libtint_core" ]
if (tint_build_spv_reader) {
deps += [ ":libtint_spv_reader" ]
}
configs += [ ":tint_common_config" ]
if (build_with_chromium) {
configs -= [ "//build/config/compiler:chromium_code" ]
configs += [ "//build/config/compiler:no_chromium_code" ]
}
}
executable("tint") { executable("tint") {
sources = [ "samples/main.cc" ] sources = [ "samples/main.cc" ]
deps = [ ":libtint" ] deps = [ ":libtint" ]

View File

@ -0,0 +1,20 @@
# Copyright 2020 The Tint Authors
#
# 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.
# We are building inside Tint
spirv_tools_standalone = false
# Paths to SPIRV-Tools dependencies in Tint
spirv_tools_googletest_dir = "//third_party/googletest"
spirv_tools_spirv_headers_dir = "//third_party/spirv-headers"

View File

@ -806,7 +806,7 @@ std::unique_ptr<ast::Expression> ParserImpl::MakeConstantExpression(
return std::make_unique<ast::ScalarConstructorExpression>( return std::make_unique<ast::ScalarConstructorExpression>(
std::make_unique<ast::BoolLiteral>(ast_type, value)); std::make_unique<ast::BoolLiteral>(ast_type, value));
} }
auto spirv_composite_const = spirv_const->AsCompositeConstant(); auto* spirv_composite_const = spirv_const->AsCompositeConstant();
if (spirv_composite_const != nullptr) { if (spirv_composite_const != nullptr) {
// Handle vector, matrix, array, and struct // Handle vector, matrix, array, and struct

View File

@ -17,13 +17,31 @@ import("//build_overrides/tint.gni")
# This file contains Tint-related build flags. # This file contains Tint-related build flags.
declare_args() { declare_args() {
# Path to spirv-tools checkout
if (!defined(tint_spirv_tools_dir)) {
tint_spirv_tools_dir = "//third_party/spirv-tools"
}
# Path to spirv-tools generated files, relative to |target_gen_dir|
if (!defined(tint_spirv_tools_gen)) {
tint_spirv_tools_gen = "third_party/spirv-tools"
}
# Path to spirv-headers checkout
if (!defined(tint_spirv_headers_dir)) {
tint_spirv_headers_dir = "//third_party/spirv-headers"
}
# Generate documentation # Generate documentation
# TODO(rharrison): Implement documentation support # TODO(rharrison): Implement documentation support
tint_build_doc = false tint_build_doc = false
# Generate SPIR-V input parser # Build the SPIR-V input reader
# TODO(rharrison): Implement SPIR-V input parser support if (!defined(tint_build_spv_reader)) {
tint_build_spv_parser = false tint_build_spv_reader = false
}
# TODO(rharrison): Implement support for the reset of the reader/writers
# Generate fuzzers # Generate fuzzers
# TODO(rharrison): Implement fuzzer support # TODO(rharrison): Implement fuzzer support