aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/compiler/qv4isel_p.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-10-21 17:07:45 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-29 10:38:48 +0100
commit34bf0139c75de861c948391737af3c8c2a42703c (patch)
tree3eeeb615078c27b30e15a77adcda7d6537baef17 /src/qml/compiler/qv4isel_p.cpp
parent5229a8b259286c9ea61036fd6b4bd0039104a206 (diff)
Rework IR code generation for try/catch/finally
Simplify the generated code. Add a special block to catch exceptions thrown inside a catch() statement. store the exception on the stack when entering finally and rethrow it at the end. This ensure correct behavior for break/continue/return statements inside finally. Don't check for exceptions after calling push_catch_scope and pop_scope in the JIT'ed code. This can lead to infinite loops when throwing inside an exception handler. Change-Id: I67e9325794e2fd25b0773b21e02fbaadb43faab0 Change-Id: Ic1ea9c0c43eec1d49177dc1ab4552a1da04e96fe Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/compiler/qv4isel_p.cpp')
-rw-r--r--src/qml/compiler/qv4isel_p.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qml/compiler/qv4isel_p.cpp b/src/qml/compiler/qv4isel_p.cpp
index 7d10230f43..851d5661ff 100644
--- a/src/qml/compiler/qv4isel_p.cpp
+++ b/src/qml/compiler/qv4isel_p.cpp
@@ -270,6 +270,10 @@ void IRDecoder::callBuiltin(V4IR::Call *call, V4IR::Temp *result)
callBuiltinReThrow();
} return;
+ case V4IR::Name::builtin_unwind_exception: {
+ callBuiltinUnwindException(result);
+ } return;
+
case V4IR::Name::builtin_push_catch_scope: {
V4IR::String *s = call->args->expr->asString();
Q_ASSERT(s);