1 | // Copyright (C) 2016 The Qt Company Ltd. |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | #ifndef OPTIONS_H |
4 | #define OPTIONS_H |
5 | |
6 | namespace JSC { |
7 | |
8 | struct Options { |
9 | static bool showDisassembly(); |
10 | static bool showDFGDisassembly() { return true; } |
11 | static bool zeroStackFrame() { return true; } |
12 | static bool dumpCompiledRegExpPatterns() { return false; } |
13 | }; |
14 | |
15 | } |
16 | |
17 | #endif // MASM_STUBS/OPTIONS_H |
18 |