@@ -117,7 +117,7 @@ impl<'a> ExpressionParser<'a> {
117
117
// If block/loop show up then we just need to be sure to
118
118
// push an `end` instruction whenever the `)` token is
119
119
// seen
120
- i @ Instruction :: Block ( _) | i @ Instruction :: Loop ( _) | i @ Instruction :: Let ( _ ) => {
120
+ i @ Instruction :: Block ( _) | i @ Instruction :: Loop ( _) => {
121
121
self . instrs . push ( i) ;
122
122
self . stack . push ( Level :: EndWith ( Instruction :: End ( None ) ) ) ;
123
123
}
@@ -361,7 +361,6 @@ instructions! {
361
361
CallRef : [ 0x14 ] : "call_ref" ,
362
362
ReturnCallRef : [ 0x15 ] : "return_call_ref" ,
363
363
FuncBind ( ast:: Index <' a>) : [ 0x16 ] : "func.bind" ,
364
- Let ( LetType <' a>) : [ 0x17 ] : "let" ,
365
364
366
365
Drop : [ 0x1a ] : "drop" ,
367
366
Select ( SelectTypes <' a>) : [ ] : "select" ,
@@ -425,19 +424,19 @@ instructions! {
425
424
RefEq : [ 0xd5 ] : "ref.eq" ,
426
425
427
426
// gc proposal: struct
428
- StructNewWithRtt ( ast:: Index <' a>) : [ 0xfb , 0x01 ] : "struct.new_with_rtt" ,
429
- StructNewDefaultWithRtt ( ast:: Index <' a>) : [ 0xfb , 0x02 ] : "struct.new_default_with_rtt" ,
427
+ StructNew ( ast:: Index <' a>) : [ 0xfb , 0x00 ] : "struct.new" ,
428
+ StructNewSub ( ast:: Index <' a>) : [ 0xfb , 0x01 ] : "struct.new_sub" ,
429
+ StructNewDefault ( ast:: Index <' a>) : [ 0xfb , 0x02 ] : "struct.new_default" ,
430
430
StructGet ( StructAccess <' a>) : [ 0xfb , 0x03 ] : "struct.get" ,
431
431
StructGetS ( StructAccess <' a>) : [ 0xfb , 0x04 ] : "struct.get_s" ,
432
432
StructGetU ( StructAccess <' a>) : [ 0xfb , 0x05 ] : "struct.get_u" ,
433
433
StructSet ( StructAccess <' a>) : [ 0xfb , 0x06 ] : "struct.set" ,
434
-
435
- // gc proposal (moz specific, will be removed)
436
434
StructNarrow ( StructNarrow <' a>) : [ 0xfb , 0x07 ] : "struct.narrow" ,
437
435
438
436
// gc proposal: array
439
- ArrayNewWithRtt ( ast:: Index <' a>) : [ 0xfb , 0x11 ] : "array.new_with_rtt" ,
440
- ArrayNewDefaultWithRtt ( ast:: Index <' a>) : [ 0xfb , 0x12 ] : "array.new_default_with_rtt" ,
437
+ ArrayNew ( ast:: Index <' a>) : [ 0xfb , 0x10 ] : "array.new" ,
438
+ ArrayNewSub ( ast:: Index <' a>) : [ 0xfb , 0x11 ] : "array.new_sub" ,
439
+ ArrayNewDefault ( ast:: Index <' a>) : [ 0xfb , 0x12 ] : "array.new_default" ,
441
440
ArrayGet ( ast:: Index <' a>) : [ 0xfb , 0x13 ] : "array.get" ,
442
441
ArrayGetS ( ast:: Index <' a>) : [ 0xfb , 0x14 ] : "array.get_s" ,
443
442
ArrayGetU ( ast:: Index <' a>) : [ 0xfb , 0x15 ] : "array.get_u" ,
@@ -450,11 +449,11 @@ instructions! {
450
449
I31GetU : [ 0xfb , 0x22 ] : "i31.get_u" ,
451
450
452
451
// gc proposal, rtt/casting
453
- RTTCanon ( HeapType <' a>) : [ 0xfb , 0x30 ] : "rtt.canon " ,
454
- RTTSub ( RTTSub <' a>) : [ 0xfb , 0x31 ] : "rtt.sub" ,
455
- RefTest ( RefTest < ' a> ) : [ 0xfb , 0x40 ] : "ref.test" ,
456
- RefCast ( RefTest < ' a> ) : [ 0xfb , 0x41 ] : "ref.cast" ,
457
- BrOnCast ( BrOnCast <' a>) : [ 0xfb , 0x42 ] : "br_on_cast" ,
452
+ RTTGet ( ast :: Index <' a>) : [ 0xfb , 0x30 ] : "rtt.get " ,
453
+ RTTSub ( ast :: Index <' a>) : [ 0xfb , 0x31 ] : "rtt.sub" ,
454
+ RefTest : [ 0xfb , 0x40 ] : "ref.test" ,
455
+ RefCast : [ 0xfb , 0x41 ] : "ref.cast" ,
456
+ BrOnCast ( ast :: Index <' a>) : [ 0xfb , 0x42 ] : "br_on_cast" ,
458
457
459
458
I32Const ( i32 ) : [ 0x41 ] : "i32.const" ,
460
459
I64Const ( i64 ) : [ 0x42 ] : "i64.const" ,
@@ -912,23 +911,6 @@ impl<'a> Parse<'a> for BlockType<'a> {
912
911
}
913
912
}
914
913
915
- /// Extra information associated with the let instruction.
916
- #[ derive( Debug ) ]
917
- #[ allow( missing_docs) ]
918
- pub struct LetType < ' a > {
919
- pub block : BlockType < ' a > ,
920
- pub locals : Vec < ast:: Local < ' a > > ,
921
- }
922
-
923
- impl < ' a > Parse < ' a > for LetType < ' a > {
924
- fn parse ( parser : Parser < ' a > ) -> Result < Self > {
925
- Ok ( LetType {
926
- block : parser. parse ( ) ?,
927
- locals : ast:: Local :: parse_remainder ( parser) ?,
928
- } )
929
- }
930
- }
931
-
932
914
/// Extra information associated with the `br_table` instruction.
933
915
#[ allow( missing_docs) ]
934
916
#[ derive( Debug ) ]
@@ -1382,55 +1364,3 @@ impl<'a> Parse<'a> for BrOnExn<'a> {
1382
1364
Ok ( BrOnExn { label, exn } )
1383
1365
}
1384
1366
}
1385
-
1386
- /// Payload of the `br_on_cast` instruction
1387
- #[ derive( Debug ) ]
1388
- #[ allow( missing_docs) ]
1389
- pub struct BrOnCast < ' a > {
1390
- pub label : ast:: Index < ' a > ,
1391
- pub val : HeapType < ' a > ,
1392
- pub rtt : HeapType < ' a > ,
1393
- }
1394
-
1395
- impl < ' a > Parse < ' a > for BrOnCast < ' a > {
1396
- fn parse ( parser : Parser < ' a > ) -> Result < Self > {
1397
- let label = parser. parse ( ) ?;
1398
- let val = parser. parse ( ) ?;
1399
- let rtt = parser. parse ( ) ?;
1400
- Ok ( BrOnCast { label, val, rtt } )
1401
- }
1402
- }
1403
-
1404
- /// Payload of the `rtt.sub` instruction
1405
- #[ derive( Debug ) ]
1406
- #[ allow( missing_docs) ]
1407
- pub struct RTTSub < ' a > {
1408
- pub depth : u32 ,
1409
- pub input_rtt : HeapType < ' a > ,
1410
- pub output_rtt : HeapType < ' a > ,
1411
- }
1412
-
1413
- impl < ' a > Parse < ' a > for RTTSub < ' a > {
1414
- fn parse ( parser : Parser < ' a > ) -> Result < Self > {
1415
- let depth = parser. parse ( ) ?;
1416
- let input_rtt = parser. parse ( ) ?;
1417
- let output_rtt = parser. parse ( ) ?;
1418
- Ok ( RTTSub { depth, input_rtt, output_rtt } )
1419
- }
1420
- }
1421
-
1422
- /// Payload of the `ref.test/cast` instruction
1423
- #[ derive( Debug ) ]
1424
- #[ allow( missing_docs) ]
1425
- pub struct RefTest < ' a > {
1426
- pub val : HeapType < ' a > ,
1427
- pub rtt : HeapType < ' a > ,
1428
- }
1429
-
1430
- impl < ' a > Parse < ' a > for RefTest < ' a > {
1431
- fn parse ( parser : Parser < ' a > ) -> Result < Self > {
1432
- let val = parser. parse ( ) ?;
1433
- let rtt = parser. parse ( ) ?;
1434
- Ok ( RefTest { val, rtt } )
1435
- }
1436
- }
0 commit comments