fix cargo fmt
This commit is contained in:
@@ -1,11 +1,11 @@
|
|||||||
use crate::forms::*;
|
use crate::forms::*;
|
||||||
use crate::heap_iter::*;
|
use crate::heap_iter::*;
|
||||||
use crate::types::*;
|
|
||||||
use crate::machine::*;
|
|
||||||
use crate::machine::heap::*;
|
use crate::machine::heap::*;
|
||||||
|
use crate::machine::*;
|
||||||
|
use crate::types::*;
|
||||||
|
|
||||||
use fxhash::{FxHasher, FxBuildHasher};
|
use fxhash::{FxBuildHasher, FxHasher};
|
||||||
use hashbrown::{HashTable};
|
use hashbrown::HashTable;
|
||||||
|
|
||||||
use std::hash::{Hash, Hasher};
|
use std::hash::{Hash, Hasher};
|
||||||
|
|
||||||
@@ -16,33 +16,33 @@ impl MachineState {
|
|||||||
// return false on success and true on failure like eq_test.
|
// return false on success and true on failure like eq_test.
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn is_non_variant(&self, h1: HeapCellValue, h2: HeapCellValue) -> bool {
|
pub fn is_non_variant(&self, h1: HeapCellValue, h2: HeapCellValue) -> bool {
|
||||||
let mut a_to_b = IndexMap::with_hasher(FxBuildHasher::default());
|
let mut a_to_b = IndexMap::with_hasher(FxBuildHasher::default());
|
||||||
let mut b_to_a = IndexMap::with_hasher(FxBuildHasher::default());
|
let mut b_to_a = IndexMap::with_hasher(FxBuildHasher::default());
|
||||||
|
|
||||||
for term_pair in ParallelHeapIter::from(self, h1, h2) {
|
for term_pair in ParallelHeapIter::from(self, h1, h2) {
|
||||||
match term_pair {
|
match term_pair {
|
||||||
TermPair::Vars(v1_offset, v2_offset) => {
|
TermPair::Vars(v1_offset, v2_offset) => {
|
||||||
match a_to_b.entry(v1_offset) {
|
match a_to_b.entry(v1_offset) {
|
||||||
indexmap::map::Entry::Occupied(stored_v2_offset) => {
|
indexmap::map::Entry::Occupied(stored_v2_offset) => {
|
||||||
if v2_offset != *stored_v2_offset.get() {
|
if v2_offset != *stored_v2_offset.get() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
indexmap::map::Entry::Vacant(entry) => {
|
indexmap::map::Entry::Vacant(entry) => {
|
||||||
entry.insert_entry(v2_offset);
|
entry.insert_entry(v2_offset);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
match b_to_a.entry(v2_offset) {
|
match b_to_a.entry(v2_offset) {
|
||||||
indexmap::map::Entry::Occupied(stored_v1_offset) => {
|
indexmap::map::Entry::Occupied(stored_v1_offset) => {
|
||||||
if v1_offset != *stored_v1_offset.get() {
|
if v1_offset != *stored_v1_offset.get() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
indexmap::map::Entry::Vacant(entry) => {
|
indexmap::map::Entry::Vacant(entry) => {
|
||||||
entry.insert_entry(v1_offset);
|
entry.insert_entry(v1_offset);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
TermPair::Less(..) => return true,
|
TermPair::Less(..) => return true,
|
||||||
TermPair::Greater(..) => return true,
|
TermPair::Greater(..) => return true,
|
||||||
@@ -51,140 +51,144 @@ impl MachineState {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
|
|
||||||
fn variant_hash(&mut self, cell: HeapCellValue) -> u64 {
|
fn variant_hash(&mut self, cell: HeapCellValue) -> u64 {
|
||||||
let mut var_ids = IndexMap::with_hasher(FxBuildHasher::default());
|
let mut var_ids = IndexMap::with_hasher(FxBuildHasher::default());
|
||||||
let mut hasher = FxHasher::default();
|
let mut hasher = FxHasher::default();
|
||||||
let mut iter = eager_stackful_preorder_iter(&mut self.heap, cell);
|
let mut iter = eager_stackful_preorder_iter(&mut self.heap, cell);
|
||||||
let mut next_var_id = 0;
|
let mut next_var_id = 0;
|
||||||
|
|
||||||
while let Some(term) = iter.next() {
|
while let Some(term) = iter.next() {
|
||||||
read_heap_cell!(term,
|
read_heap_cell!(term,
|
||||||
(HeapCellValueTag::Str, s) => {
|
(HeapCellValueTag::Str, s) => {
|
||||||
let (name, arity) = cell_as_atom_cell!(iter.heap[s]).get_name_and_arity();
|
let (name, arity) = cell_as_atom_cell!(iter.heap[s]).get_name_and_arity();
|
||||||
(name.index, arity).hash(&mut hasher);
|
(name.index, arity).hash(&mut hasher);
|
||||||
}
|
}
|
||||||
(HeapCellValueTag::Lis) => {
|
(HeapCellValueTag::Lis) => {
|
||||||
(atom!(".").index, 2).hash(&mut hasher);
|
(atom!(".").index, 2).hash(&mut hasher);
|
||||||
}
|
}
|
||||||
(HeapCellValueTag::PStrLoc, l) => {
|
(HeapCellValueTag::PStrLoc, l) => {
|
||||||
let string = iter.heap.scan_slice_to_str(l).string;
|
let string = iter.heap.scan_slice_to_str(l).string;
|
||||||
|
|
||||||
for c in string.chars() {
|
for c in string.chars() {
|
||||||
(atom!(".").index, 2).hash(&mut hasher);
|
(atom!(".").index, 2).hash(&mut hasher);
|
||||||
hasher.write_u64(AtomCell::new_char_inlined(c).get_name().index);
|
hasher.write_u64(AtomCell::new_char_inlined(c).get_name().index);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
(HeapCellValueTag::Atom, (name, arity)) => {
|
(HeapCellValueTag::Atom, (name, arity)) => {
|
||||||
debug_assert_eq!(arity, 0);
|
debug_assert_eq!(arity, 0);
|
||||||
(name.index, arity).hash(&mut hasher);
|
(name.index, arity).hash(&mut hasher);
|
||||||
}
|
}
|
||||||
(HeapCellValueTag::AttrVar | HeapCellValueTag::Var, h) => {
|
(HeapCellValueTag::AttrVar | HeapCellValueTag::Var, h) => {
|
||||||
let canonical_id = var_ids.entry(h).or_insert_with(|| {
|
let canonical_id = var_ids.entry(h).or_insert_with(|| {
|
||||||
let id = next_var_id;
|
let id = next_var_id;
|
||||||
next_var_id += 1;
|
next_var_id += 1;
|
||||||
id
|
id
|
||||||
});
|
});
|
||||||
|
|
||||||
hasher.write_u64(*canonical_id);
|
hasher.write_u64(*canonical_id);
|
||||||
}
|
}
|
||||||
_ => {
|
_ => {
|
||||||
if let Some(n) = Number::try_from((term, &self.arena.f64_tbl)).ok() {
|
if let Ok(n) = Number::try_from((term, &self.arena.f64_tbl)) {
|
||||||
match n {
|
match n {
|
||||||
Number::Float(f) => f.hash(&mut hasher),
|
Number::Float(f) => f.hash(&mut hasher),
|
||||||
Number::Integer(n) => n.hash(&mut hasher),
|
Number::Integer(n) => n.hash(&mut hasher),
|
||||||
Number::Rational(r) => r.hash(&mut hasher),
|
Number::Rational(r) => r.hash(&mut hasher),
|
||||||
Number::Fixnum(f) => f.hash(&mut hasher),
|
Number::Fixnum(f) => f.hash(&mut hasher),
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
term.hash(&mut hasher);
|
term.hash(&mut hasher);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
hasher.finish()
|
hasher.finish()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn group_by_variant(&mut self) -> CallResult {
|
pub fn group_by_variant(&mut self) -> CallResult {
|
||||||
let stub_gen = || functor_stub(atom!("$group_by_variant"), 2);
|
let stub_gen = || functor_stub(atom!("$group_by_variant"), 2);
|
||||||
let list = self.try_from_list(self.registers[1], stub_gen)?;
|
let list = self.try_from_list(self.registers[1], stub_gen)?;
|
||||||
|
|
||||||
let mut key_pairs = Vec::with_capacity(list.len());
|
let mut key_pairs = Vec::with_capacity(list.len());
|
||||||
|
|
||||||
for val in list {
|
for val in list {
|
||||||
key_pairs.push(self.key_val_pair(val)?);
|
key_pairs.push(self.key_val_pair(val)?);
|
||||||
}
|
}
|
||||||
|
|
||||||
// the first parameter is the hash. Rust forces us to store it
|
// the first parameter is the hash. Rust forces us to store it
|
||||||
// because of non-lexical lifetime hell between
|
// because of non-lexical lifetime hell between
|
||||||
// HashTable::find_mut and HashTable::insert_unique. also
|
// HashTable::find_mut and HashTable::insert_unique. also
|
||||||
// avoid computing the same hash repeatedly
|
// avoid computing the same hash repeatedly
|
||||||
let mut table: HashTable<(u64, Vec<HeapCellValue>, Vec<HeapCellValue>)> = HashTable::new();
|
let mut table: HashTable<(u64, Vec<HeapCellValue>, Vec<HeapCellValue>)> = HashTable::new();
|
||||||
|
|
||||||
for (key, val) in key_pairs {
|
for (key, val) in key_pairs {
|
||||||
let hash = self.variant_hash(key);
|
let hash = self.variant_hash(key);
|
||||||
|
|
||||||
match table.find_mut(hash, |(_, keys, _)| !self.is_non_variant(key, keys[0])) {
|
match table.find_mut(hash, |(_, keys, _)| !self.is_non_variant(key, keys[0])) {
|
||||||
Some((_, keys, vals)) => {
|
Some((_, keys, vals)) => {
|
||||||
keys.push(key);
|
keys.push(key);
|
||||||
vals.push(val);
|
vals.push(val);
|
||||||
}
|
}
|
||||||
None => {
|
None => {
|
||||||
table.insert_unique(hash, (hash, vec![key], vec![val]), |(h, _, _)| *h);
|
table.insert_unique(hash, (hash, vec![key], vec![val]), |(h, _, _)| *h);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut list_of_lists = Vec::with_capacity(table.len());
|
let mut list_of_lists = Vec::with_capacity(table.len());
|
||||||
|
|
||||||
for (_, keys, variants) in table {
|
for (_, keys, variants) in table {
|
||||||
if let None = keys.windows(2).try_for_each(|cells| {
|
if keys
|
||||||
unify_fn!(*self, cells[0], cells[1]);
|
.windows(2)
|
||||||
if self.fail { None } else { Some(()) }
|
.try_for_each(|cells| {
|
||||||
}) {
|
unify_fn!(*self, cells[0], cells[1]);
|
||||||
return Ok(());
|
if self.fail {
|
||||||
}
|
None
|
||||||
|
} else {
|
||||||
|
Some(())
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.is_none()
|
||||||
|
{
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
let variant_list_cell = resource_error_call_result!(
|
let variant_list_cell = resource_error_call_result!(
|
||||||
self,
|
self,
|
||||||
sized_iter_to_heap_list(
|
sized_iter_to_heap_list(&mut self.heap, variants.len(), variants.into_iter(),)
|
||||||
&mut self.heap,
|
);
|
||||||
variants.len(),
|
|
||||||
variants.into_iter(),
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
let mut writer = resource_error_call_result!(self, self.heap.reserve(3));
|
let mut writer = resource_error_call_result!(self, self.heap.reserve(3));
|
||||||
|
|
||||||
let key_val_cell = writer.write_with(|section| {
|
let key_val_cell = writer
|
||||||
let key_val_cell = str_loc_as_cell!(section.cell_len());
|
.write_with(|section| {
|
||||||
|
let key_val_cell = str_loc_as_cell!(section.cell_len());
|
||||||
|
|
||||||
section.push_cell(atom_as_cell!(atom!("-"), 2));
|
section.push_cell(atom_as_cell!(atom!("-"), 2));
|
||||||
section.push_cell(keys[0]);
|
section.push_cell(keys[0]);
|
||||||
section.push_cell(variant_list_cell);
|
section.push_cell(variant_list_cell);
|
||||||
|
|
||||||
key_val_cell
|
key_val_cell
|
||||||
}).result;
|
})
|
||||||
|
.result;
|
||||||
|
|
||||||
list_of_lists.push(key_val_cell);
|
list_of_lists.push(key_val_cell);
|
||||||
}
|
}
|
||||||
|
|
||||||
let variant_grouped_list = resource_error_call_result!(
|
let variant_grouped_list = resource_error_call_result!(
|
||||||
self,
|
self,
|
||||||
sized_iter_to_heap_list(
|
sized_iter_to_heap_list(
|
||||||
&mut self.heap,
|
&mut self.heap,
|
||||||
list_of_lists.len(),
|
list_of_lists.len(),
|
||||||
list_of_lists.into_iter(),
|
list_of_lists.into_iter(),
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
let target_addr = self.registers[2];
|
let target_addr = self.registers[2];
|
||||||
unify_fn!(*self, target_addr, variant_grouped_list);
|
unify_fn!(*self, target_addr, variant_grouped_list);
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user