mirror of
https://github.com/ziglang/zig.git
synced 2024-11-26 23:22:44 +00:00
30f2bb8464
When we're compiling compiler_rt for any WebAssembly target, we do not want to expose all the compiler-rt functions to the host runtime. By setting the visibility of all exports to `hidden`, we allow the linker to resolve the symbols during linktime, while not expose the functions to the host runtime. This also means the linker can properly garbage collect any compiler-rt function that does not get resolved. The symbol visibility for all target remains the same as before: `default`.
29 lines
863 B
Zig
29 lines
863 B
Zig
const std = @import("std");
|
|
const builtin = @import("builtin");
|
|
const udivmod = @import("udivmod.zig").udivmod;
|
|
const common = @import("common.zig");
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
if (common.want_windows_v2u64_abi) {
|
|
@export(__umodti3_windows_x86_64, .{ .name = "__umodti3", .linkage = common.linkage, .visibility = common.visibility });
|
|
} else {
|
|
@export(__umodti3, .{ .name = "__umodti3", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
}
|
|
|
|
pub fn __umodti3(a: u128, b: u128) callconv(.C) u128 {
|
|
var r: u128 = undefined;
|
|
_ = udivmod(u128, a, b, &r);
|
|
return r;
|
|
}
|
|
|
|
const v2u64 = @Vector(2, u64);
|
|
|
|
fn __umodti3_windows_x86_64(a: v2u64, b: v2u64) callconv(.C) v2u64 {
|
|
var r: u128 = undefined;
|
|
_ = udivmod(u128, @bitCast(u128, a), @bitCast(u128, b), &r);
|
|
return @bitCast(v2u64, r);
|
|
}
|