Skip to content

Commit 763627d

Browse files
committed
Emit try_table instruction
1 parent 92c4296 commit 763627d

File tree

2 files changed

+12
-15
lines changed

2 files changed

+12
-15
lines changed

compiler/lib-wasm/wasm_output.ml

+6-5
Original file line numberDiff line numberDiff line change
@@ -648,15 +648,16 @@ end = struct
648648
output_byte ch 0x0B
649649
| Try (typ, l, catches) ->
650650
Feature.require exception_handling;
651-
output_byte ch 0x06;
651+
output_byte ch 0x1f;
652652
output_blocktype st.type_names ch typ;
653-
List.iter ~f:(fun i' -> output_instruction st ch i') l;
653+
output_uint ch (List.length catches);
654654
List.iter
655-
~f:(fun (tag, l, ty) ->
656-
output_byte ch 0x07;
655+
~f:(fun (tag, l, _) ->
656+
output_byte ch 0x00;
657657
output_uint ch (Hashtbl.find st.tag_names tag);
658-
output_instruction st ch (Br (l + 1, Some (Pop ty))))
658+
output_uint ch l)
659659
catches;
660+
List.iter ~f:(fun i' -> output_instruction st ch i') l;
660661
output_byte ch 0X0B
661662

662663
and output_instruction st ch i =

compiler/lib-wasm/wat_output.ml

+6-10
Original file line numberDiff line numberDiff line change
@@ -444,17 +444,13 @@ let expression_or_instructions ctx st in_function =
444444
]
445445
| Try (ty, body, catches) ->
446446
[ List
447-
(Atom "try"
447+
(Atom "try_table"
448448
:: (block_type st ty
449-
@ List (Atom "do" :: instructions body)
450-
:: List.map
451-
~f:(fun (tag, i, ty) ->
452-
List
453-
(Atom "catch"
454-
:: index st.tag_names tag
455-
:: (instruction (Wasm_ast.Event Code_generation.hidden_location)
456-
@ instruction (Wasm_ast.Br (i + 1, Some (Pop ty))))))
457-
catches))
449+
@ List.map
450+
~f:(fun (tag, i, _ty) ->
451+
List [ Atom "catch"; index st.tag_names tag; Atom (string_of_int i) ])
452+
catches
453+
@ instructions body))
458454
]
459455
and instruction i =
460456
match i with

0 commit comments

Comments
 (0)