]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit
gdbsupport: add array_view copy function
authorSimon Marchi <simon.marchi@polymtl.ca>
Mon, 8 Nov 2021 21:06:07 +0000 (16:06 -0500)
committerSimon Marchi <simon.marchi@polymtl.ca>
Fri, 3 Dec 2021 21:37:36 +0000 (16:37 -0500)
commit4bce7cdaf481901edbc5ee47d953ea7e8efb56ca
treef085df5b718a9438b5d5174b5e3c9be15e2cea7c
parent7509b82979550970342a4494d727b3fb06bffd65
gdbsupport: add array_view copy function

An assertion was recently added to array_view::operator[] to ensure we
don't do out of bounds accesses.  However, when the array_view is copied
to or from using memcpy, it bypasses that safety.

To address this, add a `copy` free function that copies data from an
array view to another, ensuring that the destination and source array
views have the same size.  When copying to or from parts of an
array_view, we are expected to use gdb::array_view::slice, which does
its own bounds check.  With all that, any copy operation that goes out
of bounds should be caught by an assertion at runtime.

copy is implemented using std::copy and std::copy_backward, which, at
least on libstdc++, appears to pick memmove when copying trivial data.
So in the end there shouldn't be much difference vs using a bare memcpy,
as we do right now.  When copying non-trivial data, std::copy and
std::copy_backward assigns each element in a loop.

To properly support overlapping ranges, we must use std::copy or
std::copy_backward, depending on whether the destination is before the
source or vice-versa.  std::copy and std::copy_backward don't support
copying exactly overlapping ranges (where the source range is equal to
the destination range).  But in this case, no copy is needed anyway, so
we do nothing.

The order of parameters of the new copy function is based on std::copy
and std::copy_backward, where the source comes before the destination.

Change a few randomly selected spots to use the new function, to show
how it can be used.

Add a test for the new function, testing both with arrays of a trivial
type (int) and of a non-trivial type (foo).  Test non-overlapping
ranges as well as three kinds of overlapping ranges: source before dest,
dest before source, and dest == source.

Change-Id: Ibeaca04e0028410fd44ce82f72e60058d6230a03
gdb/ada-lang.c
gdb/dwarf2/expr.c
gdb/unittests/array-view-selftests.c
gdb/valarith.c
gdb/valops.c
gdb/value.c
gdbsupport/array-view.h