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
|
//===- SPIRVUtil.h - SPIR-V Utility Functions -------------------*- C++ -*-===//
//
// The LLVM/SPIRV Translator
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
// Copyright (c) 2014 Advanced Micro Devices, Inc. All rights reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal with the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimers.
// Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimers in the documentation
// and/or other materials provided with the distribution.
// Neither the names of Advanced Micro Devices, Inc., nor the names of its
// contributors may be used to endorse or promote products derived from this
// Software without specific prior written permission.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH
// THE SOFTWARE.
//
//===----------------------------------------------------------------------===//
/// \file
///
/// This file defines SPIR-V utility functions.
///
//===----------------------------------------------------------------------===//
#ifndef SPIRV_LIBSPIRV_SPIRVUTIL_H
#define SPIRV_LIBSPIRV_SPIRVUTIL_H
#include <ostream>
#define spv_ostream std::ostream
#include "llvm/Support/raw_ostream.h"
#include <algorithm>
#include <cassert>
#include <cstdint>
#include <functional>
#include <limits>
#include <map>
#include <set>
#include <sstream>
#include <string>
#include <unordered_set>
#include <vector>
// MSVC supports "magic statics" since MSVS 2015.
// For the previous version of MSVS we should guard
// initialization of local static variables.
#if defined(_MSC_VER) && (_MSC_VER < 1900)
#include "llvm/Support/Mutex.h"
#include "llvm/Support/MutexGuard.h"
#endif // LLVM_MSC_PREREQ(1900)
namespace SPIRV {
#if defined(_MSC_VER) && (_MSC_VER < 1900)
static llvm::sys::Mutex MapLock;
#endif // LLVM_MSC_PREREQ(1900)
#define SPIRV_DEF_NAMEMAP(Type, MapType) \
typedef SPIRVMap<Type, std::string>(MapType); \
inline MapType getNameMap(Type) { \
MapType MT; \
return MT; \
}
constexpr unsigned MaxWordCount = UINT16_MAX;
// A bi-way map
template <class Ty1, class Ty2, class Identifier = void> struct SPIRVMap {
public:
typedef Ty1 KeyTy;
typedef Ty2 ValueTy;
// Initialize map entries
void init();
static Ty2 map(Ty1 Key) {
Ty2 Val = {};
bool Found = find(Key, &Val);
(void)Found;
assert(Found && "Invalid key");
return Val;
}
static Ty1 rmap(Ty2 Key) {
Ty1 Val = {};
bool Found = rfind(Key, &Val);
(void)Found;
assert(Found && "Invalid key");
return Val;
}
static const SPIRVMap &getMap() {
#if defined(_MSC_VER) && (_MSC_VER < 1900)
llvm::sys::ScopedLock mapGuard(MapLock);
#endif // LLVM_MSC_PREREQ(1900)
static const SPIRVMap Map(false);
return Map;
}
static const SPIRVMap &getRMap() {
#if defined(_MSC_VER) && (_MSC_VER < 1900)
llvm::sys::ScopedLock mapGuard(MapLock);
#endif // LLVM_MSC_PREREQ(1900)
static const SPIRVMap Map(true);
return Map;
}
static void foreach (std::function<void(Ty1, Ty2)> F) {
for (auto &I : getMap().Map)
F(I.first, I.second);
}
// For each key/value in the map executes function \p F.
// If \p F returns false break the iteration.
static void foreachConditional(std::function<bool(const Ty1 &, Ty2)> F) {
for (auto &I : getMap().Map) {
if (!F(I.first, I.second))
break;
}
}
static bool find(Ty1 Key, Ty2 *Val = nullptr) {
const SPIRVMap &Map = getMap();
typename MapTy::const_iterator Loc = Map.Map.find(Key);
if (Loc == Map.Map.end())
return false;
if (Val)
*Val = Loc->second;
return true;
}
static bool rfind(Ty2 Key, Ty1 *Val = nullptr) {
const SPIRVMap &Map = getRMap();
typename RevMapTy::const_iterator Loc = Map.RevMap.find(Key);
if (Loc == Map.RevMap.end())
return false;
if (Val)
*Val = Loc->second;
return true;
}
SPIRVMap() : IsReverse(false) {}
protected:
SPIRVMap(bool Reverse) : IsReverse(Reverse) { init(); }
typedef std::map<Ty1, Ty2> MapTy;
typedef std::map<Ty2, Ty1> RevMapTy;
void add(Ty1 V1, Ty2 V2) {
if (IsReverse) {
RevMap[V2] = V1;
return;
}
Map[V1] = V2;
}
MapTy Map;
RevMapTy RevMap;
bool IsReverse;
};
inline std::vector<std::string> getVec(const std::string &S, char Delim) {
std::vector<std::string> Strs;
std::stringstream SS(S);
std::string Item;
while (std::getline(SS, Item, Delim))
Strs.push_back(Item);
return Strs;
}
inline std::unordered_set<std::string> getUnordSet(const std::string &S,
char Delim = ' ') {
std::unordered_set<std::string> Strs;
std::stringstream SS(S);
std::string Item;
while (std::getline(SS, Item, Delim))
Strs.insert(Item);
return Strs;
}
inline std::set<std::string> getSet(const std::string &S, char Delim = ' ') {
std::set<std::string> Strs;
std::stringstream SS(S);
std::string Item;
while (std::getline(SS, Item, Delim))
Strs.insert(Item);
return Strs;
}
template <typename VT, typename KT> VT map(KT Key) {
return SPIRVMap<KT, VT>::map(Key);
}
template <typename KT, typename VT> KT rmap(VT V) {
return SPIRVMap<KT, VT>::rmap(V);
}
template <typename VT, typename KT>
std::unordered_set<VT> map(const std::unordered_set<KT> &KSet) {
VT V;
std::unordered_set<VT> VSet;
for (auto &I : KSet)
if (SPIRVMap<KT, VT>::find(I, &V))
VSet.insert(V);
return VSet;
}
template <typename VT, typename KT> std::set<VT> map(const std::set<KT> &KSet) {
VT V;
std::set<VT> VSet;
for (auto &I : KSet)
if (SPIRVMap<KT, VT>::find(I, &V))
VSet.insert(V);
return VSet;
}
template <typename KT, typename VT>
std::unordered_set<KT> rmap(const std::unordered_set<VT> &KSet) {
KT V;
std::unordered_set<KT> VSet;
for (auto &I : KSet)
if (SPIRVMap<KT, VT>::rfind(I, &V))
VSet.insert(V);
return VSet;
}
template <typename KT, typename VT>
std::set<KT> rmap(const std::set<VT> &KSet) {
KT V;
std::set<KT> VSet;
for (auto &I : KSet)
if (SPIRVMap<KT, VT>::rfind(I, &V))
VSet.insert(V);
return VSet;
}
template <typename KT, typename VT, typename Any>
std::set<KT> rmap(const std::map<VT, Any> &KMap) {
KT V;
std::set<KT> VSet;
for (auto &I : KMap)
if (SPIRVMap<KT, VT>::rfind(I.first, &V))
VSet.insert(V);
return VSet;
}
template <typename K> std::string getName(K Key) {
std::string Name;
if (SPIRVMap<K, std::string>::find(Key, &Name))
return Name;
return "";
}
template <typename K> bool getByName(const std::string &Name, K &Key) {
return SPIRVMap<K, std::string>::rfind(Name, &Key);
}
// Add a number as a string to a string
template <class T> std::string concat(const std::string &S, const T &N) {
std::stringstream Ss;
Ss << S << N;
return Ss.str();
}
inline std::string concat(const std::string &S1, const std::string &S2,
char Delim = ' ') {
std::string S;
if (S1.empty())
S = S2;
else if (!S2.empty())
S = S1 + Delim + S2;
return S;
}
inline std::string operator+(const std::string &S, int N) {
return concat(S, N);
}
inline std::string operator+(const std::string &S, unsigned N) {
return concat(S, N);
}
template <typename T> std::string getStr(const T &C, char Delim = ' ') {
std::stringstream SS;
bool First = true;
for (auto &I : C) {
if (!First)
SS << Delim;
else
First = false;
SS << I;
}
return SS.str();
}
template <class MapTy> unsigned mapBitMask(unsigned BM) {
unsigned Res = 0;
MapTy::foreach ([&](typename MapTy::KeyTy K, typename MapTy::ValueTy V) {
Res |= BM & (unsigned)K ? (unsigned)V : 0;
});
return Res;
}
template <class MapTy> unsigned rmapBitMask(unsigned BM) {
unsigned Res = 0;
MapTy::foreach ([&](typename MapTy::KeyTy K, typename MapTy::ValueTy V) {
Res |= BM & (unsigned)V ? (unsigned)K : 0;
});
return Res;
}
// Get the number of words used for encoding a string literal in SPIRV
inline unsigned getSizeInWords(const std::string &Str) {
assert(Str.length() / 4 + 1 <= std::numeric_limits<unsigned>::max());
return static_cast<unsigned>(Str.length() / 4 + 1);
}
inline std::string getString(std::vector<uint32_t>::const_iterator Begin,
std::vector<uint32_t>::const_iterator End) {
std::string Str = std::string();
for (auto I = Begin; I != End; ++I) {
uint32_t Word = *I;
for (unsigned J = 0u; J < 32u; J += 8u) {
char Char = (char)((Word >> J) & 0xff);
if (Char == '\0')
return Str;
Str += Char;
}
}
return Str;
}
inline std::string getString(const std::vector<uint32_t> &V) {
return getString(V.cbegin(), V.cend());
}
// if vector of Literals is expected to contain more than one Literal String
inline std::vector<std::string> getVecString(const std::vector<uint32_t> &V) {
std::vector<std::string> Result;
std::string Str;
for (auto It = V.cbegin(); It < V.cend(); It += getSizeInWords(Str)) {
Str.clear();
Str = getString(It, V.cend());
Result.push_back(Str);
}
return Result;
}
inline std::vector<uint32_t> getVec(const std::string &Str) {
std::vector<uint32_t> V;
auto StrSize = Str.size();
uint32_t CurrentWord = 0u;
for (unsigned I = 0u; I < StrSize; ++I) {
if (I % 4u == 0u && I != 0u) {
V.push_back(CurrentWord);
CurrentWord = 0u;
}
assert(Str[I] && "0 is not allowed in string");
CurrentWord += ((uint32_t)Str[I]) << ((I % 4u) * 8u);
}
if (CurrentWord != 0u)
V.push_back(CurrentWord);
if (StrSize % 4 == 0)
V.push_back(0);
return V;
}
template <typename T> inline std::set<T> getSet(T Op1) {
std::set<T> S;
S.insert(Op1);
return S;
}
template <typename T> inline std::vector<T> getVec(T Op1) {
std::vector<T> V;
V.push_back(Op1);
return V;
}
template <typename T> inline std::vector<T> getVec(T Op1, T Op2) {
std::vector<T> V;
V.push_back(Op1);
V.push_back(Op2);
return V;
}
template <typename T> inline std::vector<T> getVec(T Op1, T Op2, T Op3) {
std::vector<T> V;
V.push_back(Op1);
V.push_back(Op2);
V.push_back(Op3);
return V;
}
template <typename T>
inline std::vector<T> getVec(T Op1, const std::vector<T> &Ops2) {
std::vector<T> V;
V.push_back(Op1);
V.insert(V.end(), Ops2.begin(), Ops2.end());
return V;
}
template <typename MapTy, typename FuncTy>
typename MapTy::mapped_type
getOrInsert(MapTy &Map, typename MapTy::key_type Key, FuncTy Func) {
typename MapTy::iterator Loc = Map.find(Key);
if (Loc != Map.end())
return Loc->second;
typename MapTy::mapped_type NF = Func();
Map[Key] = NF;
return NF;
}
template <typename T> std::string toString(const T *Object) {
if (Object == nullptr)
return "";
std::string S;
llvm::raw_string_ostream RSOS(S);
Object->print(RSOS);
RSOS.flush();
return S;
}
} // namespace SPIRV
#endif // SPIRV_LIBSPIRV_SPIRVUTIL_H
|