Skip to content

Commit 8b7299d

Browse files
committedJun 18, 2022
Remove likely! and unlikely! macro from compiler
1 parent aaf1005 commit 8b7299d

File tree

5 files changed

+13
-31
lines changed

5 files changed

+13
-31
lines changed
 

‎compiler/rustc_data_structures/src/lib.rs

-21
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
#![feature(associated_type_bounds)]
1212
#![feature(auto_traits)]
1313
#![feature(control_flow_enum)]
14-
#![feature(core_intrinsics)]
1514
#![feature(extend_one)]
1615
#![feature(let_else)]
1716
#![feature(hash_raw_entry)]
@@ -44,26 +43,6 @@ pub fn cold_path<F: FnOnce() -> R, R>(f: F) -> R {
4443
f()
4544
}
4645

47-
#[macro_export]
48-
macro_rules! likely {
49-
($e:expr) => {
50-
match $e {
51-
#[allow(unused_unsafe)]
52-
e => unsafe { std::intrinsics::likely(e) },
53-
}
54-
};
55-
}
56-
57-
#[macro_export]
58-
macro_rules! unlikely {
59-
($e:expr) => {
60-
match $e {
61-
#[allow(unused_unsafe)]
62-
e => unsafe { std::intrinsics::unlikely(e) },
63-
}
64-
};
65-
}
66-
6746
pub mod base_n;
6847
pub mod binary_search_util;
6948
pub mod captures;

‎compiler/rustc_data_structures/src/profiling.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@ impl SelfProfilerRef {
195195
F: for<'a> FnOnce(&'a SelfProfiler) -> TimingGuard<'a>,
196196
{
197197
#[inline(never)]
198+
#[cold]
198199
fn cold_call<F>(profiler_ref: &SelfProfilerRef, f: F) -> TimingGuard<'_>
199200
where
200201
F: for<'a> FnOnce(&'a SelfProfiler) -> TimingGuard<'a>,
@@ -203,7 +204,7 @@ impl SelfProfilerRef {
203204
f(&**profiler)
204205
}
205206

206-
if unlikely!(self.event_filter_mask.contains(event_filter)) {
207+
if self.event_filter_mask.contains(event_filter) {
207208
cold_call(self, f)
208209
} else {
209210
TimingGuard::none()

‎compiler/rustc_middle/src/ty/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@ pub type PolyTraitPredicate<'tcx> = ty::Binder<'tcx, TraitPredicate<'tcx>>;
804804

805805
impl<'tcx> TraitPredicate<'tcx> {
806806
pub fn remap_constness(&mut self, tcx: TyCtxt<'tcx>, param_env: &mut ParamEnv<'tcx>) {
807-
if unlikely!(Some(self.trait_ref.def_id) == tcx.lang_items().drop_trait()) {
807+
if std::intrinsics::unlikely(Some(self.trait_ref.def_id) == tcx.lang_items().drop_trait()) {
808808
// remap without changing constness of this predicate.
809809
// this is because `T: ~const Drop` has a different meaning to `T: Drop`
810810
// FIXME(fee1-dead): remove this logic after beta bump

‎compiler/rustc_query_system/src/dep_graph/graph.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,7 @@ impl<K: DepKind> DepGraph<K> {
750750
dep_node
751751
);
752752

753-
if unlikely!(!side_effects.is_empty()) {
753+
if !side_effects.is_empty() {
754754
self.emit_side_effects(tcx, data, dep_node_index, side_effects);
755755
}
756756

‎compiler/rustc_query_system/src/query/plumbing.rs

+9-7
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ where
316316
OnHit: FnOnce(&C::Stored) -> R,
317317
{
318318
cache.lookup(&key, |value, index| {
319-
if unlikely!(tcx.profiler().enabled()) {
319+
if std::intrinsics::unlikely(tcx.profiler().enabled()) {
320320
tcx.profiler().query_cache_hit(index.into());
321321
}
322322
tcx.dep_graph().read_index(index);
@@ -354,7 +354,7 @@ where
354354
.lookup(&key, |value, index| (value.clone(), index))
355355
.unwrap_or_else(|_| panic!("value must be in cache after waiting"));
356356

357-
if unlikely!(tcx.dep_context().profiler().enabled()) {
357+
if std::intrinsics::unlikely(tcx.dep_context().profiler().enabled()) {
358358
tcx.dep_context().profiler().query_cache_hit(index.into());
359359
}
360360
query_blocked_prof_timer.finish_with_query_invocation_id(index.into());
@@ -422,7 +422,7 @@ where
422422
let diagnostics = diagnostics.into_inner();
423423
let side_effects = QuerySideEffects { diagnostics };
424424

425-
if unlikely!(!side_effects.is_empty()) {
425+
if std::intrinsics::unlikely(!side_effects.is_empty()) {
426426
if query.anon {
427427
tcx.store_side_effects_for_anon_node(dep_node_index, side_effects);
428428
} else {
@@ -466,7 +466,9 @@ where
466466
prof_timer.finish_with_query_invocation_id(dep_node_index.into());
467467

468468
if let Some(result) = result {
469-
if unlikely!(tcx.dep_context().sess().opts.debugging_opts.query_dep_graph) {
469+
if std::intrinsics::unlikely(
470+
tcx.dep_context().sess().opts.debugging_opts.query_dep_graph,
471+
) {
470472
dep_graph.mark_debug_loaded_from_disk(*dep_node)
471473
}
472474

@@ -483,8 +485,8 @@ where
483485
// currently afford to verify every hash. This subset should still
484486
// give us some coverage of potential bugs though.
485487
let try_verify = prev_fingerprint.as_value().1 % 32 == 0;
486-
if unlikely!(
487-
try_verify || tcx.dep_context().sess().opts.debugging_opts.incremental_verify_ich
488+
if std::intrinsics::unlikely(
489+
try_verify || tcx.dep_context().sess().opts.debugging_opts.incremental_verify_ich,
488490
) {
489491
incremental_verify_ich(*tcx.dep_context(), &result, dep_node, query);
490492
}
@@ -723,7 +725,7 @@ where
723725
// Ensure that only one of them runs the query.
724726
let cache = Q::query_cache(tcx);
725727
let cached = cache.lookup(&key, |_, index| {
726-
if unlikely!(tcx.dep_context().profiler().enabled()) {
728+
if std::intrinsics::unlikely(tcx.dep_context().profiler().enabled()) {
727729
tcx.dep_context().profiler().query_cache_hit(index.into());
728730
}
729731
});

0 commit comments

Comments
 (0)
Please sign in to comment.