Skip to content

Commit 582d10d

Browse files
authoredOct 31, 2024
Add function of getting hash string to wasm binding (#5468)
* [wasm]: Add function to get string from hash * Fix bug on the visibility issue * Formatting
1 parent 0f68de9 commit 582d10d

File tree

4 files changed

+63
-3
lines changed

4 files changed

+63
-3
lines changed
 

‎source/slang-wasm/slang-wasm-bindings.cpp

+9-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,11 @@ EMSCRIPTEN_BINDINGS(slang)
4242
.function("getEntryPointCode", &slang::wgsl::ComponentType::getEntryPointCode)
4343
.function("getEntryPointCodeBlob", &slang::wgsl::ComponentType::getEntryPointCodeBlob)
4444
.function("getTargetCodeBlob", &slang::wgsl::ComponentType::getTargetCodeBlob)
45-
.function("getTargetCode", &slang::wgsl::ComponentType::getTargetCode);
45+
.function("getTargetCode", &slang::wgsl::ComponentType::getTargetCode)
46+
.function(
47+
"loadStrings",
48+
&slang::wgsl::ComponentType::loadStrings,
49+
return_value_policy::take_ownership());
4650

4751
class_<slang::wgsl::Module, base<slang::wgsl::ComponentType>>("Module")
4852
.function(
@@ -214,4 +218,7 @@ EMSCRIPTEN_BINDINGS(slang)
214218
"createLanguageServer",
215219
&slang::wgsl::lsp::createLanguageServer,
216220
return_value_policy::take_ownership());
217-
}
221+
222+
class_<slang::wgsl::HashedString>("HashedString")
223+
.function("getString", &slang::wgsl::HashedString::getString);
224+
};

‎source/slang-wasm/slang-wasm.cpp

+42
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,48 @@ emscripten::val ComponentType::getTargetCodeBlob(int targetIndex)
344344
return emscripten::val(emscripten::typed_memory_view(kernelBlob->getBufferSize(), ptr));
345345
}
346346

347+
HashedString* ComponentType::loadStrings()
348+
{
349+
slang::ProgramLayout* slangReflection = interface()->getLayout();
350+
if (!slangReflection)
351+
{
352+
g_error.type = std::string("USER");
353+
g_error.message = std::string("Failed to get reflection data");
354+
return nullptr;
355+
}
356+
357+
SlangUInt hashedStringCount = slangReflection->getHashedStringCount();
358+
if (hashedStringCount == 0)
359+
{
360+
g_error.type = std::string("USER");
361+
g_error.message = std::string("Warn: No reflection data found");
362+
return nullptr;
363+
}
364+
365+
size_t stringSize = 0;
366+
HashedString* hashedStrings = new HashedString();
367+
for (SlangUInt ii = 0; ii < hashedStringCount; ++ii)
368+
{
369+
// For each string we can fetch its bytes from the Slang
370+
// reflection data.
371+
//
372+
size_t stringSize = 0;
373+
char const* stringData = slangReflection->getHashedString(ii, &stringSize);
374+
375+
// Then we can compute the hash code for that string using
376+
// another Slang API function.
377+
//
378+
// Note: the exact hashing algorithm that Slang uses for
379+
// string literals is not currently documented, and may
380+
// change in future releases of the compiler.
381+
//
382+
int hash = spComputeStringHash(stringData, stringSize);
383+
384+
hashedStrings->insertString(hash, std::string(stringData));
385+
}
386+
return hashedStrings;
387+
}
388+
347389
namespace lsp
348390
{
349391
Position translate(Slang::LanguageServerProtocol::Position p)

‎source/slang-wasm/slang-wasm.h

+11
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,16 @@ class CompileTargets
3838
std::unordered_map<std::string, SlangCompileTarget> m_compileTargetMap;
3939
};
4040

41+
class HashedString
42+
{
43+
public:
44+
std::string getString(uint32_t hash) { return m_hashedStrings[(int)hash]; }
45+
void insertString(int hash, const std::string& str) { m_hashedStrings[hash] = str; }
46+
47+
private:
48+
std::unordered_map<int, std::string> m_hashedStrings;
49+
};
50+
4151
CompileTargets* getCompileTargets();
4252

4353
class ComponentType
@@ -57,6 +67,7 @@ class ComponentType
5767

5868
slang::IComponentType* interface() const { return m_interface; }
5969

70+
HashedString* loadStrings();
6071
virtual ~ComponentType() = default;
6172

6273
private:

‎source/slang/slang-check-decl.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12168,7 +12168,7 @@ void SemanticsDeclCapabilityVisitor::visitInheritanceDecl(InheritanceDecl* inher
1216812168

1216912169
DeclVisibility getDeclVisibility(Decl* decl)
1217012170
{
12171-
if (as<GenericTypeParamDecl>(decl) || as<GenericValueParamDecl>(decl) ||
12171+
if (as<GenericTypeParamDeclBase>(decl) || as<GenericValueParamDecl>(decl) ||
1217212172
as<GenericTypeConstraintDecl>(decl))
1217312173
{
1217412174
auto genericDecl = as<GenericDecl>(decl->parentDecl);

0 commit comments

Comments
 (0)