2024-09-02 15:45:06 +02:00
|
|
|
// Make sure we do not request sanitizers for naked functions.
|
|
|
|
|
|
|
|
//@ only-x86_64
|
|
|
|
//@ needs-sanitizer-address
|
|
|
|
//@ compile-flags: -Zsanitizer=address -Ctarget-feature=-crt-static
|
|
|
|
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
#![no_std]
|
2024-12-18 22:05:27 +01:00
|
|
|
#![feature(abi_x86_interrupt)]
|
2024-09-02 15:45:06 +02:00
|
|
|
|
2024-08-08 10:20:40 +02:00
|
|
|
pub fn caller() {
|
|
|
|
page_fault_handler(1, 2);
|
|
|
|
}
|
|
|
|
|
2024-12-01 14:55:17 +01:00
|
|
|
// CHECK: declare x86_intrcc void @page_fault_handler(ptr {{.*}}, i64{{.*}}){{.*}}#[[ATTRS:[0-9]+]]
|
2025-03-29 17:30:11 +01:00
|
|
|
#[unsafe(naked)]
|
2024-09-02 15:45:06 +02:00
|
|
|
#[no_mangle]
|
|
|
|
pub extern "x86-interrupt" fn page_fault_handler(_: u64, _: u64) {
|
2025-03-29 17:30:11 +01:00
|
|
|
core::arch::naked_asm!("ud2")
|
2024-09-02 15:45:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK: #[[ATTRS]] =
|
|
|
|
// CHECK-NOT: sanitize_address
|
2024-09-09 13:29:47 +00:00
|
|
|
// CHECK: !llvm.module.flags
|