From e140c4950eb8c69606386ca57284c0655513b9e1 Mon Sep 17 00:00:00 2001 From: jsmall-nvidia Date: Wed, 18 Nov 2020 18:12:43 -0500 Subject: Test for serializing out and reading back Stdlib (#1605) * #include an absolute path didn't work - because paths were taken to always be relative. * Mangling/module name extraction for GenericDecl * Add comment on SerialFilter to explain re-enabling Stmt. * Support setting up SyntaxDecl when reconstructed after deserialization. * Improvements to setup SyntaxDecl. * Fix typo so can read compressed SourceLocs. * Fix issue with SourceManger. * Simple test for serializing out stdlib and reading back in. * Fix calling convention. * Add override to StdLib impls. * Fix typo. * Apply testing to an actual compute test when using load-stdlib Make -load/compile-stdlib processable by Slang Move out testing into util into TestToolUtil so can be shared. * Slightly more concise setup of session. * Fix some errors introduced with session handling. * Made setup for compile same across slangc and slangc-tool. --- source/slang/slang-options.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'source/slang/slang-options.cpp') diff --git a/source/slang/slang-options.cpp b/source/slang/slang-options.cpp index 8897a6549..6a5b43876 100644 --- a/source/slang/slang-options.cpp +++ b/source/slang/slang-options.cpp @@ -447,6 +447,18 @@ struct OptionsParser { flags |= SLANG_COMPILE_FLAG_NO_MANGLING; } + else if (argStr == "-load-stdlib") + { + SLANG_RETURN_ON_FAIL(session->loadStdLib()); + } + else if (argStr == "-compile-stdlib") + { + SLANG_RETURN_ON_FAIL(session->compileStdLib()); + } + else if (argStr == "-save-stdlib") + { + SLANG_RETURN_ON_FAIL(session->saveStdLib()); + } else if (argStr == "-no-codegen") { flags |= SLANG_COMPILE_FLAG_NO_CODEGEN; -- cgit v1.2.3