about summary refs log tree commit diff
path: root/src/rustllvm/ExecutionEngineWrapper.cpp
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-05-16 19:17:30 +0000
committerbors <bors@rust-lang.org>2015-05-16 19:17:30 +0000
commitd332aead906922409e54e6321fbdc774208e692f (patch)
treeff312edf403a3c998f02280f15fd9521bdc19658 /src/rustllvm/ExecutionEngineWrapper.cpp
parent6403a2fc3271b5c510307f09d98af8e6c8e15481 (diff)
parenteeeb2cc0dffc016582f020c0a9e6d9f9fc751397 (diff)
downloadrust-d332aead906922409e54e6321fbdc774208e692f.tar.gz
rust-d332aead906922409e54e6321fbdc774208e692f.zip
Auto merge of #25434 - dotdash:gep, r=alexcrichton
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.
Diffstat (limited to 'src/rustllvm/ExecutionEngineWrapper.cpp')
0 files changed, 0 insertions, 0 deletions