mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 23:28:48 +00:00
Make simd_shuffle act closer to swizzle
This commit is contained in:
@@ -236,7 +236,7 @@ simd_reduce_and :: proc(a: #simd[N]T) -> T ---
|
|||||||
simd_reduce_or :: proc(a: #simd[N]T) -> T ---
|
simd_reduce_or :: proc(a: #simd[N]T) -> T ---
|
||||||
simd_reduce_xor :: proc(a: #simd[N]T) -> T ---
|
simd_reduce_xor :: proc(a: #simd[N]T) -> T ---
|
||||||
|
|
||||||
simd_shuffle :: proc(a, b: #simd[N]T, indices: #simd[max 2*N]u32) -> #simd[len(indices)]T ---
|
simd_shuffle :: proc(a, b: #simd[N]T, indices: ..int) -> #simd[len(indices)]T ---
|
||||||
simd_select :: proc(cond: #simd[N]boolean_or_integer, true, false: #simd[N]T) -> #simd[N]T ---
|
simd_select :: proc(cond: #simd[N]boolean_or_integer, true, false: #simd[N]T) -> #simd[N]T ---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -93,11 +93,11 @@ to_array_ptr :: #force_inline proc "contextless" (v: ^#simd[$LANES]$E) -> ^[LANE
|
|||||||
to_array :: #force_inline proc "contextless" (v: #simd[$LANES]$E) -> [LANES]E {
|
to_array :: #force_inline proc "contextless" (v: #simd[$LANES]$E) -> [LANES]E {
|
||||||
return transmute([LANES]E)(v)
|
return transmute([LANES]E)(v)
|
||||||
}
|
}
|
||||||
from_array :: #force_inline proc "contextless" (v: $A/[$LANES]$E) -> #simd[LANES]E where LANES & (LANES-1) == 0 {
|
from_array :: #force_inline proc "contextless" (v: $A/[$LANES]$E) -> #simd[LANES]E {
|
||||||
return transmute(#simd[LANES]E)v
|
return transmute(#simd[LANES]E)v
|
||||||
}
|
}
|
||||||
|
|
||||||
from_slice :: proc($T: typeid/#simd[$LANES]$E, slice: []E) -> T where LANES & (LANES-1) == 0 {
|
from_slice :: proc($T: typeid/#simd[$LANES]$E, slice: []E) -> T {
|
||||||
assert(len(slice) >= LANES, "slice length must be a least the number of lanes")
|
assert(len(slice) >= LANES, "slice length must be a least the number of lanes")
|
||||||
array: [LANES]E
|
array: [LANES]E
|
||||||
#no_bounds_check for i in 0..<LANES {
|
#no_bounds_check for i in 0..<LANES {
|
||||||
|
|||||||
+44
-51
@@ -762,7 +762,6 @@ bool check_builtin_simd_operation(CheckerContext *c, Operand *operand, Ast *call
|
|||||||
{
|
{
|
||||||
Operand x = {};
|
Operand x = {};
|
||||||
Operand y = {};
|
Operand y = {};
|
||||||
Operand z = {};
|
|
||||||
check_expr(c, &x, ce->args[0]); if (x.mode == Addressing_Invalid) { return false; }
|
check_expr(c, &x, ce->args[0]); if (x.mode == Addressing_Invalid) { return false; }
|
||||||
check_expr_with_type_hint(c, &y, ce->args[1], x.type); if (y.mode == Addressing_Invalid) { return false; }
|
check_expr_with_type_hint(c, &y, ce->args[1], x.type); if (y.mode == Addressing_Invalid) { return false; }
|
||||||
convert_to_typed(c, &y, x.type);
|
convert_to_typed(c, &y, x.type);
|
||||||
@@ -784,34 +783,53 @@ bool check_builtin_simd_operation(CheckerContext *c, Operand *operand, Ast *call
|
|||||||
}
|
}
|
||||||
Type *elem = base_array_type(x.type);
|
Type *elem = base_array_type(x.type);
|
||||||
|
|
||||||
check_expr(c, &z, ce->args[2]); if (z.mode == Addressing_Invalid) { return false; }
|
i64 max_count = x.type->SimdVector.count + y.type->SimdVector.count;
|
||||||
Type *z_elem = base_array_type(z.type);
|
|
||||||
if (!is_type_simd_vector(z.type) || !are_types_identical(z_elem, t_u32)) {
|
i64 arg_count = 0;
|
||||||
gbString zstr = type_to_string(z.type);
|
for_array(i, ce->args) {
|
||||||
error(z.expr, "'%.*s' expected a simd vector type with an element of type 'u32', got '%s'", LIT(builtin_name), zstr);
|
if (i < 2) {
|
||||||
gb_string_free(zstr);
|
continue;
|
||||||
|
}
|
||||||
|
Ast *arg = ce->args[i];
|
||||||
|
Operand op = {};
|
||||||
|
check_expr(c, &op, arg);
|
||||||
|
if (op.mode == Addressing_Invalid) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
Type *arg_type = base_type(op.type);
|
||||||
|
if (!is_type_integer(arg_type) || op.mode != Addressing_Constant) {
|
||||||
|
error(op.expr, "Indices to '%.*s' must be constant integers", LIT(builtin_name));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (big_int_is_neg(&op.value.value_integer)) {
|
||||||
|
error(op.expr, "Negative '%.*s' index", LIT(builtin_name));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
BigInt mc = {};
|
||||||
|
big_int_from_i64(&mc, max_count);
|
||||||
|
if (big_int_cmp(&mc, &op.value.value_integer) <= 0) {
|
||||||
|
error(op.expr, "'%.*s' index exceeds length", LIT(builtin_name));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
arg_count++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (arg_count > max_count) {
|
||||||
|
error(call, "Too many '%.*s' indices, %td > %td", LIT(builtin_name), arg_count, max_count);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
i64 x_count = x.type->SimdVector.count;
|
|
||||||
i64 z_count = z.type->SimdVector.count;
|
|
||||||
|
|
||||||
if (!is_power_of_two(z_count)) {
|
if (!is_power_of_two(arg_count)) {
|
||||||
gbString zstr = type_to_string(z.type);
|
error(call, "'%.*s' must have a power of two index arguments, got %lld", LIT(builtin_name), cast(long long)arg_count);
|
||||||
error(z.expr, "'%.*s' expected a simd vector type with a power of two length, got '%s'", LIT(builtin_name), zstr);
|
|
||||||
gb_string_free(zstr);
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (z_count > x_count) {
|
|
||||||
gbString zstr = type_to_string(z.type);
|
|
||||||
error(z.expr, "'%.*s' expected a simd vector type excepts the sum of the two input vectors, got '%s'", LIT(builtin_name), zstr);
|
|
||||||
gb_string_free(zstr);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
operand->mode = Addressing_Value;
|
operand->mode = Addressing_Value;
|
||||||
operand->type = alloc_type_simd_vector(z_count, elem);
|
operand->type = alloc_type_simd_vector(arg_count, elem);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -869,36 +887,6 @@ bool check_builtin_simd_operation(CheckerContext *c, Operand *operand, Ast *call
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// case BuiltinProc_simd_rotate_left:
|
|
||||||
// {
|
|
||||||
// Operand x = {};
|
|
||||||
// check_expr(c, &x, ce->args[0]); if (x.mode == Addressing_Invalid) { return false; }
|
|
||||||
|
|
||||||
// if (!is_type_simd_vector(x.type)) {
|
|
||||||
// error(x.expr, "'%.*s' expected a simd vector type", LIT(builtin_name));
|
|
||||||
// return false;
|
|
||||||
// }
|
|
||||||
// Type *elem = base_array_type(x.type);
|
|
||||||
// if (!is_type_integer(elem) && !is_type_float(elem)) {
|
|
||||||
// gbString xs = type_to_string(x.type);
|
|
||||||
// error(x.expr, "'%.*s' expected a #simd type with an integer or floating point element, got '%s'", LIT(builtin_name), xs);
|
|
||||||
// gb_string_free(xs);
|
|
||||||
// return false;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Operand offset = {};
|
|
||||||
// check_expr_with_type_hint(c, &offset, ce->args[1]); if (x.mode == Addressing_Invalid) { return false; }
|
|
||||||
// convert_to_typed(c, &offset, t_int);
|
|
||||||
// if (offset.mode != Addressing_Constant) {
|
|
||||||
// error(offset.expr, "'%.*s' expected a constant integer for the offset", LIT(builtin_name));
|
|
||||||
// return false;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// operand->mode = Addressing_Value;
|
|
||||||
// operand->type = x.type;
|
|
||||||
// return true
|
|
||||||
// }
|
|
||||||
default:
|
default:
|
||||||
GB_PANIC("Unhandled simd intrinsic: %.*s", LIT(builtin_name));
|
GB_PANIC("Unhandled simd intrinsic: %.*s", LIT(builtin_name));
|
||||||
}
|
}
|
||||||
@@ -1540,6 +1528,11 @@ bool check_builtin_procedure(CheckerContext *c, Operand *operand, Ast *call, i32
|
|||||||
bt->Struct.soa_kind == StructSoa_Dynamic) {
|
bt->Struct.soa_kind == StructSoa_Dynamic) {
|
||||||
mode = Addressing_Value;
|
mode = Addressing_Value;
|
||||||
}
|
}
|
||||||
|
} else if (is_type_simd_vector(op_type)) {
|
||||||
|
Type *bt = base_type(op_type);
|
||||||
|
mode = Addressing_Constant;
|
||||||
|
value = exact_value_i64(bt->SimdVector.count);
|
||||||
|
type = t_untyped_integer;
|
||||||
}
|
}
|
||||||
if (operand->mode == Addressing_Type && mode != Addressing_Constant) {
|
if (operand->mode == Addressing_Type && mode != Addressing_Constant) {
|
||||||
mode = Addressing_Invalid;
|
mode = Addressing_Invalid;
|
||||||
|
|||||||
@@ -421,7 +421,7 @@ gb_global BuiltinProc builtin_procs[BuiltinProc_COUNT] = {
|
|||||||
{STR_LIT("simd_reduce_or"), 1, false, Expr_Expr, BuiltinProcPkg_intrinsics},
|
{STR_LIT("simd_reduce_or"), 1, false, Expr_Expr, BuiltinProcPkg_intrinsics},
|
||||||
{STR_LIT("simd_reduce_xor"), 1, false, Expr_Expr, BuiltinProcPkg_intrinsics},
|
{STR_LIT("simd_reduce_xor"), 1, false, Expr_Expr, BuiltinProcPkg_intrinsics},
|
||||||
|
|
||||||
{STR_LIT("simd_shuffle"), 3, false, Expr_Expr, BuiltinProcPkg_intrinsics},
|
{STR_LIT("simd_shuffle"), 2, true, Expr_Expr, BuiltinProcPkg_intrinsics},
|
||||||
{STR_LIT("simd_select"), 3, false, Expr_Expr, BuiltinProcPkg_intrinsics},
|
{STR_LIT("simd_select"), 3, false, Expr_Expr, BuiltinProcPkg_intrinsics},
|
||||||
{STR_LIT(""), 0, false, Expr_Stmt, BuiltinProcPkg_intrinsics},
|
{STR_LIT(""), 0, false, Expr_Stmt, BuiltinProcPkg_intrinsics},
|
||||||
|
|
||||||
|
|||||||
@@ -1282,15 +1282,23 @@ lbValue lb_build_builtin_simd_proc(lbProcedure *p, Ast *expr, TypeAndValue const
|
|||||||
case BuiltinProc_simd_shuffle:
|
case BuiltinProc_simd_shuffle:
|
||||||
{
|
{
|
||||||
arg1 = lb_build_expr(p, ce->args[1]);
|
arg1 = lb_build_expr(p, ce->args[1]);
|
||||||
arg2 = lb_build_expr(p, ce->args[2]);
|
|
||||||
|
|
||||||
Type *vt = arg0.type;
|
Type *vt = arg0.type;
|
||||||
GB_ASSERT(vt->kind == Type_SimdVector);
|
GB_ASSERT(vt->kind == Type_SimdVector);
|
||||||
|
|
||||||
LLVMValueRef mask = arg2.value;
|
|
||||||
|
|
||||||
|
i64 mask_count = ce->args.count-2;
|
||||||
i64 max_count = vt->SimdVector.count*2;
|
i64 max_count = vt->SimdVector.count*2;
|
||||||
LLVMValueRef max_mask = llvm_splat_int(max_count, lb_type(m, arg2.type->SimdVector.elem), max_count-1);
|
|
||||||
|
LLVMValueRef *values = gb_alloc_array(temporary_allocator(), LLVMValueRef, mask_count);
|
||||||
|
for (isize i = 0; i < max_count; i++) {
|
||||||
|
lbValue idx = lb_build_expr(p, ce->args[i+2]);
|
||||||
|
GB_ASSERT(LLVMIsConstant(idx.value));
|
||||||
|
values[i] = idx.value;
|
||||||
|
}
|
||||||
|
LLVMValueRef mask = LLVMConstVector(values, cast(unsigned)mask_count);
|
||||||
|
|
||||||
|
LLVMValueRef max_mask = llvm_splat_int(mask_count, lb_type(m, t_u32), max_count-1);
|
||||||
mask = LLVMBuildAnd(p->builder, mask, max_mask, "");
|
mask = LLVMBuildAnd(p->builder, mask, max_mask, "");
|
||||||
|
|
||||||
res.value = LLVMBuildShuffleVector(p->builder, arg0.value, arg1.value, mask, "");
|
res.value = LLVMBuildShuffleVector(p->builder, arg0.value, arg1.value, mask, "");
|
||||||
|
|||||||
Reference in New Issue
Block a user