Skip to content

Commit 99be694

Browse files
csyonghedjohansson
authored andcommitted
Add slangc interface to compile and use ir modules. (shader-slang#3615)
* Add slangc interface to compile and use ir modules. * Fix glsl scalar layout settings not copied to target. * Fix. * Cleanups.
1 parent 4a222b2 commit 99be694

29 files changed

+389
-341
lines changed

examples/platform-test/main.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ void onLostFocus()
2525

2626
void onKeyDown(platform::KeyEventArgs args)
2727
{
28-
printf("onKeyDown(key=0x%02x, buttons=0x%02x)\n", args.key, args.buttons);
28+
printf("onKeyDown(key=0x%02x, buttons=0x%02x)\n", (uint32_t)args.key, args.buttons);
2929
}
3030

3131
void onKeyUp(platform::KeyEventArgs args)
3232
{
33-
printf("okKeyUp(key=0x%02x, buttons=0x%02x)\n", args.key, args.buttons);
33+
printf("okKeyUp(key=0x%02x, buttons=0x%02x)\n", (uint32_t)args.key, args.buttons);
3434
}
3535

3636
void onKeyPress(platform::KeyEventArgs args)

slang.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -855,7 +855,6 @@ extern "C"
855855
ReportDownstreamTime, // bool
856856
ReportPerfBenchmark, // bool
857857
SkipSPIRVValidation, // bool
858-
859858
SourceEmbedStyle,
860859
SourceEmbedName,
861860
SourceEmbedLanguage,
@@ -1845,6 +1844,7 @@ extern "C"
18451844
/*! @see slang::ICompileRequest::addLibraryReference */
18461845
SLANG_API SlangResult spAddLibraryReference(
18471846
SlangCompileRequest* request,
1847+
const char* basePath,
18481848
const void* libData,
18491849
size_t libDataSize);
18501850

@@ -3952,10 +3952,12 @@ namespace slang
39523952
/** Add a slang library - such that its contents can be referenced during linking.
39533953
This is equivalent to the -r command line option.
39543954
3955+
@param basePath The base path used to lookup referenced modules.
39553956
@param libData The library data
39563957
@param libDataSize The size of the library data
39573958
*/
39583959
virtual SLANG_NO_THROW SlangResult SLANG_MCALL addLibraryReference(
3960+
const char* basePath,
39593961
const void* libData,
39603962
size_t libDataSize) = 0;
39613963

source/compiler-core/slang-source-loc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ struct PathInfo
6161
/// True if has a canonical path
6262
SLANG_FORCE_INLINE bool hasUniqueIdentity() const { return type == Type::Normal && uniqueIdentity.getLength() > 0; }
6363
/// True if has a regular found path
64-
SLANG_FORCE_INLINE bool hasFoundPath() const { return type == Type::Normal || type == Type::FoundPath || (type == Type::FromString && foundPath.getLength() > 0); }
64+
SLANG_FORCE_INLINE bool hasFoundPath() const { return (type == Type::Normal || type == Type::FoundPath || type == Type::FromString) && foundPath.getLength() > 0; }
6565
/// True if has a found path that has originated from a file (as opposed to string or some other origin)
6666
SLANG_FORCE_INLINE bool hasFileFoundPath() const { return (type == Type::Normal || type == Type::FoundPath) && foundPath.getLength() > 0; }
6767
/// Get the 'name'/path of the item. Will return an empty string if not applicable or not set.

source/slang/slang-api.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -495,11 +495,12 @@ SLANG_API void spSetDefaultModuleName(
495495

496496
SLANG_API SlangResult spAddLibraryReference(
497497
slang::ICompileRequest* request,
498+
const char* basePath,
498499
const void* libData,
499500
size_t libDataSize)
500501
{
501502
SLANG_ASSERT(request);
502-
return request->addLibraryReference(libData, libDataSize);
503+
return request->addLibraryReference(basePath, libData, libDataSize);
503504
}
504505

505506
SLANG_API void spTranslationUnit_addPreprocessorDefine(

source/slang/slang-check-decl.cpp

+8-7
Original file line numberDiff line numberDiff line change
@@ -1712,7 +1712,7 @@ namespace Slang
17121712
{
17131713
if (auto varDeclRefType = as<DeclRefType>(varDecl->type.type))
17141714
{
1715-
parentAggTypeDecl->unionTagsWith(getTypeTags(varDecl->type.type));
1715+
parentAggTypeDecl->unionTagsWith(getTypeTags(varDeclRefType));
17161716
}
17171717
}
17181718

@@ -9321,20 +9321,21 @@ namespace Slang
93219321
else if (as<PrivateModifier>(modifier))
93229322
return DeclVisibility::Private;
93239323
}
9324-
93259324
// Interface members will always have the same visibility as the interface itself.
93269325
if (auto interfaceDecl = findParentInterfaceDecl(decl))
93279326
{
93289327
return getDeclVisibility(interfaceDecl);
93299328
}
9330-
else if (as<NamespaceDecl>(decl))
9329+
auto defaultVis = DeclVisibility::Default;
9330+
if (auto parentModule = getModuleDecl(decl))
9331+
defaultVis = parentModule->isInLegacyLanguage ? DeclVisibility::Public : DeclVisibility::Internal;
9332+
9333+
// Members of other agg type decls will have their default visibility capped to the parents'.
9334+
if (as<NamespaceDecl>(decl))
93319335
{
93329336
return DeclVisibility::Public;
93339337
}
9334-
if (auto parentModule = getModuleDecl(decl))
9335-
return parentModule->isInLegacyLanguage ? DeclVisibility::Public : DeclVisibility::Internal;
9336-
9337-
return DeclVisibility::Default;
9338+
return defaultVis;
93389339
}
93399340

93409341
void diagnoseCapabilityProvenance(DiagnosticSink* sink, Decl* decl, CapabilityAtom missingAtom)

source/slang/slang-check-modifier.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,6 @@ namespace Slang
989989
case ASTNodeType::PreciseModifier:
990990
case ASTNodeType::IntrinsicOpModifier:
991991
case ASTNodeType::InlineModifier:
992-
case ASTNodeType::ExternModifier:
993992
case ASTNodeType::HLSLExportModifier:
994993
case ASTNodeType::ExternCppModifier:
995994
case ASTNodeType::ExportedModifier:

source/slang/slang-compiler.cpp

+2-9
Original file line numberDiff line numberDiff line change
@@ -1488,7 +1488,7 @@ namespace Slang
14881488
// Add all of the module libraries
14891489
libraries.addRange(linkage->m_libModules.getBuffer(), linkage->m_libModules.getCount());
14901490
}
1491-
1491+
14921492
options.compilerSpecificArguments = allocator.allocate(compilerSpecificArguments);
14931493
options.requiredCapabilityVersions = SliceUtil::asSlice(requiredCapabilityVersions);
14941494
options.libraries = SliceUtil::asSlice(libraries);
@@ -1879,14 +1879,7 @@ namespace Slang
18791879
SerialContainerUtil::WriteOptions options;
18801880

18811881
options.compressionType = linkage->m_optionSet.getEnumOption<SerialCompressionType>(CompilerOptionName::IrCompression);
1882-
if (linkage->m_optionSet.getBoolOption(CompilerOptionName::Obfuscate))
1883-
{
1884-
// If code is obfuscated, we *disable* AST output as it is not obfuscated and will reveal
1885-
// too much about IR.
1886-
// Also currently only IR is needed.
1887-
options.optionFlags &= ~SerialOptionFlag::ASTModule;
1888-
}
1889-
1882+
18901883
// If debug information is enabled, enable writing out source locs
18911884
if (_shouldWriteSourceLocs(linkage))
18921885
{

source/slang/slang-compiler.h

+14-5
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,10 @@
2525

2626
#include "slang-capability.h"
2727
#include "slang-diagnostics.h"
28-
2928
#include "slang-preprocessor.h"
3029
#include "slang-profile.h"
3130
#include "slang-syntax.h"
3231
#include "slang-content-assist-info.h"
33-
3432
#include "slang-hlsl-to-vulkan-layout-options.h"
3533
#include "slang-compiler-options.h"
3634
#include "slang-serialize-ir-types.h"
@@ -1475,7 +1473,7 @@ namespace Slang
14751473

14761474
RefPtr<EntryPoint> findEntryPointByName(UnownedStringSlice const& name);
14771475

1478-
List<RefPtr<EntryPoint>> const& getEntryPoints() { return m_entryPoints; }
1476+
List<RefPtr<EntryPoint>>& getEntryPoints() { return m_entryPoints; }
14791477
void _addEntryPoint(EntryPoint* entryPoint);
14801478
void _processFindDeclsExportSymbolsRec(Decl* decl);
14811479

@@ -1551,6 +1549,8 @@ namespace Slang
15511549
public:
15521550
TranslationUnitRequest(
15531551
FrontEndCompileRequest* compileRequest);
1552+
TranslationUnitRequest(
1553+
FrontEndCompileRequest* compileRequest, Module* m);
15541554

15551555
// The parent compile request
15561556
FrontEndCompileRequest* compileRequest = nullptr;
@@ -1596,6 +1596,8 @@ namespace Slang
15961596
/// Result of compiling this translation unit (a module)
15971597
RefPtr<Module> module;
15981598

1599+
bool isChecked = false;
1600+
15991601
Module* getModule() { return module; }
16001602
ModuleDecl* getModuleDecl() { return module->getModuleDecl(); }
16011603

@@ -1755,6 +1757,8 @@ namespace Slang
17551757
Source, IR
17561758
};
17571759

1760+
struct SerialContainerDataModule;
1761+
17581762
/// A context for loading and re-using code modules.
17591763
class Linkage : public RefObject, public slang::ISession
17601764
{
@@ -1959,6 +1963,11 @@ namespace Slang
19591963
SourceLoc const& loc,
19601964
DiagnosticSink* sink,
19611965
const LoadedModuleDictionary* additionalLoadedModules);
1966+
RefPtr<Module> loadDeserializedModule(
1967+
Name* name,
1968+
const PathInfo& filePathInfo,
1969+
SerialContainerDataModule& m,
1970+
DiagnosticSink* sink);
19621971

19631972
SourceFile* loadSourceFile(String pathFrom, String path);
19641973

@@ -1979,7 +1988,7 @@ namespace Slang
19791988
DiagnosticSink* sink,
19801989
const LoadedModuleDictionary* loadedModules = nullptr);
19811990

1982-
void prepareDeserializedModule(Module* module, DiagnosticSink* sink);
1991+
void prepareDeserializedModule(SerialContainerDataModule& moduleEntry, const PathInfo& pathInfo, Module* module, DiagnosticSink* sink);
19831992

19841993
SourceFile* findFile(Name* name, SourceLoc loc, IncludeSystem& outIncludeSystem);
19851994
struct IncludeResult
@@ -2661,7 +2670,7 @@ namespace Slang
26612670
virtual SLANG_NO_THROW void SLANG_MCALL addTranslationUnitPreprocessorDefine(int translationUnitIndex, const char* key, const char* value) SLANG_OVERRIDE;
26622671
virtual SLANG_NO_THROW void SLANG_MCALL addTranslationUnitSourceFile(int translationUnitIndex, char const* path) SLANG_OVERRIDE;
26632672
virtual SLANG_NO_THROW void SLANG_MCALL addTranslationUnitSourceString(int translationUnitIndex, char const* path, char const* source) SLANG_OVERRIDE;
2664-
virtual SLANG_NO_THROW SlangResult SLANG_MCALL addLibraryReference(const void* libData, size_t libDataSize) SLANG_OVERRIDE;
2673+
virtual SLANG_NO_THROW SlangResult SLANG_MCALL addLibraryReference(const char* basePath, const void* libData, size_t libDataSize) SLANG_OVERRIDE;
26652674
virtual SLANG_NO_THROW void SLANG_MCALL addTranslationUnitSourceStringSpan(int translationUnitIndex, char const* path, char const* sourceBegin, char const* sourceEnd) SLANG_OVERRIDE;
26662675
virtual SLANG_NO_THROW void SLANG_MCALL addTranslationUnitSourceBlob(int translationUnitIndex, char const* path, ISlangBlob* sourceBlob) SLANG_OVERRIDE;
26672676
virtual SLANG_NO_THROW int SLANG_MCALL addEntryPoint(int translationUnitIndex, char const* name, SlangStage stage) SLANG_OVERRIDE;

source/slang/slang-ir-link.cpp

+1-8
Original file line numberDiff line numberDiff line change
@@ -1477,14 +1477,7 @@ LinkedIR linkIR(
14771477
{
14781478
irModules.add(irModule);
14791479
});
1480-
for (IArtifact* artifact : linkage->m_libModules)
1481-
{
1482-
if (auto library = findRepresentation<ModuleLibrary>(artifact))
1483-
{
1484-
irModules.addRange(library->m_modules.getBuffer()->readRef(), library->m_modules.getCount());
1485-
}
1486-
}
1487-
1480+
14881481
// Add any modules that were loaded as libraries
14891482
for (IRModule* irModule : irModules)
14901483
{

source/slang/slang-module-library.cpp

+20-10
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ void* ModuleLibrary::castAs(const Guid& guid)
3939
return getObject(guid);
4040
}
4141

42-
SlangResult loadModuleLibrary(const Byte* inBytes, size_t bytesCount, EndToEndCompileRequest* req, ComPtr<IModuleLibrary>& outLibrary)
42+
SlangResult loadModuleLibrary(const Byte* inBytes, size_t bytesCount, String path, EndToEndCompileRequest* req, ComPtr<IModuleLibrary>& outLibrary)
4343
{
4444
auto library = new ModuleLibrary;
4545
ComPtr<IModuleLibrary> scopeLibrary(library);
@@ -51,10 +51,6 @@ SlangResult loadModuleLibrary(const Byte* inBytes, size_t bytesCount, EndToEndCo
5151
SLANG_RETURN_ON_FAIL(RiffUtil::read(&memoryStream, riffContainer));
5252

5353
auto linkage = req->getLinkage();
54-
55-
// TODO(JS): May be better to have a ITypeComponent that encapsulates a collection of modules
56-
// For now just add to the linkage
57-
5854
{
5955
SerialContainerData containerData;
6056

@@ -65,15 +61,29 @@ SlangResult loadModuleLibrary(const Byte* inBytes, size_t bytesCount, EndToEndCo
6561
options.sourceManager = linkage->getSourceManager();
6662
options.linkage = req->getLinkage();
6763
options.sink = req->getSink();
68-
64+
options.astBuilder = linkage->getASTBuilder();
65+
options.modulePath = path;
6966
SLANG_RETURN_ON_FAIL(SerialContainerUtil::read(&riffContainer, options, nullptr, containerData));
67+
DiagnosticSink sink;
7068

71-
for (const auto& module : containerData.modules)
69+
// Modules in the container should be serialized in its depedency order,
70+
// so that we always load the dependencies before the consuming module.
71+
for (auto& module : containerData.modules)
7272
{
7373
// If the irModule is set, add it
7474
if (module.irModule)
7575
{
76-
library->m_modules.add(module.irModule);
76+
if (module.dependentFiles.getCount() == 0)
77+
return SLANG_FAIL;
78+
if (!module.astRootNode)
79+
return SLANG_FAIL;
80+
auto loadedModule = linkage->loadDeserializedModule(
81+
as<ModuleDecl>(module.astRootNode)->getName(),
82+
PathInfo::makePath(module.dependentFiles.getFirst()),
83+
module, &sink);
84+
if (!loadedModule)
85+
return SLANG_FAIL;
86+
library->m_modules.add(loadedModule);
7787
}
7888
}
7989

@@ -93,7 +103,7 @@ SlangResult loadModuleLibrary(const Byte* inBytes, size_t bytesCount, EndToEndCo
93103
return SLANG_OK;
94104
}
95105

96-
SlangResult loadModuleLibrary(ArtifactKeep keep, IArtifact* artifact, EndToEndCompileRequest* req, ComPtr<IModuleLibrary>& outLibrary)
106+
SlangResult loadModuleLibrary(ArtifactKeep keep, IArtifact* artifact, String path, EndToEndCompileRequest* req, ComPtr<IModuleLibrary>& outLibrary)
97107
{
98108
if (auto foundLibrary = findRepresentation<IModuleLibrary>(artifact))
99109
{
@@ -107,7 +117,7 @@ SlangResult loadModuleLibrary(ArtifactKeep keep, IArtifact* artifact, EndToEndCo
107117

108118
// Load the module
109119
ComPtr<IModuleLibrary> library;
110-
SLANG_RETURN_ON_FAIL(loadModuleLibrary((const Byte*)blob->getBufferPointer(), blob->getBufferSize(), req, library));
120+
SLANG_RETURN_ON_FAIL(loadModuleLibrary((const Byte*)blob->getBufferPointer(), blob->getBufferSize(), path, req, library));
111121

112122
if (canKeep(keep))
113123
{

source/slang/slang-module-library.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@ class ModuleLibrary : public ComBaseObject, public IModuleLibrary
3030
virtual SLANG_NO_THROW bool SLANG_MCALL exists() SLANG_OVERRIDE { return true; }
3131

3232
List<FrontEndCompileRequest::ExtraEntryPointInfo> m_entryPoints;
33-
List<RefPtr<IRModule>> m_modules;
33+
List<RefPtr<Module>> m_modules;
3434

3535
void* getInterface(const Guid& uuid);
3636
void* getObject(const Guid& uuid);
3737
};
3838

39-
SlangResult loadModuleLibrary(const Byte* inBytes, size_t bytesCount, EndToEndCompileRequest* req, ComPtr<IModuleLibrary>& outModule);
39+
SlangResult loadModuleLibrary(const Byte* inBytes, size_t bytesCount, String Path, EndToEndCompileRequest* req, ComPtr<IModuleLibrary>& outModule);
4040

4141
// Given a product make available as a module
42-
SlangResult loadModuleLibrary(ArtifactKeep keep, IArtifact* artifact, EndToEndCompileRequest* req, ComPtr<IModuleLibrary>& outModule);
42+
SlangResult loadModuleLibrary(ArtifactKeep keep, IArtifact* artifact, String Path, EndToEndCompileRequest* req, ComPtr<IModuleLibrary>& outModule);
4343

4444
} // namespace Slang
4545

0 commit comments

Comments
 (0)