// 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 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. //! This pass is only used for the UNIT TESTS and DEBUGGING NEEDS //! around dependency graph construction. It serves two purposes; it //! will dump graphs in graphviz form to disk, and it searches for //! `#[rustc_if_this_changed]` and `#[rustc_then_this_would_need]` //! annotations. These annotations can be used to test whether paths //! exist in the graph. These checks run after trans, so they view the //! the final state of the dependency graph. Note that there are //! similar assertions found in `persist::dirty_clean` which check the //! **initial** state of the dependency graph, just after it has been //! loaded from disk. //! //! In this code, we report errors on each `rustc_if_this_changed` //! annotation. If a path exists in all cases, then we would report //! "all path(s) exist". Otherwise, we report: "no path to `foo`" for //! each case where no path exists. `compile-fail` tests can then be //! used to check when paths exist or do not. //! //! The full form of the `rustc_if_this_changed` annotation is //! `#[rustc_if_this_changed("foo")]`, which will report a //! source node of `foo(def_id)`. The `"foo"` is optional and //! defaults to `"Hir"` if omitted. //! //! Example: //! //! ``` //! #[rustc_if_this_changed(Hir)] //! fn foo() { } //! //! #[rustc_then_this_would_need(trans)] //~ ERROR no path from `foo` //! fn bar() { } //! //! #[rustc_then_this_would_need(trans)] //~ ERROR OK //! fn baz() { foo(); } //! ``` use graphviz as dot; use rustc::dep_graph::{DepGraphQuery, DepNode}; use rustc::dep_graph::debug::{DepNodeFilter, EdgeFilter}; use rustc::hir::def_id::DefId; use rustc::ty::TyCtxt; use rustc_data_structures::fnv::FnvHashSet; use rustc_data_structures::graph::{Direction, INCOMING, OUTGOING, NodeIndex}; use rustc::hir; use rustc::hir::intravisit::Visitor; use graphviz::IntoCow; use std::env; use std::fs::File; use std::io::Write; use syntax::ast; use syntax::parse::token::InternedString; use syntax_pos::Span; use {ATTR_IF_THIS_CHANGED, ATTR_THEN_THIS_WOULD_NEED}; pub fn assert_dep_graph<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>) { let _ignore = tcx.dep_graph.in_ignore(); if tcx.sess.opts.debugging_opts.dump_dep_graph { dump_graph(tcx); } // if the `rustc_attrs` feature is not enabled, then the // attributes we are interested in cannot be present anyway, so // skip the walk. if !tcx.sess.features.borrow().rustc_attrs { return; } // Find annotations supplied by user (if any). let (if_this_changed, then_this_would_need) = { let mut visitor = IfThisChanged { tcx: tcx, if_this_changed: vec![], then_this_would_need: vec![] }; visitor.process_attrs(ast::CRATE_NODE_ID, &tcx.map.krate().attrs); tcx.map.krate().visit_all_items(&mut visitor); (visitor.if_this_changed, visitor.then_this_would_need) }; if !if_this_changed.is_empty() || !then_this_would_need.is_empty() { assert!(tcx.sess.opts.debugging_opts.query_dep_graph, "cannot use the `#[{}]` or `#[{}]` annotations \ without supplying `-Z query-dep-graph`", ATTR_IF_THIS_CHANGED, ATTR_THEN_THIS_WOULD_NEED); } // Check paths. check_paths(tcx, &if_this_changed, &then_this_would_need); } type Sources = Vec<(Span, DefId, DepNode)>; type Targets = Vec<(Span, InternedString, ast::NodeId, DepNode)>; struct IfThisChanged<'a, 'tcx:'a> { tcx: TyCtxt<'a, 'tcx, 'tcx>, if_this_changed: Sources, then_this_would_need: Targets, } impl<'a, 'tcx> IfThisChanged<'a, 'tcx> { fn argument(&self, attr: &ast::Attribute) -> Option { let mut value = None; for list_item in attr.meta_item_list().unwrap_or_default() { match list_item.word() { Some(word) if value.is_none() => value = Some(word.name().clone()), _ => // FIXME better-encapsulate meta_item (don't directly access `node`) span_bug!(list_item.span(), "unexpected meta-item {:?}", list_item.node), } } value } fn process_attrs(&mut self, node_id: ast::NodeId, attrs: &[ast::Attribute]) { let def_id = self.tcx.map.local_def_id(node_id); for attr in attrs { if attr.check_name(ATTR_IF_THIS_CHANGED) { let dep_node_interned = self.argument(attr); let dep_node = match dep_node_interned { None => DepNode::Hir(def_id), Some(ref n) => { match DepNode::from_label_string(&n[..], def_id) { Ok(n) => n, Err(()) => { self.tcx.sess.span_fatal( attr.span, &format!("unrecognized DepNode variant {:?}", n)); } } } }; self.if_this_changed.push((attr.span, def_id, dep_node)); } else if attr.check_name(ATTR_THEN_THIS_WOULD_NEED) { let dep_node_interned = self.argument(attr); let dep_node = match dep_node_interned { Some(ref n) => { match DepNode::from_label_string(&n[..], def_id) { Ok(n) => n, Err(()) => { self.tcx.sess.span_fatal( attr.span, &format!("unrecognized DepNode variant {:?}", n)); } } } None => { self.tcx.sess.span_fatal( attr.span, &format!("missing DepNode variant")); } }; self.then_this_would_need.push((attr.span, dep_node_interned.clone().unwrap(), node_id, dep_node)); } } } } impl<'a, 'tcx> Visitor<'tcx> for IfThisChanged<'a, 'tcx> { fn visit_item(&mut self, item: &'tcx hir::Item) { self.process_attrs(item.id, &item.attrs); } } fn check_paths<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, if_this_changed: &Sources, then_this_would_need: &Targets) { // Return early here so as not to construct the query, which is not cheap. if if_this_changed.is_empty() { for &(target_span, _, _, _) in then_this_would_need { tcx.sess.span_err( target_span, &format!("no #[rustc_if_this_changed] annotation detected")); } return; } let query = tcx.dep_graph.query(); for &(_, source_def_id, ref source_dep_node) in if_this_changed { let dependents = query.transitive_successors(source_dep_node); for &(target_span, ref target_pass, _, ref target_dep_node) in then_this_would_need { if !dependents.contains(&target_dep_node) { tcx.sess.span_err( target_span, &format!("no path from `{}` to `{}`", tcx.item_path_str(source_def_id), target_pass)); } else { tcx.sess.span_err( target_span, &format!("OK")); } } } } fn dump_graph(tcx: TyCtxt) { let path: String = env::var("RUST_DEP_GRAPH").unwrap_or_else(|_| format!("dep_graph")); let query = tcx.dep_graph.query(); let nodes = match env::var("RUST_DEP_GRAPH_FILTER") { Ok(string) => { // Expect one of: "-> target", "source -> target", or "source ->". let edge_filter = EdgeFilter::new(&string).unwrap_or_else(|e| { bug!("invalid filter: {}", e) }); let sources = node_set(&query, &edge_filter.source); let targets = node_set(&query, &edge_filter.target); filter_nodes(&query, &sources, &targets) } Err(_) => { query.nodes() .into_iter() .collect() } }; let edges = filter_edges(&query, &nodes); { // dump a .txt file with just the edges: let txt_path = format!("{}.txt", path); let mut file = File::create(&txt_path).unwrap(); for &(ref source, ref target) in &edges { write!(file, "{:?} -> {:?}\n", source, target).unwrap(); } } { // dump a .dot file in graphviz format: let dot_path = format!("{}.dot", path); let mut v = Vec::new(); dot::render(&GraphvizDepGraph(nodes, edges), &mut v).unwrap(); File::create(&dot_path).and_then(|mut f| f.write_all(&v)).unwrap(); } } pub struct GraphvizDepGraph<'q>(FnvHashSet<&'q DepNode>, Vec<(&'q DepNode, &'q DepNode)>); impl<'a, 'tcx, 'q> dot::GraphWalk<'a> for GraphvizDepGraph<'q> { type Node = &'q DepNode; type Edge = (&'q DepNode, &'q DepNode); fn nodes(&self) -> dot::Nodes<&'q DepNode> { let nodes: Vec<_> = self.0.iter().cloned().collect(); nodes.into_cow() } fn edges(&self) -> dot::Edges<(&'q DepNode, &'q DepNode)> { self.1[..].into_cow() } fn source(&self, edge: &(&'q DepNode, &'q DepNode)) -> &'q DepNode { edge.0 } fn target(&self, edge: &(&'q DepNode, &'q DepNode)) -> &'q DepNode { edge.1 } } impl<'a, 'tcx, 'q> dot::Labeller<'a> for GraphvizDepGraph<'q> { type Node = &'q DepNode; type Edge = (&'q DepNode, &'q DepNode); fn graph_id(&self) -> dot::Id { dot::Id::new("DependencyGraph").unwrap() } fn node_id(&self, n: &&'q DepNode) -> dot::Id { let s: String = format!("{:?}", n).chars() .map(|c| if c == '_' || c.is_alphanumeric() { c } else { '_' }) .collect(); debug!("n={:?} s={:?}", n, s); dot::Id::new(s).unwrap() } fn node_label(&self, n: &&'q DepNode) -> dot::LabelText { dot::LabelText::label(format!("{:?}", n)) } } // Given an optional filter like `"x,y,z"`, returns either `None` (no // filter) or the set of nodes whose labels contain all of those // substrings. fn node_set<'q>(query: &'q DepGraphQuery, filter: &DepNodeFilter) -> Option>> { debug!("node_set(filter={:?})", filter); if filter.accepts_all() { return None; } Some(query.nodes().into_iter().filter(|n| filter.test(n)).collect()) } fn filter_nodes<'q>(query: &'q DepGraphQuery, sources: &Option>>, targets: &Option>>) -> FnvHashSet<&'q DepNode> { if let &Some(ref sources) = sources { if let &Some(ref targets) = targets { walk_between(query, sources, targets) } else { walk_nodes(query, sources, OUTGOING) } } else if let &Some(ref targets) = targets { walk_nodes(query, targets, INCOMING) } else { query.nodes().into_iter().collect() } } fn walk_nodes<'q>(query: &'q DepGraphQuery, starts: &FnvHashSet<&'q DepNode>, direction: Direction) -> FnvHashSet<&'q DepNode> { let mut set = FnvHashSet(); for &start in starts { debug!("walk_nodes: start={:?} outgoing?={:?}", start, direction == OUTGOING); if set.insert(start) { let mut stack = vec![query.indices[start]]; while let Some(index) = stack.pop() { for (_, edge) in query.graph.adjacent_edges(index, direction) { let neighbor_index = edge.source_or_target(direction); let neighbor = query.graph.node_data(neighbor_index); if set.insert(neighbor) { stack.push(neighbor_index); } } } } } set } fn walk_between<'q>(query: &'q DepGraphQuery, sources: &FnvHashSet<&'q DepNode>, targets: &FnvHashSet<&'q DepNode>) -> FnvHashSet<&'q DepNode> { // This is a bit tricky. We want to include a node only if it is: // (a) reachable from a source and (b) will reach a target. And we // have to be careful about cycles etc. Luckily efficiency is not // a big concern! #[derive(Copy, Clone, PartialEq)] enum State { Undecided, Deciding, Included, Excluded } let mut node_states = vec![State::Undecided; query.graph.len_nodes()]; for &target in targets { node_states[query.indices[target].0] = State::Included; } for source in sources.iter().map(|&n| query.indices[n]) { recurse(query, &mut node_states, source); } return query.nodes() .into_iter() .filter(|&n| { let index = query.indices[n]; node_states[index.0] == State::Included }) .collect(); fn recurse(query: &DepGraphQuery, node_states: &mut [State], node: NodeIndex) -> bool { match node_states[node.0] { // known to reach a target State::Included => return true, // known not to reach a target State::Excluded => return false, // backedge, not yet known, say false State::Deciding => return false, State::Undecided => { } } node_states[node.0] = State::Deciding; for neighbor_index in query.graph.successor_nodes(node) { if recurse(query, node_states, neighbor_index) { node_states[node.0] = State::Included; } } // if we didn't find a path to target, then set to excluded if node_states[node.0] == State::Deciding { node_states[node.0] = State::Excluded; false } else { assert!(node_states[node.0] == State::Included); true } } } fn filter_edges<'q>(query: &'q DepGraphQuery, nodes: &FnvHashSet<&'q DepNode>) -> Vec<(&'q DepNode, &'q DepNode)> { query.edges() .into_iter() .filter(|&(source, target)| nodes.contains(source) && nodes.contains(target)) .collect() }