summaryrefslogtreecommitdiff
path: root/yjit/src/lib.rs
blob: 9b19c7d6a0ad65b57d17c5cf19a187dd321acb65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Clippy disagreements
#![allow(clippy::style)] // We are laid back about style
#![allow(clippy::too_many_arguments)] // :shrug:
#![allow(clippy::identity_op)] // Sometimes we do it for style

// Temporary while switching to the new backend
#![allow(dead_code)]
#![allow(unused)]

mod asm;
mod backend;
mod codegen;
mod core;
mod cruby;
mod disasm;
mod invariants;
mod options;
mod stats;
mod utils;
mod yjit;
mod virtualmem;