Clarify semantics of wrapping_offset
when leaving object bounds
#45719
Labels
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
T-libs-api
Relevant to the library API team, which will review and decide on the PR/issue.
The documentation of
wrapping_offset
should clarify whether it is legal to use this function to move from one object to another. Concretely, is the following a "safe" function in the sense that it is safe to call by any safe client?(The funny
drop
just make sure that the originalx
andy
are gone, side-stepping some memory model questions.)I see two possible options:
wrapping_offset
; currently, it compiles to agetelementptr
which (even withoutinbounds
) is documented to possibly return a pointer that cannot be dereferenced even if it is equal to a valid pointer. The intention behind this is probably forgetelementptr
to preserve aliasing information. As a consequence,getelementptr
cannot cross object boundaries.wrapping_offset
should get a big fat warning saying so.Given that
wrapping_offset
is a safe function, I think I would prefer the least surprising option, which is to make this safe. One possible implementation would be to cast the pointer to an integer, do the arithmetic there, and cast back.Cc @eddyb @arielb1 @gankro
The text was updated successfully, but these errors were encountered: