-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move transmute_int_to_float to its own module
- Loading branch information
1 parent
d04ea41
commit acedc7b
Showing
2 changed files
with
53 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
use super::TRANSMUTE_INT_TO_FLOAT; | ||
use crate::utils::{span_lint_and_then, sugg}; | ||
use rustc_errors::Applicability; | ||
use rustc_hir::Expr; | ||
use rustc_lint::LateContext; | ||
use rustc_middle::ty; | ||
use rustc_middle::ty::Ty; | ||
|
||
/// Checks for `transmute_int_to_float` lint. | ||
/// Returns `true` if it's triggered, otherwise returns `false`. | ||
pub(super) fn check<'tcx>( | ||
cx: &LateContext<'tcx>, | ||
e: &'tcx Expr<'_>, | ||
from_ty: Ty<'tcx>, | ||
to_ty: Ty<'tcx>, | ||
args: &'tcx [Expr<'_>], | ||
const_context: bool, | ||
) -> bool { | ||
match (&from_ty.kind(), &to_ty.kind()) { | ||
(ty::Int(_) | ty::Uint(_), ty::Float(_)) if !const_context => { | ||
span_lint_and_then( | ||
cx, | ||
TRANSMUTE_INT_TO_FLOAT, | ||
e.span, | ||
&format!("transmute from a `{}` to a `{}`", from_ty, to_ty), | ||
|diag| { | ||
let arg = sugg::Sugg::hir(cx, &args[0], ".."); | ||
let arg = if let ty::Int(int_ty) = from_ty.kind() { | ||
arg.as_ty(format!( | ||
"u{}", | ||
int_ty.bit_width().map_or_else(|| "size".to_string(), |v| v.to_string()) | ||
)) | ||
} else { | ||
arg | ||
}; | ||
diag.span_suggestion( | ||
e.span, | ||
"consider using", | ||
format!("{}::from_bits({})", to_ty, arg.to_string()), | ||
Applicability::Unspecified, | ||
); | ||
}, | ||
); | ||
true | ||
}, | ||
_ => false, | ||
} | ||
} |