1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788
|
/* Copyright (c) 2024-2025 LunarG, Inc.
*
* 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.
*/
#include "module.h"
#include <cassert>
#include <spirv/unified1/spirv.hpp>
#include "containers/custom_containers.h"
#include "generated/spirv_grammar_helper.h"
#include "gpuav/shaders/gpuav_shaders_constants.h"
#include "error_message/logging.h"
#include "error_message/log_message_type.h"
#include <iostream>
#include "generated/device_features.h"
namespace gpuav {
namespace spirv {
static constexpr uint32_t kLinkedInstruction = std::numeric_limits<uint32_t>::max();
Module::Module(vvl::span<const uint32_t> words, DebugReport* debug_report, const Settings& settings,
const DeviceFeatures& enabled_features,
const std::vector<std::vector<BindingLayout>>& set_index_to_bindings_layout_lut)
: type_manager_(*this),
settings_(settings),
enabled_features_(enabled_features),
has_bindless_descriptors_(settings.has_bindless_descriptors),
debug_report_(debug_report),
set_index_to_bindings_layout_lut_(set_index_to_bindings_layout_lut) {
uint32_t instruction_count = 0;
spirv_iterator it = words.begin();
header_.magic_number = *it++;
header_.version = *it++;
header_.generator = *it++;
header_.bound = *it++;
header_.schema = *it++;
vvl::unordered_set<uint32_t> entry_point_functions;
// Parse everything up until the first function and sort into seperate lists
while (it != words.end()) {
const uint32_t opcode = *it & 0x0ffffu;
const uint32_t length = *it >> 16;
if (opcode == spv::OpFunction) {
break;
}
auto new_inst = std::make_unique<Instruction>(it, instruction_count++);
switch (opcode) {
case spv::OpCapability:
capabilities_.emplace_back(std::move(new_inst));
break;
case spv::OpExtension:
extensions_.emplace_back(std::move(new_inst));
break;
case spv::OpExtInstImport:
ext_inst_imports_.emplace_back(std::move(new_inst));
break;
case spv::OpMemoryModel:
memory_model_.emplace_back(std::move(new_inst));
break;
case spv::OpEntryPoint:
entry_point_functions.insert(new_inst->Word(2));
entry_points_.emplace_back(std::move(new_inst));
break;
case spv::OpExecutionMode:
case spv::OpExecutionModeId:
execution_modes_.emplace_back(std::move(new_inst));
break;
case spv::OpString:
case spv::OpSourceExtension:
case spv::OpSource:
case spv::OpSourceContinued:
debug_source_.emplace_back(std::move(new_inst));
break;
case spv::OpName:
case spv::OpMemberName:
debug_name_.emplace_back(std::move(new_inst));
break;
case spv::OpModuleProcessed:
debug_module_processed_.emplace_back(std::move(new_inst));
break;
case spv::OpLine:
case spv::OpNoLine:
// OpLine must not be groupped in between other debug operations
// https://github.com/KhronosGroup/SPIRV-Tools/issues/5513
types_values_constants_.emplace_back(std::move(new_inst));
break;
case spv::OpDecorate:
case spv::OpMemberDecorate:
case spv::OpDecorationGroup:
case spv::OpGroupDecorate:
case spv::OpGroupMemberDecorate:
case spv::OpDecorateId:
case spv::OpDecorateString:
case spv::OpMemberDecorateString:
annotations_.emplace_back(std::move(new_inst));
break;
case spv::OpSpecConstantTrue:
case spv::OpSpecConstantFalse:
case spv::OpConstantTrue:
case spv::OpConstantFalse: {
const Type& type = type_manager_.GetTypeBool();
type_manager_.AddConstant(std::move(new_inst), type);
break;
}
case spv::OpSpecConstant:
case spv::OpConstant:
case spv::OpConstantNull:
case spv::OpConstantComposite: {
const Type* type = type_manager_.FindTypeById(new_inst->TypeId());
type_manager_.AddConstant(std::move(new_inst), *type);
break;
}
case spv::OpVariable: {
const Type* type = type_manager_.FindTypeById(new_inst->TypeId());
const Variable& new_var = type_manager_.AddVariable(std::move(new_inst), *type);
// While adding the global variables, detect if descriptors is bindless or not
spv::StorageClass storage_class = new_var.StorageClass();
// These are the only storage classes that interface with a descriptor
// see vkspec.html#interfaces-resources-descset
if (storage_class == spv::StorageClassUniform || storage_class == spv::StorageClassUniformConstant ||
storage_class == spv::StorageClassStorageBuffer) {
const Type* ptr_type = new_var.PointerType(type_manager_);
// The shader will also have OpCapability RuntimeDescriptorArray
if (ptr_type->spv_type_ == SpvType::kRuntimeArray) {
// TODO - This might not actually need to be marked as bindless
has_bindless_descriptors_ = true;
}
}
break;
}
default: {
SpvType spv_type = GetSpvType(new_inst->Opcode());
if (spv_type != SpvType::Empty) {
type_manager_.AddType(std::move(new_inst), spv_type);
} else {
// unknown instruction, try and just keep in last section to not just crash
// example: OpSpecConstant
types_values_constants_.emplace_back(std::move(new_inst));
}
break;
}
}
it += length;
}
// each function is broken up to 3 stage, pre/during/post basic_blocks
BasicBlock* current_block = nullptr;
Function* current_function = nullptr;
bool block_found = false;
bool function_end_found = false;
while (it != words.end()) {
const uint32_t opcode = *it & 0x0ffffu;
const uint32_t length = *it >> 16;
auto new_inst = std::make_unique<Instruction>(it, instruction_count++);
if (opcode == spv::OpFunction) {
const bool is_entry_point = entry_point_functions.find(new_inst->ResultId()) != entry_point_functions.end();
auto new_function = std::make_unique<Function>(*this, std::move(new_inst), is_entry_point);
auto& added_function = functions_.emplace_back(std::move(new_function));
current_function = &(*added_function);
block_found = false;
function_end_found = false;
it += length;
continue;
}
const uint32_t result_id = new_inst->ResultId();
if (result_id != 0) {
current_function->inst_map_[result_id] = new_inst.get();
}
if (opcode == spv::OpFunctionEnd) {
function_end_found = true;
}
if (opcode == spv::OpLoopMerge) {
current_block->loop_header_merge_target_ = new_inst->Word(1);
}
if (opcode == spv::OpSelectionMerge) {
current_block->selection_merge_target_ = new_inst->Word(1);
}
if (opcode == spv::OpSwitch) {
current_block->switch_default_ = new_inst->Word(2);
for (uint32_t i = 4; i < new_inst->Length(); i++) {
current_block->switch_cases_.push_back(new_inst->Word(i));
}
}
if (opcode == spv::OpBranchConditional) {
current_block->branch_conditional_true_ = new_inst->Word(2);
current_block->branch_conditional_false_ = new_inst->Word(3);
}
if (opcode == spv::OpLabel) {
block_found = true;
auto new_block = std::make_unique<BasicBlock>(std::move(new_inst), *current_function);
auto& added_block = current_function->blocks_.emplace_back(std::move(new_block));
current_block = &(*added_block);
} else if (function_end_found) {
current_function->post_block_inst_.emplace_back(std::move(new_inst));
} else if (block_found) {
current_block->instructions_.emplace_back(std::move(new_inst));
} else {
current_function->pre_block_inst_.emplace_back(std::move(new_inst));
}
it += length;
}
}
bool Module::HasCapability(spv::Capability capability) {
for (const auto& inst : capabilities_) {
if (inst->Word(1) == capability) {
return true;
}
}
return false;
}
static void StringToSpirv(const char* input, std::vector<uint32_t>& output) {
uint32_t i = 0;
while (*input != '\0') {
uint32_t new_word = 0;
for (i = 0; i < 4; i++) {
if (*input == '\0') break;
uint32_t value = static_cast<uint32_t>(*input);
new_word |= value << (8 * i);
input++;
}
output.push_back(new_word);
}
// add full null pad if word didn't end with null
if (i == 4) {
output.push_back(0);
}
}
// Will only add if not already added
void Module::AddCapability(spv::Capability capability) {
if (!HasCapability(capability)) {
auto new_inst = std::make_unique<Instruction>(2, spv::OpCapability);
new_inst->Fill({(uint32_t)capability});
capabilities_.emplace_back(std::move(new_inst));
}
}
void Module::AddExtension(const char* extension) {
std::vector<uint32_t> words;
StringToSpirv(extension, words);
auto new_inst = std::make_unique<Instruction>((uint32_t)(words.size() + 1), spv::OpExtension);
new_inst->Fill(words);
extensions_.emplace_back(std::move(new_inst));
}
void Module::AddDebugName(const char* name, uint32_t id) {
std::vector<uint32_t> words = {id};
StringToSpirv(name, words);
auto new_inst = std::make_unique<Instruction>((uint32_t)(words.size() + 1), spv::OpName);
new_inst->Fill(words);
debug_name_.emplace_back(std::move(new_inst));
}
void Module::AddDecoration(uint32_t target_id, spv::Decoration decoration, const std::vector<uint32_t>& operands) {
auto new_inst = std::make_unique<Instruction>((uint32_t)(operands.size() + 3), spv::OpDecorate);
new_inst->Fill({target_id, (uint32_t)decoration});
if (!operands.empty()) {
new_inst->Fill(operands);
}
annotations_.emplace_back(std::move(new_inst));
}
void Module::AddMemberDecoration(uint32_t target_id, uint32_t index, spv::Decoration decoration,
const std::vector<uint32_t>& operands) {
auto new_inst = std::make_unique<Instruction>((uint32_t)(operands.size() + 4), spv::OpMemberDecorate);
new_inst->Fill({target_id, index, (uint32_t)decoration});
if (!operands.empty()) {
new_inst->Fill(operands);
}
annotations_.emplace_back(std::move(new_inst));
}
uint32_t Module::TakeNextId() {
// SPIR-V limit.
assert(header_.bound < 0x3FFFFF);
return header_.bound++;
}
// walk through each list and append the buffer
void Module::ToBinary(std::vector<uint32_t>& out) {
out.clear();
out.push_back(header_.magic_number);
out.push_back(header_.version);
out.push_back(header_.generator);
out.push_back(header_.bound);
out.push_back(header_.schema);
for (const auto& inst : capabilities_) {
inst->ToBinary(out);
}
for (const auto& inst : extensions_) {
inst->ToBinary(out);
}
for (const auto& inst : ext_inst_imports_) {
inst->ToBinary(out);
}
for (const auto& inst : memory_model_) {
inst->ToBinary(out);
}
for (const auto& inst : entry_points_) {
inst->ToBinary(out);
}
for (const auto& inst : execution_modes_) {
inst->ToBinary(out);
}
for (const auto& inst : debug_source_) {
inst->ToBinary(out);
}
for (const auto& inst : debug_name_) {
inst->ToBinary(out);
}
for (const auto& inst : debug_module_processed_) {
inst->ToBinary(out);
}
for (const auto& inst : annotations_) {
inst->ToBinary(out);
}
for (const auto& inst : types_values_constants_) {
inst->ToBinary(out);
}
for (const auto& function : functions_) {
function->ToBinary(out);
}
}
// We need to apply variable to the Entry Point interface if using SPIR-V 1.4+ (or input/output)
void Module::AddInterfaceVariables(uint32_t id, spv::StorageClass storage_class) {
const uint32_t spirv_version_1_4 = 0x00010400;
if (header_.version >= spirv_version_1_4 || storage_class == spv::StorageClassInput ||
storage_class == spv::StorageClassOutput) {
// Prevent duplicate from being added
const auto insert_pair = added_interface_variables_.insert(id);
if (!insert_pair.second) {
return;
}
// Currently just apply to all Entrypoint as it should be ok to have a global variable in there even if it can't dynamically
// touch the new function
for (auto& entry_point : entry_points_) {
entry_point->AppendWord(id);
}
}
}
// Link functions into this module
// First, any new Types/Constants/Variables are inserted, then functions' instructions
void Module::LinkFunctions(const LinkInfo& info) {
// track the incoming SSA IDs with what they are in the module
// < old_id, new_id >
vvl::unordered_map<uint32_t, uint32_t> id_swap_map;
uint32_t function_type_id = 0;
// Track all decorations and add after when have full id_swap_map
InstructionList decorations;
// find all constant and types, add any the module doesn't have
uint32_t offset = 5; // skip header
while (offset < info.module.word_count) {
const uint32_t* inst_word = &info.module.words[offset];
const uint32_t opcode = *inst_word & 0x0ffffu;
const uint32_t length = *inst_word >> 16;
if (opcode == spv::OpFunction) {
break;
}
auto new_inst = std::make_unique<Instruction>(inst_word, kLinkedInstruction);
uint32_t old_result_id = new_inst->ResultId();
SpvType spv_type = GetSpvType(opcode);
if (spv_type != SpvType::Empty) {
// will find (or create if not found) the matching OpType
uint32_t type_id = 0;
switch (spv_type) {
case SpvType::kVoid:
type_id = type_manager_.GetTypeVoid().Id();
break;
case SpvType::kBool:
type_id = type_manager_.GetTypeBool().Id();
break;
case SpvType::kSampler:
type_id = type_manager_.GetTypeSampler().Id();
break;
case SpvType::kRayQueryKHR:
type_id = type_manager_.GetTypeRayQuery().Id();
break;
case SpvType::kAccelerationStructureKHR:
type_id = type_manager_.GetTypeAccelerationStructure().Id();
break;
case SpvType::kInt: {
uint32_t bit_width = new_inst->Word(2);
bool is_signed = new_inst->Word(3) != 0;
type_id = type_manager_.GetTypeInt(bit_width, is_signed).Id();
break;
}
case SpvType::kFloat: {
uint32_t bit_width = new_inst->Word(2);
type_id = type_manager_.GetTypeFloat(bit_width).Id();
break;
}
case SpvType::kArray: {
const Type* element_type = type_manager_.FindTypeById(id_swap_map[new_inst->Word(2)]);
const Constant* element_length = type_manager_.FindConstantById(id_swap_map[new_inst->Word(3)]);
type_id = type_manager_.GetTypeArray(*element_type, *element_length).Id();
break;
}
case SpvType::kRuntimeArray: {
const Type* element_type = type_manager_.FindTypeById(id_swap_map[new_inst->Word(2)]);
type_id = type_manager_.GetTypeRuntimeArray(*element_type).Id();
break;
}
case SpvType::kVector: {
const Type* component_type = type_manager_.FindTypeById(id_swap_map[new_inst->Word(2)]);
uint32_t component_count = new_inst->Word(3);
type_id = type_manager_.GetTypeVector(*component_type, component_count).Id();
break;
}
case SpvType::kMatrix: {
const Type* column_type = type_manager_.FindTypeById(id_swap_map[new_inst->Word(2)]);
uint32_t column_count = new_inst->Word(3);
type_id = type_manager_.GetTypeMatrix(*column_type, column_count).Id();
break;
}
case SpvType::kSampledImage: {
const Type* image_type = type_manager_.FindTypeById(id_swap_map[new_inst->Word(2)]);
type_id = type_manager_.GetTypeSampledImage(*image_type).Id();
break;
}
case SpvType::kPointer: {
auto it = id_swap_map.find(new_inst->ResultId());
if (it != id_swap_map.end()) {
// already had a OpTypeForwardPointer, so will automatically need a new a new OpTypePointer
type_id = it->second; // id_swap_map will just update with same value
new_inst->ReplaceResultId(type_id);
new_inst->ReplaceLinkedId(id_swap_map);
type_manager_.AddType(std::move(new_inst), spv_type).Id();
} else {
spv::StorageClass storage_class = spv::StorageClass(new_inst->Word(2));
const Type* pointer_type = type_manager_.FindTypeById(id_swap_map[new_inst->Word(3)]);
type_id = type_manager_.GetTypePointer(storage_class, *pointer_type).Id();
}
break;
}
case SpvType::kForwardPointer: {
// forward reference id swap
type_id = TakeNextId();
old_result_id = new_inst->Word(1);
new_inst->UpdateWord(1, type_id);
type_manager_.AddType(std::move(new_inst), spv_type);
break;
}
case SpvType::kStruct: {
// For OpTypeStruct, always add them.
// Only try to look for definition duplication if asked explicitly.
// Chances of adding a struct already defined in original SPIR-V are low, and struct definitions exploration can
// be expensive
type_id = type_manager_.FindLinkingStructType(*new_inst, id_swap_map);
if (type_id == 0) {
type_id = TakeNextId();
new_inst->ReplaceResultId(type_id);
new_inst->ReplaceLinkedId(id_swap_map);
type_manager_.AddType(std::move(new_inst), spv_type).Id();
}
break;
}
case SpvType::kFunction: {
// It is not valid to have duplicate OpTypeFunction and some linked in functions will have the same signature
new_inst->ReplaceLinkedId(id_swap_map);
// First swap out IDs so comparison will be the same
const Type* function_type = type_manager_.FindFunctionType(*new_inst.get());
if (function_type) {
// Just reuse non-unique OpTypeFunction
function_type_id = function_type->Id();
} else {
function_type_id = TakeNextId();
type_id = function_type_id;
new_inst->ReplaceResultId(type_id);
type_manager_.AddType(std::move(new_inst), spv_type).Id();
}
break;
}
default:
break;
}
id_swap_map[old_result_id] = type_id;
} else if (ConstantOperation(opcode) || IsSpecConstant(opcode)) {
if (opcode == spv::OpSpecConstant) {
// Replace LinkConstants with a OpCostant
uint32_t new_op_constant[4];
new_op_constant[0] = (4 << 16) | spv::OpConstant;
new_op_constant[1] = new_inst->Word(1);
new_op_constant[2] = new_inst->Word(2);
if (new_inst->Word(3) == glsl::kLinkShaderId) {
new_op_constant[3] = settings_.shader_id;
}
new_inst.reset(new Instruction(new_op_constant, kLinkedInstruction));
} else if (opcode == spv::OpSpecConstantOp) {
// Apply the SpecConstantOp and generate a new OpCostant
uint32_t new_op_constant[4];
new_op_constant[0] = (4 << 16) | spv::OpConstant;
new_op_constant[1] = new_inst->Word(1);
new_op_constant[2] = new_inst->Word(2);
const uint32_t operation = new_inst->Word(3);
if (operation == spv::OpBitwiseOr) {
const Constant* op_1 = type_manager_.FindConstantById(id_swap_map[new_inst->Word(4)]);
const Constant* op_2 = type_manager_.FindConstantById(id_swap_map[new_inst->Word(5)]);
new_op_constant[3] = op_1->GetValueUint32() | op_2->GetValueUint32();
} else {
assert(false); // Missing support
}
new_inst.reset(new Instruction(new_op_constant, kLinkedInstruction));
}
const Type& type = *type_manager_.FindTypeById(id_swap_map[new_inst->TypeId()]);
const Constant* constant = nullptr;
// for simplicity, just create a new constant for things other than 32-bit OpConstant as there are rarely-to-none
// composite/null/true/false constants in linked functions. The extra logic to try and find them is much larger and cost
// time failing most the searches.
//
// If length is 5, it is a 64-bit constant, which we don't care about
// (we want lenght of 4 as that means it is 32-bit)
if (opcode == spv::OpConstant && new_inst->Length() == 4) {
const uint32_t constant_value = new_inst->Word(3);
if (type.inst_.Opcode() == spv::OpTypeInt && type.inst_.Word(2) == 32) {
constant = type_manager_.FindConstantInt32(type.Id(), constant_value);
} else if (type.inst_.Opcode() == spv::OpTypeFloat && type.inst_.Word(2) == 32) {
constant = type_manager_.FindConstantFloat32(type.Id(), constant_value);
}
}
if (!constant) {
const uint32_t new_result_id = TakeNextId();
new_inst->ReplaceResultId(new_result_id);
new_inst->ReplaceLinkedId(id_swap_map);
constant = &type_manager_.AddConstant(std::move(new_inst), type);
}
id_swap_map[old_result_id] = constant->Id();
} else if (opcode == spv::OpVariable) {
const spv::StorageClass storage_class = new_inst->StorageClass();
const bool is_private_var = storage_class == spv::StorageClassPrivate;
new_inst->ReplaceLinkedId(id_swap_map); // replace so we can grab the type
const Type* type = type_manager_.FindTypeById(new_inst->TypeId());
assert(type->spv_type_ == SpvType::kPointer);
const Type* pointer_type = type_manager_.FindTypeById(type->inst_.Word(3));
// Currently we use the fact the only private variable that are struct are for error payload
if (pointer_type->spv_type_ == SpvType::kStruct && is_private_var &&
((info.module.flags & UseErrorPayloadVariable) != 0)) {
// Variable already is in shader, just mark the new result ID
AddInterfaceVariables(error_payload_variable_id_, storage_class);
id_swap_map[old_result_id] = error_payload_variable_id_;
} else {
const uint32_t new_result_id = TakeNextId();
AddInterfaceVariables(new_result_id, storage_class);
id_swap_map[old_result_id] = new_result_id;
new_inst->ReplaceResultId(new_result_id);
if (is_private_var && ((info.module.flags & ZeroInitializeUintPrivateVariables) != 0)) {
// If we hit this assert, we need to add support for another type
if (pointer_type->spv_type_ == SpvType::kInt) {
const uint32_t uint32_0_id = type_manager_.GetConstantZeroUint32().Id();
new_inst->AppendWord(uint32_0_id);
}
}
type_manager_.AddVariable(std::move(new_inst), *type);
}
} else if (opcode == spv::OpDecorate || opcode == spv::OpMemberDecorate) {
// We want to drop any SpecId we added
if (opcode != spv::OpDecorate || new_inst->Word(2) != spv::DecorationSpecId) {
decorations.emplace_back(std::move(new_inst));
}
} else if (opcode == spv::OpCapability) {
spv::Capability capability = spv::Capability(new_inst->Word(1));
// Shader is required and we want to remove Linkage from final shader
if (capability != spv::CapabilityShader && capability != spv::CapabilityLinkage) {
// It is valid to have duplicated Capabilities
capabilities_.emplace_back(std::move(new_inst));
}
} else if (opcode == spv::OpExtInstImport) {
const uint32_t new_result_id = TakeNextId();
id_swap_map[old_result_id] = new_result_id;
new_inst->ReplaceResultId(new_result_id);
ext_inst_imports_.emplace_back(std::move(new_inst));
} else if (opcode == spv::OpString) {
const uint32_t new_result_id = TakeNextId();
id_swap_map[old_result_id] = new_result_id;
new_inst->ReplaceResultId(new_result_id);
debug_source_.emplace_back(std::move(new_inst));
} else if (opcode == spv::OpExtension) {
extensions_.emplace_back(std::move(new_inst));
}
offset += length;
}
// because flow-control instructions (ex. OpBranch) do forward references to IDs, do an initial loop to get all OpLabel to have
// in id_swap_map
while (offset < info.module.word_count) {
const uint32_t* inst_word = &info.module.words[offset];
const uint32_t opcode = *inst_word & 0x0ffffu;
const uint32_t length = *inst_word >> 16;
if (opcode == spv::OpLabel) {
Instruction inst(inst_word, kLinkedInstruction);
uint32_t new_result_id = TakeNextId();
id_swap_map[inst.ResultId()] = new_result_id;
}
offset += length;
}
for (const LinkFunction& link_function : info.functions) {
AddDebugName(link_function.offline.opname, link_function.id);
// Add function and copy all instructions to it, while adjusting any IDs
auto& new_function = functions_.emplace_back(std::make_unique<Function>(*this));
// We make things simpler by just putting everything in the first BasicBlock
// (We need it in a block incase we want to alter this function later with something like DebugPrintf)
BasicBlock* link_basic_block = nullptr;
offset = link_function.offline.offset;
while (offset < info.module.word_count) {
const uint32_t* inst_word = &info.module.words[offset];
auto new_inst = std::make_unique<Instruction>(inst_word, kLinkedInstruction);
const uint32_t opcode = new_inst->Opcode();
const uint32_t length = new_inst->Length();
if (opcode == spv::OpFunction) {
new_inst->UpdateWord(1, id_swap_map[new_inst->Word(1)]);
new_inst->UpdateWord(2, link_function.id);
// We originally tried to use DontInline...
// - Most drivers don't actually support it
// - Fun nasty bugs with those that did (since no CTS is written to use it)
// - There is zero way to truely check if it supported or not
// - We reworked our functions to be smaller because we have to assume it will be inlined
new_inst->UpdateWord(3, spv::FunctionControlMaskNone);
new_inst->UpdateWord(4, function_type_id);
} else if (opcode == spv::OpLabel) {
uint32_t new_result_id = id_swap_map[new_inst->ResultId()];
new_inst->ReplaceResultId(new_result_id);
// Only do on first label at top of function
if (!link_basic_block) {
auto new_block = std::make_unique<BasicBlock>(std::move(new_inst), *new_function);
auto& added_block = new_function->blocks_.emplace_back(std::move(new_block));
link_basic_block = &(*added_block);
offset += length;
continue; // prevent adding a null new_inst below
}
} else {
uint32_t result_id = new_inst->ResultId();
if (result_id != 0) {
uint32_t new_result_id = TakeNextId();
id_swap_map[result_id] = new_result_id;
new_inst->ReplaceResultId(new_result_id);
}
new_inst->ReplaceLinkedId(id_swap_map);
}
// For a future FindInstruction() make sure everything is added to the inst_map
const uint32_t result_id = new_inst->ResultId();
if (result_id != 0) {
new_function->inst_map_[result_id] = new_inst.get();
}
if (link_basic_block) {
// Need for a possible FindInstruction() lookup
link_basic_block->instructions_.emplace_back(std::move(new_inst));
} else {
new_function->pre_block_inst_.emplace_back(std::move(new_inst));
}
if (opcode == spv::OpFunctionEnd) {
break;
}
offset += length;
}
}
// if 2 OpTypeRuntimeArray are combined, we can't have ArrayStride twice
vvl::unordered_set<uint32_t> array_strides;
for (const auto& annotation : annotations_) {
if (annotation->Opcode() == spv::OpDecorate && annotation->Word(2) == spv::DecorationArrayStride) {
array_strides.insert(annotation->Word(1));
}
}
for (auto& decoration : decorations) {
if (decoration->Word(2) == spv::DecorationLinkageAttributes) {
continue; // remove linkage info
} else if (decoration->Word(2) == spv::DecorationDescriptorSet) {
// only should be one DescriptorSet to update
decoration->UpdateWord(3, settings_.output_buffer_descriptor_set);
}
decoration->ReplaceLinkedId(id_swap_map);
if (decoration->Word(2) == spv::DecorationArrayStride) {
if (!array_strides.insert(decoration->Word(1)).second) {
continue;
}
}
annotations_.emplace_back(std::move(decoration));
}
}
// Things that need to be done once if there is any instrumentation.
void Module::PostProcess() {
if (use_bda_) {
// Adjust the original addressing model to be PhysicalStorageBuffer64 if not already.
// A module can only have one OpMemoryModel
memory_model_[0]->UpdateWord(1, spv::AddressingModelPhysicalStorageBuffer64);
if (!HasCapability(spv::CapabilityPhysicalStorageBufferAddresses)) {
AddCapability(spv::CapabilityPhysicalStorageBufferAddresses);
AddExtension("SPV_KHR_physical_storage_buffer");
}
}
// The instrumentation code has atomicAdd() to update the output buffer
// If the incoming code only has VulkanMemoryModel it will need to support device scope
//
// Found that QueueFamily was added to mostly solve this, if a device doesn't support Device scope we could use QueueFamily, the
// issue is that the GLSL we have is static and if we use QueueFamily then we "need" the MemoryModel enabled
if (HasCapability(spv::CapabilityVulkanMemoryModel)) {
if (!enabled_features_.vulkanMemoryModelDeviceScope) {
InternalError(
"GPU-SHADER-INSTRUMENT-SUPPORT",
"vulkanMemoryModelDeviceScope feature is not supported, but need to let us call atomicAdd to the output buffer");
}
AddCapability(spv::CapabilityVulkanMemoryModelDeviceScope);
}
// Vulkan 1.1 is required, so if incoming SPIR-V is 1.0, might need to adjust it
const uint32_t spirv_version_1_0 = 0x00010000;
if (header_.version == spirv_version_1_0) {
// SPV_KHR_storage_buffer_storage_class is needed, but glslang removes it from linking functions
AddExtension("SPV_KHR_storage_buffer_storage_class");
}
}
void Module::InternalWarning(const char* tag, const std::string& message) {
if (debug_report_) {
debug_report_->LogMessage(kWarningBit, tag, {}, settings_.loc, message);
} else {
std::cout << "[" << tag << "] " << message << '\n';
}
}
void Module::InternalError(const char* tag, const std::string& message) {
if (debug_report_) {
debug_report_->LogMessage(kErrorBit, tag, {}, settings_.loc, message);
} else {
std::cerr << "[" << tag << "] " << message << '\n';
}
}
} // namespace spirv
} // namespace gpuav
|