25
25
26
26
#include "slang-capability.h"
27
27
#include "slang-diagnostics.h"
28
-
29
28
#include "slang-preprocessor.h"
30
29
#include "slang-profile.h"
31
30
#include "slang-syntax.h"
32
31
#include "slang-content-assist-info.h"
33
-
34
32
#include "slang-hlsl-to-vulkan-layout-options.h"
35
33
#include "slang-compiler-options.h"
36
34
#include "slang-serialize-ir-types.h"
@@ -1475,7 +1473,7 @@ namespace Slang
1475
1473
1476
1474
RefPtr<EntryPoint> findEntryPointByName(UnownedStringSlice const& name);
1477
1475
1478
- List<RefPtr<EntryPoint>> const & getEntryPoints() { return m_entryPoints; }
1476
+ List<RefPtr<EntryPoint>>& getEntryPoints() { return m_entryPoints; }
1479
1477
void _addEntryPoint(EntryPoint* entryPoint);
1480
1478
void _processFindDeclsExportSymbolsRec(Decl* decl);
1481
1479
@@ -1551,6 +1549,8 @@ namespace Slang
1551
1549
public:
1552
1550
TranslationUnitRequest(
1553
1551
FrontEndCompileRequest* compileRequest);
1552
+ TranslationUnitRequest(
1553
+ FrontEndCompileRequest* compileRequest, Module* m);
1554
1554
1555
1555
// The parent compile request
1556
1556
FrontEndCompileRequest* compileRequest = nullptr;
@@ -1596,6 +1596,8 @@ namespace Slang
1596
1596
/// Result of compiling this translation unit (a module)
1597
1597
RefPtr<Module> module;
1598
1598
1599
+ bool isChecked = false;
1600
+
1599
1601
Module* getModule() { return module; }
1600
1602
ModuleDecl* getModuleDecl() { return module->getModuleDecl(); }
1601
1603
@@ -1755,6 +1757,8 @@ namespace Slang
1755
1757
Source, IR
1756
1758
};
1757
1759
1760
+ struct SerialContainerDataModule;
1761
+
1758
1762
/// A context for loading and re-using code modules.
1759
1763
class Linkage : public RefObject, public slang::ISession
1760
1764
{
@@ -1959,6 +1963,11 @@ namespace Slang
1959
1963
SourceLoc const& loc,
1960
1964
DiagnosticSink* sink,
1961
1965
const LoadedModuleDictionary* additionalLoadedModules);
1966
+ RefPtr<Module> loadDeserializedModule(
1967
+ Name* name,
1968
+ const PathInfo& filePathInfo,
1969
+ SerialContainerDataModule& m,
1970
+ DiagnosticSink* sink);
1962
1971
1963
1972
SourceFile* loadSourceFile(String pathFrom, String path);
1964
1973
@@ -1979,7 +1988,7 @@ namespace Slang
1979
1988
DiagnosticSink* sink,
1980
1989
const LoadedModuleDictionary* loadedModules = nullptr);
1981
1990
1982
- void prepareDeserializedModule(Module* module, DiagnosticSink* sink);
1991
+ void prepareDeserializedModule(SerialContainerDataModule& moduleEntry, const PathInfo& pathInfo, Module* module, DiagnosticSink* sink);
1983
1992
1984
1993
SourceFile* findFile(Name* name, SourceLoc loc, IncludeSystem& outIncludeSystem);
1985
1994
struct IncludeResult
@@ -2661,7 +2670,7 @@ namespace Slang
2661
2670
virtual SLANG_NO_THROW void SLANG_MCALL addTranslationUnitPreprocessorDefine(int translationUnitIndex, const char* key, const char* value) SLANG_OVERRIDE;
2662
2671
virtual SLANG_NO_THROW void SLANG_MCALL addTranslationUnitSourceFile(int translationUnitIndex, char const* path) SLANG_OVERRIDE;
2663
2672
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;
2665
2674
virtual SLANG_NO_THROW void SLANG_MCALL addTranslationUnitSourceStringSpan(int translationUnitIndex, char const* path, char const* sourceBegin, char const* sourceEnd) SLANG_OVERRIDE;
2666
2675
virtual SLANG_NO_THROW void SLANG_MCALL addTranslationUnitSourceBlob(int translationUnitIndex, char const* path, ISlangBlob* sourceBlob) SLANG_OVERRIDE;
2667
2676
virtual SLANG_NO_THROW int SLANG_MCALL addEntryPoint(int translationUnitIndex, char const* name, SlangStage stage) SLANG_OVERRIDE;
0 commit comments