mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
680419c407
Starting with LLVM 14, the Libcalls to these functions are now lowered using a Vec(2, u64) instead of the standard ABI for i128 integers, so our compiler-rt implementation needs to be updated to expose the same ABI on Windows.
27 lines
840 B
Zig
27 lines
840 B
Zig
const builtin = @import("builtin");
|
|
const arch = builtin.cpu.arch;
|
|
const common = @import("./common.zig");
|
|
const intToFloat = @import("./int_to_float.zig").intToFloat;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
const floatuntisf_fn = if (builtin.os.tag == .windows and arch == .x86_64) b: {
|
|
// The "ti" functions must use Vector(2, u64) return types to adhere to the ABI
|
|
// that LLVM expects compiler-rt to have.
|
|
break :b __floatuntisf_windows_x86_64;
|
|
} else __floatuntisf;
|
|
|
|
@export(floatuntisf_fn, .{ .name = "__floatuntisf", .linkage = common.linkage });
|
|
}
|
|
|
|
pub fn __floatuntisf(a: u128) callconv(.C) f32 {
|
|
return intToFloat(f32, a);
|
|
}
|
|
|
|
const v128 = @import("std").meta.Vector(2, u64);
|
|
|
|
fn __floatuntisf_windows_x86_64(a: v128) callconv(.C) f32 {
|
|
return intToFloat(f32, @bitCast(u128, a));
|
|
}
|