Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add loongarch64 arch support #4

Merged
merged 16 commits into from
Aug 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,13 @@ jobs:
i686-unknown-linux-gnu,
aarch64-unknown-linux-gnu,
riscv64gc-unknown-linux-gnu,
loongarch64-unknown-linux-gnu,
]
steps:
- name: checkout
uses: actions/checkout@v4
- name: Set up cross
run: cargo install cross
run: cargo install cross --git https://github.com/cross-rs/cross
- name: Build all features
run: cross build --verbose --all-features --target ${{ matrix.target }}
- name: Run tests
Expand Down
11 changes: 11 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

74 changes: 74 additions & 0 deletions src/arch/loongarch64.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
//! loongarch64 arch-sepcific implementations

use crate::{JumpEntry, JumpLabelType};

/// Length of jump instruction to be replaced
pub const ARCH_JUMP_INS_LENGTH: usize = 4;

const LOONGARCH64_INSN_NOP: u32 = 0x03400000;
const LOONGARCH64_INSN_B: u32 = 0x50000000;
/// New instruction generated according to jump label type and jump entry
#[inline(always)]
pub fn arch_jump_entry_instruction(
jump_label_type: JumpLabelType,
jump_entry: &JumpEntry,
) -> [u8; ARCH_JUMP_INS_LENGTH] {
match jump_label_type {
// 010100 [IMM]
// opcode I26[15:0] I26[25:16]
JumpLabelType::Jmp => {
// Note that loongarch64 only supports relative address within +/-128MB.
// In current implementation, this assumption is always hold.
let relative_addr = (jump_entry.target_addr() - jump_entry.code_addr()) as u32;
// MASK 25:16 = 0b_0000_0011_1111_1111_0000_0000_0000_0000 = 0x03FF0000
// MASK 15:0 = 0b_0000_0000_0000_0000_1111_1111_1111_1111 = 0x0000FFFF
let mut b = LOONGARCH64_INSN_B;
let relative_addr = relative_addr >> 2;
b |= ((relative_addr & 0x03FF0000) >> 16) | ((relative_addr & 0x0000FFFF) << 10);
b.to_ne_bytes()
}
JumpLabelType::Nop => LOONGARCH64_INSN_NOP.to_ne_bytes(),
}
}

#[doc(hidden)]
#[macro_export]
macro_rules! arch_static_key_init_nop_asm_template {
() => {
::core::concat!(
r#"
2:
nop
.pushsection "#,
$crate::os_static_key_sec_name_attr!(),
r#"
.balign 8
.quad 2b - .
.quad {0} - .
.quad {1} + {2} - .
.popsection
"#
)
};
}

#[doc(hidden)]
#[macro_export]
macro_rules! arch_static_key_init_jmp_asm_template {
() => {
::core::concat!(
r#"
2:
b {0}
.pushsection "#,
$crate::os_static_key_sec_name_attr!(),
r#"
.balign 8
.quad 2b - .
.quad {0} - .
.quad {1} + {2} - .
.popsection
"#
)
};
}
6 changes: 5 additions & 1 deletion src/arch/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ pub use aarch64::*;

#[cfg(target_arch = "riscv64")]
mod riscv64;

#[cfg(target_arch = "riscv64")]
pub use riscv64::*;

#[cfg(target_arch = "loongarch64")]
mod loongarch64;
#[cfg(target_arch = "loongarch64")]
pub use loongarch64::*;