summaryrefslogtreecommitdiff
path: root/yjit/src/asm/arm64/inst/mod.rs
blob: 9821e6a334fd7c72dea3e62b3b6231fc6285ef45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// This module contains various A64 instructions and the logic necessary to
// encode them into u32s.

mod atomic;
mod branch;
mod branch_cond;
mod breakpoint;
mod call;
mod conditional;
mod data_imm;
mod data_reg;
mod halfword_imm;
mod load_literal;
mod load_register;
mod load_store;
mod load_store_exclusive;
mod logical_imm;
mod logical_reg;
mod mov;
mod nop;
mod pc_rel;
mod reg_pair;
mod sbfm;
mod shift_imm;
mod sys_reg;
mod test_bit;

pub use atomic::Atomic;
pub use branch::Branch;
pub use branch_cond::BranchCond;
pub use breakpoint::Breakpoint;
pub use call::Call;
pub use conditional::Conditional;
pub use data_imm::DataImm;
pub use data_reg::DataReg;
pub use halfword_imm::HalfwordImm;
pub use load_literal::LoadLiteral;
pub use load_register::LoadRegister;
pub use load_store::LoadStore;
pub use load_store_exclusive::LoadStoreExclusive;
pub use logical_imm::LogicalImm;
pub use logical_reg::LogicalReg;
pub use mov::Mov;
pub use nop::Nop;
pub use pc_rel::PCRelative;
pub use reg_pair::RegisterPair;
pub use sbfm::SBFM;
pub use shift_imm::ShiftImm;
pub use sys_reg::SysReg;
pub use test_bit::TestBit;