Structure

Instructions

Control Instructions

The set of recognised instructions is extended with the following:

instr::=|try blocktype instr (catch tagidx instr) (catch_all instr)? end|try blocktype instr delegate labelidx|rethrow labelidx

The instructions try and rethrow, are concerned with exceptions. The try instruction installs an exception handler, and may either handle exceptions in the case of catch and catch_all, or rethrow them in an outer block in the case of delegate.

The rethrow instruction is only allowed inside a catch or catch_all clause and allows rethrowing the caught exception by lexically referring to a the corresponding try.

When try-delegate handles an exception, it also behaves similar to a forward jump, effectively rethrowing the caught exception right before the matching end.