2021-09-10 21:11:56 +08:00
|
|
|
//@ revisions: x64
|
|
|
|
//@ assembly-output: emit-asm
|
|
|
|
//@ [x64] compile-flags: --target x86_64-unknown-linux-gnu -Crelocation-model=pie
|
|
|
|
//@ [x64] needs-llvm-components: x86
|
|
|
|
|
|
|
|
#![feature(no_core, lang_items)]
|
|
|
|
#![no_core]
|
2024-05-29 11:57:23 +08:00
|
|
|
#![crate_type = "rlib"]
|
2021-09-10 21:11:56 +08:00
|
|
|
|
|
|
|
#[lang = "sized"]
|
|
|
|
trait Sized {}
|
|
|
|
#[lang = "copy"]
|
|
|
|
trait Copy {}
|
|
|
|
|
|
|
|
// CHECK-LABEL: call_other_fn:
|
|
|
|
// With PIE local functions are called "directly".
|
|
|
|
// CHECK: {{(jmp|callq)}} other_fn
|
|
|
|
#[no_mangle]
|
|
|
|
pub fn call_other_fn() -> u8 {
|
2024-05-29 11:57:23 +08:00
|
|
|
unsafe { other_fn() }
|
2021-09-10 21:11:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK-LABEL: other_fn:
|
|
|
|
// External functions are still called through GOT, since we don't know if the symbol
|
|
|
|
// is defined in the binary or in the shared library.
|
|
|
|
// CHECK: callq *foreign_fn@GOTPCREL(%rip)
|
|
|
|
#[no_mangle]
|
|
|
|
#[inline(never)]
|
|
|
|
pub fn other_fn() -> u8 {
|
2024-05-29 11:57:23 +08:00
|
|
|
unsafe { foreign_fn() }
|
2021-09-10 21:11:56 +08:00
|
|
|
}
|
|
|
|
|
2024-05-29 11:57:23 +08:00
|
|
|
extern "C" {
|
|
|
|
fn foreign_fn() -> u8;
|
|
|
|
}
|