[ADT] Implement the 'logb' functionality for APFloat. This is necessary

to implement complex division in the constant folder of Clang.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219471 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chandler Carruth
2014-10-10 04:17:04 +00:00
parent 9a97f23f2f
commit 9ea4dd2eed
2 changed files with 68 additions and 0 deletions

View File

@@ -491,6 +491,22 @@ public:
/// return true.
bool getExactInverse(APFloat *inv) const;
/// \brief Returns the exponent of the internal representation of the APFloat.
///
/// Because the radix of APFloat is 2, this is equivalent to floor(log2(x)).
friend APFloat logb(const APFloat &Arg) {
if (Arg.isZero() || Arg.isNaN())
return Arg;
if (Arg.isInfinity())
return APFloat::getInf(Arg.getSemantics());
APFloat Result(Arg.getSemantics(), std::abs(Arg.exponent));
if (Arg.exponent < 0)
Result.changeSign();
return Result;
}
private:
/// \name Simple Queries
@@ -617,6 +633,7 @@ private:
/// This additional declaration is required in order to compile LLVM with IBM
/// xlC compiler.
hash_code hash_value(const APFloat &Arg);
} // namespace llvm
#endif // LLVM_ADT_APFLOAT_H