Skip to content

Commit fedfb61

Browse files
committed
make some intrinsics safe.
1 parent e4c47f9 commit fedfb61

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

src/librustc_typeck/check/intrinsic.rs

+12-4
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,17 @@ fn equate_intrinsic_type<'a, 'tcx>(
6666
require_same_types(tcx, &cause, tcx.mk_fn_ptr(tcx.fn_sig(def_id)), fty);
6767
}
6868

69+
/// Returns whether the given intrinsic is unsafe to call or not.
70+
pub fn intrisic_operation_unsafety(intrinsic: &str) -> hir::Unsafety {
71+
match intrinsic {
72+
"size_of" | "min_align_of" | "needs_drop" |
73+
"overflowing_add" | "overflowing_sub" | "overflowing_mul" |
74+
"rotate_left" | "rotate_right"
75+
=> hir::Unsafety::Normal,
76+
_ => hir::Unsafety::Unsafe,
77+
}
78+
}
79+
6980
/// Remember to add all intrinsics here, in librustc_codegen_llvm/intrinsic.rs,
7081
/// and in libcore/intrinsics.rs
7182
pub fn check_intrinsic_type<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
@@ -117,10 +128,7 @@ pub fn check_intrinsic_type<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
117128
} else if &name[..] == "abort" || &name[..] == "unreachable" {
118129
(0, Vec::new(), tcx.types.never, hir::Unsafety::Unsafe)
119130
} else {
120-
let unsafety = match &name[..] {
121-
"size_of" | "min_align_of" | "needs_drop" => hir::Unsafety::Normal,
122-
_ => hir::Unsafety::Unsafe,
123-
};
131+
let unsafety = intrisic_operation_unsafety(&name[..]);
124132
let (n_tps, inputs, output) = match &name[..] {
125133
"breakpoint" => (0, Vec::new(), tcx.mk_unit()),
126134
"size_of" |

src/librustc_typeck/check/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ mod closure;
8080
mod callee;
8181
mod compare_method;
8282
mod generator_interior;
83-
mod intrinsic;
83+
pub mod intrinsic;
8484
mod op;
8585

8686
use astconv::{AstConv, PathSeg};

src/librustc_typeck/collect.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
1717
use astconv::{AstConv, Bounds};
1818
use constrained_type_params as ctp;
19+
use check::intrinsic::intrisic_operation_unsafety;
1920
use lint;
2021
use middle::lang_items::SizedTraitLangItem;
2122
use middle::resolve_lifetime as rl;
@@ -2076,10 +2077,7 @@ fn compute_sig_of_foreign_fn_decl<'a, 'tcx>(
20762077
abi: abi::Abi,
20772078
) -> ty::PolyFnSig<'tcx> {
20782079
let unsafety = if abi == abi::Abi::RustIntrinsic {
2079-
match &*tcx.item_name(def_id).as_str() {
2080-
"size_of" | "min_align_of" | "needs_drop" => hir::Unsafety::Normal,
2081-
_ => hir::Unsafety::Unsafe,
2082-
}
2080+
intrisic_operation_unsafety(&*tcx.item_name(def_id).as_str())
20832081
} else {
20842082
hir::Unsafety::Unsafe
20852083
};

0 commit comments

Comments
 (0)