Skip to content

Commit 5be50af

Browse files
committed
make internal comment more precise
1 parent e67d48e commit 5be50af

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

compiler/rustc_codegen_ssa/src/mir/rvalue.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -361,12 +361,16 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
361361
(Int(..) | Float(_), Int(..) | Float(_)) => bx.bitcast(imm, to_backend_ty),
362362
(Pointer(..), Pointer(..)) => bx.pointercast(imm, to_backend_ty),
363363
(Int(..), Pointer(..)) => bx.ptradd(bx.const_null(bx.type_ptr()), imm),
364-
(Pointer(..), Int(..)) => bx.ptrtoint(imm, to_backend_ty),
364+
(Pointer(..), Int(..)) => {
365+
// FIXME: this exposes the provenance, which shouldn't be necessary.
366+
bx.ptrtoint(imm, to_backend_ty)
367+
}
365368
(Float(_), Pointer(..)) => {
366369
let int_imm = bx.bitcast(imm, bx.cx().type_isize());
367370
bx.ptradd(bx.const_null(bx.type_ptr()), int_imm)
368371
}
369372
(Pointer(..), Float(_)) => {
373+
// FIXME: this exposes the provenance, which shouldn't be necessary.
370374
let int_imm = bx.ptrtoint(imm, bx.cx().type_isize());
371375
bx.bitcast(int_imm, to_backend_ty)
372376
}

library/core/src/ptr/const_ptr.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -192,13 +192,12 @@ impl<T: ?Sized> *const T {
192192
#[inline]
193193
#[stable(feature = "strict_provenance", since = "CURRENT_RUSTC_VERSION")]
194194
pub fn with_addr(self, addr: usize) -> Self {
195-
// This should probably be an intrinsic to make it more efficient, but meanwhile, we can
196-
// implement it with `wrapping_offset`, which preserves the pointer's provenance.
195+
// This should probably be an intrinsic to avoid doing any sort of arithmetic, but
196+
// meanwhile, we can implement it with `wrapping_offset`, which preserves the pointer's
197+
// provenance.
197198
let self_addr = self.addr() as isize;
198199
let dest_addr = addr as isize;
199200
let offset = dest_addr.wrapping_sub(self_addr);
200-
201-
// This is the canonical desugaring of this operation
202201
self.wrapping_byte_offset(offset)
203202
}
204203

library/core/src/ptr/mut_ptr.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -179,13 +179,12 @@ impl<T: ?Sized> *mut T {
179179
#[inline]
180180
#[stable(feature = "strict_provenance", since = "CURRENT_RUSTC_VERSION")]
181181
pub fn with_addr(self, addr: usize) -> Self {
182-
// This should probably be an intrinsic to make it more efficient, but meanwhile, we can
183-
// implement it with `wrapping_offset`, which preserves the pointer's provenance.
182+
// This should probably be an intrinsic to avoid doing any sort of arithmetic, but
183+
// meanwhile, we can implement it with `wrapping_offset`, which preserves the pointer's
184+
// provenance.
184185
let self_addr = self.addr() as isize;
185186
let dest_addr = addr as isize;
186187
let offset = dest_addr.wrapping_sub(self_addr);
187-
188-
// This is the canonical desugaring of this operation
189188
self.wrapping_byte_offset(offset)
190189
}
191190

0 commit comments

Comments
 (0)