2011-02-18 22:50:34 +01:00
|
|
|
//===-- TargetLibraryInfo.cpp - Runtime library information ----------------==//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the TargetLibraryInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Target/TargetLibraryInfo.h"
|
|
|
|
#include "llvm/ADT/Triple.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
// Register the default implementation.
|
|
|
|
INITIALIZE_PASS(TargetLibraryInfo, "targetlibinfo",
|
|
|
|
"Target Library Information", false, true)
|
|
|
|
char TargetLibraryInfo::ID = 0;
|
|
|
|
|
2011-12-20 03:50:00 +01:00
|
|
|
void TargetLibraryInfo::anchor() { }
|
|
|
|
|
2011-11-17 02:27:36 +01:00
|
|
|
const char* TargetLibraryInfo::StandardNames[LibFunc::NumLibFuncs] =
|
|
|
|
{
|
2011-11-30 20:19:00 +01:00
|
|
|
"acos",
|
|
|
|
"acosl",
|
|
|
|
"acosf",
|
|
|
|
"asin",
|
|
|
|
"asinl",
|
|
|
|
"asinf",
|
|
|
|
"atan",
|
|
|
|
"atanl",
|
|
|
|
"atanf",
|
2011-12-01 18:54:37 +01:00
|
|
|
"atan2",
|
|
|
|
"atan2l",
|
|
|
|
"atan2f",
|
2011-11-30 20:19:00 +01:00
|
|
|
"ceil",
|
|
|
|
"ceill",
|
|
|
|
"ceilf",
|
2011-12-08 23:15:21 +01:00
|
|
|
"copysign",
|
|
|
|
"copysignf",
|
|
|
|
"copysignl",
|
2011-11-30 20:19:00 +01:00
|
|
|
"cos",
|
|
|
|
"cosl",
|
|
|
|
"cosf",
|
|
|
|
"cosh",
|
|
|
|
"coshl",
|
|
|
|
"coshf",
|
|
|
|
"exp",
|
|
|
|
"expl",
|
|
|
|
"expf",
|
|
|
|
"exp2",
|
|
|
|
"exp2l",
|
|
|
|
"exp2f",
|
|
|
|
"expm1",
|
|
|
|
"expm1l",
|
|
|
|
"expl1f",
|
|
|
|
"fabs",
|
|
|
|
"fabsl",
|
|
|
|
"fabsf",
|
|
|
|
"floor",
|
|
|
|
"floorl",
|
|
|
|
"floorf",
|
2011-11-30 02:51:49 +01:00
|
|
|
"fiprintf",
|
2011-12-01 18:54:37 +01:00
|
|
|
"fmod",
|
|
|
|
"fmodl",
|
|
|
|
"fmodf",
|
2011-11-30 02:51:49 +01:00
|
|
|
"fputs",
|
|
|
|
"fwrite",
|
|
|
|
"iprintf",
|
2011-11-30 20:19:00 +01:00
|
|
|
"log",
|
|
|
|
"logl",
|
|
|
|
"logf",
|
|
|
|
"log2",
|
|
|
|
"log2l",
|
|
|
|
"log2f",
|
|
|
|
"log10",
|
|
|
|
"log10l",
|
|
|
|
"log10f",
|
|
|
|
"log1p",
|
|
|
|
"log1pl",
|
|
|
|
"log1pf",
|
2011-11-17 02:27:36 +01:00
|
|
|
"memcpy",
|
|
|
|
"memmove",
|
2011-11-30 02:51:49 +01:00
|
|
|
"memset",
|
2011-11-17 02:27:36 +01:00
|
|
|
"memset_pattern16",
|
2011-12-08 23:15:21 +01:00
|
|
|
"nearbyint",
|
|
|
|
"nearbyintf",
|
|
|
|
"nearbyintl",
|
2011-11-30 20:19:00 +01:00
|
|
|
"pow",
|
|
|
|
"powf",
|
|
|
|
"powl",
|
2011-12-08 23:15:21 +01:00
|
|
|
"rint",
|
|
|
|
"rintf",
|
|
|
|
"rintl",
|
2011-12-01 18:54:37 +01:00
|
|
|
"sin",
|
|
|
|
"sinl",
|
|
|
|
"sinf",
|
2011-12-01 19:26:19 +01:00
|
|
|
"sinh",
|
|
|
|
"sinhl",
|
|
|
|
"sinhf",
|
|
|
|
"siprintf",
|
2011-11-30 00:57:10 +01:00
|
|
|
"sqrt",
|
2011-11-30 20:19:00 +01:00
|
|
|
"sqrtl",
|
2011-12-01 18:54:37 +01:00
|
|
|
"sqrtf",
|
|
|
|
"tan",
|
|
|
|
"tanl",
|
|
|
|
"tanf",
|
|
|
|
"tanh",
|
|
|
|
"tanhl",
|
2011-12-08 23:15:21 +01:00
|
|
|
"tanhf",
|
|
|
|
"trunc",
|
|
|
|
"truncf",
|
|
|
|
"truncl"
|
2011-11-17 02:27:36 +01:00
|
|
|
};
|
|
|
|
|
2011-02-18 22:50:34 +01:00
|
|
|
/// initialize - Initialize the set of available library functions based on the
|
|
|
|
/// specified target triple. This should be carefully written so that a missing
|
|
|
|
/// target triple gets a sane set of defaults.
|
|
|
|
static void initialize(TargetLibraryInfo &TLI, const Triple &T) {
|
|
|
|
initializeTargetLibraryInfoPass(*PassRegistry::getPassRegistry());
|
|
|
|
|
|
|
|
|
|
|
|
// memset_pattern16 is only available on iOS 3.0 and Mac OS/X 10.5 and later.
|
2011-04-20 02:14:25 +02:00
|
|
|
if (T.isMacOSX()) {
|
|
|
|
if (T.isMacOSXVersionLT(10, 5))
|
2011-04-19 22:44:08 +02:00
|
|
|
TLI.setUnavailable(LibFunc::memset_pattern16);
|
|
|
|
} else if (T.getOS() == Triple::IOS) {
|
|
|
|
if (T.isOSVersionLT(3, 0))
|
|
|
|
TLI.setUnavailable(LibFunc::memset_pattern16);
|
|
|
|
} else {
|
2011-02-18 22:50:34 +01:00
|
|
|
TLI.setUnavailable(LibFunc::memset_pattern16);
|
2011-04-19 22:44:08 +02:00
|
|
|
}
|
2011-03-03 14:17:51 +01:00
|
|
|
|
2011-11-17 02:27:36 +01:00
|
|
|
if (T.isMacOSX() && T.getArch() == Triple::x86 &&
|
|
|
|
!T.isMacOSXVersionLT(10, 7)) {
|
|
|
|
// x86-32 OSX has a scheme where fwrite and fputs (and some other functions
|
|
|
|
// we don't care about) have two versions; on recent OSX, the one we want
|
|
|
|
// has a $UNIX2003 suffix. The two implementations are identical except
|
|
|
|
// for the return value in some edge cases. However, we don't want to
|
|
|
|
// generate code that depends on the old symbols.
|
|
|
|
TLI.setAvailableWithName(LibFunc::fwrite, "fwrite$UNIX2003");
|
|
|
|
TLI.setAvailableWithName(LibFunc::fputs, "fputs$UNIX2003");
|
|
|
|
}
|
|
|
|
|
2011-06-09 13:11:45 +02:00
|
|
|
// iprintf and friends are only available on XCore and TCE.
|
|
|
|
if (T.getArch() != Triple::xcore && T.getArch() != Triple::tce) {
|
2011-03-03 14:17:51 +01:00
|
|
|
TLI.setUnavailable(LibFunc::iprintf);
|
2011-03-03 15:09:28 +01:00
|
|
|
TLI.setUnavailable(LibFunc::siprintf);
|
2011-03-03 15:20:22 +01:00
|
|
|
TLI.setUnavailable(LibFunc::fiprintf);
|
2011-03-03 15:09:28 +01:00
|
|
|
}
|
2011-02-18 22:50:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TargetLibraryInfo::TargetLibraryInfo() : ImmutablePass(ID) {
|
|
|
|
// Default to everything being available.
|
|
|
|
memset(AvailableArray, -1, sizeof(AvailableArray));
|
|
|
|
|
|
|
|
initialize(*this, Triple());
|
|
|
|
}
|
|
|
|
|
|
|
|
TargetLibraryInfo::TargetLibraryInfo(const Triple &T) : ImmutablePass(ID) {
|
|
|
|
// Default to everything being available.
|
|
|
|
memset(AvailableArray, -1, sizeof(AvailableArray));
|
|
|
|
|
|
|
|
initialize(*this, T);
|
|
|
|
}
|
2011-02-18 23:34:03 +01:00
|
|
|
|
2011-05-21 22:09:13 +02:00
|
|
|
TargetLibraryInfo::TargetLibraryInfo(const TargetLibraryInfo &TLI)
|
|
|
|
: ImmutablePass(ID) {
|
|
|
|
memcpy(AvailableArray, TLI.AvailableArray, sizeof(AvailableArray));
|
2011-11-17 02:27:36 +01:00
|
|
|
CustomNames = TLI.CustomNames;
|
2011-05-21 22:09:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-18 23:34:03 +01:00
|
|
|
/// disableAllFunctions - This disables all builtins, which is used for options
|
|
|
|
/// like -fno-builtin.
|
|
|
|
void TargetLibraryInfo::disableAllFunctions() {
|
|
|
|
memset(AvailableArray, 0, sizeof(AvailableArray));
|
|
|
|
}
|