Fix implicit conversion to unsigned bugs... #31
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This makes e.g. negatively strided views work as intended:
OBJ ary = aArray(aInt(1), aInt(2), aInt(3));
OBJ ary_view = aArrayView(ary, aRange(-1, 1, -1));
for ( unsigned ii = 0 ; ii < gsize(ary_view); ii++ ) {
printf (" %u: %i\n", ii, gint(ggetAt(ary_view, aInt(ii))));
won't seg fault now. As usual fully fixing this problem for all pointer
widths is excruciating and inefficient, so we don't. Using ptrdiff_t
gives decent results on 32 bit and works for all realistic offsets on 64
bit. It's tempting to use I64 rather than ptrdiff_t to make the
operation explicit, but that might not work right on 32 bit (I'm not
sure).
This probably isn't all the bugs of this sort. At least the following
look suspicious:
src/Array_alg.c:547:35: warning: conversion from 'long int' to 'U32' {aka 'unsigned int'} may change value [-Wconversion]
src/./tmpl/Vector_alg.c:406:35: warning: conversion from 'long int' to 'U32' {aka 'unsigned int'} may change value [-Wconversion]
src/String_alg.c:308:35: warning: conversion from 'long int' to 'U32' {aka 'unsigned int'} may change value [-Wconversion]
The fixes for those look a little harder though, as the suspicious
intermediate results get sent off to an unsigned argument to
KnuthMorrisPratt() (which function would also likely need to be fixed).
The Range_index() function in Range.h seems to work right and it looks
like the mechanism is well-defined even if it is a little scary. I
added an explicit cast and comment to make it clear what's going on.