zig/lib/compiler_rt/subtf3.zig
Cody Tapscott c50f33b111 compiler_rt: Always export "standard" symbol names
The Zig LLVM backend emits calls to softfloat methods with the "standard
compiler-rt" names. Rather than add complexity to the backend and
have to synchronize the naming scheme across all targets, the simplest
fix is just to export these symbols under both the "standard" and the
platform-specific naming convention.
2022-10-22 17:19:33 -07:00

26 lines
716 B
Zig

const common = @import("./common.zig");
pub const panic = common.panic;
comptime {
if (common.want_ppc_abi) {
@export(__subtf3, .{ .name = "__subkf3", .linkage = common.linkage });
} else if (common.want_sparc_abi) {
@export(_Qp_sub, .{ .name = "_Qp_sub", .linkage = common.linkage });
}
@export(__subtf3, .{ .name = "__subtf3", .linkage = common.linkage });
}
pub fn __subtf3(a: f128, b: f128) callconv(.C) f128 {
return sub(a, b);
}
fn _Qp_sub(c: *f128, a: *const f128, b: *const f128) callconv(.C) void {
c.* = sub(a.*, b.*);
}
inline fn sub(a: f128, b: f128) f128 {
const neg_b = @bitCast(f128, @bitCast(u128, b) ^ (@as(u128, 1) << 127));
return a + neg_b;
}