Hash :
3e281219
Author :
Date :
2023-04-27T14:52:18
Adds feature to output blob cache key and source for shader Bug: chromium:1423136 Change-Id: Ic03e1b9971b2f1417c0b2e95c8d3846f28a01572 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/4480976 Reviewed-by: Kenneth Russell <kbr@chromium.org> Commit-Queue: Scott Violet <sky@chromium.org>
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
//
// Copyright 2023 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// mtl_library_cache.mm:
// Defines classes for caching of mtl libraries
//
#include "libANGLE/renderer/metal/mtl_library_cache.h"
#include <stdio.h>
#include <limits>
#include "common/MemoryBuffer.h"
#include "common/angleutils.h"
#include "common/hash_utils.h"
#include "common/mathutil.h"
#include "common/string_utils.h"
#include "common/system_utils.h"
#include "libANGLE/histogram_macros.h"
#include "libANGLE/renderer/metal/ContextMtl.h"
#include "libANGLE/renderer/metal/mtl_context_device.h"
#include "libANGLE/renderer/metal/process.h"
#include "platform/PlatformMethods.h"
namespace rx
{
namespace mtl
{
AutoObjCPtr<id<MTLLibrary>> LibraryCache::get(const std::string &source,
const std::map<std::string, std::string> ¯os,
bool enableFastMath)
{
LibraryKey::LValueTuple key = std::tie(source, macros, enableFastMath);
LibraryCache::LibraryCacheEntry &entry = getCacheEntry(key);
// Try to lock the entry and return the library if it exists. If we can't lock then it means
// another thread is currently compiling.
std::unique_lock<std::mutex> entryLockGuard(entry.lock, std::try_to_lock);
if (entryLockGuard)
{
return entry.library;
}
else
{
return nil;
}
}
namespace
{
// Reads a metallib file at the specified path.
angle::MemoryBuffer ReadMetallibFromFile(const std::string &path)
{
// TODO: optimize this to avoid the unnecessary strings.
std::string metallib;
if (!angle::ReadFileToString(path, &metallib))
{
FATAL() << "Failed reading back metallib";
}
angle::MemoryBuffer buffer;
if (!buffer.resize(metallib.size()))
{
FATAL() << "Failed to resize metallib buffer";
}
memcpy(buffer.data(), metallib.data(), metallib.size());
return buffer;
}
// Generates a key for the BlobCache based on the specified params.
egl::BlobCacheKey GenerateBlobCacheKeyForShaderLibrary(
const std::string &source,
const std::map<std::string, std::string> ¯os,
bool enableFastMath)
{
angle::base::SecureHashAlgorithm sha1;
sha1.Update(source.c_str(), source.size());
const size_t macro_count = macros.size();
sha1.Update(¯o_count, sizeof(size_t));
for (const auto ¯o : macros)
{
sha1.Update(macro.first.c_str(), macro.first.size());
sha1.Update(macro.second.c_str(), macro.second.size());
}
sha1.Update(&enableFastMath, sizeof(bool));
sha1.Final();
return sha1.DigestAsArray();
}
// Returns a new MTLLibrary from the specified data.
AutoObjCPtr<id<MTLLibrary>> NewMetalLibraryFromMetallib(ContextMtl *context,
const uint8_t *data,
size_t size)
{
ANGLE_MTL_OBJC_SCOPE
{
// Copy the data as the life of the BlobCache is not necessarily the same as that of the
// metallibrary.
auto mtl_data = dispatch_data_create(data, size, dispatch_get_main_queue(),
DISPATCH_DATA_DESTRUCTOR_DEFAULT);
NSError *nsError = nil;
return context->getMetalDevice().newLibraryWithData(mtl_data, &nsError);
}
}
} // namespace
AutoObjCPtr<id<MTLLibrary>> LibraryCache::getOrCompileShaderLibrary(
ContextMtl *context,
const std::string &source,
const std::map<std::string, std::string> ¯os,
bool enableFastMath,
AutoObjCPtr<NSError *> *errorOut)
{
const angle::FeaturesMtl &features = context->getDisplay()->getFeatures();
if (!features.enableInMemoryMtlLibraryCache.enabled)
{
return CreateShaderLibrary(context->getMetalDevice(), source, macros, enableFastMath,
errorOut);
}
LibraryKey::LValueTuple key = std::tie(source, macros, enableFastMath);
LibraryCache::LibraryCacheEntry &entry = getCacheEntry(key);
// Lock this cache entry while compiling the shader. This causes other threads calling this
// function to wait and not duplicate the compilation.
std::lock_guard<std::mutex> entryLockGuard(entry.lock);
if (entry.library)
{
return entry.library;
}
if (features.printMetalShaders.enabled)
{
auto cache_key = GenerateBlobCacheKeyForShaderLibrary(source, macros, enableFastMath);
NSLog(@"Loading metal shader, key=%@ source=%s",
[NSData dataWithBytes:cache_key.data() length:cache_key.size()], source.c_str());
}
if (features.compileMetalShaders.enabled)
{
if (features.enableParallelMtlLibraryCompilation.enabled)
{
// When enableParallelMtlLibraryCompilation is enabled, compilation happens in the
// background. Chrome's ProgramCache only saves to disk when called at certain points,
// which are not present when compiling in the background.
FATAL() << "EnableParallelMtlLibraryCompilation is not compatible with "
"compileMetalShdaders";
}
std::string metallib_filename = CompileShaderLibraryToFile(source, macros, enableFastMath);
angle::MemoryBuffer memory_buffer = ReadMetallibFromFile(metallib_filename);
entry.library =
NewMetalLibraryFromMetallib(context, memory_buffer.data(), memory_buffer.size());
auto cache_key = GenerateBlobCacheKeyForShaderLibrary(source, macros, enableFastMath);
context->getDisplay()->getBlobCache()->put(cache_key, std::move(memory_buffer));
return entry.library;
}
if (features.loadMetalShadersFromBlobCache.enabled)
{
auto cache_key = GenerateBlobCacheKeyForShaderLibrary(source, macros, enableFastMath);
egl::BlobCache::Value value;
size_t buffer_size;
angle::ScratchBuffer scratch_buffer;
if (context->getDisplay()->getBlobCache()->get(&scratch_buffer, cache_key, &value,
&buffer_size))
{
entry.library = NewMetalLibraryFromMetallib(context, value.data(), value.size());
}
ANGLE_HISTOGRAM_BOOLEAN("GPU.ANGLE.MetalShaderInBlobCache", entry.library);
ANGLEPlatformCurrent()->recordShaderCacheUse(entry.library);
if (entry.library)
{
return entry.library;
}
}
entry.library =
CreateShaderLibrary(context->getMetalDevice(), source, macros, enableFastMath, errorOut);
return entry.library;
}
LibraryCache::LibraryCacheEntry &LibraryCache::getCacheEntry(
const LibraryKey::LValueTuple &lValueKey)
{
// Lock while searching or adding new items to the cache.
std::lock_guard<std::mutex> cacheLockGuard(mCacheLock);
#if ANGLE_HAS_HASH_MAP_GENERIC_LOOKUP
// Fast-path that can search the cache with only lvalues instead of making a copy of the key
auto iter = mCache.find(lValueKey);
if (iter != mCache.end())
{
return iter->second;
}
#endif
LibraryKey key(lValueKey);
return mCache[std::move(key)];
}
LibraryCache::LibraryKey::LibraryKey(const LValueTuple &fromTuple)
{
source = std::get<0>(fromTuple);
macros = std::get<1>(fromTuple);
enableFastMath = std::get<2>(fromTuple);
}
LibraryCache::LibraryKey::LValueTuple LibraryCache::LibraryKey::tie() const
{
return std::tie(source, macros, enableFastMath);
}
size_t LibraryCache::LibraryKeyCompare::operator()(const LibraryKey::LValueTuple &k) const
{
size_t hash = std::hash<std::string>()(std::get<0>(k));
for (const auto ¯o : std::get<1>(k))
{
hash =
hash ^ std::hash<std::string>()(macro.first) ^ std::hash<std::string>()(macro.second);
}
hash = hash ^ std::hash<bool>()(std::get<2>(k));
return hash;
}
size_t LibraryCache::LibraryKeyCompare::operator()(const LibraryKey &k) const
{
return operator()(k.tie());
}
bool LibraryCache::LibraryKeyCompare::operator()(const LibraryKey &a, const LibraryKey &b) const
{
return a.tie() == b.tie();
}
bool LibraryCache::LibraryKeyCompare::operator()(const LibraryKey &a,
const LibraryKey::LValueTuple &b) const
{
return a.tie() == b;
}
bool LibraryCache::LibraryKeyCompare::operator()(const LibraryKey::LValueTuple &a,
const LibraryKey &b) const
{
return a == b.tie();
}
} // namespace mtl
} // namespace rx