Validation

Conventions

Contexts

The context is enriched with an additional flag on label types:

labeltype::=catch? resulttypeC::={,labels labeltype,}

Existing typing rules are adjusted as follows:

  • All rules that extend the context with new labels use an absent catch flag.

  • All rules that inspect the context for a label ignore the presence of a catch flag.

Note

This flag is used to distinguish labels bound by catch clauses, which can be targeted by rethrow.

Instructions

Control Instructions

try blocktype instr1 (catch x instr2) (catch_all instr3)? end

  • The block type must be valid as some function type [t1][t2].

  • Let C be the same context as C, but with the label type [t2] prepended to the labels vector.

  • Under context C, the instruction sequence instr1 must be valid with type [t1][t2].

  • Let C be the same context as C, but with the label type catch [t2] prepended to the labels vector.

  • For every xi and instr2i in (catch x instr2):

    • The tag C.tags[xi] must be defined in the context C.

    • Let [t3i][t4i] be the tag type C.tags[xi].

    • The result type [t4i] must be empty.

    • Under context C, the instruction sequence instr2i must be valid with type [t3i][t2].

  • If (catch_all instr3)? is not empty, then:

    • Under context C, the instruction sequence instr3 must be valid with type [][t2].

  • Then the compound instruction is valid with type [t1][t2].

 Cblocktype:[t1][t2]C,labels[t2]instr1:[t1][t2](C.tags[x]=[t][])C,labels(catch [t2])instr2:[t][t2])(C,labels(catch [t2])instr3:[][t2])?Ctry blocktype instr1 (catch x instr2) (catch_all instr3)? end:[t1][t2]

Note

The notation C,labels(catch [t]) inserts the new label type at index 0, shifting all others.

try blocktype instr delegate l

  • The label C.labels[l] must be defined in the context.

  • The block type must be valid as some function type [t1][t2].

  • Let C be the same context as C, but with the result type [t2] prepended to the labels vector.

  • Under context C, the instruction sequence instr must be valid with type [t1][t2].

  • Then the compound instruction is valid with type [t1][t2].

 Cblocktype:[t1][t2]C,labels[t2]instr:[t1][t2]C.labels[l]=[t0]Ctry blocktype instr delegate l:[t1][t2]

Note

The label index space in the context C contains the most recent label first, so that C.labels[l] performs a relative lookup as expected.

rethrow l

  • The label C.labels[l] must be defined in the context.

  • Let (catch? [t]) be the label type C.labels[l].

  • The catch must be present in the label type C.labels[l].

  • Then the instruction is valid with type [t1][t2], for any sequences of value types t1 and t2.

 C.labels[l]=catch [t]Crethrow l:[t1][t2]

Note

The rethrow instruction is stack-polymorphic.