summaryrefslogtreecommitdiff
path: root/source/slang-capture-replay/slang-composite-component-type.cpp
diff options
context:
space:
mode:
authorkaizhangNV <149626564+kaizhangNV@users.noreply.github.com>2024-07-23 10:45:26 -0500
committerGitHub <noreply@github.com>2024-07-23 08:45:26 -0700
commit986256ffb92ab7c8fc7cf9f2c424919a439a824f (patch)
tree260e37bd439275e3398d16fe238b20cd00d08cb7 /source/slang-capture-replay/slang-composite-component-type.cpp
parentc28d8b6aec721fa3350fc52647f1572a353f6151 (diff)
Feature/capture (#4625)
* Add decoder * Add a replay executable to consume the decoded content Add file-processor.cpp/h where we implement the logic to process the captured file block by block. Each block is: function header + parameter buffer + function tailer + function output[optional]. After reading one block, the block of data is sent to decoder module to dispatch the corresponding API. Add slang-decoder.cpp/h where we implement the logic to dispatch the slang API according to the input block data. - Rename api_callId.h to capture-format.h - Renmae capture_utility.cpp to capture-utility.cpp - Renmae capture_utility.h to capture-utility.h - Change the #include file name accordingly. * Reorganize source files structure Move all the capture logic code into `capture` directory. - the capture code will be build with slang dll. Move all the replay logic code into `relay` directoy. - the replay code is not part of slang dll, it will be built as a stand alone binary and link against slang dll. Change the #include file names accordingly. Add tools/slang-replay/main.cpp for the slang-replay stand alone binary place holder. Will implement it later. Update premake5.lua accordingly. * Update cmake files Update cmake files to change the build process for capture and relay system. - capture component should be build with slang dll, so we should not include replay component. - replay component should be a separate executable tool, which should not include capture component. - In order to easy use our current cmake infrastructure, move the shared files to a `util` folder - change the header include path * Redesgin the interfaces of consumers Fix some issues in capture Finish implementing all slang-decoder functions * Fix the AppleClang build issue * Address few comments - Fix the weird indent issues. - Correct the function name for CreateGlobalSession() - Rename file-processor to captureFile-processor to be more specific. - Use Slang::List instead of std::vector * record/replay: name refactor change Refactor the naming. Change the name "encoder/capture" to "record".
Diffstat (limited to 'source/slang-capture-replay/slang-composite-component-type.cpp')
-rw-r--r--source/slang-capture-replay/slang-composite-component-type.cpp309
1 files changed, 0 insertions, 309 deletions
diff --git a/source/slang-capture-replay/slang-composite-component-type.cpp b/source/slang-capture-replay/slang-composite-component-type.cpp
deleted file mode 100644
index a0699e27a..000000000
--- a/source/slang-capture-replay/slang-composite-component-type.cpp
+++ /dev/null
@@ -1,309 +0,0 @@
-#include "capture_utility.h"
-#include "slang-composite-component-type.h"
-
-namespace SlangCapture
-{
- CompositeComponentTypeCapture::CompositeComponentTypeCapture(
- slang::IComponentType* componentType, CaptureManager* captureManager)
- : m_actualCompositeComponentType(componentType),
- m_captureManager(captureManager)
- {
- SLANG_CAPTURE_ASSERT(m_actualCompositeComponentType != nullptr);
- SLANG_CAPTURE_ASSERT(m_captureManager != nullptr);
-
- m_compositeComponentHandle = reinterpret_cast<uint64_t>(m_actualCompositeComponentType.get());
- slangCaptureLog(LogLevel::Verbose, "%s: %p\n", __PRETTY_FUNCTION__, componentType);
- }
-
- CompositeComponentTypeCapture::~CompositeComponentTypeCapture()
- {
- m_actualCompositeComponentType->release();
- }
-
- ISlangUnknown* CompositeComponentTypeCapture::getInterface(const Guid& guid)
- {
- if (guid == IComponentType::getTypeGuid())
- {
- return static_cast<ISlangUnknown*>(this);
- }
- return nullptr;
- }
-
- SLANG_NO_THROW slang::ISession* CompositeComponentTypeCapture::getSession()
- {
- slangCaptureLog(LogLevel::Verbose, "%s\n", __PRETTY_FUNCTION__);
-
- ParameterEncoder* encoder {};
- {
- encoder = m_captureManager->beginMethodCapture(ApiCallId::ICompositeComponentType_getSession, m_compositeComponentHandle);
- encoder = m_captureManager->endMethodCapture();
- }
-
- slang::ISession* res = m_actualCompositeComponentType->getSession();
-
- {
- encoder->encodeAddress(res);
- m_captureManager->endMethodCaptureAppendOutput();
- }
-
- return res;
- }
-
- SLANG_NO_THROW slang::ProgramLayout* CompositeComponentTypeCapture::getLayout(
- SlangInt targetIndex,
- slang::IBlob** outDiagnostics)
- {
- slangCaptureLog(LogLevel::Verbose, "%s\n", __PRETTY_FUNCTION__);
-
- ParameterEncoder* encoder {};
- {
- encoder = m_captureManager->beginMethodCapture(ApiCallId::ICompositeComponentType_getLayout, m_compositeComponentHandle);
- encoder->encodeInt64(targetIndex);
- encoder = m_captureManager->endMethodCapture();
- }
-
- slang::ProgramLayout* programLayout = m_actualCompositeComponentType->getLayout(targetIndex, outDiagnostics);
-
- {
- encoder->encodeAddress(*outDiagnostics);
- encoder->encodeAddress(programLayout);
- m_captureManager->endMethodCaptureAppendOutput();
- }
-
- return programLayout;
- }
-
- SLANG_NO_THROW SlangInt CompositeComponentTypeCapture::getSpecializationParamCount()
- {
- // No need to capture this call as it is just a query.
- slangCaptureLog(LogLevel::Verbose, "%s\n", __PRETTY_FUNCTION__);
- SlangInt res = m_actualCompositeComponentType->getSpecializationParamCount();
- return res;
- }
-
- SLANG_NO_THROW SlangResult CompositeComponentTypeCapture::getEntryPointCode(
- SlangInt entryPointIndex,
- SlangInt targetIndex,
- slang::IBlob** outCode,
- slang::IBlob** outDiagnostics)
- {
- slangCaptureLog(LogLevel::Verbose, "%s\n", __PRETTY_FUNCTION__);
-
- ParameterEncoder* encoder {};
- {
- encoder = m_captureManager->beginMethodCapture(ApiCallId::ICompositeComponentType_getEntryPointCode, m_compositeComponentHandle);
- encoder->encodeInt64(entryPointIndex);
- encoder->encodeInt64(targetIndex);
- encoder = m_captureManager->endMethodCapture();
- }
-
- SlangResult res = m_actualCompositeComponentType->getEntryPointCode(entryPointIndex, targetIndex, outCode, outDiagnostics);
-
- {
- encoder->encodeAddress(*outCode);
- encoder->encodeAddress(*outDiagnostics);
- m_captureManager->endMethodCaptureAppendOutput();
- }
-
- return res;
- }
-
- SLANG_NO_THROW SlangResult CompositeComponentTypeCapture::getTargetCode(
- SlangInt targetIndex,
- slang::IBlob** outCode,
- slang::IBlob** outDiagnostics)
- {
- slangCaptureLog(LogLevel::Verbose, "%s\n", __PRETTY_FUNCTION__);
-
- ParameterEncoder* encoder {};
- {
- encoder = m_captureManager->beginMethodCapture(ApiCallId::ICompositeComponentType_getTargetCode, m_compositeComponentHandle);
- encoder->encodeInt64(targetIndex);
- encoder = m_captureManager->endMethodCapture();
- }
-
- SlangResult res = m_actualCompositeComponentType->getTargetCode(targetIndex, outCode, outDiagnostics);
-
- {
- encoder->encodeAddress(*outCode);
- encoder->encodeAddress(*outDiagnostics);
- m_captureManager->endMethodCaptureAppendOutput();
- }
-
- return res;
- }
-
- SLANG_NO_THROW SlangResult CompositeComponentTypeCapture::getResultAsFileSystem(
- SlangInt entryPointIndex,
- SlangInt targetIndex,
- ISlangMutableFileSystem** outFileSystem)
- {
- slangCaptureLog(LogLevel::Verbose, "%s\n", __PRETTY_FUNCTION__);
-
- ParameterEncoder* encoder {};
- {
- encoder = m_captureManager->beginMethodCapture(ApiCallId::ICompositeComponentType_getResultAsFileSystem, m_compositeComponentHandle);
- encoder->encodeInt64(entryPointIndex);
- encoder->encodeInt64(targetIndex);
- encoder = m_captureManager->endMethodCapture();
- }
-
- SlangResult res = m_actualCompositeComponentType->getResultAsFileSystem(entryPointIndex, targetIndex, outFileSystem);
-
- {
- encoder->encodeAddress(*outFileSystem);
- }
-
- // TODO: We might need to wrap the file system object.
- return res;
- }
-
- SLANG_NO_THROW void CompositeComponentTypeCapture::getEntryPointHash(
- SlangInt entryPointIndex,
- SlangInt targetIndex,
- slang::IBlob** outHash)
- {
- slangCaptureLog(LogLevel::Verbose, "%s\n", __PRETTY_FUNCTION__);
-
- ParameterEncoder* encoder {};
- {
- encoder = m_captureManager->beginMethodCapture(ApiCallId::ICompositeComponentType_getEntryPointHash, m_compositeComponentHandle);
- encoder->encodeInt64(entryPointIndex);
- encoder->encodeInt64(targetIndex);
- encoder = m_captureManager->endMethodCapture();
- }
-
- m_actualCompositeComponentType->getEntryPointHash(entryPointIndex, targetIndex, outHash);
-
- {
- encoder->encodeAddress(*outHash);
- m_captureManager->endMethodCaptureAppendOutput();
- }
- }
-
- SLANG_NO_THROW SlangResult CompositeComponentTypeCapture::specialize(
- slang::SpecializationArg const* specializationArgs,
- SlangInt specializationArgCount,
- slang::IComponentType** outSpecializedComponentType,
- ISlangBlob** outDiagnostics)
- {
- slangCaptureLog(LogLevel::Verbose, "%s\n", __PRETTY_FUNCTION__);
-
- ParameterEncoder* encoder {};
- {
- encoder = m_captureManager->beginMethodCapture(ApiCallId::ICompositeComponentType_specialize, m_compositeComponentHandle);
- encoder->encodeInt64(specializationArgCount);
- encoder->encodeStructArray(specializationArgs, specializationArgCount);
- encoder = m_captureManager->endMethodCapture();
- }
-
- SlangResult res = m_actualCompositeComponentType->specialize(specializationArgs, specializationArgCount, outSpecializedComponentType, outDiagnostics);
-
- {
- encoder->encodeAddress(*outSpecializedComponentType);
- encoder->encodeAddress(*outDiagnostics);
- m_captureManager->endMethodCaptureAppendOutput();
- }
-
- return res;
- }
-
- SLANG_NO_THROW SlangResult CompositeComponentTypeCapture::link(
- slang::IComponentType** outLinkedComponentType,
- ISlangBlob** outDiagnostics)
- {
- slangCaptureLog(LogLevel::Verbose, "%s\n", __PRETTY_FUNCTION__);
-
- ParameterEncoder* encoder {};
- {
- encoder = m_captureManager->beginMethodCapture(ApiCallId::ICompositeComponentType_link, m_compositeComponentHandle);
- encoder = m_captureManager->endMethodCapture();
- }
-
- SlangResult res = m_actualCompositeComponentType->link(outLinkedComponentType, outDiagnostics);
-
- {
- encoder->encodeAddress(*outLinkedComponentType);
- encoder->encodeAddress(*outDiagnostics);
- m_captureManager->endMethodCaptureAppendOutput();
- }
-
- return res;
- }
-
- SLANG_NO_THROW SlangResult CompositeComponentTypeCapture::getEntryPointHostCallable(
- int entryPointIndex,
- int targetIndex,
- ISlangSharedLibrary** outSharedLibrary,
- slang::IBlob** outDiagnostics)
- {
- slangCaptureLog(LogLevel::Verbose, "%s\n", __PRETTY_FUNCTION__);
-
- ParameterEncoder* encoder {};
- {
- encoder = m_captureManager->beginMethodCapture(ApiCallId::ICompositeComponentType_getEntryPointHostCallable, m_compositeComponentHandle);
- encoder->encodeInt32(entryPointIndex);
- encoder->encodeInt32(targetIndex);
- encoder = m_captureManager->endMethodCapture();
- }
-
- SlangResult res = m_actualCompositeComponentType->getEntryPointHostCallable(entryPointIndex, targetIndex, outSharedLibrary, outDiagnostics);
-
- {
- encoder->encodeAddress(*outSharedLibrary);
- encoder->encodeAddress(*outDiagnostics);
- m_captureManager->endMethodCaptureAppendOutput();
- }
-
- return res;
- }
-
- SLANG_NO_THROW SlangResult CompositeComponentTypeCapture::renameEntryPoint(
- const char* newName, IComponentType** outEntryPoint)
- {
- slangCaptureLog(LogLevel::Verbose, "%s\n", __PRETTY_FUNCTION__);
-
- ParameterEncoder* encoder {};
- {
- encoder = m_captureManager->beginMethodCapture(ApiCallId::ICompositeComponentType_renameEntryPoint, m_compositeComponentHandle);
- encoder->encodeString(newName);
- encoder = m_captureManager->endMethodCapture();
- }
-
- SlangResult res = m_actualCompositeComponentType->renameEntryPoint(newName, outEntryPoint);
-
- {
- encoder->encodeAddress(*outEntryPoint);
- m_captureManager->endMethodCaptureAppendOutput();
- }
-
- return res;
- }
-
- SLANG_NO_THROW SlangResult CompositeComponentTypeCapture::linkWithOptions(
- IComponentType** outLinkedComponentType,
- uint32_t compilerOptionEntryCount,
- slang::CompilerOptionEntry* compilerOptionEntries,
- ISlangBlob** outDiagnostics)
- {
- slangCaptureLog(LogLevel::Verbose, "%s\n", __PRETTY_FUNCTION__);
-
- ParameterEncoder* encoder {};
- {
- encoder = m_captureManager->beginMethodCapture(ApiCallId::ICompositeComponentType_linkWithOptions, m_compositeComponentHandle);
- encoder->encodeUint32(compilerOptionEntryCount);
- encoder->encodeStructArray(compilerOptionEntries, compilerOptionEntryCount);
- encoder = m_captureManager->endMethodCapture();
- }
-
- SlangResult res = m_actualCompositeComponentType->linkWithOptions(outLinkedComponentType, compilerOptionEntryCount, compilerOptionEntries, outDiagnostics);
-
- {
- encoder->encodeAddress(*outLinkedComponentType);
- encoder->encodeAddress(*outDiagnostics);
- m_captureManager->endMethodCaptureAppendOutput();
- }
-
- return res;
- }
-}