2016-06-09 15:49:07 -07:00
|
|
|
// Copyright 2016 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 super::*;
|
|
|
|
|
|
|
|
impl<'graph, G: ControlFlowGraph> ControlFlowGraph for &'graph G {
|
|
|
|
type Node = G::Node;
|
|
|
|
|
|
|
|
fn num_nodes(&self) -> usize {
|
|
|
|
(**self).num_nodes()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn start_node(&self) -> Self::Node {
|
|
|
|
(**self).start_node()
|
|
|
|
}
|
|
|
|
|
2016-10-20 00:25:19 +05:30
|
|
|
fn predecessors<'iter>(&'iter self,
|
|
|
|
node: Self::Node)
|
|
|
|
-> <Self as GraphPredecessors<'iter>>::Iter {
|
2016-06-09 15:49:07 -07:00
|
|
|
(**self).predecessors(node)
|
|
|
|
}
|
|
|
|
|
2016-10-20 00:25:19 +05:30
|
|
|
fn successors<'iter>(&'iter self, node: Self::Node) -> <Self as GraphSuccessors<'iter>>::Iter {
|
2016-06-09 15:49:07 -07:00
|
|
|
(**self).successors(node)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'iter, 'graph, G: ControlFlowGraph> GraphPredecessors<'iter> for &'graph G {
|
|
|
|
type Item = G::Node;
|
|
|
|
type Iter = <G as GraphPredecessors<'iter>>::Iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'iter, 'graph, G: ControlFlowGraph> GraphSuccessors<'iter> for &'graph G {
|
|
|
|
type Item = G::Node;
|
|
|
|
type Iter = <G as GraphSuccessors<'iter>>::Iter;
|
|
|
|
}
|