diff options
| author | Tim Foley <tfoley@nvidia.com> | 2017-07-19 09:36:35 -0700 |
|---|---|---|
| committer | Tim Foley <tfoley@nvidia.com> | 2017-07-19 18:15:37 -0700 |
| commit | 3f48e1c0d84bf4909954154ad147559656e87516 (patch) | |
| tree | 0b93a109d51e6565560ad785519a863386490e2a /source/core/exception.h | |
| parent | a2b8b4c20632d79721052abd232fe2d1bdf2700d (diff) | |
Try to improve handling of failures during compilation
The change is mostly about trying to make sure the compiler "fails safe" when it encounters an internal assumption that isn't met.
Most internal errors will now throw exceptions (yes, exceptions are evil, but this will work for now), and these get caught in `spCompile` so that they don't propagate to the user (they just see a message that compilation aborted due to an internal error).
Subsequent changes are going to need to work on diagnosing as many of these situations as possible, so that users can at least know what construct in their code was unexpected or unhandled by the compiler.
Diffstat (limited to 'source/core/exception.h')
| -rw-r--r-- | source/core/exception.h | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/source/core/exception.h b/source/core/exception.h index dc674de7f..aedb62add 100644 --- a/source/core/exception.h +++ b/source/core/exception.h @@ -111,12 +111,16 @@ namespace Slang } }; - #define SLANG_UNEXPECTED(reason) \ - throw Slang::Exception("unexpected: " reason) - - #define SLANG_UNIMPLEMENTED_X(what) \ - throw Slang::NotImplementedException("unimplemented: " what) - + class InternalError : public Exception + { + public: + InternalError() + {} + InternalError(const String & message) + : Exception(message) + { + } + }; } #endif
\ No newline at end of file |
