zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

cmphf2.zig (2267B) - Raw


      1 ///! The quoted behavior definitions are from
      2 ///! https://gcc.gnu.org/onlinedocs/gcc-12.1.0/gccint/Soft-float-library-routines.html#Soft-float-library-routines
      3 const common = @import("./common.zig");
      4 const comparef = @import("./comparef.zig");
      5 
      6 pub const panic = common.panic;
      7 
      8 comptime {
      9     @export(&__eqhf2, .{ .name = "__eqhf2", .linkage = common.linkage, .visibility = common.visibility });
     10     @export(&__nehf2, .{ .name = "__nehf2", .linkage = common.linkage, .visibility = common.visibility });
     11     @export(&__lehf2, .{ .name = "__lehf2", .linkage = common.linkage, .visibility = common.visibility });
     12     @export(&__cmphf2, .{ .name = "__cmphf2", .linkage = common.linkage, .visibility = common.visibility });
     13     @export(&__lthf2, .{ .name = "__lthf2", .linkage = common.linkage, .visibility = common.visibility });
     14 }
     15 
     16 /// "These functions calculate a <=> b. That is, if a is less than b, they return -1;
     17 /// if a is greater than b, they return 1; and if a and b are equal they return 0.
     18 /// If either argument is NaN they return 1..."
     19 ///
     20 /// Note that this matches the definition of `__lehf2`, `__eqhf2`, `__nehf2`, `__cmphf2`,
     21 /// and `__lthf2`.
     22 fn __cmphf2(a: f16, b: f16) callconv(.c) i32 {
     23     return @intFromEnum(comparef.cmpf2(f16, comparef.LE, a, b));
     24 }
     25 
     26 /// "These functions return a value less than or equal to zero if neither argument is NaN,
     27 /// and a is less than or equal to b."
     28 pub fn __lehf2(a: f16, b: f16) callconv(.c) i32 {
     29     return __cmphf2(a, b);
     30 }
     31 
     32 /// "These functions return zero if neither argument is NaN, and a and b are equal."
     33 /// Note that due to some kind of historical accident, __eqhf2 and __nehf2 are defined
     34 /// to have the same return value.
     35 pub fn __eqhf2(a: f16, b: f16) callconv(.c) i32 {
     36     return __cmphf2(a, b);
     37 }
     38 
     39 /// "These functions return a nonzero value if either argument is NaN, or if a and b are unequal."
     40 /// Note that due to some kind of historical accident, __eqhf2 and __nehf2 are defined
     41 /// to have the same return value.
     42 pub fn __nehf2(a: f16, b: f16) callconv(.c) i32 {
     43     return __cmphf2(a, b);
     44 }
     45 
     46 /// "These functions return a value less than zero if neither argument is NaN, and a
     47 /// is strictly less than b."
     48 pub fn __lthf2(a: f16, b: f16) callconv(.c) i32 {
     49     return __cmphf2(a, b);
     50 }