diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2020-01-01 10:01:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-01 10:01:49 +0100 |
commit | c3344862b0d6061cc1581f29c81b29b75c78615a (patch) | |
tree | 75661179ec450bb4e2783603c09f4304dfe42a45 /compiler/ccgexprs.nim | |
parent | 8a63caca07349742d071dcd3a7d3e3055fe617cf (diff) | |
download | Nim-c3344862b0d6061cc1581f29c81b29b75c78615a.tar.gz |
--exception:goto switch for deterministic exception handling (#12977)
This implements "deterministic" exception handling for Nim based on goto instead of setjmp. This means raising an exception is much cheaper than in C++'s table based implementations. Supports hard realtime systems. Default for --gc:arc and the C target because it's generally a good idea and arc is all about deterministic behavior. Note: This implies that fatal runtime traps are not catchable anymore! This needs to be documented.
Diffstat (limited to 'compiler/ccgexprs.nim')
-rw-r--r-- | compiler/ccgexprs.nim | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/compiler/ccgexprs.nim b/compiler/ccgexprs.nim index e1f4d180d..8c41fb370 100644 --- a/compiler/ccgexprs.nim +++ b/compiler/ccgexprs.nim @@ -2675,10 +2675,13 @@ proc expr(p: BProc, n: PNode, d: var TLoc) = line(p, cpsStmts, "(void)(" & a.r & ");\L") of nkAsmStmt: genAsmStmt(p, n) of nkTryStmt, nkHiddenTryStmt: - if p.module.compileToCpp and optNoCppExceptions notin p.config.globalOptions: + case p.config.exc + of excGoto: + genTryGoto(p, n, d) + of excCpp: genTryCpp(p, n, d) else: - genTry(p, n, d) + genTrySetjmp(p, n, d) of nkRaiseStmt: genRaiseStmt(p, n) of nkTypeSection: # we have to emit the type information for object types here to support |