use Deutsch-Schorr-Waite to implement acyclic_term/1 (#2128)
This commit is contained in:
424
src/machine/cycle_detection.rs
Normal file
424
src/machine/cycle_detection.rs
Normal file
@@ -0,0 +1,424 @@
|
||||
use crate::atom_table::*;
|
||||
use crate::types::*;
|
||||
|
||||
/* Use the pointer reversal technique of the Deutsch-Schorr-Waite
|
||||
* algorithm to detect cycles in Prolog terms.
|
||||
*
|
||||
* Much of the structure and nomenclature of the GC marking algorithm
|
||||
* is adapted here but there are a few significant changes:
|
||||
*
|
||||
* - Forwarded cells now form a trail of bread crumbs leading back to self.start
|
||||
* - Cells are only marked during the backward phase
|
||||
* - Visiting subterms of a visited compound does not immediately shift to the backward phase
|
||||
* - The heads of LIS structures are both marked and forwarded rather
|
||||
* than just forwarded to distinguish them from tails;
|
||||
* continue_forwarding() checks for this before entering the forward
|
||||
* phase
|
||||
*
|
||||
* Commonalities with the GC marking algorithm:
|
||||
* - The contents of forwarded cells are modified only when they are unforwarded
|
||||
* - Marked (but unforwarded!) cells immediately shift to the backward phase
|
||||
*/
|
||||
|
||||
#[derive(Debug)]
|
||||
pub(crate) struct CycleDetectingIter<'a> {
|
||||
pub(crate) heap: &'a mut [HeapCellValue],
|
||||
start: usize,
|
||||
current: usize,
|
||||
next: u64,
|
||||
cycle_found: bool,
|
||||
mark_phase: bool,
|
||||
}
|
||||
|
||||
impl<'a> CycleDetectingIter<'a> {
|
||||
pub(crate) fn new(heap: &'a mut [HeapCellValue], start: usize) -> Self {
|
||||
heap[start].set_forwarding_bit(true);
|
||||
let next = heap[start].get_value();
|
||||
|
||||
Self {
|
||||
heap,
|
||||
start,
|
||||
current: start,
|
||||
next,
|
||||
cycle_found: false,
|
||||
mark_phase: true,
|
||||
}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub(crate) fn cycle_found(&self) -> bool {
|
||||
self.cycle_found
|
||||
}
|
||||
|
||||
#[inline]
|
||||
fn cycle_detection_active(&self) -> bool {
|
||||
self.mark_phase && !self.cycle_found
|
||||
}
|
||||
|
||||
fn backward_and_return(&mut self) -> HeapCellValue {
|
||||
let mut current = self.heap[self.current];
|
||||
current.set_value(self.next);
|
||||
|
||||
if self.backward() {
|
||||
// set the f and m bits on the heap cell at start
|
||||
// so we invoke backward() and return None next call.
|
||||
|
||||
self.heap[self.current].set_forwarding_bit(false);
|
||||
self.heap[self.current].set_mark_bit(self.mark_phase);
|
||||
}
|
||||
|
||||
current
|
||||
}
|
||||
|
||||
fn traverse_subterm(&mut self, h: usize, arity: usize) -> Option<usize> {
|
||||
let mut last_cell_loc = h + arity - 1;
|
||||
|
||||
for idx in (h .. h + arity).rev() {
|
||||
if self.heap[idx].get_forwarding_bit() {
|
||||
if self.cycle_detection_active() {
|
||||
self.cycle_found = true;
|
||||
return None;
|
||||
}
|
||||
|
||||
last_cell_loc -= 1;
|
||||
} else if self.heap[idx].get_mark_bit() == self.mark_phase {
|
||||
last_cell_loc -= 1;
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Some(last_cell_loc)
|
||||
}
|
||||
|
||||
#[inline]
|
||||
fn continue_forwarding(&self) -> bool {
|
||||
self.heap[self.current].get_mark_bit() != self.mark_phase ||
|
||||
self.heap[self.current].get_forwarding_bit()
|
||||
}
|
||||
|
||||
fn forward(&mut self) -> Option<HeapCellValue> {
|
||||
loop {
|
||||
if self.continue_forwarding() {
|
||||
match self.heap[self.current].get_tag() {
|
||||
tag @ HeapCellValueTag::AttrVar | tag @ HeapCellValueTag::Var => {
|
||||
let next = self.next as usize;
|
||||
|
||||
if self.heap[next].get_forwarding_bit() {
|
||||
if self.current != next {
|
||||
return if self.cycle_detection_active() {
|
||||
self.cycle_found = true;
|
||||
None
|
||||
} else {
|
||||
Some(self.backward_and_return())
|
||||
};
|
||||
} else if self.backward() {
|
||||
return None;
|
||||
}
|
||||
|
||||
continue;
|
||||
} else if self.heap[next].get_mark_bit() == self.mark_phase {
|
||||
return Some(self.backward_and_return());
|
||||
}
|
||||
|
||||
self.heap[next].set_forwarding_bit(true);
|
||||
|
||||
let temp = self.heap[next].get_value();
|
||||
|
||||
self.heap[next].set_value(self.current as u64);
|
||||
self.current = next;
|
||||
self.next = temp;
|
||||
|
||||
if self.next < self.heap.len() as u64 {
|
||||
if self.heap[self.next as usize].get_mark_bit() == self.mark_phase {
|
||||
return Some(HeapCellValue::build_with(tag, next as u64));
|
||||
}
|
||||
}
|
||||
}
|
||||
HeapCellValueTag::Str => {
|
||||
let h = self.next as usize;
|
||||
let cell = self.heap[h];
|
||||
let arity = cell_as_atom_cell!(self.heap[h]).get_arity();
|
||||
|
||||
let last_cell_loc = match self.traverse_subterm(h + 1, arity) {
|
||||
Some(last_cell_loc) => last_cell_loc,
|
||||
None => return None,
|
||||
};
|
||||
|
||||
if last_cell_loc == h {
|
||||
if self.backward() {
|
||||
return None;
|
||||
}
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
if self.cycle_detection_active() {
|
||||
for idx in (h + 1 .. last_cell_loc).rev() {
|
||||
if self.heap[idx].get_forwarding_bit() {
|
||||
self.cycle_found = true;
|
||||
return None;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
self.heap[last_cell_loc].set_forwarding_bit(true);
|
||||
|
||||
self.next = self.heap[last_cell_loc].get_value();
|
||||
self.heap[last_cell_loc].set_value(self.current as u64);
|
||||
self.current = last_cell_loc;
|
||||
|
||||
return Some(cell);
|
||||
}
|
||||
HeapCellValueTag::Lis => {
|
||||
let mut cell = self.heap[self.current];
|
||||
cell.set_value(self.next);
|
||||
|
||||
let last_cell_loc = match self.traverse_subterm(self.next as usize, 2) {
|
||||
Some(last_cell_loc) => last_cell_loc,
|
||||
None => return None,
|
||||
};
|
||||
|
||||
if (last_cell_loc + 1) as u64 == self.next {
|
||||
if self.backward() {
|
||||
return None;
|
||||
}
|
||||
|
||||
continue;
|
||||
} else if last_cell_loc as u64 == self.next {
|
||||
// car cells of lists are both marked and forwarded.
|
||||
self.heap[last_cell_loc].set_mark_bit(self.mark_phase);
|
||||
}
|
||||
|
||||
self.heap[last_cell_loc].set_forwarding_bit(true);
|
||||
|
||||
self.next = self.heap[last_cell_loc].get_value();
|
||||
self.heap[last_cell_loc].set_value(self.current as u64);
|
||||
self.current = last_cell_loc;
|
||||
|
||||
return Some(cell);
|
||||
}
|
||||
HeapCellValueTag::PStrLoc => {
|
||||
let h = self.next as usize;
|
||||
let cell = self.heap[h];
|
||||
let last_cell_loc = h + 1;
|
||||
|
||||
if self.heap[last_cell_loc].get_forwarding_bit() {
|
||||
if self.cycle_detection_active() {
|
||||
self.cycle_found = true;
|
||||
return None;
|
||||
} else if self.backward() {
|
||||
return None;
|
||||
}
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
self.heap[last_cell_loc].set_forwarding_bit(true);
|
||||
|
||||
self.next = self.heap[last_cell_loc].get_value();
|
||||
self.heap[last_cell_loc].set_value(self.current as u64);
|
||||
self.current = last_cell_loc;
|
||||
|
||||
return Some(cell);
|
||||
}
|
||||
HeapCellValueTag::PStrOffset => {
|
||||
let h = self.next as usize;
|
||||
let cell = self.heap[h];
|
||||
let last_cell_loc = h + 1;
|
||||
|
||||
if self.heap[h].get_tag() == HeapCellValueTag::PStr {
|
||||
if self.heap[last_cell_loc].get_forwarding_bit() {
|
||||
if self.cycle_detection_active() {
|
||||
self.cycle_found = true;
|
||||
return None;
|
||||
} else if self.backward() {
|
||||
return None;
|
||||
}
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
self.heap[last_cell_loc].set_forwarding_bit(true);
|
||||
|
||||
self.next = self.heap[last_cell_loc].get_value();
|
||||
self.heap[last_cell_loc].set_value(self.current as u64);
|
||||
self.current = last_cell_loc;
|
||||
} else {
|
||||
debug_assert!(self.heap[h].get_tag() == HeapCellValueTag::CStr);
|
||||
|
||||
self.next = self.heap[h].get_value();
|
||||
self.heap[h].set_value(self.current as u64);
|
||||
self.current = h;
|
||||
}
|
||||
|
||||
return Some(cell);
|
||||
}
|
||||
tag @ HeapCellValueTag::Atom => {
|
||||
let cell = HeapCellValue::build_with(tag, self.next);
|
||||
let arity = AtomCell::from_bytes(cell.into_bytes()).get_arity();
|
||||
|
||||
if arity == 0 {
|
||||
return Some(self.backward_and_return());
|
||||
} else if self.backward() {
|
||||
return None;
|
||||
}
|
||||
}
|
||||
HeapCellValueTag::PStr => {
|
||||
if self.backward() {
|
||||
return None;
|
||||
}
|
||||
}
|
||||
_ => {
|
||||
return Some(self.backward_and_return());
|
||||
}
|
||||
}
|
||||
} else if self.backward() {
|
||||
return None;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn pivot_subterm(&mut self) {
|
||||
self.current -= 1;
|
||||
|
||||
let temp = self.heap[self.current + 1].get_value();
|
||||
|
||||
self.heap[self.current + 1].set_value(self.next);
|
||||
self.next = self.heap[self.current].get_value();
|
||||
self.heap[self.current].set_value(temp);
|
||||
|
||||
self.heap[self.current].set_forwarding_bit(true);
|
||||
}
|
||||
|
||||
fn continue_backward(&mut self) -> bool {
|
||||
self.heap[self.current].set_forwarding_bit(false);
|
||||
|
||||
if self.current == self.start {
|
||||
return false;
|
||||
}
|
||||
|
||||
let temp = self.heap[self.current].get_value();
|
||||
|
||||
match self.heap[temp as usize].get_tag() {
|
||||
HeapCellValueTag::Str => {
|
||||
let mut new_str_back_link = self.current;
|
||||
|
||||
for idx in (0 .. self.current).rev() {
|
||||
if self.heap[idx].get_tag() == HeapCellValueTag::Atom {
|
||||
if cell_as_atom_cell!(self.heap[idx]).get_arity() > 0 {
|
||||
new_str_back_link = idx;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if self.heap[idx].get_mark_bit() != self.mark_phase {
|
||||
if !self.heap[idx].get_forwarding_bit() {
|
||||
new_str_back_link = idx;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
self.heap[self.current].set_mark_bit(self.mark_phase);
|
||||
self.heap[self.current].set_value(self.next);
|
||||
|
||||
let back_link_cell = self.heap[new_str_back_link];
|
||||
|
||||
self.next = back_link_cell.get_value();
|
||||
self.heap[new_str_back_link].set_value(temp);
|
||||
self.current = new_str_back_link;
|
||||
|
||||
read_heap_cell!(back_link_cell,
|
||||
(HeapCellValueTag::Atom, (_name, arity)) => {
|
||||
if arity > 0 {
|
||||
self.heap[self.current].set_mark_bit(self.mark_phase);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
_ => {}
|
||||
);
|
||||
|
||||
self.heap[self.current].set_forwarding_bit(true);
|
||||
false
|
||||
}
|
||||
HeapCellValueTag::Lis => {
|
||||
if self.heap[self.current].get_mark_bit() == self.mark_phase {
|
||||
true
|
||||
} else {
|
||||
self.heap[self.current - 1].set_mark_bit(self.mark_phase);
|
||||
self.heap[self.current].set_mark_bit(self.mark_phase);
|
||||
|
||||
if self.heap[self.current - 1].get_forwarding_bit() {
|
||||
self.next = self.current as u64 - 1;
|
||||
self.heap[self.current].set_value(self.next);
|
||||
self.current = temp as usize;
|
||||
|
||||
true
|
||||
} else {
|
||||
self.pivot_subterm();
|
||||
false
|
||||
}
|
||||
}
|
||||
}
|
||||
_ => {
|
||||
self.heap[self.current].set_mark_bit(self.mark_phase);
|
||||
true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn backward(&mut self) -> bool {
|
||||
while self.continue_backward() {
|
||||
let temp = self.heap[self.current].get_value();
|
||||
|
||||
self.heap[self.current].set_value(self.next);
|
||||
self.next = self.current as u64;
|
||||
self.current = temp as usize;
|
||||
}
|
||||
|
||||
if self.current == self.start {
|
||||
return true;
|
||||
}
|
||||
|
||||
false
|
||||
}
|
||||
|
||||
fn invert_marker(&mut self) {
|
||||
self.cycle_found = false;
|
||||
|
||||
if self.heap[self.start].get_forwarding_bit() {
|
||||
while !self.backward() {}
|
||||
}
|
||||
|
||||
self.mark_phase = false;
|
||||
self.heap[self.start].set_forwarding_bit(true);
|
||||
|
||||
self.next = self.heap[self.start].get_value();
|
||||
self.current = self.start;
|
||||
|
||||
while let Some(_) = self.forward() {}
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> Iterator for CycleDetectingIter<'a> {
|
||||
type Item = HeapCellValue;
|
||||
|
||||
#[inline]
|
||||
fn next(&mut self) -> Option<Self::Item> {
|
||||
self.forward()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
impl<'a> Drop for CycleDetectingIter<'a> {
|
||||
fn drop(&mut self) {
|
||||
self.invert_marker();
|
||||
|
||||
if self.current == self.start {
|
||||
return;
|
||||
}
|
||||
|
||||
while !self.backward() {}
|
||||
}
|
||||
}
|
||||
@@ -55,39 +55,6 @@ impl UnmarkPolicy for IteratorUMP {
|
||||
}
|
||||
}
|
||||
|
||||
pub(crate) struct CycleDetectorUMP {
|
||||
mark_phase: bool,
|
||||
focus: usize,
|
||||
}
|
||||
|
||||
impl UnmarkPolicy for CycleDetectorUMP {
|
||||
#[inline(always)]
|
||||
fn forward_attr_var(iter: &mut StacklessPreOrderHeapIter<Self>) -> Option<HeapCellValue> {
|
||||
iter.forward_var()
|
||||
}
|
||||
|
||||
#[inline]
|
||||
fn invert_marker(iter: &mut StacklessPreOrderHeapIter<Self>) {
|
||||
iter.iter_state.mark_phase = false;
|
||||
invert_marker(iter);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
fn mark_phase(&self) -> bool {
|
||||
self.mark_phase
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
fn report_var_link(_iter: &StacklessPreOrderHeapIter<Self>) -> bool {
|
||||
true
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
fn record_focus(iter: &mut StacklessPreOrderHeapIter<Self>) {
|
||||
iter.iter_state.focus = iter.current;
|
||||
}
|
||||
}
|
||||
|
||||
struct MarkerUMP {}
|
||||
|
||||
impl UnmarkPolicy for MarkerUMP {
|
||||
@@ -177,31 +144,6 @@ impl<'a> StacklessPreOrderHeapIter<'a, IteratorUMP> {
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> StacklessPreOrderHeapIter<'a, CycleDetectorUMP> {
|
||||
pub(crate) fn new(heap: &'a mut [HeapCellValue], start: usize) -> Self {
|
||||
heap[start].set_forwarding_bit(true);
|
||||
let next = heap[start].get_value();
|
||||
|
||||
Self {
|
||||
heap,
|
||||
start,
|
||||
current: start,
|
||||
next,
|
||||
iter_state: CycleDetectorUMP { mark_phase: true, focus: 0 },
|
||||
}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub(crate) fn focus(&self) -> usize {
|
||||
self.iter_state.focus
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
pub(crate) fn current(&self) -> usize {
|
||||
self.current
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, UMP: UnmarkPolicy> StacklessPreOrderHeapIter<'a, UMP> {
|
||||
fn backward_and_return(&mut self) -> HeapCellValue {
|
||||
let mut current = self.heap[self.current];
|
||||
|
||||
@@ -1131,66 +1131,23 @@ impl MachineState {
|
||||
|
||||
#[inline]
|
||||
pub fn is_cyclic_term(&mut self, value: HeapCellValue) -> bool {
|
||||
use topo_sort::TopoSort;
|
||||
|
||||
let value = self.store(self.deref(value));
|
||||
|
||||
if value.is_constant() || value.is_stack_var() {
|
||||
if value.is_stack_var() || value.is_constant() {
|
||||
return false;
|
||||
}
|
||||
|
||||
let h = self.heap.len();
|
||||
self.heap.push(value);
|
||||
|
||||
let found_cycle = (|| {
|
||||
let mut topo_graph = TopoSort::new();
|
||||
let cycle_found = {
|
||||
let mut iter = cycle_detecting_stackless_preorder_iter(&mut self.heap, h);
|
||||
|
||||
while let Some(cell) = iter.next() {
|
||||
let focus = iter.focus();
|
||||
|
||||
read_heap_cell!(cell,
|
||||
(HeapCellValueTag::Atom, (_name, arity)) => {
|
||||
if arity > 0 {
|
||||
// focus is actually the location of Str(s) here.
|
||||
let s = iter.current() - arity;
|
||||
|
||||
topo_graph.insert(focus, vec![s]);
|
||||
topo_graph.insert(s, (s + 1 .. s + arity + 1).collect::<Vec<_>>());
|
||||
}
|
||||
}
|
||||
(HeapCellValueTag::Str, s) => {
|
||||
topo_graph.insert(focus, vec![s]);
|
||||
}
|
||||
(HeapCellValueTag::Lis | HeapCellValueTag::PStrLoc | HeapCellValueTag::PStrOffset, l) => {
|
||||
if l <= focus && focus < l + 2 {
|
||||
// TopoSort doesn't consider focus ->
|
||||
// focus to induce a cycle so in this case
|
||||
// it must be checked manually.
|
||||
return true;
|
||||
}
|
||||
|
||||
topo_graph.insert(focus, (l .. l + 2).collect::<Vec<_>>());
|
||||
}
|
||||
(HeapCellValueTag::AttrVar | HeapCellValueTag::Var, h) => {
|
||||
if focus != h {
|
||||
topo_graph.insert(focus, vec![h]);
|
||||
}
|
||||
}
|
||||
_ => {
|
||||
}
|
||||
);
|
||||
|
||||
if topo_graph.cycle_detected() {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
topo_graph.cycle_detected()
|
||||
})();
|
||||
while let Some(_) = iter.next() {}
|
||||
iter.cycle_found()
|
||||
};
|
||||
|
||||
self.heap.pop();
|
||||
found_cycle
|
||||
cycle_found
|
||||
}
|
||||
|
||||
// arg(+N, +Term, ?Arg)
|
||||
|
||||
@@ -6,6 +6,7 @@ pub mod code_walker;
|
||||
pub mod loader;
|
||||
pub mod compile;
|
||||
pub mod copier;
|
||||
pub mod cycle_detection;
|
||||
pub mod disjuncts;
|
||||
pub mod dispatch;
|
||||
pub mod gc;
|
||||
|
||||
Reference in New Issue
Block a user