]> git.lizzy.rs Git - rust.git/commitdiff
Auto merge of #25434 - dotdash:gep, r=alexcrichton
authorbors <bors@rust-lang.org>
Sat, 16 May 2015 19:17:30 +0000 (19:17 +0000)
committerbors <bors@rust-lang.org>
Sat, 16 May 2015 19:17:30 +0000 (19:17 +0000)
Using regular pointer arithmetic to iterate collections of zero-sized types
doesn't work, because we'd get the same pointer all the time. Our
current solution is to convert the pointer to an integer, add an offset
and then convert back, but this inhibits certain optimizations.

What we should do instead is to convert the pointer to one that points
to an i8\*, and then use a LLVM GEP instructions without the inbounds
flag to perform the pointer arithmetic. This allows to generate pointers
that point outside allocated objects without causing UB (as long as you
don't dereference them), and it wraps around using two's complement,
i.e. it behaves exactly like the wrapping_* operations we're currently
using, with the added benefit of LLVM being able to better optimize the
resulting IR.

1  2 
src/libcore/slice.rs

Simple merge