Skip to content

Commit a0338af

Browse files
authoredJan 31, 2025
Winch: Rename v128 extend kind enum (#10166)
1 parent f6c8d73 commit a0338af

File tree

3 files changed

+26
-26
lines changed

3 files changed

+26
-26
lines changed
 

‎winch/codegen/src/isa/x64/asm.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use crate::{
44
isa::{reg::Reg, CallingConvention},
55
masm::{
66
DivKind, Extend, ExtendKind, ExtendType, IntCmpKind, MulWideKind, OperandSize, RemKind,
7-
RoundingMode, ShiftKind, Signed, VectorExtendKind, Zero,
7+
RoundingMode, ShiftKind, Signed, V128LoadExtendKind, Zero,
88
},
99
reg::writable,
1010
x64::regs::scratch,
@@ -497,18 +497,18 @@ impl Assembler {
497497
&mut self,
498498
src: &Address,
499499
dst: WritableReg,
500-
ext: VectorExtendKind,
500+
ext: V128LoadExtendKind,
501501
flags: MemFlags,
502502
) {
503503
assert!(dst.to_reg().is_float());
504504

505505
let op = match ext {
506-
VectorExtendKind::V128Extend8x8S => AvxOpcode::Vpmovsxbw,
507-
VectorExtendKind::V128Extend8x8U => AvxOpcode::Vpmovzxbw,
508-
VectorExtendKind::V128Extend16x4S => AvxOpcode::Vpmovsxwd,
509-
VectorExtendKind::V128Extend16x4U => AvxOpcode::Vpmovzxwd,
510-
VectorExtendKind::V128Extend32x2S => AvxOpcode::Vpmovsxdq,
511-
VectorExtendKind::V128Extend32x2U => AvxOpcode::Vpmovzxdq,
506+
V128LoadExtendKind::E8x8S => AvxOpcode::Vpmovsxbw,
507+
V128LoadExtendKind::E8x8U => AvxOpcode::Vpmovzxbw,
508+
V128LoadExtendKind::E16x4S => AvxOpcode::Vpmovsxwd,
509+
V128LoadExtendKind::E16x4U => AvxOpcode::Vpmovzxwd,
510+
V128LoadExtendKind::E32x2S => AvxOpcode::Vpmovsxdq,
511+
V128LoadExtendKind::E32x2U => AvxOpcode::Vpmovzxdq,
512512
};
513513

514514
let src = Self::to_synthetic_amode(

‎winch/codegen/src/masm.rs

+11-11
Original file line numberDiff line numberDiff line change
@@ -287,23 +287,23 @@ impl ExtendKind {
287287
}
288288
}
289289

290-
/// Kinds of vector extends in WebAssembly. Each MacroAssembler implementation
291-
/// is responsible for emitting the correct sequence of instructions when
292-
/// lowering to machine code.
290+
/// Kinds of vector load and extends in WebAssembly. Each MacroAssembler
291+
/// implementation is responsible for emitting the correct sequence of
292+
/// instructions when lowering to machine code.
293293
#[derive(Copy, Clone)]
294-
pub(crate) enum VectorExtendKind {
294+
pub(crate) enum V128LoadExtendKind {
295295
/// Sign extends eight 8 bit integers to eight 16 bit lanes.
296-
V128Extend8x8S,
296+
E8x8S,
297297
/// Zero extends eight 8 bit integers to eight 16 bit lanes.
298-
V128Extend8x8U,
298+
E8x8U,
299299
/// Sign extends four 16 bit integers to four 32 bit lanes.
300-
V128Extend16x4S,
300+
E16x4S,
301301
/// Zero extends four 16 bit integers to four 32 bit lanes.
302-
V128Extend16x4U,
302+
E16x4U,
303303
/// Sign extends two 32 bit integers to two 64 bit lanes.
304-
V128Extend32x2S,
304+
E32x2S,
305305
/// Zero extends two 32 bit integers to two 64 bit lanes.
306-
V128Extend32x2U,
306+
E32x2U,
307307
}
308308

309309
/// Kinds of splat loads supported by WebAssembly.
@@ -431,7 +431,7 @@ pub(crate) enum LoadKind {
431431
/// Scalar (non-vector) extend.
432432
ScalarExtend(ExtendKind),
433433
/// Vector extend.
434-
VectorExtend(VectorExtendKind),
434+
VectorExtend(V128LoadExtendKind),
435435
/// Load content into select lane.
436436
VectorLane(LaneSelector),
437437
}

‎winch/codegen/src/visitor.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use crate::masm::{
1313
DivKind, Extend, ExtractLaneKind, FloatCmpKind, IntCmpKind, LoadKind, MacroAssembler,
1414
MemMoveDirection, MulWideKind, OperandSize, RegImm, RemKind, ReplaceLaneKind, RmwOp,
1515
RoundingMode, SPOffset, ShiftKind, Signed, SplatKind, SplatLoadKind, StoreKind, TruncKind,
16-
VectorCompareKind, VectorEqualityKind, VectorExtendKind, Zero,
16+
V128LoadExtendKind, VectorCompareKind, VectorEqualityKind, Zero,
1717
};
1818

1919
use crate::reg::{writable, Reg};
@@ -2790,47 +2790,47 @@ where
27902790
self.emit_wasm_load(
27912791
&memarg,
27922792
WasmValType::V128,
2793-
LoadKind::VectorExtend(VectorExtendKind::V128Extend8x8S),
2793+
LoadKind::VectorExtend(V128LoadExtendKind::E8x8S),
27942794
)
27952795
}
27962796

27972797
fn visit_v128_load8x8_u(&mut self, memarg: MemArg) -> Self::Output {
27982798
self.emit_wasm_load(
27992799
&memarg,
28002800
WasmValType::V128,
2801-
LoadKind::VectorExtend(VectorExtendKind::V128Extend8x8U),
2801+
LoadKind::VectorExtend(V128LoadExtendKind::E8x8U),
28022802
)
28032803
}
28042804

28052805
fn visit_v128_load16x4_s(&mut self, memarg: MemArg) -> Self::Output {
28062806
self.emit_wasm_load(
28072807
&memarg,
28082808
WasmValType::V128,
2809-
LoadKind::VectorExtend(VectorExtendKind::V128Extend16x4S),
2809+
LoadKind::VectorExtend(V128LoadExtendKind::E16x4S),
28102810
)
28112811
}
28122812

28132813
fn visit_v128_load16x4_u(&mut self, memarg: MemArg) -> Self::Output {
28142814
self.emit_wasm_load(
28152815
&memarg,
28162816
WasmValType::V128,
2817-
LoadKind::VectorExtend(VectorExtendKind::V128Extend16x4U),
2817+
LoadKind::VectorExtend(V128LoadExtendKind::E16x4U),
28182818
)
28192819
}
28202820

28212821
fn visit_v128_load32x2_s(&mut self, memarg: MemArg) -> Self::Output {
28222822
self.emit_wasm_load(
28232823
&memarg,
28242824
WasmValType::V128,
2825-
LoadKind::VectorExtend(VectorExtendKind::V128Extend32x2S),
2825+
LoadKind::VectorExtend(V128LoadExtendKind::E32x2S),
28262826
)
28272827
}
28282828

28292829
fn visit_v128_load32x2_u(&mut self, memarg: MemArg) -> Self::Output {
28302830
self.emit_wasm_load(
28312831
&memarg,
28322832
WasmValType::V128,
2833-
LoadKind::VectorExtend(VectorExtendKind::V128Extend32x2U),
2833+
LoadKind::VectorExtend(V128LoadExtendKind::E32x2U),
28342834
)
28352835
}
28362836

0 commit comments

Comments
 (0)
Please sign in to comment.