Skip to content

Commit a1c27e3

Browse files
committed
Use Default visibility for rustc-generated C symbol declarations
1 parent 84c257e commit a1c27e3

File tree

3 files changed

+29
-10
lines changed

3 files changed

+29
-10
lines changed

compiler/rustc_codegen_llvm/src/declare.rs

+6-10
Original file line numberDiff line numberDiff line change
@@ -83,20 +83,16 @@ impl<'ll, 'tcx> CodegenCx<'ll, 'tcx> {
8383
unnamed: llvm::UnnamedAddr,
8484
fn_type: &'ll Type,
8585
) -> &'ll Value {
86-
// Declare C ABI functions with the visibility used by C by default.
87-
let visibility = if self.tcx.sess.default_hidden_visibility() {
88-
llvm::Visibility::Hidden
89-
} else {
90-
llvm::Visibility::Default
91-
};
92-
93-
declare_raw_fn(self, name, llvm::CCallConv, unnamed, visibility, fn_type)
86+
// Declare C ABI functions with Default visibility to allow them to link
87+
// dynamically with shared object-provided symbols later on. This is
88+
// needed to link intrinsic-generated calls to e.g. libc.so symbols like
89+
// memcmp.
90+
declare_raw_fn(self, name, llvm::CCallConv, unnamed, llvm::Visibility::Default, fn_type)
9491
}
9592

9693
/// Declare an entry Function
9794
///
98-
/// The ABI of this function can change depending on the target (although for now the same as
99-
/// `declare_cfn`)
95+
/// The ABI of this function can change depending on the target.
10096
///
10197
/// If there’s a value with the same name already declared, the function will
10298
/// update the declaration and return existing Value instead.

tests/codegen/default-hidden-visibility.rs

+15
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,18 @@ pub static tested_symbol: [u8; 6] = *b"foobar";
2929
// DEFAULT: @{{.*}}default_hidden_visibility{{.*}}tested_symbol{{.*}} = constant
3030
// YES: @{{.*}}default_hidden_visibility{{.*}}tested_symbol{{.*}} = hidden constant
3131
// NO: @{{.*}}default_hidden_visibility{{.*}}tested_symbol{{.*}} = constant
32+
33+
pub fn do_memcmp(left: &[u8], right: &[u8]) -> i32 {
34+
left.cmp(right) as i32
35+
}
36+
37+
// CHECK: define {{.*}} @{{.*}}do_memcmp{{.*}} {
38+
// CHECK: }
39+
40+
// `do_memcmp` should invoke core::intrinsic::compare_bytes which emits a call
41+
// to the C symbol `memcmp` (at least on x86_64-unknown-linux-gnu). This symbol
42+
// should *not* be `declare hidden`.
43+
44+
// DEFAULT: declare i32 @memcmp
45+
// YES: declare i32 @memcmp
46+
// NO: declare i32 @memcmp
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
//@ build-pass
2+
//@ compile-flags: -Zdefault-hidden-visibility=yes
3+
4+
#![crate_type = "dylib"]
5+
6+
pub fn do_memcmp(left: &[u8], right: &[u8]) -> i32 {
7+
left.cmp(right) as i32
8+
}

0 commit comments

Comments
 (0)