From 4bad669bbc5ec3ff77321f083c59cde87eb10229 Mon Sep 17 00:00:00 2001 From: Jay Kwak <82421531+jkwak-work@users.noreply.github.com> Date: Fri, 25 Oct 2024 10:14:22 -0700 Subject: Replace stdlib on Slang API with CoreModule (#5405) This is a breaking change in a way that the Slang API function names are changed. All of them are commented as "experimental" and we wouldn't provide a back-ward compatibility for them. Following functions are renamed: compileStdLib() -> compileCoreModule() loadStdLib() -> loadCoreModule() saveStdLib() -> saveCoreModule() slang_createGlobalSessionWithoutStdLib() -> slang_createGlobalSessionWithoutCoreModule() slang_getEmbeddedStdLib() -> slang_getEmbeddedCoreModule() hasDeferredStdLib() -> hasDeferredCoreModule() Following command-line arguments are renamed: "-load-stdlib" -> "-load-core-module" "-save-stdlib" -> "-save-core-module" "-save-stdlib-bin-source" -> "-save-core-module-bin-source" "-compile-stdlib" -> "-compile-core-module" --- source/core/slang-test-tool-util.cpp | 4 ++-- source/core/slang-test-tool-util.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'source/core') diff --git a/source/core/slang-test-tool-util.cpp b/source/core/slang-test-tool-util.cpp index 9a0ebe4f1..d362d7043 100644 --- a/source/core/slang-test-tool-util.cpp +++ b/source/core/slang-test-tool-util.cpp @@ -37,12 +37,12 @@ namespace Slang } } -/* static */bool TestToolUtil::hasDeferredStdLib(Index argc, const char*const* argv) +/* static */bool TestToolUtil::hasDeferredCoreModule(Index argc, const char*const* argv) { for (Index i = 0; i < argc; ++i) { UnownedStringSlice option(argv[i]); - if (option == "-load-stdlib" || option == "-compile-stdlib") + if (option == "-load-core-module" || option == "-compile-core-module") { return true; } diff --git a/source/core/slang-test-tool-util.h b/source/core/slang-test-tool-util.h index 03f3b768e..967dc0fa8 100644 --- a/source/core/slang-test-tool-util.h +++ b/source/core/slang-test-tool-util.h @@ -64,8 +64,8 @@ struct TestToolUtil /// Sets the default preludes on the session based on the executable path static SlangResult setSessionDefaultPreludeFromExePath(const char* exePath, slang::IGlobalSession* session); - /// Returns true if the StdLib should not be initialized immediately (eg when doing a -load-stdlib). - static bool hasDeferredStdLib(Index numArgs, const char*const* args); + /// Returns true if the core module should not be initialized immediately (eg when doing a -load-core-module). + static bool hasDeferredCoreModule(Index numArgs, const char*const* args); static SlangResult getDllDirectoryPath(const char* exePath, String& outDllDirectoryPath); }; -- cgit v1.2.3