mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-08 06:05:55 +00:00
[spirv-writer] Generate pointer types
This CL adds the type generation for OpTypePointer. Bug: tint:5 Change-Id: I9cfe6c4fbd9173df925421f278abd1afbda50fc9 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/17840 Reviewed-by: David Neto <dneto@google.com>
This commit is contained in:
parent
083def41c0
commit
20145170fc
@ -24,6 +24,7 @@
|
|||||||
#include "src/ast/struct_member_offset_decoration.h"
|
#include "src/ast/struct_member_offset_decoration.h"
|
||||||
#include "src/ast/type/array_type.h"
|
#include "src/ast/type/array_type.h"
|
||||||
#include "src/ast/type/matrix_type.h"
|
#include "src/ast/type/matrix_type.h"
|
||||||
|
#include "src/ast/type/pointer_type.h"
|
||||||
#include "src/ast/type/struct_type.h"
|
#include "src/ast/type/struct_type.h"
|
||||||
#include "src/ast/type/u32_type.h"
|
#include "src/ast/type/u32_type.h"
|
||||||
#include "src/ast/type/vector_type.h"
|
#include "src/ast/type/vector_type.h"
|
||||||
@ -282,6 +283,10 @@ uint32_t Builder::GenerateTypeIfNeeded(ast::type::Type* type) {
|
|||||||
if (!GenerateMatrixType(type->AsMatrix(), result)) {
|
if (!GenerateMatrixType(type->AsMatrix(), result)) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
} else if (type->IsPointer()) {
|
||||||
|
if (!GeneratePointerType(type->AsPointer(), result)) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
} else if (type->IsStruct()) {
|
} else if (type->IsStruct()) {
|
||||||
if (!GenerateStructType(type->AsStruct(), result)) {
|
if (!GenerateStructType(type->AsStruct(), result)) {
|
||||||
return 0;
|
return 0;
|
||||||
@ -339,6 +344,24 @@ bool Builder::GenerateMatrixType(ast::type::MatrixType* mat,
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool Builder::GeneratePointerType(ast::type::PointerType* ptr,
|
||||||
|
const Operand& result) {
|
||||||
|
auto pointee_id = GenerateTypeIfNeeded(ptr->type());
|
||||||
|
if (pointee_id == 0) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
auto stg_class = ConvertStorageClass(ptr->storage_class());
|
||||||
|
if (stg_class == SpvStorageClassMax) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
push_type(spv::Op::OpTypePointer,
|
||||||
|
{result, Operand::Int(stg_class), Operand::Int(pointee_id)});
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
bool Builder::GenerateStructType(ast::type::StructType* struct_type,
|
bool Builder::GenerateStructType(ast::type::StructType* struct_type,
|
||||||
const Operand& result) {
|
const Operand& result) {
|
||||||
auto struct_id = result.to_i();
|
auto struct_id = result.to_i();
|
||||||
@ -409,6 +432,34 @@ bool Builder::GenerateVectorType(ast::type::VectorType* vec,
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SpvStorageClass Builder::ConvertStorageClass(ast::StorageClass klass) const {
|
||||||
|
switch (klass) {
|
||||||
|
case ast::StorageClass::kInput:
|
||||||
|
return SpvStorageClassInput;
|
||||||
|
case ast::StorageClass::kOutput:
|
||||||
|
return SpvStorageClassOutput;
|
||||||
|
case ast::StorageClass::kUniform:
|
||||||
|
return SpvStorageClassUniform;
|
||||||
|
case ast::StorageClass::kWorkgroup:
|
||||||
|
return SpvStorageClassWorkgroup;
|
||||||
|
case ast::StorageClass::kUniformConstant:
|
||||||
|
return SpvStorageClassUniformConstant;
|
||||||
|
case ast::StorageClass::kStorageBuffer:
|
||||||
|
return SpvStorageClassStorageBuffer;
|
||||||
|
case ast::StorageClass::kImage:
|
||||||
|
return SpvStorageClassImage;
|
||||||
|
case ast::StorageClass::kPushConstant:
|
||||||
|
return SpvStorageClassPushConstant;
|
||||||
|
case ast::StorageClass::kPrivate:
|
||||||
|
return SpvStorageClassPrivate;
|
||||||
|
case ast::StorageClass::kFunction:
|
||||||
|
return SpvStorageClassFunction;
|
||||||
|
case ast::StorageClass::kNone:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return SpvStorageClassMax;
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace spirv
|
} // namespace spirv
|
||||||
} // namespace writer
|
} // namespace writer
|
||||||
} // namespace tint
|
} // namespace tint
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
#include "spirv/unified1/spirv.h"
|
||||||
#include "src/ast/literal.h"
|
#include "src/ast/literal.h"
|
||||||
#include "src/ast/module.h"
|
#include "src/ast/module.h"
|
||||||
#include "src/ast/struct_member.h"
|
#include "src/ast/struct_member.h"
|
||||||
@ -122,6 +123,11 @@ class Builder {
|
|||||||
/// @returns the annotations
|
/// @returns the annotations
|
||||||
const std::vector<Instruction>& annots() const { return annotations_; }
|
const std::vector<Instruction>& annots() const { return annotations_; }
|
||||||
|
|
||||||
|
/// Converts a storage class to a SPIR-V storage class.
|
||||||
|
/// @param klass the storage class to convert
|
||||||
|
/// @returns the SPIR-V storage class or SpvStorageClassMax on error.
|
||||||
|
SpvStorageClass ConvertStorageClass(ast::StorageClass klass) const;
|
||||||
|
|
||||||
/// Generates an entry point instruction
|
/// Generates an entry point instruction
|
||||||
/// @param ep the entry point
|
/// @param ep the entry point
|
||||||
/// @returns true if the instruction was generated, false otherwise
|
/// @returns true if the instruction was generated, false otherwise
|
||||||
@ -155,6 +161,11 @@ class Builder {
|
|||||||
/// @param result the result operand
|
/// @param result the result operand
|
||||||
/// @returns true if the matrix was successfully generated
|
/// @returns true if the matrix was successfully generated
|
||||||
bool GenerateMatrixType(ast::type::MatrixType* mat, const Operand& result);
|
bool GenerateMatrixType(ast::type::MatrixType* mat, const Operand& result);
|
||||||
|
/// Generates a pointer type declaration
|
||||||
|
/// @param ptr the pointer type to generate
|
||||||
|
/// @param result the result operand
|
||||||
|
/// @returns true if the pointer was successfully generated
|
||||||
|
bool GeneratePointerType(ast::type::PointerType* ptr, const Operand& result);
|
||||||
/// Generates a vector type declaration
|
/// Generates a vector type declaration
|
||||||
/// @param struct_type the vector to generate
|
/// @param struct_type the vector to generate
|
||||||
/// @param result the result operand
|
/// @param result the result operand
|
||||||
|
@ -236,6 +236,29 @@ TEST_F(BuilderTest_Type, ReturnsGeneratedMatrix) {
|
|||||||
ASSERT_FALSE(b.has_error()) << b.error();
|
ASSERT_FALSE(b.has_error()) << b.error();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST_F(BuilderTest_Type, GeneratePtr) {
|
||||||
|
ast::type::I32Type i32;
|
||||||
|
ast::type::PointerType ptr(&i32, ast::StorageClass::kOutput);
|
||||||
|
|
||||||
|
Builder b;
|
||||||
|
auto id = b.GenerateTypeIfNeeded(&ptr);
|
||||||
|
ASSERT_FALSE(b.has_error()) << b.error();
|
||||||
|
EXPECT_EQ(1, id);
|
||||||
|
|
||||||
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%2 = OpTypeInt 32 1
|
||||||
|
%1 = OpTypePointer Output %2
|
||||||
|
)");
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST_F(BuilderTest_Type, ReturnsGeneratedPtr) {
|
||||||
|
ast::type::I32Type i32;
|
||||||
|
ast::type::PointerType ptr(&i32, ast::StorageClass::kOutput);
|
||||||
|
|
||||||
|
Builder b;
|
||||||
|
EXPECT_EQ(b.GenerateTypeIfNeeded(&ptr), 1);
|
||||||
|
EXPECT_EQ(b.GenerateTypeIfNeeded(&ptr), 1);
|
||||||
|
}
|
||||||
|
|
||||||
TEST_F(BuilderTest_Type, GenerateStruct_Empty) {
|
TEST_F(BuilderTest_Type, GenerateStruct_Empty) {
|
||||||
auto s = std::make_unique<ast::Struct>();
|
auto s = std::make_unique<ast::Struct>();
|
||||||
ast::type::StructType s_type(std::move(s));
|
ast::type::StructType s_type(std::move(s));
|
||||||
@ -419,6 +442,39 @@ TEST_F(BuilderTest_Type, ReturnsGeneratedVoid) {
|
|||||||
ASSERT_FALSE(b.has_error()) << b.error();
|
ASSERT_FALSE(b.has_error()) << b.error();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct PtrData {
|
||||||
|
ast::StorageClass ast_class;
|
||||||
|
SpvStorageClass result;
|
||||||
|
};
|
||||||
|
inline std::ostream& operator<<(std::ostream& out, PtrData data) {
|
||||||
|
out << data.ast_class;
|
||||||
|
return out;
|
||||||
|
}
|
||||||
|
using PtrDataTest = testing::TestWithParam<PtrData>;
|
||||||
|
TEST_P(PtrDataTest, ConvertStorageClass) {
|
||||||
|
auto params = GetParam();
|
||||||
|
|
||||||
|
Builder b;
|
||||||
|
EXPECT_EQ(b.ConvertStorageClass(params.ast_class), params.result);
|
||||||
|
}
|
||||||
|
INSTANTIATE_TEST_SUITE_P(
|
||||||
|
BuilderTest_Type,
|
||||||
|
PtrDataTest,
|
||||||
|
testing::Values(
|
||||||
|
PtrData{ast::StorageClass::kNone, SpvStorageClassMax},
|
||||||
|
PtrData{ast::StorageClass::kInput, SpvStorageClassInput},
|
||||||
|
PtrData{ast::StorageClass::kOutput, SpvStorageClassOutput},
|
||||||
|
PtrData{ast::StorageClass::kUniform, SpvStorageClassUniform},
|
||||||
|
PtrData{ast::StorageClass::kWorkgroup, SpvStorageClassWorkgroup},
|
||||||
|
PtrData{ast::StorageClass::kUniformConstant,
|
||||||
|
SpvStorageClassUniformConstant},
|
||||||
|
PtrData{ast::StorageClass::kStorageBuffer,
|
||||||
|
SpvStorageClassStorageBuffer},
|
||||||
|
PtrData{ast::StorageClass::kImage, SpvStorageClassImage},
|
||||||
|
PtrData{ast::StorageClass::kPushConstant, SpvStorageClassPushConstant},
|
||||||
|
PtrData{ast::StorageClass::kPrivate, SpvStorageClassPrivate},
|
||||||
|
PtrData{ast::StorageClass::kFunction, SpvStorageClassFunction}));
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
} // namespace spirv
|
} // namespace spirv
|
||||||
} // namespace writer
|
} // namespace writer
|
||||||
|
Loading…
x
Reference in New Issue
Block a user