blob: d8ae2aa111fcfeacc09b71f8914c66a026b49eb2 (
plain)
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
|
// test-context.cpp
#include "slangc-tool.h"
#include "../../source/core/slang-exception.h"
#include "../../source/core/slang-io.h"
#include "../../source/core/slang-test-tool-util.h"
using namespace Slang;
SlangResult SlangCTool::innerMain(
StdWriters* stdWriters,
slang::IGlobalSession* sharedSession,
int argc,
const char* const* argv)
{
StdWriters::setSingleton(stdWriters);
// Assume we will used the shared session
ComPtr<slang::IGlobalSession> session(sharedSession);
// The sharedSession always has a pre-loaded core module.
// This differed test checks if the command line has an option to setup the core module.
// If so we *don't* use the sharedSession, and create a new session without the core module just
// for this compilation.
if (TestToolUtil::hasDeferredCoreModule(Index(argc - 1), argv + 1))
{
SLANG_RETURN_ON_FAIL(
slang_createGlobalSessionWithoutCoreModule(SLANG_API_VERSION, session.writeRef()));
}
ComPtr<slang::ICompileRequest> compileRequest;
SLANG_ALLOW_DEPRECATED_BEGIN
SLANG_RETURN_ON_FAIL(session->createCompileRequest(compileRequest.writeRef()));
SLANG_ALLOW_DEPRECATED_END
auto compilerExecutablePath = Path::getParentDirectory(Path::getExecutablePath());
compileRequest->addSearchPath(compilerExecutablePath.getBuffer());
// Do any app specific configuration
for (int i = 0; i < SLANG_WRITER_CHANNEL_COUNT_OF; ++i)
{
const auto channel = SlangWriterChannel(i);
compileRequest->setWriter(channel, stdWriters->getWriter(channel));
}
compileRequest->setCommandLineCompilerMode();
SLANG_RETURN_ON_FAIL(compileRequest->processCommandLineArguments(&argv[1], argc - 1));
SlangResult compileRes = SLANG_OK;
#ifndef _DEBUG
try
#endif
{
// Run the compiler (this will produce any diagnostics through
// SLANG_WRITER_TARGET_TYPE_DIAGNOSTIC).
compileRes = compileRequest->compile();
// If the compilation failed, then get out of here...
// Turn into an internal Result -> such that return code can be used to vary result to match
// previous behavior
compileRes = SLANG_FAILED(compileRes) ? SLANG_E_INTERNAL_FAIL : compileRes;
}
#ifndef _DEBUG
catch (const Exception& e)
{
StdWriters::getOut().print("internal compiler error: %S\n", e.Message.toWString().begin());
compileRes = SLANG_FAIL;
}
#endif
return compileRes;
}
|