summaryrefslogtreecommitdiff
path: root/source/slang
diff options
context:
space:
mode:
authorlucy96chen <47800040+lucy96chen@users.noreply.github.com>2022-10-17 17:38:59 -0700
committerGitHub <noreply@github.com>2022-10-17 17:38:59 -0700
commit8add41a6e37994577d928bc312801ddfa1c33173 (patch)
tree6ca5ef639a22c4e37c7287df1877cb5bf7ce691c /source/slang
parent09408e32d7c0ccebf38fe31b5d2ddf4b1cd128e4 (diff)
Shader cache index implementation (#2452)
Diffstat (limited to 'source/slang')
-rw-r--r--source/slang/slang-ast-base.h2
-rw-r--r--source/slang/slang-ast-val.h1
-rwxr-xr-xsource/slang/slang-compiler.h8
-rw-r--r--source/slang/slang-hash-utils.h49
-rw-r--r--source/slang/slang-shader-cache-index.h60
-rw-r--r--source/slang/slang.cpp6
6 files changed, 7 insertions, 119 deletions
diff --git a/source/slang/slang-ast-base.h b/source/slang/slang-ast-base.h
index 04788340a..dea02afbb 100644
--- a/source/slang/slang-ast-base.h
+++ b/source/slang/slang-ast-base.h
@@ -9,8 +9,6 @@
#include "slang-serialize-reflection.h"
-#include "../core/slang-digest.h"
-
// This file defines the primary base classes for the hierarchy of
// AST nodes and related objects. For example, this is where the
// basic `Decl`, `Stmt`, `Expr`, `type`, etc. definitions come from.
diff --git a/source/slang/slang-ast-val.h b/source/slang/slang-ast-val.h
index 49189f65c..5f72e58c8 100644
--- a/source/slang/slang-ast-val.h
+++ b/source/slang/slang-ast-val.h
@@ -3,7 +3,6 @@
#pragma once
#include "slang-ast-base.h"
-#include "../core/slang-digest.h"
namespace Slang {
diff --git a/source/slang/slang-compiler.h b/source/slang/slang-compiler.h
index 016c8fefa..bd7cd4a18 100755
--- a/source/slang/slang-compiler.h
+++ b/source/slang/slang-compiler.h
@@ -3,7 +3,7 @@
#include "../core/slang-basic.h"
#include "../core/slang-shared-library.h"
-#include "../core/slang-digest.h"
+#include "../core/slang-digest-builder.h"
#include "../compiler-core/slang-downstream-compiler.h"
#include "../compiler-core/slang-downstream-compiler-util.h"
@@ -899,7 +899,7 @@ namespace Slang
return Super::computeDependencyBasedHash(entryPointIndex, targetIndex, outHash);
}
- SLANG_NO_THROW void SLANG_MCALL computeASTBasedHash(slang::Digest* outHash)
+ SLANG_NO_THROW void SLANG_MCALL computeASTBasedHash(slang::Digest* outHash) SLANG_OVERRIDE
{
return Super::computeASTBasedHash(outHash);
}
@@ -1126,7 +1126,7 @@ namespace Slang
return Super::computeDependencyBasedHash(entryPointIndex, targetIndex, outHash);
}
- SLANG_NO_THROW void SLANG_MCALL computeASTBasedHash(slang::Digest* outHash)
+ SLANG_NO_THROW void SLANG_MCALL computeASTBasedHash(slang::Digest* outHash) SLANG_OVERRIDE
{
return Super::computeASTBasedHash(outHash);
}
@@ -1322,7 +1322,7 @@ namespace Slang
return Super::computeDependencyBasedHash(entryPointIndex, targetIndex, outHash);
}
- SLANG_NO_THROW void SLANG_MCALL computeASTBasedHash(slang::Digest* outHash)
+ SLANG_NO_THROW void SLANG_MCALL computeASTBasedHash(slang::Digest* outHash) SLANG_OVERRIDE
{
return Super::computeASTBasedHash(outHash);
}
diff --git a/source/slang/slang-hash-utils.h b/source/slang/slang-hash-utils.h
deleted file mode 100644
index c354e43f0..000000000
--- a/source/slang/slang-hash-utils.h
+++ /dev/null
@@ -1,49 +0,0 @@
-// slang-hash-utils.h - Utility functions specifically designed to be used with slang::Digest
-#pragma once
-#include "../../slang.h"
-#include "../core/slang-basic.h"
-#include "../core/slang-md5.h"
-#include "../core/slang-digest.h"
-
-namespace Slang
-{
- // Compute the hash for an UnownedStringSlice
- inline slang::Digest computeHashForStringSlice(UnownedStringSlice text)
- {
- DigestBuilder builder;
- builder.addToDigest(text);
- return builder.finalize();
- }
-
- // Combines the two provided hashes.
- inline slang::Digest combineHashes(const slang::Digest& hashA, const slang::Digest& hashB)
- {
- DigestBuilder builder;
- builder.addToDigest(hashA);
- builder.addToDigest(hashB);
- return builder.finalize();
- }
-
- // Returns the stored hash in checksum as a String.
- inline StringBuilder hashToString(const slang::Digest& hash)
- {
- StringBuilder filename;
-
- uint8_t* uint8Hash = (uint8_t*)hash.values;
-
- for (Index i = 0; i < 16; ++i)
- {
- auto hashSegmentString = String(uint8Hash[i], 16);
-
- if (hashSegmentString.getLength() == 1)
- {
- filename.append("0");
- }
- filename.append(hashSegmentString.getBuffer());
- }
-
- return filename;
- }
-
- // TODO: fromString implementation?
-}
diff --git a/source/slang/slang-shader-cache-index.h b/source/slang/slang-shader-cache-index.h
deleted file mode 100644
index 530aacf11..000000000
--- a/source/slang/slang-shader-cache-index.h
+++ /dev/null
@@ -1,60 +0,0 @@
-#pragma once
-#include "../../slang.h"
-
-#include "../core/slang-string.h"
-#include "../core/slang-linked-list.h"
-#include "../core/slang-dictionary.h"
-
-namespace Slang
-{
- class ShaderCacheIndex
- {
- public:
- struct ShaderCacheEntry
- {
- slang::Digest dependencyBasedDigest;
- slang::Digest astBasedDigest;
- };
-
- ShaderCacheIndex(SlangInt size)
- : entryCountLimit(size)
- {}
-
- // Load a previous cache index saved to disk. If not found, create a new cache index
- // and save it to disk as filename.
- SlangResult loadCacheIndexFromFile(String filename);
-
- // Fetch the cache entry corresponding to the provided key. If found, move the entry to
- // the front of entries and return the entry. Else, return nullptr.
- ShaderCacheEntry* findEntry(const slang::Digest& key);
-
- // Add an entry to the cache with the provided key and contents hashes. If
- // adding an entry causes the cache to exceed size limitations, this will also
- // delete the least recently used entry.
- void addEntry(const slang::Digest& dependencyDigest, const slang::Digest& astDigest);
-
- // Update the contents hash for the specified entry in the cache and update the
- // corresponding file on disk.
- void updateEntry(const slang::Digest& dependencyDigest, const slang::Digest& astDigest);
-
- private:
- // Update the cache index on disk. This should be called any time an entry changes.
- SlangResult saveCacheIndexToFile();
-
- // Delete the last entry from entries and remove its key/value pair from keyToContents
- // as well as remove the corresponding file on disk. This should only be used when the
- // cache has reached the size limit specified by entryLimit to create space for a new entry.
- void deleteEntry();
-
- // Dictionary mapping each shader's key to its corresponding node (entry) in the list
- // of entries.
- Dictionary<slang::Digest, LinkedNode<ShaderCacheEntry>*> keyToEntry;
-
- // Linked list containing the entries stored in the shader cache in order
- // of most to least recently used.
- LinkedList<ShaderCacheEntry> entries;
-
- // The maximum number of cache entries allowed.
- SlangInt entryCountLimit = -1;
- }
-}
diff --git a/source/slang/slang.cpp b/source/slang/slang.cpp
index 3fb89c549..c7351d6a8 100644
--- a/source/slang/slang.cpp
+++ b/source/slang/slang.cpp
@@ -45,7 +45,7 @@
#include "slang-check-impl.h"
#include "../core/slang-md5.h"
-#include "slang-hash-utils.h"
+#include "../core/slang-digest-util.h"
#include "../../slang-tag-version.h"
@@ -1692,8 +1692,8 @@ void TranslationUnitRequest::_addSourceFile(SourceFile* sourceFile)
// for non-file-based dependencies later when shader files are being hashed for
// the shader cache.
- slang::Digest sourceHash = computeHashForStringSlice(sourceFile->getContent());
- getModule()->addFilePathDependency(hashToString(sourceHash));
+ slang::Digest sourceHash = DigestUtil::computeDigestForStringSlice(sourceFile->getContent());
+ getModule()->addFilePathDependency(DigestUtil::toString(sourceHash));
}
}