cfallin commented on issue #5167:
Really interesting question here!
My first impulse is actually slightly different: in general I don't like edge cases or discontinuities, and for the same reason that I like, e.g., zero-sized slices to be possible, I think that a
heap_addr
with a size of0
should be legal. It should execute without a trap if the base address given is less than or equal to the length of the heap.In other words, the
base + size - 1
computation finds the address of the last byte of the thing being accessed, and this implicitly assumes there is a last byte (i.e. it's like avec.last().unwrap()
). Instead ofbase + size - 1 < heap.base + heap.len
, I might suggestbase + size <= heap.base + heap.len
. That naturally handles the zero-sized case, and feels like the right answer for "limit of behavior as size approaches zero". (In general I'm also slightly allergic to- 1
and+ 1
in offset computations; they feel like a sign that we haven't found the most natural expression of the computation. For the same reasons that 0-based array indexing makes more sense etc etc)FWIW, the instruction docs just below the quoted part do seem consistent with this: "If
p + Size
is greater than the heap bound, generate a trap." (Inverting "greater than" we get "less than or equal", and "heap bound" isheap.base + heap.len
.)Of course it's invalid to actually use the computed pointer to do any access of size greater than zero (that is, any access at all); but that's perfectly fine. That does mean that the tests that you're correcting here are illegal anyway, as they do
v + 8
andv + 128
on the resulting pointers. So separately, we should update those tests to use appropriateSize
s (though it doesn't actually matter for the properties we're testing).Thoughts?
afonso360 commented on issue #5167:
That sounds reasonable!
And I think we can enforce some of that via the verifier. If we can compute all of the offsets, and that a
load
/store
is directly referencing aheap_addr
, we can probably check if the access is legal. This still misses a bunch of cases, but I think it might catch the most common ones.I'm going to give this a try.
afonso360 edited a comment on issue #5167:
That sounds reasonable!
And I think we can enforce some of that via the verifier. If we can compute all of the offsets, and that a
load
/store
is directly referencing aheap_addr
, we can probably check if the access is legal. This still misses a bunch of cases, but I think it might catch the most common ones.I'm going to give that a try.
Last updated: Nov 22 2024 at 16:03 UTC