lib.rs 499 B

123456789101112131415161718192021222324252627282930313233343536373839
  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 control_flow;
  19. mod cpu_context;
  20. mod gen;
  21. mod jit;
  22. mod jit_instructions;
  23. mod leb;
  24. mod modrm;
  25. mod opstats;
  26. mod page;
  27. mod prefix;
  28. mod regs;
  29. mod softfloat;
  30. mod state_flags;
  31. mod util;
  32. mod wasmgen;
  33. mod zstd;