2022-07-10 17:53:24 +01:00
|
|
|
const builtin = @import("builtin");
|
2022-06-16 07:09:56 +01:00
|
|
|
const common = @import("./common.zig");
|
2023-06-15 08:14:16 +01:00
|
|
|
const intFromFloat = @import("./int_from_float.zig").intFromFloat;
|
2022-06-16 07:09:56 +01:00
|
|
|
|
|
|
|
pub const panic = common.panic;
|
|
|
|
|
|
|
|
comptime {
|
2022-07-11 00:42:58 +01:00
|
|
|
if (common.want_windows_v2u64_abi) {
|
2024-08-26 03:49:36 +01:00
|
|
|
@export(&__fixsfti_windows_x86_64, .{ .name = "__fixsfti", .linkage = common.linkage, .visibility = common.visibility });
|
2022-07-11 00:42:58 +01:00
|
|
|
} else {
|
2024-08-26 03:49:36 +01:00
|
|
|
@export(&__fixsfti, .{ .name = "__fixsfti", .linkage = common.linkage, .visibility = common.visibility });
|
2022-07-11 00:42:58 +01:00
|
|
|
}
|
2022-06-16 07:09:56 +01:00
|
|
|
}
|
|
|
|
|
2022-06-16 23:14:12 +01:00
|
|
|
pub fn __fixsfti(a: f32) callconv(.C) i128 {
|
2023-06-15 08:14:16 +01:00
|
|
|
return intFromFloat(i128, a);
|
2022-06-16 07:09:56 +01:00
|
|
|
}
|
2022-07-10 17:53:24 +01:00
|
|
|
|
2022-07-11 00:42:58 +01:00
|
|
|
const v2u64 = @Vector(2, u64);
|
2022-07-10 17:53:24 +01:00
|
|
|
|
2022-07-11 00:42:58 +01:00
|
|
|
fn __fixsfti_windows_x86_64(a: f32) callconv(.C) v2u64 {
|
2023-08-19 08:32:47 +01:00
|
|
|
return @bitCast(intFromFloat(i128, a));
|
2022-07-10 17:53:24 +01:00
|
|
|
}
|