mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-12-13 12:10:09 +00:00
2ea4003633
* opt: split composite from array flattening DXC has an option to flatten resource arrays. But when this option is not used, the resource arrays should be kept as-is. On the other hand, when a struct contains resources, we MUST flatten is to be compliant with the Vulkan spec. Because this pass flattens both types of resources, using a struct of resources automatically implied flattening arrays. By adding those 2 new settings, we decide if the pass flattens only one type of resources, or both. Note: the flatten_arrays flag only impacts resource arrays. Arrays of composites containing resources are still flattened. Since the API is considered stable, I added 2 new functions to create passes with one flag or the other, and kept the original behavior as-is. Related to https://github.com/microsoft/DirectXShaderCompiler/issues/6745 Signed-off-by: Nathan Gauër <brioche@google.com> * add commandline options Signed-off-by: Nathan Gauër <brioche@google.com> * clang-format Signed-off-by: Nathan Gauër <brioche@google.com> --------- Signed-off-by: Nathan Gauër <brioche@google.com>
59 lines
2.2 KiB
C++
59 lines
2.2 KiB
C++
// Copyright (c) 2021 Google LLC
|
|
//
|
|
// 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 SOURCE_OPT_DESC_SROA_UTIL_H_
|
|
#define SOURCE_OPT_DESC_SROA_UTIL_H_
|
|
|
|
#include "source/opt/ir_context.h"
|
|
|
|
namespace spvtools {
|
|
namespace opt {
|
|
|
|
// Provides functions for the descriptor array SROA.
|
|
namespace descsroautil {
|
|
|
|
// Returns true if |var| is an OpVariable instruction that represents a
|
|
// descriptor array.
|
|
bool IsDescriptorArray(IRContext* context, Instruction* var);
|
|
|
|
// Returns true if |var| is an OpVariable instruction that represents a
|
|
// struct containing descriptors.
|
|
bool IsDescriptorStruct(IRContext* context, Instruction* var);
|
|
|
|
// Returns true if |type| is a type that could be used for a structured buffer
|
|
// as opposed to a type that would be used for a structure of resource
|
|
// descriptors.
|
|
bool IsTypeOfStructuredBuffer(IRContext* context, const Instruction* type);
|
|
|
|
// Returns the first index of the OpAccessChain instruction |access_chain| as
|
|
// a constant. Returns nullptr if it is not a constant.
|
|
const analysis::Constant* GetAccessChainIndexAsConst(IRContext* context,
|
|
Instruction* access_chain);
|
|
|
|
// Returns the number of elements of an OpVariable instruction |var| whose type
|
|
// must be a pointer to an array or a struct.
|
|
uint32_t GetNumberOfElementsForArrayOrStruct(IRContext* context,
|
|
Instruction* var);
|
|
|
|
// Returns the first Indexes operand id of the OpAccessChain or
|
|
// OpInBoundsAccessChain instruction |access_chain|. The access chain must have
|
|
// at least 1 index.
|
|
uint32_t GetFirstIndexOfAccessChain(Instruction* access_chain);
|
|
|
|
} // namespace descsroautil
|
|
} // namespace opt
|
|
} // namespace spvtools
|
|
|
|
#endif // SOURCE_OPT_DESC_SROA_UTIL_H_
|