mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-26 21:30:07 +00:00
Add texel buffer out-of-bounds checking instrumentation (#4038)
This instruments ImageRead, ImageWrite and ImageFetch when applied to texel buffers. Also add new (but not yet generated) buffer OOB error codes differentiated for VUID classification.
This commit is contained in:
parent
cf2d1e7afc
commit
7046c05d2f
@ -171,6 +171,10 @@ static const int kInstErrorBindlessBounds = 0;
|
||||
static const int kInstErrorBindlessUninit = 1;
|
||||
static const int kInstErrorBuffAddrUnallocRef = 2;
|
||||
static const int kInstErrorBindlessBuffOOB = 3;
|
||||
static const int kInstErrorBuffOOBUniform = 4;
|
||||
static const int kInstErrorBuffOOBStorage = 5;
|
||||
static const int kInstErrorBuffOOBUniformTexel = 6;
|
||||
static const int kInstErrorBuffOOBStorageTexel = 7;
|
||||
|
||||
// Direct Input Buffer Offsets
|
||||
//
|
||||
|
@ -747,12 +747,16 @@ Optimizer::PassToken CreateCombineAccessChainsPass();
|
||||
// The instrumentation will read and write buffers in debug
|
||||
// descriptor set |desc_set|. It will write |shader_id| in each output record
|
||||
// to identify the shader module which generated the record.
|
||||
// |input_length_enable| controls instrumentation of runtime descriptor array
|
||||
// references, and |input_init_enable| controls instrumentation of descriptor
|
||||
// initialization checking, both of which require input buffer support.
|
||||
// |desc_length_enable| controls instrumentation of runtime descriptor array
|
||||
// references, |desc_init_enable| controls instrumentation of descriptor
|
||||
// initialization checking, and |buff_oob_enable| controls instrumentation
|
||||
// of storage and uniform buffer bounds checking, all of which require input
|
||||
// buffer support. |texbuff_oob_enable| controls instrumentation of texel
|
||||
// buffers, which does not require input buffer support.
|
||||
Optimizer::PassToken CreateInstBindlessCheckPass(
|
||||
uint32_t desc_set, uint32_t shader_id, bool input_length_enable = false,
|
||||
bool input_init_enable = false, bool input_buff_oob_enable = false);
|
||||
uint32_t desc_set, uint32_t shader_id, bool desc_length_enable = false,
|
||||
bool desc_init_enable = false, bool buff_oob_enable = false,
|
||||
bool texbuff_oob_enable = false);
|
||||
|
||||
// Create a pass to instrument physical buffer address checking
|
||||
// This pass instruments all physical buffer address references to check that
|
||||
|
@ -23,13 +23,17 @@ static const int kSpvImageSampleImageIdInIdx = 0;
|
||||
static const int kSpvSampledImageImageIdInIdx = 0;
|
||||
static const int kSpvSampledImageSamplerIdInIdx = 1;
|
||||
static const int kSpvImageSampledImageIdInIdx = 0;
|
||||
static const int kSpvCopyObjectOperandIdInIdx = 0;
|
||||
static const int kSpvLoadPtrIdInIdx = 0;
|
||||
static const int kSpvAccessChainBaseIdInIdx = 0;
|
||||
static const int kSpvAccessChainIndex0IdInIdx = 1;
|
||||
static const int kSpvTypeArrayLengthIdInIdx = 1;
|
||||
static const int kSpvConstantValueInIdx = 0;
|
||||
static const int kSpvVariableStorageClassInIdx = 0;
|
||||
|
||||
static const int kSpvTypeImageDim = 1;
|
||||
static const int kSpvTypeImageDepth = 2;
|
||||
static const int kSpvTypeImageArrayed = 3;
|
||||
static const int kSpvTypeImageMS = 4;
|
||||
} // anonymous namespace
|
||||
|
||||
// Avoid unused variable warning/error on Linux
|
||||
@ -75,42 +79,51 @@ uint32_t InstBindlessCheckPass::GenDebugReadInit(uint32_t var_id,
|
||||
}
|
||||
}
|
||||
|
||||
uint32_t InstBindlessCheckPass::CloneOriginalImage(
|
||||
uint32_t old_image_id, InstructionBuilder* builder) {
|
||||
Instruction* new_image_inst;
|
||||
Instruction* old_image_inst = get_def_use_mgr()->GetDef(old_image_id);
|
||||
if (old_image_inst->opcode() == SpvOpLoad) {
|
||||
new_image_inst = builder->AddLoad(
|
||||
old_image_inst->type_id(),
|
||||
old_image_inst->GetSingleWordInOperand(kSpvLoadPtrIdInIdx));
|
||||
} else if (old_image_inst->opcode() == SpvOp::SpvOpSampledImage) {
|
||||
uint32_t clone_id = CloneOriginalImage(
|
||||
old_image_inst->GetSingleWordInOperand(kSpvSampledImageImageIdInIdx),
|
||||
builder);
|
||||
new_image_inst = builder->AddBinaryOp(
|
||||
old_image_inst->type_id(), SpvOpSampledImage, clone_id,
|
||||
old_image_inst->GetSingleWordInOperand(kSpvSampledImageSamplerIdInIdx));
|
||||
} else if (old_image_inst->opcode() == SpvOp::SpvOpImage) {
|
||||
uint32_t clone_id = CloneOriginalImage(
|
||||
old_image_inst->GetSingleWordInOperand(kSpvImageSampledImageIdInIdx),
|
||||
builder);
|
||||
new_image_inst =
|
||||
builder->AddUnaryOp(old_image_inst->type_id(), SpvOpImage, clone_id);
|
||||
} else {
|
||||
assert(old_image_inst->opcode() == SpvOp::SpvOpCopyObject &&
|
||||
"expecting OpCopyObject");
|
||||
uint32_t clone_id = CloneOriginalImage(
|
||||
old_image_inst->GetSingleWordInOperand(kSpvCopyObjectOperandIdInIdx),
|
||||
builder);
|
||||
// Since we are cloning, no need to create new copy
|
||||
new_image_inst = get_def_use_mgr()->GetDef(clone_id);
|
||||
}
|
||||
uid2offset_[new_image_inst->unique_id()] =
|
||||
uid2offset_[old_image_inst->unique_id()];
|
||||
uint32_t new_image_id = new_image_inst->result_id();
|
||||
get_decoration_mgr()->CloneDecorations(old_image_id, new_image_id);
|
||||
return new_image_id;
|
||||
}
|
||||
|
||||
uint32_t InstBindlessCheckPass::CloneOriginalReference(
|
||||
ref_analysis* ref, InstructionBuilder* builder) {
|
||||
// If original is image based, start by cloning descriptor load
|
||||
uint32_t new_image_id = 0;
|
||||
if (ref->desc_load_id != 0) {
|
||||
Instruction* desc_load_inst = get_def_use_mgr()->GetDef(ref->desc_load_id);
|
||||
Instruction* new_load_inst = builder->AddLoad(
|
||||
desc_load_inst->type_id(),
|
||||
desc_load_inst->GetSingleWordInOperand(kSpvLoadPtrIdInIdx));
|
||||
uid2offset_[new_load_inst->unique_id()] =
|
||||
uid2offset_[desc_load_inst->unique_id()];
|
||||
uint32_t new_load_id = new_load_inst->result_id();
|
||||
get_decoration_mgr()->CloneDecorations(desc_load_inst->result_id(),
|
||||
new_load_id);
|
||||
new_image_id = new_load_id;
|
||||
// Clone Image/SampledImage with new load, if needed
|
||||
if (ref->image_id != 0) {
|
||||
Instruction* image_inst = get_def_use_mgr()->GetDef(ref->image_id);
|
||||
if (image_inst->opcode() == SpvOp::SpvOpSampledImage) {
|
||||
Instruction* new_image_inst = builder->AddBinaryOp(
|
||||
image_inst->type_id(), SpvOpSampledImage, new_load_id,
|
||||
image_inst->GetSingleWordInOperand(kSpvSampledImageSamplerIdInIdx));
|
||||
uid2offset_[new_image_inst->unique_id()] =
|
||||
uid2offset_[image_inst->unique_id()];
|
||||
new_image_id = new_image_inst->result_id();
|
||||
} else {
|
||||
assert(image_inst->opcode() == SpvOp::SpvOpImage &&
|
||||
"expecting OpImage");
|
||||
Instruction* new_image_inst =
|
||||
builder->AddUnaryOp(image_inst->type_id(), SpvOpImage, new_load_id);
|
||||
uid2offset_[new_image_inst->unique_id()] =
|
||||
uid2offset_[image_inst->unique_id()];
|
||||
new_image_id = new_image_inst->result_id();
|
||||
}
|
||||
get_decoration_mgr()->CloneDecorations(ref->image_id, new_image_id);
|
||||
}
|
||||
uint32_t old_image_id =
|
||||
ref->ref_inst->GetSingleWordInOperand(kSpvImageSampleImageIdInIdx);
|
||||
new_image_id = CloneOriginalImage(old_image_id, builder);
|
||||
}
|
||||
// Clone original reference
|
||||
std::unique_ptr<Instruction> new_ref_inst(ref->ref_inst->Clone(context()));
|
||||
@ -220,25 +233,28 @@ bool InstBindlessCheckPass::AnalyzeDescriptorReference(Instruction* ref_inst,
|
||||
// Reference is not load or store. If not an image-based reference, return.
|
||||
ref->image_id = GetImageId(ref_inst);
|
||||
if (ref->image_id == 0) return false;
|
||||
Instruction* image_inst = get_def_use_mgr()->GetDef(ref->image_id);
|
||||
Instruction* desc_load_inst = nullptr;
|
||||
if (image_inst->opcode() == SpvOp::SpvOpSampledImage) {
|
||||
ref->desc_load_id =
|
||||
image_inst->GetSingleWordInOperand(kSpvSampledImageImageIdInIdx);
|
||||
desc_load_inst = get_def_use_mgr()->GetDef(ref->desc_load_id);
|
||||
} else if (image_inst->opcode() == SpvOp::SpvOpImage) {
|
||||
ref->desc_load_id =
|
||||
image_inst->GetSingleWordInOperand(kSpvImageSampledImageIdInIdx);
|
||||
desc_load_inst = get_def_use_mgr()->GetDef(ref->desc_load_id);
|
||||
} else {
|
||||
ref->desc_load_id = ref->image_id;
|
||||
desc_load_inst = image_inst;
|
||||
ref->image_id = 0;
|
||||
// Search for descriptor load
|
||||
uint32_t desc_load_id = ref->image_id;
|
||||
Instruction* desc_load_inst;
|
||||
for (;;) {
|
||||
desc_load_inst = get_def_use_mgr()->GetDef(desc_load_id);
|
||||
if (desc_load_inst->opcode() == SpvOp::SpvOpSampledImage)
|
||||
desc_load_id =
|
||||
desc_load_inst->GetSingleWordInOperand(kSpvSampledImageImageIdInIdx);
|
||||
else if (desc_load_inst->opcode() == SpvOp::SpvOpImage)
|
||||
desc_load_id =
|
||||
desc_load_inst->GetSingleWordInOperand(kSpvImageSampledImageIdInIdx);
|
||||
else if (desc_load_inst->opcode() == SpvOp::SpvOpCopyObject)
|
||||
desc_load_id =
|
||||
desc_load_inst->GetSingleWordInOperand(kSpvCopyObjectOperandIdInIdx);
|
||||
else
|
||||
break;
|
||||
}
|
||||
if (desc_load_inst->opcode() != SpvOp::SpvOpLoad) {
|
||||
// TODO(greg-lunarg): Handle additional possibilities?
|
||||
return false;
|
||||
}
|
||||
ref->desc_load_id = desc_load_id;
|
||||
ref->ptr_id = desc_load_inst->GetSingleWordInOperand(kSpvLoadPtrIdInIdx);
|
||||
Instruction* ptr_inst = get_def_use_mgr()->GetDef(ref->ptr_id);
|
||||
if (ptr_inst->opcode() == SpvOp::SpvOpVariable) {
|
||||
@ -508,7 +524,7 @@ void InstBindlessCheckPass::GenCheckCode(
|
||||
GenDebugStreamWrite(uid2offset_[ref->ref_inst->unique_id()], stage_idx,
|
||||
{error_id, u_index_id, u_offset_id, u_length_id},
|
||||
&builder);
|
||||
} else if (buffer_bounds_enabled_) {
|
||||
} else if (buffer_bounds_enabled_ || texel_buffer_enabled_) {
|
||||
// Uninitialized Descriptor - Return additional unused zero so all error
|
||||
// modes will use same debug stream write function
|
||||
uint32_t u_length_id = GenUintCastCode(length_id, &builder);
|
||||
@ -661,12 +677,77 @@ void InstBindlessCheckPass::GenDescInitCheckCode(
|
||||
MovePostludeCode(ref_block_itr, back_blk_ptr);
|
||||
}
|
||||
|
||||
void InstBindlessCheckPass::GenTexBuffCheckCode(
|
||||
BasicBlock::iterator ref_inst_itr,
|
||||
UptrVectorIterator<BasicBlock> ref_block_itr, uint32_t stage_idx,
|
||||
std::vector<std::unique_ptr<BasicBlock>>* new_blocks) {
|
||||
// Only process OpImageRead and OpImageWrite with no optional operands
|
||||
Instruction* ref_inst = &*ref_inst_itr;
|
||||
SpvOp op = ref_inst->opcode();
|
||||
uint32_t num_in_oprnds = ref_inst->NumInOperands();
|
||||
if (!((op == SpvOpImageRead && num_in_oprnds == 2) ||
|
||||
(op == SpvOpImageFetch && num_in_oprnds == 2) ||
|
||||
(op == SpvOpImageWrite && num_in_oprnds == 3)))
|
||||
return;
|
||||
// Pull components from descriptor reference
|
||||
ref_analysis ref;
|
||||
if (!AnalyzeDescriptorReference(ref_inst, &ref)) return;
|
||||
// Only process if image is texel buffer
|
||||
Instruction* image_inst = get_def_use_mgr()->GetDef(ref.image_id);
|
||||
uint32_t image_ty_id = image_inst->type_id();
|
||||
Instruction* image_ty_inst = get_def_use_mgr()->GetDef(image_ty_id);
|
||||
if (image_ty_inst->GetSingleWordInOperand(kSpvTypeImageDim) != SpvDimBuffer)
|
||||
return;
|
||||
if (image_ty_inst->GetSingleWordInOperand(kSpvTypeImageDepth) != 0) return;
|
||||
if (image_ty_inst->GetSingleWordInOperand(kSpvTypeImageArrayed) != 0) return;
|
||||
if (image_ty_inst->GetSingleWordInOperand(kSpvTypeImageMS) != 0) return;
|
||||
// Enable ImageQuery Capability if not yet enabled
|
||||
if (!get_feature_mgr()->HasCapability(SpvCapabilityImageQuery)) {
|
||||
std::unique_ptr<Instruction> cap_image_query_inst(new Instruction(
|
||||
context(), SpvOpCapability, 0, 0,
|
||||
std::initializer_list<Operand>{
|
||||
{SPV_OPERAND_TYPE_CAPABILITY, {SpvCapabilityImageQuery}}}));
|
||||
get_def_use_mgr()->AnalyzeInstDefUse(&*cap_image_query_inst);
|
||||
context()->AddCapability(std::move(cap_image_query_inst));
|
||||
}
|
||||
// Move original block's preceding instructions into first new block
|
||||
std::unique_ptr<BasicBlock> new_blk_ptr;
|
||||
MovePreludeCode(ref_inst_itr, ref_block_itr, &new_blk_ptr);
|
||||
InstructionBuilder builder(
|
||||
context(), &*new_blk_ptr,
|
||||
IRContext::kAnalysisDefUse | IRContext::kAnalysisInstrToBlockMapping);
|
||||
new_blocks->push_back(std::move(new_blk_ptr));
|
||||
// Get texel coordinate
|
||||
uint32_t coord_id =
|
||||
GenUintCastCode(ref_inst->GetSingleWordInOperand(1), &builder);
|
||||
// If index id not yet set, binding is single descriptor, so set index to
|
||||
// constant 0.
|
||||
if (ref.desc_idx_id == 0) ref.desc_idx_id = builder.GetUintConstantId(0u);
|
||||
// Get texel buffer size.
|
||||
Instruction* size_inst =
|
||||
builder.AddUnaryOp(GetUintId(), SpvOpImageQuerySize, ref.image_id);
|
||||
uint32_t size_id = size_inst->result_id();
|
||||
// Generate runtime initialization/bounds test code with true branch
|
||||
// being full reference and false branch being debug output and zero
|
||||
// for the referenced value.
|
||||
Instruction* ult_inst =
|
||||
builder.AddBinaryOp(GetBoolId(), SpvOpULessThan, coord_id, size_id);
|
||||
uint32_t error_id = builder.GetUintConstantId(kInstErrorBindlessBuffOOB);
|
||||
GenCheckCode(ult_inst->result_id(), error_id, coord_id, size_id, stage_idx,
|
||||
&ref, new_blocks);
|
||||
// Move original block's remaining code into remainder/merge block and add
|
||||
// to new blocks
|
||||
BasicBlock* back_blk_ptr = &*new_blocks->back();
|
||||
MovePostludeCode(ref_block_itr, back_blk_ptr);
|
||||
}
|
||||
|
||||
void InstBindlessCheckPass::InitializeInstBindlessCheck() {
|
||||
// Initialize base class
|
||||
InitializeInstrument();
|
||||
// If runtime array length support enabled, create variable mappings. Length
|
||||
// support is always enabled if descriptor init check is enabled.
|
||||
if (desc_idx_enabled_ || buffer_bounds_enabled_)
|
||||
// If runtime array length support or buffer bounds checking are enabled,
|
||||
// create variable mappings. Length support is always enabled if descriptor
|
||||
// init check is enabled.
|
||||
if (desc_idx_enabled_ || buffer_bounds_enabled_ || texel_buffer_enabled_)
|
||||
for (auto& anno : get_module()->annotations())
|
||||
if (anno.opcode() == SpvOpDecorate) {
|
||||
if (anno.GetSingleWordInOperand(1u) == SpvDecorationDescriptorSet)
|
||||
@ -689,8 +770,8 @@ Pass::Status InstBindlessCheckPass::ProcessImpl() {
|
||||
};
|
||||
bool modified = InstProcessEntryPointCallTree(pfn);
|
||||
if (desc_init_enabled_ || buffer_bounds_enabled_) {
|
||||
// Perform descriptor initialization check on each entry point function in
|
||||
// module
|
||||
// Perform descriptor initialization and/or buffer bounds check on each
|
||||
// entry point function in module
|
||||
pfn = [this](BasicBlock::iterator ref_inst_itr,
|
||||
UptrVectorIterator<BasicBlock> ref_block_itr,
|
||||
uint32_t stage_idx,
|
||||
@ -700,6 +781,18 @@ Pass::Status InstBindlessCheckPass::ProcessImpl() {
|
||||
};
|
||||
modified |= InstProcessEntryPointCallTree(pfn);
|
||||
}
|
||||
if (texel_buffer_enabled_) {
|
||||
// Perform texel buffer bounds check on each entry point function in
|
||||
// module. Generate after descriptor bounds and initialization checks.
|
||||
pfn = [this](BasicBlock::iterator ref_inst_itr,
|
||||
UptrVectorIterator<BasicBlock> ref_block_itr,
|
||||
uint32_t stage_idx,
|
||||
std::vector<std::unique_ptr<BasicBlock>>* new_blocks) {
|
||||
return GenTexBuffCheckCode(ref_inst_itr, ref_block_itr, stage_idx,
|
||||
new_blocks);
|
||||
};
|
||||
modified |= InstProcessEntryPointCallTree(pfn);
|
||||
}
|
||||
return modified ? Status::SuccessWithChange : Status::SuccessWithoutChange;
|
||||
}
|
||||
|
||||
|
@ -28,24 +28,16 @@ namespace opt {
|
||||
// external design may change as the layer evolves.
|
||||
class InstBindlessCheckPass : public InstrumentPass {
|
||||
public:
|
||||
// Old interface to support testing pre-buffer-overrun capability
|
||||
InstBindlessCheckPass(uint32_t desc_set, uint32_t shader_id,
|
||||
bool desc_idx_enable, bool desc_init_enable)
|
||||
: InstrumentPass(desc_set, shader_id, kInstValidationIdBindless, false),
|
||||
desc_idx_enabled_(desc_idx_enable),
|
||||
desc_init_enabled_(desc_init_enable),
|
||||
buffer_bounds_enabled_(false) {}
|
||||
|
||||
// New interface supporting buffer overrun checking
|
||||
InstBindlessCheckPass(uint32_t desc_set, uint32_t shader_id,
|
||||
bool desc_idx_enable, bool desc_init_enable,
|
||||
bool buffer_bounds_enable)
|
||||
: InstrumentPass(
|
||||
desc_set, shader_id, kInstValidationIdBindless,
|
||||
desc_idx_enable || desc_init_enable || buffer_bounds_enable),
|
||||
bool buffer_bounds_enable, bool texel_buffer_enable,
|
||||
bool opt_direct_reads)
|
||||
: InstrumentPass(desc_set, shader_id, kInstValidationIdBindless,
|
||||
opt_direct_reads),
|
||||
desc_idx_enabled_(desc_idx_enable),
|
||||
desc_init_enabled_(desc_init_enable),
|
||||
buffer_bounds_enabled_(buffer_bounds_enable) {}
|
||||
buffer_bounds_enabled_(buffer_bounds_enable),
|
||||
texel_buffer_enabled_(texel_buffer_enable) {}
|
||||
|
||||
~InstBindlessCheckPass() override = default;
|
||||
|
||||
@ -63,6 +55,10 @@ class InstBindlessCheckPass : public InstrumentPass {
|
||||
// checks that the referenced descriptor has been initialized, if the
|
||||
// SPV_EXT_descriptor_indexing extension is enabled, and initialized large
|
||||
// enough to handle the reference, if RobustBufferAccess is disabled.
|
||||
// GenDescInitCheckCode checks for uniform and storage buffer overrun.
|
||||
// GenTexBuffCheckCode checks for texel buffer overrun and should be
|
||||
// run after GenDescInitCheckCode to first make sure that the descriptor
|
||||
// is initialized because it uses OpImageQuerySize on the descriptor.
|
||||
//
|
||||
// The functions are designed to be passed to
|
||||
// InstrumentPass::InstProcessEntryPointCallTree(), which applies the
|
||||
@ -109,6 +105,11 @@ class InstBindlessCheckPass : public InstrumentPass {
|
||||
UptrVectorIterator<BasicBlock> ref_block_itr, uint32_t stage_idx,
|
||||
std::vector<std::unique_ptr<BasicBlock>>* new_blocks);
|
||||
|
||||
void GenTexBuffCheckCode(
|
||||
BasicBlock::iterator ref_inst_itr,
|
||||
UptrVectorIterator<BasicBlock> ref_block_itr, uint32_t stage_idx,
|
||||
std::vector<std::unique_ptr<BasicBlock>>* new_blocks);
|
||||
|
||||
// Generate instructions into |builder| to read length of runtime descriptor
|
||||
// array |var_id| from debug input buffer and return id of value.
|
||||
uint32_t GenDebugReadLength(uint32_t var_id, InstructionBuilder* builder);
|
||||
@ -144,6 +145,10 @@ class InstBindlessCheckPass : public InstrumentPass {
|
||||
// Generate index of last byte referenced by buffer reference |ref|
|
||||
uint32_t GenLastByteIdx(ref_analysis* ref, InstructionBuilder* builder);
|
||||
|
||||
// Clone original image computation starting at |image_id| into |builder|.
|
||||
// This may generate more than one instruction if neccessary.
|
||||
uint32_t CloneOriginalImage(uint32_t image_id, InstructionBuilder* builder);
|
||||
|
||||
// Clone original original reference encapsulated by |ref| into |builder|.
|
||||
// This may generate more than one instruction if neccessary.
|
||||
uint32_t CloneOriginalReference(ref_analysis* ref,
|
||||
@ -184,9 +189,12 @@ class InstBindlessCheckPass : public InstrumentPass {
|
||||
// Enable instrumentation of descriptor initialization checking
|
||||
bool desc_init_enabled_;
|
||||
|
||||
// Enable instrumentation of buffer overrun checking
|
||||
// Enable instrumentation of uniform and storage buffer overrun checking
|
||||
bool buffer_bounds_enabled_;
|
||||
|
||||
// Enable instrumentation of texel buffer overrun checking
|
||||
bool texel_buffer_enabled_;
|
||||
|
||||
// Mapping from variable to descriptor set
|
||||
std::unordered_map<uint32_t, uint32_t> var2desc_set_;
|
||||
|
||||
|
@ -425,7 +425,7 @@ bool Optimizer::RegisterPassFromFlag(const std::string& flag) {
|
||||
RegisterPass(CreateBlockMergePass());
|
||||
RegisterPass(CreateAggressiveDCEPass());
|
||||
} else if (pass_name == "inst-buff-oob-check") {
|
||||
RegisterPass(CreateInstBindlessCheckPass(7, 23, false, false, true));
|
||||
RegisterPass(CreateInstBindlessCheckPass(7, 23, false, false, true, true));
|
||||
RegisterPass(CreateSimplificationPass());
|
||||
RegisterPass(CreateDeadBranchElimPass());
|
||||
RegisterPass(CreateBlockMergePass());
|
||||
@ -892,15 +892,14 @@ Optimizer::PassToken CreateUpgradeMemoryModelPass() {
|
||||
MakeUnique<opt::UpgradeMemoryModel>());
|
||||
}
|
||||
|
||||
Optimizer::PassToken CreateInstBindlessCheckPass(uint32_t desc_set,
|
||||
uint32_t shader_id,
|
||||
bool input_length_enable,
|
||||
bool input_init_enable,
|
||||
bool input_buff_oob_enable) {
|
||||
Optimizer::PassToken CreateInstBindlessCheckPass(
|
||||
uint32_t desc_set, uint32_t shader_id, bool desc_length_enable,
|
||||
bool desc_init_enable, bool buff_oob_enable, bool texbuff_oob_enable) {
|
||||
return MakeUnique<Optimizer::PassToken::Impl>(
|
||||
MakeUnique<opt::InstBindlessCheckPass>(
|
||||
desc_set, shader_id, input_length_enable, input_init_enable,
|
||||
input_buff_oob_enable));
|
||||
desc_set, shader_id, desc_length_enable, desc_init_enable,
|
||||
buff_oob_enable, texbuff_oob_enable,
|
||||
desc_length_enable || desc_init_enable || buff_oob_enable));
|
||||
}
|
||||
|
||||
Optimizer::PassToken CreateInstDebugPrintfPass(uint32_t desc_set,
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user