
Mostly mechanical changes in preparation of extracting the Flang-RT "subproject" in #110217. This PR intends to only move pre-existing files to the new folder structure, with no behavioral change. Common files (headers, testing, cmake) shared by Flang-RT and Flang remain in `flang/`. Some cosmetic changes and files paths were necessary: * Relative paths to the new path for the source files and `add_subdirectory`. * Add the new location's include directory to `include_directories` * The unittest/Evaluate directory has unitests for flang-rt and Flang. A new `CMakeLists.txt` was introduced for the flang-rt tests. * Change the `#include` paths relative to the include directive * clang-format on the `#include` directives * Since the paths are part if the copyright header and include guards, a script was used to canonicalize those * `test/Runtime` and runtime tests in `test/Driver` are moved, but the lit.cfg.py mechanism to execute the will only be added in #110217.
55 lines
1.9 KiB
C
55 lines
1.9 KiB
C
/*===-- lib/quadmath/complex-math.c ---------------------------------*- C -*-===
|
|
*
|
|
* 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
|
|
*
|
|
*===----------------------------------------------------------------------===*/
|
|
|
|
#include "complex-math.h"
|
|
|
|
#if HAS_LDBL128 || HAS_FLOAT128
|
|
|
|
CFloat128Type RTDEF(CAbsF128)(CFloat128ComplexType x) { return CAbs(x); }
|
|
CFloat128ComplexType RTDEF(CAcosF128)(CFloat128ComplexType x) {
|
|
return CAcos(x);
|
|
}
|
|
CFloat128ComplexType RTDEF(CAcoshF128)(CFloat128ComplexType x) {
|
|
return CAcosh(x);
|
|
}
|
|
CFloat128ComplexType RTDEF(CAsinF128)(CFloat128ComplexType x) {
|
|
return CAsin(x);
|
|
}
|
|
CFloat128ComplexType RTDEF(CAsinhF128)(CFloat128ComplexType x) {
|
|
return CAsinh(x);
|
|
}
|
|
CFloat128ComplexType RTDEF(CAtanF128)(CFloat128ComplexType x) {
|
|
return CAtan(x);
|
|
}
|
|
CFloat128ComplexType RTDEF(CAtanhF128)(CFloat128ComplexType x) {
|
|
return CAtanh(x);
|
|
}
|
|
CFloat128ComplexType RTDEF(CCosF128)(CFloat128ComplexType x) { return CCos(x); }
|
|
CFloat128ComplexType RTDEF(CCoshF128)(CFloat128ComplexType x) {
|
|
return CCosh(x);
|
|
}
|
|
CFloat128ComplexType RTDEF(CExpF128)(CFloat128ComplexType x) { return CExp(x); }
|
|
CFloat128ComplexType RTDEF(CLogF128)(CFloat128ComplexType x) { return CLog(x); }
|
|
CFloat128ComplexType RTDEF(CPowF128)(
|
|
CFloat128ComplexType x, CFloat128ComplexType p) {
|
|
return CPow(x, p);
|
|
}
|
|
CFloat128ComplexType RTDEF(CSinF128)(CFloat128ComplexType x) { return CSin(x); }
|
|
CFloat128ComplexType RTDEF(CSinhF128)(CFloat128ComplexType x) {
|
|
return CSinh(x);
|
|
}
|
|
CFloat128ComplexType RTDEF(CSqrtF128)(CFloat128ComplexType x) {
|
|
return CSqrt(x);
|
|
}
|
|
CFloat128ComplexType RTDEF(CTanF128)(CFloat128ComplexType x) { return CTan(x); }
|
|
CFloat128ComplexType RTDEF(CTanhF128)(CFloat128ComplexType x) {
|
|
return CTanh(x);
|
|
}
|
|
|
|
#endif // HAS_LDBL128 || HAS_FLOAT128
|