mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
27 lines
815 B
Zig
27 lines
815 B
Zig
const builtin = @import("builtin");
|
|
const common = @import("./common.zig");
|
|
const intFromFloat = @import("./int_from_float.zig").intFromFloat;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
if (common.want_windows_v2u64_abi) {
|
|
@export(&__fixdfti_windows_x86_64, .{ .name = "__fixdfti", .linkage = common.linkage, .visibility = common.visibility });
|
|
} else {
|
|
@export(&__fixdfti, .{ .name = switch (builtin.cpu.arch) {
|
|
.hexagon => "__hexagon",
|
|
else => "_",
|
|
} ++ "_fixdfti", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
}
|
|
|
|
pub fn __fixdfti(a: f64) callconv(.c) i128 {
|
|
return intFromFloat(i128, a);
|
|
}
|
|
|
|
const v2u64 = @Vector(2, u64);
|
|
|
|
fn __fixdfti_windows_x86_64(a: f64) callconv(.c) v2u64 {
|
|
return @bitCast(intFromFloat(i128, a));
|
|
}
|