mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-05 22:23:29 +00:00
This CL updates the SPIR-V Reader to create BlockStatements instead of StatementLists. Bug: tint:136 Change-Id: I957019446ca00306187de701f86ae3e0dd5c5eb8 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/25740 Reviewed-by: Sarah Mashayekhi <sarahmashay@google.com>
86 lines
2.5 KiB
C++
86 lines
2.5 KiB
C++
// 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.
|
|
|
|
#ifndef SRC_READER_SPIRV_PARSER_IMPL_TEST_HELPER_H_
|
|
#define SRC_READER_SPIRV_PARSER_IMPL_TEST_HELPER_H_
|
|
|
|
#include <memory>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "gtest/gtest.h"
|
|
#include "source/opt/ir_context.h"
|
|
#include "src/context.h"
|
|
#include "src/reader/spirv/parser_impl.h"
|
|
|
|
namespace tint {
|
|
namespace reader {
|
|
namespace spirv {
|
|
|
|
/// SPIR-V Parser test class
|
|
template <typename T>
|
|
class SpvParserTestBase : public T {
|
|
public:
|
|
SpvParserTestBase() = default;
|
|
~SpvParserTestBase() override = default;
|
|
|
|
/// Sets up the test helper
|
|
void SetUp() override { ctx_.Reset(); }
|
|
|
|
/// Tears down the test helper
|
|
void TearDown() override { impl_ = nullptr; }
|
|
|
|
/// Retrieves the parser from the helper
|
|
/// @param input the SPIR-V binary to parse
|
|
/// @returns a parser for the given binary
|
|
ParserImpl* parser(const std::vector<uint32_t>& input) {
|
|
impl_ = std::make_unique<ParserImpl>(&ctx_, input);
|
|
return impl_.get();
|
|
}
|
|
|
|
/// Gets the internal representation of the function with the given ID.
|
|
/// Assumes ParserImpl::BuildInternalRepresentation has been run and
|
|
/// succeeded.
|
|
/// @param id the SPIR-V ID of the function
|
|
/// @returns the internal representation of the function
|
|
spvtools::opt::Function* spirv_function(uint32_t id) {
|
|
return impl_->ir_context()->GetFunction(id);
|
|
}
|
|
|
|
private:
|
|
std::unique_ptr<ParserImpl> impl_;
|
|
Context ctx_;
|
|
};
|
|
|
|
// Use this form when you don't need to template any further.
|
|
using SpvParserTest = SpvParserTestBase<::testing::Test>;
|
|
|
|
/// Returns the string dump of a function body.
|
|
/// @param body the statement in the body
|
|
/// @returnss the string dump of a function body.
|
|
inline std::string ToString(const ast::BlockStatement* body) {
|
|
std::ostringstream outs;
|
|
for (const auto& stmt : *body) {
|
|
stmt->to_str(outs, 0);
|
|
}
|
|
return outs.str();
|
|
}
|
|
|
|
} // namespace spirv
|
|
} // namespace reader
|
|
} // namespace tint
|
|
|
|
#endif // SRC_READER_SPIRV_PARSER_IMPL_TEST_HELPER_H_
|