split into lib and bin

* makes most pub things in src/ pub(crate) as not to expose things accidentally
  * only those things needed by src/bin/scryer-prolog.rs and tests/scryer.rs
    should be pub
* split src/main.rs into src/lib.rs and src/bin/scryer-prolog.rs
* add tests folder and run most of the files in src/tests with cargo test
  added bytes method to Stream in src/machine/streams.rs to check if stdout is as expected
This commit is contained in:
Skgland
2021-02-25 23:24:20 +01:00
parent f935060b2b
commit 2f428b7261
35 changed files with 981 additions and 964 deletions

View File

@@ -44,7 +44,7 @@ fn main() {
libraries libraries
.write_all( .write_all(
b"ref_thread_local::ref_thread_local! { b"ref_thread_local::ref_thread_local! {
pub static managed LIBRARIES: IndexMap<&'static str, &'static str> = { pub(crate) static managed LIBRARIES: IndexMap<&'static str, &'static str> = {
let mut m = IndexMap::new();\n", let mut m = IndexMap::new();\n",
) )
.unwrap(); .unwrap();

View File

@@ -9,7 +9,7 @@ use crate::targets::*;
use std::cell::Cell; use std::cell::Cell;
use std::rc::Rc; use std::rc::Rc;
pub trait Allocator<'a> { pub(crate) trait Allocator<'a> {
fn new() -> Self; fn new() -> Self;
fn mark_anon_var<Target>(&mut self, _: Level, _: GenContext, _: &mut Vec<Target>) fn mark_anon_var<Target>(&mut self, _: Level, _: GenContext, _: &mut Vec<Target>)

View File

@@ -25,11 +25,11 @@ use std::rc::Rc;
use std::vec::Vec; use std::vec::Vec;
#[derive(Debug)] #[derive(Debug)]
pub struct ArithInstructionIterator<'a> { pub(crate) struct ArithInstructionIterator<'a> {
state_stack: Vec<TermIterState<'a>>, state_stack: Vec<TermIterState<'a>>,
} }
pub type ArithCont = (Code, Option<ArithmeticTerm>); pub(crate) type ArithCont = (Code, Option<ArithmeticTerm>);
impl<'a> ArithInstructionIterator<'a> { impl<'a> ArithInstructionIterator<'a> {
fn push_subterm(&mut self, lvl: Level, term: &'a Term) { fn push_subterm(&mut self, lvl: Level, term: &'a Term) {
@@ -71,7 +71,7 @@ impl<'a> ArithInstructionIterator<'a> {
} }
#[derive(Debug)] #[derive(Debug)]
pub enum ArithTermRef<'a> { pub(crate) enum ArithTermRef<'a> {
Constant(&'a Constant), Constant(&'a Constant),
Op(ClauseName, usize), // name, arity. Op(ClauseName, usize), // name, arity.
Var(&'a Cell<VarReg>, Rc<Var>), Var(&'a Cell<VarReg>, Rc<Var>),
@@ -113,13 +113,13 @@ impl<'a> Iterator for ArithInstructionIterator<'a> {
} }
#[derive(Debug)] #[derive(Debug)]
pub struct ArithmeticEvaluator<'a> { pub(crate) struct ArithmeticEvaluator<'a> {
bindings: &'a AllocVarDict, bindings: &'a AllocVarDict,
interm: Vec<ArithmeticTerm>, interm: Vec<ArithmeticTerm>,
interm_c: usize, interm_c: usize,
} }
pub trait ArithmeticTermIter<'a> { pub(crate) trait ArithmeticTermIter<'a> {
type Iter: Iterator<Item = Result<ArithTermRef<'a>, ArithmeticError>>; type Iter: Iterator<Item = Result<ArithTermRef<'a>, ArithmeticError>>;
fn iter(self) -> Result<Self::Iter, ArithmeticError>; fn iter(self) -> Result<Self::Iter, ArithmeticError>;
@@ -134,7 +134,7 @@ impl<'a> ArithmeticTermIter<'a> for &'a Term {
} }
impl<'a> ArithmeticEvaluator<'a> { impl<'a> ArithmeticEvaluator<'a> {
pub fn new(bindings: &'a AllocVarDict, target_int: usize) -> Self { pub(crate) fn new(bindings: &'a AllocVarDict, target_int: usize) -> Self {
ArithmeticEvaluator { ArithmeticEvaluator {
bindings, bindings,
interm: Vec::new(), interm: Vec::new(),
@@ -296,7 +296,7 @@ impl<'a> ArithmeticEvaluator<'a> {
Ok(()) Ok(())
} }
pub fn eval<Iter>(&mut self, src: Iter) -> Result<ArithCont, ArithmeticError> pub(crate) fn eval<Iter>(&mut self, src: Iter) -> Result<ArithCont, ArithmeticError>
where where
Iter: ArithmeticTermIter<'a>, Iter: ArithmeticTermIter<'a>,
{ {
@@ -329,7 +329,7 @@ impl<'a> ArithmeticEvaluator<'a> {
} }
// integer division rounding function -- 9.1.3.1. // integer division rounding function -- 9.1.3.1.
pub fn rnd_i<'a>(n: &'a Number) -> RefOrOwned<'a, Number> { pub(crate) fn rnd_i<'a>(n: &'a Number) -> RefOrOwned<'a, Number> {
match n { match n {
&Number::Integer(_) => RefOrOwned::Borrowed(n), &Number::Integer(_) => RefOrOwned::Borrowed(n),
&Number::Float(OrderedFloat(f)) => RefOrOwned::Owned(Number::from( &Number::Float(OrderedFloat(f)) => RefOrOwned::Owned(Number::from(
@@ -347,7 +347,7 @@ pub fn rnd_i<'a>(n: &'a Number) -> RefOrOwned<'a, Number> {
} }
// floating point rounding function -- 9.1.4.1. // floating point rounding function -- 9.1.4.1.
pub fn rnd_f(n: &Number) -> f64 { pub(crate) fn rnd_f(n: &Number) -> f64 {
match n { match n {
&Number::Fixnum(n) => n as f64, &Number::Fixnum(n) => n as f64,
&Number::Integer(ref n) => n.to_f64(), &Number::Integer(ref n) => n.to_f64(),
@@ -357,7 +357,7 @@ pub fn rnd_f(n: &Number) -> f64 {
} }
// floating point result function -- 9.1.4.2. // floating point result function -- 9.1.4.2.
pub fn result_f<Round>(n: &Number, round: Round) -> Result<f64, EvalError> pub(crate) fn result_f<Round>(n: &Number, round: Round) -> Result<f64, EvalError>
where where
Round: Fn(&Number) -> f64, Round: Fn(&Number) -> f64,
{ {
@@ -752,7 +752,7 @@ impl<'a> From<&'a Integer> for Number {
} }
// Computes n ^ power. Ignores the sign of power. // Computes n ^ power. Ignores the sign of power.
pub fn binary_pow(mut n: Integer, power: &Integer) -> Integer { pub(crate) fn binary_pow(mut n: Integer, power: &Integer) -> Integer {
let mut power = Integer::from(power.abs_ref()); let mut power = Integer::from(power.abs_ref());
if power == 0 { if power == 0 {

11
src/bin/scryer-prolog.rs Normal file
View File

@@ -0,0 +1,11 @@
fn main() {
use nix::sys::signal;
use scryer_prolog::read::readline;
use scryer_prolog::*;
let handler = signal::SigHandler::Handler(handle_sigint);
unsafe { signal::signal(signal::Signal::SIGINT, handler) }.unwrap();
let mut wam = machine::Machine::new(readline::input_stream(), machine::Stream::stdout());
wam.run_top_level();
}

View File

@@ -10,7 +10,7 @@ use ref_thread_local::{ref_thread_local, RefThreadLocal};
use std::collections::BTreeMap; use std::collections::BTreeMap;
#[derive(Debug, Clone, Copy, Eq, PartialEq)] #[derive(Debug, Clone, Copy, Eq, PartialEq)]
pub enum CompareNumberQT { pub(crate) enum CompareNumberQT {
GreaterThan, GreaterThan,
LessThan, LessThan,
GreaterThanOrEqual, GreaterThanOrEqual,
@@ -33,7 +33,7 @@ impl CompareNumberQT {
} }
#[derive(Debug, Clone, Copy, PartialEq, Eq)] #[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum CompareTermQT { pub(crate) enum CompareTermQT {
LessThan, LessThan,
LessThanOrEqual, LessThanOrEqual,
GreaterThanOrEqual, GreaterThanOrEqual,
@@ -52,14 +52,14 @@ impl CompareTermQT {
} }
#[derive(Debug, Clone, PartialEq, Eq)] #[derive(Debug, Clone, PartialEq, Eq)]
pub enum ArithmeticTerm { pub(crate) enum ArithmeticTerm {
Reg(RegType), Reg(RegType),
Interm(usize), Interm(usize),
Number(Number), Number(Number),
} }
impl ArithmeticTerm { impl ArithmeticTerm {
pub fn interm_or(&self, interm: usize) -> usize { pub(crate) fn interm_or(&self, interm: usize) -> usize {
if let &ArithmeticTerm::Interm(interm) = self { if let &ArithmeticTerm::Interm(interm) = self {
interm interm
} else { } else {
@@ -69,7 +69,7 @@ impl ArithmeticTerm {
} }
#[derive(Debug, Clone, Eq, PartialEq)] #[derive(Debug, Clone, Eq, PartialEq)]
pub enum InlinedClauseType { pub(crate) enum InlinedClauseType {
CompareNumber(CompareNumberQT, ArithmeticTerm, ArithmeticTerm), CompareNumber(CompareNumberQT, ArithmeticTerm, ArithmeticTerm),
IsAtom(RegType), IsAtom(RegType),
IsAtomic(RegType), IsAtomic(RegType),
@@ -83,11 +83,11 @@ pub enum InlinedClauseType {
} }
ref_thread_local! { ref_thread_local! {
pub static managed RANDOM_STATE: RandState<'static> = RandState::new(); pub(crate)static managed RANDOM_STATE: RandState<'static> = RandState::new();
} }
ref_thread_local! { ref_thread_local! {
pub static managed CLAUSE_TYPE_FORMS: BTreeMap<(&'static str, usize), ClauseType> = { pub(crate)static managed CLAUSE_TYPE_FORMS: BTreeMap<(&'static str, usize), ClauseType> = {
let mut m = BTreeMap::new(); let mut m = BTreeMap::new();
let r1 = temp_v!(1); let r1 = temp_v!(1);
@@ -133,7 +133,7 @@ ref_thread_local! {
} }
impl InlinedClauseType { impl InlinedClauseType {
pub fn name(&self) -> &'static str { pub(crate) fn name(&self) -> &'static str {
match self { match self {
&InlinedClauseType::CompareNumber(qt, ..) => qt.name(), &InlinedClauseType::CompareNumber(qt, ..) => qt.name(),
&InlinedClauseType::IsAtom(..) => "atom", &InlinedClauseType::IsAtom(..) => "atom",
@@ -150,7 +150,7 @@ impl InlinedClauseType {
} }
#[derive(Debug, Copy, Clone, Eq, PartialEq)] #[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub enum SystemClauseType { pub(crate) enum SystemClauseType {
AtomChars, AtomChars,
AtomCodes, AtomCodes,
AtomLength, AtomLength,
@@ -311,7 +311,7 @@ pub enum SystemClauseType {
} }
impl SystemClauseType { impl SystemClauseType {
pub fn name(&self) -> ClauseName { pub(crate) fn name(&self) -> ClauseName {
match self { match self {
&SystemClauseType::AtomChars => clause_name!("$atom_chars"), &SystemClauseType::AtomChars => clause_name!("$atom_chars"),
&SystemClauseType::AtomCodes => clause_name!("$atom_codes"), &SystemClauseType::AtomCodes => clause_name!("$atom_codes"),
@@ -596,7 +596,7 @@ impl SystemClauseType {
} }
} }
pub fn from(name: &str, arity: usize) -> Option<SystemClauseType> { pub(crate) fn from(name: &str, arity: usize) -> Option<SystemClauseType> {
match (name, arity) { match (name, arity) {
("$abolish_clause", 3) => Some(SystemClauseType::REPL(REPLCodePtr::AbolishClause)), ("$abolish_clause", 3) => Some(SystemClauseType::REPL(REPLCodePtr::AbolishClause)),
("$add_dynamic_predicate", 4) => { ("$add_dynamic_predicate", 4) => {
@@ -605,9 +605,9 @@ impl SystemClauseType {
("$add_multifile_predicate", 4) => { ("$add_multifile_predicate", 4) => {
Some(SystemClauseType::REPL(REPLCodePtr::AddMultifilePredicate)) Some(SystemClauseType::REPL(REPLCodePtr::AddMultifilePredicate))
} }
("$add_discontiguous_predicate", 4) => { ("$add_discontiguous_predicate", 4) => Some(SystemClauseType::REPL(
Some(SystemClauseType::REPL(REPLCodePtr::AddDiscontiguousPredicate)) REPLCodePtr::AddDiscontiguousPredicate,
} )),
("$add_goal_expansion_clause", 3) => { ("$add_goal_expansion_clause", 3) => {
Some(SystemClauseType::REPL(REPLCodePtr::AddGoalExpansionClause)) Some(SystemClauseType::REPL(REPLCodePtr::AddGoalExpansionClause))
} }
@@ -766,18 +766,16 @@ impl SystemClauseType {
("$asserta", 5) => Some(SystemClauseType::REPL(REPLCodePtr::Asserta)), ("$asserta", 5) => Some(SystemClauseType::REPL(REPLCodePtr::Asserta)),
("$assertz", 5) => Some(SystemClauseType::REPL(REPLCodePtr::Assertz)), ("$assertz", 5) => Some(SystemClauseType::REPL(REPLCodePtr::Assertz)),
("$retract_clause", 4) => Some(SystemClauseType::REPL(REPLCodePtr::Retract)), ("$retract_clause", 4) => Some(SystemClauseType::REPL(REPLCodePtr::Retract)),
("$is_consistent_with_term_queue", 4) => { ("$is_consistent_with_term_queue", 4) => Some(SystemClauseType::REPL(
Some(SystemClauseType::REPL(REPLCodePtr::IsConsistentWithTermQueue)) REPLCodePtr::IsConsistentWithTermQueue,
} )),
("$flush_term_queue", 1) => { ("$flush_term_queue", 1) => Some(SystemClauseType::REPL(REPLCodePtr::FlushTermQueue)),
Some(SystemClauseType::REPL(REPLCodePtr::FlushTermQueue))
}
("$remove_module_exports", 2) => { ("$remove_module_exports", 2) => {
Some(SystemClauseType::REPL(REPLCodePtr::RemoveModuleExports)) Some(SystemClauseType::REPL(REPLCodePtr::RemoveModuleExports))
} }
("$add_non_counted_backtracking", 3) => { ("$add_non_counted_backtracking", 3) => Some(SystemClauseType::REPL(
Some(SystemClauseType::REPL(REPLCodePtr::AddNonCountedBacktracking)) REPLCodePtr::AddNonCountedBacktracking,
} )),
("$variant", 2) => Some(SystemClauseType::Variant), ("$variant", 2) => Some(SystemClauseType::Variant),
("$wam_instructions", 4) => Some(SystemClauseType::WAMInstructions), ("$wam_instructions", 4) => Some(SystemClauseType::WAMInstructions),
("$write_term", 7) => Some(SystemClauseType::WriteTerm), ("$write_term", 7) => Some(SystemClauseType::WriteTerm),
@@ -848,7 +846,7 @@ impl SystemClauseType {
} }
#[derive(Debug, Clone, Eq, PartialEq)] #[derive(Debug, Clone, Eq, PartialEq)]
pub enum BuiltInClauseType { pub(crate) enum BuiltInClauseType {
AcyclicTerm, AcyclicTerm,
Arg, Arg,
Compare, Compare,
@@ -866,7 +864,7 @@ pub enum BuiltInClauseType {
} }
#[derive(Debug, Clone, PartialEq, Eq)] #[derive(Debug, Clone, PartialEq, Eq)]
pub enum ClauseType { pub(crate) enum ClauseType {
BuiltIn(BuiltInClauseType), BuiltIn(BuiltInClauseType),
CallN, CallN,
Inlined(InlinedClauseType), Inlined(InlinedClauseType),
@@ -876,7 +874,7 @@ pub enum ClauseType {
} }
impl BuiltInClauseType { impl BuiltInClauseType {
pub fn name(&self) -> ClauseName { pub(crate) fn name(&self) -> ClauseName {
match self { match self {
&BuiltInClauseType::AcyclicTerm => clause_name!("acyclic_term"), &BuiltInClauseType::AcyclicTerm => clause_name!("acyclic_term"),
&BuiltInClauseType::Arg => clause_name!("arg"), &BuiltInClauseType::Arg => clause_name!("arg"),
@@ -895,7 +893,7 @@ impl BuiltInClauseType {
} }
} }
pub fn arity(&self) -> usize { pub(crate) fn arity(&self) -> usize {
match self { match self {
&BuiltInClauseType::AcyclicTerm => 1, &BuiltInClauseType::AcyclicTerm => 1,
&BuiltInClauseType::Arg => 3, &BuiltInClauseType::Arg => 3,
@@ -916,7 +914,7 @@ impl BuiltInClauseType {
} }
impl ClauseType { impl ClauseType {
pub fn spec(&self) -> Option<SharedOpDesc> { pub(crate) fn spec(&self) -> Option<SharedOpDesc> {
match self { match self {
&ClauseType::Op(_, ref spec, _) => Some(spec.clone()), &ClauseType::Op(_, ref spec, _) => Some(spec.clone()),
&ClauseType::Inlined(InlinedClauseType::CompareNumber(..)) &ClauseType::Inlined(InlinedClauseType::CompareNumber(..))
@@ -928,7 +926,7 @@ impl ClauseType {
} }
} }
pub fn name(&self) -> ClauseName { pub(crate) fn name(&self) -> ClauseName {
match self { match self {
&ClauseType::BuiltIn(ref built_in) => built_in.name(), &ClauseType::BuiltIn(ref built_in) => built_in.name(),
&ClauseType::CallN => clause_name!("$call"), &ClauseType::CallN => clause_name!("$call"),
@@ -939,7 +937,7 @@ impl ClauseType {
} }
} }
pub fn from(name: ClauseName, arity: usize, spec: Option<SharedOpDesc>) -> Self { pub(crate) fn from(name: ClauseName, arity: usize, spec: Option<SharedOpDesc>) -> Self {
CLAUSE_TYPE_FORMS CLAUSE_TYPE_FORMS
.borrow() .borrow()
.get(&(name.as_str(), arity)) .get(&(name.as_str(), arity))

View File

@@ -22,10 +22,10 @@ use std::collections::VecDeque;
use std::rc::Rc; use std::rc::Rc;
#[derive(Debug)] #[derive(Debug)]
pub struct ConjunctInfo<'a> { pub(crate) struct ConjunctInfo<'a> {
pub perm_vs: VariableFixtures<'a>, pub(crate) perm_vs: VariableFixtures<'a>,
pub num_of_chunks: usize, pub(crate) num_of_chunks: usize,
pub has_deep_cut: bool, pub(crate) has_deep_cut: bool,
} }
impl<'a> ConjunctInfo<'a> { impl<'a> ConjunctInfo<'a> {
@@ -90,7 +90,7 @@ impl<'a> ConjunctInfo<'a> {
} }
#[derive(Clone, Copy, Debug)] #[derive(Clone, Copy, Debug)]
pub struct CodeGenSettings { pub(crate) struct CodeGenSettings {
pub global_clock_tick: Option<usize>, pub global_clock_tick: Option<usize>,
pub is_extensible: bool, pub is_extensible: bool,
pub non_counted_bt: bool, pub non_counted_bt: bool,
@@ -98,12 +98,12 @@ pub struct CodeGenSettings {
impl CodeGenSettings { impl CodeGenSettings {
#[inline] #[inline]
pub fn is_dynamic(&self) -> bool { pub(crate) fn is_dynamic(&self) -> bool {
self.global_clock_tick.is_some() self.global_clock_tick.is_some()
} }
#[inline] #[inline]
pub fn internal_try_me_else(&self, offset: usize) -> ChoiceInstruction { pub(crate) fn internal_try_me_else(&self, offset: usize) -> ChoiceInstruction {
if let Some(global_clock_time) = self.global_clock_tick { if let Some(global_clock_time) = self.global_clock_tick {
ChoiceInstruction::DynamicInternalElse( ChoiceInstruction::DynamicInternalElse(
global_clock_time, global_clock_time,
@@ -115,7 +115,7 @@ impl CodeGenSettings {
} }
} }
pub fn try_me_else(&self, offset: usize) -> ChoiceInstruction { pub(crate) fn try_me_else(&self, offset: usize) -> ChoiceInstruction {
if let Some(global_clock_tick) = self.global_clock_tick { if let Some(global_clock_tick) = self.global_clock_tick {
ChoiceInstruction::DynamicElse( ChoiceInstruction::DynamicElse(
global_clock_tick, global_clock_tick,
@@ -127,7 +127,7 @@ impl CodeGenSettings {
} }
} }
pub fn internal_retry_me_else(&self, offset: usize) -> ChoiceInstruction { pub(crate) fn internal_retry_me_else(&self, offset: usize) -> ChoiceInstruction {
if let Some(global_clock_tick) = self.global_clock_tick { if let Some(global_clock_tick) = self.global_clock_tick {
ChoiceInstruction::DynamicInternalElse( ChoiceInstruction::DynamicInternalElse(
global_clock_tick, global_clock_tick,
@@ -139,7 +139,7 @@ impl CodeGenSettings {
} }
} }
pub fn retry_me_else(&self, offset: usize) -> ChoiceInstruction { pub(crate) fn retry_me_else(&self, offset: usize) -> ChoiceInstruction {
if let Some(global_clock_tick) = self.global_clock_tick { if let Some(global_clock_tick) = self.global_clock_tick {
ChoiceInstruction::DynamicElse( ChoiceInstruction::DynamicElse(
global_clock_tick, global_clock_tick,
@@ -153,7 +153,7 @@ impl CodeGenSettings {
} }
} }
pub fn internal_trust_me(&self) -> ChoiceInstruction { pub(crate) fn internal_trust_me(&self) -> ChoiceInstruction {
if let Some(global_clock_tick) = self.global_clock_tick { if let Some(global_clock_tick) = self.global_clock_tick {
ChoiceInstruction::DynamicInternalElse( ChoiceInstruction::DynamicInternalElse(
global_clock_tick, global_clock_tick,
@@ -167,7 +167,7 @@ impl CodeGenSettings {
} }
} }
pub fn trust_me(&self) -> ChoiceInstruction { pub(crate) fn trust_me(&self) -> ChoiceInstruction {
if let Some(global_clock_tick) = self.global_clock_tick { if let Some(global_clock_tick) = self.global_clock_tick {
ChoiceInstruction::DynamicElse( ChoiceInstruction::DynamicElse(
global_clock_tick, global_clock_tick,
@@ -183,18 +183,18 @@ impl CodeGenSettings {
} }
#[derive(Debug)] #[derive(Debug)]
pub struct CodeGenerator<TermMarker> { pub(crate) struct CodeGenerator<TermMarker> {
atom_tbl: TabledData<Atom>, atom_tbl: TabledData<Atom>,
marker: TermMarker, marker: TermMarker,
pub var_count: IndexMap<Rc<Var>, usize>, pub(crate) var_count: IndexMap<Rc<Var>, usize>,
settings: CodeGenSettings, settings: CodeGenSettings,
pub skeleton: PredicateSkeleton, pub(crate) skeleton: PredicateSkeleton,
pub jmp_by_locs: Vec<usize>, pub(crate) jmp_by_locs: Vec<usize>,
global_jmp_by_locs_offset: usize, global_jmp_by_locs_offset: usize,
} }
impl<'a, TermMarker: Allocator<'a>> CodeGenerator<TermMarker> { impl<'a, TermMarker: Allocator<'a>> CodeGenerator<TermMarker> {
pub fn new(atom_tbl: TabledData<Atom>, settings: CodeGenSettings) -> Self { pub(crate) fn new(atom_tbl: TabledData<Atom>, settings: CodeGenSettings) -> Self {
CodeGenerator { CodeGenerator {
atom_tbl, atom_tbl,
marker: Allocator::new(), marker: Allocator::new(),
@@ -837,7 +837,10 @@ impl<'a, TermMarker: Allocator<'a>> CodeGenerator<TermMarker> {
} }
} }
pub fn compile_rule<'b: 'a>(&mut self, rule: &'b Rule) -> Result<Code, CompilationError> { pub(crate) fn compile_rule<'b: 'a>(
&mut self,
rule: &'b Rule,
) -> Result<Code, CompilationError> {
let iter = ChunkedIterator::from_rule(rule); let iter = ChunkedIterator::from_rule(rule);
let conjunct_info = self.collect_var_data(iter); let conjunct_info = self.collect_var_data(iter);
@@ -894,7 +897,7 @@ impl<'a, TermMarker: Allocator<'a>> CodeGenerator<TermMarker> {
UnsafeVarMarker::from_safe_vars(safe_vars) UnsafeVarMarker::from_safe_vars(safe_vars)
} }
pub fn compile_fact<'b: 'a>(&mut self, term: &'b Term) -> Code { pub(crate) fn compile_fact<'b: 'a>(&mut self, term: &'b Term) -> Code {
self.update_var_count(post_order_iter(term)); self.update_var_count(post_order_iter(term));
let mut vs = VariableFixtures::new(); let mut vs = VariableFixtures::new();
@@ -1119,7 +1122,7 @@ impl<'a, TermMarker: Allocator<'a>> CodeGenerator<TermMarker> {
Ok(Vec::from(code)) Ok(Vec::from(code))
} }
pub fn compile_predicate<'b: 'a>( pub(crate) fn compile_predicate<'b: 'a>(
&mut self, &mut self,
clauses: &'b Vec<PredicateClause>, clauses: &'b Vec<PredicateClause>,
) -> Result<Code, CompilationError> { ) -> Result<Code, CompilationError> {

View File

@@ -14,7 +14,7 @@ use std::collections::BTreeSet;
use std::rc::Rc; use std::rc::Rc;
#[derive(Debug)] #[derive(Debug)]
pub struct DebrayAllocator { pub(crate) struct DebrayAllocator {
bindings: IndexMap<Rc<Var>, VarData>, bindings: IndexMap<Rc<Var>, VarData>,
arg_c: usize, arg_c: usize,
temp_lb: usize, temp_lb: usize,

View File

@@ -14,23 +14,23 @@ use std::vec::Vec;
// labeled with chunk numbers. // labeled with chunk numbers.
#[derive(Debug)] #[derive(Debug)]
pub enum VarStatus { pub(crate) enum VarStatus {
Perm(usize), Perm(usize),
Temp(usize, TempVarData), // Perm(chunk_num) | Temp(chunk_num, _) Temp(usize, TempVarData), // Perm(chunk_num) | Temp(chunk_num, _)
} }
pub type OccurrenceSet = BTreeSet<(GenContext, usize)>; pub(crate) type OccurrenceSet = BTreeSet<(GenContext, usize)>;
// Perm: 0 initially, a stack register once processed. // Perm: 0 initially, a stack register once processed.
// Temp: labeled with chunk_num and temp offset (unassigned if 0). // Temp: labeled with chunk_num and temp offset (unassigned if 0).
#[derive(Debug)] #[derive(Debug)]
pub enum VarData { pub(crate) enum VarData {
Perm(usize), Perm(usize),
Temp(usize, usize, TempVarData), Temp(usize, usize, TempVarData),
} }
impl VarData { impl VarData {
pub fn as_reg_type(&self) -> RegType { pub(crate) fn as_reg_type(&self) -> RegType {
match self { match self {
&VarData::Temp(_, r, _) => RegType::Temp(r), &VarData::Temp(_, r, _) => RegType::Temp(r),
&VarData::Perm(r) => RegType::Perm(r), &VarData::Perm(r) => RegType::Perm(r),
@@ -39,15 +39,15 @@ impl VarData {
} }
#[derive(Debug)] #[derive(Debug)]
pub struct TempVarData { pub(crate) struct TempVarData {
pub last_term_arity: usize, pub(crate) last_term_arity: usize,
pub use_set: OccurrenceSet, pub(crate) use_set: OccurrenceSet,
pub no_use_set: BTreeSet<usize>, pub(crate) no_use_set: BTreeSet<usize>,
pub conflict_set: BTreeSet<usize>, pub(crate) conflict_set: BTreeSet<usize>,
} }
impl TempVarData { impl TempVarData {
pub fn new(last_term_arity: usize) -> Self { pub(crate) fn new(last_term_arity: usize) -> Self {
TempVarData { TempVarData {
last_term_arity: last_term_arity, last_term_arity: last_term_arity,
use_set: BTreeSet::new(), use_set: BTreeSet::new(),
@@ -56,7 +56,7 @@ impl TempVarData {
} }
} }
pub fn uses_reg(&self, reg: usize) -> bool { pub(crate) fn uses_reg(&self, reg: usize) -> bool {
for &(_, nreg) in self.use_set.iter() { for &(_, nreg) in self.use_set.iter() {
if reg == nreg { if reg == nreg {
return true; return true;
@@ -66,7 +66,7 @@ impl TempVarData {
return false; return false;
} }
pub fn populate_conflict_set(&mut self) { pub(crate) fn populate_conflict_set(&mut self) {
if self.last_term_arity > 0 { if self.last_term_arity > 0 {
let arity = self.last_term_arity; let arity = self.last_term_arity;
let mut conflict_set: BTreeSet<usize> = (1..arity).collect(); let mut conflict_set: BTreeSet<usize> = (1..arity).collect();
@@ -83,29 +83,29 @@ impl TempVarData {
type VariableFixture<'a> = (VarStatus, Vec<&'a Cell<VarReg>>); type VariableFixture<'a> = (VarStatus, Vec<&'a Cell<VarReg>>);
#[derive(Debug)] #[derive(Debug)]
pub struct VariableFixtures<'a> { pub(crate) struct VariableFixtures<'a> {
perm_vars: IndexMap<Rc<Var>, VariableFixture<'a>>, perm_vars: IndexMap<Rc<Var>, VariableFixture<'a>>,
last_chunk_temp_vars: IndexSet<Rc<Var>>, last_chunk_temp_vars: IndexSet<Rc<Var>>,
} }
impl<'a> VariableFixtures<'a> { impl<'a> VariableFixtures<'a> {
pub fn new() -> Self { pub(crate) fn new() -> Self {
VariableFixtures { VariableFixtures {
perm_vars: IndexMap::new(), perm_vars: IndexMap::new(),
last_chunk_temp_vars: IndexSet::new(), last_chunk_temp_vars: IndexSet::new(),
} }
} }
pub fn insert(&mut self, var: Rc<Var>, vs: VariableFixture<'a>) { pub(crate) fn insert(&mut self, var: Rc<Var>, vs: VariableFixture<'a>) {
self.perm_vars.insert(var, vs); self.perm_vars.insert(var, vs);
} }
pub fn insert_last_chunk_temp_var(&mut self, var: Rc<Var>) { pub(crate) fn insert_last_chunk_temp_var(&mut self, var: Rc<Var>) {
self.last_chunk_temp_vars.insert(var); self.last_chunk_temp_vars.insert(var);
} }
// computes no_use and conflict sets for all temp vars. // computes no_use and conflict sets for all temp vars.
pub fn populate_restricting_sets(&mut self) { pub(crate) fn populate_restricting_sets(&mut self) {
// three stages: // three stages:
// 1. move the use sets of each variable to a local IndexMap, use_set // 1. move the use sets of each variable to a local IndexMap, use_set
// (iterate mutably, swap mutable refs). // (iterate mutably, swap mutable refs).
@@ -170,7 +170,7 @@ impl<'a> VariableFixtures<'a> {
}; };
} }
pub fn vars_above_threshold(&self, index: usize) -> usize { pub(crate) fn vars_above_threshold(&self, index: usize) -> usize {
let mut var_count = 0; let mut var_count = 0;
for &(ref var_status, _) in self.values() { for &(ref var_status, _) in self.values() {
@@ -184,7 +184,7 @@ impl<'a> VariableFixtures<'a> {
var_count var_count
} }
pub fn mark_vars_in_chunk<I>(&mut self, iter: I, lt_arity: usize, term_loc: GenContext) pub(crate) fn mark_vars_in_chunk<I>(&mut self, iter: I, lt_arity: usize, term_loc: GenContext)
where where
I: Iterator<Item = TermRef<'a>>, I: Iterator<Item = TermRef<'a>>,
{ {
@@ -218,7 +218,7 @@ impl<'a> VariableFixtures<'a> {
} }
} }
pub fn into_iter(self) -> indexmap::map::IntoIter<Rc<Var>, VariableFixture<'a>> { pub(crate) fn into_iter(self) -> indexmap::map::IntoIter<Rc<Var>, VariableFixture<'a>> {
self.perm_vars.into_iter() self.perm_vars.into_iter()
} }
@@ -226,11 +226,11 @@ impl<'a> VariableFixtures<'a> {
self.perm_vars.values() self.perm_vars.values()
} }
pub fn size(&self) -> usize { pub(crate) fn size(&self) -> usize {
self.perm_vars.len() self.perm_vars.len()
} }
pub fn set_perm_vals(&self, has_deep_cuts: bool) { pub(crate) fn set_perm_vals(&self, has_deep_cuts: bool) {
let mut values_vec: Vec<_> = self let mut values_vec: Vec<_> = self
.values() .values()
.filter_map(|ref v| match &v.0 { .filter_map(|ref v| match &v.0 {
@@ -252,27 +252,27 @@ impl<'a> VariableFixtures<'a> {
} }
#[derive(Debug)] #[derive(Debug)]
pub struct UnsafeVarMarker { pub(crate) struct UnsafeVarMarker {
pub unsafe_vars: IndexMap<RegType, usize>, pub(crate) unsafe_vars: IndexMap<RegType, usize>,
pub safe_vars: IndexSet<RegType>, pub(crate) safe_vars: IndexSet<RegType>,
} }
impl UnsafeVarMarker { impl UnsafeVarMarker {
pub fn new() -> Self { pub(crate) fn new() -> Self {
UnsafeVarMarker { UnsafeVarMarker {
unsafe_vars: IndexMap::new(), unsafe_vars: IndexMap::new(),
safe_vars: IndexSet::new(), safe_vars: IndexSet::new(),
} }
} }
pub fn from_safe_vars(safe_vars: IndexSet<RegType>) -> Self { pub(crate) fn from_safe_vars(safe_vars: IndexSet<RegType>) -> Self {
UnsafeVarMarker { UnsafeVarMarker {
unsafe_vars: IndexMap::new(), unsafe_vars: IndexMap::new(),
safe_vars, safe_vars,
} }
} }
pub fn mark_safe_vars(&mut self, query_instr: &QueryInstruction) -> bool { pub(crate) fn mark_safe_vars(&mut self, query_instr: &QueryInstruction) -> bool {
match query_instr { match query_instr {
&QueryInstruction::PutVariable(r @ RegType::Temp(_), _) &QueryInstruction::PutVariable(r @ RegType::Temp(_), _)
| &QueryInstruction::SetVariable(r) => { | &QueryInstruction::SetVariable(r) => {
@@ -283,7 +283,7 @@ impl UnsafeVarMarker {
} }
} }
pub fn mark_phase(&mut self, query_instr: &QueryInstruction, phase: usize) { pub(crate) fn mark_phase(&mut self, query_instr: &QueryInstruction, phase: usize) {
match query_instr { match query_instr {
&QueryInstruction::PutValue(r @ RegType::Perm(_), _) &QueryInstruction::PutValue(r @ RegType::Perm(_), _)
| &QueryInstruction::SetValue(r) => { | &QueryInstruction::SetValue(r) => {
@@ -294,7 +294,7 @@ impl UnsafeVarMarker {
} }
} }
pub fn mark_unsafe_vars(&mut self, query_instr: &mut QueryInstruction, phase: usize) { pub(crate) fn mark_unsafe_vars(&mut self, query_instr: &mut QueryInstruction, phase: usize) {
match query_instr { match query_instr {
&mut QueryInstruction::PutValue(RegType::Perm(i), arg) => { &mut QueryInstruction::PutValue(RegType::Perm(i), arg) => {
if let Some(p) = self.unsafe_vars.swap_remove(&RegType::Perm(i)) { if let Some(p) = self.unsafe_vars.swap_remove(&RegType::Perm(i)) {

View File

@@ -18,16 +18,16 @@ use std::ops::AddAssign;
use std::path::PathBuf; use std::path::PathBuf;
use std::rc::Rc; use std::rc::Rc;
pub type PredicateKey = (ClauseName, usize); // name, arity. pub(crate) type PredicateKey = (ClauseName, usize); // name, arity.
pub type Predicate = Vec<PredicateClause>; pub(crate) type Predicate = Vec<PredicateClause>;
// vars of predicate, toplevel offset. Vec<Term> is always a vector // vars of predicate, toplevel offset. Vec<Term> is always a vector
// of vars (we get their adjoining cells this way). // of vars (we get their adjoining cells this way).
pub type JumpStub = Vec<Term>; pub(crate) type JumpStub = Vec<Term>;
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub enum TopLevel { pub(crate) enum TopLevel {
Fact(Term), // Term, line_num, col_num Fact(Term), // Term, line_num, col_num
Predicate(Predicate), Predicate(Predicate),
Query(Vec<QueryTerm>), Query(Vec<QueryTerm>),
@@ -35,14 +35,14 @@ pub enum TopLevel {
} }
#[derive(Debug, Clone, Copy)] #[derive(Debug, Clone, Copy)]
pub enum AppendOrPrepend { pub(crate) enum AppendOrPrepend {
Append, Append,
Prepend, Prepend,
} }
impl AppendOrPrepend { impl AppendOrPrepend {
#[inline] #[inline]
pub fn is_append(self) -> bool { pub(crate) fn is_append(self) -> bool {
match self { match self {
AppendOrPrepend::Append => true, AppendOrPrepend::Append => true,
AppendOrPrepend::Prepend => false, AppendOrPrepend::Prepend => false,
@@ -51,14 +51,14 @@ impl AppendOrPrepend {
} }
#[derive(Debug, Clone, Copy)] #[derive(Debug, Clone, Copy)]
pub enum Level { pub(crate) enum Level {
Deep, Deep,
Root, Root,
Shallow, Shallow,
} }
impl Level { impl Level {
pub fn child_level(self) -> Level { pub(crate) fn child_level(self) -> Level {
match self { match self {
Level::Root => Level::Shallow, Level::Root => Level::Shallow,
_ => Level::Deep, _ => Level::Deep,
@@ -67,7 +67,7 @@ impl Level {
} }
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub enum QueryTerm { pub(crate) enum QueryTerm {
// register, clause type, subterms, use default call policy. // register, clause type, subterms, use default call policy.
Clause(Cell<RegType>, ClauseType, Vec<Box<Term>>, bool), Clause(Cell<RegType>, ClauseType, Vec<Box<Term>>, bool),
BlockedCut, // a cut which is 'blocked by letters', like the P term in P -> Q. BlockedCut, // a cut which is 'blocked by letters', like the P term in P -> Q.
@@ -77,14 +77,14 @@ pub enum QueryTerm {
} }
impl QueryTerm { impl QueryTerm {
pub fn set_default_caller(&mut self) { pub(crate) fn set_default_caller(&mut self) {
match self { match self {
&mut QueryTerm::Clause(_, _, _, ref mut use_default_cp) => *use_default_cp = true, &mut QueryTerm::Clause(_, _, _, ref mut use_default_cp) => *use_default_cp = true,
_ => {} _ => {}
} }
} }
pub fn arity(&self) -> usize { pub(crate) fn arity(&self) -> usize {
match self { match self {
&QueryTerm::Clause(_, _, ref subterms, ..) => subterms.len(), &QueryTerm::Clause(_, _, ref subterms, ..) => subterms.len(),
&QueryTerm::BlockedCut | &QueryTerm::UnblockedCut(..) => 0, &QueryTerm::BlockedCut | &QueryTerm::UnblockedCut(..) => 0,
@@ -95,28 +95,30 @@ impl QueryTerm {
} }
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub struct Rule { pub(crate) struct Rule {
pub head: (ClauseName, Vec<Box<Term>>, QueryTerm), pub(crate) head: (ClauseName, Vec<Box<Term>>, QueryTerm),
pub clauses: Vec<QueryTerm>, pub(crate) clauses: Vec<QueryTerm>,
} }
#[derive(Clone, Debug, Hash)] #[derive(Clone, Debug, Hash)]
pub enum ListingSource { pub(crate) enum ListingSource {
DynamicallyGenerated, DynamicallyGenerated,
File(ClauseName, PathBuf), // filename, path File(ClauseName, PathBuf), // filename, path
User, User,
} }
impl ListingSource { impl ListingSource {
pub fn from_file_and_path(filename: ClauseName, path_buf: PathBuf) -> Self { pub(crate) fn from_file_and_path(filename: ClauseName, path_buf: PathBuf) -> Self {
ListingSource::File(filename, path_buf) ListingSource::File(filename, path_buf)
} }
} }
pub trait ClauseInfo { pub(crate) trait ClauseInfo {
fn is_consistent(&self, clauses: &PredicateQueue) -> bool { fn is_consistent(&self, clauses: &PredicateQueue) -> bool {
match clauses.first() { match clauses.first() {
Some(cl) => self.name() == ClauseInfo::name(cl) && self.arity() == ClauseInfo::arity(cl), Some(cl) => {
self.name() == ClauseInfo::name(cl) && self.arity() == ClauseInfo::arity(cl)
}
None => true, None => true,
} }
} }
@@ -198,17 +200,17 @@ impl ClauseInfo for PredicateClause {
} }
} }
// pub type CompiledResult = (Predicate, VecDeque<TopLevel>); // pub(crate) type CompiledResult = (Predicate, VecDeque<TopLevel>);
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub enum PredicateClause { pub(crate) enum PredicateClause {
Fact(Term), Fact(Term),
Rule(Rule), Rule(Rule),
} }
impl PredicateClause { impl PredicateClause {
// TODO: add this to `Term` in `prolog_parser` like `first_arg`. // TODO: add this to `Term` in `prolog_parser` like `first_arg`.
pub fn args(&self) -> Option<&[Box<Term>]> { pub(crate) fn args(&self) -> Option<&[Box<Term>]> {
match *self { match *self {
PredicateClause::Fact(ref term, ..) => match term { PredicateClause::Fact(ref term, ..) => match term {
Term::Clause(_, _, args, _) => Some(&args), Term::Clause(_, _, args, _) => Some(&args),
@@ -226,13 +228,13 @@ impl PredicateClause {
} }
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub enum ModuleSource { pub(crate) enum ModuleSource {
Library(ClauseName), Library(ClauseName),
File(ClauseName), File(ClauseName),
} }
impl ModuleSource { impl ModuleSource {
pub fn as_functor_stub(&self) -> MachineStub { pub(crate) fn as_functor_stub(&self) -> MachineStub {
match self { match self {
ModuleSource::Library(ref name) => { ModuleSource::Library(ref name) => {
functor!("library", [clause_name(name.clone())]) functor!("library", [clause_name(name.clone())])
@@ -244,18 +246,18 @@ impl ModuleSource {
} }
} }
// pub type ScopedPredicateKey = (ClauseName, PredicateKey); // module name, predicate indicator. // pub(crate) type ScopedPredicateKey = (ClauseName, PredicateKey); // module name, predicate indicator.
/* /*
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub enum MultiFileIndicator { pub(crate) enum MultiFileIndicator {
LocalScoped(ClauseName, usize), // name, arity LocalScoped(ClauseName, usize), // name, arity
ModuleScoped(ScopedPredicateKey), ModuleScoped(ScopedPredicateKey),
} }
*/ */
#[derive(Clone, Copy, Hash, Debug)] #[derive(Clone, Copy, Hash, Debug)]
pub enum MetaSpec { pub(crate) enum MetaSpec {
Minus, Minus,
Plus, Plus,
Either, Either,
@@ -263,7 +265,7 @@ pub enum MetaSpec {
} }
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub enum Declaration { pub(crate) enum Declaration {
Dynamic(ClauseName, usize), Dynamic(ClauseName, usize),
MetaPredicate(ClauseName, ClauseName, Vec<MetaSpec>), // module name, name, meta-specs MetaPredicate(ClauseName, ClauseName, Vec<MetaSpec>), // module name, name, meta-specs
Module(ModuleDecl), Module(ModuleDecl),
@@ -274,20 +276,20 @@ pub enum Declaration {
} }
#[derive(Debug, Clone, Eq, Hash, PartialEq, Ord, PartialOrd)] #[derive(Debug, Clone, Eq, Hash, PartialEq, Ord, PartialOrd)]
pub struct OpDecl { pub(crate) struct OpDecl {
pub prec: usize, pub(crate) prec: usize,
pub spec: Specifier, pub(crate) spec: Specifier,
pub name: ClauseName, pub(crate) name: ClauseName,
} }
impl OpDecl { impl OpDecl {
#[inline] #[inline]
pub fn new(prec: usize, spec: Specifier, name: ClauseName) -> Self { pub(crate) fn new(prec: usize, spec: Specifier, name: ClauseName) -> Self {
Self { prec, spec, name } Self { prec, spec, name }
} }
#[inline] #[inline]
pub fn remove(&mut self, op_dir: &mut OpDir) { pub(crate) fn remove(&mut self, op_dir: &mut OpDir) {
let prec = self.prec; let prec = self.prec;
self.prec = 0; self.prec = 0;
@@ -296,7 +298,7 @@ impl OpDecl {
} }
#[inline] #[inline]
pub fn fixity(&self) -> Fixity { pub(crate) fn fixity(&self) -> Fixity {
match self.spec { match self.spec {
XFY | XFX | YFX => Fixity::In, XFY | XFX | YFX => Fixity::In,
XF | YF => Fixity::Post, XF | YF => Fixity::Post,
@@ -305,7 +307,7 @@ impl OpDecl {
} }
} }
pub fn insert_into_op_dir(&self, op_dir: &mut OpDir) -> Option<(usize, Specifier)> { pub(crate) fn insert_into_op_dir(&self, op_dir: &mut OpDir) -> Option<(usize, Specifier)> {
let key = (self.name.clone(), self.fixity()); let key = (self.name.clone(), self.fixity());
match op_dir.get(&key) { match op_dir.get(&key) {
@@ -320,7 +322,7 @@ impl OpDecl {
.map(|op_dir_value| op_dir_value.shared_op_desc().get()) .map(|op_dir_value| op_dir_value.shared_op_desc().get())
} }
pub fn submit( pub(crate) fn submit(
&self, &self,
existing_desc: Option<OpDesc>, existing_desc: Option<OpDesc>,
op_dir: &mut OpDir, op_dir: &mut OpDir,
@@ -348,7 +350,7 @@ impl OpDecl {
} }
} }
pub fn fetch_atom_op_spec( pub(crate) fn fetch_atom_op_spec(
name: ClauseName, name: ClauseName,
spec: Option<SharedOpDesc>, spec: Option<SharedOpDesc>,
op_dir: &OpDir, op_dir: &OpDir,
@@ -357,7 +359,7 @@ pub fn fetch_atom_op_spec(
.or_else(|| fetch_op_spec_from_existing(name, 2, spec, op_dir)) .or_else(|| fetch_op_spec_from_existing(name, 2, spec, op_dir))
} }
pub fn fetch_op_spec_from_existing( pub(crate) fn fetch_op_spec_from_existing(
name: ClauseName, name: ClauseName,
arity: usize, arity: usize,
spec: Option<SharedOpDesc>, spec: Option<SharedOpDesc>,
@@ -375,7 +377,11 @@ pub fn fetch_op_spec_from_existing(
spec.or_else(|| fetch_op_spec(name, arity, op_dir)) spec.or_else(|| fetch_op_spec(name, arity, op_dir))
} }
pub fn fetch_op_spec(name: ClauseName, arity: usize, op_dir: &OpDir) -> Option<SharedOpDesc> { pub(crate) fn fetch_op_spec(
name: ClauseName,
arity: usize,
op_dir: &OpDir,
) -> Option<SharedOpDesc> {
match arity { match arity {
2 => op_dir 2 => op_dir
.get(&(name, Fixity::In)) .get(&(name, Fixity::In))
@@ -407,35 +413,35 @@ pub fn fetch_op_spec(name: ClauseName, arity: usize, op_dir: &OpDir) -> Option<S
} }
} }
pub type ModuleDir = IndexMap<ClauseName, Module>; pub(crate) type ModuleDir = IndexMap<ClauseName, Module>;
#[derive(Debug, Clone, Eq, Hash, PartialEq)] #[derive(Debug, Clone, Eq, Hash, PartialEq)]
pub enum ModuleExport { pub(crate) enum ModuleExport {
OpDecl(OpDecl), OpDecl(OpDecl),
PredicateKey(PredicateKey), PredicateKey(PredicateKey),
} }
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub struct ModuleDecl { pub(crate) struct ModuleDecl {
pub name: ClauseName, pub(crate) name: ClauseName,
pub exports: Vec<ModuleExport>, pub(crate) exports: Vec<ModuleExport>,
} }
#[derive(Debug)] #[derive(Debug)]
pub struct Module { pub(crate) struct Module {
pub module_decl: ModuleDecl, pub(crate) module_decl: ModuleDecl,
pub code_dir: CodeDir, pub(crate) code_dir: CodeDir,
pub op_dir: OpDir, pub(crate) op_dir: OpDir,
pub meta_predicates: MetaPredicateDir, pub(crate) meta_predicates: MetaPredicateDir,
pub extensible_predicates: ExtensiblePredicates, pub(crate) extensible_predicates: ExtensiblePredicates,
pub local_extensible_predicates: LocalExtensiblePredicates, pub(crate) local_extensible_predicates: LocalExtensiblePredicates,
pub is_impromptu_module: bool, pub(crate) is_impromptu_module: bool,
pub listing_src: ListingSource, pub(crate) listing_src: ListingSource,
} }
// Module's and related types are defined in forms. // Module's and related types are defined in forms.
impl Module { impl Module {
pub fn new(module_decl: ModuleDecl, listing_src: ListingSource) -> Self { pub(crate) fn new(module_decl: ModuleDecl, listing_src: ListingSource) -> Self {
Module { Module {
module_decl, module_decl,
code_dir: CodeDir::new(), code_dir: CodeDir::new(),
@@ -450,7 +456,7 @@ impl Module {
} }
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub enum Number { pub(crate) enum Number {
Float(OrderedFloat<f64>), Float(OrderedFloat<f64>),
Integer(Rc<Integer>), Integer(Rc<Integer>),
Rational(Rc<Rational>), Rational(Rc<Rational>),
@@ -510,7 +516,7 @@ impl Into<HeapCellValue> for Number {
impl Number { impl Number {
#[inline] #[inline]
pub fn is_positive(&self) -> bool { pub(crate) fn is_positive(&self) -> bool {
match self { match self {
&Number::Fixnum(n) => n > 0, &Number::Fixnum(n) => n > 0,
&Number::Integer(ref n) => &**n > &0, &Number::Integer(ref n) => &**n > &0,
@@ -520,7 +526,7 @@ impl Number {
} }
#[inline] #[inline]
pub fn is_negative(&self) -> bool { pub(crate) fn is_negative(&self) -> bool {
match self { match self {
&Number::Fixnum(n) => n < 0, &Number::Fixnum(n) => n < 0,
&Number::Integer(ref n) => &**n < &0, &Number::Integer(ref n) => &**n < &0,
@@ -530,7 +536,7 @@ impl Number {
} }
#[inline] #[inline]
pub fn is_zero(&self) -> bool { pub(crate) fn is_zero(&self) -> bool {
match self { match self {
&Number::Fixnum(n) => n == 0, &Number::Fixnum(n) => n == 0,
&Number::Integer(ref n) => &**n == &0, &Number::Integer(ref n) => &**n == &0,
@@ -540,7 +546,7 @@ impl Number {
} }
#[inline] #[inline]
pub fn abs(self) -> Self { pub(crate) fn abs(self) -> Self {
match self { match self {
Number::Fixnum(n) => { Number::Fixnum(n) => {
if let Some(n) = n.checked_abs() { if let Some(n) = n.checked_abs() {
@@ -557,7 +563,7 @@ impl Number {
} }
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub enum OptArgIndexKey { pub(crate) enum OptArgIndexKey {
Constant(usize, usize, Constant, Vec<Constant>), // index, IndexingCode location, opt arg, alternatives Constant(usize, usize, Constant, Vec<Constant>), // index, IndexingCode location, opt arg, alternatives
List(usize, usize), // index, IndexingCode location List(usize, usize), // index, IndexingCode location
None, None,
@@ -566,12 +572,12 @@ pub enum OptArgIndexKey {
impl OptArgIndexKey { impl OptArgIndexKey {
#[inline] #[inline]
pub fn take(&mut self) -> OptArgIndexKey { pub(crate) fn take(&mut self) -> OptArgIndexKey {
std::mem::replace(self, OptArgIndexKey::None) std::mem::replace(self, OptArgIndexKey::None)
} }
#[inline] #[inline]
pub fn arg_num(&self) -> usize { pub(crate) fn arg_num(&self) -> usize {
match &self { match &self {
OptArgIndexKey::Constant(arg_num, ..) OptArgIndexKey::Constant(arg_num, ..)
| OptArgIndexKey::Structure(arg_num, ..) | OptArgIndexKey::Structure(arg_num, ..)
@@ -584,12 +590,12 @@ impl OptArgIndexKey {
} }
#[inline] #[inline]
pub fn is_some(&self) -> bool { pub(crate) fn is_some(&self) -> bool {
self.switch_on_term_loc().is_some() self.switch_on_term_loc().is_some()
} }
#[inline] #[inline]
pub fn switch_on_term_loc(&self) -> Option<usize> { pub(crate) fn switch_on_term_loc(&self) -> Option<usize> {
match &self { match &self {
OptArgIndexKey::Constant(_, loc, ..) OptArgIndexKey::Constant(_, loc, ..)
| OptArgIndexKey::Structure(_, loc, ..) | OptArgIndexKey::Structure(_, loc, ..)
@@ -599,7 +605,7 @@ impl OptArgIndexKey {
} }
#[inline] #[inline]
pub fn set_switch_on_term_loc(&mut self, value: usize) { pub(crate) fn set_switch_on_term_loc(&mut self, value: usize) {
match self { match self {
OptArgIndexKey::Constant(_, ref mut loc, ..) OptArgIndexKey::Constant(_, ref mut loc, ..)
| OptArgIndexKey::Structure(_, ref mut loc, ..) | OptArgIndexKey::Structure(_, ref mut loc, ..)
@@ -626,14 +632,14 @@ impl AddAssign<usize> for OptArgIndexKey {
} }
#[derive(Clone, Debug)] #[derive(Clone, Debug)]
pub struct ClauseIndexInfo { pub(crate) struct ClauseIndexInfo {
pub clause_start: usize, pub(crate) clause_start: usize,
pub opt_arg_index_key: OptArgIndexKey, pub(crate) opt_arg_index_key: OptArgIndexKey,
} }
impl ClauseIndexInfo { impl ClauseIndexInfo {
#[inline] #[inline]
pub fn new(clause_start: usize) -> Self { pub(crate) fn new(clause_start: usize) -> Self {
Self { Self {
clause_start, clause_start,
opt_arg_index_key: OptArgIndexKey::None, opt_arg_index_key: OptArgIndexKey::None,
@@ -643,12 +649,12 @@ impl ClauseIndexInfo {
} }
#[derive(Clone, Copy, Debug)] #[derive(Clone, Copy, Debug)]
pub struct PredicateInfo { pub(crate) struct PredicateInfo {
pub is_extensible: bool, pub(crate) is_extensible: bool,
pub is_discontiguous: bool, pub(crate) is_discontiguous: bool,
pub is_dynamic: bool, pub(crate) is_dynamic: bool,
pub is_multifile: bool, pub(crate) is_multifile: bool,
pub has_clauses: bool, pub(crate) has_clauses: bool,
} }
impl Default for PredicateInfo { impl Default for PredicateInfo {
@@ -666,30 +672,30 @@ impl Default for PredicateInfo {
impl PredicateInfo { impl PredicateInfo {
#[inline] #[inline]
pub fn compile_incrementally(&self) -> bool { pub(crate) fn compile_incrementally(&self) -> bool {
let base = self.is_extensible && self.has_clauses; let base = self.is_extensible && self.has_clauses;
base && (self.is_discontiguous || self.is_multifile) base && (self.is_discontiguous || self.is_multifile)
} }
#[inline] #[inline]
pub fn must_retract_local_clauses(&self) -> bool { pub(crate) fn must_retract_local_clauses(&self) -> bool {
self.is_extensible && self.has_clauses && !self.is_discontiguous self.is_extensible && self.has_clauses && !self.is_discontiguous
} }
} }
#[derive(Debug)] #[derive(Debug)]
pub struct PredicateSkeleton { pub(crate) struct PredicateSkeleton {
pub is_discontiguous: bool, pub(crate) is_discontiguous: bool,
pub is_dynamic: bool, pub(crate) is_dynamic: bool,
pub is_multifile: bool, pub(crate) is_multifile: bool,
pub clauses: SliceDeque<ClauseIndexInfo>, pub(crate) clauses: SliceDeque<ClauseIndexInfo>,
pub clause_clause_locs: SliceDeque<usize>, pub(crate) clause_clause_locs: SliceDeque<usize>,
pub clause_assert_margin: usize, pub(crate) clause_assert_margin: usize,
} }
impl PredicateSkeleton { impl PredicateSkeleton {
#[inline] #[inline]
pub fn new() -> Self { pub(crate) fn new() -> Self {
PredicateSkeleton { PredicateSkeleton {
is_discontiguous: false, is_discontiguous: false,
is_dynamic: false, is_dynamic: false,
@@ -701,7 +707,7 @@ impl PredicateSkeleton {
} }
#[inline] #[inline]
pub fn predicate_info(&self) -> PredicateInfo { pub(crate) fn predicate_info(&self) -> PredicateInfo {
PredicateInfo { PredicateInfo {
is_extensible: true, is_extensible: true,
is_discontiguous: self.is_discontiguous, is_discontiguous: self.is_discontiguous,
@@ -712,13 +718,13 @@ impl PredicateSkeleton {
} }
#[inline] #[inline]
pub fn reset(&mut self) { pub(crate) fn reset(&mut self) {
self.clauses.clear(); self.clauses.clear();
self.clause_clause_locs.clear(); self.clause_clause_locs.clear();
self.clause_assert_margin = 0; self.clause_assert_margin = 0;
} }
pub fn target_pos_of_clause_clause_loc( pub(crate) fn target_pos_of_clause_clause_loc(
&self, &self,
clause_clause_loc: usize, clause_clause_loc: usize,
) -> Option<usize> { ) -> Option<usize> {
@@ -727,10 +733,10 @@ impl PredicateSkeleton {
match search_result { match search_result {
Ok(loc) => Some(loc), Ok(loc) => Some(loc),
Err(_) => self.clause_clause_locs[self.clause_assert_margin..] Err(_) => self.clause_clause_locs[self.clause_assert_margin..]
.binary_search_by(|loc| loc.cmp(&clause_clause_loc)) .binary_search_by(|loc| loc.cmp(&clause_clause_loc))
.map(|loc| loc + self.clause_assert_margin) .map(|loc| loc + self.clause_assert_margin)
.ok() .ok(),
} }
} }
} }

View File

@@ -8,13 +8,13 @@ use std::ops::Deref;
use std::vec::Vec; use std::vec::Vec;
#[derive(Debug)] #[derive(Debug)]
pub struct HCPreOrderIterator<'a> { pub(crate) struct HCPreOrderIterator<'a> {
pub machine_st: &'a MachineState, pub(crate) machine_st: &'a MachineState,
pub state_stack: Vec<Addr>, pub(crate) state_stack: Vec<Addr>,
} }
impl<'a> HCPreOrderIterator<'a> { impl<'a> HCPreOrderIterator<'a> {
pub fn new(machine_st: &'a MachineState, a: Addr) -> Self { pub(crate) fn new(machine_st: &'a MachineState, a: Addr) -> Self {
HCPreOrderIterator { HCPreOrderIterator {
machine_st, machine_st,
state_stack: vec![a], state_stack: vec![a],
@@ -22,7 +22,7 @@ impl<'a> HCPreOrderIterator<'a> {
} }
#[inline] #[inline]
pub fn machine_st(&self) -> &MachineState { pub(crate) fn machine_st(&self) -> &MachineState {
&self.machine_st &self.machine_st
} }
@@ -116,7 +116,7 @@ impl<'a> Iterator for HCPreOrderIterator<'a> {
} }
} }
pub trait MutStackHCIterator<'b> pub(crate) trait MutStackHCIterator<'b>
where where
Self: Iterator, Self: Iterator,
{ {
@@ -126,7 +126,7 @@ where
} }
#[derive(Debug)] #[derive(Debug)]
pub struct HCPostOrderIterator<'a> { pub(crate) struct HCPostOrderIterator<'a> {
base_iter: HCPreOrderIterator<'a>, base_iter: HCPreOrderIterator<'a>,
parent_stack: Vec<(usize, Addr)>, // number of children, parent node. parent_stack: Vec<(usize, Addr)>, // number of children, parent node.
} }
@@ -140,7 +140,7 @@ impl<'a> Deref for HCPostOrderIterator<'a> {
} }
impl<'a> HCPostOrderIterator<'a> { impl<'a> HCPostOrderIterator<'a> {
pub fn new(base_iter: HCPreOrderIterator<'a>) -> Self { pub(crate) fn new(base_iter: HCPreOrderIterator<'a>) -> Self {
HCPostOrderIterator { HCPostOrderIterator {
base_iter, base_iter,
parent_stack: vec![], parent_stack: vec![],
@@ -201,19 +201,19 @@ impl<'a> Iterator for HCPostOrderIterator<'a> {
} }
impl MachineState { impl MachineState {
pub fn pre_order_iter<'a>(&'a self, a: Addr) -> HCPreOrderIterator<'a> { pub(crate) fn pre_order_iter<'a>(&'a self, a: Addr) -> HCPreOrderIterator<'a> {
HCPreOrderIterator::new(self, a) HCPreOrderIterator::new(self, a)
} }
pub fn post_order_iter<'a>(&'a self, a: Addr) -> HCPostOrderIterator<'a> { pub(crate) fn post_order_iter<'a>(&'a self, a: Addr) -> HCPostOrderIterator<'a> {
HCPostOrderIterator::new(HCPreOrderIterator::new(self, a)) HCPostOrderIterator::new(HCPreOrderIterator::new(self, a))
} }
pub fn acyclic_pre_order_iter<'a>(&'a self, a: Addr) -> HCAcyclicIterator<'a> { pub(crate) fn acyclic_pre_order_iter<'a>(&'a self, a: Addr) -> HCAcyclicIterator<'a> {
HCAcyclicIterator::new(HCPreOrderIterator::new(self, a)) HCAcyclicIterator::new(HCPreOrderIterator::new(self, a))
} }
pub fn zipped_acyclic_pre_order_iter<'a>( pub(crate) fn zipped_acyclic_pre_order_iter<'a>(
&'a self, &'a self,
a1: Addr, a1: Addr,
a2: Addr, a2: Addr,
@@ -234,13 +234,13 @@ impl<'b, 'a: 'b> MutStackHCIterator<'b> for HCPreOrderIterator<'a> {
} }
#[derive(Debug)] #[derive(Debug)]
pub struct HCAcyclicIterator<'a> { pub(crate) struct HCAcyclicIterator<'a> {
iter: HCPreOrderIterator<'a>, iter: HCPreOrderIterator<'a>,
seen: IndexSet<Addr>, seen: IndexSet<Addr>,
} }
impl<'a> HCAcyclicIterator<'a> { impl<'a> HCAcyclicIterator<'a> {
pub fn new(iter: HCPreOrderIterator<'a>) -> Self { pub(crate) fn new(iter: HCPreOrderIterator<'a>) -> Self {
HCAcyclicIterator { HCAcyclicIterator {
iter, iter,
seen: IndexSet::new(), seen: IndexSet::new(),
@@ -282,11 +282,11 @@ impl<'a> Iterator for HCAcyclicIterator<'a> {
} }
#[derive(Debug)] #[derive(Debug)]
pub struct HCZippedAcyclicIterator<'a> { pub(crate) struct HCZippedAcyclicIterator<'a> {
i1: HCPreOrderIterator<'a>, i1: HCPreOrderIterator<'a>,
i2: HCPreOrderIterator<'a>, i2: HCPreOrderIterator<'a>,
seen: IndexSet<(Addr, Addr)>, seen: IndexSet<(Addr, Addr)>,
pub first_to_expire: Ordering, pub(crate) first_to_expire: Ordering,
} }
impl<'b, 'a: 'b> MutStackHCIterator<'b> for HCZippedAcyclicIterator<'a> { impl<'b, 'a: 'b> MutStackHCIterator<'b> for HCZippedAcyclicIterator<'a> {
@@ -298,7 +298,7 @@ impl<'b, 'a: 'b> MutStackHCIterator<'b> for HCZippedAcyclicIterator<'a> {
} }
impl<'a> HCZippedAcyclicIterator<'a> { impl<'a> HCZippedAcyclicIterator<'a> {
pub fn new(i1: HCPreOrderIterator<'a>, i2: HCPreOrderIterator<'a>) -> Self { pub(crate) fn new(i1: HCPreOrderIterator<'a>, i2: HCPreOrderIterator<'a>) -> Self {
HCZippedAcyclicIterator { HCZippedAcyclicIterator {
i1, i1,
i2, i2,

View File

@@ -27,7 +27,7 @@ use std::rc::Rc;
/* contains the location, name, precision and Specifier of the parent op. */ /* contains the location, name, precision and Specifier of the parent op. */
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub enum DirectedOp { pub(crate) enum DirectedOp {
Left(ClauseName, SharedOpDesc), Left(ClauseName, SharedOpDesc),
Right(ClauseName, SharedOpDesc), Right(ClauseName, SharedOpDesc),
} }
@@ -190,7 +190,7 @@ enum TokenOrRedirect {
HeadTailSeparator, HeadTailSeparator,
} }
pub trait HCValueOutputter { pub(crate) trait HCValueOutputter {
type Output; type Output;
fn new() -> Self; fn new() -> Self;
@@ -207,7 +207,7 @@ pub trait HCValueOutputter {
} }
#[derive(Debug)] #[derive(Debug)]
pub struct PrinterOutputter { pub(crate) struct PrinterOutputter {
contents: String, contents: String,
} }
@@ -306,7 +306,7 @@ fn numbervar(n: Integer) -> Var {
} }
impl MachineState { impl MachineState {
pub fn numbervar(&self, offset: &Integer, addr: Addr) -> Option<Var> { pub(crate) fn numbervar(&self, offset: &Integer, addr: Addr) -> Option<Var> {
let addr = self.store(self.deref(addr)); let addr = self.store(self.deref(addr));
match Number::try_from((addr, &self.heap)) { match Number::try_from((addr, &self.heap)) {
@@ -332,7 +332,7 @@ impl MachineState {
type ReverseHeapVarDict = IndexMap<Addr, Rc<Var>>; type ReverseHeapVarDict = IndexMap<Addr, Rc<Var>>;
#[derive(Debug)] #[derive(Debug)]
pub struct HCPrinter<'a, Outputter> { pub(crate) struct HCPrinter<'a, Outputter> {
outputter: Outputter, outputter: Outputter,
machine_st: &'a MachineState, machine_st: &'a MachineState,
op_dir: &'a OpDir, op_dir: &'a OpDir,
@@ -363,7 +363,7 @@ macro_rules! push_space_if_amb {
}; };
} }
pub fn requires_space(atom: &str, op: &str) -> bool { pub(crate) fn requires_space(atom: &str, op: &str) -> bool {
match atom.chars().last() { match atom.chars().last() {
Some(ac) => op Some(ac) => op
.chars() .chars()
@@ -473,7 +473,7 @@ fn functor_location(addr: &Addr) -> Option<usize> {
} }
impl<'a, Outputter: HCValueOutputter> HCPrinter<'a, Outputter> { impl<'a, Outputter: HCValueOutputter> HCPrinter<'a, Outputter> {
pub fn new(machine_st: &'a MachineState, op_dir: &'a OpDir, output: Outputter) -> Self { pub(crate) fn new(machine_st: &'a MachineState, op_dir: &'a OpDir, output: Outputter) -> Self {
HCPrinter { HCPrinter {
outputter: output, outputter: output,
machine_st, machine_st,
@@ -495,7 +495,7 @@ impl<'a, Outputter: HCValueOutputter> HCPrinter<'a, Outputter> {
} }
} }
/* /*
pub fn from_heap_locs( pub(crate) fn from_heap_locs(
machine_st: &'a MachineState, machine_st: &'a MachineState,
op_dir: &'a OpDir, op_dir: &'a OpDir,
output: Outputter, output: Outputter,
@@ -513,13 +513,13 @@ impl<'a, Outputter: HCValueOutputter> HCPrinter<'a, Outputter> {
} }
*/ */
/* /*
pub fn drop_toplevel_spec(&mut self) { pub(crate) fn drop_toplevel_spec(&mut self) {
self.toplevel_spec = None; self.toplevel_spec = None;
} }
*/ */
/* /*
#[inline] #[inline]
pub fn see_all_locs(&mut self) { pub(crate) fn see_all_locs(&mut self) {
for key in self.heap_locs.keys().cloned() { for key in self.heap_locs.keys().cloned() {
self.printed_vars.insert(key); self.printed_vars.insert(key);
} }
@@ -1517,7 +1517,7 @@ impl<'a, Outputter: HCValueOutputter> HCPrinter<'a, Outputter> {
} }
} }
pub fn print(mut self, addr: Addr) -> Outputter { pub(crate) fn print(mut self, addr: Addr) -> Outputter {
let mut iter = self.machine_st.pre_order_iter(addr); let mut iter = self.machine_st.pre_order_iter(addr);
loop { loop {

View File

@@ -17,7 +17,7 @@ use std::mem;
use std::rc::Rc; use std::rc::Rc;
#[derive(Debug, Clone, Copy)] #[derive(Debug, Clone, Copy)]
pub enum IndexingCodePtr { pub(crate) enum IndexingCodePtr {
External(usize), // the index points past the indexing instruction prelude. External(usize), // the index points past the indexing instruction prelude.
DynamicExternal(usize), // an External index of a dynamic predicate, potentially invalidated by retraction. DynamicExternal(usize), // an External index of a dynamic predicate, potentially invalidated by retraction.
Fail, Fail,
@@ -585,7 +585,7 @@ impl<'a> IndexingCodeMergingPtr<'a> {
} }
} }
pub fn merge_clause_index( pub(crate) fn merge_clause_index(
target_indexing_code: &mut Vec<IndexingLine>, target_indexing_code: &mut Vec<IndexingLine>,
skeleton: &mut [ClauseIndexInfo], // the clause to be merged is the last element in the skeleton. skeleton: &mut [ClauseIndexInfo], // the clause to be merged is the last element in the skeleton.
new_clause_loc: usize, // the absolute location of the new clause in the code vector. new_clause_loc: usize, // the absolute location of the new clause in the code vector.
@@ -638,7 +638,7 @@ pub fn merge_clause_index(
} }
} }
pub fn remove_constant_indices( pub(crate) fn remove_constant_indices(
constant: &Constant, constant: &Constant,
overlapping_constants: &[Constant], overlapping_constants: &[Constant],
indexing_code: &mut Vec<IndexingLine>, indexing_code: &mut Vec<IndexingLine>,
@@ -778,7 +778,7 @@ pub fn remove_constant_indices(
} }
} }
pub fn remove_structure_index( pub(crate) fn remove_structure_index(
name: &ClauseName, name: &ClauseName,
arity: usize, arity: usize,
indexing_code: &mut Vec<IndexingLine>, indexing_code: &mut Vec<IndexingLine>,
@@ -917,7 +917,7 @@ pub fn remove_structure_index(
} }
} }
pub fn remove_list_index(indexing_code: &mut Vec<IndexingLine>, offset: usize) { pub(crate) fn remove_list_index(indexing_code: &mut Vec<IndexingLine>, offset: usize) {
let mut index = 0; let mut index = 0;
match &mut indexing_code[index] { match &mut indexing_code[index] {
@@ -995,7 +995,7 @@ pub fn remove_list_index(indexing_code: &mut Vec<IndexingLine>, offset: usize) {
} }
} }
pub fn remove_index( pub(crate) fn remove_index(
opt_arg_index_key: &OptArgIndexKey, opt_arg_index_key: &OptArgIndexKey,
indexing_code: &mut Vec<IndexingLine>, indexing_code: &mut Vec<IndexingLine>,
clause_loc: usize, clause_loc: usize,
@@ -1065,7 +1065,7 @@ fn uncap_choice_seq_with_try(prelude: &mut [IndexedChoiceInstruction]) {
}); });
} }
pub fn constant_key_alternatives(constant: &Constant, atom_tbl: TabledData<Atom>) -> Vec<Constant> { pub(crate) fn constant_key_alternatives(constant: &Constant, atom_tbl: TabledData<Atom>) -> Vec<Constant> {
let mut constants = vec![]; let mut constants = vec![];
match constant { match constant {
@@ -1128,7 +1128,7 @@ pub(crate) struct DynamicCodeIndices {
structures: IndexMap<(ClauseName, usize), SliceDeque<usize>>, structures: IndexMap<(ClauseName, usize), SliceDeque<usize>>,
} }
pub trait Indexer { pub(crate) trait Indexer {
type ThirdLevelIndex; type ThirdLevelIndex;
fn new() -> Self; fn new() -> Self;
@@ -1383,14 +1383,14 @@ impl Indexer for DynamicCodeIndices {
} }
#[derive(Debug)] #[derive(Debug)]
pub struct CodeOffsets<I: Indexer> { pub(crate) struct CodeOffsets<I: Indexer> {
atom_tbl: TabledData<Atom>, atom_tbl: TabledData<Atom>,
indices: I, indices: I,
optimal_index: usize, optimal_index: usize,
} }
impl<I: Indexer> CodeOffsets<I> { impl<I: Indexer> CodeOffsets<I> {
pub fn new( pub(crate) fn new(
atom_tbl: TabledData<Atom>, atom_tbl: TabledData<Atom>,
indices: I, indices: I,
optimal_index: usize, optimal_index: usize,
@@ -1440,7 +1440,7 @@ impl<I: Indexer> CodeOffsets<I> {
code_len code_len
} }
pub fn index_term( pub(crate) fn index_term(
&mut self, &mut self,
optimal_arg: &Term, optimal_arg: &Term,
index: usize, index: usize,
@@ -1472,7 +1472,7 @@ impl<I: Indexer> CodeOffsets<I> {
} }
} }
pub fn no_indices(&mut self) -> bool { pub(crate) fn no_indices(&mut self) -> bool {
let no_constants = self.indices.constants().is_empty(); let no_constants = self.indices.constants().is_empty();
let no_structures = self.indices.structures().is_empty(); let no_structures = self.indices.structures().is_empty();
let no_lists = self.indices.lists().is_empty(); let no_lists = self.indices.lists().is_empty();
@@ -1480,7 +1480,7 @@ impl<I: Indexer> CodeOffsets<I> {
no_constants && no_structures && no_lists no_constants && no_structures && no_lists
} }
pub fn compute_indices(mut self, skip_stub_try_me_else: bool) -> Vec<IndexingLine> { pub(crate) fn compute_indices(mut self, skip_stub_try_me_else: bool) -> Vec<IndexingLine> {
if self.no_indices() { if self.no_indices() {
return vec![]; return vec![];
} }
@@ -1488,7 +1488,7 @@ impl<I: Indexer> CodeOffsets<I> {
let mut prelude = sdeq![]; let mut prelude = sdeq![];
let mut emitted_switch_on_structure = false; let mut emitted_switch_on_structure = false;
let mut emitted_switch_on_constant = false; let mut emitted_switch_on_constant = false;
let mut lst_loc = I::switch_on_list(self.indices.lists(), &mut prelude); let mut lst_loc = I::switch_on_list(self.indices.lists(), &mut prelude);

View File

@@ -47,7 +47,7 @@ impl ArithmeticTerm {
} }
#[derive(Debug, Clone, Copy)] #[derive(Debug, Clone, Copy)]
pub enum NextOrFail { pub(crate) enum NextOrFail {
Next(usize), Next(usize),
Fail(usize), Fail(usize),
} }
@@ -64,13 +64,13 @@ impl NextOrFail {
} }
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)] #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
pub enum Death { pub(crate) enum Death {
Finite(usize), Finite(usize),
Infinity, Infinity,
} }
#[derive(Debug)] #[derive(Debug)]
pub enum ChoiceInstruction { pub(crate) enum ChoiceInstruction {
DynamicElse(usize, Death, NextOrFail), DynamicElse(usize, Death, NextOrFail),
DynamicInternalElse(usize, Death, NextOrFail), DynamicInternalElse(usize, Death, NextOrFail),
DefaultRetryMeElse(usize), DefaultRetryMeElse(usize),
@@ -81,7 +81,7 @@ pub enum ChoiceInstruction {
} }
impl ChoiceInstruction { impl ChoiceInstruction {
pub fn to_functor(&self, h: usize) -> MachineStub { pub(crate) fn to_functor(&self, h: usize) -> MachineStub {
match self { match self {
&ChoiceInstruction::DynamicElse(birth, death, next_or_fail) => { &ChoiceInstruction::DynamicElse(birth, death, next_or_fail) => {
match (death, next_or_fail) { match (death, next_or_fail) {
@@ -171,7 +171,7 @@ impl ChoiceInstruction {
} }
#[derive(Debug)] #[derive(Debug)]
pub enum CutInstruction { pub(crate) enum CutInstruction {
Cut(RegType), Cut(RegType),
GetLevel(RegType), GetLevel(RegType),
GetLevelAndUnify(RegType), GetLevelAndUnify(RegType),
@@ -179,7 +179,7 @@ pub enum CutInstruction {
} }
impl CutInstruction { impl CutInstruction {
pub fn to_functor(&self, h: usize) -> MachineStub { pub(crate) fn to_functor(&self, h: usize) -> MachineStub {
match self { match self {
&CutInstruction::Cut(r) => { &CutInstruction::Cut(r) => {
let rt_stub = reg_type_into_functor(r); let rt_stub = reg_type_into_functor(r);
@@ -201,14 +201,14 @@ impl CutInstruction {
} }
#[derive(Clone, Copy, Debug)] #[derive(Clone, Copy, Debug)]
pub enum IndexedChoiceInstruction { pub(crate) enum IndexedChoiceInstruction {
Retry(usize), Retry(usize),
Trust(usize), Trust(usize),
Try(usize), Try(usize),
} }
impl IndexedChoiceInstruction { impl IndexedChoiceInstruction {
pub fn offset(&self) -> usize { pub(crate) fn offset(&self) -> usize {
match self { match self {
&IndexedChoiceInstruction::Retry(offset) => offset, &IndexedChoiceInstruction::Retry(offset) => offset,
&IndexedChoiceInstruction::Trust(offset) => offset, &IndexedChoiceInstruction::Trust(offset) => offset,
@@ -216,7 +216,7 @@ impl IndexedChoiceInstruction {
} }
} }
pub fn to_functor(&self) -> MachineStub { pub(crate) fn to_functor(&self) -> MachineStub {
match self { match self {
&IndexedChoiceInstruction::Try(offset) => { &IndexedChoiceInstruction::Try(offset) => {
functor!("try", [integer(offset)]) functor!("try", [integer(offset)])
@@ -233,7 +233,7 @@ impl IndexedChoiceInstruction {
/// A `Line` is an instruction (cf. page 98 of wambook). /// A `Line` is an instruction (cf. page 98 of wambook).
#[derive(Debug)] #[derive(Debug)]
pub enum IndexingLine { pub(crate) enum IndexingLine {
Indexing(IndexingInstruction), Indexing(IndexingInstruction),
IndexedChoice(SliceDeque<IndexedChoiceInstruction>), IndexedChoice(SliceDeque<IndexedChoiceInstruction>),
DynamicIndexedChoice(SliceDeque<usize>), DynamicIndexedChoice(SliceDeque<usize>),
@@ -254,7 +254,7 @@ impl From<SliceDeque<IndexedChoiceInstruction>> for IndexingLine {
} }
#[derive(Debug)] #[derive(Debug)]
pub enum Line { pub(crate) enum Line {
Arithmetic(ArithmeticInstruction), Arithmetic(ArithmeticInstruction),
Choice(ChoiceInstruction), Choice(ChoiceInstruction),
Control(ControlInstruction), Control(ControlInstruction),
@@ -268,7 +268,7 @@ pub enum Line {
impl Line { impl Line {
#[inline] #[inline]
pub fn is_head_instr(&self) -> bool { pub(crate) fn is_head_instr(&self) -> bool {
match self { match self {
&Line::Fact(_) => true, &Line::Fact(_) => true,
&Line::Query(_) => true, &Line::Query(_) => true,
@@ -276,7 +276,7 @@ impl Line {
} }
} }
pub fn enqueue_functors(&self, mut h: usize, functors: &mut Vec<MachineStub>) { pub(crate) fn enqueue_functors(&self, mut h: usize, functors: &mut Vec<MachineStub>) {
match self { match self {
&Line::Arithmetic(ref arith_instr) => functors.push(arith_instr.to_functor(h)), &Line::Arithmetic(ref arith_instr) => functors.push(arith_instr.to_functor(h)),
&Line::Choice(ref choice_instr) => functors.push(choice_instr.to_functor(h)), &Line::Choice(ref choice_instr) => functors.push(choice_instr.to_functor(h)),
@@ -320,7 +320,7 @@ impl Line {
} }
#[inline] #[inline]
pub fn to_indexing_line_mut(line: &mut Line) -> Option<&mut Vec<IndexingLine>> { pub(crate) fn to_indexing_line_mut(line: &mut Line) -> Option<&mut Vec<IndexingLine>> {
match line { match line {
Line::IndexingCode(ref mut indexing_code) => Some(indexing_code), Line::IndexingCode(ref mut indexing_code) => Some(indexing_code),
_ => None, _ => None,
@@ -328,7 +328,7 @@ pub fn to_indexing_line_mut(line: &mut Line) -> Option<&mut Vec<IndexingLine>> {
} }
#[inline] #[inline]
pub fn to_indexing_line(line: &Line) -> Option<&Vec<IndexingLine>> { pub(crate) fn to_indexing_line(line: &Line) -> Option<&Vec<IndexingLine>> {
match line { match line {
Line::IndexingCode(ref indexing_code) => Some(indexing_code), Line::IndexingCode(ref indexing_code) => Some(indexing_code),
_ => None, _ => None,
@@ -336,7 +336,7 @@ pub fn to_indexing_line(line: &Line) -> Option<&Vec<IndexingLine>> {
} }
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub enum ArithmeticInstruction { pub(crate) enum ArithmeticInstruction {
Add(ArithmeticTerm, ArithmeticTerm, usize), Add(ArithmeticTerm, ArithmeticTerm, usize),
Sub(ArithmeticTerm, ArithmeticTerm, usize), Sub(ArithmeticTerm, ArithmeticTerm, usize),
Mul(ArithmeticTerm, ArithmeticTerm, usize), Mul(ArithmeticTerm, ArithmeticTerm, usize),
@@ -407,7 +407,7 @@ fn arith_instr_bin_functor(
} }
impl ArithmeticInstruction { impl ArithmeticInstruction {
pub fn to_functor(&self, h: usize) -> MachineStub { pub(crate) fn to_functor(&self, h: usize) -> MachineStub {
match self { match self {
&ArithmeticInstruction::Add(ref at_1, ref at_2, t) => { &ArithmeticInstruction::Add(ref at_1, ref at_2, t) => {
arith_instr_bin_functor(h, "add", at_1, at_2, t) arith_instr_bin_functor(h, "add", at_1, at_2, t)
@@ -505,7 +505,7 @@ impl ArithmeticInstruction {
} }
#[derive(Debug)] #[derive(Debug)]
pub enum ControlInstruction { pub(crate) enum ControlInstruction {
Allocate(usize), // num_frames. Allocate(usize), // num_frames.
// name, arity, perm_vars after threshold, last call, use default call policy. // name, arity, perm_vars after threshold, last call, use default call policy.
CallClause(ClauseType, usize, usize, bool, bool), CallClause(ClauseType, usize, usize, bool, bool),
@@ -518,7 +518,7 @@ pub enum ControlInstruction {
} }
impl ControlInstruction { impl ControlInstruction {
pub fn perm_vars(&self) -> Option<usize> { pub(crate) fn perm_vars(&self) -> Option<usize> {
match self { match self {
ControlInstruction::CallClause(_, _, num_cells, ..) => Some(*num_cells), ControlInstruction::CallClause(_, _, num_cells, ..) => Some(*num_cells),
ControlInstruction::JmpBy(_, _, num_cells, ..) => Some(*num_cells), ControlInstruction::JmpBy(_, _, num_cells, ..) => Some(*num_cells),
@@ -526,7 +526,7 @@ impl ControlInstruction {
} }
} }
pub fn to_functor(&self) -> MachineStub { pub(crate) fn to_functor(&self) -> MachineStub {
match self { match self {
&ControlInstruction::Allocate(num_frames) => { &ControlInstruction::Allocate(num_frames) => {
functor!("allocate", [integer(num_frames)]) functor!("allocate", [integer(num_frames)])
@@ -555,7 +555,7 @@ impl ControlInstruction {
/// `IndexingInstruction` cf. page 110 of wambook. /// `IndexingInstruction` cf. page 110 of wambook.
#[derive(Debug)] #[derive(Debug)]
pub enum IndexingInstruction { pub(crate) enum IndexingInstruction {
// The first index is the optimal argument being indexed. // The first index is the optimal argument being indexed.
SwitchOnTerm( SwitchOnTerm(
usize, usize,
@@ -569,7 +569,7 @@ pub enum IndexingInstruction {
} }
impl IndexingInstruction { impl IndexingInstruction {
pub fn to_functor(&self, mut h: usize) -> MachineStub { pub(crate) fn to_functor(&self, mut h: usize) -> MachineStub {
match self { match self {
&IndexingInstruction::SwitchOnTerm(arg, vars, constants, lists, structures) => { &IndexingInstruction::SwitchOnTerm(arg, vars, constants, lists, structures) => {
functor!( functor!(
@@ -657,7 +657,7 @@ impl IndexingInstruction {
} }
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub enum FactInstruction { pub(crate) enum FactInstruction {
GetConstant(Level, Constant, RegType), GetConstant(Level, Constant, RegType),
GetList(Level, RegType), GetList(Level, RegType),
GetPartialString(Level, String, RegType, bool), GetPartialString(Level, String, RegType, bool),
@@ -672,7 +672,7 @@ pub enum FactInstruction {
} }
impl FactInstruction { impl FactInstruction {
pub fn to_functor(&self, h: usize) -> MachineStub { pub(crate) fn to_functor(&self, h: usize) -> MachineStub {
match self { match self {
&FactInstruction::GetConstant(lvl, ref c, r) => { &FactInstruction::GetConstant(lvl, ref c, r) => {
let lvl_stub = lvl.into_functor(); let lvl_stub = lvl.into_functor();
@@ -745,7 +745,7 @@ impl FactInstruction {
} }
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub enum QueryInstruction { pub(crate) enum QueryInstruction {
GetVariable(RegType, usize), GetVariable(RegType, usize),
PutConstant(Level, Constant, RegType), PutConstant(Level, Constant, RegType),
PutList(Level, RegType), PutList(Level, RegType),
@@ -762,7 +762,7 @@ pub enum QueryInstruction {
} }
impl QueryInstruction { impl QueryInstruction {
pub fn to_functor(&self, h: usize) -> MachineStub { pub(crate) fn to_functor(&self, h: usize) -> MachineStub {
match self { match self {
&QueryInstruction::PutUnsafeValue(norm, arg) => { &QueryInstruction::PutUnsafeValue(norm, arg) => {
functor!("put_unsafe_value", [integer(norm), integer(arg)]) functor!("put_unsafe_value", [integer(norm), integer(arg)])
@@ -842,6 +842,6 @@ impl QueryInstruction {
} }
} }
pub type CompiledFact = Vec<FactInstruction>; pub(crate) type CompiledFact = Vec<FactInstruction>;
pub type Code = Vec<Line>; pub(crate) type Code = Vec<Line>;

View File

@@ -13,7 +13,7 @@ use std::rc::Rc;
use std::vec::Vec; use std::vec::Vec;
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub enum TermRef<'a> { pub(crate) enum TermRef<'a> {
AnonVar(Level), AnonVar(Level),
Cons(Level, &'a Cell<RegType>, &'a Term, &'a Term), Cons(Level, &'a Cell<RegType>, &'a Term, &'a Term),
Constant(Level, &'a Cell<RegType>, &'a Constant), Constant(Level, &'a Cell<RegType>, &'a Constant),
@@ -23,7 +23,7 @@ pub enum TermRef<'a> {
} }
impl<'a> TermRef<'a> { impl<'a> TermRef<'a> {
pub fn level(self) -> Level { pub(crate) fn level(self) -> Level {
match self { match self {
TermRef::AnonVar(lvl) TermRef::AnonVar(lvl)
| TermRef::Cons(lvl, ..) | TermRef::Cons(lvl, ..)
@@ -36,7 +36,7 @@ impl<'a> TermRef<'a> {
} }
#[derive(Debug)] #[derive(Debug)]
pub enum TermIterState<'a> { pub(crate) enum TermIterState<'a> {
AnonVar(Level), AnonVar(Level),
Constant(Level, &'a Cell<RegType>, &'a Constant), Constant(Level, &'a Cell<RegType>, &'a Constant),
Clause( Clause(
@@ -97,7 +97,7 @@ fn is_partial_string<'a>(head: &'a Term, mut tail: &'a Term) -> Option<(String,
} }
impl<'a> TermIterState<'a> { impl<'a> TermIterState<'a> {
pub fn subterm_to_state(lvl: Level, term: &'a Term) -> TermIterState<'a> { pub(crate) fn subterm_to_state(lvl: Level, term: &'a Term) -> TermIterState<'a> {
match term { match term {
&Term::AnonVar => TermIterState::AnonVar(lvl), &Term::AnonVar => TermIterState::AnonVar(lvl),
&Term::Clause(ref cell, ref name, ref subterms, ref spec) => { &Term::Clause(ref cell, ref name, ref subterms, ref spec) => {
@@ -119,7 +119,7 @@ impl<'a> TermIterState<'a> {
} }
#[derive(Debug)] #[derive(Debug)]
pub struct QueryIterator<'a> { pub(crate) struct QueryIterator<'a> {
state_stack: Vec<TermIterState<'a>>, state_stack: Vec<TermIterState<'a>>,
} }
@@ -286,7 +286,7 @@ impl<'a> Iterator for QueryIterator<'a> {
} }
#[derive(Debug)] #[derive(Debug)]
pub struct FactIterator<'a> { pub(crate) struct FactIterator<'a> {
state_queue: VecDeque<TermIterState<'a>>, state_queue: VecDeque<TermIterState<'a>>,
iterable_root: bool, iterable_root: bool,
} }
@@ -297,7 +297,7 @@ impl<'a> FactIterator<'a> {
.push_back(TermIterState::subterm_to_state(lvl, term)); .push_back(TermIterState::subterm_to_state(lvl, term));
} }
pub fn from_rule_head_clause(terms: &'a Vec<Box<Term>>) -> Self { pub(crate) fn from_rule_head_clause(terms: &'a Vec<Box<Term>>) -> Self {
let state_queue = terms let state_queue = terms
.iter() .iter()
.map(|bt| TermIterState::subterm_to_state(Level::Shallow, bt.as_ref())) .map(|bt| TermIterState::subterm_to_state(Level::Shallow, bt.as_ref()))
@@ -386,26 +386,26 @@ impl<'a> Iterator for FactIterator<'a> {
} }
} }
pub fn post_order_iter(term: &Term) -> QueryIterator { pub(crate) fn post_order_iter(term: &Term) -> QueryIterator {
QueryIterator::from_term(term) QueryIterator::from_term(term)
} }
pub fn breadth_first_iter(term: &Term, iterable_root: bool) -> FactIterator { pub(crate) fn breadth_first_iter(term: &Term, iterable_root: bool) -> FactIterator {
FactIterator::new(term, iterable_root) FactIterator::new(term, iterable_root)
} }
#[derive(Debug)] #[derive(Debug)]
pub enum ChunkedTerm<'a> { pub(crate) enum ChunkedTerm<'a> {
HeadClause(ClauseName, &'a Vec<Box<Term>>), HeadClause(ClauseName, &'a Vec<Box<Term>>),
BodyTerm(&'a QueryTerm), BodyTerm(&'a QueryTerm),
} }
pub fn query_term_post_order_iter<'a>(query_term: &'a QueryTerm) -> QueryIterator<'a> { pub(crate) fn query_term_post_order_iter<'a>(query_term: &'a QueryTerm) -> QueryIterator<'a> {
QueryIterator::new(query_term) QueryIterator::new(query_term)
} }
impl<'a> ChunkedTerm<'a> { impl<'a> ChunkedTerm<'a> {
pub fn post_order_iter(&self) -> QueryIterator<'a> { pub(crate) fn post_order_iter(&self) -> QueryIterator<'a> {
match self { match self {
&ChunkedTerm::BodyTerm(ref qt) => QueryIterator::new(qt), &ChunkedTerm::BodyTerm(ref qt) => QueryIterator::new(qt),
&ChunkedTerm::HeadClause(_, terms) => QueryIterator::from_rule_head_clause(terms), &ChunkedTerm::HeadClause(_, terms) => QueryIterator::from_rule_head_clause(terms),
@@ -425,8 +425,8 @@ fn contains_cut_var<'a, Iter: Iterator<Item = &'a Term>>(terms: Iter) -> bool {
false false
} }
pub struct ChunkedIterator<'a> { pub(crate) struct ChunkedIterator<'a> {
pub chunk_num: usize, pub(crate) chunk_num: usize,
iter: Box<dyn Iterator<Item = ChunkedTerm<'a>> + 'a>, iter: Box<dyn Iterator<Item = ChunkedTerm<'a>> + 'a>,
deep_cut_encountered: bool, deep_cut_encountered: bool,
cut_var_in_head: bool, cut_var_in_head: bool,
@@ -448,7 +448,7 @@ type ChunkedIteratorItem<'a> = (usize, usize, Vec<ChunkedTerm<'a>>);
type RuleBodyIteratorItem<'a> = (usize, usize, Vec<&'a QueryTerm>); type RuleBodyIteratorItem<'a> = (usize, usize, Vec<&'a QueryTerm>);
impl<'a> ChunkedIterator<'a> { impl<'a> ChunkedIterator<'a> {
pub fn rule_body_iter(self) -> Box<dyn Iterator<Item = RuleBodyIteratorItem<'a>> + 'a> { pub(crate) fn rule_body_iter(self) -> Box<dyn Iterator<Item = RuleBodyIteratorItem<'a>> + 'a> {
Box::new(self.filter_map(|(cn, lt_arity, terms)| { Box::new(self.filter_map(|(cn, lt_arity, terms)| {
let filtered_terms: Vec<_> = terms let filtered_terms: Vec<_> = terms
.into_iter() .into_iter()
@@ -466,7 +466,7 @@ impl<'a> ChunkedIterator<'a> {
})) }))
} }
/* /*
pub fn from_term_sequence(terms: &'a [QueryTerm]) -> Self { pub(crate) fn from_term_sequence(terms: &'a [QueryTerm]) -> Self {
ChunkedIterator { ChunkedIterator {
chunk_num: 0, chunk_num: 0,
iter: Box::new(terms.iter().map(|t| ChunkedTerm::BodyTerm(t))), iter: Box::new(terms.iter().map(|t| ChunkedTerm::BodyTerm(t))),
@@ -475,7 +475,7 @@ impl<'a> ChunkedIterator<'a> {
} }
} }
*/ */
pub fn from_rule_body(p1: &'a QueryTerm, clauses: &'a Vec<QueryTerm>) -> Self { pub(crate) fn from_rule_body(p1: &'a QueryTerm, clauses: &'a Vec<QueryTerm>) -> Self {
let inner_iter = Box::new(once(ChunkedTerm::BodyTerm(p1))); let inner_iter = Box::new(once(ChunkedTerm::BodyTerm(p1)));
let iter = inner_iter.chain(clauses.iter().map(|t| ChunkedTerm::BodyTerm(t))); let iter = inner_iter.chain(clauses.iter().map(|t| ChunkedTerm::BodyTerm(t)));
@@ -487,7 +487,7 @@ impl<'a> ChunkedIterator<'a> {
} }
} }
pub fn from_rule(rule: &'a Rule) -> Self { pub(crate) fn from_rule(rule: &'a Rule) -> Self {
let &Rule { let &Rule {
head: (ref name, ref args, ref p1), head: (ref name, ref args, ref p1),
ref clauses, ref clauses,
@@ -505,7 +505,7 @@ impl<'a> ChunkedIterator<'a> {
} }
} }
pub fn encountered_deep_cut(&self) -> bool { pub(crate) fn encountered_deep_cut(&self) -> bool {
self.deep_cut_encountered self.deep_cut_encountered
} }

View File

@@ -17,29 +17,19 @@ mod heap_print;
mod indexing; mod indexing;
mod instructions; mod instructions;
mod iterators; mod iterators;
mod machine; pub mod machine;
mod read; pub mod read;
mod targets; mod targets;
mod write; mod write;
use machine::streams::*;
use machine::*; use machine::*;
use read::*;
use nix::sys::signal; use nix::sys::signal;
use std::sync::atomic::Ordering; use std::sync::atomic::Ordering;
extern "C" fn handle_sigint(signal: libc::c_int) { pub extern "C" fn handle_sigint(signal: libc::c_int) {
let signal = signal::Signal::from_c_int(signal).unwrap(); let signal = signal::Signal::from_c_int(signal).unwrap();
if signal == signal::Signal::SIGINT { if signal == signal::Signal::SIGINT {
INTERRUPT.store(true, Ordering::Relaxed); INTERRUPT.store(true, Ordering::Relaxed);
} }
} }
fn main() {
let handler = signal::SigHandler::Handler(handle_sigint);
unsafe { signal::signal(signal::Signal::SIGINT, handler) }.unwrap();
let mut wam = Machine::new(readline::input_stream(), Stream::stdout());
wam.run_top_level();
}

View File

@@ -3,58 +3,44 @@ use crate::instructions::*;
use crate::machine::machine_indices::*; use crate::machine::machine_indices::*;
#[derive(Debug)] #[derive(Debug)]
pub struct CodeRepo { pub(crate) struct CodeRepo {
pub(super) code: Code, pub(super) code: Code,
} }
impl CodeRepo { impl CodeRepo {
#[inline] #[inline]
pub(super) pub(super) fn new() -> Self {
fn new() -> Self { CodeRepo { code: Code::new() }
CodeRepo {
code: Code::new(),
}
} }
#[inline] #[inline]
pub(super) pub(super) fn lookup_local_instr<'a>(&'a self, p: LocalCodePtr) -> RefOrOwned<'a, Line> {
fn lookup_local_instr<'a>(
&'a self,
p: LocalCodePtr,
) -> RefOrOwned<'a, Line> {
match p { match p {
LocalCodePtr::Halt => { LocalCodePtr::Halt => {
// exit with the interrupt exit code. // exit with the interrupt exit code.
std::process::exit(1); std::process::exit(1);
} }
LocalCodePtr::DirEntry(p) => { LocalCodePtr::DirEntry(p) => RefOrOwned::Borrowed(&self.code[p as usize]),
RefOrOwned::Borrowed(&self.code[p as usize]) LocalCodePtr::IndexingBuf(p, o, i) => match &self.code[p] {
} &Line::IndexingCode(ref indexing_lines) => match &indexing_lines[o] {
LocalCodePtr::IndexingBuf(p, o, i) => { &IndexingLine::IndexedChoice(ref indexed_choice_instrs) => {
match &self.code[p] { RefOrOwned::Owned(Line::IndexedChoice(indexed_choice_instrs[i]))
&Line::IndexingCode(ref indexing_lines) => { }
match &indexing_lines[o] { &IndexingLine::DynamicIndexedChoice(ref indexed_choice_instrs) => {
&IndexingLine::IndexedChoice(ref indexed_choice_instrs) => { RefOrOwned::Owned(Line::DynamicIndexedChoice(indexed_choice_instrs[i]))
RefOrOwned::Owned(Line::IndexedChoice(indexed_choice_instrs[i]))
}
&IndexingLine::DynamicIndexedChoice(ref indexed_choice_instrs) => {
RefOrOwned::Owned(Line::DynamicIndexedChoice(indexed_choice_instrs[i]))
}
_ => {
unreachable!()
}
}
} }
_ => { _ => {
unreachable!() unreachable!()
} }
},
_ => {
unreachable!()
} }
} },
} }
} }
pub(super) pub(super) fn lookup_instr<'a>(
fn lookup_instr<'a>(
&'a self, &'a self,
last_call: bool, last_call: bool,
p: &CodePtr, p: &CodePtr,
@@ -63,9 +49,7 @@ impl CodeRepo {
&CodePtr::Local(local) => { &CodePtr::Local(local) => {
return Some(self.lookup_local_instr(local)); return Some(self.lookup_local_instr(local));
} }
&CodePtr::REPL(..) => { &CodePtr::REPL(..) => None,
None
}
&CodePtr::BuiltInClause(ref built_in, _) => { &CodePtr::BuiltInClause(ref built_in, _) => {
let call_clause = call_clause!( let call_clause = call_clause!(
ClauseType::BuiltIn(built_in.clone()), ClauseType::BuiltIn(built_in.clone()),
@@ -77,26 +61,26 @@ impl CodeRepo {
Some(RefOrOwned::Owned(call_clause)) Some(RefOrOwned::Owned(call_clause))
} }
&CodePtr::CallN(arity, _, last_call) => { &CodePtr::CallN(arity, _, last_call) => {
let call_clause = call_clause!( let call_clause = call_clause!(ClauseType::CallN, arity, 0, last_call);
ClauseType::CallN,
arity,
0,
last_call
);
Some(RefOrOwned::Owned(call_clause)) Some(RefOrOwned::Owned(call_clause))
} }
&CodePtr::VerifyAttrInterrupt(p) => { &CodePtr::VerifyAttrInterrupt(p) => Some(RefOrOwned::Borrowed(&self.code[p])),
Some(RefOrOwned::Borrowed(&self.code[p]))
}
} }
} }
pub(super) pub(super) fn find_living_dynamic_else(
fn find_living_dynamic_else(&self, mut p: usize, cc: usize) -> Option<(usize, usize)> { &self,
mut p: usize,
cc: usize,
) -> Option<(usize, usize)> {
loop { loop {
match &self.code[p] { match &self.code[p] {
&Line::Choice(ChoiceInstruction::DynamicElse(birth, death, NextOrFail::Next(i))) => { &Line::Choice(ChoiceInstruction::DynamicElse(
birth,
death,
NextOrFail::Next(i),
)) => {
if birth < cc && Death::Finite(cc) <= death { if birth < cc && Death::Finite(cc) <= death {
return Some((p, i)); return Some((p, i));
} else if i > 0 { } else if i > 0 {
@@ -105,7 +89,11 @@ impl CodeRepo {
return None; return None;
} }
} }
&Line::Choice(ChoiceInstruction::DynamicElse(birth, death, NextOrFail::Fail(_))) => { &Line::Choice(ChoiceInstruction::DynamicElse(
birth,
death,
NextOrFail::Fail(_),
)) => {
if birth < cc && Death::Finite(cc) <= death { if birth < cc && Death::Finite(cc) <= death {
return Some((p, 0)); return Some((p, 0));
} else { } else {
@@ -128,8 +116,8 @@ impl CodeRepo {
&Line::Choice(ChoiceInstruction::DynamicInternalElse( &Line::Choice(ChoiceInstruction::DynamicInternalElse(
birth, birth,
death, death,
NextOrFail::Fail(_)), NextOrFail::Fail(_),
) => { )) => {
if birth < cc && Death::Finite(cc) <= death { if birth < cc && Death::Finite(cc) <= death {
return Some((p, 0)); return Some((p, 0));
} else { } else {
@@ -146,8 +134,11 @@ impl CodeRepo {
} }
} }
pub(super) pub(super) fn find_living_dynamic(
fn find_living_dynamic(&self, p: LocalCodePtr, cc: usize) -> Option<(usize, usize, usize, bool)> { &self,
p: LocalCodePtr,
cc: usize,
) -> Option<(usize, usize, usize, bool)> {
let (p, oi, mut ii) = match p { let (p, oi, mut ii) = match p {
LocalCodePtr::IndexingBuf(p, oi, ii) => (p, oi, ii), LocalCodePtr::IndexingBuf(p, oi, ii) => (p, oi, ii),
_ => unreachable!(), _ => unreachable!(),
@@ -158,27 +149,27 @@ impl CodeRepo {
IndexingLine::DynamicIndexedChoice(ref indexed_choice_instrs) => { IndexingLine::DynamicIndexedChoice(ref indexed_choice_instrs) => {
indexed_choice_instrs indexed_choice_instrs
} }
_ => unreachable!() _ => unreachable!(),
} },
_ => unreachable!() _ => unreachable!(),
}; };
loop { loop {
match &indexed_choice_instrs.get(ii) { match &indexed_choice_instrs.get(ii) {
Some(&offset) => { Some(&offset) => match &self.code[p + offset - 1] {
match &self.code[p + offset - 1] { &Line::Choice(ChoiceInstruction::DynamicInternalElse(
&Line::Choice(ChoiceInstruction::DynamicInternalElse( birth,
birth, death, next_or_fail, death,
)) => { next_or_fail,
if birth < cc && Death::Finite(cc) <= death { )) => {
return Some((offset, oi, ii, next_or_fail.is_next())); if birth < cc && Death::Finite(cc) <= death {
} else { return Some((offset, oi, ii, next_or_fail.is_next()));
ii += 1; } else {
} ii += 1;
} }
_ => unreachable!(),
} }
} _ => unreachable!(),
},
None => return None, None => return None,
} }
} }

View File

@@ -7,8 +7,10 @@ fn capture_offset(line: &Line, index: usize, stack: &mut Vec<usize>) -> bool {
&Line::Choice(ChoiceInstruction::TryMeElse(offset)) if offset > 0 => { &Line::Choice(ChoiceInstruction::TryMeElse(offset)) if offset > 0 => {
stack.push(index + offset); stack.push(index + offset);
} }
&Line::Choice(ChoiceInstruction::DefaultRetryMeElse(offset)) | &Line::Choice(ChoiceInstruction::DefaultRetryMeElse(offset))
&Line::Choice(ChoiceInstruction::RetryMeElse(offset)) if offset > 0 => { | &Line::Choice(ChoiceInstruction::RetryMeElse(offset))
if offset > 0 =>
{
stack.push(index + offset); stack.push(index + offset);
} }
&Line::Choice(ChoiceInstruction::DynamicElse(_, _, NextOrFail::Next(offset))) &Line::Choice(ChoiceInstruction::DynamicElse(_, _, NextOrFail::Next(offset)))
@@ -26,8 +28,8 @@ fn capture_offset(line: &Line, index: usize, stack: &mut Vec<usize>) -> bool {
stack.push(index + offset); stack.push(index + offset);
return true; return true;
} }
&Line::Control(ControlInstruction::Proceed) | &Line::Control(ControlInstruction::Proceed)
&Line::Control(ControlInstruction::CallClause(_, _, _, true, _)) => { | &Line::Control(ControlInstruction::CallClause(_, _, _, true, _)) => {
return true; return true;
} }
&Line::Control(ControlInstruction::RevJmpBy(offset)) => { &Line::Control(ControlInstruction::RevJmpBy(offset)) => {
@@ -37,8 +39,7 @@ fn capture_offset(line: &Line, index: usize, stack: &mut Vec<usize>) -> bool {
return true; return true;
} }
} }
_ => { _ => {}
}
}; };
false false
@@ -48,8 +49,7 @@ fn capture_offset(line: &Line, index: usize, stack: &mut Vec<usize>) -> bool {
* begin in code at the offset p. Each instruction is passed to the * begin in code at the offset p. Each instruction is passed to the
* walker function. * walker function.
*/ */
pub fn walk_code(code: &Code, p: usize, mut walker: impl FnMut(&Line)) pub(crate) fn walk_code(code: &Code, p: usize, mut walker: impl FnMut(&Line)) {
{
let mut stack = vec![p]; let mut stack = vec![p];
let mut visited_indices = IndexSet::new(); let mut visited_indices = IndexSet::new();
@@ -60,7 +60,7 @@ pub fn walk_code(code: &Code, p: usize, mut walker: impl FnMut(&Line))
visited_indices.insert(first_index); visited_indices.insert(first_index);
} }
for (index, instr) in code[first_index ..].iter().enumerate() { for (index, instr) in code[first_index..].iter().enumerate() {
walker(instr); walker(instr);
if capture_offset(instr, first_index + index, &mut stack) { if capture_offset(instr, first_index + index, &mut stack) {
@@ -74,7 +74,7 @@ pub fn walk_code(code: &Code, p: usize, mut walker: impl FnMut(&Line))
* the code. Otherwise identical to walk_code. * the code. Otherwise identical to walk_code.
*/ */
/* /*
pub fn walk_code_mut(code: &mut Code, p: usize, mut walker: impl FnMut(&mut Line)) pub(crate) fn walk_code_mut(code: &mut Code, p: usize, mut walker: impl FnMut(&mut Line))
{ {
let mut queue = VecDeque::from(vec![p]); let mut queue = VecDeque::from(vec![p]);

View File

@@ -7,13 +7,12 @@ use std::ops::IndexMut;
type Trail = Vec<(Ref, HeapCellValue)>; type Trail = Vec<(Ref, HeapCellValue)>;
#[derive(Debug, Clone, Copy)] #[derive(Debug, Clone, Copy)]
pub enum AttrVarPolicy { pub(crate) enum AttrVarPolicy {
DeepCopy, DeepCopy,
StripAttributes StripAttributes,
} }
pub(crate) pub(crate) trait CopierTarget: IndexMut<usize, Output = HeapCellValue> {
trait CopierTarget: IndexMut<usize, Output = HeapCellValue> {
fn deref(&self, val: Addr) -> Addr; fn deref(&self, val: Addr) -> Addr;
fn push(&mut self, val: HeapCellValue); fn push(&mut self, val: HeapCellValue);
fn stack(&mut self) -> &mut Stack; fn stack(&mut self) -> &mut Stack;
@@ -21,8 +20,7 @@ trait CopierTarget: IndexMut<usize, Output = HeapCellValue> {
fn threshold(&self) -> usize; fn threshold(&self) -> usize;
} }
pub(crate) pub(crate) fn copy_term<T: CopierTarget>(target: T, addr: Addr, attr_var_policy: AttrVarPolicy) {
fn copy_term<T: CopierTarget>(target: T, addr: Addr, attr_var_policy: AttrVarPolicy) {
let mut copy_term_state = CopyTermState::new(target, attr_var_policy); let mut copy_term_state = CopyTermState::new(target, attr_var_policy);
copy_term_state.copy_term_impl(addr); copy_term_state.copy_term_impl(addr);
} }
@@ -43,7 +41,7 @@ impl<T: CopierTarget> CopyTermState<T> {
scan: 0, scan: 0,
old_h: target.threshold(), old_h: target.threshold(),
target, target,
attr_var_policy attr_var_policy,
} }
} }
@@ -59,14 +57,11 @@ impl<T: CopierTarget> CopyTermState<T> {
HeapCellValue::Addr(Addr::Lis(threshold)), HeapCellValue::Addr(Addr::Lis(threshold)),
); );
self.trail.push(( self.trail.push((Ref::HeapCell(addr), trail_item));
Ref::HeapCell(addr),
trail_item,
));
} }
fn copy_list(&mut self, addr: usize) { fn copy_list(&mut self, addr: usize) {
for offset in 0 .. 2 { for offset in 0..2 {
if let Addr::Lis(h) = self.target[addr + offset].as_addr(addr + offset) { if let Addr::Lis(h) = self.target[addr + offset].as_addr(addr + offset) {
if h >= self.old_h { if h >= self.old_h {
*self.value_at_scan() = HeapCellValue::Addr(Addr::Lis(h)); *self.value_at_scan() = HeapCellValue::Addr(Addr::Lis(h));
@@ -81,12 +76,14 @@ impl<T: CopierTarget> CopyTermState<T> {
*self.value_at_scan() = HeapCellValue::Addr(Addr::Lis(threshold)); *self.value_at_scan() = HeapCellValue::Addr(Addr::Lis(threshold));
for i in 0 .. 2 { for i in 0..2 {
let hcv = self.target[addr + i].context_free_clone(); let hcv = self.target[addr + i].context_free_clone();
self.target.push(hcv); self.target.push(hcv);
} }
let cdr = self.target.store(self.target.deref(Addr::HeapCell(addr + 1))); let cdr = self
.target
.store(self.target.deref(Addr::HeapCell(addr + 1)));
if !cdr.is_ref() { if !cdr.is_ref() {
self.trail_list_cell(addr + 1, threshold); self.trail_list_cell(addr + 1, threshold);
@@ -113,34 +110,27 @@ impl<T: CopierTarget> CopyTermState<T> {
let threshold = self.target.threshold(); let threshold = self.target.threshold();
*self.value_at_scan() = *self.value_at_scan() = HeapCellValue::Addr(Addr::PStrLocation(threshold, n));
HeapCellValue::Addr(Addr::PStrLocation(threshold, n));
self.scan += 1; self.scan += 1;
let (pstr, has_tail) = let (pstr, has_tail) = match &self.target[addr] {
match &self.target[addr] { &HeapCellValue::PartialString(ref pstr, has_tail) => {
&HeapCellValue::PartialString(ref pstr, has_tail) => { (pstr.clone_from_offset(0), has_tail)
(pstr.clone_from_offset(0), has_tail) }
} _ => {
_ => { unreachable!()
unreachable!() }
} };
};
self.target.push(HeapCellValue::PartialString(pstr, has_tail)); self.target
.push(HeapCellValue::PartialString(pstr, has_tail));
let replacement = HeapCellValue::Addr(Addr::PStrLocation(threshold, n)); let replacement = HeapCellValue::Addr(Addr::PStrLocation(threshold, n));
let trail_item = mem::replace( let trail_item = mem::replace(&mut self.target[addr], replacement);
&mut self.target[addr],
replacement,
);
self.trail.push(( self.trail.push((Ref::HeapCell(addr), trail_item));
Ref::HeapCell(addr),
trail_item,
));
if has_tail { if has_tail {
let tail_addr = self.target[addr + 1].as_addr(addr + 1); let tail_addr = self.target[addr + 1].as_addr(addr + 1);
@@ -154,10 +144,8 @@ impl<T: CopierTarget> CopyTermState<T> {
self.target[frontier] = HeapCellValue::Addr(Addr::HeapCell(frontier)); self.target[frontier] = HeapCellValue::Addr(Addr::HeapCell(frontier));
self.target[h] = HeapCellValue::Addr(Addr::HeapCell(frontier)); self.target[h] = HeapCellValue::Addr(Addr::HeapCell(frontier));
self.trail.push(( self.trail
Ref::HeapCell(h), .push((Ref::HeapCell(h), HeapCellValue::Addr(Addr::HeapCell(h))));
HeapCellValue::Addr(Addr::HeapCell(h)),
));
} }
Addr::StackCell(fr, sc) => { Addr::StackCell(fr, sc) => {
self.target[frontier] = HeapCellValue::Addr(Addr::HeapCell(frontier)); self.target[frontier] = HeapCellValue::Addr(Addr::HeapCell(frontier));
@@ -178,13 +166,12 @@ impl<T: CopierTarget> CopyTermState<T> {
self.target[frontier] = HeapCellValue::Addr(Addr::HeapCell(threshold)); self.target[frontier] = HeapCellValue::Addr(Addr::HeapCell(threshold));
self.target[h] = HeapCellValue::Addr(Addr::HeapCell(threshold)); self.target[h] = HeapCellValue::Addr(Addr::HeapCell(threshold));
self.trail.push(( self.trail
Ref::AttrVar(h), .push((Ref::AttrVar(h), HeapCellValue::Addr(Addr::AttrVar(h))));
HeapCellValue::Addr(Addr::AttrVar(h)),
));
if let AttrVarPolicy::DeepCopy = self.attr_var_policy { if let AttrVarPolicy::DeepCopy = self.attr_var_policy {
self.target.push(HeapCellValue::Addr(Addr::AttrVar(threshold))); self.target
.push(HeapCellValue::Addr(Addr::AttrVar(threshold)));
let list_val = self.target[h + 1].context_free_clone(); let list_val = self.target[h + 1].context_free_clone();
self.target.push(list_val); self.target.push(list_val);
@@ -226,12 +213,10 @@ impl<T: CopierTarget> CopyTermState<T> {
HeapCellValue::Addr(Addr::Str(threshold)), HeapCellValue::Addr(Addr::Str(threshold)),
); );
self.trail.push(( self.trail.push((Ref::HeapCell(addr), trail_item));
Ref::HeapCell(addr),
trail_item,
));
self.target.push(HeapCellValue::NamedStr(arity, name, fixity)); self.target
.push(HeapCellValue::NamedStr(arity, name, fixity));
for i in 0..arity { for i in 0..arity {
let hcv = self.target[addr + 1 + i].context_free_clone(); let hcv = self.target[addr + 1 + i].context_free_clone();
@@ -255,43 +240,41 @@ impl<T: CopierTarget> CopyTermState<T> {
while self.scan < self.target.threshold() { while self.scan < self.target.threshold() {
match self.value_at_scan() { match self.value_at_scan() {
&mut HeapCellValue::Addr(addr) => { &mut HeapCellValue::Addr(addr) => match addr {
match addr { Addr::Con(h) => {
Addr::Con(h) => { let addr = self.target[h].as_addr(h);
let addr = self.target[h].as_addr(h);
if addr == Addr::Con(h) { if addr == Addr::Con(h) {
*self.value_at_scan() = self.target[h].context_free_clone();
} else {
*self.value_at_scan() = HeapCellValue::Addr(addr);
}
}
Addr::Lis(h) => {
if h >= self.old_h {
self.scan += 1;
} else {
self.copy_list(h);
}
}
addr @ Addr::AttrVar(_) |
addr @ Addr::HeapCell(_) |
addr @ Addr::StackCell(..) => {
self.copy_var(addr);
}
Addr::Str(addr) => {
self.copy_structure(addr);
}
Addr::PStrLocation(addr, n) => {
self.copy_partial_string(addr, n);
}
Addr::Stream(h) => {
*self.value_at_scan() = self.target[h].context_free_clone(); *self.value_at_scan() = self.target[h].context_free_clone();
} } else {
_ => { *self.value_at_scan() = HeapCellValue::Addr(addr);
self.scan += 1;
} }
} }
} Addr::Lis(h) => {
if h >= self.old_h {
self.scan += 1;
} else {
self.copy_list(h);
}
}
addr @ Addr::AttrVar(_)
| addr @ Addr::HeapCell(_)
| addr @ Addr::StackCell(..) => {
self.copy_var(addr);
}
Addr::Str(addr) => {
self.copy_structure(addr);
}
Addr::PStrLocation(addr, n) => {
self.copy_partial_string(addr, n);
}
Addr::Stream(h) => {
*self.value_at_scan() = self.target[h].context_free_clone();
}
_ => {
self.scan += 1;
}
},
_ => { _ => {
self.scan += 1; self.scan += 1;
} }
@@ -304,10 +287,10 @@ impl<T: CopierTarget> CopyTermState<T> {
fn unwind_trail(&mut self) { fn unwind_trail(&mut self) {
for (r, value) in self.trail.drain(0..) { for (r, value) in self.trail.drain(0..) {
match r { match r {
Ref::AttrVar(h) | Ref::HeapCell(h) => Ref::AttrVar(h) | Ref::HeapCell(h) => self.target[h] = value,
self.target[h] = value, Ref::StackCell(fr, sc) => {
Ref::StackCell(fr, sc) => self.target.stack().index_and_frame_mut(fr)[sc] = value.as_addr(0)
self.target.stack().index_and_frame_mut(fr)[sc] = value.as_addr(0), }
} }
} }
} }

View File

@@ -429,7 +429,7 @@ impl<T: RawBlockTraits> HeapTemplate<T> {
} }
#[inline] #[inline]
pub fn index_addr<'a>(&'a self, addr: &Addr) -> RefOrOwned<'a, HeapCellValue> { pub(crate) fn index_addr<'a>(&'a self, addr: &Addr) -> RefOrOwned<'a, HeapCellValue> {
match addr { match addr {
&Addr::Con(h) | &Addr::Str(h) | &Addr::Stream(h) | &Addr::TcpListener(h) => { &Addr::Con(h) | &Addr::Str(h) | &Addr::Stream(h) | &Addr::TcpListener(h) => {
RefOrOwned::Borrowed(&self[h]) RefOrOwned::Borrowed(&self[h])

View File

@@ -184,18 +184,16 @@ impl<'a> Drop for LoadState<'a> {
module_decl, module_decl,
listing_src, listing_src,
local_extensible_predicates, local_extensible_predicates,
) => { ) => match self.wam.indices.modules.get_mut(&module_decl.name) {
match self.wam.indices.modules.get_mut(&module_decl.name) { Some(ref mut module) => {
Some(ref mut module) => { module.module_decl = module_decl;
module.module_decl = module_decl; module.listing_src = listing_src;
module.listing_src = listing_src; module.local_extensible_predicates = local_extensible_predicates;
module.local_extensible_predicates = local_extensible_predicates;
}
_ => {
unreachable!()
}
} }
} _ => {
unreachable!()
}
},
RetractionRecord::AddedDiscontiguousPredicate(compilation_target, key) => { RetractionRecord::AddedDiscontiguousPredicate(compilation_target, key) => {
match compilation_target { match compilation_target {
CompilationTarget::User => { CompilationTarget::User => {
@@ -487,17 +485,15 @@ impl<'a> Drop for LoadState<'a> {
} }
} }
RetractionRecord::SkeletonLocalClauseClausePopFront( RetractionRecord::SkeletonLocalClauseClausePopFront(
src_compilation_target, local_compilation_target, key, src_compilation_target,
local_compilation_target,
key,
) => { ) => {
match self match self.wam.indices.get_local_predicate_skeleton_mut(
.wam &src_compilation_target,
.indices local_compilation_target,
.get_local_predicate_skeleton_mut( key,
&src_compilation_target, ) {
local_compilation_target,
key,
)
{
Some(skeleton) => { Some(skeleton) => {
skeleton.clause_clause_locs.pop_front(); skeleton.clause_clause_locs.pop_front();
} }
@@ -505,17 +501,15 @@ impl<'a> Drop for LoadState<'a> {
} }
} }
RetractionRecord::SkeletonLocalClauseClausePopBack( RetractionRecord::SkeletonLocalClauseClausePopBack(
src_compilation_target, local_compilation_target, key, src_compilation_target,
local_compilation_target,
key,
) => { ) => {
match self match self.wam.indices.get_local_predicate_skeleton_mut(
.wam &src_compilation_target,
.indices local_compilation_target,
.get_local_predicate_skeleton_mut( key,
&src_compilation_target, ) {
local_compilation_target,
key,
)
{
Some(skeleton) => { Some(skeleton) => {
skeleton.clause_clause_locs.pop_back(); skeleton.clause_clause_locs.pop_back();
} }
@@ -528,15 +522,11 @@ impl<'a> Drop for LoadState<'a> {
key, key,
len, len,
) => { ) => {
match self match self.wam.indices.get_local_predicate_skeleton_mut(
.wam &src_compilation_target,
.indices local_compilation_target,
.get_local_predicate_skeleton_mut( key,
&src_compilation_target, ) {
local_compilation_target,
key,
)
{
Some(skeleton) => { Some(skeleton) => {
skeleton.clause_clause_locs.truncate_back(len); skeleton.clause_clause_locs.truncate_back(len);
} }
@@ -603,15 +593,11 @@ impl<'a> Drop for LoadState<'a> {
key, key,
clause_locs, clause_locs,
) => { ) => {
match self match self.wam.indices.get_local_predicate_skeleton_mut(
.wam &compilation_target,
.indices local_compilation_target,
.get_local_predicate_skeleton_mut( key,
&compilation_target, ) {
local_compilation_target,
key,
)
{
Some(skeleton) => skeleton.clause_clause_locs = clause_locs, Some(skeleton) => skeleton.clause_clause_locs = clause_locs,
None => {} None => {}
} }
@@ -663,7 +649,7 @@ impl<'a> Drop for LoadState<'a> {
} }
#[derive(Debug, Clone, Hash, PartialEq, Eq)] #[derive(Debug, Clone, Hash, PartialEq, Eq)]
pub enum CompilationTarget { pub(crate) enum CompilationTarget {
Module(ClauseName), Module(ClauseName),
User, User,
} }
@@ -682,7 +668,7 @@ impl CompilationTarget {
} }
#[inline] #[inline]
pub fn module_name(&self) -> ClauseName { pub(crate) fn module_name(&self) -> ClauseName {
match self { match self {
CompilationTarget::User => { CompilationTarget::User => {
clause_name!("user") clause_name!("user")
@@ -692,7 +678,7 @@ impl CompilationTarget {
} }
} }
pub struct PredicateQueue { pub(crate) struct PredicateQueue {
pub(super) predicates: Vec<Term>, pub(super) predicates: Vec<Term>,
pub(super) compilation_target: CompilationTarget, pub(super) compilation_target: CompilationTarget,
} }
@@ -781,10 +767,9 @@ impl<'a, TS: TermStream> Loader<'a, TS> {
} }
let term = match term { let term = match term {
Term::Clause(_, name, terms, _) Term::Clause(_, name, terms, _) if name.as_str() == ":-" && terms.len() == 1 => {
if name.as_str() == ":-" && terms.len() == 1 => { return Ok(Some(setup_declaration(&self.load_state, terms)?));
return Ok(Some(setup_declaration(&self.load_state, terms)?)); }
},
term => term, term => term,
}; };
@@ -808,8 +793,7 @@ impl<'a, TS: TermStream> Loader<'a, TS> {
self.load_state.compilation_target = self.load_state.compilation_target =
CompilationTarget::Module(module_decl.name.clone()); CompilationTarget::Module(module_decl.name.clone());
self.predicates.compilation_target = self.predicates.compilation_target = self.load_state.compilation_target.clone();
self.load_state.compilation_target.clone();
self.load_state self.load_state
.add_module(module_decl, self.term_stream.listing_src().clone()); .add_module(module_decl, self.term_stream.listing_src().clone());
@@ -975,9 +959,10 @@ impl<'a, TS: TermStream> Loader<'a, TS> {
if !*flag_accessor(skeleton) { if !*flag_accessor(skeleton) {
*flag_accessor(skeleton) = true; *flag_accessor(skeleton) = true;
self.load_state.retraction_info.push_record( self.load_state.retraction_info.push_record(retraction_fn(
retraction_fn(compilation_target.clone(), key.clone()), compilation_target.clone(),
); key.clone(),
));
} }
} }
None => { None => {
@@ -1003,9 +988,10 @@ impl<'a, TS: TermStream> Loader<'a, TS> {
if !*flag_accessor(skeleton) { if !*flag_accessor(skeleton) {
*flag_accessor(skeleton) = true; *flag_accessor(skeleton) = true;
self.load_state.retraction_info.push_record( self.load_state.retraction_info.push_record(retraction_fn(
retraction_fn(compilation_target.clone(), key.clone()), compilation_target.clone(),
); key.clone(),
));
} }
} }
None => { None => {
@@ -1024,7 +1010,8 @@ impl<'a, TS: TermStream> Loader<'a, TS> {
} }
}, },
None => { None => {
self.load_state.add_dynamically_generated_module(module_name); self.load_state
.add_dynamically_generated_module(module_name);
let mut skeleton = PredicateSkeleton::new(); let mut skeleton = PredicateSkeleton::new();
*flag_accessor(&mut skeleton) = true; *flag_accessor(&mut skeleton) = true;
@@ -1068,28 +1055,29 @@ impl<'a, TS: TermStream> Loader<'a, TS> {
} }
CompilationTarget::Module(ref module_name) => { CompilationTarget::Module(ref module_name) => {
match self.load_state.wam.indices.modules.get_mut(module_name) { match self.load_state.wam.indices.modules.get_mut(module_name) {
Some(ref mut module) => Some(ref mut module) => match module
match module.local_extensible_predicates.get_mut( .local_extensible_predicates
&(compilation_target.clone(), key.clone()), .get_mut(&(compilation_target.clone(), key.clone()))
) { {
Some(ref mut skeleton) => { Some(ref mut skeleton) => {
if !*flag_accessor(skeleton) { if !*flag_accessor(skeleton) {
*flag_accessor(skeleton) = true; *flag_accessor(skeleton) = true;
}
} }
None => { }
let mut skeleton = PredicateSkeleton::new(); None => {
*flag_accessor(&mut skeleton) = true; let mut skeleton = PredicateSkeleton::new();
*flag_accessor(&mut skeleton) = true;
self.load_state.add_local_extensible_predicate( self.load_state.add_local_extensible_predicate(
compilation_target.clone(), compilation_target.clone(),
key.clone(), key.clone(),
skeleton, skeleton,
); );
} }
}, },
None => { None => {
self.load_state.add_dynamically_generated_module(module_name); self.load_state
.add_dynamically_generated_module(module_name);
let mut skeleton = PredicateSkeleton::new(); let mut skeleton = PredicateSkeleton::new();
*flag_accessor(&mut skeleton) = true; *flag_accessor(&mut skeleton) = true;
@@ -1106,7 +1094,10 @@ impl<'a, TS: TermStream> Loader<'a, TS> {
Ok(()) Ok(())
} else { } else {
Err(SessionError::PredicateNotMultifileOrDiscontiguous(compilation_target, key)) Err(SessionError::PredicateNotMultifileOrDiscontiguous(
compilation_target,
key,
))
} }
} }
@@ -1139,10 +1130,9 @@ impl<'a, TS: TermStream> Loader<'a, TS> {
RetractionRecord::AddedDynamicPredicate, RetractionRecord::AddedDynamicPredicate,
)?; )?;
let code_index = self.load_state.get_or_insert_code_index( let code_index = self
(name.clone(), arity), .load_state
compilation_target.clone(), .get_or_insert_code_index((name.clone(), arity), compilation_target.clone());
);
if let IndexPtr::Undefined = code_index.get() { if let IndexPtr::Undefined = code_index.get() {
set_code_index( set_code_index(
@@ -1204,12 +1194,11 @@ impl<'a, TS: TermStream> Loader<'a, TS> {
&self.load_state.compilation_target, &self.load_state.compilation_target,
self.predicates.compilation_target.clone(), self.predicates.compilation_target.clone(),
key.clone(), key.clone(),
) ) {
{ Some(skeleton) if !skeleton.clause_clause_locs.is_empty() => {
Some(skeleton) if !skeleton.clause_clause_locs.is_empty() => mem::replace(&mut skeleton.clause_clause_locs, sdeq![])
mem::replace(&mut skeleton.clause_clause_locs, sdeq![]), }
_ => _ => return,
return,
}; };
self.load_state.retraction_info.push_record( self.load_state.retraction_info.push_record(
@@ -1233,10 +1222,8 @@ impl<'a, TS: TermStream> Loader<'a, TS> {
module_name => module_name.clone(), module_name => module_name.clone(),
}; };
self.load_state.retract_local_clause_clauses( self.load_state
clause_clause_compilation_target, .retract_local_clause_clauses(clause_clause_compilation_target, &clause_locs);
&clause_locs,
);
} }
} }
} }
@@ -1305,7 +1292,9 @@ impl Machine {
if export_list.is_empty() { if export_list.is_empty() {
loader.load_state.import_module(library)?; loader.load_state.import_module(library)?;
} else { } else {
loader.load_state.import_qualified_module(library, export_list)?; loader
.load_state
.import_qualified_module(library, export_list)?;
} }
LiveTermStream::evacuate(loader) LiveTermStream::evacuate(loader)
@@ -1347,29 +1336,39 @@ impl Machine {
#[inline] #[inline]
pub(crate) fn add_discontiguous_predicate(&mut self) { pub(crate) fn add_discontiguous_predicate(&mut self) {
self.add_extensible_predicate_declaration(|loader, compilation_target, clause_name, arity| { self.add_extensible_predicate_declaration(
loader.add_discontiguous_predicate(compilation_target, clause_name, arity) |loader, compilation_target, clause_name, arity| {
}); loader.add_discontiguous_predicate(compilation_target, clause_name, arity)
},
);
} }
#[inline] #[inline]
pub(crate) fn add_dynamic_predicate(&mut self) { pub(crate) fn add_dynamic_predicate(&mut self) {
self.add_extensible_predicate_declaration(|loader, compilation_target, clause_name, arity| { self.add_extensible_predicate_declaration(
loader.add_dynamic_predicate(compilation_target, clause_name, arity) |loader, compilation_target, clause_name, arity| {
}); loader.add_dynamic_predicate(compilation_target, clause_name, arity)
},
);
} }
#[inline] #[inline]
pub(crate) fn add_multifile_predicate(&mut self) { pub(crate) fn add_multifile_predicate(&mut self) {
self.add_extensible_predicate_declaration(|loader, compilation_target, clause_name, arity| { self.add_extensible_predicate_declaration(
loader.add_multifile_predicate(compilation_target, clause_name, arity) |loader, compilation_target, clause_name, arity| {
}); loader.add_multifile_predicate(compilation_target, clause_name, arity)
},
);
} }
fn add_extensible_predicate_declaration( fn add_extensible_predicate_declaration(
&mut self, &mut self,
decl_adder: impl Fn(&mut Loader<LiveTermStream>, CompilationTarget, ClauseName, usize) decl_adder: impl Fn(
-> Result<(), SessionError>, &mut Loader<LiveTermStream>,
CompilationTarget,
ClauseName,
usize,
) -> Result<(), SessionError>,
) { ) {
let module_name = atom_from!( let module_name = atom_from!(
self.machine_st, self.machine_st,
@@ -1805,15 +1804,10 @@ impl Machine {
let mut loader = Loader::new(LiveTermStream::new(ListingSource::User), self); let mut loader = Loader::new(LiveTermStream::new(ListingSource::User), self);
loader.load_state.compilation_target = compilation_target; loader.load_state.compilation_target = compilation_target;
let clause_clause_compilation_target = let clause_clause_compilation_target = match &loader.load_state.compilation_target {
match &loader.load_state.compilation_target { CompilationTarget::User => CompilationTarget::Module(clause_name!("builtins")),
CompilationTarget::User => { module => module.clone(),
CompilationTarget::Module(clause_name!("builtins")) };
}
module => {
module.clone()
}
};
let mut clause_clause_target_poses: Vec<_> = loader let mut clause_clause_target_poses: Vec<_> = loader
.load_state .load_state
@@ -1830,12 +1824,13 @@ impl Machine {
&(clause_name!("$clause"), 2), &(clause_name!("$clause"), 2),
) )
.map(|clause_clause_skeleton| { .map(|clause_clause_skeleton| {
skeleton.clause_clause_locs skeleton
.clause_clause_locs
.iter() .iter()
.map(|clause_clause_loc| { .map(|clause_clause_loc| {
clause_clause_skeleton.target_pos_of_clause_clause_loc( clause_clause_skeleton
*clause_clause_loc, .target_pos_of_clause_clause_loc(*clause_clause_loc)
).unwrap() .unwrap()
}) })
.collect() .collect()
}) })
@@ -1850,17 +1845,18 @@ impl Machine {
.get_predicate_skeleton_mut(&loader.load_state.compilation_target, &key) .get_predicate_skeleton_mut(&loader.load_state.compilation_target, &key)
.map(|skeleton| skeleton.reset()); .map(|skeleton| skeleton.reset());
let code_index = loader.load_state.get_or_insert_code_index( let code_index = loader
key, .load_state
loader.load_state.compilation_target.clone(), .get_or_insert_code_index(key, loader.load_state.compilation_target.clone());
);
code_index.set(IndexPtr::DynamicUndefined); code_index.set(IndexPtr::DynamicUndefined);
loader.load_state.compilation_target = clause_clause_compilation_target; loader.load_state.compilation_target = clause_clause_compilation_target;
while let Some(target_pos) = clause_clause_target_poses.pop() { while let Some(target_pos) = clause_clause_target_poses.pop() {
loader.load_state.retract_clause((clause_name!("$clause"), 2), target_pos); loader
.load_state
.retract_clause((clause_name!("$clause"), 2), target_pos);
} }
LiveTermStream::evacuate(loader) LiveTermStream::evacuate(loader)
@@ -1918,11 +1914,9 @@ impl Machine {
&clause_clause_compilation_target, &clause_clause_compilation_target,
&(clause_name!("$clause"), 2), &(clause_name!("$clause"), 2),
) { ) {
Some(skeleton) => { Some(skeleton) => skeleton
skeleton.target_pos_of_clause_clause_loc( .target_pos_of_clause_clause_loc(clause_clause_loc)
clause_clause_loc, .unwrap(),
).unwrap()
}
None => { None => {
unreachable!(); unreachable!();
} }
@@ -1962,10 +1956,9 @@ impl Machine {
let (loader, evacuable_h) = self.loader_from_heap_evacuable(temp_v!(4)); let (loader, evacuable_h) = self.loader_from_heap_evacuable(temp_v!(4));
loader.load_state.wam.machine_st.fail = loader.load_state.wam.machine_st.fail = (!loader.predicates.is_empty()
(!loader.predicates.is_empty() && && loader.predicates.compilation_target != compilation_target)
loader.predicates.compilation_target != compilation_target) || || !key.is_consistent(&loader.predicates);
!key.is_consistent(&loader.predicates);
let result = LiveTermStream::evacuate(loader); let result = LiveTermStream::evacuate(loader);
self.restore_load_state_payload(result, evacuable_h); self.restore_load_state_payload(result, evacuable_h);
@@ -2263,5 +2256,6 @@ pub(super) fn load_module(
code_dir, code_dir,
op_dir, op_dir,
meta_predicate_dir, meta_predicate_dir,
).unwrap(); )
.unwrap();
} }

View File

@@ -2,11 +2,11 @@ use prolog_parser::ast::*;
use prolog_parser::{clause_name, temp_v}; use prolog_parser::{clause_name, temp_v};
use crate::forms::{ModuleSource, Number}; //, PredicateKey}; use crate::forms::{ModuleSource, Number}; //, PredicateKey};
use crate::machine::PredicateKey;
use crate::machine::heap::*; use crate::machine::heap::*;
use crate::machine::loader::CompilationTarget; use crate::machine::loader::CompilationTarget;
use crate::machine::machine_indices::*; use crate::machine::machine_indices::*;
use crate::machine::machine_state::*; use crate::machine::machine_state::*;
use crate::machine::PredicateKey;
use crate::rug::Integer; use crate::rug::Integer;
use std::rc::Rc; use std::rc::Rc;
@@ -321,14 +321,12 @@ impl MachineError {
// SessionError::InvalidFileName(filename) => { // SessionError::InvalidFileName(filename) => {
// Self::existence_error(h, ExistenceError::Module(filename)) // Self::existence_error(h, ExistenceError::Module(filename))
// } // }
SessionError::ModuleDoesNotContainExport(..) => { SessionError::ModuleDoesNotContainExport(..) => Self::permission_error(
Self::permission_error( h,
h, Permission::Access,
Permission::Access, "private_procedure",
"private_procedure", functor!("module_does_not_contain_claimed_export"),
functor!("module_does_not_contain_claimed_export"), ),
)
}
SessionError::ModuleCannotImportSelf(module_name) => Self::permission_error( SessionError::ModuleCannotImportSelf(module_name) => Self::permission_error(
h, h,
Permission::Modify, Permission::Modify,
@@ -417,7 +415,7 @@ impl MachineError {
} }
#[derive(Debug)] #[derive(Debug)]
pub enum CompilationError { pub(crate) enum CompilationError {
Arithmetic(ArithmeticError), Arithmetic(ArithmeticError),
ParserError(ParserError), ParserError(ParserError),
// BadPendingByte, // BadPendingByte,
@@ -454,14 +452,14 @@ impl From<ParserError> for CompilationError {
} }
impl CompilationError { impl CompilationError {
pub fn line_and_col_num(&self) -> Option<(usize, usize)> { pub(crate) fn line_and_col_num(&self) -> Option<(usize, usize)> {
match self { match self {
&CompilationError::ParserError(ref err) => err.line_and_col_num(), &CompilationError::ParserError(ref err) => err.line_and_col_num(),
_ => None, _ => None,
} }
} }
pub fn as_functor(&self, _h: usize) -> MachineStub { pub(crate) fn as_functor(&self, _h: usize) -> MachineStub {
match self { match self {
&CompilationError::Arithmetic(..) => functor!("arithmetic_error"), &CompilationError::Arithmetic(..) => functor!("arithmetic_error"),
// &CompilationError::BadPendingByte => // &CompilationError::BadPendingByte =>
@@ -494,7 +492,7 @@ impl CompilationError {
} }
#[derive(Debug, Clone, Copy)] #[derive(Debug, Clone, Copy)]
pub enum Permission { pub(crate) enum Permission {
Access, Access,
Create, Create,
InputStream, InputStream,
@@ -506,7 +504,7 @@ pub enum Permission {
impl Permission { impl Permission {
#[inline] #[inline]
pub fn as_str(self) -> &'static str { pub(crate) fn as_str(self) -> &'static str {
match self { match self {
Permission::Access => "access", Permission::Access => "access",
Permission::Create => "create", Permission::Create => "create",
@@ -521,7 +519,7 @@ impl Permission {
// from 7.12.2 b) of 13211-1:1995 // from 7.12.2 b) of 13211-1:1995
#[derive(Debug, Clone, Copy)] #[derive(Debug, Clone, Copy)]
pub enum ValidType { pub(crate) enum ValidType {
Atom, Atom,
Atomic, Atomic,
// Boolean, // Boolean,
@@ -543,7 +541,7 @@ pub enum ValidType {
} }
impl ValidType { impl ValidType {
pub fn as_str(self) -> &'static str { pub(crate) fn as_str(self) -> &'static str {
match self { match self {
ValidType::Atom => "atom", ValidType::Atom => "atom",
ValidType::Atomic => "atomic", ValidType::Atomic => "atomic",
@@ -568,7 +566,7 @@ impl ValidType {
} }
#[derive(Debug, Clone, Copy)] #[derive(Debug, Clone, Copy)]
pub enum DomainErrorType { pub(crate) enum DomainErrorType {
IOMode, IOMode,
NotLessThanZero, NotLessThanZero,
Order, Order,
@@ -578,7 +576,7 @@ pub enum DomainErrorType {
} }
impl DomainErrorType { impl DomainErrorType {
pub fn as_str(self) -> &'static str { pub(crate) fn as_str(self) -> &'static str {
match self { match self {
DomainErrorType::IOMode => "io_mode", DomainErrorType::IOMode => "io_mode",
DomainErrorType::NotLessThanZero => "not_less_than_zero", DomainErrorType::NotLessThanZero => "not_less_than_zero",
@@ -592,7 +590,7 @@ impl DomainErrorType {
// from 7.12.2 f) of 13211-1:1995 // from 7.12.2 f) of 13211-1:1995
#[derive(Debug, Clone, Copy)] #[derive(Debug, Clone, Copy)]
pub enum RepFlag { pub(crate) enum RepFlag {
Character, Character,
CharacterCode, CharacterCode,
InCharacterCode, InCharacterCode,
@@ -602,7 +600,7 @@ pub enum RepFlag {
} }
impl RepFlag { impl RepFlag {
pub fn as_str(self) -> &'static str { pub(crate) fn as_str(self) -> &'static str {
match self { match self {
RepFlag::Character => "character", RepFlag::Character => "character",
RepFlag::CharacterCode => "character_code", RepFlag::CharacterCode => "character_code",
@@ -616,7 +614,7 @@ impl RepFlag {
// from 7.12.2 g) of 13211-1:1995 // from 7.12.2 g) of 13211-1:1995
#[derive(Debug, Clone, Copy)] #[derive(Debug, Clone, Copy)]
pub enum EvalError { pub(crate) enum EvalError {
FloatOverflow, FloatOverflow,
Undefined, Undefined,
// Underflow, // Underflow,
@@ -624,7 +622,7 @@ pub enum EvalError {
} }
impl EvalError { impl EvalError {
pub fn as_str(self) -> &'static str { pub(crate) fn as_str(self) -> &'static str {
match self { match self {
EvalError::FloatOverflow => "float_overflow", EvalError::FloatOverflow => "float_overflow",
EvalError::Undefined => "undefined", EvalError::Undefined => "undefined",
@@ -806,7 +804,7 @@ impl MachineState {
} }
#[derive(Debug)] #[derive(Debug)]
pub enum ExistenceError { pub(crate) enum ExistenceError {
Module(ClauseName), Module(ClauseName),
ModuleSource(ModuleSource), ModuleSource(ModuleSource),
Procedure(ClauseName, usize), Procedure(ClauseName, usize),
@@ -815,7 +813,7 @@ pub enum ExistenceError {
} }
#[derive(Debug)] #[derive(Debug)]
pub enum SessionError { pub(crate) enum SessionError {
CompilationError(CompilationError), CompilationError(CompilationError),
// CannotOverwriteBuiltIn(ClauseName), // CannotOverwriteBuiltIn(ClauseName),
// CannotOverwriteImport(ClauseName), // CannotOverwriteImport(ClauseName),
@@ -830,7 +828,7 @@ pub enum SessionError {
} }
#[derive(Debug)] #[derive(Debug)]
pub enum EvalSession { pub(crate) enum EvalSession {
// EntrySuccess, // EntrySuccess,
Error(SessionError), Error(SessionError),
} }

View File

@@ -29,12 +29,12 @@ use std::ops::{Add, AddAssign, Deref, Sub, SubAssign};
use std::rc::Rc; use std::rc::Rc;
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)] #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct OrderedOpDirKey(pub ClauseName, pub Fixity); pub(crate) struct OrderedOpDirKey(pub(crate) ClauseName, pub(crate) Fixity);
pub type OssifiedOpDir = BTreeMap<OrderedOpDirKey, (usize, Specifier)>; pub(crate) type OssifiedOpDir = BTreeMap<OrderedOpDirKey, (usize, Specifier)>;
#[derive(Debug, Clone, PartialEq, Eq, Hash)] #[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum DBRef { pub(crate) enum DBRef {
NamedPred(ClauseName, usize, Option<SharedOpDesc>), NamedPred(ClauseName, usize, Option<SharedOpDesc>),
Op( Op(
usize, usize,
@@ -47,7 +47,7 @@ pub enum DBRef {
// 7.2 // 7.2
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)] #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
pub enum TermOrderCategory { pub(crate) enum TermOrderCategory {
Variable, Variable,
FloatingPoint, FloatingPoint,
Integer, Integer,
@@ -56,7 +56,7 @@ pub enum TermOrderCategory {
} }
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum Addr { pub(crate) enum Addr {
AttrVar(usize), AttrVar(usize),
Char(char), Char(char),
Con(usize), Con(usize),
@@ -76,14 +76,14 @@ pub enum Addr {
} }
#[derive(Debug, Clone, Copy, Hash, Eq, PartialEq, PartialOrd)] #[derive(Debug, Clone, Copy, Hash, Eq, PartialEq, PartialOrd)]
pub enum Ref { pub(crate) enum Ref {
AttrVar(usize), AttrVar(usize),
HeapCell(usize), HeapCell(usize),
StackCell(usize, usize), StackCell(usize, usize),
} }
impl Ref { impl Ref {
pub fn as_addr(self) -> Addr { pub(crate) fn as_addr(self) -> Addr {
match self { match self {
Ref::AttrVar(h) => Addr::AttrVar(h), Ref::AttrVar(h) => Addr::AttrVar(h),
Ref::HeapCell(h) => Addr::HeapCell(h), Ref::HeapCell(h) => Addr::HeapCell(h),
@@ -141,7 +141,7 @@ impl PartialOrd<Ref> for Addr {
impl Addr { impl Addr {
#[inline] #[inline]
pub fn is_heap_bound(&self) -> bool { pub(crate) fn is_heap_bound(&self) -> bool {
match self { match self {
Addr::Char(_) Addr::Char(_)
| Addr::EmptyList | Addr::EmptyList
@@ -154,7 +154,7 @@ impl Addr {
} }
#[inline] #[inline]
pub fn is_ref(&self) -> bool { pub(crate) fn is_ref(&self) -> bool {
match self { match self {
Addr::HeapCell(_) | Addr::StackCell(_, _) | Addr::AttrVar(_) => true, Addr::HeapCell(_) | Addr::StackCell(_, _) | Addr::AttrVar(_) => true,
_ => false, _ => false,
@@ -162,7 +162,7 @@ impl Addr {
} }
#[inline] #[inline]
pub fn as_var(&self) -> Option<Ref> { pub(crate) fn as_var(&self) -> Option<Ref> {
match self { match self {
&Addr::AttrVar(h) => Some(Ref::AttrVar(h)), &Addr::AttrVar(h) => Some(Ref::AttrVar(h)),
&Addr::HeapCell(h) => Some(Ref::HeapCell(h)), &Addr::HeapCell(h) => Some(Ref::HeapCell(h)),
@@ -202,7 +202,7 @@ impl Addr {
} }
} }
pub fn as_constant_index(&self, machine_st: &MachineState) -> Option<Constant> { pub(crate) fn as_constant_index(&self, machine_st: &MachineState) -> Option<Constant> {
match self { match self {
&Addr::Char(c) => Some(Constant::Char(c)), &Addr::Char(c) => Some(Constant::Char(c)),
&Addr::Con(h) => match &machine_st.heap[h] { &Addr::Con(h) => match &machine_st.heap[h] {
@@ -222,7 +222,7 @@ impl Addr {
} }
} }
pub fn is_protected(&self, e: usize) -> bool { pub(crate) fn is_protected(&self, e: usize) -> bool {
match self { match self {
&Addr::StackCell(addr, _) if addr >= e => false, &Addr::StackCell(addr, _) if addr >= e => false,
_ => true, _ => true,
@@ -292,7 +292,7 @@ impl SubAssign<usize> for Addr {
} }
#[derive(Debug, Clone, Copy)] #[derive(Debug, Clone, Copy)]
pub enum TrailRef { pub(crate) enum TrailRef {
Ref(Ref), Ref(Ref),
AttrVarHeapLink(usize), AttrVarHeapLink(usize),
AttrVarListLink(usize, usize), AttrVarListLink(usize, usize),
@@ -307,7 +307,7 @@ impl From<Ref> for TrailRef {
} }
#[derive(Debug)] #[derive(Debug)]
pub enum HeapCellValue { pub(crate) enum HeapCellValue {
Addr(Addr), Addr(Addr),
Atom(ClauseName, Option<SharedOpDesc>), Atom(ClauseName, Option<SharedOpDesc>),
DBRef(DBRef), DBRef(DBRef),
@@ -322,13 +322,13 @@ pub enum HeapCellValue {
impl HeapCellValue { impl HeapCellValue {
#[inline] #[inline]
pub fn as_addr(&self, focus: usize) -> Addr { pub(crate) fn as_addr(&self, focus: usize) -> Addr {
match self { match self {
HeapCellValue::Addr(ref a) => *a, HeapCellValue::Addr(ref a) => *a,
HeapCellValue::Atom(..) | HeapCellValue::Atom(..)
HeapCellValue::DBRef(..) | | HeapCellValue::DBRef(..)
HeapCellValue::Integer(..) | | HeapCellValue::Integer(..)
HeapCellValue::Rational(..) => Addr::Con(focus), | HeapCellValue::Rational(..) => Addr::Con(focus),
HeapCellValue::LoadStatePayload(_) => Addr::LoadStatePayload(focus), HeapCellValue::LoadStatePayload(_) => Addr::LoadStatePayload(focus),
HeapCellValue::NamedStr(_, _, _) => Addr::Str(focus), HeapCellValue::NamedStr(_, _, _) => Addr::Str(focus),
HeapCellValue::PartialString(..) => Addr::PStrLocation(focus, 0), HeapCellValue::PartialString(..) => Addr::PStrLocation(focus, 0),
@@ -338,7 +338,7 @@ impl HeapCellValue {
} }
#[inline] #[inline]
pub fn context_free_clone(&self) -> HeapCellValue { pub(crate) fn context_free_clone(&self) -> HeapCellValue {
match self { match self {
&HeapCellValue::Addr(addr) => HeapCellValue::Addr(addr), &HeapCellValue::Addr(addr) => HeapCellValue::Addr(addr),
&HeapCellValue::Atom(ref name, ref op) => HeapCellValue::Atom(name.clone(), op.clone()), &HeapCellValue::Atom(ref name, ref op) => HeapCellValue::Atom(name.clone(), op.clone()),
@@ -370,7 +370,7 @@ impl From<Addr> for HeapCellValue {
} }
#[derive(Debug, Clone, Copy, Eq, Hash, Ord, PartialEq, PartialOrd)] #[derive(Debug, Clone, Copy, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub enum IndexPtr { pub(crate) enum IndexPtr {
DynamicUndefined, // a predicate, declared as dynamic, whose location in code is as yet undefined. DynamicUndefined, // a predicate, declared as dynamic, whose location in code is as yet undefined.
DynamicIndex(usize), DynamicIndex(usize),
Index(usize), Index(usize),
@@ -378,7 +378,7 @@ pub enum IndexPtr {
} }
#[derive(Debug, Clone, Ord, PartialOrd, Eq, PartialEq)] #[derive(Debug, Clone, Ord, PartialOrd, Eq, PartialEq)]
pub struct CodeIndex(pub Rc<Cell<IndexPtr>>); pub(crate) struct CodeIndex(pub(crate) Rc<Cell<IndexPtr>>);
impl Deref for CodeIndex { impl Deref for CodeIndex {
type Target = Cell<IndexPtr>; type Target = Cell<IndexPtr>;
@@ -396,14 +396,14 @@ impl CodeIndex {
} }
#[inline] #[inline]
pub fn is_undefined(&self) -> bool { pub(crate) fn is_undefined(&self) -> bool {
match self.0.get() { match self.0.get() {
IndexPtr::Undefined => true, // | &IndexPtr::DynamicUndefined => true, IndexPtr::Undefined => true, // | &IndexPtr::DynamicUndefined => true,
_ => false, _ => false,
} }
} }
pub fn local(&self) -> Option<usize> { pub(crate) fn local(&self) -> Option<usize> {
match self.0.get() { match self.0.get() {
IndexPtr::Index(i) => Some(i), IndexPtr::Index(i) => Some(i),
IndexPtr::DynamicIndex(i) => Some(i), IndexPtr::DynamicIndex(i) => Some(i),
@@ -419,7 +419,7 @@ impl Default for CodeIndex {
} }
#[derive(Debug, Clone, Copy, PartialOrd, Ord, PartialEq, Eq)] #[derive(Debug, Clone, Copy, PartialOrd, Ord, PartialEq, Eq)]
pub enum REPLCodePtr { pub(crate) enum REPLCodePtr {
AddDiscontiguousPredicate, AddDiscontiguousPredicate,
AddDynamicPredicate, AddDynamicPredicate,
AddMultifilePredicate, AddMultifilePredicate,
@@ -456,7 +456,7 @@ pub enum REPLCodePtr {
} }
#[derive(Debug, Clone, PartialEq)] #[derive(Debug, Clone, PartialEq)]
pub enum CodePtr { pub(crate) enum CodePtr {
BuiltInClause(BuiltInClauseType, LocalCodePtr), // local is the successor call. BuiltInClause(BuiltInClauseType, LocalCodePtr), // local is the successor call.
CallN(usize, LocalCodePtr, bool), // arity, local, last call. CallN(usize, LocalCodePtr, bool), // arity, local, last call.
Local(LocalCodePtr), Local(LocalCodePtr),
@@ -466,7 +466,7 @@ pub enum CodePtr {
} }
impl CodePtr { impl CodePtr {
pub fn local(&self) -> LocalCodePtr { pub(crate) fn local(&self) -> LocalCodePtr {
match self { match self {
&CodePtr::BuiltInClause(_, ref local) &CodePtr::BuiltInClause(_, ref local)
| &CodePtr::CallN(_, ref local, _) | &CodePtr::CallN(_, ref local, _)
@@ -477,7 +477,7 @@ impl CodePtr {
} }
#[inline] #[inline]
pub fn is_halt(&self) -> bool { pub(crate) fn is_halt(&self) -> bool {
if let CodePtr::Local(LocalCodePtr::Halt) = self { if let CodePtr::Local(LocalCodePtr::Halt) = self {
true true
} else { } else {
@@ -487,7 +487,7 @@ impl CodePtr {
} }
#[derive(Copy, Clone, Debug, PartialEq)] #[derive(Copy, Clone, Debug, PartialEq)]
pub enum LocalCodePtr { pub(crate) enum LocalCodePtr {
DirEntry(usize), // offset DirEntry(usize), // offset
Halt, Halt,
IndexingBuf(usize, usize, usize), // DirEntry offset, first internal offset, second internal offset IndexingBuf(usize, usize, usize), // DirEntry offset, first internal offset, second internal offset
@@ -659,22 +659,23 @@ impl SubAssign<usize> for CodePtr {
} }
} }
pub type HeapVarDict = IndexMap<Rc<Var>, Addr>; pub(crate) type HeapVarDict = IndexMap<Rc<Var>, Addr>;
pub type AllocVarDict = IndexMap<Rc<Var>, VarData>; pub(crate) type AllocVarDict = IndexMap<Rc<Var>, VarData>;
pub type GlobalVarDir = IndexMap<ClauseName, (Ball, Option<Addr>)>; pub(crate) type GlobalVarDir = IndexMap<ClauseName, (Ball, Option<Addr>)>;
pub(crate) type StreamAliasDir = IndexMap<ClauseName, Stream>; pub(crate) type StreamAliasDir = IndexMap<ClauseName, Stream>;
pub(crate) type StreamDir = BTreeSet<Stream>; pub(crate) type StreamDir = BTreeSet<Stream>;
pub type MetaPredicateDir = IndexMap<PredicateKey, Vec<MetaSpec>>; pub(crate) type MetaPredicateDir = IndexMap<PredicateKey, Vec<MetaSpec>>;
pub type ExtensiblePredicates = IndexMap<PredicateKey, PredicateSkeleton>; pub(crate) type ExtensiblePredicates = IndexMap<PredicateKey, PredicateSkeleton>;
pub type LocalExtensiblePredicates = IndexMap<(CompilationTarget, PredicateKey), PredicateSkeleton>; pub(crate) type LocalExtensiblePredicates =
IndexMap<(CompilationTarget, PredicateKey), PredicateSkeleton>;
#[derive(Debug)] #[derive(Debug)]
pub struct IndexStore { pub(crate) struct IndexStore {
pub(super) code_dir: CodeDir, pub(super) code_dir: CodeDir,
pub(super) extensible_predicates: ExtensiblePredicates, pub(super) extensible_predicates: ExtensiblePredicates,
pub(super) local_extensible_predicates: LocalExtensiblePredicates, pub(super) local_extensible_predicates: LocalExtensiblePredicates,
@@ -694,7 +695,7 @@ impl Default for IndexStore {
} }
impl IndexStore { impl IndexStore {
pub fn get_predicate_skeleton_mut( pub(crate) fn get_predicate_skeleton_mut(
&mut self, &mut self,
compilation_target: &CompilationTarget, compilation_target: &CompilationTarget,
key: &PredicateKey, key: &PredicateKey,
@@ -714,29 +715,25 @@ impl IndexStore {
} }
} }
pub fn get_local_predicate_skeleton_mut( pub(crate) fn get_local_predicate_skeleton_mut(
&mut self, &mut self,
src_compilation_target: &CompilationTarget, src_compilation_target: &CompilationTarget,
local_compilation_target: CompilationTarget, local_compilation_target: CompilationTarget,
key: PredicateKey, key: PredicateKey,
) -> Option<&mut PredicateSkeleton> { ) -> Option<&mut PredicateSkeleton> {
match (key.0.as_str(), key.1) { match (key.0.as_str(), key.1) {
("term_expansion", 2) => { ("term_expansion", 2) => self
self.local_extensible_predicates.get_mut( .local_extensible_predicates
&(local_compilation_target, key), .get_mut(&(local_compilation_target, key)),
)
}
_ => match src_compilation_target { _ => match src_compilation_target {
CompilationTarget::User => { CompilationTarget::User => self
self.local_extensible_predicates.get_mut( .local_extensible_predicates
&(local_compilation_target, key), .get_mut(&(local_compilation_target, key)),
)
}
CompilationTarget::Module(ref module_name) => { CompilationTarget::Module(ref module_name) => {
if let Some(module) = self.modules.get_mut(module_name) { if let Some(module) = self.modules.get_mut(module_name) {
module.local_extensible_predicates.get_mut( module
&(local_compilation_target, key), .local_extensible_predicates
) .get_mut(&(local_compilation_target, key))
} else { } else {
None None
} }
@@ -745,29 +742,25 @@ impl IndexStore {
} }
} }
pub fn get_local_predicate_skeleton( pub(crate) fn get_local_predicate_skeleton(
&self, &self,
src_compilation_target: &CompilationTarget, src_compilation_target: &CompilationTarget,
local_compilation_target: CompilationTarget, local_compilation_target: CompilationTarget,
key: PredicateKey, key: PredicateKey,
) -> Option<&PredicateSkeleton> { ) -> Option<&PredicateSkeleton> {
match (key.0.as_str(), key.1) { match (key.0.as_str(), key.1) {
("term_expansion", 2) => { ("term_expansion", 2) => self
self.local_extensible_predicates.get( .local_extensible_predicates
&(local_compilation_target, key), .get(&(local_compilation_target, key)),
)
}
_ => match src_compilation_target { _ => match src_compilation_target {
CompilationTarget::User => { CompilationTarget::User => self
self.local_extensible_predicates.get( .local_extensible_predicates
&(local_compilation_target, key), .get(&(local_compilation_target, key)),
)
}
CompilationTarget::Module(ref module_name) => { CompilationTarget::Module(ref module_name) => {
if let Some(module) = self.modules.get(module_name) { if let Some(module) = self.modules.get(module_name) {
module.local_extensible_predicates.get( module
&(local_compilation_target, key), .local_extensible_predicates
) .get(&(local_compilation_target, key))
} else { } else {
None None
} }
@@ -776,7 +769,7 @@ impl IndexStore {
} }
} }
pub fn get_predicate_skeleton( pub(crate) fn get_predicate_skeleton(
&self, &self,
compilation_target: &CompilationTarget, compilation_target: &CompilationTarget,
key: &PredicateKey, key: &PredicateKey,
@@ -796,19 +789,15 @@ impl IndexStore {
} }
} }
pub fn remove_predicate_skeleton( pub(crate) fn remove_predicate_skeleton(
&mut self, &mut self,
compilation_target: &CompilationTarget, compilation_target: &CompilationTarget,
key: &PredicateKey, key: &PredicateKey,
) -> Option<PredicateSkeleton> { ) -> Option<PredicateSkeleton> {
match (key.0.as_str(), key.1) { match (key.0.as_str(), key.1) {
("term_expansion", 2) => { ("term_expansion", 2) => self.extensible_predicates.remove(key),
self.extensible_predicates.remove(key)
}
_ => match compilation_target { _ => match compilation_target {
CompilationTarget::User => { CompilationTarget::User => self.extensible_predicates.remove(key),
self.extensible_predicates.remove(key)
}
CompilationTarget::Module(ref module_name) => { CompilationTarget::Module(ref module_name) => {
if let Some(module) = self.modules.get_mut(module_name) { if let Some(module) = self.modules.get_mut(module_name) {
module.extensible_predicates.remove(key) module.extensible_predicates.remove(key)
@@ -820,7 +809,7 @@ impl IndexStore {
} }
} }
pub fn get_predicate_code_index( pub(crate) fn get_predicate_code_index(
&self, &self,
name: ClauseName, name: ClauseName,
arity: usize, arity: usize,
@@ -848,7 +837,7 @@ impl IndexStore {
} }
} }
pub fn get_meta_predicate_spec( pub(crate) fn get_meta_predicate_spec(
&self, &self,
name: ClauseName, name: ClauseName,
arity: usize, arity: usize,
@@ -866,7 +855,7 @@ impl IndexStore {
} }
} }
pub fn is_dynamic_predicate(&self, module_name: ClauseName, key: PredicateKey) -> bool { pub(crate) fn is_dynamic_predicate(&self, module_name: ClauseName, key: PredicateKey) -> bool {
match module_name.as_str() { match module_name.as_str() {
"user" => self "user" => self
.extensible_predicates .extensible_predicates
@@ -911,9 +900,9 @@ impl IndexStore {
} }
} }
pub type CodeDir = BTreeMap<PredicateKey, CodeIndex>; pub(crate) type CodeDir = BTreeMap<PredicateKey, CodeIndex>;
pub enum RefOrOwned<'a, T: 'a> { pub(crate) enum RefOrOwned<'a, T: 'a> {
Borrowed(&'a T), Borrowed(&'a T),
Owned(T), Owned(T),
} }
@@ -928,14 +917,14 @@ impl<'a, T: 'a + fmt::Debug> fmt::Debug for RefOrOwned<'a, T> {
} }
impl<'a, T> RefOrOwned<'a, T> { impl<'a, T> RefOrOwned<'a, T> {
pub fn as_ref(&'a self) -> &'a T { pub(crate) fn as_ref(&'a self) -> &'a T {
match self { match self {
&RefOrOwned::Borrowed(r) => r, &RefOrOwned::Borrowed(r) => r,
&RefOrOwned::Owned(ref r) => r, &RefOrOwned::Owned(ref r) => r,
} }
} }
pub fn to_owned(self) -> T pub(crate) fn to_owned(self) -> T
where where
T: Clone, T: Clone,
{ {

View File

@@ -30,7 +30,7 @@ use std::ops::{Index, IndexMut};
use std::rc::Rc; use std::rc::Rc;
#[derive(Debug)] #[derive(Debug)]
pub struct Ball { pub(crate) struct Ball {
pub(super) boundary: usize, pub(super) boundary: usize,
pub(super) stub: Heap, pub(super) stub: Heap,
} }
@@ -225,7 +225,7 @@ impl IndexMut<RegType> for MachineState {
} }
} }
pub type Registers = Vec<Addr>; pub(crate) type Registers = Vec<Addr>;
#[derive(Debug, Clone, Copy)] #[derive(Debug, Clone, Copy)]
pub(super) enum MachineMode { pub(super) enum MachineMode {
@@ -276,7 +276,7 @@ pub enum FirstOrNext {
} }
// #[derive(Debug)] // #[derive(Debug)]
pub struct MachineState { pub(crate) struct MachineState {
pub(crate) atom_tbl: TabledData<Atom>, pub(crate) atom_tbl: TabledData<Atom>,
pub(super) s: HeapPtr, pub(super) s: HeapPtr,
pub(super) p: CodePtr, pub(super) p: CodePtr,
@@ -347,7 +347,7 @@ impl MachineState {
pub(crate) fn read_term(&mut self, mut stream: Stream, indices: &mut IndexStore) -> CallResult { pub(crate) fn read_term(&mut self, mut stream: Stream, indices: &mut IndexStore) -> CallResult {
fn push_var_eq_functors<'a>( fn push_var_eq_functors<'a>(
heap: &mut Heap, heap: &mut Heap,
iter: impl Iterator<Item=(&'a Rc<Var>, &'a Addr)>, iter: impl Iterator<Item = (&'a Rc<Var>, &'a Addr)>,
op_dir: &OpDir, op_dir: &OpDir,
atom_tbl: TabledData<Atom>, atom_tbl: TabledData<Atom>,
) -> Vec<Addr> { ) -> Vec<Addr> {
@@ -1303,7 +1303,8 @@ impl CallPolicy for CWILCallPolicy {
offset: usize, offset: usize,
global_variables: &mut GlobalVarDir, global_variables: &mut GlobalVarDir,
) -> CallResult { ) -> CallResult {
self.prev_policy.retry_me_else(machine_st, offset, global_variables)?; self.prev_policy
.retry_me_else(machine_st, offset, global_variables)?;
self.increment(machine_st) self.increment(machine_st)
} }
@@ -1313,7 +1314,8 @@ impl CallPolicy for CWILCallPolicy {
offset: usize, offset: usize,
global_variables: &mut GlobalVarDir, global_variables: &mut GlobalVarDir,
) -> CallResult { ) -> CallResult {
self.prev_policy.retry(machine_st, offset, global_variables)?; self.prev_policy
.retry(machine_st, offset, global_variables)?;
self.increment(machine_st) self.increment(machine_st)
} }
@@ -1332,7 +1334,8 @@ impl CallPolicy for CWILCallPolicy {
offset: usize, offset: usize,
global_variables: &mut GlobalVarDir, global_variables: &mut GlobalVarDir,
) -> CallResult { ) -> CallResult {
self.prev_policy.trust(machine_st, offset, global_variables)?; self.prev_policy
.trust(machine_st, offset, global_variables)?;
self.increment(machine_st) self.increment(machine_st)
} }

View File

@@ -61,7 +61,7 @@ impl MachineState {
} }
#[inline] #[inline]
pub fn machine_flags(&self) -> MachineFlags { pub(crate) fn machine_flags(&self) -> MachineFlags {
self.flags self.flags
} }
@@ -590,8 +590,7 @@ impl MachineState {
} }
} }
pub(super) pub(super) fn trail(&mut self, r: TrailRef) {
fn trail(&mut self, r: TrailRef) {
match r { match r {
TrailRef::Ref(Ref::HeapCell(h)) => { TrailRef::Ref(Ref::HeapCell(h)) => {
if h < self.hb { if h < self.hb {
@@ -3460,14 +3459,20 @@ impl MachineState {
} }
&ChoiceInstruction::DefaultRetryMeElse(offset) => { &ChoiceInstruction::DefaultRetryMeElse(offset) => {
let mut call_policy = DefaultCallPolicy {}; let mut call_policy = DefaultCallPolicy {};
try_or_fail!(self, call_policy.retry_me_else(self, offset, global_variables)) try_or_fail!(
self,
call_policy.retry_me_else(self, offset, global_variables)
)
} }
&ChoiceInstruction::DefaultTrustMe(_) => { &ChoiceInstruction::DefaultTrustMe(_) => {
let mut call_policy = DefaultCallPolicy {}; let mut call_policy = DefaultCallPolicy {};
try_or_fail!(self, call_policy.trust_me(self, global_variables)) try_or_fail!(self, call_policy.trust_me(self, global_variables))
} }
&ChoiceInstruction::RetryMeElse(offset) => { &ChoiceInstruction::RetryMeElse(offset) => {
try_or_fail!(self, call_policy.retry_me_else(self, offset, global_variables)) try_or_fail!(
self,
call_policy.retry_me_else(self, offset, global_variables)
)
} }
&ChoiceInstruction::TrustMe(_) => { &ChoiceInstruction::TrustMe(_) => {
try_or_fail!(self, call_policy.trust_me(self, global_variables)) try_or_fail!(self, call_policy.trust_me(self, global_variables))

View File

@@ -14,17 +14,17 @@ use crate::read::*;
mod attributed_variables; mod attributed_variables;
pub(super) mod code_repo; pub(super) mod code_repo;
pub mod code_walker; pub(crate) mod code_walker;
#[macro_use] #[macro_use]
pub(crate) mod loader; pub(crate) mod loader;
mod compile; mod compile;
mod copier; mod copier;
pub mod heap; pub(crate) mod heap;
mod load_state; mod load_state;
pub mod machine_errors; pub(crate) mod machine_errors;
pub mod machine_indices; pub(crate) mod machine_indices;
pub(super) mod machine_state; pub(super) mod machine_state;
pub mod partial_string; pub(crate) mod partial_string;
mod preprocessor; mod preprocessor;
mod raw_block; mod raw_block;
mod stack; mod stack;
@@ -42,7 +42,7 @@ use crate::machine::compile::*;
use crate::machine::machine_errors::*; use crate::machine::machine_errors::*;
use crate::machine::machine_indices::*; use crate::machine::machine_indices::*;
use crate::machine::machine_state::*; use crate::machine::machine_state::*;
use crate::machine::streams::*; pub use crate::machine::streams::Stream;
use indexmap::IndexMap; use indexmap::IndexMap;
@@ -54,13 +54,13 @@ use std::path::PathBuf;
use std::sync::atomic::AtomicBool; use std::sync::atomic::AtomicBool;
#[derive(Debug)] #[derive(Debug)]
pub struct MachinePolicies { pub(crate) struct MachinePolicies {
call_policy: Box<dyn CallPolicy>, call_policy: Box<dyn CallPolicy>,
cut_policy: Box<dyn CutPolicy>, cut_policy: Box<dyn CutPolicy>,
} }
lazy_static! { lazy_static! {
pub static ref INTERRUPT: AtomicBool = AtomicBool::new(false); pub(crate) static ref INTERRUPT: AtomicBool = AtomicBool::new(false);
} }
impl MachinePolicies { impl MachinePolicies {
@@ -141,7 +141,7 @@ impl Machine {
unreachable!(); unreachable!();
} }
fn load_file(&mut self, path: String, stream: Stream) { pub fn load_file(&mut self, path: String, stream: Stream) {
self.machine_st[temp_v!(1)] = self.machine_st[temp_v!(1)] =
Addr::Stream(self.machine_st.heap.push(HeapCellValue::Stream(stream))); Addr::Stream(self.machine_st.heap.push(HeapCellValue::Stream(stream)));
@@ -224,7 +224,7 @@ impl Machine {
self.run_module_predicate(clause_name!("$toplevel"), (clause_name!("$repl"), 1)); self.run_module_predicate(clause_name!("$toplevel"), (clause_name!("$repl"), 1));
} }
fn configure_modules(&mut self) { pub(crate) fn configure_modules(&mut self) {
fn update_call_n_indices(loader: &Module, target_code_dir: &mut CodeDir) { fn update_call_n_indices(loader: &Module, target_code_dir: &mut CodeDir) {
for arity in 1..66 { for arity in 1..66 {
let key = (clause_name!("call"), arity); let key = (clause_name!("call"), arity);
@@ -358,7 +358,7 @@ impl Machine {
wam wam
} }
pub fn configure_streams(&mut self) { pub(crate) fn configure_streams(&mut self) {
self.user_input.options_mut().alias = Some(clause_name!("user_input")); self.user_input.options_mut().alias = Some(clause_name!("user_input"));
self.indices self.indices
@@ -493,7 +493,7 @@ impl Machine {
self.machine_st.p = CodePtr::Local(p); self.machine_st.p = CodePtr::Local(p);
} }
pub(super) fn run_query(&mut self) { pub(crate) fn run_query(&mut self) {
while !self.machine_st.p.is_halt() { while !self.machine_st.p.is_halt() {
self.machine_st.query_stepper( self.machine_st.query_stepper(
&mut self.indices, &mut self.indices,

View File

@@ -1,20 +1,20 @@
use crate::machine::*;
use crate::machine::machine_indices::*; use crate::machine::machine_indices::*;
use crate::machine::*;
use core::marker::PhantomData; use core::marker::PhantomData;
use std::alloc; use std::alloc;
use std::cmp::Ordering; use std::cmp::Ordering;
use std::mem; use std::mem;
use std::ptr;
use std::ops::RangeFrom; use std::ops::RangeFrom;
use std::ptr;
use std::slice; use std::slice;
use std::str; use std::str;
use indexmap::IndexSet; use indexmap::IndexSet;
#[derive(Debug)] #[derive(Debug)]
pub struct PartialString { pub(crate) struct PartialString {
buf: *const u8, buf: *const u8,
len: usize, len: usize,
_marker: PhantomData<[u8]>, _marker: PhantomData<[u8]>,
@@ -54,7 +54,7 @@ fn scan_for_terminator<Iter: Iterator<Item = char>>(iter: Iter) -> usize {
} }
#[derive(Debug)] #[derive(Debug)]
pub struct PStrIter { pub(crate) struct PStrIter {
buf: *const u8, buf: *const u8,
len: usize, len: usize,
} }
@@ -91,17 +91,14 @@ impl Iterator for PStrIter {
impl PartialString { impl PartialString {
#[inline] #[inline]
pub(super) pub(super) fn new(src: &str) -> Option<(Self, &str)> {
fn new(src: &str) -> Option<(Self, &str)> {
let pstr = PartialString { let pstr = PartialString {
buf: ptr::null_mut(), buf: ptr::null_mut(),
len: 0, len: 0,
_marker: PhantomData, _marker: PhantomData,
}; };
unsafe { unsafe { pstr.append_chars(src) }
pstr.append_chars(src)
}
} }
unsafe fn append_chars(mut self, src: &str) -> Option<(Self, &str)> { unsafe fn append_chars(mut self, src: &str) -> Option<(Self, &str)> {
@@ -115,29 +112,23 @@ impl PartialString {
self.buf = alloc::alloc(layout) as *const _; self.buf = alloc::alloc(layout) as *const _;
self.len = terminator_idx + '\u{0}'.len_utf8(); self.len = terminator_idx + '\u{0}'.len_utf8();
ptr::copy( ptr::copy(src.as_ptr(), self.buf as *mut _, terminator_idx);
src.as_ptr(),
self.buf as *mut _,
terminator_idx,
);
self.write_terminator_at(terminator_idx); self.write_terminator_at(terminator_idx);
Some(if terminator_idx != src.as_bytes().len() { Some(if terminator_idx != src.as_bytes().len() {
(self, &src[terminator_idx ..]) (self, &src[terminator_idx..])
} else { } else {
(self, "") (self, "")
}) })
} }
pub(super) pub(super) fn clone_from_offset(&self, n: usize) -> Self {
fn clone_from_offset(&self, n: usize) -> Self { let len = if self.len - '\u{0}'.len_utf8() > n {
let len = self.len - n - '\u{0}'.len_utf8()
if self.len - '\u{0}'.len_utf8() > n { } else {
self.len - n - '\u{0}'.len_utf8() 0
} else { };
0
};
let mut pstr = PartialString { let mut pstr = PartialString {
buf: ptr::null_mut(), buf: ptr::null_mut(),
@@ -168,18 +159,14 @@ impl PartialString {
} }
#[inline] #[inline]
pub(super) pub(super) fn write_terminator_at(&mut self, index: usize) {
fn write_terminator_at(&mut self, index: usize) {
unsafe { unsafe {
ptr::write( ptr::write((self.buf as usize + index) as *mut u8, 0u8);
(self.buf as usize + index) as *mut u8,
0u8,
);
} }
} }
#[inline] #[inline]
pub fn range_from(&self, index: RangeFrom<usize>) -> PStrIter { pub(crate) fn range_from(&self, index: RangeFrom<usize>) -> PStrIter {
if self.len >= '\u{0}'.len_utf8() { if self.len >= '\u{0}'.len_utf8() {
PStrIter::from(self.buf, self.len - '\u{0}'.len_utf8(), index.start) PStrIter::from(self.buf, self.len - '\u{0}'.len_utf8(), index.start)
} else { } else {
@@ -188,21 +175,18 @@ impl PartialString {
} }
#[inline] #[inline]
pub fn at_end(&self, end_n: usize) -> bool { pub(crate) fn at_end(&self, end_n: usize) -> bool {
end_n + 1 == self.len end_n + 1 == self.len
} }
#[inline] #[inline]
pub fn as_str_from(&self, n: usize) -> &str { pub(crate) fn as_str_from(&self, n: usize) -> &str {
unsafe { unsafe {
let slice = slice::from_raw_parts( let slice = slice::from_raw_parts(self.buf, self.len - '\u{0}'.len_utf8());
self.buf,
self.len - '\u{0}'.len_utf8(),
);
let s = str::from_utf8(slice).unwrap(); let s = str::from_utf8(slice).unwrap();
&s[n ..] &s[n..]
} }
} }
} }
@@ -216,8 +200,7 @@ pub(crate) struct HeapPStrIter<'a> {
impl<'a> HeapPStrIter<'a> { impl<'a> HeapPStrIter<'a> {
#[inline] #[inline]
pub(super) pub(super) fn new(machine_st: &'a MachineState, focus: Addr) -> Self {
fn new(machine_st: &'a MachineState, focus: Addr) -> Self {
HeapPStrIter { HeapPStrIter {
focus, focus,
machine_st, machine_st,
@@ -226,14 +209,12 @@ impl<'a> HeapPStrIter<'a> {
} }
#[inline] #[inline]
pub(crate) pub(crate) fn focus(&self) -> Addr {
fn focus(&self) -> Addr {
self.machine_st.store(self.machine_st.deref(self.focus)) self.machine_st.store(self.machine_st.deref(self.focus))
} }
#[inline] #[inline]
pub(crate) pub(crate) fn to_string(&mut self) -> String {
fn to_string(&mut self) -> String {
let mut buf = String::new(); let mut buf = String::new();
while let Some(iteratee) = self.next() { while let Some(iteratee) = self.next() {
@@ -241,16 +222,14 @@ impl<'a> HeapPStrIter<'a> {
PStrIteratee::Char(c) => { PStrIteratee::Char(c) => {
buf.push(c); buf.push(c);
} }
PStrIteratee::PStrSegment(h, n) => { PStrIteratee::PStrSegment(h, n) => match &self.machine_st.heap[h] {
match &self.machine_st.heap[h] { HeapCellValue::PartialString(ref pstr, _) => {
HeapCellValue::PartialString(ref pstr, _) => { buf += pstr.as_str_from(n);
buf += pstr.as_str_from(n);
}
_ => {
unreachable!()
}
} }
} _ => {
unreachable!()
}
},
} }
} }
@@ -291,7 +270,9 @@ impl<'a> Iterator for HeapPStrIter<'a> {
} }
} }
Addr::Lis(l) => { Addr::Lis(l) => {
let addr = self.machine_st.store(self.machine_st.deref(Addr::HeapCell(l))); let addr = self
.machine_st
.store(self.machine_st.deref(Addr::HeapCell(l)));
let opt_c = match addr { let opt_c = match addr {
Addr::Con(h) if self.machine_st.heap.atom_at(h) => { Addr::Con(h) if self.machine_st.heap.atom_at(h) => {
@@ -305,12 +286,8 @@ impl<'a> Iterator for HeapPStrIter<'a> {
unreachable!() unreachable!()
} }
} }
Addr::Char(c) => { Addr::Char(c) => Some(c),
Some(c) _ => None,
}
_ => {
None
}
}; };
if let Some(c) = opt_c { if let Some(c) = opt_c {
@@ -332,8 +309,7 @@ impl<'a> Iterator for HeapPStrIter<'a> {
} }
#[inline] #[inline]
pub(super) pub(super) fn compare_pstr_prefixes<'a>(
fn compare_pstr_prefixes<'a>(
i1: &mut HeapPStrIter<'a>, i1: &mut HeapPStrIter<'a>,
i2: &mut HeapPStrIter<'a>, i2: &mut HeapPStrIter<'a>,
) -> Option<Ordering> { ) -> Option<Ordering> {
@@ -425,25 +401,16 @@ fn compare_pstr_prefixes<'a>(
} }
return match (i1.focus(), i2.focus()) { return match (i1.focus(), i2.focus()) {
(Addr::EmptyList, Addr::EmptyList) => { (Addr::EmptyList, Addr::EmptyList) => Some(Ordering::Equal),
Some(Ordering::Equal) (Addr::EmptyList, _) => Some(Ordering::Less),
} (_, Addr::EmptyList) => Some(Ordering::Greater),
(Addr::EmptyList, _) => { _ => None,
Some(Ordering::Less)
}
(_, Addr::EmptyList) => {
Some(Ordering::Greater)
}
_ => {
None
}
}; };
} }
} }
#[inline] #[inline]
pub(super) pub(super) fn compare_pstr_to_string<'a>(
fn compare_pstr_to_string<'a>(
heap_pstr_iter: &mut HeapPStrIter<'a>, heap_pstr_iter: &mut HeapPStrIter<'a>,
s: &String, s: &String,
) -> Option<usize> { ) -> Option<usize> {
@@ -452,7 +419,7 @@ fn compare_pstr_to_string<'a>(
while let Some(iteratee) = heap_pstr_iter.next() { while let Some(iteratee) = heap_pstr_iter.next() {
match iteratee { match iteratee {
PStrIteratee::Char(c1) => { PStrIteratee::Char(c1) => {
if let Some(c2) = s[s_offset ..].chars().next() { if let Some(c2) = s[s_offset..].chars().next() {
if c1 != c2 { if c1 != c2 {
return None; return None;
} else { } else {
@@ -462,31 +429,28 @@ fn compare_pstr_to_string<'a>(
return Some(s_offset); return Some(s_offset);
} }
} }
PStrIteratee::PStrSegment(h, n) => { PStrIteratee::PStrSegment(h, n) => match heap_pstr_iter.machine_st.heap[h] {
match heap_pstr_iter.machine_st.heap[h] { HeapCellValue::PartialString(ref pstr, _) => {
HeapCellValue::PartialString(ref pstr, _) => { let t = pstr.as_str_from(n);
let t = pstr.as_str_from(n);
if s[s_offset ..].starts_with(t) { if s[s_offset..].starts_with(t) {
s_offset += t.len(); s_offset += t.len();
} else if t.starts_with(&s[s_offset ..]) { } else if t.starts_with(&s[s_offset..]) {
heap_pstr_iter.focus = heap_pstr_iter.focus = Addr::PStrLocation(h, n + s[s_offset..].len());
Addr::PStrLocation(h, n + s[s_offset ..].len());
s_offset += s[s_offset ..].len(); s_offset += s[s_offset..].len();
return Some(s_offset); return Some(s_offset);
} else { } else {
return None; return None;
}
}
_ => {
unreachable!()
} }
} }
} _ => {
unreachable!()
}
},
} }
if s[s_offset ..].is_empty() { if s[s_offset..].is_empty() {
return Some(s_offset); return Some(s_offset);
} }
} }

View File

@@ -30,7 +30,7 @@ pub(crate) enum CutContext {
HasCutVariable, HasCutVariable,
} }
pub fn fold_by_str<I>(terms: I, mut term: Term, sym: ClauseName) -> Term pub(crate) fn fold_by_str<I>(terms: I, mut term: Term, sym: ClauseName) -> Term
where where
I: DoubleEndedIterator<Item = Term>, I: DoubleEndedIterator<Item = Term>,
{ {
@@ -46,7 +46,11 @@ where
term term
} }
pub fn to_op_decl(prec: usize, spec: &str, name: ClauseName) -> Result<OpDecl, CompilationError> { pub(crate) fn to_op_decl(
prec: usize,
spec: &str,
name: ClauseName,
) -> Result<OpDecl, CompilationError> {
match spec { match spec {
"xfx" => Ok(OpDecl::new(prec, XFX, name)), "xfx" => Ok(OpDecl::new(prec, XFX, name)),
"xfy" => Ok(OpDecl::new(prec, XFY, name)), "xfy" => Ok(OpDecl::new(prec, XFY, name)),
@@ -825,11 +829,7 @@ impl Preprocessor {
cut_context: CutContext, cut_context: CutContext,
) -> Result<Rule, CompilationError> { ) -> Result<Rule, CompilationError> {
let post_head_terms: Vec<_> = terms.drain(1..).collect(); let post_head_terms: Vec<_> = terms.drain(1..).collect();
let mut query_terms = self.setup_query( let mut query_terms = self.setup_query(load_state, post_head_terms, cut_context)?;
load_state,
post_head_terms,
cut_context,
)?;
let clauses = query_terms.drain(1..).collect(); let clauses = query_terms.drain(1..).collect();
let qt = query_terms.pop().unwrap(); let qt = query_terms.pop().unwrap();
@@ -894,11 +894,7 @@ impl Preprocessor {
let mut results = VecDeque::new(); let mut results = VecDeque::new();
for term in terms.into_iter() { for term in terms.into_iter() {
results.push_back(self.try_term_to_tl( results.push_back(self.try_term_to_tl(load_state, term, cut_context)?);
load_state,
term,
cut_context,
)?);
} }
Ok(results) Ok(results)

View File

@@ -23,9 +23,7 @@ impl RawBlockTraits for StackTraits {
#[inline] #[inline]
fn base_offset(base: *const u8) -> *const u8 { fn base_offset(base: *const u8) -> *const u8 {
unsafe { unsafe { base.offset(Self::align() as isize) }
base.offset(Self::align() as isize)
}
} }
} }
@@ -37,7 +35,7 @@ const fn prelude_size<Prelude>() -> usize {
} }
#[derive(Debug)] #[derive(Debug)]
pub struct Stack { pub(crate) struct Stack {
buf: RawBlock<StackTraits>, buf: RawBlock<StackTraits>,
_marker: PhantomData<Addr>, _marker: PhantomData<Addr>,
} }
@@ -50,25 +48,25 @@ impl Drop for Stack {
} }
#[derive(Debug, Clone, Copy)] #[derive(Debug, Clone, Copy)]
pub struct FramePrelude { pub(crate) struct FramePrelude {
pub num_cells: usize, pub(crate) num_cells: usize,
} }
#[derive(Debug)] #[derive(Debug)]
pub struct AndFramePrelude { pub(crate) struct AndFramePrelude {
pub univ_prelude: FramePrelude, pub(crate) univ_prelude: FramePrelude,
pub e: usize, pub(crate) e: usize,
pub cp: LocalCodePtr, pub(crate) cp: LocalCodePtr,
pub interrupt_cp: LocalCodePtr, pub(crate) interrupt_cp: LocalCodePtr,
} }
#[derive(Debug)] #[derive(Debug)]
pub struct AndFrame { pub(crate) struct AndFrame {
pub prelude: AndFramePrelude, pub(crate) prelude: AndFramePrelude,
} }
impl AndFrame { impl AndFrame {
pub fn size_of(num_cells: usize) -> usize { pub(crate) fn size_of(num_cells: usize) -> usize {
prelude_size::<AndFramePrelude>() + num_cells * mem::size_of::<Addr>() prelude_size::<AndFramePrelude>() + num_cells * mem::size_of::<Addr>()
} }
} }
@@ -104,23 +102,23 @@ impl IndexMut<usize> for AndFrame {
} }
#[derive(Debug)] #[derive(Debug)]
pub struct OrFramePrelude { pub(crate) struct OrFramePrelude {
pub univ_prelude: FramePrelude, pub(crate) univ_prelude: FramePrelude,
pub e: usize, pub(crate) e: usize,
pub cp: LocalCodePtr, pub(crate) cp: LocalCodePtr,
pub b: usize, pub(crate) b: usize,
pub bp: LocalCodePtr, pub(crate) bp: LocalCodePtr,
pub tr: usize, pub(crate) tr: usize,
pub pstr_tr: usize, pub(crate) pstr_tr: usize,
pub h: usize, pub(crate) h: usize,
pub b0: usize, pub(crate) b0: usize,
pub attr_var_init_queue_b: usize, pub(crate) attr_var_init_queue_b: usize,
pub attr_var_init_bindings_b: usize, pub(crate) attr_var_init_bindings_b: usize,
} }
#[derive(Debug)] #[derive(Debug)]
pub struct OrFrame { pub(crate) struct OrFrame {
pub prelude: OrFramePrelude, pub(crate) prelude: OrFramePrelude,
} }
impl Index<usize> for OrFrame { impl Index<usize> for OrFrame {
@@ -156,24 +154,27 @@ impl IndexMut<usize> for OrFrame {
} }
impl OrFrame { impl OrFrame {
pub fn size_of(num_cells: usize) -> usize { pub(crate) fn size_of(num_cells: usize) -> usize {
prelude_size::<OrFramePrelude>() + num_cells * mem::size_of::<Addr>() prelude_size::<OrFramePrelude>() + num_cells * mem::size_of::<Addr>()
} }
} }
impl Stack { impl Stack {
pub fn new() -> Self { pub(crate) fn new() -> Self {
Stack { buf: RawBlock::new(), _marker: PhantomData } Stack {
buf: RawBlock::new(),
_marker: PhantomData,
}
} }
pub fn allocate_and_frame(&mut self, num_cells: usize) -> usize { pub(crate) fn allocate_and_frame(&mut self, num_cells: usize) -> usize {
let frame_size = AndFrame::size_of(num_cells); let frame_size = AndFrame::size_of(num_cells);
unsafe { unsafe {
let new_top = self.buf.new_block(frame_size); let new_top = self.buf.new_block(frame_size);
let e = self.buf.top as usize - self.buf.base as usize; let e = self.buf.top as usize - self.buf.base as usize;
for idx in 0 .. num_cells { for idx in 0..num_cells {
let offset = prelude_size::<AndFramePrelude>() + idx * mem::size_of::<Addr>(); let offset = prelude_size::<AndFramePrelude>() + idx * mem::size_of::<Addr>();
ptr::write( ptr::write(
(self.buf.top as usize + offset) as *mut Addr, (self.buf.top as usize + offset) as *mut Addr,
@@ -190,14 +191,14 @@ impl Stack {
} }
} }
pub fn allocate_or_frame(&mut self, num_cells: usize) -> usize { pub(crate) fn allocate_or_frame(&mut self, num_cells: usize) -> usize {
let frame_size = OrFrame::size_of(num_cells); let frame_size = OrFrame::size_of(num_cells);
unsafe { unsafe {
let new_top = self.buf.new_block(frame_size); let new_top = self.buf.new_block(frame_size);
let b = self.buf.top as usize - self.buf.base as usize; let b = self.buf.top as usize - self.buf.base as usize;
for idx in 0 .. num_cells { for idx in 0..num_cells {
let offset = prelude_size::<OrFramePrelude>() + idx * mem::size_of::<Addr>(); let offset = prelude_size::<OrFramePrelude>() + idx * mem::size_of::<Addr>();
ptr::write( ptr::write(
(self.buf.top as usize + offset) as *mut Addr, (self.buf.top as usize + offset) as *mut Addr,
@@ -215,7 +216,7 @@ impl Stack {
} }
#[inline] #[inline]
pub fn index_and_frame(&self, e: usize) -> &AndFrame { pub(crate) fn index_and_frame(&self, e: usize) -> &AndFrame {
unsafe { unsafe {
let ptr = self.buf.base as usize + e; let ptr = self.buf.base as usize + e;
&*(ptr as *const AndFrame) &*(ptr as *const AndFrame)
@@ -223,7 +224,7 @@ impl Stack {
} }
#[inline] #[inline]
pub fn index_and_frame_mut(&mut self, e: usize) -> &mut AndFrame { pub(crate) fn index_and_frame_mut(&mut self, e: usize) -> &mut AndFrame {
unsafe { unsafe {
let ptr = self.buf.base as usize + e; let ptr = self.buf.base as usize + e;
&mut *(ptr as *mut AndFrame) &mut *(ptr as *mut AndFrame)
@@ -231,7 +232,7 @@ impl Stack {
} }
#[inline] #[inline]
pub fn index_or_frame(&self, b: usize) -> &OrFrame { pub(crate) fn index_or_frame(&self, b: usize) -> &OrFrame {
unsafe { unsafe {
let ptr = self.buf.base as usize + b; let ptr = self.buf.base as usize + b;
&*(ptr as *const OrFrame) &*(ptr as *const OrFrame)
@@ -239,7 +240,7 @@ impl Stack {
} }
#[inline] #[inline]
pub fn index_or_frame_mut(&mut self, b: usize) -> &mut OrFrame { pub(crate) fn index_or_frame_mut(&mut self, b: usize) -> &mut OrFrame {
unsafe { unsafe {
let ptr = self.buf.base as usize + b; let ptr = self.buf.base as usize + b;
&mut *(ptr as *mut OrFrame) &mut *(ptr as *mut OrFrame)
@@ -247,7 +248,7 @@ impl Stack {
} }
#[inline] #[inline]
pub fn truncate(&mut self, b: usize) { pub(crate) fn truncate(&mut self, b: usize) {
if b == 0 { if b == 0 {
self.inner_truncate(mem::align_of::<Addr>()); self.inner_truncate(mem::align_of::<Addr>());
} else { } else {
@@ -264,7 +265,7 @@ impl Stack {
} }
} }
pub fn drop_in_place(&mut self) { pub(crate) fn drop_in_place(&mut self) {
self.truncate(mem::align_of::<Addr>()); self.truncate(mem::align_of::<Addr>());
debug_assert!(if self.buf.top.is_null() { debug_assert!(if self.buf.top.is_null() {

View File

@@ -23,7 +23,7 @@ use std::rc::Rc;
use native_tls::TlsStream; use native_tls::TlsStream;
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum StreamType { pub(crate) enum StreamType {
Binary, Binary,
Text, Text,
} }
@@ -55,14 +55,14 @@ impl StreamType {
} }
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum EOFAction { pub(crate) enum EOFAction {
EOFCode, EOFCode,
Error, Error,
Reset, Reset,
} }
#[derive(Debug, PartialEq)] #[derive(Debug, PartialEq)]
pub enum AtEndOfStream { pub(crate) enum AtEndOfStream {
Not, Not,
At, At,
Past, Past,
@@ -198,7 +198,7 @@ impl fmt::Debug for StreamInstance {
} }
#[derive(Debug)] #[derive(Debug)]
struct InnerStream { pub(crate) struct InnerStream {
options: StreamOptions, options: StreamOptions,
stream_inst: StreamInstance, stream_inst: StreamInstance,
past_end_of_stream: bool, past_end_of_stream: bool,
@@ -211,14 +211,12 @@ struct WrappedStreamInstance(Rc<RefCell<InnerStream>>);
impl WrappedStreamInstance { impl WrappedStreamInstance {
#[inline] #[inline]
fn new(stream_inst: StreamInstance, past_end_of_stream: bool) -> Self { fn new(stream_inst: StreamInstance, past_end_of_stream: bool) -> Self {
WrappedStreamInstance(Rc::new(RefCell::new( WrappedStreamInstance(Rc::new(RefCell::new(InnerStream {
InnerStream { options: StreamOptions::default(),
options: StreamOptions::default(), stream_inst,
stream_inst, past_end_of_stream,
past_end_of_stream, lines_read: 0,
lines_read: 0, })))
}
)))
} }
} }
@@ -287,11 +285,11 @@ impl fmt::Display for StreamError {
impl Error for StreamError {} impl Error for StreamError {}
#[derive(Debug, Clone, PartialEq, Eq, Hash)] #[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct StreamOptions { pub(crate) struct StreamOptions {
pub stream_type: StreamType, pub(crate) stream_type: StreamType,
pub reposition: bool, pub(crate) reposition: bool,
pub alias: Option<ClauseName>, pub(crate) alias: Option<ClauseName>,
pub eof_action: EOFAction, pub(crate) eof_action: EOFAction,
} }
impl Default for StreamOptions { impl Default for StreamOptions {
@@ -366,6 +364,23 @@ impl Stream {
ptr as *const u8 ptr as *const u8
} }
pub fn bytes(&self) -> Option<std::cell::Ref<Vec<u8>>> {
// if Ref had an and_then function this could be simplified
let val = std::cell::Ref::map(self.stream_inst.0.borrow(), |inner_stream| {
&inner_stream.stream_inst
});
match std::ops::Deref::deref(&val) {
StreamInstance::Bytes(_) => Some(std::cell::Ref::map(
std::cell::Ref::clone(&val),
|instance| match instance {
StreamInstance::Bytes(cursor) => cursor.get_ref(),
_ => unreachable!(),
},
)),
_ => None,
}
}
#[inline] #[inline]
pub(crate) fn lines_read(&mut self) -> usize { pub(crate) fn lines_read(&mut self) -> usize {
self.stream_inst.0.borrow_mut().lines_read self.stream_inst.0.borrow_mut().lines_read
@@ -378,30 +393,29 @@ impl Stream {
#[inline] #[inline]
pub(crate) fn options(&self) -> std::cell::Ref<'_, StreamOptions> { pub(crate) fn options(&self) -> std::cell::Ref<'_, StreamOptions> {
std::cell::Ref::map( std::cell::Ref::map(self.stream_inst.0.borrow(), |inner_stream| {
self.stream_inst.0.borrow(), &inner_stream.options
|inner_stream| &inner_stream.options, })
)
} }
#[inline] #[inline]
pub(crate) fn options_mut(&mut self) -> std::cell::RefMut<'_, StreamOptions> { pub(crate) fn options_mut(&mut self) -> std::cell::RefMut<'_, StreamOptions> {
std::cell::RefMut::map( std::cell::RefMut::map(self.stream_inst.0.borrow_mut(), |inner_stream| {
self.stream_inst.0.borrow_mut(), &mut inner_stream.options
|inner_stream| &mut inner_stream.options, })
)
} }
#[inline] #[inline]
pub(crate) fn position(&mut self) -> Option<(u64, usize)> { // returns lines_read, position. pub(crate) fn position(&mut self) -> Option<(u64, usize)> {
// returns lines_read, position.
let result = match self.stream_inst.0.borrow_mut().stream_inst { let result = match self.stream_inst.0.borrow_mut().stream_inst {
StreamInstance::InputFile(_, ref mut file) => file.seek(SeekFrom::Current(0)).ok(), StreamInstance::InputFile(_, ref mut file) => file.seek(SeekFrom::Current(0)).ok(),
StreamInstance::TcpStream(..) | StreamInstance::TcpStream(..)
StreamInstance::TlsStream(..) | | StreamInstance::TlsStream(..)
StreamInstance::ReadlineStream(..) | | StreamInstance::ReadlineStream(..)
StreamInstance::StaticStr(..) | | StreamInstance::StaticStr(..)
StreamInstance::PausedPrologStream(..) | | StreamInstance::PausedPrologStream(..)
StreamInstance::Bytes(..) => Some(0), | StreamInstance::Bytes(..) => Some(0),
_ => None, _ => None,
}; };
@@ -411,9 +425,11 @@ impl Stream {
#[inline] #[inline]
pub(crate) fn set_position(&mut self, position: u64) { pub(crate) fn set_position(&mut self, position: u64) {
match self.stream_inst.0.borrow_mut().deref_mut() { match self.stream_inst.0.borrow_mut().deref_mut() {
InnerStream { past_end_of_stream, InnerStream {
stream_inst: StreamInstance::InputFile(_, ref mut file), past_end_of_stream,
.. } => { stream_inst: StreamInstance::InputFile(_, ref mut file),
..
} => {
file.seek(SeekFrom::Start(position)).unwrap(); file.seek(SeekFrom::Start(position)).unwrap();
if let Ok(metadata) = file.metadata() { if let Ok(metadata) = file.metadata() {
@@ -446,31 +462,31 @@ impl Stream {
} }
match self.stream_inst.0.borrow_mut().deref_mut() { match self.stream_inst.0.borrow_mut().deref_mut() {
InnerStream { past_end_of_stream, InnerStream {
stream_inst: StreamInstance::InputFile(_, ref mut file), past_end_of_stream,
.. } => { stream_inst: StreamInstance::InputFile(_, ref mut file),
match file.metadata() { ..
Ok(metadata) => { } => match file.metadata() {
if let Ok(position) = file.seek(SeekFrom::Current(0)) { Ok(metadata) => {
return match position.cmp(&metadata.len()) { if let Ok(position) = file.seek(SeekFrom::Current(0)) {
Ordering::Equal => AtEndOfStream::At, return match position.cmp(&metadata.len()) {
Ordering::Less => AtEndOfStream::Not, Ordering::Equal => AtEndOfStream::At,
Ordering::Greater => { Ordering::Less => AtEndOfStream::Not,
*past_end_of_stream = true; Ordering::Greater => {
AtEndOfStream::Past *past_end_of_stream = true;
} AtEndOfStream::Past
}; }
} else { };
*past_end_of_stream = true; } else {
AtEndOfStream::Past
}
}
_ => {
*past_end_of_stream = true; *past_end_of_stream = true;
AtEndOfStream::Past AtEndOfStream::Past
} }
} }
} _ => {
*past_end_of_stream = true;
AtEndOfStream::Past
}
},
_ => AtEndOfStream::Not, _ => AtEndOfStream::Not,
} }
} }
@@ -488,11 +504,11 @@ impl Stream {
#[inline] #[inline]
pub(crate) fn mode(&self) -> &'static str { pub(crate) fn mode(&self) -> &'static str {
match self.stream_inst.0.borrow().stream_inst { match self.stream_inst.0.borrow().stream_inst {
StreamInstance::Bytes(_) | StreamInstance::Bytes(_)
StreamInstance::PausedPrologStream(..) | | StreamInstance::PausedPrologStream(..)
StreamInstance::ReadlineStream(_) | | StreamInstance::ReadlineStream(_)
StreamInstance::StaticStr(_) | | StreamInstance::StaticStr(_)
StreamInstance::InputFile(..) => "read", | StreamInstance::InputFile(..) => "read",
StreamInstance::TcpStream(..) | StreamInstance::TlsStream(..) => "read_append", StreamInstance::TcpStream(..) | StreamInstance::TlsStream(..) => "read_append",
StreamInstance::OutputFile(_, _, true) => "append", StreamInstance::OutputFile(_, _, true) => "append",
StreamInstance::Stdout | StreamInstance::OutputFile(_, _, false) => "write", StreamInstance::Stdout | StreamInstance::OutputFile(_, _, false) => "write",
@@ -508,7 +524,7 @@ impl Stream {
} }
#[inline] #[inline]
pub(crate) fn stdout() -> Self { pub fn stdout() -> Self {
Stream::from_inst(StreamInstance::Stdout) Stream::from_inst(StreamInstance::Stdout)
} }
@@ -568,13 +584,13 @@ impl Stream {
#[inline] #[inline]
pub(crate) fn is_input_stream(&self) -> bool { pub(crate) fn is_input_stream(&self) -> bool {
match self.stream_inst.0.borrow().stream_inst { match self.stream_inst.0.borrow().stream_inst {
StreamInstance::TcpStream(..) | StreamInstance::TcpStream(..)
StreamInstance::TlsStream(..) | | StreamInstance::TlsStream(..)
StreamInstance::Bytes(_) | | StreamInstance::Bytes(_)
StreamInstance::PausedPrologStream(..) | | StreamInstance::PausedPrologStream(..)
StreamInstance::ReadlineStream(_) | | StreamInstance::ReadlineStream(_)
StreamInstance::StaticStr(_) | | StreamInstance::StaticStr(_)
StreamInstance::InputFile(..) => true, | StreamInstance::InputFile(..) => true,
_ => false, _ => false,
} }
} }
@@ -582,11 +598,11 @@ impl Stream {
#[inline] #[inline]
pub(crate) fn is_output_stream(&self) -> bool { pub(crate) fn is_output_stream(&self) -> bool {
match self.stream_inst.0.borrow().stream_inst { match self.stream_inst.0.borrow().stream_inst {
StreamInstance::Stdout | StreamInstance::Stdout
StreamInstance::TcpStream(..) | | StreamInstance::TcpStream(..)
StreamInstance::TlsStream(..) | | StreamInstance::TlsStream(..)
StreamInstance::Bytes(_) | | StreamInstance::Bytes(_)
StreamInstance::OutputFile(..) => true, | StreamInstance::OutputFile(..) => true,
_ => false, _ => false,
} }
} }
@@ -1084,11 +1100,11 @@ impl Write for Stream {
StreamInstance::TlsStream(_, ref mut tls_stream) => tls_stream.write(buf), StreamInstance::TlsStream(_, ref mut tls_stream) => tls_stream.write(buf),
StreamInstance::Bytes(ref mut cursor) => cursor.write(buf), StreamInstance::Bytes(ref mut cursor) => cursor.write(buf),
StreamInstance::Stdout => stdout().write(buf), StreamInstance::Stdout => stdout().write(buf),
StreamInstance::PausedPrologStream(..) | StreamInstance::PausedPrologStream(..)
StreamInstance::StaticStr(_) | | StreamInstance::StaticStr(_)
StreamInstance::ReadlineStream(_) | | StreamInstance::ReadlineStream(_)
StreamInstance::InputFile(..) | | StreamInstance::InputFile(..)
StreamInstance::Null => Err(std::io::Error::new( | StreamInstance::Null => Err(std::io::Error::new(
ErrorKind::PermissionDenied, ErrorKind::PermissionDenied,
StreamError::WriteToInputStream, StreamError::WriteToInputStream,
)), )),
@@ -1102,11 +1118,11 @@ impl Write for Stream {
StreamInstance::TlsStream(_, ref mut tls_stream) => tls_stream.flush(), StreamInstance::TlsStream(_, ref mut tls_stream) => tls_stream.flush(),
StreamInstance::Bytes(ref mut cursor) => cursor.flush(), StreamInstance::Bytes(ref mut cursor) => cursor.flush(),
StreamInstance::Stdout => stdout().flush(), StreamInstance::Stdout => stdout().flush(),
StreamInstance::PausedPrologStream(..) | StreamInstance::PausedPrologStream(..)
StreamInstance::StaticStr(_) | | StreamInstance::StaticStr(_)
StreamInstance::ReadlineStream(_) | | StreamInstance::ReadlineStream(_)
StreamInstance::InputFile(..) | | StreamInstance::InputFile(..)
StreamInstance::Null => Err(std::io::Error::new( | StreamInstance::Null => Err(std::io::Error::new(
ErrorKind::PermissionDenied, ErrorKind::PermissionDenied,
StreamError::FlushToInputStream, StreamError::FlushToInputStream,
)), )),

View File

@@ -71,7 +71,7 @@ use base64;
use roxmltree; use roxmltree;
use select; use select;
pub fn get_key() -> KeyEvent { pub(crate) fn get_key() -> KeyEvent {
let key; let key;
enable_raw_mode().expect("failed to enable raw mode"); enable_raw_mode().expect("failed to enable raw mode");
loop { loop {

View File

@@ -78,7 +78,7 @@ impl<'a> TermStream for BootstrappingTermStream<'a> {
} }
} }
pub struct LiveTermStream { pub(crate) struct LiveTermStream {
pub(super) term_queue: VecDeque<Term>, pub(super) term_queue: VecDeque<Term>,
pub(super) listing_src: ListingSource, pub(super) listing_src: ListingSource,
} }
@@ -93,7 +93,7 @@ impl LiveTermStream {
} }
} }
pub struct LoadStatePayload { pub(crate) struct LoadStatePayload {
pub(super) term_stream: LiveTermStream, pub(super) term_stream: LiveTermStream,
pub(super) compilation_target: CompilationTarget, pub(super) compilation_target: CompilationTarget,
pub(super) retraction_info: RetractionInfo, pub(super) retraction_info: RetractionInfo,

View File

@@ -12,7 +12,7 @@ use std::collections::VecDeque;
type SubtermDeque = VecDeque<(usize, usize)>; type SubtermDeque = VecDeque<(usize, usize)>;
pub type PrologStream = ParsingStream<Stream>; pub(crate) type PrologStream = ParsingStream<Stream>;
pub mod readline { pub mod readline {
use crate::machine::streams::Stream; use crate::machine::streams::Stream;
@@ -24,7 +24,7 @@ pub mod readline {
const HISTORY_FILE: &'static str = ".scryer_history"; const HISTORY_FILE: &'static str = ".scryer_history";
pub fn set_prompt(value: bool) { pub(crate) fn set_prompt(value: bool) {
unsafe { unsafe {
PROMPT = value; PROMPT = value;
} }
@@ -49,10 +49,8 @@ pub mod readline {
impl ReadlineStream { impl ReadlineStream {
#[inline] #[inline]
pub fn new(pending_input: String) -> Self { pub(crate) fn new(pending_input: String) -> Self {
let config = Config::builder() let config = Config::builder().check_cursor_position(true).build();
.check_cursor_position(true)
.build();
let mut rl = Editor::<()>::with_config(config); //Editor::<()>::new(); let mut rl = Editor::<()>::with_config(config); //Editor::<()>::new();
if let Some(mut path) = dirs_next::home_dir() { if let Some(mut path) = dirs_next::home_dir() {
@@ -72,7 +70,7 @@ pub mod readline {
} }
#[inline] #[inline]
pub fn input_stream(pending_input: String) -> Stream { pub(crate) fn input_stream(pending_input: String) -> Stream {
Stream::from(Self::new(pending_input)) Stream::from(Self::new(pending_input))
} }
@@ -116,7 +114,7 @@ pub mod readline {
} }
} }
pub fn peek_byte(&mut self) -> std::io::Result<u8> { pub(crate) fn peek_byte(&mut self) -> std::io::Result<u8> {
set_prompt(false); set_prompt(false);
loop { loop {
@@ -137,7 +135,7 @@ pub mod readline {
} }
} }
pub fn peek_char(&mut self) -> std::io::Result<char> { pub(crate) fn peek_char(&mut self) -> std::io::Result<char> {
set_prompt(false); set_prompt(false);
loop { loop {
@@ -176,7 +174,7 @@ pub mod readline {
} }
impl MachineState { impl MachineState {
pub fn devour_whitespace( pub(crate) fn devour_whitespace(
&mut self, &mut self,
mut inner: Stream, mut inner: Stream,
atom_tbl: TabledData<Atom>, atom_tbl: TabledData<Atom>,
@@ -196,7 +194,7 @@ impl MachineState {
result result
} }
pub fn read( pub(crate) fn read(
&mut self, &mut self,
mut inner: Stream, mut inner: Stream,
atom_tbl: TabledData<Atom>, atom_tbl: TabledData<Atom>,
@@ -241,7 +239,7 @@ struct TermWriter<'a> {
} }
#[derive(Debug)] #[derive(Debug)]
pub struct TermWriteResult { pub(crate) struct TermWriteResult {
pub(crate) heap_loc: usize, pub(crate) heap_loc: usize,
pub(crate) var_dict: HeapVarDict, pub(crate) var_dict: HeapVarDict,
} }

View File

@@ -5,7 +5,7 @@ use crate::forms::*;
use crate::instructions::*; use crate::instructions::*;
use crate::iterators::*; use crate::iterators::*;
pub trait CompilationTarget<'a> { pub(crate) trait CompilationTarget<'a> {
type Iterator: Iterator<Item = TermRef<'a>>; type Iterator: Iterator<Item = TermRef<'a>>;
fn iter(_: &'a Term) -> Self::Iterator; fn iter(_: &'a Term) -> Self::Iterator;

6
src/tests/hello_world.pl Normal file
View File

@@ -0,0 +1,6 @@
:- use_module(library(debug)).
:- use_module(library(format)).
hello_world :- write('Hello World!'), nl.
:- initialization(hello_world).

65
tests/scryer.rs Normal file
View File

@@ -0,0 +1,65 @@
/// Loads the file and if some expected output is given checks that it matches
fn test_file(file: &str, expected: Option<&[u8]>) {
use scryer_prolog::*;
let input = machine::Stream::from("");
let output = machine::Stream::from(String::new());
let mut wam = machine::Machine::new(input, output.clone());
wam.load_file(
file.into(),
machine::Stream::from(
std::fs::read_to_string(AsRef::<std::path::Path>::as_ref(file)).unwrap(),
),
);
if let Some(expected) = expected {
let output = output.bytes().unwrap();
assert_eq!(output.as_slice(), expected);
}
}
#[test]
fn builtins() {
test_file("src/tests/builtins.pl", Some(b""));
}
#[test]
fn call_with_inference_limit() {
test_file("src/tests/call_with_inference_limit.pl", Some(b""));
}
#[test]
fn facts() {
test_file("src/tests/facts.pl", Some(b""));
}
#[test]
fn hello_world() {
test_file(
"src/tests/hello_world.pl",
Some("Hello World!\n".as_bytes()),
);
}
#[test]
fn predicates() {
test_file("src/tests/predicates.pl", Some(b""));
}
#[test]
fn rules() {
test_file("src/tests/rules.pl", Some(b""));
}
#[test]
#[ignore] // ignored as this does not appear to terminate
fn setup_call_cleanup() {
test_file("src/tests/setup_call_cleanup.pl", Some(b""));
}
#[test]
fn clpz() {
test_file("src/tests/clpz/test_clpz.pl", Some(b""));
}