SPIRV-Tools/source/opt/remove_duplicates_pass.cpp
Pierre Moreau 86627f7b3f Implement Linker (module combiner)
Add extra iterators for ir::Module's sections
Add extra getters to ir::Function
Add a const version of BasicBlock::GetLabelInst()

Use the max of all inputs' version as version

Split debug in debug1 and debug2
- Debug1 instructions have to be placed before debug2 instructions.

Error out if different addressing or memory models are found

Exit early if no binaries were given

Error out if entry points are redeclared

Implement copy ctors for Function and BasicBlock
- Visual Studio ends up generating copy constructors that call deleted
  functions while compiling the linker code, while GCC and clang do not.
  So explicitly write those functions to avoid Visual Studio messing up.

Move removing duplicate capabilities to its own pass

Add functions running on all IDs present in an instruction

Remove duplicate SpvOpExtInstImport

Give default options value for link functions

Remove linkage capability if not making a library

Check types before allowing to link

Detect if two types/variables/functions have different decorations

Remove decorations of imported variables/functions and their types

Add a DecorationManager

Add a method for removing all decorations of id

Add methods for removing operands from instructions

Error out if one of the modules has a non-zero schema

Update README.md to talk about the linker

Do not freak out if an imported built-in variable has no export
2017-10-06 18:33:53 -04:00

275 lines
9.3 KiB
C++

// Copyright (c) 2017 Pierre Moreau
//
// 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 "remove_duplicates_pass.h"
#include <cstring>
#include <algorithm>
#include <limits>
#include <unordered_map>
#include <unordered_set>
#include <vector>
#include "decoration_manager.h"
#include "opcode.h"
namespace spvtools {
namespace opt {
using ir::Instruction;
using ir::Module;
using ir::Operand;
using opt::analysis::DefUseManager;
using opt::analysis::DecorationManager;
Pass::Status RemoveDuplicatesPass::Process(Module* module) {
DefUseManager defUseManager(consumer(), module);
DecorationManager decManager(module);
bool modified = RemoveDuplicateCapabilities(module);
modified |= RemoveDuplicatesExtInstImports(module, defUseManager);
modified |= RemoveDuplicateTypes(module, defUseManager, decManager);
modified |= RemoveDuplicateDecorations(module);
return modified ? Status::SuccessWithChange : Status::SuccessWithoutChange;
}
bool RemoveDuplicatesPass::RemoveDuplicateCapabilities(Module* module) const {
bool modified = false;
std::unordered_set<uint32_t> capabilities;
for (auto i = module->capability_begin(); i != module->capability_end();) {
auto res = capabilities.insert(i->GetSingleWordOperand(0u));
if (res.second) {
// Never seen before, keep it.
++i;
} else {
// It's a duplicate, remove it.
i = i.Erase();
modified = true;
}
}
return modified;
}
bool RemoveDuplicatesPass::RemoveDuplicatesExtInstImports(
Module* module, analysis::DefUseManager& defUseManager) const {
bool modified = false;
std::unordered_map<std::string, SpvId> extInstImports;
for (auto i = module->ext_inst_import_begin();
i != module->ext_inst_import_end();) {
auto res = extInstImports.emplace(
reinterpret_cast<const char*>(i->GetInOperand(0u).words.data()),
i->result_id());
if (res.second) {
// Never seen before, keep it.
++i;
} else {
// It's a duplicate, remove it.
defUseManager.ReplaceAllUsesWith(i->result_id(), res.first->second);
i = i.Erase();
modified = true;
}
}
return modified;
}
bool RemoveDuplicatesPass::RemoveDuplicateTypes(
Module* module, DefUseManager& defUseManager,
DecorationManager& decManager) const {
bool modified = false;
std::vector<Instruction> visitedTypes;
visitedTypes.reserve(module->types_values().size());
for (auto i = module->types_values_begin();
i != module->types_values_end();) {
// We only care about types.
if (!spvOpcodeGeneratesType((i->opcode())) &&
i->opcode() != SpvOpTypeForwardPointer) {
++i;
continue;
}
// Is the current type equal to one of the types we have aready visited?
SpvId idToKeep = 0u;
for (auto j : visitedTypes) {
if (AreTypesEqual(*i, j, defUseManager, decManager)) {
idToKeep = j.result_id();
break;
}
}
if (idToKeep == 0u) {
// This is a never seen before type, keep it around.
visitedTypes.emplace_back(*i);
++i;
} else {
// The same type has already been seen before, remove this one.
defUseManager.ReplaceAllUsesWith(i->result_id(), idToKeep);
modified = true;
i = i.Erase();
}
}
return modified;
}
bool RemoveDuplicatesPass::RemoveDuplicateDecorations(
ir::Module* module) const {
bool modified = false;
std::unordered_map<SpvId, const Instruction*> constants;
for (const auto& i : module->types_values())
if (i.opcode() == SpvOpConstant) constants[i.result_id()] = &i;
for (const auto& i : module->types_values())
if (i.opcode() == SpvOpConstant) constants[i.result_id()] = &i;
std::vector<const Instruction*> visitedDecorations;
visitedDecorations.reserve(module->annotations().size());
opt::analysis::DecorationManager decorationManager(module);
for (auto i = module->annotation_begin(); i != module->annotation_end();) {
// Is the current decoration equal to one of the decorations we have aready
// visited?
bool alreadyVisited = false;
for (const Instruction* j : visitedDecorations) {
if (decorationManager.AreDecorationsTheSame(&*i, j)) {
alreadyVisited = true;
break;
}
}
if (!alreadyVisited) {
// This is a never seen before decoration, keep it around.
visitedDecorations.emplace_back(&*i);
++i;
} else {
// The same decoration has already been seen before, remove this one.
modified = true;
i = i.Erase();
}
}
return modified;
}
bool RemoveDuplicatesPass::AreTypesEqual(const Instruction& inst1,
const Instruction& inst2,
const DefUseManager& defUseManager,
const DecorationManager& decManager) {
if (inst1.opcode() != inst2.opcode()) return false;
if (!decManager.HaveTheSameDecorations(inst1.result_id(), inst2.result_id()))
return false;
switch (inst1.opcode()) {
case SpvOpTypeVoid:
case SpvOpTypeBool:
case SpvOpTypeSampler:
case SpvOpTypeEvent:
case SpvOpTypeDeviceEvent:
case SpvOpTypeReserveId:
case SpvOpTypeQueue:
case SpvOpTypePipeStorage:
case SpvOpTypeNamedBarrier:
return true;
case SpvOpTypeInt:
return inst1.GetSingleWordInOperand(0u) ==
inst2.GetSingleWordInOperand(0u) &&
inst1.GetSingleWordInOperand(1u) ==
inst2.GetSingleWordInOperand(1u);
case SpvOpTypeFloat:
case SpvOpTypePipe:
case SpvOpTypeForwardPointer:
return inst1.GetSingleWordInOperand(0u) ==
inst2.GetSingleWordInOperand(0u);
case SpvOpTypeVector:
case SpvOpTypeMatrix:
return AreTypesEqual(
*defUseManager.GetDef(inst1.GetSingleWordInOperand(0u)),
*defUseManager.GetDef(inst2.GetSingleWordInOperand(0u)),
defUseManager, decManager) &&
inst1.GetSingleWordInOperand(1u) ==
inst2.GetSingleWordInOperand(1u);
case SpvOpTypeImage:
return AreTypesEqual(
*defUseManager.GetDef(inst1.GetSingleWordInOperand(0u)),
*defUseManager.GetDef(inst2.GetSingleWordInOperand(0u)),
defUseManager, decManager) &&
inst1.GetSingleWordInOperand(1u) ==
inst2.GetSingleWordInOperand(1u) &&
inst1.GetSingleWordInOperand(2u) ==
inst2.GetSingleWordInOperand(2u) &&
inst1.GetSingleWordInOperand(3u) ==
inst2.GetSingleWordInOperand(3u) &&
inst1.GetSingleWordInOperand(4u) ==
inst2.GetSingleWordInOperand(4u) &&
inst1.GetSingleWordInOperand(5u) ==
inst2.GetSingleWordInOperand(5u) &&
inst1.GetSingleWordInOperand(6u) ==
inst2.GetSingleWordInOperand(6u) &&
inst1.NumOperands() == inst2.NumOperands() &&
(inst1.NumInOperands() == 7u ||
inst1.GetSingleWordInOperand(7u) ==
inst2.GetSingleWordInOperand(7u));
case SpvOpTypeSampledImage:
case SpvOpTypeRuntimeArray:
return AreTypesEqual(
*defUseManager.GetDef(inst1.GetSingleWordInOperand(0u)),
*defUseManager.GetDef(inst2.GetSingleWordInOperand(0u)),
defUseManager, decManager);
case SpvOpTypeArray:
return AreTypesEqual(
*defUseManager.GetDef(inst1.GetSingleWordInOperand(0u)),
*defUseManager.GetDef(inst2.GetSingleWordInOperand(0u)),
defUseManager, decManager) &&
AreTypesEqual(
*defUseManager.GetDef(inst1.GetSingleWordInOperand(1u)),
*defUseManager.GetDef(inst2.GetSingleWordInOperand(1u)),
defUseManager, decManager);
case SpvOpTypeStruct:
case SpvOpTypeFunction: {
bool res = inst1.NumInOperands() == inst2.NumInOperands();
for (uint32_t i = 0u; i < inst1.NumInOperands() && res; ++i)
res &= AreTypesEqual(
*defUseManager.GetDef(inst1.GetSingleWordInOperand(i)),
*defUseManager.GetDef(inst2.GetSingleWordInOperand(i)),
defUseManager, decManager);
return res;
}
case SpvOpTypeOpaque:
return std::strcmp(reinterpret_cast<const char*>(
inst1.GetInOperand(0u).words.data()),
reinterpret_cast<const char*>(
inst2.GetInOperand(0u).words.data())) == 0;
case SpvOpTypePointer:
return inst1.GetSingleWordInOperand(0u) ==
inst2.GetSingleWordInOperand(0u) &&
AreTypesEqual(
*defUseManager.GetDef(inst1.GetSingleWordInOperand(1u)),
*defUseManager.GetDef(inst2.GetSingleWordInOperand(1u)),
defUseManager, decManager);
default:
return false;
}
}
} // namespace opt
} // namespace spvtools