blob: 98c28db04eb809296828b209cac819ec0cce38ec [file] [edit]
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// RUN: %clang_builtins %s %librt -o %t && %run %t
// REQUIRES: librt_has_fixunssfdi
#include "int_lib.h"
#include <inttypes.h>
#include <stdio.h>
#include "fp_test.h"
// By default this test does not specify the expected results for overflowing
// and NaN inputs, because they can vary between platforms. For the Arm
// optimized FP implementation, which commits to more detail, we include some
// extra test cases specific to that NaN policy.
#if COMPILER_RT_ARM_OPTIMIZED_FP
# define ARM_INVALID_HANDLING
#endif
// Returns: a converted from float to int64_t
COMPILER_RT_ABI int64_t __fixunssfdi(float a);
int test__fixunssfdi(uint32_t a_rep, uint64_t expected, int line) {
float a = fromRep32(a_rep);
uint64_t x = (uint64_t)__fixunssfdi(a);
int ret = x != expected;
if (ret) {
printf("error at line %d: __fixunssfdi(%08" PRIx32 ") = %016" PRIx64
", expected %016" PRIx64 "\n",
line, a_rep, x, expected);
}
return ret;
}
#define test__fixunssfdi(a, x) test__fixunssfdi(a, x, __LINE__)
int main(void) {
int status = 0;
status |= test__fixunssfdi(0x00000000, 0x0000000000000000);
status |= test__fixunssfdi(0x00000001, 0x0000000000000000);
status |= test__fixunssfdi(0x00000001, 0x0000000000000000);
status |= test__fixunssfdi(0x00500000, 0x0000000000000000);
status |= test__fixunssfdi(0x00500000, 0x0000000000000000);
status |= test__fixunssfdi(0x3e800000, 0x0000000000000000);
status |= test__fixunssfdi(0x3f000000, 0x0000000000000000);
status |= test__fixunssfdi(0x3f400000, 0x0000000000000000);
status |= test__fixunssfdi(0x3f800000, 0x0000000000000001);
status |= test__fixunssfdi(0x3fa00000, 0x0000000000000001);
status |= test__fixunssfdi(0x3fc00000, 0x0000000000000001);
status |= test__fixunssfdi(0x3fe00000, 0x0000000000000001);
status |= test__fixunssfdi(0x40000000, 0x0000000000000002);
status |= test__fixunssfdi(0x40100000, 0x0000000000000002);
status |= test__fixunssfdi(0x40200000, 0x0000000000000002);
status |= test__fixunssfdi(0x40300000, 0x0000000000000002);
status |= test__fixunssfdi(0x55023450, 0x0000082345000000);
status |= test__fixunssfdi(0x5f7fffff, 0xffffff0000000000);
status |= test__fixunssfdi(0x80000000, 0x0000000000000000);
status |= test__fixunssfdi(0xbf7fffff, 0x0000000000000000);
#ifdef ARM_INVALID_HANDLING
// Tests specific to the handling of float-to-integer conversions in
// Arm hardware, mimicked by arm/fixunssfsi.S:
//
// - too-large positive inputs, including +infinity, return the
// maximum possible unsigned integer value
//
// - negative inputs too small to round up to 0, including
// -infinity, return 0
//
// - NaN inputs return 0
status |= test__fixunssfdi(0x5f800000, 0xffffffffffffffff);
status |= test__fixunssfdi(0x7f800000, 0xffffffffffffffff);
status |= test__fixunssfdi(0x7fa111d3, 0x0000000000000000);
status |= test__fixunssfdi(0x7febfdda, 0x0000000000000000);
status |= test__fixunssfdi(0xbf800000, 0x0000000000000000);
status |= test__fixunssfdi(0xc0000000, 0x0000000000000000);
status |= test__fixunssfdi(0xff800000, 0x0000000000000000);
#endif // ARM_INVALID_HANDLING
return status;
}