1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

use rustc::dep_graph::{DepGraphQuery, DepNode};
use rustc::hir::def_id::DefId;
use rustc_data_structures::fx::FxHashMap;
use rustc_data_structures::graph::{Graph, NodeIndex};

use super::hash::*;
use ich::Fingerprint;

mod compress;

/// A data-structure that makes it easy to enumerate the hashable
/// predecessors of any given dep-node.
pub struct Predecessors<'query> {
    // A reduced version of the input graph that contains fewer nodes.
    // This is intended to keep all of the base inputs (i.e., HIR
    // nodes) and all of the "work-products" we may care about
    // later. Other nodes may be retained if it keeps the overall size
    // of the graph down.
    pub reduced_graph: Graph<&'query DepNode<DefId>, ()>,

    // These are output nodes that have no incoming edges. We have to
    // track these specially because, when we load the data back up
    // again, we want to make sure and recreate these nodes (we want
    // to recreate the nodes where all incoming edges are clean; but
    // since we ordinarily just serialize edges, we wind up just
    // forgetting that bootstrap outputs even exist in that case.)
    pub bootstrap_outputs: Vec<&'query DepNode<DefId>>,

    // For the inputs (hir/foreign-metadata), we include hashes.
    pub hashes: FxHashMap<&'query DepNode<DefId>, Fingerprint>,
}

impl<'q> Predecessors<'q> {
    pub fn new(query: &'q DepGraphQuery<DefId>, hcx: &mut HashContext) -> Self {
        let tcx = hcx.tcx;

        let collect_for_metadata = tcx.sess.opts.debugging_opts.incremental_cc ||
            tcx.sess.opts.debugging_opts.query_dep_graph;

        // Find the set of "start nodes". These are nodes that we will
        // possibly query later.
        let is_output = |node: &DepNode<DefId>| -> bool {
            match *node {
                DepNode::WorkProduct(_) => true,
                DepNode::MetaData(ref def_id) => collect_for_metadata && def_id.is_local(),

                // if -Z query-dep-graph is passed, save more extended data
                // to enable better unit testing
                DepNode::TypeckTables(_) |
                DepNode::TransCrateItem(_) => tcx.sess.opts.debugging_opts.query_dep_graph,

                _ => false,
            }
        };

        // Reduce the graph to the most important nodes.
        let compress::Reduction { graph, input_nodes } =
            compress::reduce_graph(&query.graph, HashContext::is_hashable, |n| is_output(n));

        let mut hashes = FxHashMap();
        for input_index in input_nodes {
            let input = *graph.node_data(input_index);
            debug!("computing hash for input node `{:?}`", input);
            hashes.entry(input)
                  .or_insert_with(|| hcx.hash(input).unwrap());
        }

        let bootstrap_outputs: Vec<&'q DepNode<DefId>> =
            (0 .. graph.len_nodes())
            .map(NodeIndex)
            .filter(|&n| graph.incoming_edges(n).next().is_none())
            .map(|n| *graph.node_data(n))
            .filter(|n| is_output(n))
            .collect();

        Predecessors {
            reduced_graph: graph,
            bootstrap_outputs: bootstrap_outputs,
            hashes: hashes,
        }
    }
}