Skip to content

Commit 4e2cfc9

Browse files
authored
Added -dump-intermediate-prefix option (shader-slang#1146)
* * Added ability to name the prefix for intermediates * Allowed paramters after -load-repro - as pretty useful if somewhat risky thing to do (depending on parameters) * Fix issue around setting arbitrary state outside of load-repro.
1 parent 138a0c9 commit 4e2cfc9

6 files changed

+34
-10
lines changed

slang.h

+4
Original file line numberDiff line numberDiff line change
@@ -1198,6 +1198,10 @@ extern "C"
11981198
SlangCompileRequest* request,
11991199
int enable);
12001200

1201+
SLANG_API void spSetDumpIntermediatePrefix(
1202+
SlangCompileRequest* request,
1203+
const char* prefix);
1204+
12011205
/*!
12021206
@brief Set whether (and how) `#line` directives should be output.
12031207
*/

source/slang/slang-compiler.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -2472,7 +2472,7 @@ SlangResult dissassembleDXILUsingDXC(
24722472
//
24732473

24742474
void dumpIntermediate(
2475-
BackEndCompileRequest*,
2475+
BackEndCompileRequest* request,
24762476
void const* data,
24772477
size_t size,
24782478
char const* ext,
@@ -2494,7 +2494,7 @@ SlangResult dissassembleDXILUsingDXC(
24942494
#endif
24952495

24962496
String path;
2497-
path.append("slang-dump-");
2497+
path.append(request->m_dumpIntermediatePrefix);
24982498
path.append(id);
24992499
path.append(ext);
25002500

source/slang/slang-compiler.h

+2
Original file line numberDiff line numberDiff line change
@@ -1703,6 +1703,8 @@ namespace Slang
17031703
/// Should SPIR-V be generated directly from Slang IR rather than via translation to GLSL?
17041704
bool shouldEmitSPIRVDirectly = false;
17051705

1706+
String m_dumpIntermediatePrefix;
1707+
17061708
private:
17071709
RefPtr<ComponentType> m_program;
17081710
};

source/slang/slang-diagnostic-defs.h

-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ DIAGNOSTIC( 70, Error, cannotMatchOutputFileToEntryPoint, "the output path '$
109109

110110
DIAGNOSTIC( 80, Error, duplicateOutputPathsForEntryPointAndTarget, "multiple output paths have been specified entry point '$0' on target '$1'")
111111

112-
DIAGNOSTIC( 81, Error, parametersAfterLoadReproIgnored, "parameters after -load-repro [file] are ignored")
113112
DIAGNOSTIC( 82, Error, unableToWriteReproFile, "unable to write repro file '%0'");
114113
DIAGNOSTIC( 83, Error, unableToWriteModuleContainer, "unable to write module container '%0'");
115114
DIAGNOSTIC( 84, Error, unableToReadModuleContainer, "unable to read module container '%0'");

source/slang/slang-options.cpp

+18-7
Original file line numberDiff line numberDiff line change
@@ -512,6 +512,8 @@ struct OptionsParser
512512

513513
SlangMatrixLayoutMode defaultMatrixLayoutMode = SLANG_MATRIX_LAYOUT_MODE_UNKNOWN;
514514

515+
bool hasLoadedRepro = false;
516+
515517
char const* const* argCursor = &argv[0];
516518
char const* const* argEnd = &argv[argc];
517519
while (argCursor != argEnd)
@@ -533,6 +535,12 @@ struct OptionsParser
533535
{
534536
spSetDumpIntermediates(compileRequest, true);
535537
}
538+
else if (argStr == "-dump-intermediate-prefix")
539+
{
540+
String prefix;
541+
SLANG_RETURN_ON_FAIL(tryReadCommandLineArgument(sink, arg, &argCursor, argEnd, prefix));
542+
requestImpl->getBackEndReq()->m_dumpIntermediatePrefix = prefix;
543+
}
536544
else if(argStr == "-dump-ir" )
537545
{
538546
requestImpl->getFrontEndReq()->shouldDumpIR = true;
@@ -587,13 +595,7 @@ struct OptionsParser
587595

588596
SLANG_RETURN_ON_FAIL(StateSerializeUtil::load(base, requestState, fileSystem, requestImpl));
589597

590-
if (argCursor < argEnd)
591-
{
592-
sink->diagnose(SourceLoc(), Diagnostics::parametersAfterLoadReproIgnored);
593-
return SLANG_FAIL;
594-
}
595-
596-
return SLANG_OK;
598+
hasLoadedRepro = true;
597599
}
598600
else if (argStr == "-repro-file-system")
599601
{
@@ -1055,6 +1057,15 @@ struct OptionsParser
10551057
}
10561058
}
10571059

1060+
// TODO(JS): This is a restriction because of how setting of state works for load repro
1061+
// If a repro has been loaded, then many of the following options will overwrite
1062+
// what was set up. So for now they are ignored, and only parameters set as part
1063+
// of the loop work if they are after -load-repro
1064+
if (hasLoadedRepro)
1065+
{
1066+
return SLANG_OK;
1067+
}
1068+
10581069
spSetCompileFlags(compileRequest, flags);
10591070

10601071
// As a compatability feature, if the user didn't list any explicit entry

source/slang/slang.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -1265,6 +1265,7 @@ BackEndCompileRequest::BackEndCompileRequest(
12651265
ComponentType* program)
12661266
: CompileRequestBase(linkage, sink)
12671267
, m_program(program)
1268+
, m_dumpIntermediatePrefix("slang-dump-")
12681269
{}
12691270

12701271
EndToEndCompileRequest::EndToEndCompileRequest(
@@ -2880,6 +2881,13 @@ SLANG_API void spSetDumpIntermediates(
28802881
Slang::asInternal(request)->getBackEndReq()->shouldDumpIntermediates = enable != 0;
28812882
}
28822883

2884+
SLANG_API void spSetDumpIntermediatePrefix(
2885+
SlangCompileRequest* request,
2886+
const char* prefix)
2887+
{
2888+
Slang::asInternal(request)->getBackEndReq()->m_dumpIntermediatePrefix = prefix;
2889+
}
2890+
28832891
SLANG_API void spSetLineDirectiveMode(
28842892
SlangCompileRequest* request,
28852893
SlangLineDirectiveMode mode)

0 commit comments

Comments
 (0)