From 87d0a46552c5898ec9c59b96a3ed000cabe2b888 Mon Sep 17 00:00:00 2001 From: Brett Date: Fri, 17 Jan 2025 12:18:59 -0500 Subject: [PATCH] mem tests --- CMakeLists.txt | 2 +- include/blt/gp/operations.h | 2 +- include/blt/gp/typesystem.h | 2 +- tests/drop_test.cpp | 13 +++++++++++++ 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 840e628..c8e9c22 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,7 @@ macro(compile_options target_name) sanitizers(${target_name}) endmacro() -project(blt-gp VERSION 0.3.17) +project(blt-gp VERSION 0.3.18) include(CTest) diff --git a/include/blt/gp/operations.h b/include/blt/gp/operations.h index 47c247d..e0dd7c2 100644 --- a/include/blt/gp/operations.h +++ b/include/blt/gp/operations.h @@ -198,7 +198,7 @@ namespace blt::gp [[nodiscard]] bool return_has_ephemeral_drop() const { - return detail::has_func_drop_ephemeral_v; + return detail::has_func_drop_v; } operator_id id = -1; diff --git a/include/blt/gp/typesystem.h b/include/blt/gp/typesystem.h index 5d9216f..517d8cd 100644 --- a/include/blt/gp/typesystem.h +++ b/include/blt/gp/typesystem.h @@ -48,7 +48,7 @@ namespace blt::gp template static type make_type(const type_id id) { - return type(stack_allocator::aligned_size(), id, blt::type_string(), detail::has_func_drop_ephemeral_v); + return type(stack_allocator::aligned_size(), id, blt::type_string(), detail::has_func_drop_v); } [[nodiscard]] size_t size() const diff --git a/tests/drop_test.cpp b/tests/drop_test.cpp index 08009a9..f8922e7 100644 --- a/tests/drop_test.cpp +++ b/tests/drop_test.cpp @@ -123,6 +123,19 @@ bool fitness_function(const tree_t& current_tree, fitness_t& fitness, size_t) int main() { + int silly = 53; + int* silly_ptr = &silly; + + blt::mem::print_bytes(std::cout, silly_ptr); + + for (blt::size_t i = 49; i < 64; i++) + { + silly_ptr = reinterpret_cast(reinterpret_cast(silly_ptr) | 1ul << i); + } + + blt::mem::print_bytes(std::cout, silly_ptr); + + return 0; operator_builder builder{}; builder.build(add, sub, mul, pro_div, op_sin, op_cos, op_exp, op_log, lit, op_x); regression.get_program().set_operations(builder.grab());