diff options
| author | jsmall-nvidia <jsmall@nvidia.com> | 2020-10-06 17:07:22 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-06 14:07:22 -0700 |
| commit | 4ad2e52662a00f7d8b25be6d451bba33ba62947f (patch) | |
| tree | abd70777a73037c44e40d182e332c7a19c60e779 /source/slang/slang.vcxproj | |
| parent | 8a70e20df6f47678c146eb29f89655aa734f97c7 (diff) | |
Use Reflection for (Serial)RefObject Serialization (#1567)
* First pass at generalizing serializer.
* Split out ReflectClassInfo
* Use the general ReflectClassInfo
* Fix some typos in debug generalized serialization.
* Add calculation of classIds.
Make distinct addCopy/add on SerialClasses.
* Write up of more generalized serialization
* WIP to transition from ASTSerialReader/Writer etc to generalized SerialReader/Writer and associated types.
* Improvements to SerialExtraObjects.
Keep RefObjects in scope in factory
* Compiles with Serial refactor - doesn't quite work yet.
* First pass serialization appears to work with refector.
* Split out type info for general slang types.
* Split out slang-serialize-misc-type-info.h
* DebugSerialData -> SerialSourecLocData
DebugSerialReader -> SerialSourceLocReader
DebugSerialWriter -> SerialSourceLocWriter
* Remove unused template that only compiles on VS.
* Fix warning around unused function on non-VS.
* Improve output of type names that are in scopes in C++ extractor.
Update premake5.lua to run generation for RefObject derived types.
* C++ extractor working on RefObject type.
* Split out serialization functionality that spans different types into slang-serialization-factory.cpp/.h
Put AST type info into header.
Removed RefObjectSerialSubType - use RefObjectType
Add filtering for RefObject derived types
Remove construction and filteringhacks.
* Set up field serialization for SerialRefObject derived types.
* Fix template problem compiling on Clang/Gcc
* Work in progress to make Value types work.
* Added slang-value-reflect.cpp
Diffstat (limited to 'source/slang/slang.vcxproj')
| -rw-r--r-- | source/slang/slang.vcxproj | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/source/slang/slang.vcxproj b/source/slang/slang.vcxproj index 7dafd3823..ec3066778 100644 --- a/source/slang/slang.vcxproj +++ b/source/slang/slang.vcxproj @@ -281,10 +281,15 @@ <ClInclude Include="slang-preprocessor.h" /> <ClInclude Include="slang-profile-defs.h" /> <ClInclude Include="slang-profile.h" /> + <ClInclude Include="slang-ref-object-generated-macro.h" /> + <ClInclude Include="slang-ref-object-generated.h" /> + <ClInclude Include="slang-ref-object-reflect.h" /> <ClInclude Include="slang-reflection.h" /> <ClInclude Include="slang-repro.h" /> + <ClInclude Include="slang-serialize-ast-type-info.h" /> <ClInclude Include="slang-serialize-ast.h" /> <ClInclude Include="slang-serialize-container.h" /> + <ClInclude Include="slang-serialize-factory.h" /> <ClInclude Include="slang-serialize-ir-types.h" /> <ClInclude Include="slang-serialize-ir.h" /> <ClInclude Include="slang-serialize-misc-type-info.h" /> @@ -299,6 +304,9 @@ <ClInclude Include="slang-token.h" /> <ClInclude Include="slang-type-layout.h" /> <ClInclude Include="slang-type-system-shared.h" /> + <ClInclude Include="slang-value-generated-macro.h" /> + <ClInclude Include="slang-value-generated.h" /> + <ClInclude Include="slang-value-reflect.h" /> <ClInclude Include="slang-visitor.h" /> </ItemGroup> <ItemGroup> @@ -398,10 +406,12 @@ <ClCompile Include="slang-parser.cpp" /> <ClCompile Include="slang-preprocessor.cpp" /> <ClCompile Include="slang-profile.cpp" /> + <ClCompile Include="slang-ref-object-reflect.cpp" /> <ClCompile Include="slang-reflection.cpp" /> <ClCompile Include="slang-repro.cpp" /> <ClCompile Include="slang-serialize-ast.cpp" /> <ClCompile Include="slang-serialize-container.cpp" /> + <ClCompile Include="slang-serialize-factory.cpp" /> <ClCompile Include="slang-serialize-ir-types.cpp" /> <ClCompile Include="slang-serialize-ir.cpp" /> <ClCompile Include="slang-serialize-reflection.cpp" /> @@ -414,6 +424,7 @@ <ClCompile Include="slang-token.cpp" /> <ClCompile Include="slang-type-layout.cpp" /> <ClCompile Include="slang-type-system-shared.cpp" /> + <ClCompile Include="slang-value-reflect.cpp" /> <ClCompile Include="slang.cpp" /> </ItemGroup> <ItemGroup> |
