1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
|
#include "capture_utility.h"
#include "slang-entrypoint.h"
namespace SlangCapture
{
EntryPointCapture::EntryPointCapture(slang::IEntryPoint* entryPoint, CaptureManager* captureManager)
: m_actualEntryPoint(entryPoint),
m_captureManager(captureManager)
{
SLANG_CAPTURE_ASSERT(m_actualEntryPoint != nullptr);
SLANG_CAPTURE_ASSERT(m_captureManager != nullptr);
m_entryPointHandle = reinterpret_cast<uint64_t>(m_actualEntryPoint.get());
slangCaptureLog(LogLevel::Verbose, "%s: %p\n", __PRETTY_FUNCTION__, entryPoint);
}
EntryPointCapture::~EntryPointCapture()
{
m_actualEntryPoint->release();
}
ISlangUnknown* EntryPointCapture::getInterface(const Guid& guid)
{
if(guid == EntryPointCapture::getTypeGuid())
return static_cast<ISlangUnknown*>(this);
else
return nullptr;
}
SLANG_NO_THROW slang::ISession* EntryPointCapture::getSession()
{
slangCaptureLog(LogLevel::Verbose, "%s\n", __PRETTY_FUNCTION__);
ParameterEncoder* encoder {};
{
encoder = m_captureManager->beginMethodCapture(ApiCallId::IEntryPoint_getSession, m_entryPointHandle);
encoder = m_captureManager->endMethodCapture();
}
slang::ISession* session = m_actualEntryPoint->getSession();
{
encoder->encodeAddress(session);
m_captureManager->endMethodCaptureAppendOutput();
}
return session;
}
SLANG_NO_THROW slang::ProgramLayout* EntryPointCapture::getLayout(
SlangInt targetIndex,
slang::IBlob** outDiagnostics)
{
slangCaptureLog(LogLevel::Verbose, "%s\n", __PRETTY_FUNCTION__);
ParameterEncoder* encoder {};
{
encoder = m_captureManager->beginMethodCapture(ApiCallId::IEntryPoint_getLayout, m_entryPointHandle);
encoder->encodeInt64(targetIndex);
encoder = m_captureManager->endMethodCapture();
}
slang::ProgramLayout* programLayout = m_actualEntryPoint->getLayout(targetIndex, outDiagnostics);
{
encoder->encodeAddress(*outDiagnostics);
encoder->encodeAddress(programLayout);
m_captureManager->endMethodCaptureAppendOutput();
}
return programLayout;
}
SLANG_NO_THROW SlangInt EntryPointCapture::getSpecializationParamCount()
{
// No need to capture this call as it is just a query.
slangCaptureLog(LogLevel::Verbose, "%s\n", __PRETTY_FUNCTION__);
SlangInt res = m_actualEntryPoint->getSpecializationParamCount();
return res;
}
SLANG_NO_THROW SlangResult EntryPointCapture::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::IEntryPoint_getEntryPointCode, m_entryPointHandle);
encoder->encodeInt64(entryPointIndex);
encoder->encodeInt64(targetIndex);
encoder = m_captureManager->endMethodCapture();
}
SlangResult res = m_actualEntryPoint->getEntryPointCode(entryPointIndex, targetIndex, outCode, outDiagnostics);
{
encoder->encodeAddress(*outCode);
encoder->encodeAddress(*outDiagnostics);
m_captureManager->endMethodCaptureAppendOutput();
}
return res;
}
SLANG_NO_THROW SlangResult EntryPointCapture::getTargetCode(
SlangInt targetIndex,
slang::IBlob** outCode,
slang::IBlob** outDiagnostics)
{
slangCaptureLog(LogLevel::Verbose, "%s\n", __PRETTY_FUNCTION__);
ParameterEncoder* encoder {};
{
encoder = m_captureManager->beginMethodCapture(ApiCallId::IEntryPoint_getTargetCode, m_entryPointHandle);
encoder->encodeInt64(targetIndex);
encoder = m_captureManager->endMethodCapture();
}
SlangResult res = m_actualEntryPoint->getTargetCode(targetIndex, outCode, outDiagnostics);
{
encoder->encodeAddress(*outCode);
encoder->encodeAddress(*outDiagnostics);
m_captureManager->endMethodCaptureAppendOutput();
}
return res;
}
SLANG_NO_THROW SlangResult EntryPointCapture::getResultAsFileSystem(
SlangInt entryPointIndex,
SlangInt targetIndex,
ISlangMutableFileSystem** outFileSystem)
{
slangCaptureLog(LogLevel::Verbose, "%s\n", __PRETTY_FUNCTION__);
ParameterEncoder* encoder {};
{
encoder = m_captureManager->beginMethodCapture(ApiCallId::IEntryPoint_getResultAsFileSystem, m_entryPointHandle);
encoder->encodeInt64(entryPointIndex);
encoder->encodeInt64(targetIndex);
encoder = m_captureManager->endMethodCapture();
}
SlangResult res = m_actualEntryPoint->getResultAsFileSystem(entryPointIndex, targetIndex, outFileSystem);
{
encoder->encodeAddress(*outFileSystem);
}
// TODO: We might need to wrap the file system object.
return res;
}
SLANG_NO_THROW void EntryPointCapture::getEntryPointHash(
SlangInt entryPointIndex,
SlangInt targetIndex,
slang::IBlob** outHash)
{
slangCaptureLog(LogLevel::Verbose, "%s\n", __PRETTY_FUNCTION__);
ParameterEncoder* encoder {};
{
encoder = m_captureManager->beginMethodCapture(ApiCallId::IEntryPoint_getEntryPointHash, m_entryPointHandle);
encoder->encodeInt64(entryPointIndex);
encoder->encodeInt64(targetIndex);
encoder = m_captureManager->endMethodCapture();
}
m_actualEntryPoint->getEntryPointHash(entryPointIndex, targetIndex, outHash);
{
encoder->encodeAddress(*outHash);
m_captureManager->endMethodCaptureAppendOutput();
}
}
SLANG_NO_THROW SlangResult EntryPointCapture::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::IEntryPoint_specialize, m_entryPointHandle);
encoder->encodeInt64(specializationArgCount);
encoder->encodeStructArray(specializationArgs, specializationArgCount);
encoder = m_captureManager->endMethodCapture();
}
SlangResult res = m_actualEntryPoint->specialize(specializationArgs, specializationArgCount, outSpecializedComponentType, outDiagnostics);
{
encoder->encodeAddress(*outSpecializedComponentType);
encoder->encodeAddress(*outDiagnostics);
m_captureManager->endMethodCaptureAppendOutput();
}
return res;
}
SLANG_NO_THROW SlangResult EntryPointCapture::link(
slang::IComponentType** outLinkedComponentType,
ISlangBlob** outDiagnostics)
{
slangCaptureLog(LogLevel::Verbose, "%s\n", __PRETTY_FUNCTION__);
ParameterEncoder* encoder {};
{
encoder = m_captureManager->beginMethodCapture(ApiCallId::IEntryPoint_link, m_entryPointHandle);
encoder = m_captureManager->endMethodCapture();
}
SlangResult res = m_actualEntryPoint->link(outLinkedComponentType, outDiagnostics);
{
encoder->encodeAddress(*outLinkedComponentType);
encoder->encodeAddress(*outDiagnostics);
m_captureManager->endMethodCaptureAppendOutput();
}
return res;
}
SLANG_NO_THROW SlangResult EntryPointCapture::getEntryPointHostCallable(
int entryPointIndex,
int targetIndex,
ISlangSharedLibrary** outSharedLibrary,
slang::IBlob** outDiagnostics)
{
slangCaptureLog(LogLevel::Verbose, "%s\n", __PRETTY_FUNCTION__);
ParameterEncoder* encoder {};
{
encoder = m_captureManager->beginMethodCapture(ApiCallId::IEntryPoint_getEntryPointHostCallable, m_entryPointHandle);
encoder->encodeInt32(entryPointIndex);
encoder->encodeInt32(targetIndex);
encoder = m_captureManager->endMethodCapture();
}
SlangResult res = m_actualEntryPoint->getEntryPointHostCallable(entryPointIndex, targetIndex, outSharedLibrary, outDiagnostics);
{
encoder->encodeAddress(*outSharedLibrary);
encoder->encodeAddress(*outDiagnostics);
m_captureManager->endMethodCaptureAppendOutput();
}
return res;
}
SLANG_NO_THROW SlangResult EntryPointCapture::renameEntryPoint(
const char* newName, IComponentType** outEntryPoint)
{
slangCaptureLog(LogLevel::Verbose, "%s\n", __PRETTY_FUNCTION__);
ParameterEncoder* encoder {};
{
encoder = m_captureManager->beginMethodCapture(ApiCallId::IEntryPoint_renameEntryPoint, m_entryPointHandle);
encoder->encodeString(newName);
encoder = m_captureManager->endMethodCapture();
}
SlangResult res = m_actualEntryPoint->renameEntryPoint(newName, outEntryPoint);
{
encoder->encodeAddress(*outEntryPoint);
m_captureManager->endMethodCaptureAppendOutput();
}
return res;
}
SLANG_NO_THROW SlangResult EntryPointCapture::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::IEntryPoint_linkWithOptions, m_entryPointHandle);
encoder->encodeUint32(compilerOptionEntryCount);
encoder->encodeStructArray(compilerOptionEntries, compilerOptionEntryCount);
encoder = m_captureManager->endMethodCapture();
}
SlangResult res = m_actualEntryPoint->linkWithOptions(outLinkedComponentType, compilerOptionEntryCount, compilerOptionEntries, outDiagnostics);
{
encoder->encodeAddress(*outLinkedComponentType);
encoder->encodeAddress(*outDiagnostics);
m_captureManager->endMethodCaptureAppendOutput();
}
return res;
}
}
|