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
//! A feedback-vertex-set is a set of vertices whose removal leaves a graph without cycles
//! (<https://en.wikipedia.org/wiki/Feedback_vertex_set>).
//! We use this algorithm to spot the relevant places for adding `withdraw_gas` statements in the
//! resulting Sierra code - there should be a `withdraw_gas` call in every recursive call, or in
//! other words, in any cycle in the function call graph.
//! An efficient algorithm to find the minimum feedback-vertex-set in a directed graph is not known,
//! so here we implement some straight-forward algorithm that guarantees to cover all the cycles in
//! the graph, but doesn't necessarily produce the minimum size of such a set.
use super::graph_node::GraphNode;
use super::scc_graph_node::SccGraphNode;
use super::strongly_connected_components::ComputeScc;
use crate::ordered_hash_set::OrderedHashSet;
use crate::unordered_hash_set::UnorderedHashSet;
#[cfg(test)]
#[path = "feedback_set_test.rs"]
mod feedback_set_test;
/// Context for the feedback-set algorithm.
struct FeedbackSetAlgoContext<Node: GraphNode> {
/// The accumulated feedback set so far in the process of the algorithm. In the end of the
/// algorithm, this is also the result.
pub feedback_set: OrderedHashSet<Node::NodeId>,
/// Nodes that are currently during the recursion call on them. That is - if one of these is
/// reached, it indicates it's in some cycle that was not "resolved" yet.
pub in_flight: UnorderedHashSet<Node::NodeId>,
}
impl<Node: GraphNode> FeedbackSetAlgoContext<Node> {
fn new() -> Self {
FeedbackSetAlgoContext {
feedback_set: OrderedHashSet::new(),
in_flight: UnorderedHashSet::new(),
}
}
}
/// Calculates the feedback set of an SCC.
pub fn calc_feedback_set<Node: GraphNode + ComputeScc>(
node: &SccGraphNode<Node>,
) -> OrderedHashSet<Node::NodeId> {
let mut ctx = FeedbackSetAlgoContext::<Node>::new();
calc_feedback_set_recursive(node, &mut ctx);
ctx.feedback_set
}
fn calc_feedback_set_recursive<Node: GraphNode + ComputeScc>(
node: &SccGraphNode<Node>,
ctx: &mut FeedbackSetAlgoContext<Node>,
) {
let cur_node_id = node.get_id();
ctx.in_flight.insert(cur_node_id.clone());
for neighbor in node.get_neighbors() {
let neighbor_id = neighbor.get_id();
if ctx.feedback_set.contains(&neighbor_id) {
continue;
} else if ctx.in_flight.contains(&neighbor_id) {
ctx.feedback_set.insert(neighbor_id);
} else {
calc_feedback_set_recursive(&neighbor, ctx);
}
// `node` might have been added to the fset during this iteration of the loop. If so, no
// need to continue this loop.
if ctx.feedback_set.contains(&cur_node_id) {
break;
}
}
ctx.in_flight.remove(&cur_node_id);
}