transition to MachineCodeIndices internally

This commit is contained in:
Mark Thom
2018-09-08 02:31:33 -06:00
parent 8344575ae6
commit 32439a1da5
12 changed files with 167 additions and 82 deletions

View File

@@ -3,22 +3,22 @@ extern crate ordered_float;
extern crate prolog_parser;
#[macro_use] pub mod instructions;
pub mod and_stack;
#[macro_use] pub mod macros;
#[macro_use] pub mod allocator;
pub mod toplevel;
mod and_stack;
#[macro_use] mod macros;
#[macro_use] mod allocator;
mod toplevel;
pub mod machine;
pub mod compile;
pub mod arithmetic;
pub mod codegen;
pub mod copier;
pub mod debray_allocator;
pub mod fixtures;
pub mod heap_iter;
pub mod indexing;
mod arithmetic;
mod codegen;
mod copier;
mod debray_allocator;
mod fixtures;
mod heap_iter;
mod indexing;
pub mod io;
pub mod iterators;
pub mod or_stack;
mod iterators;
mod or_stack;
pub mod heap_print;
pub mod targets;
pub mod read;
mod targets;
mod read;