From 0264c5d66f4a35da74d5e49953d4b379f6808640 Mon Sep 17 00:00:00 2001 From: Eyck-Alexander Jentzsch Date: Tue, 25 Feb 2025 15:14:48 +0100 Subject: [PATCH] small cleanup --- src/vm/vector_functions.hpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/vm/vector_functions.hpp b/src/vm/vector_functions.hpp index c8db3c2..78a9f02 100644 --- a/src/vm/vector_functions.hpp +++ b/src/vm/vector_functions.hpp @@ -42,23 +42,17 @@ #ifndef _VM_VECTOR_FUNCTIONS_H_ #error __FILE__ should only be included from vector_functions.h #endif -#include #include namespace softvector { template struct vreg_view { uint8_t* start; size_t elem_count; - inline elem_t& get(size_t idx = 0) { - assert(idx < elem_count); - return *(reinterpret_cast(start) + idx); - } elem_t& operator[](size_t idx) { assert(idx < elem_count); return *(reinterpret_cast(start) + idx); } }; -// TODO: change the order of parameters so that it is in snyc with read_vmask template vreg_view get_vreg(uint8_t* V, uint8_t reg_idx, uint16_t elem_count) { assert(V + elem_count * sizeof(elem_t) <= V + VLEN * RFS / 8); return {V + VLEN / 8 * reg_idx, elem_count};