metaforce/hecl/lib/Runtime/ShaderCacheManager.cpp

436 lines
14 KiB
C++
Raw Normal View History

2016-03-04 23:02:44 +00:00
#include "hecl/Runtime.hpp"
#include <athena/FileReader.hpp>
#include <athena/FileWriter.hpp>
2015-11-13 02:12:09 +00:00
#include <zlib.h>
#include <algorithm>
2015-11-14 06:39:27 +00:00
#include <ctime>
2015-11-13 02:12:09 +00:00
2016-03-04 23:02:44 +00:00
#include "hecl/Backend/GLSL.hpp"
#include "hecl/Backend/Metal.hpp"
2015-11-16 04:30:06 +00:00
2016-03-04 23:02:44 +00:00
namespace hecl
2015-11-13 02:12:09 +00:00
{
namespace Runtime
{
2016-03-30 19:15:08 +00:00
IShaderBackendFactory* _NewGLSLBackendFactory();
2015-11-18 23:56:45 +00:00
#if _WIN32
2016-03-30 19:15:08 +00:00
IShaderBackendFactory* _NewHLSLBackendFactory();
2016-02-23 02:33:29 +00:00
#endif
#if BOO_HAS_METAL
2016-03-30 19:15:08 +00:00
IShaderBackendFactory* _NewMetalBackendFactory();
2015-11-18 23:56:45 +00:00
#endif
2016-02-23 02:33:29 +00:00
#if BOO_HAS_VULKAN
2016-03-30 19:15:08 +00:00
IShaderBackendFactory* _NewSPIRVBackendFactory();
2016-02-23 02:33:29 +00:00
#endif
2015-11-16 04:30:06 +00:00
2016-03-04 23:02:44 +00:00
static logvisor::Module Log("ShaderCacheManager");
2015-11-16 22:04:13 +00:00
static uint64_t IDX_MAGIC = SBig(uint64_t(0xDEADFEEDC001D00D));
static uint64_t DAT_MAGIC = SBig(uint64_t(0xC001D00DDEADBABE));
2015-11-13 02:12:09 +00:00
static uint64_t ZERO64 = 0;
2015-11-14 06:39:27 +00:00
static uint64_t timeHash()
2015-11-13 02:12:09 +00:00
{
2015-11-14 06:39:27 +00:00
char buf[80];
time_t now;
struct tm* timeinfo;
time(&now);
timeinfo = localtime(&now);
strftime(buf, 80, "%Y-%m-%dT%H:%M:%S+%H:%M", timeinfo);
Hash tmp(buf, 80);
return tmp.val64();
2015-11-13 02:12:09 +00:00
}
2015-11-16 04:30:06 +00:00
static void UpdateFunctionHash(XXH64_state_t* st, const ShaderCacheExtensions::Function& func)
{
if (func.m_source)
XXH64_update(st, func.m_source, strlen(func.m_source));
if (func.m_entry)
XXH64_update(st, func.m_entry, strlen(func.m_entry));
}
uint64_t ShaderCacheExtensions::hashExtensions() const
{
XXH64_state_t st;
XXH64_reset(&st, 0);
for (const ExtensionSlot& slot : m_extensionSlots)
{
UpdateFunctionHash(&st, slot.lighting);
UpdateFunctionHash(&st, slot.post);
}
return XXH64_digest(&st);
}
void ShaderCacheManager::bootstrapIndex()
2015-11-13 02:12:09 +00:00
{
2015-11-14 06:39:27 +00:00
m_timeHash = timeHash();
2015-11-13 02:12:09 +00:00
m_idxFr.close();
m_datFr.close();
#if _WIN32
2016-02-18 20:52:36 +00:00
SystemString idxFilename = m_idxFr.wfilename();
#else
2016-02-18 20:52:36 +00:00
SystemString idxFilename = m_idxFr.filename();
#endif
2015-11-14 06:39:27 +00:00
2016-03-04 23:02:44 +00:00
FILE* idxFp = hecl::Fopen(idxFilename.c_str(), _S("wb"));
2015-11-13 02:12:09 +00:00
if (!idxFp)
2016-03-04 23:02:44 +00:00
Log.report(logvisor::Fatal, _S("unable to write shader cache index at %s"),
2015-11-14 06:39:27 +00:00
idxFilename.c_str());
2015-11-13 02:12:09 +00:00
fwrite(&IDX_MAGIC, 1, 8, idxFp);
2015-11-14 06:39:27 +00:00
fwrite(&m_timeHash, 1, 8, idxFp);
2015-11-16 04:30:06 +00:00
fwrite(&m_extensionsHash, 1, 8, idxFp);
2015-11-13 02:12:09 +00:00
fwrite(&ZERO64, 1, 8, idxFp);
fclose(idxFp);
#if _WIN32
2016-02-18 20:52:36 +00:00
SystemString datFilename = m_datFr.wfilename();
#else
2016-02-18 20:52:36 +00:00
SystemString datFilename = m_datFr.filename();
#endif
2016-03-04 23:02:44 +00:00
FILE* datFp = hecl::Fopen(datFilename.c_str(), _S("wb"));
2015-11-13 02:12:09 +00:00
if (!datFp)
2016-03-04 23:02:44 +00:00
Log.report(logvisor::Fatal, _S("unable to write shader cache data at %s"),
2016-02-18 20:52:36 +00:00
datFilename.c_str());
2015-11-13 02:12:09 +00:00
fwrite(&DAT_MAGIC, 1, 8, datFp);
2015-11-14 06:39:27 +00:00
fwrite(&m_timeHash, 1, 8, datFp);
2015-11-13 02:12:09 +00:00
fclose(datFp);
m_idxFr.open();
m_datFr.open();
}
2015-11-16 04:30:06 +00:00
ShaderCacheManager::ShaderCacheManager(const FileStoreManager& storeMgr,
boo::IGraphicsDataFactory* gfxFactory,
ShaderCacheExtensions&& extension)
: m_storeMgr(storeMgr),
m_extensions(std::move(extension)),
2015-11-23 03:09:46 +00:00
m_idxFr(storeMgr.getStoreRoot() + _S("/shadercache") + gfxFactory->platformName() + _S(".idx"), 32*1024, false),
m_datFr(storeMgr.getStoreRoot() + _S("/shadercache") + gfxFactory->platformName() + _S(".dat"), 32*1024, false)
2016-02-18 20:52:36 +00:00
{
2015-11-16 04:30:06 +00:00
boo::IGraphicsDataFactory::Platform plat = gfxFactory->platform();
if (m_extensions && m_extensions.m_plat != plat)
2016-03-04 23:02:44 +00:00
Log.report(logvisor::Fatal, "ShaderCacheExtension backend mismatch (should be %s)",
2015-11-16 04:30:06 +00:00
gfxFactory->platformName());
m_extensionsHash = m_extensions.hashExtensions();
switch (plat)
{
2015-11-21 01:13:06 +00:00
case boo::IGraphicsDataFactory::Platform::OGL:
2016-03-30 19:15:08 +00:00
m_factory.reset(_NewGLSLBackendFactory());
2015-11-16 04:30:06 +00:00
break;
2015-11-18 23:56:45 +00:00
#if _WIN32
2015-11-21 02:59:43 +00:00
case boo::IGraphicsDataFactory::Platform::D3D11:
case boo::IGraphicsDataFactory::Platform::D3D12:
2016-03-30 19:15:08 +00:00
m_factory.reset(_NewHLSLBackendFactory());
break;
2016-02-23 02:33:29 +00:00
#endif
#if BOO_HAS_METAL
2015-11-21 02:16:54 +00:00
case boo::IGraphicsDataFactory::Platform::Metal:
2016-03-30 19:15:08 +00:00
m_factory.reset(_NewMetalBackendFactory());
2015-11-18 23:56:45 +00:00
break;
2016-02-23 02:33:29 +00:00
#endif
#if BOO_HAS_VULKAN
case boo::IGraphicsDataFactory::Platform::Vulkan:
2016-03-30 19:15:08 +00:00
m_factory.reset(_NewSPIRVBackendFactory());
2016-02-23 02:33:29 +00:00
break;
2015-11-18 23:56:45 +00:00
#endif
2015-11-16 04:30:06 +00:00
default:
2016-03-04 23:02:44 +00:00
Log.report(logvisor::Fatal, _S("unsupported backend %s"), gfxFactory->platformName());
2015-11-16 04:30:06 +00:00
}
reload();
}
2015-11-13 02:12:09 +00:00
void ShaderCacheManager::reload()
{
m_entries.clear();
m_entryLookup.clear();
2015-11-14 06:39:27 +00:00
m_timeHash = 0;
2015-11-13 02:12:09 +00:00
/* Attempt to open existing index */
2016-03-04 23:02:44 +00:00
m_idxFr.seek(0, athena::Begin);
m_datFr.seek(0, athena::Begin);
2015-11-13 02:12:09 +00:00
if (m_idxFr.hasError() || m_datFr.hasError())
{
2015-11-16 04:30:06 +00:00
bootstrapIndex();
2015-11-13 02:12:09 +00:00
return;
}
else
{
uint64_t idxMagic;
size_t rb = m_idxFr.readUBytesToBuf(&idxMagic, 8);
if (rb != 8 || idxMagic != IDX_MAGIC)
{
2015-11-16 04:30:06 +00:00
bootstrapIndex();
2015-11-13 02:12:09 +00:00
return;
}
uint64_t datMagic;
rb = m_datFr.readUBytesToBuf(&datMagic, 8);
if (rb != 8 || datMagic != DAT_MAGIC)
{
2015-11-16 04:30:06 +00:00
bootstrapIndex();
2015-11-13 02:12:09 +00:00
return;
}
uint64_t idxRand, datRand;
rb = m_idxFr.readUBytesToBuf(&idxRand, 8);
size_t rb2 = m_datFr.readUBytesToBuf(&datRand, 8);
if (rb != 8 || rb2 != 8 || idxRand != datRand)
{
2015-11-16 04:30:06 +00:00
bootstrapIndex();
2015-11-13 02:12:09 +00:00
return;
}
2015-11-14 06:39:27 +00:00
m_timeHash = idxRand;
2015-11-13 02:12:09 +00:00
}
2015-11-16 04:30:06 +00:00
atUint64 extensionsHash;
size_t rb = m_idxFr.readUBytesToBuf(&extensionsHash, 8);
if (rb != 8 || extensionsHash != m_extensionsHash)
{
bootstrapIndex();
return;
}
2015-11-13 02:12:09 +00:00
atUint64 idxCount = m_idxFr.readUint64Big();
2015-11-16 04:30:06 +00:00
if (m_idxFr.position() != 32)
2015-11-13 02:12:09 +00:00
{
2015-11-16 04:30:06 +00:00
bootstrapIndex();
2015-11-13 02:12:09 +00:00
return;
}
2015-11-16 04:30:06 +00:00
/* Read existing entries */
if (idxCount)
2015-11-13 02:12:09 +00:00
{
2015-11-16 04:30:06 +00:00
m_entries.reserve(idxCount);
m_entryLookup.reserve(idxCount);
for (atUint64 i=0 ; i<idxCount ; ++i)
{
m_entries.emplace_back();
IndexEntry& ent = m_entries.back();
ent.read(m_idxFr);
m_entryLookup[ent.m_hash] = m_entries.size() - 1;
}
2015-11-13 02:12:09 +00:00
}
}
2015-11-16 04:30:06 +00:00
ShaderCachedData ShaderCacheManager::lookupData(const Hash& hash)
2015-11-13 02:12:09 +00:00
{
auto search = m_entryLookup.find(hash);
if (search == m_entryLookup.cend())
2015-11-16 04:30:06 +00:00
return ShaderCachedData();
2015-11-13 02:12:09 +00:00
const IndexEntry& ent = m_entries[search->second];
if (ent.m_compOffset + ent.m_compSize > m_datFr.length())
{
2016-03-04 23:02:44 +00:00
Log.report(logvisor::Warning, "shader cache not long enough to read entry, might be corrupt");
2015-11-16 04:30:06 +00:00
return ShaderCachedData();
2015-11-13 02:12:09 +00:00
}
/* File-streamed decompression */
2016-03-04 23:02:44 +00:00
m_datFr.seek(ent.m_compOffset, athena::Begin);
2015-11-16 04:30:06 +00:00
ShaderCachedData ret(ShaderTag(ent.m_hash, ent.m_meta), ent.m_decompSize);
2015-11-13 02:12:09 +00:00
uint8_t compDat[2048];
z_stream z = {};
inflateInit(&z);
z.avail_out = ent.m_decompSize;
z.next_out = ret.m_data.get();
while (z.avail_out)
{
z.avail_in = std::min(size_t(2048), size_t(ent.m_compSize - z.total_in));
m_datFr.readUBytesToBuf(compDat, z.avail_in);
z.next_in = compDat;
inflate(&z, Z_NO_FLUSH);
}
inflateEnd(&z);
return ret;
}
2015-11-16 04:30:06 +00:00
bool ShaderCacheManager::addData(const ShaderCachedData& data)
2015-11-13 02:12:09 +00:00
{
m_idxFr.close();
m_datFr.close();
/* Perform one-shot buffer compression */
2015-11-16 04:30:06 +00:00
uLong cBound = compressBound(data.m_sz);
2015-11-13 02:12:09 +00:00
void* compBuf = malloc(cBound);
2015-11-16 04:30:06 +00:00
if (compress((Bytef*)compBuf, &cBound, (Bytef*)data.m_data.get(), data.m_sz) != Z_OK)
2016-03-04 23:02:44 +00:00
Log.report(logvisor::Fatal, "unable to deflate data");
2015-11-13 02:12:09 +00:00
/* Open index for writing (non overwriting) */
2016-03-04 23:02:44 +00:00
athena::io::FileWriter idxFw(m_idxFr.filename(), false);
2015-11-13 02:12:09 +00:00
if (idxFw.hasError())
2016-03-04 23:02:44 +00:00
Log.report(logvisor::Fatal, _S("unable to append shader cache index at %s"),
2015-11-13 02:12:09 +00:00
m_idxFr.filename().c_str());
/* Open data for writing (non overwriting) */
2016-03-04 23:02:44 +00:00
athena::io::FileWriter datFw(m_datFr.filename(), false);
2015-11-13 02:12:09 +00:00
if (datFw.hasError())
2016-03-04 23:02:44 +00:00
Log.report(logvisor::Fatal, _S("unable to append shader cache data at %s"),
2015-11-13 02:12:09 +00:00
m_datFr.filename().c_str());
size_t targetOffset = 0;
2015-11-16 04:30:06 +00:00
auto search = m_entryLookup.find(data.m_tag);
2015-11-13 02:12:09 +00:00
if (search != m_entryLookup.cend())
{
/* Hash already present, attempt to replace data */
IndexEntry& ent = m_entries[search->second];
if (search->second == m_entries.size() - 1)
{
/* Replacing final entry; simply write-over */
2015-11-16 04:30:06 +00:00
ent.m_meta = data.m_tag.getMetaData();
2015-11-13 02:12:09 +00:00
ent.m_compSize = cBound;
2015-11-16 04:30:06 +00:00
ent.m_decompSize = data.m_sz;
2015-11-13 02:12:09 +00:00
targetOffset = ent.m_compOffset;
idxFw.seek(search->second * 32 + 32);
ent.write(idxFw);
}
else
{
/* Replacing non-final entry; write into available space */
IndexEntry& nent = m_entries[search->second+1];
size_t space = nent.m_compOffset - ent.m_compOffset;
if (cBound <= space)
{
2015-11-16 04:30:06 +00:00
ent.m_meta = data.m_tag.getMetaData();
2015-11-13 02:12:09 +00:00
ent.m_compSize = cBound;
2015-11-16 04:30:06 +00:00
ent.m_decompSize = data.m_sz;
2015-11-13 02:12:09 +00:00
targetOffset = ent.m_compOffset;
idxFw.seek(search->second * 32 + 32);
ent.write(idxFw);
}
else
{
/* Not enough space; null-entry and add to end */
ent.m_hash = 0;
ent.m_meta = 0;
ent.m_compOffset = 0;
ent.m_compSize = 0;
ent.m_decompSize = 0;
idxFw.seek(search->second * 32 + 32);
ent.write(idxFw);
}
}
}
if (!targetOffset)
{
/* New index entry at end */
2016-03-04 23:02:44 +00:00
idxFw.seek(24, athena::Begin);
2015-11-13 02:12:09 +00:00
idxFw.writeUint64Big(m_entries.size() + 1);
2016-03-04 23:02:44 +00:00
idxFw.seek(m_entries.size() * 32 + 32, athena::Begin);
datFw.seek(0, athena::End);
2015-11-16 04:30:06 +00:00
m_entryLookup[data.m_tag] = m_entries.size();
2015-11-13 02:12:09 +00:00
m_entries.emplace_back();
IndexEntry& ent = m_entries.back();
2015-11-16 04:30:06 +00:00
ent.m_hash = data.m_tag.val64();
ent.m_meta = data.m_tag.getMetaData();
2015-11-13 02:12:09 +00:00
ent.m_compOffset = datFw.position();
ent.m_compSize = cBound;
2015-11-16 04:30:06 +00:00
ent.m_decompSize = data.m_sz;
2015-11-13 02:12:09 +00:00
ent.write(idxFw);
datFw.writeUBytes((atUint8*)compBuf, cBound);
}
else
{
/* Reusing index entry and data space */
2016-03-04 23:02:44 +00:00
datFw.seek(targetOffset, athena::Begin);
2015-11-13 02:12:09 +00:00
datFw.writeUBytes((atUint8*)compBuf, cBound);
}
free(compBuf);
idxFw.close();
datFw.close();
m_idxFr.open();
m_datFr.open();
return true;
}
2015-11-16 04:30:06 +00:00
boo::IShaderPipeline*
2016-03-30 19:15:08 +00:00
ShaderCacheManager::buildFromCache(const ShaderCachedData& foundData,
boo::IGraphicsDataFactory::Context& ctx)
2015-11-16 04:30:06 +00:00
{
2016-03-30 19:15:08 +00:00
return m_factory->buildShaderFromCache(foundData, ctx);
2015-11-16 04:30:06 +00:00
}
boo::IShaderPipeline*
ShaderCacheManager::buildShader(const ShaderTag& tag, const std::string& source,
2016-03-30 19:15:08 +00:00
const std::string& diagName,
boo::IGraphicsDataFactory::Context& ctx)
2015-11-16 04:30:06 +00:00
{
ShaderCachedData foundData = lookupData(tag);
if (foundData)
2016-03-30 19:15:08 +00:00
return buildFromCache(foundData, ctx);
2016-03-04 23:02:44 +00:00
hecl::Frontend::IR ir = FE.compileSource(source, diagName);
2016-03-30 19:15:08 +00:00
return buildShader(tag, ir, diagName, ctx);
2015-11-16 04:30:06 +00:00
}
boo::IShaderPipeline*
2016-03-04 23:02:44 +00:00
ShaderCacheManager::buildShader(const ShaderTag& tag, const hecl::Frontend::IR& ir,
2016-03-30 19:15:08 +00:00
const std::string& diagName,
boo::IGraphicsDataFactory::Context& ctx)
2015-11-16 04:30:06 +00:00
{
ShaderCachedData foundData = lookupData(tag);
if (foundData)
2016-03-30 19:15:08 +00:00
return buildFromCache(foundData, ctx);
2015-11-16 04:30:06 +00:00
FE.getDiagnostics().reset(diagName);
boo::IShaderPipeline* ret;
2016-03-30 19:15:08 +00:00
addData(m_factory->buildShaderFromIR(tag, ir, FE.getDiagnostics(), ctx, ret));
2015-11-16 04:30:06 +00:00
return ret;
}
std::vector<boo::IShaderPipeline*>
2016-03-30 19:15:08 +00:00
ShaderCacheManager::buildExtendedFromCache(const ShaderCachedData& foundData,
boo::IGraphicsDataFactory::Context& ctx)
2015-11-16 04:30:06 +00:00
{
std::vector<boo::IShaderPipeline*> shaders;
shaders.reserve(m_extensions.m_extensionSlots.size());
2016-03-30 19:15:08 +00:00
m_factory->buildExtendedShaderFromCache(foundData, m_extensions.m_extensionSlots, ctx,
2015-11-16 04:30:06 +00:00
[&](boo::IShaderPipeline* shader){shaders.push_back(shader);});
if (shaders.size() != m_extensions.m_extensionSlots.size())
2016-03-04 23:02:44 +00:00
Log.report(logvisor::Fatal, "buildShaderFromCache returned %" PRISize " times, expected %" PRISize,
2015-11-16 04:30:06 +00:00
shaders.size(), m_extensions.m_extensionSlots.size());
return shaders;
}
std::vector<boo::IShaderPipeline*>
ShaderCacheManager::buildExtendedShader(const ShaderTag& tag, const std::string& source,
2016-03-30 19:15:08 +00:00
const std::string& diagName,
boo::IGraphicsDataFactory::Context& ctx)
2015-11-16 04:30:06 +00:00
{
ShaderCachedData foundData = lookupData(tag);
if (foundData)
2016-03-30 19:15:08 +00:00
return buildExtendedFromCache(foundData, ctx);
2016-03-04 23:02:44 +00:00
hecl::Frontend::IR ir = FE.compileSource(source, diagName);
2016-03-30 19:15:08 +00:00
return buildExtendedShader(tag, ir, diagName, ctx);
2015-11-16 04:30:06 +00:00
}
std::vector<boo::IShaderPipeline*>
2016-03-04 23:02:44 +00:00
ShaderCacheManager::buildExtendedShader(const ShaderTag& tag, const hecl::Frontend::IR& ir,
2016-03-30 19:15:08 +00:00
const std::string& diagName,
boo::IGraphicsDataFactory::Context& ctx)
2015-11-16 04:30:06 +00:00
{
ShaderCachedData foundData = lookupData(tag);
if (foundData)
2016-03-30 19:15:08 +00:00
return buildExtendedFromCache(foundData, ctx);
2015-11-16 04:30:06 +00:00
std::vector<boo::IShaderPipeline*> shaders;
shaders.reserve(m_extensions.m_extensionSlots.size());
FE.getDiagnostics().reset(diagName);
ShaderCachedData data =
2016-03-30 19:15:08 +00:00
m_factory->buildExtendedShaderFromIR(tag, ir, FE.getDiagnostics(), m_extensions.m_extensionSlots, ctx,
2015-11-16 04:30:06 +00:00
[&](boo::IShaderPipeline* shader){shaders.push_back(shader);});
if (shaders.size() != m_extensions.m_extensionSlots.size())
2016-03-04 23:02:44 +00:00
Log.report(logvisor::Fatal, "buildShaderFromIR returned %" PRISize " times, expected %" PRISize,
2015-11-16 04:30:06 +00:00
shaders.size(), m_extensions.m_extensionSlots.size());
addData(data);
return shaders;
}
2015-11-13 02:12:09 +00:00
}
}