mirror of
https://github.com/ziglang/zig.git
synced 2025-12-11 08:43:09 +00:00
We already have a LICENSE file that covers the Zig Standard Library. We no longer need to remind everyone that the license is MIT in every single file. Previously this was introduced to clarify the situation for a fork of Zig that made Zig's LICENSE file harder to find, and replaced it with their own license that required annual payments to their company. However that fork now appears to be dead. So there is no need to reinforce the copyright notice in every single file.
29 lines
779 B
Zig
29 lines
779 B
Zig
const udivmod = @import("udivmod.zig").udivmod;
|
|
const builtin = @import("builtin");
|
|
|
|
pub fn __divti3(a: i128, b: i128) callconv(.C) i128 {
|
|
@setRuntimeSafety(builtin.is_test);
|
|
|
|
const s_a = a >> (128 - 1);
|
|
const s_b = b >> (128 - 1);
|
|
|
|
const an = (a ^ s_a) -% s_a;
|
|
const bn = (b ^ s_b) -% s_b;
|
|
|
|
const r = udivmod(u128, @bitCast(u128, an), @bitCast(u128, bn), null);
|
|
const s = s_a ^ s_b;
|
|
return (@bitCast(i128, r) ^ s) -% s;
|
|
}
|
|
|
|
const v128 = @import("std").meta.Vector(2, u64);
|
|
pub fn __divti3_windows_x86_64(a: v128, b: v128) callconv(.C) v128 {
|
|
return @bitCast(v128, @call(.{ .modifier = .always_inline }, __divti3, .{
|
|
@bitCast(i128, a),
|
|
@bitCast(i128, b),
|
|
}));
|
|
}
|
|
|
|
test "import divti3" {
|
|
_ = @import("divti3_test.zig");
|
|
}
|