Execution¶
Runtime Structure¶
Stack¶
Exception Handlers
Legacy exception handlers are installed by
Administrative Instructions¶
Administrative instructions are extended with the
Block Contexts¶
Block contexts are extended to include
Throw Contexts¶
Throw contexts are also extended to include
Instructions¶
Control Instructions¶
¶
Assert: due to validation,
is defined.Let
be the function type .Let
be the label whose arity is and whose continuation is the end of the instruction.Assert: due to validation, there are at least
values on the top of the stack.Pop the values
from the stack.Let
be the current frame.For each catch clause
do:Assert: due to validation,
exists.Let
be the tag address .Let
be the catch clause .
If there is a catch-all clause
, then:Let
be the handler .
Else:
Let
be empty.
Let
be the concatenation of and .Enter the block
with label and exception handler .
¶
Assert: due to validation,
is defined.Let
be the function type .Let
be the label whose arity is and whose continuation is the end of the instruction.Let
be the exception handler , targeting the -th surrounding block.Assert: due to validation, there are at least
values on the top of the stack.Pop the values
from the stack.Enter the block
with label and exception handler HANDLER_n{DELEGATE~l}.
¶
Let
be the current frame.Assert: due to validation, a reference is on the top of the stack.
Pop the reference
from the stack.If
is , then:Trap.
Assert: due to validation,
is an exception reference.Let
be .Assert: due to validation,
exists.Let
be the exception instance .Let
be the tag address .While the stack is not empty and the top of the stack is not an exception handler, do:
Pop the top element from the stack.
Assert: the stack is now either empty, or there is an exception handler on the top of the stack.
If the stack is empty, then:
Return the exception
as a result.
Assert: there is an exception handler on the top of the stack.
Pop the exception handler
from the stack.If
is empty, then:Push the exception reference
back to the stack.Execute the instruction
again.
Else:
Let
be the first catch clause in and the remaining clauses.If
is of the form and the exception address equals , then:Push the values
to the stack.Execute the instruction
.
Else if
is of the form and the exception address equals , then:Push the values
to the stack.Push the exception reference
to the stack.Execute the instruction
.
Else if
is of the form , then:Execute the instruction
.
Else if
is of the form , then:Push the exception reference
to the stack.Execute the instruction
.
Else if
is of the form and the exception address equals , then:Push the caught exception
to the stack.Push the values
to the stack.Enter the catch block
.
Else if
is of the form , then:Push the caught exception
to the stack.Enter the catch block
.
Else if
is of the form , then:Assert: due to validation, the stack contains at least
labels.Repeat
times:While the top of the stack is not a label, do:
Pop the top element from the stack.
Assert: due to validation, the top of the stack now is a label.
Pop the label from the stack.
Push the exception reference
back to the stack.Execute the instruction
again.
Else:
Push the modified handler
back to the stack.Push the exception reference
back to the stack.Execute the instruction
again.
¶
Assert: due to validation, the stack contains at least
labels.Let
be the -th label appearing on the stack, starting from the top and counting from zero.Assert: due to validation,
is a catch label, i.e., a label of the form , which is a label followed by a caught exception in an active catch clause.Let
be the caught exception address.Push the value
onto the stack.Execute the instruction
.
Entering a catch block¶
Jump to the start of the instruction sequence
.
Exiting a catch block¶
When the
Let
be the values on the top of the stack.Pop the values
from the stack.Assert: due to validation, a caught exception is now on the top of the stack.
Pop the caught exception from the stack.
Push
back to the stack.Jump to the position after the
of the administrative instruction associated with the caught exception.
Note
A caught exception can only be rethrown from the scope of the administrative instruction associated with it, i.e., from the scope of the