Weiming Zhao 9b7bbeca48 [Builtin] Implement lit-test support (part 1 of 2: test cases update)
Original r297566 is splitted into two parts.
This is part one, which adds "RUN" command for test cases.
Unit/arm/call_apsr.S is updated to support thumb1.
It also fixes a bug in arm/aeabi_uldivmod_test.c
gcc_personality_test is XFAILED as the framework cannot handle it so far.
cpu_model_test is also XFAILED for now as it is expected to return non-zero.

TODO: A few tests are XFAILed for armhf and aarch64.
We need further investigating.  [1,2] Tracks the issue.

[1] https://bugs.llvm.org//show_bug.cgi?id=32260
[2] https://bugs.llvm.org//show_bug.cgi?id=32261

Reviewers: rengolin, compnerd, jroelofs, erik.pilkington, arphaman

Reviewed By: jroelofs

Subscribers: jroelofs, aemerson, srhines, nemanjai, llvm-commits, mgorny

Differential Revision: https://reviews.llvm.org/D30802

llvm-svn: 298339
2017-03-21 05:32:51 +00:00

115 lines
3.3 KiB
C

// RUN: %clang_builtins %s %librt -o %t && %run %t
//===--------------- extendhfsf2_test.c - Test __extendhfsf2 --------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file tests __extendhfsf2 for the compiler_rt library.
//
//===----------------------------------------------------------------------===//
#include <stdio.h>
#include "fp_test.h"
float __extendhfsf2(uint16_t a);
int test__extendhfsf2(uint16_t a, float expected)
{
float x = __extendhfsf2(a);
int ret = compareResultH(x, expected);
if (ret){
printf("error in test__extendhfsf2(%#.4x) = %f, "
"expected %f\n", a, x, expected);
}
return ret;
}
char assumption_1[sizeof(__fp16) * CHAR_BIT == 16] = {0};
int main()
{
// qNaN
if (test__extendhfsf2(UINT16_C(0x7e00),
makeQNaN32()))
return 1;
// NaN
if (test__extendhfsf2(UINT16_C(0x7e00),
makeNaN32(UINT32_C(0x8000))))
return 1;
// inf
if (test__extendhfsf2(UINT16_C(0x7c00),
makeInf32()))
return 1;
if (test__extendhfsf2(UINT16_C(0xfc00),
-makeInf32()))
return 1;
// zero
if (test__extendhfsf2(UINT16_C(0x0),
0.0f))
return 1;
if (test__extendhfsf2(UINT16_C(0x8000),
-0.0f))
return 1;
if (test__extendhfsf2(UINT16_C(0x4248),
3.1415926535f))
return 1;
if (test__extendhfsf2(UINT16_C(0xc248),
-3.1415926535f))
return 1;
if (test__extendhfsf2(UINT16_C(0x7c00),
0x1.987124876876324p+100f))
return 1;
if (test__extendhfsf2(UINT16_C(0x6e62),
0x1.988p+12f))
return 1;
if (test__extendhfsf2(UINT16_C(0x3c00),
0x1.0p+0f))
return 1;
if (test__extendhfsf2(UINT16_C(0x0400),
0x1.0p-14f))
return 1;
// denormal
if (test__extendhfsf2(UINT16_C(0x0010),
0x1.0p-20f))
return 1;
if (test__extendhfsf2(UINT16_C(0x0001),
0x1.0p-24f))
return 1;
if (test__extendhfsf2(UINT16_C(0x8001),
-0x1.0p-24f))
return 1;
if (test__extendhfsf2(UINT16_C(0x0001),
0x1.5p-25f))
return 1;
// and back to zero
if (test__extendhfsf2(UINT16_C(0x0000),
0x1.0p-25f))
return 1;
if (test__extendhfsf2(UINT16_C(0x8000),
-0x1.0p-25f))
return 1;
// max (precise)
if (test__extendhfsf2(UINT16_C(0x7bff),
65504.0f))
return 1;
// max (rounded)
if (test__extendhfsf2(UINT16_C(0x7bff),
65504.0f))
return 1;
// max (to +inf)
if (test__extendhfsf2(UINT16_C(0x7c00),
makeInf32()))
return 1;
if (test__extendhfsf2(UINT16_C(0xfc00),
-makeInf32()))
return 1;
return 0;
}