@@ -13,7 +13,7 @@ use crate::masm::{
13
13
DivKind , Extend , ExtractLaneKind , FloatCmpKind , IntCmpKind , LoadKind , MacroAssembler ,
14
14
MemMoveDirection , MulWideKind , OperandSize , RegImm , RemKind , ReplaceLaneKind , RmwOp ,
15
15
RoundingMode , SPOffset , ShiftKind , Signed , SplatKind , SplatLoadKind , StoreKind , TruncKind ,
16
- VectorCompareKind , VectorEqualityKind , VectorExtendKind , Zero ,
16
+ V128LoadExtendKind , VectorCompareKind , VectorEqualityKind , Zero ,
17
17
} ;
18
18
19
19
use crate :: reg:: { writable, Reg } ;
@@ -2790,47 +2790,47 @@ where
2790
2790
self . emit_wasm_load (
2791
2791
& memarg,
2792
2792
WasmValType :: V128 ,
2793
- LoadKind :: VectorExtend ( VectorExtendKind :: V128Extend8x8S ) ,
2793
+ LoadKind :: VectorExtend ( V128LoadExtendKind :: E8x8S ) ,
2794
2794
)
2795
2795
}
2796
2796
2797
2797
fn visit_v128_load8x8_u ( & mut self , memarg : MemArg ) -> Self :: Output {
2798
2798
self . emit_wasm_load (
2799
2799
& memarg,
2800
2800
WasmValType :: V128 ,
2801
- LoadKind :: VectorExtend ( VectorExtendKind :: V128Extend8x8U ) ,
2801
+ LoadKind :: VectorExtend ( V128LoadExtendKind :: E8x8U ) ,
2802
2802
)
2803
2803
}
2804
2804
2805
2805
fn visit_v128_load16x4_s ( & mut self , memarg : MemArg ) -> Self :: Output {
2806
2806
self . emit_wasm_load (
2807
2807
& memarg,
2808
2808
WasmValType :: V128 ,
2809
- LoadKind :: VectorExtend ( VectorExtendKind :: V128Extend16x4S ) ,
2809
+ LoadKind :: VectorExtend ( V128LoadExtendKind :: E16x4S ) ,
2810
2810
)
2811
2811
}
2812
2812
2813
2813
fn visit_v128_load16x4_u ( & mut self , memarg : MemArg ) -> Self :: Output {
2814
2814
self . emit_wasm_load (
2815
2815
& memarg,
2816
2816
WasmValType :: V128 ,
2817
- LoadKind :: VectorExtend ( VectorExtendKind :: V128Extend16x4U ) ,
2817
+ LoadKind :: VectorExtend ( V128LoadExtendKind :: E16x4U ) ,
2818
2818
)
2819
2819
}
2820
2820
2821
2821
fn visit_v128_load32x2_s ( & mut self , memarg : MemArg ) -> Self :: Output {
2822
2822
self . emit_wasm_load (
2823
2823
& memarg,
2824
2824
WasmValType :: V128 ,
2825
- LoadKind :: VectorExtend ( VectorExtendKind :: V128Extend32x2S ) ,
2825
+ LoadKind :: VectorExtend ( V128LoadExtendKind :: E32x2S ) ,
2826
2826
)
2827
2827
}
2828
2828
2829
2829
fn visit_v128_load32x2_u ( & mut self , memarg : MemArg ) -> Self :: Output {
2830
2830
self . emit_wasm_load (
2831
2831
& memarg,
2832
2832
WasmValType :: V128 ,
2833
- LoadKind :: VectorExtend ( VectorExtendKind :: V128Extend32x2U ) ,
2833
+ LoadKind :: VectorExtend ( V128LoadExtendKind :: E32x2U ) ,
2834
2834
)
2835
2835
}
2836
2836
0 commit comments