lib.rs 446 B

123456789101112131415161718192021222324252627282930313233343536
  1. #![feature(const_fn)]
  2. #![feature(extern_types)]
  3. #![feature(or_patterns)]
  4. #[cfg(test)]
  5. #[macro_use]
  6. extern crate quickcheck;
  7. #[macro_use]
  8. mod dbg;
  9. #[macro_use]
  10. mod paging;
  11. pub mod cpu;
  12. pub mod js_api;
  13. pub mod profiler;
  14. mod analysis;
  15. mod codegen;
  16. mod config;
  17. mod cpu_context;
  18. mod gen;
  19. mod global_pointers;
  20. mod jit;
  21. mod jit_instructions;
  22. mod leb;
  23. mod modrm;
  24. mod opstats;
  25. mod page;
  26. mod prefix;
  27. mod regs;
  28. mod state_flags;
  29. mod util;
  30. mod wasmgen;