John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1 | // |
John Kessenich | 927608b | 2017-01-06 12:34:14 -0700 | [diff] [blame] | 2 | // Copyright (C) 2015 LunarG, Inc. |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 3 | // |
John Kessenich | 927608b | 2017-01-06 12:34:14 -0700 | [diff] [blame] | 4 | // All rights reserved. |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 5 | // |
John Kessenich | 927608b | 2017-01-06 12:34:14 -0700 | [diff] [blame] | 6 | // Redistribution and use in source and binary forms, with or without |
| 7 | // modification, are permitted provided that the following conditions |
| 8 | // are met: |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 9 | // |
| 10 | // Redistributions of source code must retain the above copyright |
| 11 | // notice, this list of conditions and the following disclaimer. |
| 12 | // |
| 13 | // Redistributions in binary form must reproduce the above |
| 14 | // copyright notice, this list of conditions and the following |
| 15 | // disclaimer in the documentation and/or other materials provided |
| 16 | // with the distribution. |
| 17 | // |
| 18 | // Neither the name of 3Dlabs Inc. Ltd. nor the names of its |
| 19 | // contributors may be used to endorse or promote products derived |
| 20 | // from this software without specific prior written permission. |
| 21 | // |
John Kessenich | 927608b | 2017-01-06 12:34:14 -0700 | [diff] [blame] | 22 | // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 23 | // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 24 | // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 25 | // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 26 | // COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 27 | // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 28 | // BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 29 | // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 30 | // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 31 | // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
| 32 | // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 33 | // POSSIBILITY OF SUCH DAMAGE. |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 34 | // |
| 35 | |
| 36 | #include "SPVRemapper.h" |
| 37 | #include "doc.h" |
| 38 | |
| 39 | #if !defined (use_cpp11) |
| 40 | // ... not supported before C++11 |
| 41 | #else // defined (use_cpp11) |
| 42 | |
| 43 | #include <algorithm> |
| 44 | #include <cassert> |
Andrew Woloszyn | 8b64fa5 | 2015-08-17 11:39:38 -0400 | [diff] [blame] | 45 | #include "../glslang/Include/Common.h" |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 46 | |
| 47 | namespace spv { |
| 48 | |
| 49 | // By default, just abort on error. Can be overridden via RegisterErrorHandler |
| 50 | spirvbin_t::errorfn_t spirvbin_t::errorHandler = [](const std::string&) { exit(5); }; |
| 51 | // By default, eat log messages. Can be overridden via RegisterLogHandler |
| 52 | spirvbin_t::logfn_t spirvbin_t::logHandler = [](const std::string&) { }; |
| 53 | |
| 54 | // This can be overridden to provide other message behavior if needed |
| 55 | void spirvbin_t::msg(int minVerbosity, int indent, const std::string& txt) const |
| 56 | { |
| 57 | if (verbose >= minVerbosity) |
| 58 | logHandler(std::string(indent, ' ') + txt); |
| 59 | } |
| 60 | |
| 61 | // hash opcode, with special handling for OpExtInst |
| 62 | std::uint32_t spirvbin_t::asOpCodeHash(unsigned word) |
| 63 | { |
| 64 | const spv::Op opCode = asOpCode(word); |
| 65 | |
| 66 | std::uint32_t offset = 0; |
| 67 | |
| 68 | switch (opCode) { |
| 69 | case spv::OpExtInst: |
| 70 | offset += asId(word + 4); break; |
| 71 | default: |
| 72 | break; |
| 73 | } |
| 74 | |
| 75 | return opCode * 19 + offset; // 19 = small prime |
| 76 | } |
| 77 | |
| 78 | spirvbin_t::range_t spirvbin_t::literalRange(spv::Op opCode) const |
| 79 | { |
| 80 | static const int maxCount = 1<<30; |
| 81 | |
| 82 | switch (opCode) { |
| 83 | case spv::OpTypeFloat: // fall through... |
| 84 | case spv::OpTypePointer: return range_t(2, 3); |
| 85 | case spv::OpTypeInt: return range_t(2, 4); |
John Kessenich | 5e4b124 | 2015-08-06 22:53:06 -0600 | [diff] [blame] | 86 | // TODO: case spv::OpTypeImage: |
| 87 | // TODO: case spv::OpTypeSampledImage: |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 88 | case spv::OpTypeSampler: return range_t(3, 8); |
| 89 | case spv::OpTypeVector: // fall through |
| 90 | case spv::OpTypeMatrix: // ... |
| 91 | case spv::OpTypePipe: return range_t(3, 4); |
| 92 | case spv::OpConstant: return range_t(3, maxCount); |
| 93 | default: return range_t(0, 0); |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | spirvbin_t::range_t spirvbin_t::typeRange(spv::Op opCode) const |
| 98 | { |
| 99 | static const int maxCount = 1<<30; |
| 100 | |
| 101 | if (isConstOp(opCode)) |
| 102 | return range_t(1, 2); |
| 103 | |
| 104 | switch (opCode) { |
| 105 | case spv::OpTypeVector: // fall through |
John Kessenich | ecba76f | 2017-01-06 00:34:48 -0700 | [diff] [blame] | 106 | case spv::OpTypeMatrix: // ... |
| 107 | case spv::OpTypeSampler: // ... |
| 108 | case spv::OpTypeArray: // ... |
| 109 | case spv::OpTypeRuntimeArray: // ... |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 110 | case spv::OpTypePipe: return range_t(2, 3); |
| 111 | case spv::OpTypeStruct: // fall through |
| 112 | case spv::OpTypeFunction: return range_t(2, maxCount); |
| 113 | case spv::OpTypePointer: return range_t(3, 4); |
| 114 | default: return range_t(0, 0); |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | spirvbin_t::range_t spirvbin_t::constRange(spv::Op opCode) const |
| 119 | { |
| 120 | static const int maxCount = 1<<30; |
| 121 | |
| 122 | switch (opCode) { |
| 123 | case spv::OpTypeArray: // fall through... |
| 124 | case spv::OpTypeRuntimeArray: return range_t(3, 4); |
| 125 | case spv::OpConstantComposite: return range_t(3, maxCount); |
| 126 | default: return range_t(0, 0); |
| 127 | } |
| 128 | } |
| 129 | |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 130 | // Return the size of a type in 32-bit words. This currently only |
| 131 | // handles ints and floats, and is only invoked by queries which must be |
| 132 | // integer types. If ever needed, it can be generalized. |
| 133 | unsigned spirvbin_t::typeSizeInWords(spv::Id id) const |
| 134 | { |
| 135 | const unsigned typeStart = idPos(id); |
| 136 | const spv::Op opCode = asOpCode(typeStart); |
| 137 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 138 | if (errorLatch) |
| 139 | return 0; |
| 140 | |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 141 | switch (opCode) { |
| 142 | case spv::OpTypeInt: // fall through... |
| 143 | case spv::OpTypeFloat: return (spv[typeStart+2]+31)/32; |
| 144 | default: |
| 145 | return 0; |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | // Looks up the type of a given const or variable ID, and |
| 150 | // returns its size in 32-bit words. |
| 151 | unsigned spirvbin_t::idTypeSizeInWords(spv::Id id) const |
| 152 | { |
| 153 | const auto tid_it = idTypeSizeMap.find(id); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 154 | if (tid_it == idTypeSizeMap.end()) { |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 155 | error("type size for ID not found"); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 156 | return 0; |
| 157 | } |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 158 | |
| 159 | return tid_it->second; |
| 160 | } |
| 161 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 162 | // Is this an opcode we should remove when using --strip? |
| 163 | bool spirvbin_t::isStripOp(spv::Op opCode) const |
| 164 | { |
| 165 | switch (opCode) { |
| 166 | case spv::OpSource: |
| 167 | case spv::OpSourceExtension: |
| 168 | case spv::OpName: |
| 169 | case spv::OpMemberName: |
| 170 | case spv::OpLine: return true; |
| 171 | default: return false; |
| 172 | } |
| 173 | } |
| 174 | |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 175 | // Return true if this opcode is flow control |
GregF | 8548bab | 2016-02-01 16:44:57 -0700 | [diff] [blame] | 176 | bool spirvbin_t::isFlowCtrl(spv::Op opCode) const |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 177 | { |
| 178 | switch (opCode) { |
| 179 | case spv::OpBranchConditional: |
GregF | 8548bab | 2016-02-01 16:44:57 -0700 | [diff] [blame] | 180 | case spv::OpBranch: |
| 181 | case spv::OpSwitch: |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 182 | case spv::OpLoopMerge: |
GregF | 8548bab | 2016-02-01 16:44:57 -0700 | [diff] [blame] | 183 | case spv::OpSelectionMerge: |
| 184 | case spv::OpLabel: |
| 185 | case spv::OpFunction: |
| 186 | case spv::OpFunctionEnd: return true; |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 187 | default: return false; |
| 188 | } |
| 189 | } |
| 190 | |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 191 | // Return true if this opcode defines a type |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 192 | bool spirvbin_t::isTypeOp(spv::Op opCode) const |
| 193 | { |
| 194 | switch (opCode) { |
| 195 | case spv::OpTypeVoid: |
| 196 | case spv::OpTypeBool: |
| 197 | case spv::OpTypeInt: |
| 198 | case spv::OpTypeFloat: |
| 199 | case spv::OpTypeVector: |
| 200 | case spv::OpTypeMatrix: |
John Kessenich | 5e4b124 | 2015-08-06 22:53:06 -0600 | [diff] [blame] | 201 | case spv::OpTypeImage: |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 202 | case spv::OpTypeSampler: |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 203 | case spv::OpTypeArray: |
| 204 | case spv::OpTypeRuntimeArray: |
| 205 | case spv::OpTypeStruct: |
| 206 | case spv::OpTypeOpaque: |
| 207 | case spv::OpTypePointer: |
| 208 | case spv::OpTypeFunction: |
| 209 | case spv::OpTypeEvent: |
| 210 | case spv::OpTypeDeviceEvent: |
| 211 | case spv::OpTypeReserveId: |
| 212 | case spv::OpTypeQueue: |
Steve | 3573f2e | 2015-08-11 09:20:14 -0600 | [diff] [blame] | 213 | case spv::OpTypeSampledImage: |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 214 | case spv::OpTypePipe: return true; |
| 215 | default: return false; |
| 216 | } |
| 217 | } |
| 218 | |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 219 | // Return true if this opcode defines a constant |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 220 | bool spirvbin_t::isConstOp(spv::Op opCode) const |
| 221 | { |
| 222 | switch (opCode) { |
John Kessenich | ea1ea97 | 2017-09-11 19:25:17 -0600 | [diff] [blame] | 223 | case spv::OpConstantSampler: |
| 224 | error("unimplemented constant type"); |
| 225 | return true; |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 226 | |
GregF | c6831d1 | 2018-06-19 13:47:50 -0600 | [diff] [blame] | 227 | case spv::OpConstantNull: |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 228 | case spv::OpConstantTrue: |
| 229 | case spv::OpConstantFalse: |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 230 | case spv::OpConstantComposite: |
John Kessenich | ea1ea97 | 2017-09-11 19:25:17 -0600 | [diff] [blame] | 231 | case spv::OpConstant: |
| 232 | return true; |
| 233 | |
| 234 | default: |
| 235 | return false; |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 236 | } |
| 237 | } |
| 238 | |
| 239 | const auto inst_fn_nop = [](spv::Op, unsigned) { return false; }; |
| 240 | const auto op_fn_nop = [](spv::Id&) { }; |
| 241 | |
| 242 | // g++ doesn't like these defined in the class proper in an anonymous namespace. |
| 243 | // Dunno why. Also MSVC doesn't like the constexpr keyword. Also dunno why. |
| 244 | // Defining them externally seems to please both compilers, so, here they are. |
| 245 | const spv::Id spirvbin_t::unmapped = spv::Id(-10000); |
| 246 | const spv::Id spirvbin_t::unused = spv::Id(-10001); |
| 247 | const int spirvbin_t::header_size = 5; |
| 248 | |
| 249 | spv::Id spirvbin_t::nextUnusedId(spv::Id id) |
| 250 | { |
| 251 | while (isNewIdMapped(id)) // search for an unused ID |
| 252 | ++id; |
| 253 | |
| 254 | return id; |
| 255 | } |
| 256 | |
| 257 | spv::Id spirvbin_t::localId(spv::Id id, spv::Id newId) |
| 258 | { |
John Kessenich | 66011cb | 2018-03-06 16:12:04 -0700 | [diff] [blame] | 259 | //assert(id != spv::NoResult && newId != spv::NoResult); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 260 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 261 | if (id > bound()) { |
| 262 | error(std::string("ID out of range: ") + std::to_string(id)); |
| 263 | return spirvbin_t::unused; |
| 264 | } |
| 265 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 266 | if (id >= idMapL.size()) |
| 267 | idMapL.resize(id+1, unused); |
| 268 | |
| 269 | if (newId != unmapped && newId != unused) { |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 270 | if (isOldIdUnused(id)) { |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 271 | error(std::string("ID unused in module: ") + std::to_string(id)); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 272 | return spirvbin_t::unused; |
| 273 | } |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 274 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 275 | if (!isOldIdUnmapped(id)) { |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 276 | error(std::string("ID already mapped: ") + std::to_string(id) + " -> " |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 277 | + std::to_string(localId(id))); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 278 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 279 | return spirvbin_t::unused; |
| 280 | } |
| 281 | |
| 282 | if (isNewIdMapped(newId)) { |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 283 | error(std::string("ID already used in module: ") + std::to_string(newId)); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 284 | return spirvbin_t::unused; |
| 285 | } |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 286 | |
| 287 | msg(4, 4, std::string("map: ") + std::to_string(id) + " -> " + std::to_string(newId)); |
| 288 | setMapped(newId); |
| 289 | largestNewId = std::max(largestNewId, newId); |
| 290 | } |
| 291 | |
| 292 | return idMapL[id] = newId; |
| 293 | } |
| 294 | |
| 295 | // Parse a literal string from the SPIR binary and return it as an std::string |
| 296 | // Due to C++11 RValue references, this doesn't copy the result string. |
| 297 | std::string spirvbin_t::literalString(unsigned word) const |
| 298 | { |
| 299 | std::string literal; |
| 300 | |
| 301 | literal.reserve(16); |
| 302 | |
| 303 | const char* bytes = reinterpret_cast<const char*>(spv.data() + word); |
| 304 | |
| 305 | while (bytes && *bytes) |
| 306 | literal += *bytes++; |
| 307 | |
| 308 | return literal; |
| 309 | } |
| 310 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 311 | void spirvbin_t::applyMap() |
| 312 | { |
| 313 | msg(3, 2, std::string("Applying map: ")); |
| 314 | |
| 315 | // Map local IDs through the ID map |
| 316 | process(inst_fn_nop, // ignore instructions |
| 317 | [this](spv::Id& id) { |
| 318 | id = localId(id); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 319 | |
| 320 | if (errorLatch) |
| 321 | return; |
| 322 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 323 | assert(id != unused && id != unmapped); |
| 324 | } |
| 325 | ); |
| 326 | } |
| 327 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 328 | // Find free IDs for anything we haven't mapped |
| 329 | void spirvbin_t::mapRemainder() |
| 330 | { |
| 331 | msg(3, 2, std::string("Remapping remainder: ")); |
| 332 | |
| 333 | spv::Id unusedId = 1; // can't use 0: that's NoResult |
| 334 | spirword_t maxBound = 0; |
| 335 | |
| 336 | for (spv::Id id = 0; id < idMapL.size(); ++id) { |
| 337 | if (isOldIdUnused(id)) |
| 338 | continue; |
| 339 | |
| 340 | // Find a new mapping for any used but unmapped IDs |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 341 | if (isOldIdUnmapped(id)) { |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 342 | localId(id, unusedId = nextUnusedId(unusedId)); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 343 | if (errorLatch) |
| 344 | return; |
| 345 | } |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 346 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 347 | if (isOldIdUnmapped(id)) { |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 348 | error(std::string("old ID not mapped: ") + std::to_string(id)); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 349 | return; |
| 350 | } |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 351 | |
| 352 | // Track max bound |
| 353 | maxBound = std::max(maxBound, localId(id) + 1); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 354 | |
| 355 | if (errorLatch) |
| 356 | return; |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 357 | } |
| 358 | |
| 359 | bound(maxBound); // reset header ID bound to as big as it now needs to be |
| 360 | } |
| 361 | |
steve-lunarg | 297754c | 2016-12-09 11:13:23 -0700 | [diff] [blame] | 362 | // Mark debug instructions for stripping |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 363 | void spirvbin_t::stripDebug() |
| 364 | { |
steve-lunarg | 297754c | 2016-12-09 11:13:23 -0700 | [diff] [blame] | 365 | // Strip instructions in the stripOp set: debug info. |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 366 | process( |
| 367 | [&](spv::Op opCode, unsigned start) { |
| 368 | // remember opcodes we want to strip later |
| 369 | if (isStripOp(opCode)) |
| 370 | stripInst(start); |
| 371 | return true; |
| 372 | }, |
| 373 | op_fn_nop); |
| 374 | } |
| 375 | |
steve-lunarg | 297754c | 2016-12-09 11:13:23 -0700 | [diff] [blame] | 376 | // Mark instructions that refer to now-removed IDs for stripping |
| 377 | void spirvbin_t::stripDeadRefs() |
| 378 | { |
| 379 | process( |
| 380 | [&](spv::Op opCode, unsigned start) { |
| 381 | // strip opcodes pointing to removed data |
| 382 | switch (opCode) { |
| 383 | case spv::OpName: |
| 384 | case spv::OpMemberName: |
| 385 | case spv::OpDecorate: |
| 386 | case spv::OpMemberDecorate: |
| 387 | if (idPosR.find(asId(start+1)) == idPosR.end()) |
| 388 | stripInst(start); |
| 389 | break; |
John Kessenich | ecba76f | 2017-01-06 00:34:48 -0700 | [diff] [blame] | 390 | default: |
steve-lunarg | 297754c | 2016-12-09 11:13:23 -0700 | [diff] [blame] | 391 | break; // leave it alone |
| 392 | } |
| 393 | |
| 394 | return true; |
| 395 | }, |
| 396 | op_fn_nop); |
| 397 | |
| 398 | strip(); |
| 399 | } |
| 400 | |
| 401 | // Update local maps of ID, type, etc positions |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 402 | void spirvbin_t::buildLocalMaps() |
| 403 | { |
| 404 | msg(2, 2, std::string("build local maps: ")); |
| 405 | |
| 406 | mapped.clear(); |
| 407 | idMapL.clear(); |
| 408 | // preserve nameMap, so we don't clear that. |
| 409 | fnPos.clear(); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 410 | fnCalls.clear(); |
| 411 | typeConstPos.clear(); |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 412 | idPosR.clear(); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 413 | entryPoint = spv::NoResult; |
| 414 | largestNewId = 0; |
| 415 | |
| 416 | idMapL.resize(bound(), unused); |
| 417 | |
| 418 | int fnStart = 0; |
| 419 | spv::Id fnRes = spv::NoResult; |
| 420 | |
| 421 | // build local Id and name maps |
| 422 | process( |
| 423 | [&](spv::Op opCode, unsigned start) { |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 424 | unsigned word = start+1; |
| 425 | spv::Id typeId = spv::NoResult; |
| 426 | |
| 427 | if (spv::InstructionDesc[opCode].hasType()) |
| 428 | typeId = asId(word++); |
| 429 | |
| 430 | // If there's a result ID, remember the size of its type |
| 431 | if (spv::InstructionDesc[opCode].hasResult()) { |
| 432 | const spv::Id resultId = asId(word++); |
| 433 | idPosR[resultId] = start; |
John Kessenich | ecba76f | 2017-01-06 00:34:48 -0700 | [diff] [blame] | 434 | |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 435 | if (typeId != spv::NoResult) { |
| 436 | const unsigned idTypeSize = typeSizeInWords(typeId); |
| 437 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 438 | if (errorLatch) |
| 439 | return false; |
| 440 | |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 441 | if (idTypeSize != 0) |
| 442 | idTypeSizeMap[resultId] = idTypeSize; |
| 443 | } |
| 444 | } |
| 445 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 446 | if (opCode == spv::Op::OpName) { |
| 447 | const spv::Id target = asId(start+1); |
| 448 | const std::string name = literalString(start+2); |
| 449 | nameMap[name] = target; |
| 450 | |
| 451 | } else if (opCode == spv::Op::OpFunctionCall) { |
| 452 | ++fnCalls[asId(start + 3)]; |
| 453 | } else if (opCode == spv::Op::OpEntryPoint) { |
| 454 | entryPoint = asId(start + 2); |
| 455 | } else if (opCode == spv::Op::OpFunction) { |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 456 | if (fnStart != 0) { |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 457 | error("nested function found"); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 458 | return false; |
| 459 | } |
| 460 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 461 | fnStart = start; |
| 462 | fnRes = asId(start + 2); |
| 463 | } else if (opCode == spv::Op::OpFunctionEnd) { |
| 464 | assert(fnRes != spv::NoResult); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 465 | if (fnStart == 0) { |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 466 | error("function end without function start"); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 467 | return false; |
| 468 | } |
| 469 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 470 | fnPos[fnRes] = range_t(fnStart, start + asWordCount(start)); |
| 471 | fnStart = 0; |
| 472 | } else if (isConstOp(opCode)) { |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 473 | if (errorLatch) |
| 474 | return false; |
| 475 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 476 | assert(asId(start + 2) != spv::NoResult); |
| 477 | typeConstPos.insert(start); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 478 | } else if (isTypeOp(opCode)) { |
| 479 | assert(asId(start + 1) != spv::NoResult); |
| 480 | typeConstPos.insert(start); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | return false; |
| 484 | }, |
| 485 | |
| 486 | [this](spv::Id& id) { localId(id, unmapped); } |
| 487 | ); |
| 488 | } |
| 489 | |
| 490 | // Validate the SPIR header |
| 491 | void spirvbin_t::validate() const |
| 492 | { |
| 493 | msg(2, 2, std::string("validating: ")); |
| 494 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 495 | if (spv.size() < header_size) { |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 496 | error("file too short: "); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 497 | return; |
| 498 | } |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 499 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 500 | if (magic() != spv::MagicNumber) { |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 501 | error("bad magic number"); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 502 | return; |
| 503 | } |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 504 | |
| 505 | // field 1 = version |
| 506 | // field 2 = generator magic |
| 507 | // field 3 = result <id> bound |
| 508 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 509 | if (schemaNum() != 0) { |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 510 | error("bad schema, must be 0"); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 511 | return; |
| 512 | } |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 513 | } |
| 514 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 515 | int spirvbin_t::processInstruction(unsigned word, instfn_t instFn, idfn_t idFn) |
| 516 | { |
| 517 | const auto instructionStart = word; |
| 518 | const unsigned wordCount = asWordCount(instructionStart); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 519 | const int nextInst = word++ + wordCount; |
LoopDawg | 65c2eed | 2017-05-18 16:13:04 -0600 | [diff] [blame] | 520 | spv::Op opCode = asOpCode(instructionStart); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 521 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 522 | if (nextInst > int(spv.size())) { |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 523 | error("spir instruction terminated too early"); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 524 | return -1; |
| 525 | } |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 526 | |
| 527 | // Base for computing number of operands; will be updated as more is learned |
| 528 | unsigned numOperands = wordCount - 1; |
| 529 | |
| 530 | if (instFn(opCode, instructionStart)) |
| 531 | return nextInst; |
| 532 | |
| 533 | // Read type and result ID from instruction desc table |
| 534 | if (spv::InstructionDesc[opCode].hasType()) { |
| 535 | idFn(asId(word++)); |
| 536 | --numOperands; |
| 537 | } |
| 538 | |
| 539 | if (spv::InstructionDesc[opCode].hasResult()) { |
| 540 | idFn(asId(word++)); |
| 541 | --numOperands; |
| 542 | } |
| 543 | |
| 544 | // Extended instructions: currently, assume everything is an ID. |
| 545 | // TODO: add whatever data we need for exceptions to that |
| 546 | if (opCode == spv::OpExtInst) { |
| 547 | word += 2; // instruction set, and instruction from set |
| 548 | numOperands -= 2; |
| 549 | |
| 550 | for (unsigned op=0; op < numOperands; ++op) |
| 551 | idFn(asId(word++)); // ID |
| 552 | |
| 553 | return nextInst; |
| 554 | } |
| 555 | |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 556 | // Circular buffer so we can look back at previous unmapped values during the mapping pass. |
| 557 | static const unsigned idBufferSize = 4; |
| 558 | spv::Id idBuffer[idBufferSize]; |
| 559 | unsigned idBufferPos = 0; |
| 560 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 561 | // Store IDs from instruction in our map |
John Kessenich | 6c292d3 | 2016-02-15 20:58:50 -0700 | [diff] [blame] | 562 | for (int op = 0; numOperands > 0; ++op, --numOperands) { |
LoopDawg | 65c2eed | 2017-05-18 16:13:04 -0600 | [diff] [blame] | 563 | // SpecConstantOp is special: it includes the operands of another opcode which is |
| 564 | // given as a literal in the 3rd word. We will switch over to pretending that the |
| 565 | // opcode being processed is the literal opcode value of the SpecConstantOp. See the |
| 566 | // SPIRV spec for details. This way we will handle IDs and literals as appropriate for |
| 567 | // the embedded op. |
| 568 | if (opCode == spv::OpSpecConstantOp) { |
| 569 | if (op == 0) { |
| 570 | opCode = asOpCode(word++); // this is the opcode embedded in the SpecConstantOp. |
| 571 | --numOperands; |
| 572 | } |
| 573 | } |
| 574 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 575 | switch (spv::InstructionDesc[opCode].operands.getClass(op)) { |
| 576 | case spv::OperandId: |
Pyry Haulos | b93e3a3 | 2016-07-22 09:57:28 -0700 | [diff] [blame] | 577 | case spv::OperandScope: |
| 578 | case spv::OperandMemorySemantics: |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 579 | idBuffer[idBufferPos] = asId(word); |
| 580 | idBufferPos = (idBufferPos + 1) % idBufferSize; |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 581 | idFn(asId(word++)); |
| 582 | break; |
| 583 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 584 | case spv::OperandVariableIds: |
| 585 | for (unsigned i = 0; i < numOperands; ++i) |
| 586 | idFn(asId(word++)); |
| 587 | return nextInst; |
| 588 | |
| 589 | case spv::OperandVariableLiterals: |
Steve | 465a146 | 2015-07-15 14:34:35 -0600 | [diff] [blame] | 590 | // for clarity |
| 591 | // if (opCode == spv::OpDecorate && asDecoration(word - 1) == spv::DecorationBuiltIn) { |
| 592 | // ++word; |
| 593 | // --numOperands; |
| 594 | // } |
| 595 | // word += numOperands; |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 596 | return nextInst; |
| 597 | |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 598 | case spv::OperandVariableLiteralId: { |
| 599 | if (opCode == OpSwitch) { |
| 600 | // word-2 is the position of the selector ID. OpSwitch Literals match its type. |
| 601 | // In case the IDs are currently being remapped, we get the word[-2] ID from |
| 602 | // the circular idBuffer. |
| 603 | const unsigned literalSizePos = (idBufferPos+idBufferSize-2) % idBufferSize; |
| 604 | const unsigned literalSize = idTypeSizeInWords(idBuffer[literalSizePos]); |
| 605 | const unsigned numLiteralIdPairs = (nextInst-word) / (1+literalSize); |
| 606 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 607 | if (errorLatch) |
| 608 | return -1; |
| 609 | |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 610 | for (unsigned arg=0; arg<numLiteralIdPairs; ++arg) { |
| 611 | word += literalSize; // literal |
| 612 | idFn(asId(word++)); // label |
| 613 | } |
| 614 | } else { |
| 615 | assert(0); // currentely, only OpSwitch uses OperandVariableLiteralId |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 616 | } |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 617 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 618 | return nextInst; |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 619 | } |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 620 | |
GregF | 8548bab | 2016-02-01 16:44:57 -0700 | [diff] [blame] | 621 | case spv::OperandLiteralString: { |
| 622 | const int stringWordCount = literalStringWords(literalString(word)); |
| 623 | word += stringWordCount; |
| 624 | numOperands -= (stringWordCount-1); // -1 because for() header post-decrements |
| 625 | break; |
| 626 | } |
| 627 | |
| 628 | // Execution mode might have extra literal operands. Skip them. |
| 629 | case spv::OperandExecutionMode: |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 630 | return nextInst; |
| 631 | |
GregF | 8548bab | 2016-02-01 16:44:57 -0700 | [diff] [blame] | 632 | // Single word operands we simply ignore, as they hold no IDs |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 633 | case spv::OperandLiteralNumber: |
| 634 | case spv::OperandSource: |
| 635 | case spv::OperandExecutionModel: |
| 636 | case spv::OperandAddressing: |
| 637 | case spv::OperandMemory: |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 638 | case spv::OperandStorage: |
| 639 | case spv::OperandDimensionality: |
GregF | 8548bab | 2016-02-01 16:44:57 -0700 | [diff] [blame] | 640 | case spv::OperandSamplerAddressingMode: |
| 641 | case spv::OperandSamplerFilterMode: |
| 642 | case spv::OperandSamplerImageFormat: |
| 643 | case spv::OperandImageChannelOrder: |
| 644 | case spv::OperandImageChannelDataType: |
GregF | 3bb040b | 2016-01-05 08:41:59 -0700 | [diff] [blame] | 645 | case spv::OperandImageOperands: |
GregF | 8548bab | 2016-02-01 16:44:57 -0700 | [diff] [blame] | 646 | case spv::OperandFPFastMath: |
| 647 | case spv::OperandFPRoundingMode: |
| 648 | case spv::OperandLinkageType: |
| 649 | case spv::OperandAccessQualifier: |
| 650 | case spv::OperandFuncParamAttr: |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 651 | case spv::OperandDecoration: |
| 652 | case spv::OperandBuiltIn: |
| 653 | case spv::OperandSelect: |
| 654 | case spv::OperandLoop: |
| 655 | case spv::OperandFunction: |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 656 | case spv::OperandMemoryAccess: |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 657 | case spv::OperandGroupOperation: |
| 658 | case spv::OperandKernelEnqueueFlags: |
| 659 | case spv::OperandKernelProfilingInfo: |
GregF | 8548bab | 2016-02-01 16:44:57 -0700 | [diff] [blame] | 660 | case spv::OperandCapability: |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 661 | ++word; |
| 662 | break; |
| 663 | |
| 664 | default: |
GregF | 036a794 | 2016-01-05 16:41:29 -0700 | [diff] [blame] | 665 | assert(0 && "Unhandled Operand Class"); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 666 | break; |
| 667 | } |
| 668 | } |
| 669 | |
| 670 | return nextInst; |
| 671 | } |
| 672 | |
| 673 | // Make a pass over all the instructions and process them given appropriate functions |
| 674 | spirvbin_t& spirvbin_t::process(instfn_t instFn, idfn_t idFn, unsigned begin, unsigned end) |
| 675 | { |
| 676 | // For efficiency, reserve name map space. It can grow if needed. |
| 677 | nameMap.reserve(32); |
| 678 | |
| 679 | // If begin or end == 0, use defaults |
| 680 | begin = (begin == 0 ? header_size : begin); |
| 681 | end = (end == 0 ? unsigned(spv.size()) : end); |
| 682 | |
| 683 | // basic parsing and InstructionDesc table borrowed from SpvDisassemble.cpp... |
| 684 | unsigned nextInst = unsigned(spv.size()); |
| 685 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 686 | for (unsigned word = begin; word < end; word = nextInst) { |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 687 | nextInst = processInstruction(word, instFn, idFn); |
| 688 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 689 | if (errorLatch) |
| 690 | return *this; |
| 691 | } |
| 692 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 693 | return *this; |
| 694 | } |
| 695 | |
| 696 | // Apply global name mapping to a single module |
| 697 | void spirvbin_t::mapNames() |
| 698 | { |
| 699 | static const std::uint32_t softTypeIdLimit = 3011; // small prime. TODO: get from options |
| 700 | static const std::uint32_t firstMappedID = 3019; // offset into ID space |
| 701 | |
| 702 | for (const auto& name : nameMap) { |
| 703 | std::uint32_t hashval = 1911; |
| 704 | for (const char c : name.first) |
| 705 | hashval = hashval * 1009 + c; |
| 706 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 707 | if (isOldIdUnmapped(name.second)) { |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 708 | localId(name.second, nextUnusedId(hashval % softTypeIdLimit + firstMappedID)); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 709 | if (errorLatch) |
| 710 | return; |
| 711 | } |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 712 | } |
| 713 | } |
| 714 | |
| 715 | // Map fn contents to IDs of similar functions in other modules |
| 716 | void spirvbin_t::mapFnBodies() |
| 717 | { |
| 718 | static const std::uint32_t softTypeIdLimit = 19071; // small prime. TODO: get from options |
| 719 | static const std::uint32_t firstMappedID = 6203; // offset into ID space |
| 720 | |
| 721 | // Initial approach: go through some high priority opcodes first and assign them |
| 722 | // hash values. |
| 723 | |
| 724 | spv::Id fnId = spv::NoResult; |
| 725 | std::vector<unsigned> instPos; |
| 726 | instPos.reserve(unsigned(spv.size()) / 16); // initial estimate; can grow if needed. |
| 727 | |
| 728 | // Build local table of instruction start positions |
| 729 | process( |
| 730 | [&](spv::Op, unsigned start) { instPos.push_back(start); return true; }, |
| 731 | op_fn_nop); |
| 732 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 733 | if (errorLatch) |
| 734 | return; |
| 735 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 736 | // Window size for context-sensitive canonicalization values |
Eric Engestrom | 6a6d6dd | 2016-04-03 01:17:13 +0100 | [diff] [blame] | 737 | // Empirical best size from a single data set. TODO: Would be a good tunable. |
GregF | 8548bab | 2016-02-01 16:44:57 -0700 | [diff] [blame] | 738 | // We essentially perform a little convolution around each instruction, |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 739 | // to capture the flavor of nearby code, to hopefully match to similar |
| 740 | // code in other modules. |
| 741 | static const unsigned windowSize = 2; |
| 742 | |
| 743 | for (unsigned entry = 0; entry < unsigned(instPos.size()); ++entry) { |
| 744 | const unsigned start = instPos[entry]; |
| 745 | const spv::Op opCode = asOpCode(start); |
| 746 | |
| 747 | if (opCode == spv::OpFunction) |
| 748 | fnId = asId(start + 2); |
| 749 | |
| 750 | if (opCode == spv::OpFunctionEnd) |
| 751 | fnId = spv::NoResult; |
| 752 | |
| 753 | if (fnId != spv::NoResult) { // if inside a function |
| 754 | if (spv::InstructionDesc[opCode].hasResult()) { |
| 755 | const unsigned word = start + (spv::InstructionDesc[opCode].hasType() ? 2 : 1); |
| 756 | const spv::Id resId = asId(word); |
| 757 | std::uint32_t hashval = fnId * 17; // small prime |
| 758 | |
| 759 | for (unsigned i = entry-1; i >= entry-windowSize; --i) { |
| 760 | if (asOpCode(instPos[i]) == spv::OpFunction) |
| 761 | break; |
| 762 | hashval = hashval * 30103 + asOpCodeHash(instPos[i]); // 30103 = semiarbitrary prime |
| 763 | } |
| 764 | |
| 765 | for (unsigned i = entry; i <= entry + windowSize; ++i) { |
| 766 | if (asOpCode(instPos[i]) == spv::OpFunctionEnd) |
| 767 | break; |
| 768 | hashval = hashval * 30103 + asOpCodeHash(instPos[i]); // 30103 = semiarbitrary prime |
| 769 | } |
| 770 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 771 | if (isOldIdUnmapped(resId)) { |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 772 | localId(resId, nextUnusedId(hashval % softTypeIdLimit + firstMappedID)); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 773 | if (errorLatch) |
| 774 | return; |
| 775 | } |
| 776 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 777 | } |
| 778 | } |
| 779 | } |
| 780 | |
| 781 | spv::Op thisOpCode(spv::OpNop); |
| 782 | std::unordered_map<int, int> opCounter; |
| 783 | int idCounter(0); |
| 784 | fnId = spv::NoResult; |
| 785 | |
| 786 | process( |
| 787 | [&](spv::Op opCode, unsigned start) { |
| 788 | switch (opCode) { |
| 789 | case spv::OpFunction: |
| 790 | // Reset counters at each function |
| 791 | idCounter = 0; |
| 792 | opCounter.clear(); |
| 793 | fnId = asId(start + 2); |
| 794 | break; |
| 795 | |
John Kessenich | 5e4b124 | 2015-08-06 22:53:06 -0600 | [diff] [blame] | 796 | case spv::OpImageSampleImplicitLod: |
| 797 | case spv::OpImageSampleExplicitLod: |
| 798 | case spv::OpImageSampleDrefImplicitLod: |
| 799 | case spv::OpImageSampleDrefExplicitLod: |
| 800 | case spv::OpImageSampleProjImplicitLod: |
| 801 | case spv::OpImageSampleProjExplicitLod: |
| 802 | case spv::OpImageSampleProjDrefImplicitLod: |
| 803 | case spv::OpImageSampleProjDrefExplicitLod: |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 804 | case spv::OpDot: |
| 805 | case spv::OpCompositeExtract: |
| 806 | case spv::OpCompositeInsert: |
| 807 | case spv::OpVectorShuffle: |
| 808 | case spv::OpLabel: |
| 809 | case spv::OpVariable: |
| 810 | |
| 811 | case spv::OpAccessChain: |
| 812 | case spv::OpLoad: |
| 813 | case spv::OpStore: |
| 814 | case spv::OpCompositeConstruct: |
| 815 | case spv::OpFunctionCall: |
| 816 | ++opCounter[opCode]; |
| 817 | idCounter = 0; |
| 818 | thisOpCode = opCode; |
| 819 | break; |
| 820 | default: |
| 821 | thisOpCode = spv::OpNop; |
| 822 | } |
| 823 | |
| 824 | return false; |
| 825 | }, |
| 826 | |
| 827 | [&](spv::Id& id) { |
| 828 | if (thisOpCode != spv::OpNop) { |
| 829 | ++idCounter; |
| 830 | const std::uint32_t hashval = opCounter[thisOpCode] * thisOpCode * 50047 + idCounter + fnId * 117; |
| 831 | |
| 832 | if (isOldIdUnmapped(id)) |
| 833 | localId(id, nextUnusedId(hashval % softTypeIdLimit + firstMappedID)); |
| 834 | } |
| 835 | }); |
| 836 | } |
| 837 | |
| 838 | // EXPERIMENTAL: forward IO and uniform load/stores into operands |
| 839 | // This produces invalid Schema-0 SPIRV |
| 840 | void spirvbin_t::forwardLoadStores() |
| 841 | { |
| 842 | idset_t fnLocalVars; // set of function local vars |
| 843 | idmap_t idMap; // Map of load result IDs to what they load |
| 844 | |
| 845 | // EXPERIMENTAL: Forward input and access chain loads into consumptions |
| 846 | process( |
| 847 | [&](spv::Op opCode, unsigned start) { |
| 848 | // Add inputs and uniforms to the map |
John Kessenich | 5e4b124 | 2015-08-06 22:53:06 -0600 | [diff] [blame] | 849 | if ((opCode == spv::OpVariable && asWordCount(start) == 4) && |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 850 | (spv[start+3] == spv::StorageClassUniform || |
| 851 | spv[start+3] == spv::StorageClassUniformConstant || |
| 852 | spv[start+3] == spv::StorageClassInput)) |
| 853 | fnLocalVars.insert(asId(start+2)); |
| 854 | |
| 855 | if (opCode == spv::OpAccessChain && fnLocalVars.count(asId(start+3)) > 0) |
| 856 | fnLocalVars.insert(asId(start+2)); |
| 857 | |
| 858 | if (opCode == spv::OpLoad && fnLocalVars.count(asId(start+3)) > 0) { |
| 859 | idMap[asId(start+2)] = asId(start+3); |
| 860 | stripInst(start); |
| 861 | } |
| 862 | |
| 863 | return false; |
| 864 | }, |
| 865 | |
| 866 | [&](spv::Id& id) { if (idMap.find(id) != idMap.end()) id = idMap[id]; } |
| 867 | ); |
| 868 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 869 | if (errorLatch) |
| 870 | return; |
| 871 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 872 | // EXPERIMENTAL: Implicit output stores |
| 873 | fnLocalVars.clear(); |
| 874 | idMap.clear(); |
| 875 | |
| 876 | process( |
| 877 | [&](spv::Op opCode, unsigned start) { |
| 878 | // Add inputs and uniforms to the map |
John Kessenich | 5e4b124 | 2015-08-06 22:53:06 -0600 | [diff] [blame] | 879 | if ((opCode == spv::OpVariable && asWordCount(start) == 4) && |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 880 | (spv[start+3] == spv::StorageClassOutput)) |
| 881 | fnLocalVars.insert(asId(start+2)); |
| 882 | |
| 883 | if (opCode == spv::OpStore && fnLocalVars.count(asId(start+1)) > 0) { |
| 884 | idMap[asId(start+2)] = asId(start+1); |
| 885 | stripInst(start); |
| 886 | } |
| 887 | |
| 888 | return false; |
| 889 | }, |
| 890 | op_fn_nop); |
| 891 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 892 | if (errorLatch) |
| 893 | return; |
| 894 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 895 | process( |
| 896 | inst_fn_nop, |
| 897 | [&](spv::Id& id) { if (idMap.find(id) != idMap.end()) id = idMap[id]; } |
| 898 | ); |
| 899 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 900 | if (errorLatch) |
| 901 | return; |
| 902 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 903 | strip(); // strip out data we decided to eliminate |
| 904 | } |
| 905 | |
GregF | 8548bab | 2016-02-01 16:44:57 -0700 | [diff] [blame] | 906 | // optimize loads and stores |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 907 | void spirvbin_t::optLoadStore() |
| 908 | { |
GregF | 8548bab | 2016-02-01 16:44:57 -0700 | [diff] [blame] | 909 | idset_t fnLocalVars; // candidates for removal (only locals) |
| 910 | idmap_t idMap; // Map of load result IDs to what they load |
| 911 | blockmap_t blockMap; // Map of IDs to blocks they first appear in |
| 912 | int blockNum = 0; // block count, to avoid crossing flow control |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 913 | |
| 914 | // Find all the function local pointers stored at most once, and not via access chains |
| 915 | process( |
| 916 | [&](spv::Op opCode, unsigned start) { |
| 917 | const int wordCount = asWordCount(start); |
| 918 | |
GregF | 8548bab | 2016-02-01 16:44:57 -0700 | [diff] [blame] | 919 | // Count blocks, so we can avoid crossing flow control |
| 920 | if (isFlowCtrl(opCode)) |
| 921 | ++blockNum; |
| 922 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 923 | // Add local variables to the map |
GregF | 796e15a | 2016-01-05 13:00:04 -0700 | [diff] [blame] | 924 | if ((opCode == spv::OpVariable && spv[start+3] == spv::StorageClassFunction && asWordCount(start) == 4)) { |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 925 | fnLocalVars.insert(asId(start+2)); |
GregF | 796e15a | 2016-01-05 13:00:04 -0700 | [diff] [blame] | 926 | return true; |
| 927 | } |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 928 | |
| 929 | // Ignore process vars referenced via access chain |
| 930 | if ((opCode == spv::OpAccessChain || opCode == spv::OpInBoundsAccessChain) && fnLocalVars.count(asId(start+3)) > 0) { |
| 931 | fnLocalVars.erase(asId(start+3)); |
| 932 | idMap.erase(asId(start+3)); |
GregF | 796e15a | 2016-01-05 13:00:04 -0700 | [diff] [blame] | 933 | return true; |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 934 | } |
| 935 | |
| 936 | if (opCode == spv::OpLoad && fnLocalVars.count(asId(start+3)) > 0) { |
GregF | 8548bab | 2016-02-01 16:44:57 -0700 | [diff] [blame] | 937 | const spv::Id varId = asId(start+3); |
| 938 | |
| 939 | // Avoid loads before stores |
| 940 | if (idMap.find(varId) == idMap.end()) { |
| 941 | fnLocalVars.erase(varId); |
| 942 | idMap.erase(varId); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 943 | } |
| 944 | |
| 945 | // don't do for volatile references |
| 946 | if (wordCount > 4 && (spv[start+4] & spv::MemoryAccessVolatileMask)) { |
GregF | 8548bab | 2016-02-01 16:44:57 -0700 | [diff] [blame] | 947 | fnLocalVars.erase(varId); |
| 948 | idMap.erase(varId); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 949 | } |
GregF | 8548bab | 2016-02-01 16:44:57 -0700 | [diff] [blame] | 950 | |
| 951 | // Handle flow control |
| 952 | if (blockMap.find(varId) == blockMap.end()) { |
| 953 | blockMap[varId] = blockNum; // track block we found it in. |
| 954 | } else if (blockMap[varId] != blockNum) { |
| 955 | fnLocalVars.erase(varId); // Ignore if crosses flow control |
| 956 | idMap.erase(varId); |
| 957 | } |
| 958 | |
GregF | 796e15a | 2016-01-05 13:00:04 -0700 | [diff] [blame] | 959 | return true; |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 960 | } |
| 961 | |
| 962 | if (opCode == spv::OpStore && fnLocalVars.count(asId(start+1)) > 0) { |
GregF | 8548bab | 2016-02-01 16:44:57 -0700 | [diff] [blame] | 963 | const spv::Id varId = asId(start+1); |
| 964 | |
| 965 | if (idMap.find(varId) == idMap.end()) { |
| 966 | idMap[varId] = asId(start+2); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 967 | } else { |
| 968 | // Remove if it has more than one store to the same pointer |
GregF | 8548bab | 2016-02-01 16:44:57 -0700 | [diff] [blame] | 969 | fnLocalVars.erase(varId); |
| 970 | idMap.erase(varId); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 971 | } |
| 972 | |
| 973 | // don't do for volatile references |
| 974 | if (wordCount > 3 && (spv[start+3] & spv::MemoryAccessVolatileMask)) { |
| 975 | fnLocalVars.erase(asId(start+3)); |
| 976 | idMap.erase(asId(start+3)); |
| 977 | } |
GregF | 8548bab | 2016-02-01 16:44:57 -0700 | [diff] [blame] | 978 | |
| 979 | // Handle flow control |
| 980 | if (blockMap.find(varId) == blockMap.end()) { |
| 981 | blockMap[varId] = blockNum; // track block we found it in. |
| 982 | } else if (blockMap[varId] != blockNum) { |
| 983 | fnLocalVars.erase(varId); // Ignore if crosses flow control |
| 984 | idMap.erase(varId); |
| 985 | } |
| 986 | |
GregF | 796e15a | 2016-01-05 13:00:04 -0700 | [diff] [blame] | 987 | return true; |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 988 | } |
| 989 | |
GregF | 796e15a | 2016-01-05 13:00:04 -0700 | [diff] [blame] | 990 | return false; |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 991 | }, |
GregF | 796e15a | 2016-01-05 13:00:04 -0700 | [diff] [blame] | 992 | |
| 993 | // If local var id used anywhere else, don't eliminate |
John Kessenich | ecba76f | 2017-01-06 00:34:48 -0700 | [diff] [blame] | 994 | [&](spv::Id& id) { |
GregF | 796e15a | 2016-01-05 13:00:04 -0700 | [diff] [blame] | 995 | if (fnLocalVars.count(id) > 0) { |
| 996 | fnLocalVars.erase(id); |
| 997 | idMap.erase(id); |
| 998 | } |
| 999 | } |
| 1000 | ); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1001 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1002 | if (errorLatch) |
| 1003 | return; |
| 1004 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1005 | process( |
| 1006 | [&](spv::Op opCode, unsigned start) { |
| 1007 | if (opCode == spv::OpLoad && fnLocalVars.count(asId(start+3)) > 0) |
| 1008 | idMap[asId(start+2)] = idMap[asId(start+3)]; |
| 1009 | return false; |
| 1010 | }, |
| 1011 | op_fn_nop); |
| 1012 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1013 | if (errorLatch) |
| 1014 | return; |
| 1015 | |
GregF | 8548bab | 2016-02-01 16:44:57 -0700 | [diff] [blame] | 1016 | // Chase replacements to their origins, in case there is a chain such as: |
| 1017 | // 2 = store 1 |
| 1018 | // 3 = load 2 |
| 1019 | // 4 = store 3 |
| 1020 | // 5 = load 4 |
| 1021 | // We want to replace uses of 5 with 1. |
| 1022 | for (const auto& idPair : idMap) { |
| 1023 | spv::Id id = idPair.first; |
| 1024 | while (idMap.find(id) != idMap.end()) // Chase to end of chain |
| 1025 | id = idMap[id]; |
| 1026 | |
| 1027 | idMap[idPair.first] = id; // replace with final result |
| 1028 | } |
| 1029 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1030 | // Remove the load/store/variables for the ones we've discovered |
| 1031 | process( |
| 1032 | [&](spv::Op opCode, unsigned start) { |
| 1033 | if ((opCode == spv::OpLoad && fnLocalVars.count(asId(start+3)) > 0) || |
| 1034 | (opCode == spv::OpStore && fnLocalVars.count(asId(start+1)) > 0) || |
| 1035 | (opCode == spv::OpVariable && fnLocalVars.count(asId(start+2)) > 0)) { |
GregF | 8548bab | 2016-02-01 16:44:57 -0700 | [diff] [blame] | 1036 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1037 | stripInst(start); |
| 1038 | return true; |
| 1039 | } |
| 1040 | |
| 1041 | return false; |
| 1042 | }, |
| 1043 | |
GregF | 8548bab | 2016-02-01 16:44:57 -0700 | [diff] [blame] | 1044 | [&](spv::Id& id) { |
| 1045 | if (idMap.find(id) != idMap.end()) id = idMap[id]; |
| 1046 | } |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1047 | ); |
| 1048 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1049 | if (errorLatch) |
| 1050 | return; |
| 1051 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1052 | strip(); // strip out data we decided to eliminate |
| 1053 | } |
| 1054 | |
| 1055 | // remove bodies of uncalled functions |
| 1056 | void spirvbin_t::dceFuncs() |
| 1057 | { |
| 1058 | msg(3, 2, std::string("Removing Dead Functions: ")); |
| 1059 | |
| 1060 | // TODO: There are more efficient ways to do this. |
| 1061 | bool changed = true; |
| 1062 | |
| 1063 | while (changed) { |
| 1064 | changed = false; |
| 1065 | |
| 1066 | for (auto fn = fnPos.begin(); fn != fnPos.end(); ) { |
| 1067 | if (fn->first == entryPoint) { // don't DCE away the entry point! |
| 1068 | ++fn; |
| 1069 | continue; |
| 1070 | } |
| 1071 | |
| 1072 | const auto call_it = fnCalls.find(fn->first); |
| 1073 | |
| 1074 | if (call_it == fnCalls.end() || call_it->second == 0) { |
| 1075 | changed = true; |
| 1076 | stripRange.push_back(fn->second); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1077 | |
| 1078 | // decrease counts of called functions |
| 1079 | process( |
| 1080 | [&](spv::Op opCode, unsigned start) { |
| 1081 | if (opCode == spv::Op::OpFunctionCall) { |
| 1082 | const auto call_it = fnCalls.find(asId(start + 3)); |
| 1083 | if (call_it != fnCalls.end()) { |
| 1084 | if (--call_it->second <= 0) |
| 1085 | fnCalls.erase(call_it); |
| 1086 | } |
| 1087 | } |
| 1088 | |
| 1089 | return true; |
| 1090 | }, |
| 1091 | op_fn_nop, |
| 1092 | fn->second.first, |
| 1093 | fn->second.second); |
| 1094 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1095 | if (errorLatch) |
| 1096 | return; |
| 1097 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1098 | fn = fnPos.erase(fn); |
| 1099 | } else ++fn; |
| 1100 | } |
| 1101 | } |
| 1102 | } |
| 1103 | |
| 1104 | // remove unused function variables + decorations |
| 1105 | void spirvbin_t::dceVars() |
| 1106 | { |
| 1107 | msg(3, 2, std::string("DCE Vars: ")); |
| 1108 | |
| 1109 | std::unordered_map<spv::Id, int> varUseCount; |
| 1110 | |
| 1111 | // Count function variable use |
| 1112 | process( |
| 1113 | [&](spv::Op opCode, unsigned start) { |
GregF | 39d5e71 | 2016-06-03 09:53:47 -0600 | [diff] [blame] | 1114 | if (opCode == spv::OpVariable) { |
| 1115 | ++varUseCount[asId(start+2)]; |
| 1116 | return true; |
| 1117 | } else if (opCode == spv::OpEntryPoint) { |
| 1118 | const int wordCount = asWordCount(start); |
| 1119 | for (int i = 4; i < wordCount; i++) { |
| 1120 | ++varUseCount[asId(start+i)]; |
| 1121 | } |
| 1122 | return true; |
| 1123 | } else |
| 1124 | return false; |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1125 | }, |
| 1126 | |
| 1127 | [&](spv::Id& id) { if (varUseCount[id]) ++varUseCount[id]; } |
| 1128 | ); |
| 1129 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1130 | if (errorLatch) |
| 1131 | return; |
| 1132 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1133 | // Remove single-use function variables + associated decorations and names |
| 1134 | process( |
| 1135 | [&](spv::Op opCode, unsigned start) { |
steve-lunarg | 297754c | 2016-12-09 11:13:23 -0700 | [diff] [blame] | 1136 | spv::Id id = spv::NoResult; |
| 1137 | if (opCode == spv::OpVariable) |
| 1138 | id = asId(start+2); |
| 1139 | if (opCode == spv::OpDecorate || opCode == spv::OpName) |
| 1140 | id = asId(start+1); |
| 1141 | |
| 1142 | if (id != spv::NoResult && varUseCount[id] == 1) |
| 1143 | stripInst(start); |
| 1144 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1145 | return true; |
| 1146 | }, |
| 1147 | op_fn_nop); |
| 1148 | } |
| 1149 | |
| 1150 | // remove unused types |
| 1151 | void spirvbin_t::dceTypes() |
| 1152 | { |
| 1153 | std::vector<bool> isType(bound(), false); |
| 1154 | |
| 1155 | // for speed, make O(1) way to get to type query (map is log(n)) |
| 1156 | for (const auto typeStart : typeConstPos) |
| 1157 | isType[asTypeConstId(typeStart)] = true; |
| 1158 | |
| 1159 | std::unordered_map<spv::Id, int> typeUseCount; |
| 1160 | |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 1161 | // This is not the most efficient algorithm, but this is an offline tool, and |
| 1162 | // it's easy to write this way. Can be improved opportunistically if needed. |
| 1163 | bool changed = true; |
| 1164 | while (changed) { |
| 1165 | changed = false; |
| 1166 | strip(); |
| 1167 | typeUseCount.clear(); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1168 | |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 1169 | // Count total type usage |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1170 | process(inst_fn_nop, |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 1171 | [&](spv::Id& id) { if (isType[id]) ++typeUseCount[id]; } |
| 1172 | ); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1173 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1174 | if (errorLatch) |
| 1175 | return; |
| 1176 | |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 1177 | // Remove single reference types |
| 1178 | for (const auto typeStart : typeConstPos) { |
| 1179 | const spv::Id typeId = asTypeConstId(typeStart); |
| 1180 | if (typeUseCount[typeId] == 1) { |
| 1181 | changed = true; |
| 1182 | --typeUseCount[typeId]; |
| 1183 | stripInst(typeStart); |
| 1184 | } |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1185 | } |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1186 | |
| 1187 | if (errorLatch) |
| 1188 | return; |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1189 | } |
| 1190 | } |
| 1191 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1192 | #ifdef NOTDEF |
| 1193 | bool spirvbin_t::matchType(const spirvbin_t::globaltypes_t& globalTypes, spv::Id lt, spv::Id gt) const |
| 1194 | { |
| 1195 | // Find the local type id "lt" and global type id "gt" |
| 1196 | const auto lt_it = typeConstPosR.find(lt); |
| 1197 | if (lt_it == typeConstPosR.end()) |
| 1198 | return false; |
| 1199 | |
| 1200 | const auto typeStart = lt_it->second; |
| 1201 | |
| 1202 | // Search for entry in global table |
| 1203 | const auto gtype = globalTypes.find(gt); |
| 1204 | if (gtype == globalTypes.end()) |
| 1205 | return false; |
| 1206 | |
| 1207 | const auto& gdata = gtype->second; |
| 1208 | |
| 1209 | // local wordcount and opcode |
| 1210 | const int wordCount = asWordCount(typeStart); |
| 1211 | const spv::Op opCode = asOpCode(typeStart); |
| 1212 | |
| 1213 | // no type match if opcodes don't match, or operand count doesn't match |
| 1214 | if (opCode != opOpCode(gdata[0]) || wordCount != opWordCount(gdata[0])) |
| 1215 | return false; |
| 1216 | |
| 1217 | const unsigned numOperands = wordCount - 2; // all types have a result |
| 1218 | |
| 1219 | const auto cmpIdRange = [&](range_t range) { |
| 1220 | for (int x=range.first; x<std::min(range.second, wordCount); ++x) |
| 1221 | if (!matchType(globalTypes, asId(typeStart+x), gdata[x])) |
| 1222 | return false; |
| 1223 | return true; |
| 1224 | }; |
| 1225 | |
| 1226 | const auto cmpConst = [&]() { return cmpIdRange(constRange(opCode)); }; |
| 1227 | const auto cmpSubType = [&]() { return cmpIdRange(typeRange(opCode)); }; |
| 1228 | |
| 1229 | // Compare literals in range [start,end) |
| 1230 | const auto cmpLiteral = [&]() { |
| 1231 | const auto range = literalRange(opCode); |
| 1232 | return std::equal(spir.begin() + typeStart + range.first, |
| 1233 | spir.begin() + typeStart + std::min(range.second, wordCount), |
| 1234 | gdata.begin() + range.first); |
| 1235 | }; |
| 1236 | |
| 1237 | assert(isTypeOp(opCode) || isConstOp(opCode)); |
| 1238 | |
| 1239 | switch (opCode) { |
| 1240 | case spv::OpTypeOpaque: // TODO: disable until we compare the literal strings. |
| 1241 | case spv::OpTypeQueue: return false; |
| 1242 | case spv::OpTypeEvent: // fall through... |
| 1243 | case spv::OpTypeDeviceEvent: // ... |
| 1244 | case spv::OpTypeReserveId: return false; |
| 1245 | // for samplers, we don't handle the optional parameters yet |
| 1246 | case spv::OpTypeSampler: return cmpLiteral() && cmpConst() && cmpSubType() && wordCount == 8; |
| 1247 | default: return cmpLiteral() && cmpConst() && cmpSubType(); |
| 1248 | } |
| 1249 | } |
| 1250 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1251 | // Look for an equivalent type in the globalTypes map |
| 1252 | spv::Id spirvbin_t::findType(const spirvbin_t::globaltypes_t& globalTypes, spv::Id lt) const |
| 1253 | { |
| 1254 | // Try a recursive type match on each in turn, and return a match if we find one |
| 1255 | for (const auto& gt : globalTypes) |
| 1256 | if (matchType(globalTypes, lt, gt.first)) |
| 1257 | return gt.first; |
| 1258 | |
| 1259 | return spv::NoType; |
| 1260 | } |
| 1261 | #endif // NOTDEF |
| 1262 | |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 1263 | // Return start position in SPV of given Id. error if not found. |
| 1264 | unsigned spirvbin_t::idPos(spv::Id id) const |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1265 | { |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 1266 | const auto tid_it = idPosR.find(id); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1267 | if (tid_it == idPosR.end()) { |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 1268 | error("ID not found"); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1269 | return 0; |
| 1270 | } |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1271 | |
| 1272 | return tid_it->second; |
| 1273 | } |
| 1274 | |
| 1275 | // Hash types to canonical values. This can return ID collisions (it's a bit |
| 1276 | // inevitable): it's up to the caller to handle that gracefully. |
| 1277 | std::uint32_t spirvbin_t::hashType(unsigned typeStart) const |
| 1278 | { |
| 1279 | const unsigned wordCount = asWordCount(typeStart); |
| 1280 | const spv::Op opCode = asOpCode(typeStart); |
| 1281 | |
| 1282 | switch (opCode) { |
| 1283 | case spv::OpTypeVoid: return 0; |
| 1284 | case spv::OpTypeBool: return 1; |
| 1285 | case spv::OpTypeInt: return 3 + (spv[typeStart+3]); |
| 1286 | case spv::OpTypeFloat: return 5; |
| 1287 | case spv::OpTypeVector: |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 1288 | return 6 + hashType(idPos(spv[typeStart+2])) * (spv[typeStart+3] - 1); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1289 | case spv::OpTypeMatrix: |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 1290 | return 30 + hashType(idPos(spv[typeStart+2])) * (spv[typeStart+3] - 1); |
John Kessenich | 5e4b124 | 2015-08-06 22:53:06 -0600 | [diff] [blame] | 1291 | case spv::OpTypeImage: |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 1292 | return 120 + hashType(idPos(spv[typeStart+2])) + |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1293 | spv[typeStart+3] + // dimensionality |
John Kessenich | 5e4b124 | 2015-08-06 22:53:06 -0600 | [diff] [blame] | 1294 | spv[typeStart+4] * 8 * 16 + // depth |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1295 | spv[typeStart+5] * 4 * 16 + // arrayed |
John Kessenich | 5e4b124 | 2015-08-06 22:53:06 -0600 | [diff] [blame] | 1296 | spv[typeStart+6] * 2 * 16 + // multisampled |
| 1297 | spv[typeStart+7] * 1 * 16; // format |
| 1298 | case spv::OpTypeSampler: |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1299 | return 500; |
Steve | 3573f2e | 2015-08-11 09:20:14 -0600 | [diff] [blame] | 1300 | case spv::OpTypeSampledImage: |
| 1301 | return 502; |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1302 | case spv::OpTypeArray: |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 1303 | return 501 + hashType(idPos(spv[typeStart+2])) * spv[typeStart+3]; |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1304 | case spv::OpTypeRuntimeArray: |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 1305 | return 5000 + hashType(idPos(spv[typeStart+2])); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1306 | case spv::OpTypeStruct: |
| 1307 | { |
| 1308 | std::uint32_t hash = 10000; |
| 1309 | for (unsigned w=2; w < wordCount; ++w) |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 1310 | hash += w * hashType(idPos(spv[typeStart+w])); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1311 | return hash; |
| 1312 | } |
| 1313 | |
| 1314 | case spv::OpTypeOpaque: return 6000 + spv[typeStart+2]; |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 1315 | case spv::OpTypePointer: return 100000 + hashType(idPos(spv[typeStart+3])); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1316 | case spv::OpTypeFunction: |
| 1317 | { |
| 1318 | std::uint32_t hash = 200000; |
| 1319 | for (unsigned w=2; w < wordCount; ++w) |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 1320 | hash += w * hashType(idPos(spv[typeStart+w])); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1321 | return hash; |
| 1322 | } |
| 1323 | |
| 1324 | case spv::OpTypeEvent: return 300000; |
| 1325 | case spv::OpTypeDeviceEvent: return 300001; |
| 1326 | case spv::OpTypeReserveId: return 300002; |
| 1327 | case spv::OpTypeQueue: return 300003; |
| 1328 | case spv::OpTypePipe: return 300004; |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1329 | case spv::OpConstantTrue: return 300007; |
| 1330 | case spv::OpConstantFalse: return 300008; |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1331 | case spv::OpConstantComposite: |
| 1332 | { |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 1333 | std::uint32_t hash = 300011 + hashType(idPos(spv[typeStart+1])); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1334 | for (unsigned w=3; w < wordCount; ++w) |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 1335 | hash += w * hashType(idPos(spv[typeStart+w])); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1336 | return hash; |
| 1337 | } |
| 1338 | case spv::OpConstant: |
| 1339 | { |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 1340 | std::uint32_t hash = 400011 + hashType(idPos(spv[typeStart+1])); |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1341 | for (unsigned w=3; w < wordCount; ++w) |
| 1342 | hash += w * spv[typeStart+w]; |
| 1343 | return hash; |
| 1344 | } |
GregF | c6831d1 | 2018-06-19 13:47:50 -0600 | [diff] [blame] | 1345 | case spv::OpConstantNull: |
| 1346 | { |
| 1347 | std::uint32_t hash = 500009 + hashType(idPos(spv[typeStart+1])); |
| 1348 | return hash; |
| 1349 | } |
| 1350 | case spv::OpConstantSampler: |
| 1351 | { |
| 1352 | std::uint32_t hash = 600011 + hashType(idPos(spv[typeStart+1])); |
| 1353 | for (unsigned w=3; w < wordCount; ++w) |
| 1354 | hash += w * spv[typeStart+w]; |
| 1355 | return hash; |
| 1356 | } |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1357 | |
| 1358 | default: |
| 1359 | error("unknown type opcode"); |
| 1360 | return 0; |
| 1361 | } |
| 1362 | } |
| 1363 | |
| 1364 | void spirvbin_t::mapTypeConst() |
| 1365 | { |
| 1366 | globaltypes_t globalTypeMap; |
| 1367 | |
| 1368 | msg(3, 2, std::string("Remapping Consts & Types: ")); |
| 1369 | |
| 1370 | static const std::uint32_t softTypeIdLimit = 3011; // small prime. TODO: get from options |
| 1371 | static const std::uint32_t firstMappedID = 8; // offset into ID space |
| 1372 | |
| 1373 | for (auto& typeStart : typeConstPos) { |
| 1374 | const spv::Id resId = asTypeConstId(typeStart); |
| 1375 | const std::uint32_t hashval = hashType(typeStart); |
| 1376 | |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1377 | if (errorLatch) |
| 1378 | return; |
| 1379 | |
| 1380 | if (isOldIdUnmapped(resId)) { |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1381 | localId(resId, nextUnusedId(hashval % softTypeIdLimit + firstMappedID)); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1382 | if (errorLatch) |
| 1383 | return; |
| 1384 | } |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1385 | } |
| 1386 | } |
| 1387 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1388 | // Strip a single binary by removing ranges given in stripRange |
| 1389 | void spirvbin_t::strip() |
| 1390 | { |
| 1391 | if (stripRange.empty()) // nothing to do |
| 1392 | return; |
| 1393 | |
| 1394 | // Sort strip ranges in order of traversal |
| 1395 | std::sort(stripRange.begin(), stripRange.end()); |
| 1396 | |
| 1397 | // Allocate a new binary big enough to hold old binary |
| 1398 | // We'll step this iterator through the strip ranges as we go through the binary |
| 1399 | auto strip_it = stripRange.begin(); |
| 1400 | |
| 1401 | int strippedPos = 0; |
| 1402 | for (unsigned word = 0; word < unsigned(spv.size()); ++word) { |
GregF | e86b4c8 | 2017-11-02 14:01:57 -0600 | [diff] [blame] | 1403 | while (strip_it != stripRange.end() && word >= strip_it->second) |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1404 | ++strip_it; |
| 1405 | |
| 1406 | if (strip_it == stripRange.end() || word < strip_it->first || word >= strip_it->second) |
| 1407 | spv[strippedPos++] = spv[word]; |
| 1408 | } |
| 1409 | |
| 1410 | spv.resize(strippedPos); |
| 1411 | stripRange.clear(); |
| 1412 | |
| 1413 | buildLocalMaps(); |
| 1414 | } |
| 1415 | |
| 1416 | // Strip a single binary by removing ranges given in stripRange |
| 1417 | void spirvbin_t::remap(std::uint32_t opts) |
| 1418 | { |
| 1419 | options = opts; |
| 1420 | |
| 1421 | // Set up opcode tables from SpvDoc |
| 1422 | spv::Parameterize(); |
| 1423 | |
steve-lunarg | 297754c | 2016-12-09 11:13:23 -0700 | [diff] [blame] | 1424 | validate(); // validate header |
| 1425 | buildLocalMaps(); // build ID maps |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1426 | |
| 1427 | msg(3, 4, std::string("ID bound: ") + std::to_string(bound())); |
| 1428 | |
steve-lunarg | 297754c | 2016-12-09 11:13:23 -0700 | [diff] [blame] | 1429 | if (options & STRIP) stripDebug(); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1430 | if (errorLatch) return; |
| 1431 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1432 | strip(); // strip out data we decided to eliminate |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1433 | if (errorLatch) return; |
| 1434 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1435 | if (options & OPT_LOADSTORE) optLoadStore(); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1436 | if (errorLatch) return; |
| 1437 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1438 | if (options & OPT_FWD_LS) forwardLoadStores(); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1439 | if (errorLatch) return; |
| 1440 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1441 | if (options & DCE_FUNCS) dceFuncs(); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1442 | if (errorLatch) return; |
| 1443 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1444 | if (options & DCE_VARS) dceVars(); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1445 | if (errorLatch) return; |
| 1446 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1447 | if (options & DCE_TYPES) dceTypes(); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1448 | if (errorLatch) return; |
steve-lunarg | 297754c | 2016-12-09 11:13:23 -0700 | [diff] [blame] | 1449 | |
| 1450 | strip(); // strip out data we decided to eliminate |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1451 | if (errorLatch) return; |
| 1452 | |
steve-lunarg | 297754c | 2016-12-09 11:13:23 -0700 | [diff] [blame] | 1453 | stripDeadRefs(); // remove references to things we DCEed |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1454 | if (errorLatch) return; |
| 1455 | |
steve-lunarg | 297754c | 2016-12-09 11:13:23 -0700 | [diff] [blame] | 1456 | // after the last strip, we must clean any debug info referring to now-deleted data |
steve-lunarg | 811d9f4 | 2016-08-17 08:33:49 -0600 | [diff] [blame] | 1457 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1458 | if (options & MAP_TYPES) mapTypeConst(); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1459 | if (errorLatch) return; |
| 1460 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1461 | if (options & MAP_NAMES) mapNames(); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1462 | if (errorLatch) return; |
| 1463 | |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1464 | if (options & MAP_FUNCS) mapFnBodies(); |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1465 | if (errorLatch) return; |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1466 | |
steve-lunarg | 297754c | 2016-12-09 11:13:23 -0700 | [diff] [blame] | 1467 | if (options & MAP_ALL) { |
| 1468 | mapRemainder(); // map any unmapped IDs |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1469 | if (errorLatch) return; |
| 1470 | |
steve-lunarg | 297754c | 2016-12-09 11:13:23 -0700 | [diff] [blame] | 1471 | applyMap(); // Now remap each shader to the new IDs we've come up with |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 1472 | if (errorLatch) return; |
steve-lunarg | 297754c | 2016-12-09 11:13:23 -0700 | [diff] [blame] | 1473 | } |
John Kessenich | 140f3df | 2015-06-26 16:58:36 -0600 | [diff] [blame] | 1474 | } |
| 1475 | |
| 1476 | // remap from a memory image |
| 1477 | void spirvbin_t::remap(std::vector<std::uint32_t>& in_spv, std::uint32_t opts) |
| 1478 | { |
| 1479 | spv.swap(in_spv); |
| 1480 | remap(opts); |
| 1481 | spv.swap(in_spv); |
| 1482 | } |
| 1483 | |
| 1484 | } // namespace SPV |
| 1485 | |
| 1486 | #endif // defined (use_cpp11) |
| 1487 | |