Skip to content

Commit 6a1f5ea

Browse files
committed
obligation forest docs
1 parent ec0a0ca commit 6a1f5ea

File tree

3 files changed

+10
-7
lines changed
  • compiler
    • rustc_data_structures/src/obligation_forest
    • rustc_infer/src/infer/higher_ranked
    • rustc_trait_selection/src/traits

3 files changed

+10
-7
lines changed

compiler/rustc_data_structures/src/obligation_forest/mod.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,11 @@ type ObligationTreeIdGenerator =
132132
std::iter::Map<std::ops::RangeFrom<usize>, fn(usize) -> ObligationTreeId>;
133133

134134
pub struct ObligationForest<O: ForestObligation> {
135-
/// The list of obligations. In between calls to `process_obligations`,
135+
/// The list of obligations. In between calls to [Self::process_obligations],
136136
/// this list only contains nodes in the `Pending` or `Waiting` state.
137137
///
138138
/// `usize` indices are used here and throughout this module, rather than
139-
/// `rustc_index::newtype_index!` indices, because this code is hot enough
139+
/// [`rustc_index::newtype_index!`] indices, because this code is hot enough
140140
/// that the `u32`-to-`usize` conversions that would be required are
141141
/// significant, and space considerations are not important.
142142
nodes: Vec<Node<O>>,
@@ -146,10 +146,11 @@ pub struct ObligationForest<O: ForestObligation> {
146146

147147
/// A cache of the nodes in `nodes`, indexed by predicate. Unfortunately,
148148
/// its contents are not guaranteed to match those of `nodes`. See the
149-
/// comments in `process_obligation` for details.
149+
/// comments in [`Self::process_obligation` for details.
150150
active_cache: FxHashMap<O::CacheKey, usize>,
151151

152-
/// A vector reused in compress() and find_cycles_from_node(), to avoid allocating new vectors.
152+
/// A vector reused in [Self::compress()] and [Self::find_cycles_from_node()],
153+
/// to avoid allocating new vectors.
153154
reused_node_vec: Vec<usize>,
154155

155156
obligation_tree_id_generator: ObligationTreeIdGenerator,

compiler/rustc_infer/src/infer/higher_ranked/mod.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,9 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
123123
result
124124
}
125125

126-
/// See `infer::region_constraints::RegionConstraintCollector::leak_check`.
126+
/// See [RegionConstraintCollector::leak_check][1].
127+
///
128+
/// [1]: crate::infer::region_constraints::RegionConstraintCollector::leak_check
127129
pub fn leak_check(
128130
&self,
129131
overly_polymorphic: bool,

compiler/rustc_trait_selection/src/traits/fulfill.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ impl<'a, 'b, 'tcx> ObligationProcessor for FulfillProcessor<'a, 'b, 'tcx> {
314314
return ProcessResult::Unchanged;
315315
}
316316

317-
self.progress_changed_obligations(pending_obligation)
317+
self.process_changed_obligations(pending_obligation)
318318
}
319319

320320
fn process_backedge<'c, I>(
@@ -338,7 +338,7 @@ impl<'a, 'b, 'tcx> FulfillProcessor<'a, 'b, 'tcx> {
338338
// actually uses this, so move this part of the code
339339
// out of that loop.
340340
#[inline(never)]
341-
fn progress_changed_obligations(
341+
fn process_changed_obligations(
342342
&mut self,
343343
pending_obligation: &mut PendingPredicateObligation<'tcx>,
344344
) -> ProcessResult<PendingPredicateObligation<'tcx>, FulfillmentErrorCode<'tcx>> {

0 commit comments

Comments
 (0)