From cb9d679a3a93c65c44904bf77811b9d74e431e23 Mon Sep 17 00:00:00 2001 From: jsmall-nvidia Date: Fri, 26 Oct 2018 08:16:54 -0400 Subject: Feature/file system cache (#692) * First pass at caching file system. * default-file-system -> slang-file-system fix problem with location("build.linux") confusing windows build for now. * Added CompressedResult Fix problem in Result construction with it being unsigned * Add support for Path simplification. * Testing for Path::Simplify. * Refactored CacheFileSystem - automatically handles ISlangFileSystem or ISlangFileSystemExt appropriately. Removed WrapFileSystem - because wasn't possible to emulate some of the behavior if just loadFile is implemented. Split out StringBlob - so that no need to convert between ISlangBlob and String repeatidly. * Remove unwanted code in ~CompileRequest --- source/slang/compiler.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source/slang/compiler.cpp') diff --git a/source/slang/compiler.cpp b/source/slang/compiler.cpp index 4b7fcb554..f16ad06b7 100644 --- a/source/slang/compiler.cpp +++ b/source/slang/compiler.cpp @@ -3,6 +3,8 @@ #include "../core/basic.h" #include "../core/platform.h" #include "../core/slang-io.h" +#include "../core/slang-string-util.h" + #include "bytecode.h" #include "compiler.h" #include "lexer.h" @@ -108,7 +110,7 @@ namespace Slang break; case ResultFormat::Text: - blob = createStringBlob(outputString); + blob = StringUtil::createStringBlob(outputString); break; case ResultFormat::Binary: -- cgit v1.2.3