2011-02-18 22:50:34 +01:00
|
|
|
//===-- llvm/Target/TargetLibraryInfo.h - Library information ---*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_TARGET_TARGETLIBRARYINFO_H
|
|
|
|
#define LLVM_TARGET_TARGETLIBRARYINFO_H
|
|
|
|
|
2011-11-17 02:27:36 +01:00
|
|
|
#include "llvm/ADT/DenseMap.h"
|
2012-12-03 18:02:12 +01:00
|
|
|
#include "llvm/Pass.h"
|
2011-02-18 22:50:34 +01:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class Triple;
|
|
|
|
|
|
|
|
namespace LibFunc {
|
|
|
|
enum Func {
|
2012-08-29 17:32:21 +02:00
|
|
|
/// void operator delete[](void*);
|
|
|
|
ZdaPv,
|
|
|
|
/// void operator delete(void*);
|
|
|
|
ZdlPv,
|
|
|
|
/// void *new[](unsigned int);
|
|
|
|
Znaj,
|
|
|
|
/// void *new[](unsigned int, nothrow);
|
|
|
|
ZnajRKSt9nothrow_t,
|
|
|
|
/// void *new[](unsigned long);
|
|
|
|
Znam,
|
|
|
|
/// void *new[](unsigned long, nothrow);
|
|
|
|
ZnamRKSt9nothrow_t,
|
|
|
|
/// void *new(unsigned int);
|
|
|
|
Znwj,
|
|
|
|
/// void *new(unsigned int, nothrow);
|
|
|
|
ZnwjRKSt9nothrow_t,
|
|
|
|
/// void *new(unsigned long);
|
|
|
|
Znwm,
|
|
|
|
/// void *new(unsigned long, nothrow);
|
|
|
|
ZnwmRKSt9nothrow_t,
|
2012-08-03 06:06:22 +02:00
|
|
|
/// int __cxa_atexit(void (*f)(void *), void *p, void *d);
|
|
|
|
cxa_atexit,
|
|
|
|
/// void __cxa_guard_abort(guard_t *guard);
|
|
|
|
/// guard_t is int64_t in Itanium ABI or int32_t on ARM eabi.
|
|
|
|
cxa_guard_abort,
|
|
|
|
/// int __cxa_guard_acquire(guard_t *guard);
|
|
|
|
cxa_guard_acquire,
|
|
|
|
/// void __cxa_guard_release(guard_t *guard);
|
|
|
|
cxa_guard_release,
|
|
|
|
/// void *__memcpy_chk(void *s1, const void *s2, size_t n, size_t s1size);
|
|
|
|
memcpy_chk,
|
2012-11-22 16:36:42 +01:00
|
|
|
/// int abs(int j);
|
|
|
|
abs,
|
2011-11-30 20:19:00 +01:00
|
|
|
/// double acos(double x);
|
|
|
|
acos,
|
|
|
|
/// float acosf(float x);
|
|
|
|
acosf,
|
2012-08-22 01:28:56 +02:00
|
|
|
/// double acosh(double x);
|
|
|
|
acosh,
|
|
|
|
/// float acoshf(float x);
|
|
|
|
acoshf,
|
|
|
|
/// long double acoshl(long double x);
|
|
|
|
acoshl,
|
2012-08-03 06:06:22 +02:00
|
|
|
/// long double acosl(long double x);
|
|
|
|
acosl,
|
2011-11-30 20:19:00 +01:00
|
|
|
/// double asin(double x);
|
|
|
|
asin,
|
|
|
|
/// float asinf(float x);
|
|
|
|
asinf,
|
2012-08-22 01:28:56 +02:00
|
|
|
/// double asinh(double x);
|
|
|
|
asinh,
|
|
|
|
/// float asinhf(float x);
|
|
|
|
asinhf,
|
|
|
|
/// long double asinhl(long double x);
|
|
|
|
asinhl,
|
2012-08-03 06:06:22 +02:00
|
|
|
/// long double asinl(long double x);
|
|
|
|
asinl,
|
2011-11-30 20:19:00 +01:00
|
|
|
/// double atan(double x);
|
|
|
|
atan,
|
2011-12-01 18:54:37 +01:00
|
|
|
/// double atan2(double y, double x);
|
|
|
|
atan2,
|
|
|
|
/// float atan2f(float y, float x);
|
|
|
|
atan2f,
|
2012-08-03 06:06:22 +02:00
|
|
|
/// long double atan2l(long double y, long double x);
|
|
|
|
atan2l,
|
|
|
|
/// float atanf(float x);
|
|
|
|
atanf,
|
2012-08-22 01:28:56 +02:00
|
|
|
/// double atanh(double x);
|
|
|
|
atanh,
|
|
|
|
/// float atanhf(float x);
|
|
|
|
atanhf,
|
|
|
|
/// long double atanhl(long double x);
|
|
|
|
atanhl,
|
2012-08-03 06:06:22 +02:00
|
|
|
/// long double atanl(long double x);
|
|
|
|
atanl,
|
2012-08-29 17:32:21 +02:00
|
|
|
/// void *calloc(size_t count, size_t size);
|
|
|
|
calloc,
|
2012-08-22 01:28:56 +02:00
|
|
|
/// double cbrt(double x);
|
|
|
|
cbrt,
|
|
|
|
/// float cbrtf(float x);
|
|
|
|
cbrtf,
|
|
|
|
/// long double cbrtl(long double x);
|
|
|
|
cbrtl,
|
2011-11-30 20:19:00 +01:00
|
|
|
/// double ceil(double x);
|
|
|
|
ceil,
|
|
|
|
/// float ceilf(float x);
|
|
|
|
ceilf,
|
2012-08-03 06:06:22 +02:00
|
|
|
/// long double ceill(long double x);
|
|
|
|
ceill,
|
2011-12-08 23:15:21 +01:00
|
|
|
/// double copysign(double x, double y);
|
|
|
|
copysign,
|
|
|
|
/// float copysignf(float x, float y);
|
|
|
|
copysignf,
|
|
|
|
/// long double copysignl(long double x, long double y);
|
|
|
|
copysignl,
|
2011-11-30 20:19:00 +01:00
|
|
|
/// double cos(double x);
|
|
|
|
cos,
|
|
|
|
/// float cosf(float x);
|
|
|
|
cosf,
|
|
|
|
/// double cosh(double x);
|
|
|
|
cosh,
|
|
|
|
/// float coshf(float x);
|
|
|
|
coshf,
|
2012-08-03 06:06:22 +02:00
|
|
|
/// long double coshl(long double x);
|
|
|
|
coshl,
|
|
|
|
/// long double cosl(long double x);
|
|
|
|
cosl,
|
2011-11-30 20:19:00 +01:00
|
|
|
/// double exp(double x);
|
|
|
|
exp,
|
2012-08-22 01:28:56 +02:00
|
|
|
/// double exp10(double x);
|
|
|
|
exp10,
|
|
|
|
/// float exp10f(float x);
|
|
|
|
exp10f,
|
|
|
|
/// long double exp10l(long double x);
|
|
|
|
exp10l,
|
2011-11-30 20:19:00 +01:00
|
|
|
/// double exp2(double x);
|
|
|
|
exp2,
|
|
|
|
/// float exp2f(float x);
|
|
|
|
exp2f,
|
2012-08-03 06:06:22 +02:00
|
|
|
/// long double exp2l(long double x);
|
|
|
|
exp2l,
|
|
|
|
/// float expf(float x);
|
|
|
|
expf,
|
|
|
|
/// long double expl(long double x);
|
|
|
|
expl,
|
2011-11-30 20:19:00 +01:00
|
|
|
/// double expm1(double x);
|
|
|
|
expm1,
|
|
|
|
/// float expm1f(float x);
|
2012-04-18 01:05:54 +02:00
|
|
|
expm1f,
|
2012-08-03 06:06:22 +02:00
|
|
|
/// long double expm1l(long double x);
|
|
|
|
expm1l,
|
2011-11-30 20:19:00 +01:00
|
|
|
/// double fabs(double x);
|
|
|
|
fabs,
|
|
|
|
/// float fabsf(float x);
|
|
|
|
fabsf,
|
2012-08-03 06:06:22 +02:00
|
|
|
/// long double fabsl(long double x);
|
|
|
|
fabsl,
|
2012-11-22 16:36:42 +01:00
|
|
|
/// int ffs(int i);
|
|
|
|
ffs,
|
|
|
|
/// int ffsl(long int i);
|
|
|
|
ffsl,
|
|
|
|
/// int ffsll(long long int i);
|
|
|
|
ffsll,
|
2012-08-03 06:06:22 +02:00
|
|
|
/// int fiprintf(FILE *stream, const char *format, ...);
|
|
|
|
fiprintf,
|
2011-11-30 20:19:00 +01:00
|
|
|
/// double floor(double x);
|
|
|
|
floor,
|
|
|
|
/// float floorf(float x);
|
|
|
|
floorf,
|
2012-08-03 06:06:22 +02:00
|
|
|
/// long double floorl(long double x);
|
|
|
|
floorl,
|
2011-12-01 18:54:37 +01:00
|
|
|
/// double fmod(double x, double y);
|
|
|
|
fmod,
|
|
|
|
/// float fmodf(float x, float y);
|
|
|
|
fmodf,
|
2012-08-03 06:06:22 +02:00
|
|
|
/// long double fmodl(long double x, long double y);
|
|
|
|
fmodl,
|
2012-11-22 16:36:42 +01:00
|
|
|
/// int fprintf(FILE *stream, const char *format, ...);
|
|
|
|
fprintf,
|
2012-07-24 23:00:36 +02:00
|
|
|
/// int fputc(int c, FILE *stream);
|
|
|
|
fputc,
|
2011-11-30 02:51:49 +01:00
|
|
|
/// int fputs(const char *s, FILE *stream);
|
|
|
|
fputs,
|
2012-08-29 17:32:21 +02:00
|
|
|
/// void free(void *ptr);
|
|
|
|
free,
|
2011-11-30 02:51:49 +01:00
|
|
|
/// size_t fwrite(const void *ptr, size_t size, size_t nitems,
|
|
|
|
/// FILE *stream);
|
|
|
|
fwrite,
|
|
|
|
/// int iprintf(const char *format, ...);
|
|
|
|
iprintf,
|
2012-11-22 16:36:42 +01:00
|
|
|
/// int isascii(int c);
|
|
|
|
isascii,
|
|
|
|
/// int isdigit(int c);
|
|
|
|
isdigit,
|
|
|
|
/// long int labs(long int j);
|
|
|
|
labs,
|
|
|
|
/// long long int llabs(long long int j);
|
|
|
|
llabs,
|
2011-11-30 20:19:00 +01:00
|
|
|
/// double log(double x);
|
|
|
|
log,
|
|
|
|
/// double log10(double x);
|
|
|
|
log10,
|
|
|
|
/// float log10f(float x);
|
|
|
|
log10f,
|
2012-08-03 06:06:22 +02:00
|
|
|
/// long double log10l(long double x);
|
|
|
|
log10l,
|
2011-11-30 20:19:00 +01:00
|
|
|
/// double log1p(double x);
|
|
|
|
log1p,
|
|
|
|
/// float log1pf(float x);
|
|
|
|
log1pf,
|
2012-08-03 06:06:22 +02:00
|
|
|
/// long double log1pl(long double x);
|
|
|
|
log1pl,
|
|
|
|
/// double log2(double x);
|
|
|
|
log2,
|
|
|
|
/// float log2f(float x);
|
|
|
|
log2f,
|
|
|
|
/// double long double log2l(long double x);
|
|
|
|
log2l,
|
2012-08-22 01:28:56 +02:00
|
|
|
/// double logb(double x);
|
|
|
|
logb,
|
|
|
|
/// float logbf(float x);
|
|
|
|
logbf,
|
|
|
|
/// long double logbl(long double x);
|
|
|
|
logbl,
|
2012-08-03 06:06:22 +02:00
|
|
|
/// float logf(float x);
|
|
|
|
logf,
|
|
|
|
/// long double logl(long double x);
|
|
|
|
logl,
|
2012-08-29 17:32:21 +02:00
|
|
|
/// void *malloc(size_t size);
|
|
|
|
malloc,
|
2012-07-24 23:00:36 +02:00
|
|
|
/// void *memchr(const void *s, int c, size_t n);
|
|
|
|
memchr,
|
|
|
|
/// int memcmp(const void *s1, const void *s2, size_t n);
|
|
|
|
memcmp,
|
2011-11-30 02:51:49 +01:00
|
|
|
/// void *memcpy(void *s1, const void *s2, size_t n);
|
2011-02-18 23:21:24 +01:00
|
|
|
memcpy,
|
2011-11-30 02:51:49 +01:00
|
|
|
/// void *memmove(void *s1, const void *s2, size_t n);
|
2011-05-01 20:27:11 +02:00
|
|
|
memmove,
|
2011-11-30 02:51:49 +01:00
|
|
|
/// void *memset(void *b, int c, size_t len);
|
|
|
|
memset,
|
2011-02-18 22:50:34 +01:00
|
|
|
/// void memset_pattern16(void *b, const void *pattern16, size_t len);
|
|
|
|
memset_pattern16,
|
2011-12-08 23:15:21 +01:00
|
|
|
/// double nearbyint(double x);
|
|
|
|
nearbyint,
|
|
|
|
/// float nearbyintf(float x);
|
|
|
|
nearbyintf,
|
|
|
|
/// long double nearbyintl(long double x);
|
|
|
|
nearbyintl,
|
2012-08-29 17:32:21 +02:00
|
|
|
/// int posix_memalign(void **memptr, size_t alignment, size_t size);
|
|
|
|
posix_memalign,
|
2011-11-30 20:19:00 +01:00
|
|
|
/// double pow(double x, double y);
|
|
|
|
pow,
|
|
|
|
/// float powf(float x, float y);
|
|
|
|
powf,
|
|
|
|
/// long double powl(long double x, long double y);
|
|
|
|
powl,
|
2012-11-22 16:36:42 +01:00
|
|
|
/// int printf(const char *format, ...);
|
|
|
|
printf,
|
2012-07-24 23:00:36 +02:00
|
|
|
/// int putchar(int c);
|
|
|
|
putchar,
|
|
|
|
/// int puts(const char *s);
|
|
|
|
puts,
|
2012-08-29 17:32:21 +02:00
|
|
|
/// void *realloc(void *ptr, size_t size);
|
|
|
|
realloc,
|
|
|
|
/// void *reallocf(void *ptr, size_t size);
|
|
|
|
reallocf,
|
2011-12-08 23:15:21 +01:00
|
|
|
/// double rint(double x);
|
|
|
|
rint,
|
|
|
|
/// float rintf(float x);
|
|
|
|
rintf,
|
2012-04-18 01:05:54 +02:00
|
|
|
/// long double rintl(long double x);
|
2011-12-08 23:15:21 +01:00
|
|
|
rintl,
|
2012-04-18 01:05:54 +02:00
|
|
|
/// double round(double x);
|
|
|
|
round,
|
|
|
|
/// float roundf(float x);
|
|
|
|
roundf,
|
|
|
|
/// long double roundl(long double x);
|
|
|
|
roundl,
|
2011-12-01 18:54:37 +01:00
|
|
|
/// double sin(double x);
|
|
|
|
sin,
|
|
|
|
/// float sinf(float x);
|
|
|
|
sinf,
|
|
|
|
/// double sinh(double x);
|
|
|
|
sinh,
|
|
|
|
/// float sinhf(float x);
|
|
|
|
sinhf,
|
2012-08-03 06:06:22 +02:00
|
|
|
/// long double sinhl(long double x);
|
|
|
|
sinhl,
|
|
|
|
/// long double sinl(long double x);
|
|
|
|
sinl,
|
2011-03-03 15:09:28 +01:00
|
|
|
/// int siprintf(char *str, const char *format, ...);
|
|
|
|
siprintf,
|
2012-11-22 16:36:42 +01:00
|
|
|
/// int sprintf(char *str, const char *format, ...);
|
|
|
|
sprintf,
|
2011-11-30 00:57:10 +01:00
|
|
|
/// double sqrt(double x);
|
|
|
|
sqrt,
|
|
|
|
/// float sqrtf(float x);
|
|
|
|
sqrtf,
|
2012-08-03 06:06:22 +02:00
|
|
|
/// long double sqrtl(long double x);
|
|
|
|
sqrtl,
|
2012-11-10 04:11:06 +01:00
|
|
|
/// char *stpcpy(char *s1, const char *s2);
|
|
|
|
stpcpy,
|
2012-07-24 19:25:06 +02:00
|
|
|
/// char *strcat(char *s1, const char *s2);
|
|
|
|
strcat,
|
2012-07-24 23:00:36 +02:00
|
|
|
/// char *strchr(const char *s, int c);
|
|
|
|
strchr,
|
2012-11-10 04:11:06 +01:00
|
|
|
/// int strcmp(const char *s1, const char *s2);
|
|
|
|
strcmp,
|
2012-07-24 19:25:06 +02:00
|
|
|
/// char *strcpy(char *s1, const char *s2);
|
|
|
|
strcpy,
|
2012-11-10 04:11:06 +01:00
|
|
|
/// size_t strcspn(const char *s1, const char *s2);
|
|
|
|
strcspn,
|
2012-08-29 17:32:21 +02:00
|
|
|
/// char *strdup(const char *s1);
|
|
|
|
strdup,
|
2012-07-24 19:25:06 +02:00
|
|
|
/// size_t strlen(const char *s);
|
|
|
|
strlen,
|
|
|
|
/// char *strncat(char *s1, const char *s2, size_t n);
|
|
|
|
strncat,
|
2012-07-24 23:00:36 +02:00
|
|
|
/// int strncmp(const char *s1, const char *s2, size_t n);
|
|
|
|
strncmp,
|
2012-07-24 19:25:06 +02:00
|
|
|
/// char *strncpy(char *s1, const char *s2, size_t n);
|
|
|
|
strncpy,
|
2012-08-29 17:32:21 +02:00
|
|
|
/// char *strndup(const char *s1, size_t n);
|
|
|
|
strndup,
|
2012-07-24 19:25:06 +02:00
|
|
|
/// size_t strnlen(const char *s, size_t maxlen);
|
|
|
|
strnlen,
|
2012-11-10 04:11:06 +01:00
|
|
|
/// char *strpbrk(const char *s1, const char *s2);
|
|
|
|
strpbrk,
|
|
|
|
/// char *strrchr(const char *s, int c);
|
|
|
|
strrchr,
|
|
|
|
/// size_t strspn(const char *s1, const char *s2);
|
|
|
|
strspn,
|
|
|
|
/// char *strstr(const char *s1, const char *s2);
|
|
|
|
strstr,
|
|
|
|
/// double strtod(const char *nptr, char **endptr);
|
|
|
|
strtod,
|
|
|
|
/// float strtof(const char *nptr, char **endptr);
|
|
|
|
strtof,
|
|
|
|
/// long int strtol(const char *nptr, char **endptr, int base);
|
|
|
|
strtol,
|
|
|
|
/// long double strtold(const char *nptr, char **endptr);
|
|
|
|
strtold,
|
|
|
|
/// long long int strtoll(const char *nptr, char **endptr, int base);
|
|
|
|
strtoll,
|
|
|
|
/// unsigned long int strtoul(const char *nptr, char **endptr, int base);
|
|
|
|
strtoul,
|
|
|
|
/// unsigned long long int strtoull(const char *nptr, char **endptr,
|
|
|
|
/// int base);
|
|
|
|
strtoull,
|
2011-12-01 18:54:37 +01:00
|
|
|
/// double tan(double x);
|
|
|
|
tan,
|
|
|
|
/// float tanf(float x);
|
|
|
|
tanf,
|
|
|
|
/// double tanh(double x);
|
|
|
|
tanh,
|
|
|
|
/// float tanhf(float x);
|
|
|
|
tanhf,
|
2012-08-03 06:06:22 +02:00
|
|
|
/// long double tanhl(long double x);
|
|
|
|
tanhl,
|
|
|
|
/// long double tanl(long double x);
|
|
|
|
tanl,
|
2012-11-22 16:36:42 +01:00
|
|
|
/// int toascii(int c);
|
|
|
|
toascii,
|
2011-12-08 23:15:21 +01:00
|
|
|
/// double trunc(double x);
|
|
|
|
trunc,
|
|
|
|
/// float truncf(float x);
|
|
|
|
truncf,
|
|
|
|
/// long double truncl(long double x);
|
|
|
|
truncl,
|
2012-08-29 17:32:21 +02:00
|
|
|
/// void *valloc(size_t size);
|
|
|
|
valloc,
|
2011-11-17 02:27:36 +01:00
|
|
|
|
2011-02-18 22:50:34 +01:00
|
|
|
NumLibFuncs
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// TargetLibraryInfo - This immutable pass captures information about what
|
|
|
|
/// library functions are available for the current target, and allows a
|
|
|
|
/// frontend to disable optimizations through -fno-builtin etc.
|
|
|
|
class TargetLibraryInfo : public ImmutablePass {
|
2011-12-20 03:50:00 +01:00
|
|
|
virtual void anchor();
|
2011-11-17 02:27:36 +01:00
|
|
|
unsigned char AvailableArray[(LibFunc::NumLibFuncs+3)/4];
|
|
|
|
llvm::DenseMap<unsigned, std::string> CustomNames;
|
|
|
|
static const char* StandardNames[LibFunc::NumLibFuncs];
|
|
|
|
|
|
|
|
enum AvailabilityState {
|
|
|
|
StandardName = 3, // (memset to all ones)
|
|
|
|
CustomName = 1,
|
|
|
|
Unavailable = 0 // (memset to all zeros)
|
|
|
|
};
|
|
|
|
void setState(LibFunc::Func F, AvailabilityState State) {
|
|
|
|
AvailableArray[F/4] &= ~(3 << 2*(F&3));
|
|
|
|
AvailableArray[F/4] |= State << 2*(F&3);
|
|
|
|
}
|
|
|
|
AvailabilityState getState(LibFunc::Func F) const {
|
|
|
|
return static_cast<AvailabilityState>((AvailableArray[F/4] >> 2*(F&3)) & 3);
|
|
|
|
}
|
|
|
|
|
2011-02-18 22:50:34 +01:00
|
|
|
public:
|
|
|
|
static char ID;
|
|
|
|
TargetLibraryInfo();
|
|
|
|
TargetLibraryInfo(const Triple &T);
|
2011-05-21 22:09:13 +02:00
|
|
|
explicit TargetLibraryInfo(const TargetLibraryInfo &TLI);
|
2011-02-18 22:50:34 +01:00
|
|
|
|
2012-08-03 06:06:22 +02:00
|
|
|
/// getLibFunc - Search for a particular function name. If it is one of the
|
|
|
|
/// known library functions, return true and set F to the corresponding value.
|
|
|
|
bool getLibFunc(StringRef funcName, LibFunc::Func &F) const;
|
|
|
|
|
2011-02-18 22:50:34 +01:00
|
|
|
/// has - This function is used by optimizations that want to match on or form
|
|
|
|
/// a given library function.
|
|
|
|
bool has(LibFunc::Func F) const {
|
2011-11-17 02:27:36 +01:00
|
|
|
return getState(F) != Unavailable;
|
|
|
|
}
|
|
|
|
|
2012-08-03 23:26:24 +02:00
|
|
|
/// hasOptimizedCodeGen - Return true if the function is both available as
|
|
|
|
/// a builtin and a candidate for optimized code generation.
|
|
|
|
bool hasOptimizedCodeGen(LibFunc::Func F) const {
|
|
|
|
if (getState(F) == Unavailable)
|
|
|
|
return false;
|
|
|
|
switch (F) {
|
|
|
|
default: break;
|
|
|
|
case LibFunc::copysign: case LibFunc::copysignf: case LibFunc::copysignl:
|
|
|
|
case LibFunc::fabs: case LibFunc::fabsf: case LibFunc::fabsl:
|
|
|
|
case LibFunc::sin: case LibFunc::sinf: case LibFunc::sinl:
|
|
|
|
case LibFunc::cos: case LibFunc::cosf: case LibFunc::cosl:
|
|
|
|
case LibFunc::sqrt: case LibFunc::sqrtf: case LibFunc::sqrtl:
|
|
|
|
case LibFunc::floor: case LibFunc::floorf: case LibFunc::floorl:
|
|
|
|
case LibFunc::nearbyint: case LibFunc::nearbyintf: case LibFunc::nearbyintl:
|
|
|
|
case LibFunc::ceil: case LibFunc::ceilf: case LibFunc::ceill:
|
|
|
|
case LibFunc::rint: case LibFunc::rintf: case LibFunc::rintl:
|
|
|
|
case LibFunc::trunc: case LibFunc::truncf: case LibFunc::truncl:
|
|
|
|
case LibFunc::log2: case LibFunc::log2f: case LibFunc::log2l:
|
|
|
|
case LibFunc::exp2: case LibFunc::exp2f: case LibFunc::exp2l:
|
|
|
|
case LibFunc::memcmp:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-11-17 02:27:36 +01:00
|
|
|
StringRef getName(LibFunc::Func F) const {
|
|
|
|
AvailabilityState State = getState(F);
|
|
|
|
if (State == Unavailable)
|
|
|
|
return StringRef();
|
|
|
|
if (State == StandardName)
|
|
|
|
return StandardNames[F];
|
|
|
|
assert(State == CustomName);
|
|
|
|
return CustomNames.find(F)->second;
|
2011-02-18 22:50:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// setUnavailable - this can be used by whatever sets up TargetLibraryInfo to
|
|
|
|
/// ban use of specific library functions.
|
|
|
|
void setUnavailable(LibFunc::Func F) {
|
2011-11-17 02:27:36 +01:00
|
|
|
setState(F, Unavailable);
|
2011-02-18 22:50:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void setAvailable(LibFunc::Func F) {
|
2011-11-17 02:27:36 +01:00
|
|
|
setState(F, StandardName);
|
2011-02-18 22:50:34 +01:00
|
|
|
}
|
2011-11-17 02:27:36 +01:00
|
|
|
|
|
|
|
void setAvailableWithName(LibFunc::Func F, StringRef Name) {
|
|
|
|
if (StandardNames[F] != Name) {
|
|
|
|
setState(F, CustomName);
|
|
|
|
CustomNames[F] = Name;
|
|
|
|
assert(CustomNames.find(F) != CustomNames.end());
|
|
|
|
} else {
|
|
|
|
setState(F, StandardName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-18 23:34:03 +01:00
|
|
|
/// disableAllFunctions - This disables all builtins, which is used for
|
|
|
|
/// options like -fno-builtin.
|
|
|
|
void disableAllFunctions();
|
2011-02-18 22:50:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|