Proposal
Problem statement
There is no alternative to the error-prone "fn-ptr to integer" casts. In rust-lang/rfcs#3526 I'm proposing to remove "fn-ptr to integer" casts in the future edition, but that requires there to be an alternative to them.
Motivating examples or use cases
It is relatively easy to accidentally cast a function to an integer, for example:
let size = mem::size_of::<T> as u32; // Note: no `()`, this casts the function, not its return value!
Thus it is desirable to forbid (or warn on) such casts. But to do so, there should be an alternative for cases which actually want to get an address of a function:
some_weird_api(f as usize);
// I could not come up with an example, but surely there are some use-cases
// like maybe giving the address to inline asm or to disassembler api or something...
Solution sketch
// core::ptr
pub fn fn_addr<F: FnPtr>(f: F) -> usize {
f.addr().addr()
}
some_weird_api(fn_addr(f));
This seems consistent with already stable ptr::fn_addr_eq
and provides a way to get a function address without stabilizing the internal FnPtr trait.
Alternatives
- Suggest
f as *const () as usize or (f as *const ()).addr() instead
- using a data pointer seems weird, non-obvious, and awkward
- Use a new trait instead of
FnPtr, such that FnDefs could also be passed without being casted to function pointers
- that is, allow
fn a() {}; fn_addr(a); without requiring fn_addr(a as fn())
Links and related work
What happens now?
This issue contains an API change proposal (or ACP) and is part of the libs-api team feature lifecycle. Once this issue is filed, the libs-api team will review open proposals as capability becomes available. Current response times do not have a clear estimate, but may be up to several months.
Possible responses
The libs team may respond in various different ways. First, the team will consider the problem (this doesn't require any concrete solution or alternatives to have been proposed):
- We think this problem seems worth solving, and the standard library might be the right place to solve it.
- We think that this probably doesn't belong in the standard library.
Second, if there's a concrete solution:
- We think this specific solution looks roughly right, approved, you or someone else should implement this. (Further review will still happen on the subsequent implementation PR.)
- We're not sure this is the right solution, and the alternatives or other materials don't give us enough information to be sure about that. Here are some questions we have that aren't answered, or rough ideas about alternatives we'd want to see discussed.
Proposal
Problem statement
There is no alternative to the error-prone "fn-ptr to integer" casts. In rust-lang/rfcs#3526 I'm proposing to remove "fn-ptr to integer" casts in the future edition, but that requires there to be an alternative to them.
Motivating examples or use cases
It is relatively easy to accidentally cast a function to an integer, for example:
Thus it is desirable to forbid (or warn on) such casts. But to do so, there should be an alternative for cases which actually want to get an address of a function:
Solution sketch
This seems consistent with already stable
ptr::fn_addr_eqand provides a way to get a function address without stabilizing the internal
FnPtrtrait.Alternatives
f as *const () as usizeor(f as *const ()).addr()insteadFnPtr, such thatFnDefscould also be passed without being casted to function pointersfn a() {}; fn_addr(a);without requiringfn_addr(a as fn())Links and related work
FnStaticandFnPtrinto a new trait:FnAddr#837function_casts_as_integerlintcore::ptr::fn_addr_eqWhat happens now?
This issue contains an API change proposal (or ACP) and is part of the libs-api team feature lifecycle. Once this issue is filed, the libs-api team will review open proposals as capability becomes available. Current response times do not have a clear estimate, but may be up to several months.
Possible responses
The libs team may respond in various different ways. First, the team will consider the problem (this doesn't require any concrete solution or alternatives to have been proposed):
Second, if there's a concrete solution: