mirror of
https://github.com/ziglang/zig.git
synced 2024-11-15 16:45:27 +00:00
45 lines
1.3 KiB
Zig
45 lines
1.3 KiB
Zig
//! Ported from:
|
|
//!
|
|
//! https://github.com/llvm/llvm-project/blob/2ffb1b0413efa9a24eb3c49e710e36f92e2cb50b/compiler-rt/lib/builtins/modti3.c
|
|
|
|
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(&__modti3_windows_x86_64, .{ .name = "__modti3", .linkage = common.linkage, .visibility = common.visibility });
|
|
} else {
|
|
@export(&__modti3, .{ .name = "__modti3", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
}
|
|
|
|
pub fn __modti3(a: i128, b: i128) callconv(.C) i128 {
|
|
return mod(a, b);
|
|
}
|
|
|
|
const v2u64 = @Vector(2, u64);
|
|
|
|
fn __modti3_windows_x86_64(a: v2u64, b: v2u64) callconv(.C) v2u64 {
|
|
return @bitCast(mod(@as(i128, @bitCast(a)), @as(i128, @bitCast(b))));
|
|
}
|
|
|
|
inline fn mod(a: i128, b: i128) i128 {
|
|
const s_a = a >> (128 - 1); // s = a < 0 ? -1 : 0
|
|
const s_b = b >> (128 - 1); // s = b < 0 ? -1 : 0
|
|
|
|
const an = (a ^ s_a) -% s_a; // negate if s == -1
|
|
const bn = (b ^ s_b) -% s_b; // negate if s == -1
|
|
|
|
var r: u128 = undefined;
|
|
_ = udivmod(u128, @as(u128, @bitCast(an)), @as(u128, @bitCast(bn)), &r);
|
|
return (@as(i128, @bitCast(r)) ^ s_a) -% s_a; // negate if s == -1
|
|
}
|
|
|
|
test {
|
|
_ = @import("modti3_test.zig");
|
|
}
|