lib.rs 481 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #![feature(const_fn)]
  2. #![feature(extern_types)]
  3. #![feature(or_patterns)]
  4. #![allow(const_item_mutation)]
  5. #[cfg(test)]
  6. #[macro_use]
  7. extern crate quickcheck;
  8. #[macro_use]
  9. mod dbg;
  10. #[macro_use]
  11. mod paging;
  12. pub mod cpu;
  13. pub mod js_api;
  14. pub mod profiler;
  15. mod analysis;
  16. mod codegen;
  17. mod config;
  18. mod cpu_context;
  19. mod gen;
  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 softfloat;
  29. mod state_flags;
  30. mod util;
  31. mod wasmgen;
  32. mod zstd;