From 7a048f8b9308df3997c38a79c44217df649ff041 Mon Sep 17 00:00:00 2001 From: Eyck-Alexander Jentzsch Date: Mon, 3 Feb 2025 20:40:01 +0100 Subject: [PATCH] changes wording of returned index to better reflect what it means, cleans up a bit --- src/vm/vector_functions.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/vm/vector_functions.cpp b/src/vm/vector_functions.cpp index 395091a..4ba7946 100644 --- a/src/vm/vector_functions.cpp +++ b/src/vm/vector_functions.cpp @@ -41,7 +41,6 @@ #include #include #include -#include namespace softvector { unsigned RFS = 32; @@ -86,7 +85,7 @@ double vtype_t::lmul() { vreg_view read_vmask(uint8_t* V, uint8_t VLEN, uint16_t num_elem, uint8_t reg_idx) { uint8_t* mask_start = V + VLEN / 8 * reg_idx; - return {mask_start, num_elem / 8u}; // this can return size==0 as num_elem can be as low as 1, probably not wanted + return {mask_start, num_elem / 8u}; // this can return size==0 as num_elem can be as low as 1 } uint64_t vector_load_store(void* core, std::function load_store_fn, uint8_t* V, uint8_t VLEN, uint8_t vd, uint64_t base_addr, uint64_t vl, uint64_t vstart, vtype_t vtype, bool vm, uint8_t elem_byte_size, @@ -102,7 +101,7 @@ uint64_t vector_load_store(void* core, std::function(idx / 8); bool mask_active = vm ? 1 : current_mask_byte & (1 << idx % 8); @@ -113,7 +112,7 @@ uint64_t vector_load_store(void* core, std::function 8 would not work correctly *dest_elem = vtype.vma() ? *dest_elem : *dest_elem; @@ -123,7 +122,6 @@ uint64_t vector_load_store(void* core, std::function