Update SoftFloat
authorAndrew Waterman <andrew@sifive.com>
Mon, 25 Sep 2017 03:25:34 +0000 (20:25 -0700)
committerAndrew Waterman <andrew@sifive.com>
Mon, 25 Sep 2017 03:25:34 +0000 (20:25 -0700)
commitbd85811c35ea38180d27440507fc222d585ef780
tree214c6b615d7775f73da5ff9a94bd4a0a2772f9cf
parentb86f2a51f522f020ad0d90f598f4c501f41da232
Update SoftFloat
220 files changed:
softfloat/f128_add.c [new file with mode: 0644]
softfloat/f128_classify.c [new file with mode: 0755]
softfloat/f128_div.c [new file with mode: 0644]
softfloat/f128_eq.c [new file with mode: 0644]
softfloat/f128_eq_signaling.c [new file with mode: 0644]
softfloat/f128_isSignalingNaN.c [new file with mode: 0644]
softfloat/f128_le.c [new file with mode: 0644]
softfloat/f128_le_quiet.c [new file with mode: 0644]
softfloat/f128_lt.c [new file with mode: 0644]
softfloat/f128_lt_quiet.c [new file with mode: 0644]
softfloat/f128_mul.c [new file with mode: 0644]
softfloat/f128_mulAdd.c [new file with mode: 0644]
softfloat/f128_rem.c [new file with mode: 0644]
softfloat/f128_roundToInt.c [new file with mode: 0644]
softfloat/f128_sqrt.c [new file with mode: 0644]
softfloat/f128_sub.c [new file with mode: 0644]
softfloat/f128_to_f16.c [new file with mode: 0644]
softfloat/f128_to_f32.c [new file with mode: 0644]
softfloat/f128_to_f64.c [new file with mode: 0644]
softfloat/f128_to_i32.c [new file with mode: 0644]
softfloat/f128_to_i32_r_minMag.c [new file with mode: 0644]
softfloat/f128_to_i64.c [new file with mode: 0644]
softfloat/f128_to_i64_r_minMag.c [new file with mode: 0644]
softfloat/f128_to_ui32.c [new file with mode: 0644]
softfloat/f128_to_ui32_r_minMag.c [new file with mode: 0644]
softfloat/f128_to_ui64.c [new file with mode: 0644]
softfloat/f128_to_ui64_r_minMag.c [new file with mode: 0644]
softfloat/f16_add.c [new file with mode: 0644]
softfloat/f16_div.c [new file with mode: 0644]
softfloat/f16_eq.c [new file with mode: 0644]
softfloat/f16_eq_signaling.c [new file with mode: 0644]
softfloat/f16_isSignalingNaN.c [new file with mode: 0644]
softfloat/f16_le.c [new file with mode: 0644]
softfloat/f16_le_quiet.c [new file with mode: 0644]
softfloat/f16_lt.c [new file with mode: 0644]
softfloat/f16_lt_quiet.c [new file with mode: 0644]
softfloat/f16_mul.c [new file with mode: 0644]
softfloat/f16_mulAdd.c [new file with mode: 0644]
softfloat/f16_rem.c [new file with mode: 0644]
softfloat/f16_roundToInt.c [new file with mode: 0644]
softfloat/f16_sqrt.c [new file with mode: 0644]
softfloat/f16_sub.c [new file with mode: 0644]
softfloat/f16_to_f128.c [new file with mode: 0644]
softfloat/f16_to_f32.c [new file with mode: 0644]
softfloat/f16_to_f64.c [new file with mode: 0644]
softfloat/f16_to_i32.c [new file with mode: 0644]
softfloat/f16_to_i32_r_minMag.c [new file with mode: 0644]
softfloat/f16_to_i64.c [new file with mode: 0644]
softfloat/f16_to_i64_r_minMag.c [new file with mode: 0644]
softfloat/f16_to_ui32.c [new file with mode: 0644]
softfloat/f16_to_ui32_r_minMag.c [new file with mode: 0644]
softfloat/f16_to_ui64.c [new file with mode: 0644]
softfloat/f16_to_ui64_r_minMag.c [new file with mode: 0644]
softfloat/f32_add.c
softfloat/f32_classify.c
softfloat/f32_div.c
softfloat/f32_eq.c
softfloat/f32_eq_signaling.c
softfloat/f32_isSignalingNaN.c
softfloat/f32_le.c
softfloat/f32_le_quiet.c
softfloat/f32_lt.c
softfloat/f32_lt_quiet.c
softfloat/f32_mul.c
softfloat/f32_mulAdd.c
softfloat/f32_rem.c
softfloat/f32_roundToInt.c
softfloat/f32_sqrt.c
softfloat/f32_sub.c
softfloat/f32_to_f128.c [new file with mode: 0644]
softfloat/f32_to_f16.c [new file with mode: 0644]
softfloat/f32_to_f64.c
softfloat/f32_to_i32.c
softfloat/f32_to_i32_r_minMag.c
softfloat/f32_to_i64.c
softfloat/f32_to_i64_r_minMag.c
softfloat/f32_to_ui32.c
softfloat/f32_to_ui32_r_minMag.c
softfloat/f32_to_ui64.c
softfloat/f32_to_ui64_r_minMag.c
softfloat/f64_add.c
softfloat/f64_classify.c
softfloat/f64_div.c
softfloat/f64_eq.c
softfloat/f64_eq_signaling.c
softfloat/f64_isSignalingNaN.c
softfloat/f64_le.c
softfloat/f64_le_quiet.c
softfloat/f64_lt.c
softfloat/f64_lt_quiet.c
softfloat/f64_mul.c
softfloat/f64_mulAdd.c
softfloat/f64_rem.c
softfloat/f64_roundToInt.c
softfloat/f64_sqrt.c
softfloat/f64_sub.c
softfloat/f64_to_f128.c [new file with mode: 0644]
softfloat/f64_to_f16.c [new file with mode: 0644]
softfloat/f64_to_f32.c
softfloat/f64_to_i32.c
softfloat/f64_to_i32_r_minMag.c
softfloat/f64_to_i64.c
softfloat/f64_to_i64_r_minMag.c
softfloat/f64_to_ui32.c
softfloat/f64_to_ui32_r_minMag.c
softfloat/f64_to_ui64.c
softfloat/f64_to_ui64_r_minMag.c
softfloat/i32_to_f128.c [new file with mode: 0644]
softfloat/i32_to_f16.c [new file with mode: 0644]
softfloat/i32_to_f32.c
softfloat/i32_to_f64.c
softfloat/i64_to_f128.c [new file with mode: 0644]
softfloat/i64_to_f16.c [new file with mode: 0644]
softfloat/i64_to_f32.c
softfloat/i64_to_f64.c
softfloat/internals.h
softfloat/primitives.h
softfloat/s_add128.c
softfloat/s_add256M.c [new file with mode: 0644]
softfloat/s_addCarryM.c
softfloat/s_addComplCarryM.c
softfloat/s_addM.c
softfloat/s_addMagsF128.c [new file with mode: 0644]
softfloat/s_addMagsF16.c [new file with mode: 0644]
softfloat/s_addMagsF32.c
softfloat/s_addMagsF64.c
softfloat/s_approxRecip32_1.c
softfloat/s_approxRecipSqrt32_1.c
softfloat/s_approxRecipSqrt_1Ks.c [new file with mode: 0644]
softfloat/s_approxRecip_1Ks.c [new file with mode: 0644]
softfloat/s_commonNaNToF128UI.c [new file with mode: 0644]
softfloat/s_commonNaNToF16UI.c [new file with mode: 0644]
softfloat/s_commonNaNToF32UI.c
softfloat/s_commonNaNToF64UI.c
softfloat/s_compare128M.c [new file with mode: 0644]
softfloat/s_compare96M.c
softfloat/s_countLeadingZeros16.c [new file with mode: 0644]
softfloat/s_countLeadingZeros32.c
softfloat/s_countLeadingZeros64.c
softfloat/s_countLeadingZeros8.c
softfloat/s_eq128.c [new file with mode: 0644]
softfloat/s_f128UIToCommonNaN.c [new file with mode: 0644]
softfloat/s_f16UIToCommonNaN.c [new file with mode: 0644]
softfloat/s_f32UIToCommonNaN.c
softfloat/s_f64UIToCommonNaN.c
softfloat/s_le128.c [new file with mode: 0644]
softfloat/s_lt128.c [new file with mode: 0644]
softfloat/s_mul128By32.c [new file with mode: 0644]
softfloat/s_mul128MTo256M.c [new file with mode: 0644]
softfloat/s_mul128To256M.c [new file with mode: 0644]
softfloat/s_mul64ByShifted32To128.c [new file with mode: 0644]
softfloat/s_mul64To128.c
softfloat/s_mul64To128M.c [new file with mode: 0644]
softfloat/s_mulAddF128.c [new file with mode: 0644]
softfloat/s_mulAddF16.c [new file with mode: 0644]
softfloat/s_mulAddF32.c
softfloat/s_mulAddF64.c
softfloat/s_negXM.c
softfloat/s_normRoundPackToF128.c [new file with mode: 0644]
softfloat/s_normRoundPackToF16.c [new file with mode: 0644]
softfloat/s_normRoundPackToF32.c
softfloat/s_normRoundPackToF64.c
softfloat/s_normSubnormalF128Sig.c [new file with mode: 0644]
softfloat/s_normSubnormalF16Sig.c [new file with mode: 0644]
softfloat/s_normSubnormalF32Sig.c
softfloat/s_normSubnormalF64Sig.c
softfloat/s_propagateNaNF128UI.c [new file with mode: 0644]
softfloat/s_propagateNaNF16UI.c [new file with mode: 0644]
softfloat/s_propagateNaNF32UI.c
softfloat/s_propagateNaNF64UI.c
softfloat/s_remStepMBy32.c
softfloat/s_roundMToI64.c [new file with mode: 0644]
softfloat/s_roundMToUI64.c [new file with mode: 0644]
softfloat/s_roundPackToF128.c [new file with mode: 0644]
softfloat/s_roundPackToF16.c [new file with mode: 0644]
softfloat/s_roundPackToF32.c
softfloat/s_roundPackToF64.c
softfloat/s_roundToI32.c [new file with mode: 0644]
softfloat/s_roundToI64.c [new file with mode: 0644]
softfloat/s_roundToUI32.c [new file with mode: 0644]
softfloat/s_roundToUI64.c [new file with mode: 0644]
softfloat/s_shiftRightJam128.c
softfloat/s_shiftRightJam128Extra.c [new file with mode: 0644]
softfloat/s_shiftRightJam256M.c [new file with mode: 0644]
softfloat/s_shiftRightJam32.c
softfloat/s_shiftRightJam64.c
softfloat/s_shiftRightJam64Extra.c
softfloat/s_shortShiftLeft128.c [new file with mode: 0644]
softfloat/s_shortShiftLeft64To96M.c
softfloat/s_shortShiftLeftM.c [deleted file]
softfloat/s_shortShiftRight128.c [new file with mode: 0644]
softfloat/s_shortShiftRightExtendM.c
softfloat/s_shortShiftRightJam128.c [new file with mode: 0644]
softfloat/s_shortShiftRightJam128Extra.c [new file with mode: 0644]
softfloat/s_shortShiftRightJam64.c
softfloat/s_shortShiftRightJam64Extra.c
softfloat/s_shortShiftRightJamM.c [deleted file]
softfloat/s_shortShiftRightM.c
softfloat/s_sub128.c
softfloat/s_sub1XM.c [new file with mode: 0644]
softfloat/s_sub256M.c [new file with mode: 0644]
softfloat/s_subM.c
softfloat/s_subMagsF128.c [new file with mode: 0644]
softfloat/s_subMagsF16.c [new file with mode: 0644]
softfloat/s_subMagsF32.c
softfloat/s_subMagsF64.c
softfloat/softfloat.h
softfloat/softfloat.mk.in
softfloat/softfloat_raiseFlags.c
softfloat/softfloat_state.c
softfloat/softfloat_types.h
softfloat/specialize.h
softfloat/ui32_to_f128.c [new file with mode: 0644]
softfloat/ui32_to_f16.c [new file with mode: 0644]
softfloat/ui32_to_f32.c
softfloat/ui32_to_f64.c
softfloat/ui64_to_f128.c [new file with mode: 0644]
softfloat/ui64_to_f16.c [new file with mode: 0644]
softfloat/ui64_to_f32.c
softfloat/ui64_to_f64.c