Skip to content

Commit d528112

Browse files
committedMay 7, 2015
Added support for building against Android API-9 SDK
Created an abstraction for log2, llvm::Log2 in Support/MathExtras.h Hid Android problems inside of it Differential Revision: http://reviews.llvm.org/D9467 llvm-svn: 236680
1 parent 13c0358 commit d528112

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed
 

‎llvm/include/llvm/Support/MathExtras.h

+13
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@
2424
#include <intrin.h>
2525
#endif
2626

27+
#ifdef __ANDROID_NDK__
28+
#include <android/api-level.h>
29+
#endif
30+
2731
namespace llvm {
2832
/// \brief The behavior an operation has on an input of 0.
2933
enum ZeroBehavior {
@@ -449,6 +453,15 @@ inline unsigned countPopulation(T Value) {
449453
return detail::PopulationCounter<T, sizeof(T)>::count(Value);
450454
}
451455

456+
/// Log2 - This function returns the log base 2 of the specified value
457+
inline double Log2(double Value) {
458+
#if defined(__ANDROID_API__) && __ANDROID_API__ < 18
459+
return (double)__builtin_log2l(Value);
460+
#else
461+
return log2(Value);
462+
#endif
463+
}
464+
452465
/// Log2_32 - This function returns the floor log base 2 of the specified value,
453466
/// -1 if the value is zero. (32 bit edition.)
454467
/// Ex. Log2_32(32) == 5, Log2_32(1) == 0, Log2_32(0) == -1, Log2_32(6) == 2

‎llvm/lib/Analysis/ConstantFolding.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1438,7 +1438,7 @@ static Constant *ConstantFoldScalarCall(StringRef Name, unsigned IntrinsicID,
14381438
case Intrinsic::fabs:
14391439
return ConstantFoldFP(fabs, V, Ty);
14401440
case Intrinsic::log2:
1441-
return ConstantFoldFP(log2, V, Ty);
1441+
return ConstantFoldFP(Log2, V, Ty);
14421442
case Intrinsic::log:
14431443
return ConstantFoldFP(log, V, Ty);
14441444
case Intrinsic::log10:

0 commit comments

Comments
 (0)
Please sign in to comment.