aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLuuk de Gram <luuk@degram.dev>2022-12-11 15:18:33 +0100
committerLuuk de Gram <luuk@degram.dev>2022-12-12 17:42:00 +0100
commit355b5929b2c49422b92e7aa7374c7e4f0008f400 (patch)
tree3a191aa6206f967e497e256dd7562c6b5ac985dc /src
parentc6d654f73bbe80ed3653be6a31ddcaa4772a4fe2 (diff)
downloadzig-355b5929b2c49422b92e7aa7374c7e4f0008f400.tar.gz
zig-355b5929b2c49422b92e7aa7374c7e4f0008f400.zip
wasm: `splat` for vector elements divisible by 8
This implements `@splat` for vectors where the element type is divisible by 8 and a power of two. This is fairly simple as we can store the values directly within the virtual stack. But for all other sizes, we must first shift and bitwise-or the values before we can store them to fit them like a packed-struct, rather than an array.
Diffstat (limited to 'src')
-rw-r--r--src/arch/wasm/CodeGen.zig19
1 files changed, 17 insertions, 2 deletions
diff --git a/src/arch/wasm/CodeGen.zig b/src/arch/wasm/CodeGen.zig
index 5e69860fbc..f6c380aeb3 100644
--- a/src/arch/wasm/CodeGen.zig
+++ b/src/arch/wasm/CodeGen.zig
@@ -4433,7 +4433,6 @@ fn airSplat(func: *CodeGen, inst: Air.Inst.Index) InnerError!void {
const ty = func.air.typeOfIndex(inst);
const elem_ty = ty.childType();
- const result = try func.allocLocal(ty);
if (determineSimdStoreStrategy(ty, func.target) == .direct) blk: {
switch (operand) {
// when the operand lives in the linear memory section, we can directly
@@ -4447,6 +4446,7 @@ fn airSplat(func: *CodeGen, inst: Air.Inst.Index) InnerError!void {
64 => std.wasm.simdOpcode(.v128_load64_splat),
else => break :blk, // Cannot make use of simd-instructions
};
+ const result = try func.allocLocal(ty);
try func.emitWValue(operand);
// TODO: Add helper functions for simd opcodes
const extra_index = @intCast(u32, func.mir_extra.items.len);
@@ -4468,6 +4468,7 @@ fn airSplat(func: *CodeGen, inst: Air.Inst.Index) InnerError!void {
64 => if (elem_ty.isInt()) std.wasm.simdOpcode(.i64x2_splat) else std.wasm.simdOpcode(.f64x2_splat),
else => break :blk, // Cannot make use of simd-instructions
};
+ const result = try func.allocLocal(ty);
try func.emitWValue(operand);
const extra_index = @intCast(u32, func.mir_extra.items.len);
try func.mir_extra.append(func.gpa, opcode);
@@ -4478,8 +4479,22 @@ fn airSplat(func: *CodeGen, inst: Air.Inst.Index) InnerError!void {
else => unreachable,
}
}
+ const elem_size = elem_ty.bitSize(func.target);
+ const vector_len = @intCast(usize, ty.vectorLen());
+ if ((!std.math.isPowerOfTwo(elem_size) or elem_size % 8 != 0) and vector_len > 1) {
+ return func.fail("TODO: WebAssembly `@splat` for arbitrary element bitsize {d}", .{elem_size});
+ }
+
+ const result = try func.allocStack(ty);
+ const elem_byte_size = @intCast(u32, elem_ty.abiSize(func.target));
+ var index: usize = 0;
+ var offset: u32 = 0;
+ while (index < vector_len) : (index += 1) {
+ try func.store(result, operand, elem_ty, offset);
+ offset += elem_byte_size;
+ }
- return func.fail("TODO: Implement wasm airSplat unrolled", .{});
+ return func.finishAir(inst, result, &.{ty_op.operand});
}
fn airSelect(func: *CodeGen, inst: Air.Inst.Index) InnerError!void {