时间之外,地球往事
Blog
Tags
Notes
Rust
About
时间之外,地球往事
Blog
Tags
Notes
Rust
About
#
LLVM
Rust 部分内置函数使用的是 LLVM IR 指令,例如 unsafe 转换
to_int_unchecked
(opens new window)
使用了 fptoui/fptosi 指令。之所以是 unsafe 的,是因为这种强制转换会导致结果不确定,这类不确定的值在 LLVM 中称作
poisonvalues
(opens new window)