Miscellaneous inlining improvements
Add `#[inline]` to a few trivial non-generic methods from a perf report that otherwise wouldn't be candidates for inlining.
This commit is contained in:
parent
3e51277fe6
commit
87374de3ad
@ -165,22 +165,27 @@ fn hash_stable(&self, hcx: &mut StableHashingContext<'a>, hasher: &mut StableHas
|
||||
pub struct AdtDef<'tcx>(pub Interned<'tcx, AdtDefData>);
|
||||
|
||||
impl<'tcx> AdtDef<'tcx> {
|
||||
#[inline]
|
||||
pub fn did(self) -> DefId {
|
||||
self.0.0.did
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn variants(self) -> &'tcx IndexVec<VariantIdx, VariantDef> {
|
||||
&self.0.0.variants
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn variant(self, idx: VariantIdx) -> &'tcx VariantDef {
|
||||
&self.0.0.variants[idx]
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn flags(self) -> AdtFlags {
|
||||
self.0.0.flags
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn repr(self) -> ReprOptions {
|
||||
self.0.0.repr
|
||||
}
|
||||
|
@ -1126,6 +1126,7 @@ fn has_vars_bound_at_or_above(&self, binder: ty::DebruijnIndex) -> bool {
|
||||
self.outer_exclusive_binder() > binder
|
||||
}
|
||||
|
||||
#[inline]
|
||||
fn has_type_flags(&self, flags: ty::TypeFlags) -> bool {
|
||||
self.flags().intersects(flags)
|
||||
}
|
||||
|
@ -1315,6 +1315,7 @@ pub fn for_def(def: &ty::GenericParamDef) -> ParamConst {
|
||||
impl<'tcx> Deref for Region<'tcx> {
|
||||
type Target = RegionKind<'tcx>;
|
||||
|
||||
#[inline]
|
||||
fn deref(&self) -> &RegionKind<'tcx> {
|
||||
&self.0.0
|
||||
}
|
||||
|
@ -1042,6 +1042,7 @@ pub fn peel_refs(self) -> Ty<'tcx> {
|
||||
ty
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn outer_exclusive_binder(self) -> ty::DebruijnIndex {
|
||||
self.0.outer_exclusive_binder
|
||||
}
|
||||
|
@ -59,6 +59,7 @@ pub enum DepNodeColor {
|
||||
}
|
||||
|
||||
impl DepNodeColor {
|
||||
#[inline]
|
||||
pub fn is_green(self) -> bool {
|
||||
match self {
|
||||
DepNodeColor::Red => false,
|
||||
|
@ -84,6 +84,7 @@ pub struct QueryJob {
|
||||
|
||||
impl QueryJob {
|
||||
/// Creates a new query job.
|
||||
#[inline]
|
||||
pub fn new(id: QueryJobId, span: Span, parent: Option<QueryJobId>) -> Self {
|
||||
QueryJob {
|
||||
id,
|
||||
@ -106,6 +107,7 @@ pub(super) fn latch(&mut self) -> QueryLatch {
|
||||
///
|
||||
/// This does nothing for single threaded rustc,
|
||||
/// as there are no concurrent jobs which could be waiting on us
|
||||
#[inline]
|
||||
pub fn signal_complete(self) {
|
||||
#[cfg(parallel_compiler)]
|
||||
{
|
||||
|
@ -81,6 +81,7 @@ pub struct QuerySideEffects {
|
||||
}
|
||||
|
||||
impl QuerySideEffects {
|
||||
#[inline]
|
||||
pub fn is_empty(&self) -> bool {
|
||||
let QuerySideEffects { diagnostics } = self;
|
||||
diagnostics.is_empty()
|
||||
|
@ -1603,6 +1603,7 @@ pub fn is_real_file(&self) -> bool {
|
||||
self.name.is_real()
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn is_imported(&self) -> bool {
|
||||
self.src.is_none()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user